blob: d386f1082ebde9d7ecbcae31bbcc6d37dcf99366 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#include <net/protocol.h>
60#include <net/dst.h>
61#include <net/sock.h>
62#include <net/checksum.h>
63#include <net/xfrm.h>
64
65#include <asm/uaccess.h>
66#include <asm/system.h>
67
Al Viroa1f8e7f72006-10-19 16:08:53 -040068#include "kmap_skb.h"
69
Christoph Lametere18b8902006-12-06 20:33:20 -080070static struct kmem_cache *skbuff_head_cache __read_mostly;
71static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Jens Axboe9c55e012007-11-06 23:30:13 -080073static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
74 struct pipe_buffer *buf)
75{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080076 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080077}
78
79static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
80 struct pipe_buffer *buf)
81{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080082 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080083}
84
85static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
86 struct pipe_buffer *buf)
87{
88 return 1;
89}
90
91
92/* Pipe buffer operations for a socket. */
93static struct pipe_buf_operations sock_pipe_buf_ops = {
94 .can_merge = 0,
95 .map = generic_pipe_buf_map,
96 .unmap = generic_pipe_buf_unmap,
97 .confirm = generic_pipe_buf_confirm,
98 .release = sock_pipe_buf_release,
99 .steal = sock_pipe_buf_steal,
100 .get = sock_pipe_buf_get,
101};
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Keep out-of-line to prevent kernel bloat.
105 * __builtin_return_address is not used because it is not always
106 * reliable.
107 */
108
109/**
110 * skb_over_panic - private function
111 * @skb: buffer
112 * @sz: size
113 * @here: address
114 *
115 * Out of line support code for skb_put(). Not user callable.
116 */
117void skb_over_panic(struct sk_buff *skb, int sz, void *here)
118{
Patrick McHardy26095452005-04-21 16:43:02 -0700119 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700120 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700121 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700122 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700123 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 BUG();
125}
126
127/**
128 * skb_under_panic - private function
129 * @skb: buffer
130 * @sz: size
131 * @here: address
132 *
133 * Out of line support code for skb_push(). Not user callable.
134 */
135
136void skb_under_panic(struct sk_buff *skb, int sz, void *here)
137{
Patrick McHardy26095452005-04-21 16:43:02 -0700138 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700139 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700140 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700141 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700142 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 BUG();
144}
145
David S. Millerdc6de332006-04-20 00:10:50 -0700146void skb_truesize_bug(struct sk_buff *skb)
147{
Arjan van de Ven8f480c02008-11-25 21:08:13 -0800148 WARN(net_ratelimit(), KERN_ERR "SKB BUG: Invalid truesize (%u) "
David S. Millerdc6de332006-04-20 00:10:50 -0700149 "len=%u, sizeof(sk_buff)=%Zd\n",
150 skb->truesize, skb->len, sizeof(struct sk_buff));
151}
152EXPORT_SYMBOL(skb_truesize_bug);
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/* Allocate a new skbuff. We do this ourselves so we can fill in a few
155 * 'private' fields and also do memory statistics to find all the
156 * [BEEP] leaks.
157 *
158 */
159
160/**
David S. Millerd179cd12005-08-17 14:57:30 -0700161 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * @size: size to allocate
163 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700164 * @fclone: allocate from fclone cache instead of head cache
165 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800166 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
168 * Allocate a new &sk_buff. The returned buffer has no headroom and a
169 * tail room of size bytes. The object has a reference count of one.
170 * The return is the buffer. On a failure the return is %NULL.
171 *
172 * Buffers may only be allocated from interrupts using a @gfp_mask of
173 * %GFP_ATOMIC.
174 */
Al Virodd0fc662005-10-07 07:46:04 +0100175struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800176 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Christoph Lametere18b8902006-12-06 20:33:20 -0800178 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800179 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 struct sk_buff *skb;
181 u8 *data;
182
Herbert Xu8798b3f2006-01-23 16:32:45 -0800183 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800186 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (!skb)
188 goto out;
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800191 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
192 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (!data)
194 goto nodata;
195
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300196 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700197 * Only clear those fields we need to clear, not those that we will
198 * actually initialise below. Hence, don't put any more fields after
199 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300200 */
201 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 skb->truesize = size + sizeof(struct sk_buff);
203 atomic_set(&skb->users, 1);
204 skb->head = data;
205 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700206 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700207 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800208 /* make sure we initialize shinfo sequentially */
209 shinfo = skb_shinfo(skb);
210 atomic_set(&shinfo->dataref, 1);
211 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700212 shinfo->gso_size = 0;
213 shinfo->gso_segs = 0;
214 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800215 shinfo->ip6_frag_id = 0;
216 shinfo->frag_list = NULL;
217
David S. Millerd179cd12005-08-17 14:57:30 -0700218 if (fclone) {
219 struct sk_buff *child = skb + 1;
220 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
David S. Millerd179cd12005-08-17 14:57:30 -0700222 skb->fclone = SKB_FCLONE_ORIG;
223 atomic_set(fclone_ref, 1);
224
225 child->fclone = SKB_FCLONE_UNAVAILABLE;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227out:
228 return skb;
229nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800230 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 skb = NULL;
232 goto out;
233}
234
235/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700236 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
237 * @dev: network device to receive on
238 * @length: length to allocate
239 * @gfp_mask: get_free_pages mask, passed to alloc_skb
240 *
241 * Allocate a new &sk_buff and assign it a usage count of one. The
242 * buffer has unspecified headroom built in. Users should allocate
243 * the headroom they think they need without accounting for the
244 * built in space. The built in space is used for optimisations.
245 *
246 * %NULL is returned if there is no free memory.
247 */
248struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
249 unsigned int length, gfp_t gfp_mask)
250{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700251 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700252 struct sk_buff *skb;
253
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900254 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700255 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700256 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700257 skb->dev = dev;
258 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700259 return skb;
260}
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
326 for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
327 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
341 if (skb_shinfo(skb)->frag_list)
342 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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 dst_release(skb->dst);
385#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}
429
430/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800431 * kfree_skb - free an sk_buff
432 * @skb: buffer to free
433 *
434 * Drop a reference to the buffer and free it if the usage count has
435 * hit zero.
436 */
437void kfree_skb(struct sk_buff *skb)
438{
439 if (unlikely(!skb))
440 return;
441 if (likely(atomic_read(&skb->users) == 1))
442 smp_rmb();
443 else if (likely(!atomic_dec_and_test(&skb->users)))
444 return;
445 __kfree_skb(skb);
446}
447
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700448/**
449 * skb_recycle_check - check if skb can be reused for receive
450 * @skb: buffer
451 * @skb_size: minimum receive buffer size
452 *
453 * Checks that the skb passed in is not shared or cloned, and
454 * that it is linear and its head portion at least as large as
455 * skb_size so that it can be recycled as a receive buffer.
456 * If these conditions are met, this function does any necessary
457 * reference count dropping and cleans up the skbuff as if it
458 * just came from __alloc_skb().
459 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700460int skb_recycle_check(struct sk_buff *skb, int skb_size)
461{
462 struct skb_shared_info *shinfo;
463
464 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
465 return 0;
466
467 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
468 if (skb_end_pointer(skb) - skb->head < skb_size)
469 return 0;
470
471 if (skb_shared(skb) || skb_cloned(skb))
472 return 0;
473
474 skb_release_head_state(skb);
475 shinfo = skb_shinfo(skb);
476 atomic_set(&shinfo->dataref, 1);
477 shinfo->nr_frags = 0;
478 shinfo->gso_size = 0;
479 shinfo->gso_segs = 0;
480 shinfo->gso_type = 0;
481 shinfo->ip6_frag_id = 0;
482 shinfo->frag_list = NULL;
483
484 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700485 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800486 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700487
488 return 1;
489}
490EXPORT_SYMBOL(skb_recycle_check);
491
Herbert Xudec18812007-10-14 00:37:30 -0700492static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
493{
494 new->tstamp = old->tstamp;
495 new->dev = old->dev;
496 new->transport_header = old->transport_header;
497 new->network_header = old->network_header;
498 new->mac_header = old->mac_header;
499 new->dst = dst_clone(old->dst);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700500#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700501 new->sp = secpath_get(old->sp);
502#endif
503 memcpy(new->cb, old->cb, sizeof(old->cb));
504 new->csum_start = old->csum_start;
505 new->csum_offset = old->csum_offset;
506 new->local_df = old->local_df;
507 new->pkt_type = old->pkt_type;
508 new->ip_summed = old->ip_summed;
509 skb_copy_queue_mapping(new, old);
510 new->priority = old->priority;
511#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
512 new->ipvs_property = old->ipvs_property;
513#endif
514 new->protocol = old->protocol;
515 new->mark = old->mark;
516 __nf_copy(new, old);
517#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
518 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
519 new->nf_trace = old->nf_trace;
520#endif
521#ifdef CONFIG_NET_SCHED
522 new->tc_index = old->tc_index;
523#ifdef CONFIG_NET_CLS_ACT
524 new->tc_verd = old->tc_verd;
525#endif
526#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700527 new->vlan_tci = old->vlan_tci;
528
Herbert Xudec18812007-10-14 00:37:30 -0700529 skb_copy_secmark(new, old);
530}
531
Herbert Xue0053ec2007-10-14 00:37:52 -0700532static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#define C(x) n->x = skb->x
535
536 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700538 __copy_skb_header(n, skb);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 C(len);
541 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700542 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700543 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800544 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 n->destructor = NULL;
Paul Moore02f1c892008-01-07 21:56:41 -0800547 C(iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 C(tail);
549 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800550 C(head);
551 C(data);
552 C(truesize);
Johannes Bergd0f09802008-07-29 11:32:07 +0200553#if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE)
554 C(do_not_encrypt);
Sujith8b30b1f2008-10-24 09:55:27 +0530555 C(requeue);
Johannes Bergd0f09802008-07-29 11:32:07 +0200556#endif
Paul Moore02f1c892008-01-07 21:56:41 -0800557 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 atomic_inc(&(skb_shinfo(skb)->dataref));
560 skb->cloned = 1;
561
562 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700563#undef C
564}
565
566/**
567 * skb_morph - morph one skb into another
568 * @dst: the skb to receive the contents
569 * @src: the skb to supply the contents
570 *
571 * This is identical to skb_clone except that the target skb is
572 * supplied by the user.
573 *
574 * The target skb is returned upon exit.
575 */
576struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
577{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800578 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700579 return __skb_clone(dst, src);
580}
581EXPORT_SYMBOL_GPL(skb_morph);
582
583/**
584 * skb_clone - duplicate an sk_buff
585 * @skb: buffer to clone
586 * @gfp_mask: allocation priority
587 *
588 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
589 * copies share the same packet data but not structure. The new
590 * buffer has a reference count of 1. If the allocation fails the
591 * function returns %NULL otherwise the new buffer is returned.
592 *
593 * If this function is called from an interrupt gfp_mask() must be
594 * %GFP_ATOMIC.
595 */
596
597struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
598{
599 struct sk_buff *n;
600
601 n = skb + 1;
602 if (skb->fclone == SKB_FCLONE_ORIG &&
603 n->fclone == SKB_FCLONE_UNAVAILABLE) {
604 atomic_t *fclone_ref = (atomic_t *) (n + 1);
605 n->fclone = SKB_FCLONE_CLONE;
606 atomic_inc(fclone_ref);
607 } else {
608 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
609 if (!n)
610 return NULL;
611 n->fclone = SKB_FCLONE_UNAVAILABLE;
612 }
613
614 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
618{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700619#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /*
621 * Shift between the two data areas in bytes
622 */
623 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700624#endif
Herbert Xudec18812007-10-14 00:37:30 -0700625
626 __copy_skb_header(new, old);
627
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700628#ifndef NET_SKBUFF_DATA_USES_OFFSET
629 /* {transport,network,mac}_header are relative to skb->head */
630 new->transport_header += offset;
631 new->network_header += offset;
632 new->mac_header += offset;
633#endif
Herbert Xu79671682006-06-22 02:40:14 -0700634 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
635 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
636 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
639/**
640 * skb_copy - create private copy of an sk_buff
641 * @skb: buffer to copy
642 * @gfp_mask: allocation priority
643 *
644 * Make a copy of both an &sk_buff and its data. This is used when the
645 * caller wishes to modify the data and needs a private copy of the
646 * data to alter. Returns %NULL on failure or the pointer to the buffer
647 * on success. The returned buffer has a reference count of 1.
648 *
649 * As by-product this function converts non-linear &sk_buff to linear
650 * one, so that &sk_buff becomes completely private and caller is allowed
651 * to modify all the data of returned buffer. This means that this
652 * function is not recommended for use in circumstances when only
653 * header is going to be modified. Use pskb_copy() instead.
654 */
655
Al Virodd0fc662005-10-07 07:46:04 +0100656struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 int headerlen = skb->data - skb->head;
659 /*
660 * Allocate the copy buffer
661 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700662 struct sk_buff *n;
663#ifdef NET_SKBUFF_DATA_USES_OFFSET
664 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
665#else
666 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
667#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!n)
669 return NULL;
670
671 /* Set the data pointer */
672 skb_reserve(n, headerlen);
673 /* Set the tail pointer and length */
674 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
677 BUG();
678
679 copy_skb_header(n, skb);
680 return n;
681}
682
683
684/**
685 * pskb_copy - create copy of an sk_buff with private head.
686 * @skb: buffer to copy
687 * @gfp_mask: allocation priority
688 *
689 * Make a copy of both an &sk_buff and part of its data, located
690 * in header. Fragmented data remain shared. This is used when
691 * the caller wishes to modify only header of &sk_buff and needs
692 * private copy of the header to alter. Returns %NULL on failure
693 * or the pointer to the buffer on success.
694 * The returned buffer has a reference count of 1.
695 */
696
Al Virodd0fc662005-10-07 07:46:04 +0100697struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 /*
700 * Allocate the copy buffer
701 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700702 struct sk_buff *n;
703#ifdef NET_SKBUFF_DATA_USES_OFFSET
704 n = alloc_skb(skb->end, gfp_mask);
705#else
706 n = alloc_skb(skb->end - skb->head, gfp_mask);
707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!n)
709 goto out;
710
711 /* Set the data pointer */
712 skb_reserve(n, skb->data - skb->head);
713 /* Set the tail pointer and length */
714 skb_put(n, skb_headlen(skb));
715 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300716 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Herbert Xu25f484a2006-11-07 14:57:15 -0800718 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 n->data_len = skb->data_len;
720 n->len = skb->len;
721
722 if (skb_shinfo(skb)->nr_frags) {
723 int i;
724
725 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
726 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
727 get_page(skb_shinfo(n)->frags[i].page);
728 }
729 skb_shinfo(n)->nr_frags = i;
730 }
731
732 if (skb_shinfo(skb)->frag_list) {
733 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
734 skb_clone_fraglist(n);
735 }
736
737 copy_skb_header(n, skb);
738out:
739 return n;
740}
741
742/**
743 * pskb_expand_head - reallocate header of &sk_buff
744 * @skb: buffer to reallocate
745 * @nhead: room to add at head
746 * @ntail: room to add at tail
747 * @gfp_mask: allocation priority
748 *
749 * Expands (or creates identical copy, if &nhead and &ntail are zero)
750 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
751 * reference count of 1. Returns zero in the case of success or error,
752 * if expansion failed. In the last case, &sk_buff is not changed.
753 *
754 * All the pointers pointing into skb header may change and must be
755 * reloaded after call to this function.
756 */
757
Victor Fusco86a76ca2005-07-08 14:57:47 -0700758int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100759 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 int i;
762 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700763#ifdef NET_SKBUFF_DATA_USES_OFFSET
764 int size = nhead + skb->end + ntail;
765#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 long off;
769
Herbert Xu4edd87a2008-10-01 07:09:38 -0700770 BUG_ON(nhead < 0);
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (skb_shared(skb))
773 BUG();
774
775 size = SKB_DATA_ALIGN(size);
776
777 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
778 if (!data)
779 goto nodata;
780
781 /* Copy only real data... and, alas, header. This should be
782 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700783#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700784 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700785#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700786 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700787#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700788 memcpy(data + size, skb_end_pointer(skb),
789 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
792 get_page(skb_shinfo(skb)->frags[i].page);
793
794 if (skb_shinfo(skb)->frag_list)
795 skb_clone_fraglist(skb);
796
797 skb_release_data(skb);
798
799 off = (data + nhead) - skb->head;
800
801 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700803#ifdef NET_SKBUFF_DATA_USES_OFFSET
804 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700805 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700806#else
807 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700808#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700809 /* {transport,network,mac}_header and tail are relative to skb->head */
810 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700811 skb->transport_header += off;
812 skb->network_header += off;
813 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700814 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700816 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 skb->nohdr = 0;
818 atomic_set(&skb_shinfo(skb)->dataref, 1);
819 return 0;
820
821nodata:
822 return -ENOMEM;
823}
824
825/* Make private copy of skb with writable head and some headroom */
826
827struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
828{
829 struct sk_buff *skb2;
830 int delta = headroom - skb_headroom(skb);
831
832 if (delta <= 0)
833 skb2 = pskb_copy(skb, GFP_ATOMIC);
834 else {
835 skb2 = skb_clone(skb, GFP_ATOMIC);
836 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
837 GFP_ATOMIC)) {
838 kfree_skb(skb2);
839 skb2 = NULL;
840 }
841 }
842 return skb2;
843}
844
845
846/**
847 * skb_copy_expand - copy and expand sk_buff
848 * @skb: buffer to copy
849 * @newheadroom: new free bytes at head
850 * @newtailroom: new free bytes at tail
851 * @gfp_mask: allocation priority
852 *
853 * Make a copy of both an &sk_buff and its data and while doing so
854 * allocate additional space.
855 *
856 * This is used when the caller wishes to modify the data and needs a
857 * private copy of the data to alter as well as more space for new fields.
858 * Returns %NULL on failure or the pointer to the buffer
859 * on success. The returned buffer has a reference count of 1.
860 *
861 * You must pass %GFP_ATOMIC as the allocation priority if this function
862 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 */
864struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700865 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100866 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 /*
869 * Allocate the copy buffer
870 */
871 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
872 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700873 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700875 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 if (!n)
878 return NULL;
879
880 skb_reserve(n, newheadroom);
881
882 /* Set the tail pointer and length */
883 skb_put(n, skb->len);
884
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700885 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 head_copy_off = 0;
887 if (newheadroom <= head_copy_len)
888 head_copy_len = newheadroom;
889 else
890 head_copy_off = newheadroom - head_copy_len;
891
892 /* Copy the linear header and data. */
893 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
894 skb->len + head_copy_len))
895 BUG();
896
897 copy_skb_header(n, skb);
898
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700899 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700900 n->csum_start += off;
901#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700902 n->transport_header += off;
903 n->network_header += off;
904 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700905#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return n;
908}
909
910/**
911 * skb_pad - zero pad the tail of an skb
912 * @skb: buffer to pad
913 * @pad: space to pad
914 *
915 * Ensure that a buffer is followed by a padding area that is zero
916 * filled. Used by network drivers which may DMA or transfer data
917 * beyond the buffer end onto the wire.
918 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700919 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900921
Herbert Xu5b057c62006-06-23 02:06:41 -0700922int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Herbert Xu5b057c62006-06-23 02:06:41 -0700924 int err;
925 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700928 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700930 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700932
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700933 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700934 if (likely(skb_cloned(skb) || ntail > 0)) {
935 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
936 if (unlikely(err))
937 goto free_skb;
938 }
939
940 /* FIXME: The use of this function with non-linear skb's really needs
941 * to be audited.
942 */
943 err = skb_linearize(skb);
944 if (unlikely(err))
945 goto free_skb;
946
947 memset(skb->data + skb->len, 0, pad);
948 return 0;
949
950free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700952 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900953}
954
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700955/**
956 * skb_put - add data to a buffer
957 * @skb: buffer to use
958 * @len: amount of data to add
959 *
960 * This function extends the used data area of the buffer. If this would
961 * exceed the total buffer size the kernel will panic. A pointer to the
962 * first byte of the extra data is returned.
963 */
964unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
965{
966 unsigned char *tmp = skb_tail_pointer(skb);
967 SKB_LINEAR_ASSERT(skb);
968 skb->tail += len;
969 skb->len += len;
970 if (unlikely(skb->tail > skb->end))
971 skb_over_panic(skb, len, __builtin_return_address(0));
972 return tmp;
973}
974EXPORT_SYMBOL(skb_put);
975
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700976/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -0700977 * skb_push - add data to the start of a buffer
978 * @skb: buffer to use
979 * @len: amount of data to add
980 *
981 * This function extends the used data area of the buffer at the buffer
982 * start. If this would exceed the total buffer headroom the kernel will
983 * panic. A pointer to the first byte of the extra data is returned.
984 */
985unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
986{
987 skb->data -= len;
988 skb->len += len;
989 if (unlikely(skb->data<skb->head))
990 skb_under_panic(skb, len, __builtin_return_address(0));
991 return skb->data;
992}
993EXPORT_SYMBOL(skb_push);
994
995/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700996 * skb_pull - remove data from the start of a buffer
997 * @skb: buffer to use
998 * @len: amount of data to remove
999 *
1000 * This function removes data from the start of a buffer, returning
1001 * the memory to the headroom. A pointer to the next data in the buffer
1002 * is returned. Once the data has been pulled future pushes will overwrite
1003 * the old data.
1004 */
1005unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1006{
1007 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1008}
1009EXPORT_SYMBOL(skb_pull);
1010
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001011/**
1012 * skb_trim - remove end from a buffer
1013 * @skb: buffer to alter
1014 * @len: new length
1015 *
1016 * Cut the length of a buffer down by removing data from the tail. If
1017 * the buffer is already under the length specified it is not modified.
1018 * The skb must be linear.
1019 */
1020void skb_trim(struct sk_buff *skb, unsigned int len)
1021{
1022 if (skb->len > len)
1023 __skb_trim(skb, len);
1024}
1025EXPORT_SYMBOL(skb_trim);
1026
Herbert Xu3cc0e872006-06-09 16:13:38 -07001027/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 */
1029
Herbert Xu3cc0e872006-06-09 16:13:38 -07001030int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Herbert Xu27b437c2006-07-13 19:26:39 -07001032 struct sk_buff **fragp;
1033 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 int offset = skb_headlen(skb);
1035 int nfrags = skb_shinfo(skb)->nr_frags;
1036 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001037 int err;
1038
1039 if (skb_cloned(skb) &&
1040 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1041 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001043 i = 0;
1044 if (offset >= len)
1045 goto drop_pages;
1046
1047 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001049
1050 if (end < len) {
1051 offset = end;
1052 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001054
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001055 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001056
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001057drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001058 skb_shinfo(skb)->nr_frags = i;
1059
1060 for (; i < nfrags; i++)
1061 put_page(skb_shinfo(skb)->frags[i].page);
1062
1063 if (skb_shinfo(skb)->frag_list)
1064 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001065 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067
Herbert Xu27b437c2006-07-13 19:26:39 -07001068 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1069 fragp = &frag->next) {
1070 int end = offset + frag->len;
1071
1072 if (skb_shared(frag)) {
1073 struct sk_buff *nfrag;
1074
1075 nfrag = skb_clone(frag, GFP_ATOMIC);
1076 if (unlikely(!nfrag))
1077 return -ENOMEM;
1078
1079 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001080 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001081 frag = nfrag;
1082 *fragp = frag;
1083 }
1084
1085 if (end < len) {
1086 offset = end;
1087 continue;
1088 }
1089
1090 if (end > len &&
1091 unlikely((err = pskb_trim(frag, len - offset))))
1092 return err;
1093
1094 if (frag->next)
1095 skb_drop_list(&frag->next);
1096 break;
1097 }
1098
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001099done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001100 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 skb->data_len -= skb->len - len;
1102 skb->len = len;
1103 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001104 skb->len = len;
1105 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001106 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108
1109 return 0;
1110}
1111
1112/**
1113 * __pskb_pull_tail - advance tail of skb header
1114 * @skb: buffer to reallocate
1115 * @delta: number of bytes to advance tail
1116 *
1117 * The function makes a sense only on a fragmented &sk_buff,
1118 * it expands header moving its tail forward and copying necessary
1119 * data from fragmented part.
1120 *
1121 * &sk_buff MUST have reference count of 1.
1122 *
1123 * Returns %NULL (and &sk_buff does not change) if pull failed
1124 * or value of new tail of skb in the case of success.
1125 *
1126 * All the pointers pointing into skb header may change and must be
1127 * reloaded after call to this function.
1128 */
1129
1130/* Moves tail of skb head forward, copying data from fragmented part,
1131 * when it is necessary.
1132 * 1. It may fail due to malloc failure.
1133 * 2. It may change skb pointers.
1134 *
1135 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1136 */
1137unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1138{
1139 /* If skb has not enough free space at tail, get new one
1140 * plus 128 bytes for future expansions. If we have enough
1141 * room at tail, reallocate without expansion only if skb is cloned.
1142 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001143 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (eat > 0 || skb_cloned(skb)) {
1146 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1147 GFP_ATOMIC))
1148 return NULL;
1149 }
1150
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001151 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 BUG();
1153
1154 /* Optimization: no fragments, no reasons to preestimate
1155 * size of pulled pages. Superb.
1156 */
1157 if (!skb_shinfo(skb)->frag_list)
1158 goto pull_pages;
1159
1160 /* Estimate size of pulled pages. */
1161 eat = delta;
1162 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1163 if (skb_shinfo(skb)->frags[i].size >= eat)
1164 goto pull_pages;
1165 eat -= skb_shinfo(skb)->frags[i].size;
1166 }
1167
1168 /* If we need update frag list, we are in troubles.
1169 * Certainly, it possible to add an offset to skb data,
1170 * but taking into account that pulling is expected to
1171 * be very rare operation, it is worth to fight against
1172 * further bloating skb head and crucify ourselves here instead.
1173 * Pure masohism, indeed. 8)8)
1174 */
1175 if (eat) {
1176 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1177 struct sk_buff *clone = NULL;
1178 struct sk_buff *insp = NULL;
1179
1180 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001181 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (list->len <= eat) {
1184 /* Eaten as whole. */
1185 eat -= list->len;
1186 list = list->next;
1187 insp = list;
1188 } else {
1189 /* Eaten partially. */
1190
1191 if (skb_shared(list)) {
1192 /* Sucks! We need to fork list. :-( */
1193 clone = skb_clone(list, GFP_ATOMIC);
1194 if (!clone)
1195 return NULL;
1196 insp = list->next;
1197 list = clone;
1198 } else {
1199 /* This may be pulled without
1200 * problems. */
1201 insp = list;
1202 }
1203 if (!pskb_pull(list, eat)) {
1204 if (clone)
1205 kfree_skb(clone);
1206 return NULL;
1207 }
1208 break;
1209 }
1210 } while (eat);
1211
1212 /* Free pulled out fragments. */
1213 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1214 skb_shinfo(skb)->frag_list = list->next;
1215 kfree_skb(list);
1216 }
1217 /* And insert new clone at head. */
1218 if (clone) {
1219 clone->next = list;
1220 skb_shinfo(skb)->frag_list = clone;
1221 }
1222 }
1223 /* Success! Now we may commit changes to skb data. */
1224
1225pull_pages:
1226 eat = delta;
1227 k = 0;
1228 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1229 if (skb_shinfo(skb)->frags[i].size <= eat) {
1230 put_page(skb_shinfo(skb)->frags[i].page);
1231 eat -= skb_shinfo(skb)->frags[i].size;
1232 } else {
1233 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1234 if (eat) {
1235 skb_shinfo(skb)->frags[k].page_offset += eat;
1236 skb_shinfo(skb)->frags[k].size -= eat;
1237 eat = 0;
1238 }
1239 k++;
1240 }
1241 }
1242 skb_shinfo(skb)->nr_frags = k;
1243
1244 skb->tail += delta;
1245 skb->data_len -= delta;
1246
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001247 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
1250/* Copy some data bits from skb to kernel buffer. */
1251
1252int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1253{
1254 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001255 int start = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 if (offset > (int)skb->len - len)
1258 goto fault;
1259
1260 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001261 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (copy > len)
1263 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001264 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if ((len -= copy) == 0)
1266 return 0;
1267 offset += copy;
1268 to += copy;
1269 }
1270
1271 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001272 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001274 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001275
1276 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if ((copy = end - offset) > 0) {
1278 u8 *vaddr;
1279
1280 if (copy > len)
1281 copy = len;
1282
1283 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1284 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001285 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1286 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 kunmap_skb_frag(vaddr);
1288
1289 if ((len -= copy) == 0)
1290 return 0;
1291 offset += copy;
1292 to += copy;
1293 }
David S. Miller1a028e52007-04-27 15:21:23 -07001294 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
1296
1297 if (skb_shinfo(skb)->frag_list) {
1298 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1299
1300 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001301 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001303 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001304
1305 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if ((copy = end - offset) > 0) {
1307 if (copy > len)
1308 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001309 if (skb_copy_bits(list, offset - start,
1310 to, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 goto fault;
1312 if ((len -= copy) == 0)
1313 return 0;
1314 offset += copy;
1315 to += copy;
1316 }
David S. Miller1a028e52007-04-27 15:21:23 -07001317 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319 }
1320 if (!len)
1321 return 0;
1322
1323fault:
1324 return -EFAULT;
1325}
1326
Jens Axboe9c55e012007-11-06 23:30:13 -08001327/*
1328 * Callback from splice_to_pipe(), if we need to release some pages
1329 * at the end of the spd in case we error'ed out in filling the pipe.
1330 */
1331static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1332{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001333 put_page(spd->pages[i]);
1334}
Jens Axboe9c55e012007-11-06 23:30:13 -08001335
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001336static inline struct page *linear_to_page(struct page *page, unsigned int len,
1337 unsigned int offset)
1338{
1339 struct page *p = alloc_pages(GFP_KERNEL, 0);
1340
1341 if (!p)
1342 return NULL;
1343 memcpy(page_address(p) + offset, page_address(page) + offset, len);
1344
1345 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001346}
1347
1348/*
1349 * Fill page/offset/length into spd, if it can hold more pages.
1350 */
1351static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
1352 unsigned int len, unsigned int offset,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001353 struct sk_buff *skb, int linear)
Jens Axboe9c55e012007-11-06 23:30:13 -08001354{
1355 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1356 return 1;
1357
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001358 if (linear) {
1359 page = linear_to_page(page, len, offset);
1360 if (!page)
1361 return 1;
1362 } else
1363 get_page(page);
1364
Jens Axboe9c55e012007-11-06 23:30:13 -08001365 spd->pages[spd->nr_pages] = page;
1366 spd->partial[spd->nr_pages].len = len;
1367 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001368 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001369
Jens Axboe9c55e012007-11-06 23:30:13 -08001370 return 0;
1371}
1372
Octavian Purdila2870c432008-07-15 00:49:11 -07001373static inline void __segment_seek(struct page **page, unsigned int *poff,
1374 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001375{
Octavian Purdila2870c432008-07-15 00:49:11 -07001376 *poff += off;
1377 *page += *poff / PAGE_SIZE;
1378 *poff = *poff % PAGE_SIZE;
1379 *plen -= off;
1380}
Jens Axboe9c55e012007-11-06 23:30:13 -08001381
Octavian Purdila2870c432008-07-15 00:49:11 -07001382static inline int __splice_segment(struct page *page, unsigned int poff,
1383 unsigned int plen, unsigned int *off,
1384 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001385 struct splice_pipe_desc *spd, int linear)
Octavian Purdila2870c432008-07-15 00:49:11 -07001386{
1387 if (!*len)
1388 return 1;
1389
1390 /* skip this segment if already processed */
1391 if (*off >= plen) {
1392 *off -= plen;
1393 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001394 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001395
Octavian Purdila2870c432008-07-15 00:49:11 -07001396 /* ignore any bits we already processed */
1397 if (*off) {
1398 __segment_seek(&page, &poff, &plen, *off);
1399 *off = 0;
1400 }
1401
1402 do {
1403 unsigned int flen = min(*len, plen);
1404
1405 /* the linear region may spread across several pages */
1406 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1407
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001408 if (spd_fill_page(spd, page, flen, poff, skb, linear))
Octavian Purdila2870c432008-07-15 00:49:11 -07001409 return 1;
1410
1411 __segment_seek(&page, &poff, &plen, flen);
1412 *len -= flen;
1413
1414 } while (*len && plen);
1415
1416 return 0;
1417}
1418
1419/*
1420 * Map linear and fragment data from the skb to spd. It reports failure if the
1421 * pipe is full or if we already spliced the requested length.
1422 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001423static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Octavian Purdila2870c432008-07-15 00:49:11 -07001424 unsigned int *len,
1425 struct splice_pipe_desc *spd)
1426{
1427 int seg;
1428
Jens Axboe9c55e012007-11-06 23:30:13 -08001429 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001430 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001431 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001432 if (__splice_segment(virt_to_page(skb->data),
1433 (unsigned long) skb->data & (PAGE_SIZE - 1),
1434 skb_headlen(skb),
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001435 offset, len, skb, spd, 1))
Octavian Purdila2870c432008-07-15 00:49:11 -07001436 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001437
1438 /*
1439 * then map the fragments
1440 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001441 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1442 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1443
Octavian Purdila2870c432008-07-15 00:49:11 -07001444 if (__splice_segment(f->page, f->page_offset, f->size,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001445 offset, len, skb, spd, 0))
Octavian Purdila2870c432008-07-15 00:49:11 -07001446 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001447 }
1448
Octavian Purdila2870c432008-07-15 00:49:11 -07001449 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001450}
1451
1452/*
1453 * Map data from the skb to a pipe. Should handle both the linear part,
1454 * the fragments, and the frag list. It does NOT handle frag lists within
1455 * the frag list, if such a thing exists. We'd probably need to recurse to
1456 * handle that cleanly.
1457 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001458int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001459 struct pipe_inode_info *pipe, unsigned int tlen,
1460 unsigned int flags)
1461{
1462 struct partial_page partial[PIPE_BUFFERS];
1463 struct page *pages[PIPE_BUFFERS];
1464 struct splice_pipe_desc spd = {
1465 .pages = pages,
1466 .partial = partial,
1467 .flags = flags,
1468 .ops = &sock_pipe_buf_ops,
1469 .spd_release = sock_spd_release,
1470 };
Jens Axboe9c55e012007-11-06 23:30:13 -08001471
1472 /*
1473 * __skb_splice_bits() only fails if the output has no room left,
1474 * so no point in going over the frag_list for the error case.
1475 */
1476 if (__skb_splice_bits(skb, &offset, &tlen, &spd))
1477 goto done;
1478 else if (!tlen)
1479 goto done;
1480
1481 /*
1482 * now see if we have a frag_list to map
1483 */
1484 if (skb_shinfo(skb)->frag_list) {
1485 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1486
1487 for (; list && tlen; list = list->next) {
1488 if (__skb_splice_bits(list, &offset, &tlen, &spd))
1489 break;
1490 }
1491 }
1492
1493done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001494 if (spd.nr_pages) {
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001495 struct sock *sk = skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001496 int ret;
1497
1498 /*
1499 * Drop the socket lock, otherwise we have reverse
1500 * locking dependencies between sk_lock and i_mutex
1501 * here as compared to sendfile(). We enter here
1502 * with the socket lock held, and splice_to_pipe() will
1503 * grab the pipe inode lock. For sendfile() emulation,
1504 * we call into ->sendpage() with the i_mutex lock held
1505 * and networking will grab the socket lock.
1506 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001507 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001508 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001509 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001510 return ret;
1511 }
1512
1513 return 0;
1514}
1515
Herbert Xu357b40a2005-04-19 22:30:14 -07001516/**
1517 * skb_store_bits - store bits from kernel buffer to skb
1518 * @skb: destination buffer
1519 * @offset: offset in destination
1520 * @from: source buffer
1521 * @len: number of bytes to copy
1522 *
1523 * Copy the specified number of bytes from the source buffer to the
1524 * destination skb. This function handles all the messy bits of
1525 * traversing fragment lists and such.
1526 */
1527
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001528int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001529{
1530 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001531 int start = skb_headlen(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -07001532
1533 if (offset > (int)skb->len - len)
1534 goto fault;
1535
David S. Miller1a028e52007-04-27 15:21:23 -07001536 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001537 if (copy > len)
1538 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001539 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001540 if ((len -= copy) == 0)
1541 return 0;
1542 offset += copy;
1543 from += copy;
1544 }
1545
1546 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1547 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001548 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001549
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001550 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001551
1552 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001553 if ((copy = end - offset) > 0) {
1554 u8 *vaddr;
1555
1556 if (copy > len)
1557 copy = len;
1558
1559 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001560 memcpy(vaddr + frag->page_offset + offset - start,
1561 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001562 kunmap_skb_frag(vaddr);
1563
1564 if ((len -= copy) == 0)
1565 return 0;
1566 offset += copy;
1567 from += copy;
1568 }
David S. Miller1a028e52007-04-27 15:21:23 -07001569 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001570 }
1571
1572 if (skb_shinfo(skb)->frag_list) {
1573 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1574
1575 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001576 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001577
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001578 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001579
1580 end = start + list->len;
Herbert Xu357b40a2005-04-19 22:30:14 -07001581 if ((copy = end - offset) > 0) {
1582 if (copy > len)
1583 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001584 if (skb_store_bits(list, offset - start,
1585 from, copy))
Herbert Xu357b40a2005-04-19 22:30:14 -07001586 goto fault;
1587 if ((len -= copy) == 0)
1588 return 0;
1589 offset += copy;
1590 from += copy;
1591 }
David S. Miller1a028e52007-04-27 15:21:23 -07001592 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001593 }
1594 }
1595 if (!len)
1596 return 0;
1597
1598fault:
1599 return -EFAULT;
1600}
1601
1602EXPORT_SYMBOL(skb_store_bits);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604/* Checksum skb data. */
1605
Al Viro2bbbc862006-11-14 21:37:14 -08001606__wsum skb_checksum(const struct sk_buff *skb, int offset,
1607 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
David S. Miller1a028e52007-04-27 15:21:23 -07001609 int start = skb_headlen(skb);
1610 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int pos = 0;
1612
1613 /* Checksum header. */
1614 if (copy > 0) {
1615 if (copy > len)
1616 copy = len;
1617 csum = csum_partial(skb->data + offset, copy, csum);
1618 if ((len -= copy) == 0)
1619 return csum;
1620 offset += copy;
1621 pos = copy;
1622 }
1623
1624 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001625 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001627 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001628
1629 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001631 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 u8 *vaddr;
1633 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1634
1635 if (copy > len)
1636 copy = len;
1637 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001638 csum2 = csum_partial(vaddr + frag->page_offset +
1639 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 kunmap_skb_frag(vaddr);
1641 csum = csum_block_add(csum, csum2, pos);
1642 if (!(len -= copy))
1643 return csum;
1644 offset += copy;
1645 pos += copy;
1646 }
David S. Miller1a028e52007-04-27 15:21:23 -07001647 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649
1650 if (skb_shinfo(skb)->frag_list) {
1651 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1652
1653 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001654 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001656 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001657
1658 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if ((copy = end - offset) > 0) {
Al Viro5f92a732006-11-14 21:36:54 -08001660 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (copy > len)
1662 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001663 csum2 = skb_checksum(list, offset - start,
1664 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 csum = csum_block_add(csum, csum2, pos);
1666 if ((len -= copy) == 0)
1667 return csum;
1668 offset += copy;
1669 pos += copy;
1670 }
David S. Miller1a028e52007-04-27 15:21:23 -07001671 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001674 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 return csum;
1677}
1678
1679/* Both of above in one bottle. */
1680
Al Viro81d77662006-11-14 21:37:33 -08001681__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1682 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
David S. Miller1a028e52007-04-27 15:21:23 -07001684 int start = skb_headlen(skb);
1685 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int pos = 0;
1687
1688 /* Copy header. */
1689 if (copy > 0) {
1690 if (copy > len)
1691 copy = len;
1692 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1693 copy, csum);
1694 if ((len -= copy) == 0)
1695 return csum;
1696 offset += copy;
1697 to += copy;
1698 pos = copy;
1699 }
1700
1701 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001702 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001704 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001705
1706 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001708 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 u8 *vaddr;
1710 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1711
1712 if (copy > len)
1713 copy = len;
1714 vaddr = kmap_skb_frag(frag);
1715 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001716 frag->page_offset +
1717 offset - start, to,
1718 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 kunmap_skb_frag(vaddr);
1720 csum = csum_block_add(csum, csum2, pos);
1721 if (!(len -= copy))
1722 return csum;
1723 offset += copy;
1724 to += copy;
1725 pos += copy;
1726 }
David S. Miller1a028e52007-04-27 15:21:23 -07001727 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
1729
1730 if (skb_shinfo(skb)->frag_list) {
1731 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1732
1733 for (; list; list = list->next) {
Al Viro81d77662006-11-14 21:37:33 -08001734 __wsum csum2;
David S. Miller1a028e52007-04-27 15:21:23 -07001735 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001737 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001738
1739 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if ((copy = end - offset) > 0) {
1741 if (copy > len)
1742 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001743 csum2 = skb_copy_and_csum_bits(list,
1744 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 to, copy, 0);
1746 csum = csum_block_add(csum, csum2, pos);
1747 if ((len -= copy) == 0)
1748 return csum;
1749 offset += copy;
1750 to += copy;
1751 pos += copy;
1752 }
David S. Miller1a028e52007-04-27 15:21:23 -07001753 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001756 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return csum;
1758}
1759
1760void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1761{
Al Virod3bc23e2006-11-14 21:24:49 -08001762 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 long csstart;
1764
Patrick McHardy84fa7932006-08-29 16:44:56 -07001765 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001766 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 else
1768 csstart = skb_headlen(skb);
1769
Kris Katterjohn09a62662006-01-08 22:24:28 -08001770 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001772 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 csum = 0;
1775 if (csstart != skb->len)
1776 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1777 skb->len - csstart, 0);
1778
Patrick McHardy84fa7932006-08-29 16:44:56 -07001779 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001780 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Al Virod3bc23e2006-11-14 21:24:49 -08001782 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784}
1785
1786/**
1787 * skb_dequeue - remove from the head of the queue
1788 * @list: list to dequeue from
1789 *
1790 * Remove the head of the list. The list lock is taken so the function
1791 * may be used safely with other locking list functions. The head item is
1792 * returned or %NULL if the list is empty.
1793 */
1794
1795struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1796{
1797 unsigned long flags;
1798 struct sk_buff *result;
1799
1800 spin_lock_irqsave(&list->lock, flags);
1801 result = __skb_dequeue(list);
1802 spin_unlock_irqrestore(&list->lock, flags);
1803 return result;
1804}
1805
1806/**
1807 * skb_dequeue_tail - remove from the tail of the queue
1808 * @list: list to dequeue from
1809 *
1810 * Remove the tail of the list. The list lock is taken so the function
1811 * may be used safely with other locking list functions. The tail item is
1812 * returned or %NULL if the list is empty.
1813 */
1814struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1815{
1816 unsigned long flags;
1817 struct sk_buff *result;
1818
1819 spin_lock_irqsave(&list->lock, flags);
1820 result = __skb_dequeue_tail(list);
1821 spin_unlock_irqrestore(&list->lock, flags);
1822 return result;
1823}
1824
1825/**
1826 * skb_queue_purge - empty a list
1827 * @list: list to empty
1828 *
1829 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1830 * the list and one reference dropped. This function takes the list
1831 * lock and is atomic with respect to other list locking functions.
1832 */
1833void skb_queue_purge(struct sk_buff_head *list)
1834{
1835 struct sk_buff *skb;
1836 while ((skb = skb_dequeue(list)) != NULL)
1837 kfree_skb(skb);
1838}
1839
1840/**
1841 * skb_queue_head - queue a buffer at the list head
1842 * @list: list to use
1843 * @newsk: buffer to queue
1844 *
1845 * Queue a buffer at the start of the list. This function takes the
1846 * list lock and can be used safely with other locking &sk_buff functions
1847 * safely.
1848 *
1849 * A buffer cannot be placed on two lists at the same time.
1850 */
1851void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1852{
1853 unsigned long flags;
1854
1855 spin_lock_irqsave(&list->lock, flags);
1856 __skb_queue_head(list, newsk);
1857 spin_unlock_irqrestore(&list->lock, flags);
1858}
1859
1860/**
1861 * skb_queue_tail - queue a buffer at the list tail
1862 * @list: list to use
1863 * @newsk: buffer to queue
1864 *
1865 * Queue a buffer at the tail of the list. This function takes the
1866 * list lock and can be used safely with other locking &sk_buff functions
1867 * safely.
1868 *
1869 * A buffer cannot be placed on two lists at the same time.
1870 */
1871void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1872{
1873 unsigned long flags;
1874
1875 spin_lock_irqsave(&list->lock, flags);
1876 __skb_queue_tail(list, newsk);
1877 spin_unlock_irqrestore(&list->lock, flags);
1878}
David S. Miller8728b832005-08-09 19:25:21 -07001879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880/**
1881 * skb_unlink - remove a buffer from a list
1882 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001883 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 *
David S. Miller8728b832005-08-09 19:25:21 -07001885 * Remove a packet from a list. The list locks are taken and this
1886 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 *
David S. Miller8728b832005-08-09 19:25:21 -07001888 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 */
David S. Miller8728b832005-08-09 19:25:21 -07001890void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
David S. Miller8728b832005-08-09 19:25:21 -07001892 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
David S. Miller8728b832005-08-09 19:25:21 -07001894 spin_lock_irqsave(&list->lock, flags);
1895 __skb_unlink(skb, list);
1896 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899/**
1900 * skb_append - append a buffer
1901 * @old: buffer to insert after
1902 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001903 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 *
1905 * Place a packet after a given packet in a list. The list locks are taken
1906 * and this function is atomic with respect to other list locked calls.
1907 * A buffer cannot be placed on two lists at the same time.
1908 */
David S. Miller8728b832005-08-09 19:25:21 -07001909void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 unsigned long flags;
1912
David S. Miller8728b832005-08-09 19:25:21 -07001913 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001914 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001915 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
1918
1919/**
1920 * skb_insert - insert a buffer
1921 * @old: buffer to insert before
1922 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001923 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 *
David S. Miller8728b832005-08-09 19:25:21 -07001925 * Place a packet before a given packet in a list. The list locks are
1926 * taken and this function is atomic with respect to other list locked
1927 * calls.
1928 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 * A buffer cannot be placed on two lists at the same time.
1930 */
David S. Miller8728b832005-08-09 19:25:21 -07001931void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 unsigned long flags;
1934
David S. Miller8728b832005-08-09 19:25:21 -07001935 spin_lock_irqsave(&list->lock, flags);
1936 __skb_insert(newsk, old->prev, old, list);
1937 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940static inline void skb_split_inside_header(struct sk_buff *skb,
1941 struct sk_buff* skb1,
1942 const u32 len, const int pos)
1943{
1944 int i;
1945
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001946 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
1947 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 /* And move data appendix as is. */
1949 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1950 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
1951
1952 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
1953 skb_shinfo(skb)->nr_frags = 0;
1954 skb1->data_len = skb->data_len;
1955 skb1->len += skb1->data_len;
1956 skb->data_len = 0;
1957 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001958 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
1961static inline void skb_split_no_header(struct sk_buff *skb,
1962 struct sk_buff* skb1,
1963 const u32 len, int pos)
1964{
1965 int i, k = 0;
1966 const int nfrags = skb_shinfo(skb)->nr_frags;
1967
1968 skb_shinfo(skb)->nr_frags = 0;
1969 skb1->len = skb1->data_len = skb->len - len;
1970 skb->len = len;
1971 skb->data_len = len - pos;
1972
1973 for (i = 0; i < nfrags; i++) {
1974 int size = skb_shinfo(skb)->frags[i].size;
1975
1976 if (pos + size > len) {
1977 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
1978
1979 if (pos < len) {
1980 /* Split frag.
1981 * We have two variants in this case:
1982 * 1. Move all the frag to the second
1983 * part, if it is possible. F.e.
1984 * this approach is mandatory for TUX,
1985 * where splitting is expensive.
1986 * 2. Split is accurately. We make this.
1987 */
1988 get_page(skb_shinfo(skb)->frags[i].page);
1989 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
1990 skb_shinfo(skb1)->frags[0].size -= len - pos;
1991 skb_shinfo(skb)->frags[i].size = len - pos;
1992 skb_shinfo(skb)->nr_frags++;
1993 }
1994 k++;
1995 } else
1996 skb_shinfo(skb)->nr_frags++;
1997 pos += size;
1998 }
1999 skb_shinfo(skb1)->nr_frags = k;
2000}
2001
2002/**
2003 * skb_split - Split fragmented skb to two parts at length len.
2004 * @skb: the buffer to split
2005 * @skb1: the buffer to receive the second part
2006 * @len: new length for skb
2007 */
2008void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2009{
2010 int pos = skb_headlen(skb);
2011
2012 if (len < pos) /* Split line is inside header. */
2013 skb_split_inside_header(skb, skb1, len, pos);
2014 else /* Second chunk has no header, nothing to copy. */
2015 skb_split_no_header(skb, skb1, len, pos);
2016}
2017
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002018/* Shifting from/to a cloned skb is a no-go.
2019 *
2020 * Caller cannot keep skb_shinfo related pointers past calling here!
2021 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002022static int skb_prepare_for_shift(struct sk_buff *skb)
2023{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002024 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002025}
2026
2027/**
2028 * skb_shift - Shifts paged data partially from skb to another
2029 * @tgt: buffer into which tail data gets added
2030 * @skb: buffer from which the paged data comes from
2031 * @shiftlen: shift up to this many bytes
2032 *
2033 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2034 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2035 * It's up to caller to free skb if everything was shifted.
2036 *
2037 * If @tgt runs out of frags, the whole operation is aborted.
2038 *
2039 * Skb cannot include anything else but paged data while tgt is allowed
2040 * to have non-paged data as well.
2041 *
2042 * TODO: full sized shift could be optimized but that would need
2043 * specialized skb free'er to handle frags without up-to-date nr_frags.
2044 */
2045int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2046{
2047 int from, to, merge, todo;
2048 struct skb_frag_struct *fragfrom, *fragto;
2049
2050 BUG_ON(shiftlen > skb->len);
2051 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2052
2053 todo = shiftlen;
2054 from = 0;
2055 to = skb_shinfo(tgt)->nr_frags;
2056 fragfrom = &skb_shinfo(skb)->frags[from];
2057
2058 /* Actual merge is delayed until the point when we know we can
2059 * commit all, so that we don't have to undo partial changes
2060 */
2061 if (!to ||
2062 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2063 merge = -1;
2064 } else {
2065 merge = to - 1;
2066
2067 todo -= fragfrom->size;
2068 if (todo < 0) {
2069 if (skb_prepare_for_shift(skb) ||
2070 skb_prepare_for_shift(tgt))
2071 return 0;
2072
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002073 /* All previous frag pointers might be stale! */
2074 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002075 fragto = &skb_shinfo(tgt)->frags[merge];
2076
2077 fragto->size += shiftlen;
2078 fragfrom->size -= shiftlen;
2079 fragfrom->page_offset += shiftlen;
2080
2081 goto onlymerged;
2082 }
2083
2084 from++;
2085 }
2086
2087 /* Skip full, not-fitting skb to avoid expensive operations */
2088 if ((shiftlen == skb->len) &&
2089 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2090 return 0;
2091
2092 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2093 return 0;
2094
2095 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2096 if (to == MAX_SKB_FRAGS)
2097 return 0;
2098
2099 fragfrom = &skb_shinfo(skb)->frags[from];
2100 fragto = &skb_shinfo(tgt)->frags[to];
2101
2102 if (todo >= fragfrom->size) {
2103 *fragto = *fragfrom;
2104 todo -= fragfrom->size;
2105 from++;
2106 to++;
2107
2108 } else {
2109 get_page(fragfrom->page);
2110 fragto->page = fragfrom->page;
2111 fragto->page_offset = fragfrom->page_offset;
2112 fragto->size = todo;
2113
2114 fragfrom->page_offset += todo;
2115 fragfrom->size -= todo;
2116 todo = 0;
2117
2118 to++;
2119 break;
2120 }
2121 }
2122
2123 /* Ready to "commit" this state change to tgt */
2124 skb_shinfo(tgt)->nr_frags = to;
2125
2126 if (merge >= 0) {
2127 fragfrom = &skb_shinfo(skb)->frags[0];
2128 fragto = &skb_shinfo(tgt)->frags[merge];
2129
2130 fragto->size += fragfrom->size;
2131 put_page(fragfrom->page);
2132 }
2133
2134 /* Reposition in the original skb */
2135 to = 0;
2136 while (from < skb_shinfo(skb)->nr_frags)
2137 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2138 skb_shinfo(skb)->nr_frags = to;
2139
2140 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2141
2142onlymerged:
2143 /* Most likely the tgt won't ever need its checksum anymore, skb on
2144 * the other hand might need it if it needs to be resent
2145 */
2146 tgt->ip_summed = CHECKSUM_PARTIAL;
2147 skb->ip_summed = CHECKSUM_PARTIAL;
2148
2149 /* Yak, is it really working this way? Some helper please? */
2150 skb->len -= shiftlen;
2151 skb->data_len -= shiftlen;
2152 skb->truesize -= shiftlen;
2153 tgt->len += shiftlen;
2154 tgt->data_len += shiftlen;
2155 tgt->truesize += shiftlen;
2156
2157 return shiftlen;
2158}
2159
Thomas Graf677e90e2005-06-23 20:59:51 -07002160/**
2161 * skb_prepare_seq_read - Prepare a sequential read of skb data
2162 * @skb: the buffer to read
2163 * @from: lower offset of data to be read
2164 * @to: upper offset of data to be read
2165 * @st: state variable
2166 *
2167 * Initializes the specified state variable. Must be called before
2168 * invoking skb_seq_read() for the first time.
2169 */
2170void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2171 unsigned int to, struct skb_seq_state *st)
2172{
2173 st->lower_offset = from;
2174 st->upper_offset = to;
2175 st->root_skb = st->cur_skb = skb;
2176 st->frag_idx = st->stepped_offset = 0;
2177 st->frag_data = NULL;
2178}
2179
2180/**
2181 * skb_seq_read - Sequentially read skb data
2182 * @consumed: number of bytes consumed by the caller so far
2183 * @data: destination pointer for data to be returned
2184 * @st: state variable
2185 *
2186 * Reads a block of skb data at &consumed relative to the
2187 * lower offset specified to skb_prepare_seq_read(). Assigns
2188 * the head of the data block to &data and returns the length
2189 * of the block or 0 if the end of the skb data or the upper
2190 * offset has been reached.
2191 *
2192 * The caller is not required to consume all of the data
2193 * returned, i.e. &consumed is typically set to the number
2194 * of bytes already consumed and the next call to
2195 * skb_seq_read() will return the remaining part of the block.
2196 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002197 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002198 * this limitation is the cost for zerocopy seqeuental
2199 * reads of potentially non linear data.
2200 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002201 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002202 * at the moment, state->root_skb could be replaced with
2203 * a stack for this purpose.
2204 */
2205unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2206 struct skb_seq_state *st)
2207{
2208 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2209 skb_frag_t *frag;
2210
2211 if (unlikely(abs_offset >= st->upper_offset))
2212 return 0;
2213
2214next_skb:
2215 block_limit = skb_headlen(st->cur_skb);
2216
2217 if (abs_offset < block_limit) {
2218 *data = st->cur_skb->data + abs_offset;
2219 return block_limit - abs_offset;
2220 }
2221
2222 if (st->frag_idx == 0 && !st->frag_data)
2223 st->stepped_offset += skb_headlen(st->cur_skb);
2224
2225 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2226 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2227 block_limit = frag->size + st->stepped_offset;
2228
2229 if (abs_offset < block_limit) {
2230 if (!st->frag_data)
2231 st->frag_data = kmap_skb_frag(frag);
2232
2233 *data = (u8 *) st->frag_data + frag->page_offset +
2234 (abs_offset - st->stepped_offset);
2235
2236 return block_limit - abs_offset;
2237 }
2238
2239 if (st->frag_data) {
2240 kunmap_skb_frag(st->frag_data);
2241 st->frag_data = NULL;
2242 }
2243
2244 st->frag_idx++;
2245 st->stepped_offset += frag->size;
2246 }
2247
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002248 if (st->frag_data) {
2249 kunmap_skb_frag(st->frag_data);
2250 st->frag_data = NULL;
2251 }
2252
Thomas Graf677e90e2005-06-23 20:59:51 -07002253 if (st->cur_skb->next) {
2254 st->cur_skb = st->cur_skb->next;
2255 st->frag_idx = 0;
2256 goto next_skb;
2257 } else if (st->root_skb == st->cur_skb &&
2258 skb_shinfo(st->root_skb)->frag_list) {
2259 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
2260 goto next_skb;
2261 }
2262
2263 return 0;
2264}
2265
2266/**
2267 * skb_abort_seq_read - Abort a sequential read of skb data
2268 * @st: state variable
2269 *
2270 * Must be called if skb_seq_read() was not called until it
2271 * returned 0.
2272 */
2273void skb_abort_seq_read(struct skb_seq_state *st)
2274{
2275 if (st->frag_data)
2276 kunmap_skb_frag(st->frag_data);
2277}
2278
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002279#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2280
2281static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2282 struct ts_config *conf,
2283 struct ts_state *state)
2284{
2285 return skb_seq_read(offset, text, TS_SKB_CB(state));
2286}
2287
2288static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2289{
2290 skb_abort_seq_read(TS_SKB_CB(state));
2291}
2292
2293/**
2294 * skb_find_text - Find a text pattern in skb data
2295 * @skb: the buffer to look in
2296 * @from: search offset
2297 * @to: search limit
2298 * @config: textsearch configuration
2299 * @state: uninitialized textsearch state variable
2300 *
2301 * Finds a pattern in the skb data according to the specified
2302 * textsearch configuration. Use textsearch_next() to retrieve
2303 * subsequent occurrences of the pattern. Returns the offset
2304 * to the first occurrence or UINT_MAX if no match was found.
2305 */
2306unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2307 unsigned int to, struct ts_config *config,
2308 struct ts_state *state)
2309{
Phil Oesterf72b9482006-06-26 00:00:57 -07002310 unsigned int ret;
2311
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002312 config->get_next_block = skb_ts_get_next_block;
2313 config->finish = skb_ts_finish;
2314
2315 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2316
Phil Oesterf72b9482006-06-26 00:00:57 -07002317 ret = textsearch_find(config, state);
2318 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002319}
2320
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002321/**
2322 * skb_append_datato_frags: - append the user data to a skb
2323 * @sk: sock structure
2324 * @skb: skb structure to be appened with user data.
2325 * @getfrag: call back function to be used for getting the user data
2326 * @from: pointer to user message iov
2327 * @length: length of the iov message
2328 *
2329 * Description: This procedure append the user data in the fragment part
2330 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2331 */
2332int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002333 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002334 int len, int odd, struct sk_buff *skb),
2335 void *from, int length)
2336{
2337 int frg_cnt = 0;
2338 skb_frag_t *frag = NULL;
2339 struct page *page = NULL;
2340 int copy, left;
2341 int offset = 0;
2342 int ret;
2343
2344 do {
2345 /* Return error if we don't have space for new frag */
2346 frg_cnt = skb_shinfo(skb)->nr_frags;
2347 if (frg_cnt >= MAX_SKB_FRAGS)
2348 return -EFAULT;
2349
2350 /* allocate a new page for next frag */
2351 page = alloc_pages(sk->sk_allocation, 0);
2352
2353 /* If alloc_page fails just return failure and caller will
2354 * free previous allocated pages by doing kfree_skb()
2355 */
2356 if (page == NULL)
2357 return -ENOMEM;
2358
2359 /* initialize the next frag */
2360 sk->sk_sndmsg_page = page;
2361 sk->sk_sndmsg_off = 0;
2362 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2363 skb->truesize += PAGE_SIZE;
2364 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2365
2366 /* get the new initialized frag */
2367 frg_cnt = skb_shinfo(skb)->nr_frags;
2368 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2369
2370 /* copy the user data to page */
2371 left = PAGE_SIZE - frag->page_offset;
2372 copy = (length > left)? left : length;
2373
2374 ret = getfrag(from, (page_address(frag->page) +
2375 frag->page_offset + frag->size),
2376 offset, copy, 0, skb);
2377 if (ret < 0)
2378 return -EFAULT;
2379
2380 /* copy was successful so update the size parameters */
2381 sk->sk_sndmsg_off += copy;
2382 frag->size += copy;
2383 skb->len += copy;
2384 skb->data_len += copy;
2385 offset += copy;
2386 length -= copy;
2387
2388 } while (length > 0);
2389
2390 return 0;
2391}
2392
Herbert Xucbb042f2006-03-20 22:43:56 -08002393/**
2394 * skb_pull_rcsum - pull skb and update receive checksum
2395 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002396 * @len: length of data pulled
2397 *
2398 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002399 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002400 * receive path processing instead of skb_pull unless you know
2401 * that the checksum difference is zero (e.g., a valid IP header)
2402 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002403 */
2404unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2405{
2406 BUG_ON(len > skb->len);
2407 skb->len -= len;
2408 BUG_ON(skb->len < skb->data_len);
2409 skb_postpull_rcsum(skb, skb->data, len);
2410 return skb->data += len;
2411}
2412
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002413EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2414
Herbert Xuf4c50d92006-06-22 03:02:40 -07002415/**
2416 * skb_segment - Perform protocol segmentation on skb.
2417 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002418 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002419 *
2420 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002421 * a pointer to the first in a list of new skbs for the segments.
2422 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002423 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002424struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002425{
2426 struct sk_buff *segs = NULL;
2427 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002428 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002429 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002430 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002431 unsigned int offset = doffset;
2432 unsigned int headroom;
2433 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002434 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002435 int nfrags = skb_shinfo(skb)->nr_frags;
2436 int err = -ENOMEM;
2437 int i = 0;
2438 int pos;
2439
2440 __skb_push(skb, doffset);
2441 headroom = skb_headroom(skb);
2442 pos = skb_headlen(skb);
2443
2444 do {
2445 struct sk_buff *nskb;
2446 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002447 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002448 int size;
2449
2450 len = skb->len - offset;
2451 if (len > mss)
2452 len = mss;
2453
2454 hsize = skb_headlen(skb) - offset;
2455 if (hsize < 0)
2456 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002457 if (hsize > len || !sg)
2458 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002459
Herbert Xu89319d382008-12-15 23:26:06 -08002460 if (!hsize && i >= nfrags) {
2461 BUG_ON(fskb->len != len);
2462
2463 pos += len;
2464 nskb = skb_clone(fskb, GFP_ATOMIC);
2465 fskb = fskb->next;
2466
2467 if (unlikely(!nskb))
2468 goto err;
2469
2470 hsize = skb_end_pointer(nskb) - nskb->head;
2471 if (skb_cow_head(nskb, doffset + headroom)) {
2472 kfree_skb(nskb);
2473 goto err;
2474 }
2475
2476 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2477 hsize;
2478 skb_release_head_state(nskb);
2479 __skb_push(nskb, doffset);
2480 } else {
2481 nskb = alloc_skb(hsize + doffset + headroom,
2482 GFP_ATOMIC);
2483
2484 if (unlikely(!nskb))
2485 goto err;
2486
2487 skb_reserve(nskb, headroom);
2488 __skb_put(nskb, doffset);
2489 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002490
2491 if (segs)
2492 tail->next = nskb;
2493 else
2494 segs = nskb;
2495 tail = nskb;
2496
Herbert Xu6f85a122008-08-15 14:55:02 -07002497 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002498 nskb->mac_len = skb->mac_len;
2499
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002500 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002501 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002502 nskb->transport_header = (nskb->network_header +
2503 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002504 skb_copy_from_linear_data(skb, nskb->data, doffset);
2505
2506 if (pos >= offset + len)
2507 continue;
2508
Herbert Xuf4c50d92006-06-22 03:02:40 -07002509 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002510 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002511 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2512 skb_put(nskb, len),
2513 len, 0);
2514 continue;
2515 }
2516
2517 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002518
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002519 skb_copy_from_linear_data_offset(skb, offset,
2520 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002521
Herbert Xu89319d382008-12-15 23:26:06 -08002522 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002523 *frag = skb_shinfo(skb)->frags[i];
2524 get_page(frag->page);
2525 size = frag->size;
2526
2527 if (pos < offset) {
2528 frag->page_offset += offset - pos;
2529 frag->size -= offset - pos;
2530 }
2531
Herbert Xu89319d382008-12-15 23:26:06 -08002532 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002533
2534 if (pos + size <= offset + len) {
2535 i++;
2536 pos += size;
2537 } else {
2538 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002539 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002540 }
2541
2542 frag++;
2543 }
2544
Herbert Xu89319d382008-12-15 23:26:06 -08002545 if (pos < offset + len) {
2546 struct sk_buff *fskb2 = fskb;
2547
2548 BUG_ON(pos + fskb->len != offset + len);
2549
2550 pos += fskb->len;
2551 fskb = fskb->next;
2552
2553 if (fskb2->next) {
2554 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2555 if (!fskb2)
2556 goto err;
2557 } else
2558 skb_get(fskb2);
2559
2560 BUG_ON(skb_shinfo(nskb)->frag_list);
2561 skb_shinfo(nskb)->frag_list = fskb2;
2562 }
2563
2564skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002565 nskb->data_len = len - hsize;
2566 nskb->len += nskb->data_len;
2567 nskb->truesize += nskb->data_len;
2568 } while ((offset += len) < skb->len);
2569
2570 return segs;
2571
2572err:
2573 while ((skb = segs)) {
2574 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002575 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002576 }
2577 return ERR_PTR(err);
2578}
2579
2580EXPORT_SYMBOL_GPL(skb_segment);
2581
Herbert Xu71d93b32008-12-15 23:42:33 -08002582int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2583{
2584 struct sk_buff *p = *head;
2585 struct sk_buff *nskb;
2586 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002587 unsigned int len = skb_gro_len(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002588
Herbert Xu86911732009-01-29 14:19:50 +00002589 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002590 return -E2BIG;
2591
2592 if (skb_shinfo(p)->frag_list)
2593 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00002594 else if (skb_headlen(skb) <= skb_gro_offset(skb)) {
2595 if (skb_shinfo(p)->nr_frags + skb_shinfo(skb)->nr_frags >
2596 MAX_SKB_FRAGS)
2597 return -E2BIG;
2598
Herbert Xu86911732009-01-29 14:19:50 +00002599 skb_shinfo(skb)->frags[0].page_offset +=
2600 skb_gro_offset(skb) - skb_headlen(skb);
2601 skb_shinfo(skb)->frags[0].size -=
2602 skb_gro_offset(skb) - skb_headlen(skb);
2603
Herbert Xu5d38a072009-01-04 16:13:40 -08002604 memcpy(skb_shinfo(p)->frags + skb_shinfo(p)->nr_frags,
2605 skb_shinfo(skb)->frags,
2606 skb_shinfo(skb)->nr_frags * sizeof(skb_frag_t));
2607
2608 skb_shinfo(p)->nr_frags += skb_shinfo(skb)->nr_frags;
Herbert Xuf5572062009-01-14 20:40:03 -08002609 skb_shinfo(skb)->nr_frags = 0;
2610
2611 skb->truesize -= skb->data_len;
2612 skb->len -= skb->data_len;
2613 skb->data_len = 0;
2614
Herbert Xu5d38a072009-01-04 16:13:40 -08002615 NAPI_GRO_CB(skb)->free = 1;
2616 goto done;
2617 }
Herbert Xu71d93b32008-12-15 23:42:33 -08002618
2619 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002620 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002621 if (unlikely(!nskb))
2622 return -ENOMEM;
2623
2624 __copy_skb_header(nskb, p);
2625 nskb->mac_len = p->mac_len;
2626
2627 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002628 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002629
Herbert Xu86911732009-01-29 14:19:50 +00002630 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002631 skb_set_network_header(nskb, skb_network_offset(p));
2632 skb_set_transport_header(nskb, skb_transport_offset(p));
2633
Herbert Xu86911732009-01-29 14:19:50 +00002634 __skb_pull(p, skb_gro_offset(p));
2635 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2636 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002637
2638 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2639 skb_shinfo(nskb)->frag_list = p;
Herbert Xub5302562009-01-04 16:13:19 -08002640 skb_shinfo(nskb)->gso_size = skb_shinfo(p)->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002641 skb_header_release(p);
2642 nskb->prev = p;
2643
2644 nskb->data_len += p->len;
2645 nskb->truesize += p->len;
2646 nskb->len += p->len;
2647
2648 *head = nskb;
2649 nskb->next = p->next;
2650 p->next = NULL;
2651
2652 p = nskb;
2653
2654merge:
Herbert Xu71d93b32008-12-15 23:42:33 -08002655 p->prev->next = skb;
2656 p->prev = skb;
2657 skb_header_release(skb);
2658
Herbert Xu5d38a072009-01-04 16:13:40 -08002659done:
2660 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002661 p->data_len += len;
2662 p->truesize += len;
2663 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002664
2665 NAPI_GRO_CB(skb)->same_flow = 1;
2666 return 0;
2667}
2668EXPORT_SYMBOL_GPL(skb_gro_receive);
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670void __init skb_init(void)
2671{
2672 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2673 sizeof(struct sk_buff),
2674 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002675 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002676 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002677 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2678 (2*sizeof(struct sk_buff)) +
2679 sizeof(atomic_t),
2680 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002681 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002682 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
2684
David Howells716ea3a2007-04-02 20:19:53 -07002685/**
2686 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2687 * @skb: Socket buffer containing the buffers to be mapped
2688 * @sg: The scatter-gather list to map into
2689 * @offset: The offset into the buffer's contents to start mapping
2690 * @len: Length of buffer space to be mapped
2691 *
2692 * Fill the specified scatter-gather list with mappings/pointers into a
2693 * region of the buffer space attached to a socket buffer.
2694 */
David S. Miller51c739d2007-10-30 21:29:29 -07002695static int
2696__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002697{
David S. Miller1a028e52007-04-27 15:21:23 -07002698 int start = skb_headlen(skb);
2699 int i, copy = start - offset;
David Howells716ea3a2007-04-02 20:19:53 -07002700 int elt = 0;
2701
2702 if (copy > 0) {
2703 if (copy > len)
2704 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002705 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002706 elt++;
2707 if ((len -= copy) == 0)
2708 return elt;
2709 offset += copy;
2710 }
2711
2712 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002713 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002714
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002715 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002716
2717 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002718 if ((copy = end - offset) > 0) {
2719 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2720
2721 if (copy > len)
2722 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002723 sg_set_page(&sg[elt], frag->page, copy,
2724 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002725 elt++;
2726 if (!(len -= copy))
2727 return elt;
2728 offset += copy;
2729 }
David S. Miller1a028e52007-04-27 15:21:23 -07002730 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002731 }
2732
2733 if (skb_shinfo(skb)->frag_list) {
2734 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2735
2736 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07002737 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002738
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002739 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002740
2741 end = start + list->len;
David Howells716ea3a2007-04-02 20:19:53 -07002742 if ((copy = end - offset) > 0) {
2743 if (copy > len)
2744 copy = len;
David S. Miller51c739d2007-10-30 21:29:29 -07002745 elt += __skb_to_sgvec(list, sg+elt, offset - start,
2746 copy);
David Howells716ea3a2007-04-02 20:19:53 -07002747 if ((len -= copy) == 0)
2748 return elt;
2749 offset += copy;
2750 }
David S. Miller1a028e52007-04-27 15:21:23 -07002751 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002752 }
2753 }
2754 BUG_ON(len);
2755 return elt;
2756}
2757
David S. Miller51c739d2007-10-30 21:29:29 -07002758int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2759{
2760 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2761
Jens Axboec46f2332007-10-31 12:06:37 +01002762 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002763
2764 return nsg;
2765}
2766
David Howells716ea3a2007-04-02 20:19:53 -07002767/**
2768 * skb_cow_data - Check that a socket buffer's data buffers are writable
2769 * @skb: The socket buffer to check.
2770 * @tailbits: Amount of trailing space to be added
2771 * @trailer: Returned pointer to the skb where the @tailbits space begins
2772 *
2773 * Make sure that the data buffers attached to a socket buffer are
2774 * writable. If they are not, private copies are made of the data buffers
2775 * and the socket buffer is set to use these instead.
2776 *
2777 * If @tailbits is given, make sure that there is space to write @tailbits
2778 * bytes of data beyond current end of socket buffer. @trailer will be
2779 * set to point to the skb in which this space begins.
2780 *
2781 * The number of scatterlist elements required to completely map the
2782 * COW'd and extended socket buffer will be returned.
2783 */
2784int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2785{
2786 int copyflag;
2787 int elt;
2788 struct sk_buff *skb1, **skb_p;
2789
2790 /* If skb is cloned or its head is paged, reallocate
2791 * head pulling out all the pages (pages are considered not writable
2792 * at the moment even if they are anonymous).
2793 */
2794 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2795 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2796 return -ENOMEM;
2797
2798 /* Easy case. Most of packets will go this way. */
2799 if (!skb_shinfo(skb)->frag_list) {
2800 /* A little of trouble, not enough of space for trailer.
2801 * This should not happen, when stack is tuned to generate
2802 * good frames. OK, on miss we reallocate and reserve even more
2803 * space, 128 bytes is fair. */
2804
2805 if (skb_tailroom(skb) < tailbits &&
2806 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2807 return -ENOMEM;
2808
2809 /* Voila! */
2810 *trailer = skb;
2811 return 1;
2812 }
2813
2814 /* Misery. We are in troubles, going to mincer fragments... */
2815
2816 elt = 1;
2817 skb_p = &skb_shinfo(skb)->frag_list;
2818 copyflag = 0;
2819
2820 while ((skb1 = *skb_p) != NULL) {
2821 int ntail = 0;
2822
2823 /* The fragment is partially pulled by someone,
2824 * this can happen on input. Copy it and everything
2825 * after it. */
2826
2827 if (skb_shared(skb1))
2828 copyflag = 1;
2829
2830 /* If the skb is the last, worry about trailer. */
2831
2832 if (skb1->next == NULL && tailbits) {
2833 if (skb_shinfo(skb1)->nr_frags ||
2834 skb_shinfo(skb1)->frag_list ||
2835 skb_tailroom(skb1) < tailbits)
2836 ntail = tailbits + 128;
2837 }
2838
2839 if (copyflag ||
2840 skb_cloned(skb1) ||
2841 ntail ||
2842 skb_shinfo(skb1)->nr_frags ||
2843 skb_shinfo(skb1)->frag_list) {
2844 struct sk_buff *skb2;
2845
2846 /* Fuck, we are miserable poor guys... */
2847 if (ntail == 0)
2848 skb2 = skb_copy(skb1, GFP_ATOMIC);
2849 else
2850 skb2 = skb_copy_expand(skb1,
2851 skb_headroom(skb1),
2852 ntail,
2853 GFP_ATOMIC);
2854 if (unlikely(skb2 == NULL))
2855 return -ENOMEM;
2856
2857 if (skb1->sk)
2858 skb_set_owner_w(skb2, skb1->sk);
2859
2860 /* Looking around. Are we still alive?
2861 * OK, link new skb, drop old one */
2862
2863 skb2->next = skb1->next;
2864 *skb_p = skb2;
2865 kfree_skb(skb1);
2866 skb1 = skb2;
2867 }
2868 elt++;
2869 *trailer = skb1;
2870 skb_p = &skb1->next;
2871 }
2872
2873 return elt;
2874}
2875
Rusty Russellf35d9d82008-02-04 23:49:54 -05002876/**
2877 * skb_partial_csum_set - set up and verify partial csum values for packet
2878 * @skb: the skb to set
2879 * @start: the number of bytes after skb->data to start checksumming.
2880 * @off: the offset from start to place the checksum.
2881 *
2882 * For untrusted partially-checksummed packets, we need to make sure the values
2883 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
2884 *
2885 * This function checks and sets those values and skb->ip_summed: if this
2886 * returns false you should drop the packet.
2887 */
2888bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
2889{
2890 if (unlikely(start > skb->len - 2) ||
2891 unlikely((int)start + off > skb->len - 2)) {
2892 if (net_ratelimit())
2893 printk(KERN_WARNING
2894 "bad partial csum: csum=%u/%u len=%u\n",
2895 start, off, skb->len);
2896 return false;
2897 }
2898 skb->ip_summed = CHECKSUM_PARTIAL;
2899 skb->csum_start = skb_headroom(skb) + start;
2900 skb->csum_offset = off;
2901 return true;
2902}
2903
Ben Hutchings4497b072008-06-19 16:22:28 -07002904void __skb_warn_lro_forwarding(const struct sk_buff *skb)
2905{
2906 if (net_ratelimit())
2907 pr_warning("%s: received packets cannot be forwarded"
2908 " while LRO is enabled\n", skb->dev->name);
2909}
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911EXPORT_SYMBOL(___pskb_trim);
2912EXPORT_SYMBOL(__kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -08002913EXPORT_SYMBOL(kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914EXPORT_SYMBOL(__pskb_pull_tail);
David S. Millerd179cd12005-08-17 14:57:30 -07002915EXPORT_SYMBOL(__alloc_skb);
Christoph Hellwig8af27452006-07-31 22:35:23 -07002916EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917EXPORT_SYMBOL(pskb_copy);
2918EXPORT_SYMBOL(pskb_expand_head);
2919EXPORT_SYMBOL(skb_checksum);
2920EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921EXPORT_SYMBOL(skb_copy);
2922EXPORT_SYMBOL(skb_copy_and_csum_bits);
2923EXPORT_SYMBOL(skb_copy_and_csum_dev);
2924EXPORT_SYMBOL(skb_copy_bits);
2925EXPORT_SYMBOL(skb_copy_expand);
2926EXPORT_SYMBOL(skb_over_panic);
2927EXPORT_SYMBOL(skb_pad);
2928EXPORT_SYMBOL(skb_realloc_headroom);
2929EXPORT_SYMBOL(skb_under_panic);
2930EXPORT_SYMBOL(skb_dequeue);
2931EXPORT_SYMBOL(skb_dequeue_tail);
2932EXPORT_SYMBOL(skb_insert);
2933EXPORT_SYMBOL(skb_queue_purge);
2934EXPORT_SYMBOL(skb_queue_head);
2935EXPORT_SYMBOL(skb_queue_tail);
2936EXPORT_SYMBOL(skb_unlink);
2937EXPORT_SYMBOL(skb_append);
2938EXPORT_SYMBOL(skb_split);
Thomas Graf677e90e2005-06-23 20:59:51 -07002939EXPORT_SYMBOL(skb_prepare_seq_read);
2940EXPORT_SYMBOL(skb_seq_read);
2941EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002942EXPORT_SYMBOL(skb_find_text);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002943EXPORT_SYMBOL(skb_append_datato_frags);
Ben Hutchings4497b072008-06-19 16:22:28 -07002944EXPORT_SYMBOL(__skb_warn_lro_forwarding);
David Howells716ea3a2007-04-02 20:19:53 -07002945
2946EXPORT_SYMBOL_GPL(skb_to_sgvec);
2947EXPORT_SYMBOL_GPL(skb_cow_data);
Rusty Russellf35d9d82008-02-04 23:49:54 -05002948EXPORT_SYMBOL_GPL(skb_partial_csum_set);