blob: 2df012be973d4f580f2f6733c297e6cc6f5ad9cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
4 * Authors: Alan Cox <iiitac@pyr.swan.ac.uk>
5 * 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{
76 struct sk_buff *skb = (struct sk_buff *) buf->private;
77
78 kfree_skb(skb);
79}
80
81static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
82 struct pipe_buffer *buf)
83{
84 struct sk_buff *skb = (struct sk_buff *) buf->private;
85
86 skb_get(skb);
87}
88
89static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
90 struct pipe_buffer *buf)
91{
92 return 1;
93}
94
95
96/* Pipe buffer operations for a socket. */
97static struct pipe_buf_operations sock_pipe_buf_ops = {
98 .can_merge = 0,
99 .map = generic_pipe_buf_map,
100 .unmap = generic_pipe_buf_unmap,
101 .confirm = generic_pipe_buf_confirm,
102 .release = sock_pipe_buf_release,
103 .steal = sock_pipe_buf_steal,
104 .get = sock_pipe_buf_get,
105};
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*
108 * Keep out-of-line to prevent kernel bloat.
109 * __builtin_return_address is not used because it is not always
110 * reliable.
111 */
112
113/**
114 * skb_over_panic - private function
115 * @skb: buffer
116 * @sz: size
117 * @here: address
118 *
119 * Out of line support code for skb_put(). Not user callable.
120 */
121void skb_over_panic(struct sk_buff *skb, int sz, void *here)
122{
Patrick McHardy26095452005-04-21 16:43:02 -0700123 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700124 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700125 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700126 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700127 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 BUG();
129}
130
131/**
132 * skb_under_panic - private function
133 * @skb: buffer
134 * @sz: size
135 * @here: address
136 *
137 * Out of line support code for skb_push(). Not user callable.
138 */
139
140void skb_under_panic(struct sk_buff *skb, int sz, void *here)
141{
Patrick McHardy26095452005-04-21 16:43:02 -0700142 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700143 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700144 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700145 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700146 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 BUG();
148}
149
David S. Millerdc6de332006-04-20 00:10:50 -0700150void skb_truesize_bug(struct sk_buff *skb)
151{
152 printk(KERN_ERR "SKB BUG: Invalid truesize (%u) "
153 "len=%u, sizeof(sk_buff)=%Zd\n",
154 skb->truesize, skb->len, sizeof(struct sk_buff));
155}
156EXPORT_SYMBOL(skb_truesize_bug);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* Allocate a new skbuff. We do this ourselves so we can fill in a few
159 * 'private' fields and also do memory statistics to find all the
160 * [BEEP] leaks.
161 *
162 */
163
164/**
David S. Millerd179cd12005-08-17 14:57:30 -0700165 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * @size: size to allocate
167 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700168 * @fclone: allocate from fclone cache instead of head cache
169 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800170 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Allocate a new &sk_buff. The returned buffer has no headroom and a
173 * tail room of size bytes. The object has a reference count of one.
174 * The return is the buffer. On a failure the return is %NULL.
175 *
176 * Buffers may only be allocated from interrupts using a @gfp_mask of
177 * %GFP_ATOMIC.
178 */
Al Virodd0fc662005-10-07 07:46:04 +0100179struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800180 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Christoph Lametere18b8902006-12-06 20:33:20 -0800182 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800183 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct sk_buff *skb;
185 u8 *data;
186
Herbert Xu8798b3f2006-01-23 16:32:45 -0800187 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800190 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (!skb)
192 goto out;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800195 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
196 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (!data)
198 goto nodata;
199
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300200 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700201 * Only clear those fields we need to clear, not those that we will
202 * actually initialise below. Hence, don't put any more fields after
203 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300204 */
205 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 skb->truesize = size + sizeof(struct sk_buff);
207 atomic_set(&skb->users, 1);
208 skb->head = data;
209 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700210 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700211 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800212 /* make sure we initialize shinfo sequentially */
213 shinfo = skb_shinfo(skb);
214 atomic_set(&shinfo->dataref, 1);
215 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700216 shinfo->gso_size = 0;
217 shinfo->gso_segs = 0;
218 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800219 shinfo->ip6_frag_id = 0;
220 shinfo->frag_list = NULL;
221
David S. Millerd179cd12005-08-17 14:57:30 -0700222 if (fclone) {
223 struct sk_buff *child = skb + 1;
224 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
David S. Millerd179cd12005-08-17 14:57:30 -0700226 skb->fclone = SKB_FCLONE_ORIG;
227 atomic_set(fclone_ref, 1);
228
229 child->fclone = SKB_FCLONE_UNAVAILABLE;
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231out:
232 return skb;
233nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800234 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 skb = NULL;
236 goto out;
237}
238
239/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700240 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
241 * @dev: network device to receive on
242 * @length: length to allocate
243 * @gfp_mask: get_free_pages mask, passed to alloc_skb
244 *
245 * Allocate a new &sk_buff and assign it a usage count of one. The
246 * buffer has unspecified headroom built in. Users should allocate
247 * the headroom they think they need without accounting for the
248 * built in space. The built in space is used for optimisations.
249 *
250 * %NULL is returned if there is no free memory.
251 */
252struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
253 unsigned int length, gfp_t gfp_mask)
254{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700255 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700256 struct sk_buff *skb;
257
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900258 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700259 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700260 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700261 skb->dev = dev;
262 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700263 return skb;
264}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700266/**
267 * dev_alloc_skb - allocate an skbuff for receiving
268 * @length: length to allocate
269 *
270 * Allocate a new &sk_buff and assign it a usage count of one. The
271 * buffer has unspecified headroom built in. Users should allocate
272 * the headroom they think they need without accounting for the
273 * built in space. The built in space is used for optimisations.
274 *
275 * %NULL is returned if there is no free memory. Although this function
276 * allocates memory it can be called from an interrupt.
277 */
278struct sk_buff *dev_alloc_skb(unsigned int length)
279{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700280 /*
281 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700282 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700283 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700284 return __dev_alloc_skb(length, GFP_ATOMIC);
285}
286EXPORT_SYMBOL(dev_alloc_skb);
287
Herbert Xu27b437c2006-07-13 19:26:39 -0700288static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Herbert Xu27b437c2006-07-13 19:26:39 -0700290 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Herbert Xu27b437c2006-07-13 19:26:39 -0700292 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 do {
295 struct sk_buff *this = list;
296 list = list->next;
297 kfree_skb(this);
298 } while (list);
299}
300
Herbert Xu27b437c2006-07-13 19:26:39 -0700301static inline void skb_drop_fraglist(struct sk_buff *skb)
302{
303 skb_drop_list(&skb_shinfo(skb)->frag_list);
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static void skb_clone_fraglist(struct sk_buff *skb)
307{
308 struct sk_buff *list;
309
310 for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
311 skb_get(list);
312}
313
Adrian Bunk5bba1712006-06-29 13:02:35 -0700314static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 if (!skb->cloned ||
317 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
318 &skb_shinfo(skb)->dataref)) {
319 if (skb_shinfo(skb)->nr_frags) {
320 int i;
321 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
322 put_page(skb_shinfo(skb)->frags[i].page);
323 }
324
325 if (skb_shinfo(skb)->frag_list)
326 skb_drop_fraglist(skb);
327
328 kfree(skb->head);
329 }
330}
331
332/*
333 * Free an skbuff by memory without cleaning the state.
334 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800335static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
David S. Millerd179cd12005-08-17 14:57:30 -0700337 struct sk_buff *other;
338 atomic_t *fclone_ref;
339
David S. Millerd179cd12005-08-17 14:57:30 -0700340 switch (skb->fclone) {
341 case SKB_FCLONE_UNAVAILABLE:
342 kmem_cache_free(skbuff_head_cache, skb);
343 break;
344
345 case SKB_FCLONE_ORIG:
346 fclone_ref = (atomic_t *) (skb + 2);
347 if (atomic_dec_and_test(fclone_ref))
348 kmem_cache_free(skbuff_fclone_cache, skb);
349 break;
350
351 case SKB_FCLONE_CLONE:
352 fclone_ref = (atomic_t *) (skb + 1);
353 other = skb - 1;
354
355 /* The clone portion is available for
356 * fast-cloning again.
357 */
358 skb->fclone = SKB_FCLONE_UNAVAILABLE;
359
360 if (atomic_dec_and_test(fclone_ref))
361 kmem_cache_free(skbuff_fclone_cache, other);
362 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Herbert Xu2d4baff2007-11-26 23:11:19 +0800366/* Free everything but the sk_buff shell. */
367static void skb_release_all(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 dst_release(skb->dst);
370#ifdef CONFIG_XFRM
371 secpath_put(skb->sp);
372#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700373 if (skb->destructor) {
374 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 skb->destructor(skb);
376 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800377#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700378 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800379 nf_conntrack_put_reasm(skb->nfct_reasm);
380#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381#ifdef CONFIG_BRIDGE_NETFILTER
382 nf_bridge_put(skb->nf_bridge);
383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/* XXX: IS this still necessary? - JHS */
385#ifdef CONFIG_NET_SCHED
386 skb->tc_index = 0;
387#ifdef CONFIG_NET_CLS_ACT
388 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389#endif
390#endif
Herbert Xu2d4baff2007-11-26 23:11:19 +0800391 skb_release_data(skb);
392}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Herbert Xu2d4baff2007-11-26 23:11:19 +0800394/**
395 * __kfree_skb - private function
396 * @skb: buffer
397 *
398 * Free an sk_buff. Release anything attached to the buffer.
399 * Clean the state. This is an internal helper function. Users should
400 * always call kfree_skb
401 */
402
403void __kfree_skb(struct sk_buff *skb)
404{
405 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 kfree_skbmem(skb);
407}
408
409/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800410 * kfree_skb - free an sk_buff
411 * @skb: buffer to free
412 *
413 * Drop a reference to the buffer and free it if the usage count has
414 * hit zero.
415 */
416void kfree_skb(struct sk_buff *skb)
417{
418 if (unlikely(!skb))
419 return;
420 if (likely(atomic_read(&skb->users) == 1))
421 smp_rmb();
422 else if (likely(!atomic_dec_and_test(&skb->users)))
423 return;
424 __kfree_skb(skb);
425}
426
Herbert Xudec18812007-10-14 00:37:30 -0700427static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
428{
429 new->tstamp = old->tstamp;
430 new->dev = old->dev;
431 new->transport_header = old->transport_header;
432 new->network_header = old->network_header;
433 new->mac_header = old->mac_header;
434 new->dst = dst_clone(old->dst);
435#ifdef CONFIG_INET
436 new->sp = secpath_get(old->sp);
437#endif
438 memcpy(new->cb, old->cb, sizeof(old->cb));
439 new->csum_start = old->csum_start;
440 new->csum_offset = old->csum_offset;
441 new->local_df = old->local_df;
442 new->pkt_type = old->pkt_type;
443 new->ip_summed = old->ip_summed;
444 skb_copy_queue_mapping(new, old);
445 new->priority = old->priority;
446#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
447 new->ipvs_property = old->ipvs_property;
448#endif
449 new->protocol = old->protocol;
450 new->mark = old->mark;
451 __nf_copy(new, old);
452#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
453 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
454 new->nf_trace = old->nf_trace;
455#endif
456#ifdef CONFIG_NET_SCHED
457 new->tc_index = old->tc_index;
458#ifdef CONFIG_NET_CLS_ACT
459 new->tc_verd = old->tc_verd;
460#endif
461#endif
462 skb_copy_secmark(new, old);
463}
464
Herbert Xue0053ec2007-10-14 00:37:52 -0700465static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#define C(x) n->x = skb->x
468
469 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700471 __copy_skb_header(n, skb);
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 C(len);
474 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700475 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700476 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800477 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 n->destructor = NULL;
Paul Moore02f1c892008-01-07 21:56:41 -0800480 C(iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 C(tail);
482 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800483 C(head);
484 C(data);
485 C(truesize);
486 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 atomic_inc(&(skb_shinfo(skb)->dataref));
489 skb->cloned = 1;
490
491 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700492#undef C
493}
494
495/**
496 * skb_morph - morph one skb into another
497 * @dst: the skb to receive the contents
498 * @src: the skb to supply the contents
499 *
500 * This is identical to skb_clone except that the target skb is
501 * supplied by the user.
502 *
503 * The target skb is returned upon exit.
504 */
505struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
506{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800507 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700508 return __skb_clone(dst, src);
509}
510EXPORT_SYMBOL_GPL(skb_morph);
511
512/**
513 * skb_clone - duplicate an sk_buff
514 * @skb: buffer to clone
515 * @gfp_mask: allocation priority
516 *
517 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
518 * copies share the same packet data but not structure. The new
519 * buffer has a reference count of 1. If the allocation fails the
520 * function returns %NULL otherwise the new buffer is returned.
521 *
522 * If this function is called from an interrupt gfp_mask() must be
523 * %GFP_ATOMIC.
524 */
525
526struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
527{
528 struct sk_buff *n;
529
530 n = skb + 1;
531 if (skb->fclone == SKB_FCLONE_ORIG &&
532 n->fclone == SKB_FCLONE_UNAVAILABLE) {
533 atomic_t *fclone_ref = (atomic_t *) (n + 1);
534 n->fclone = SKB_FCLONE_CLONE;
535 atomic_inc(fclone_ref);
536 } else {
537 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
538 if (!n)
539 return NULL;
540 n->fclone = SKB_FCLONE_UNAVAILABLE;
541 }
542
543 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
547{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700548#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /*
550 * Shift between the two data areas in bytes
551 */
552 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700553#endif
Herbert Xudec18812007-10-14 00:37:30 -0700554
555 __copy_skb_header(new, old);
556
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700557#ifndef NET_SKBUFF_DATA_USES_OFFSET
558 /* {transport,network,mac}_header are relative to skb->head */
559 new->transport_header += offset;
560 new->network_header += offset;
561 new->mac_header += offset;
562#endif
Herbert Xu79671682006-06-22 02:40:14 -0700563 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
564 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
565 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568/**
569 * skb_copy - create private copy of an sk_buff
570 * @skb: buffer to copy
571 * @gfp_mask: allocation priority
572 *
573 * Make a copy of both an &sk_buff and its data. This is used when the
574 * caller wishes to modify the data and needs a private copy of the
575 * data to alter. Returns %NULL on failure or the pointer to the buffer
576 * on success. The returned buffer has a reference count of 1.
577 *
578 * As by-product this function converts non-linear &sk_buff to linear
579 * one, so that &sk_buff becomes completely private and caller is allowed
580 * to modify all the data of returned buffer. This means that this
581 * function is not recommended for use in circumstances when only
582 * header is going to be modified. Use pskb_copy() instead.
583 */
584
Al Virodd0fc662005-10-07 07:46:04 +0100585struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 int headerlen = skb->data - skb->head;
588 /*
589 * Allocate the copy buffer
590 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700591 struct sk_buff *n;
592#ifdef NET_SKBUFF_DATA_USES_OFFSET
593 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
594#else
595 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
596#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (!n)
598 return NULL;
599
600 /* Set the data pointer */
601 skb_reserve(n, headerlen);
602 /* Set the tail pointer and length */
603 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
606 BUG();
607
608 copy_skb_header(n, skb);
609 return n;
610}
611
612
613/**
614 * pskb_copy - create copy of an sk_buff with private head.
615 * @skb: buffer to copy
616 * @gfp_mask: allocation priority
617 *
618 * Make a copy of both an &sk_buff and part of its data, located
619 * in header. Fragmented data remain shared. This is used when
620 * the caller wishes to modify only header of &sk_buff and needs
621 * private copy of the header to alter. Returns %NULL on failure
622 * or the pointer to the buffer on success.
623 * The returned buffer has a reference count of 1.
624 */
625
Al Virodd0fc662005-10-07 07:46:04 +0100626struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 /*
629 * Allocate the copy buffer
630 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700631 struct sk_buff *n;
632#ifdef NET_SKBUFF_DATA_USES_OFFSET
633 n = alloc_skb(skb->end, gfp_mask);
634#else
635 n = alloc_skb(skb->end - skb->head, gfp_mask);
636#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (!n)
638 goto out;
639
640 /* Set the data pointer */
641 skb_reserve(n, skb->data - skb->head);
642 /* Set the tail pointer and length */
643 skb_put(n, skb_headlen(skb));
644 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300645 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Herbert Xu25f484a2006-11-07 14:57:15 -0800647 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 n->data_len = skb->data_len;
649 n->len = skb->len;
650
651 if (skb_shinfo(skb)->nr_frags) {
652 int i;
653
654 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
655 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
656 get_page(skb_shinfo(n)->frags[i].page);
657 }
658 skb_shinfo(n)->nr_frags = i;
659 }
660
661 if (skb_shinfo(skb)->frag_list) {
662 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
663 skb_clone_fraglist(n);
664 }
665
666 copy_skb_header(n, skb);
667out:
668 return n;
669}
670
671/**
672 * pskb_expand_head - reallocate header of &sk_buff
673 * @skb: buffer to reallocate
674 * @nhead: room to add at head
675 * @ntail: room to add at tail
676 * @gfp_mask: allocation priority
677 *
678 * Expands (or creates identical copy, if &nhead and &ntail are zero)
679 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
680 * reference count of 1. Returns zero in the case of success or error,
681 * if expansion failed. In the last case, &sk_buff is not changed.
682 *
683 * All the pointers pointing into skb header may change and must be
684 * reloaded after call to this function.
685 */
686
Victor Fusco86a76ca2005-07-08 14:57:47 -0700687int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100688 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 int i;
691 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700692#ifdef NET_SKBUFF_DATA_USES_OFFSET
693 int size = nhead + skb->end + ntail;
694#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 long off;
698
699 if (skb_shared(skb))
700 BUG();
701
702 size = SKB_DATA_ALIGN(size);
703
704 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
705 if (!data)
706 goto nodata;
707
708 /* Copy only real data... and, alas, header. This should be
709 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700710#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700711 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700712#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700713 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700714#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700715 memcpy(data + size, skb_end_pointer(skb),
716 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
719 get_page(skb_shinfo(skb)->frags[i].page);
720
721 if (skb_shinfo(skb)->frag_list)
722 skb_clone_fraglist(skb);
723
724 skb_release_data(skb);
725
726 off = (data + nhead) - skb->head;
727
728 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700730#ifdef NET_SKBUFF_DATA_USES_OFFSET
731 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700732 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700733#else
734 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700735#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700736 /* {transport,network,mac}_header and tail are relative to skb->head */
737 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700738 skb->transport_header += off;
739 skb->network_header += off;
740 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700741 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700743 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 skb->nohdr = 0;
745 atomic_set(&skb_shinfo(skb)->dataref, 1);
746 return 0;
747
748nodata:
749 return -ENOMEM;
750}
751
752/* Make private copy of skb with writable head and some headroom */
753
754struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
755{
756 struct sk_buff *skb2;
757 int delta = headroom - skb_headroom(skb);
758
759 if (delta <= 0)
760 skb2 = pskb_copy(skb, GFP_ATOMIC);
761 else {
762 skb2 = skb_clone(skb, GFP_ATOMIC);
763 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
764 GFP_ATOMIC)) {
765 kfree_skb(skb2);
766 skb2 = NULL;
767 }
768 }
769 return skb2;
770}
771
772
773/**
774 * skb_copy_expand - copy and expand sk_buff
775 * @skb: buffer to copy
776 * @newheadroom: new free bytes at head
777 * @newtailroom: new free bytes at tail
778 * @gfp_mask: allocation priority
779 *
780 * Make a copy of both an &sk_buff and its data and while doing so
781 * allocate additional space.
782 *
783 * This is used when the caller wishes to modify the data and needs a
784 * private copy of the data to alter as well as more space for new fields.
785 * Returns %NULL on failure or the pointer to the buffer
786 * on success. The returned buffer has a reference count of 1.
787 *
788 * You must pass %GFP_ATOMIC as the allocation priority if this function
789 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
791struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700792 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100793 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 /*
796 * Allocate the copy buffer
797 */
798 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
799 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700800 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700802 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (!n)
805 return NULL;
806
807 skb_reserve(n, newheadroom);
808
809 /* Set the tail pointer and length */
810 skb_put(n, skb->len);
811
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700812 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 head_copy_off = 0;
814 if (newheadroom <= head_copy_len)
815 head_copy_len = newheadroom;
816 else
817 head_copy_off = newheadroom - head_copy_len;
818
819 /* Copy the linear header and data. */
820 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
821 skb->len + head_copy_len))
822 BUG();
823
824 copy_skb_header(n, skb);
825
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700826 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700827 n->csum_start += off;
828#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700829 n->transport_header += off;
830 n->network_header += off;
831 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700832#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return n;
835}
836
837/**
838 * skb_pad - zero pad the tail of an skb
839 * @skb: buffer to pad
840 * @pad: space to pad
841 *
842 * Ensure that a buffer is followed by a padding area that is zero
843 * filled. Used by network drivers which may DMA or transfer data
844 * beyond the buffer end onto the wire.
845 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700846 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900848
Herbert Xu5b057c62006-06-23 02:06:41 -0700849int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Herbert Xu5b057c62006-06-23 02:06:41 -0700851 int err;
852 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700855 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700859
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700860 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700861 if (likely(skb_cloned(skb) || ntail > 0)) {
862 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
863 if (unlikely(err))
864 goto free_skb;
865 }
866
867 /* FIXME: The use of this function with non-linear skb's really needs
868 * to be audited.
869 */
870 err = skb_linearize(skb);
871 if (unlikely(err))
872 goto free_skb;
873
874 memset(skb->data + skb->len, 0, pad);
875 return 0;
876
877free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700879 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900880}
881
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700882/**
883 * skb_put - add data to a buffer
884 * @skb: buffer to use
885 * @len: amount of data to add
886 *
887 * This function extends the used data area of the buffer. If this would
888 * exceed the total buffer size the kernel will panic. A pointer to the
889 * first byte of the extra data is returned.
890 */
891unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
892{
893 unsigned char *tmp = skb_tail_pointer(skb);
894 SKB_LINEAR_ASSERT(skb);
895 skb->tail += len;
896 skb->len += len;
897 if (unlikely(skb->tail > skb->end))
898 skb_over_panic(skb, len, __builtin_return_address(0));
899 return tmp;
900}
901EXPORT_SYMBOL(skb_put);
902
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700903/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -0700904 * skb_push - add data to the start of a buffer
905 * @skb: buffer to use
906 * @len: amount of data to add
907 *
908 * This function extends the used data area of the buffer at the buffer
909 * start. If this would exceed the total buffer headroom the kernel will
910 * panic. A pointer to the first byte of the extra data is returned.
911 */
912unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
913{
914 skb->data -= len;
915 skb->len += len;
916 if (unlikely(skb->data<skb->head))
917 skb_under_panic(skb, len, __builtin_return_address(0));
918 return skb->data;
919}
920EXPORT_SYMBOL(skb_push);
921
922/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700923 * skb_pull - remove data from the start of a buffer
924 * @skb: buffer to use
925 * @len: amount of data to remove
926 *
927 * This function removes data from the start of a buffer, returning
928 * the memory to the headroom. A pointer to the next data in the buffer
929 * is returned. Once the data has been pulled future pushes will overwrite
930 * the old data.
931 */
932unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
933{
934 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
935}
936EXPORT_SYMBOL(skb_pull);
937
Ilpo Järvinen419ae742008-03-27 17:54:01 -0700938/**
939 * skb_trim - remove end from a buffer
940 * @skb: buffer to alter
941 * @len: new length
942 *
943 * Cut the length of a buffer down by removing data from the tail. If
944 * the buffer is already under the length specified it is not modified.
945 * The skb must be linear.
946 */
947void skb_trim(struct sk_buff *skb, unsigned int len)
948{
949 if (skb->len > len)
950 __skb_trim(skb, len);
951}
952EXPORT_SYMBOL(skb_trim);
953
Herbert Xu3cc0e872006-06-09 16:13:38 -0700954/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 */
956
Herbert Xu3cc0e872006-06-09 16:13:38 -0700957int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Herbert Xu27b437c2006-07-13 19:26:39 -0700959 struct sk_buff **fragp;
960 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 int offset = skb_headlen(skb);
962 int nfrags = skb_shinfo(skb)->nr_frags;
963 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -0700964 int err;
965
966 if (skb_cloned(skb) &&
967 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
968 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700970 i = 0;
971 if (offset >= len)
972 goto drop_pages;
973
974 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -0700976
977 if (end < len) {
978 offset = end;
979 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
Herbert Xu27b437c2006-07-13 19:26:39 -0700981
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700982 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -0700983
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700984drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -0700985 skb_shinfo(skb)->nr_frags = i;
986
987 for (; i < nfrags; i++)
988 put_page(skb_shinfo(skb)->frags[i].page);
989
990 if (skb_shinfo(skb)->frag_list)
991 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700992 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994
Herbert Xu27b437c2006-07-13 19:26:39 -0700995 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
996 fragp = &frag->next) {
997 int end = offset + frag->len;
998
999 if (skb_shared(frag)) {
1000 struct sk_buff *nfrag;
1001
1002 nfrag = skb_clone(frag, GFP_ATOMIC);
1003 if (unlikely(!nfrag))
1004 return -ENOMEM;
1005
1006 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001007 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001008 frag = nfrag;
1009 *fragp = frag;
1010 }
1011
1012 if (end < len) {
1013 offset = end;
1014 continue;
1015 }
1016
1017 if (end > len &&
1018 unlikely((err = pskb_trim(frag, len - offset))))
1019 return err;
1020
1021 if (frag->next)
1022 skb_drop_list(&frag->next);
1023 break;
1024 }
1025
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001026done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001027 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 skb->data_len -= skb->len - len;
1029 skb->len = len;
1030 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001031 skb->len = len;
1032 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001033 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035
1036 return 0;
1037}
1038
1039/**
1040 * __pskb_pull_tail - advance tail of skb header
1041 * @skb: buffer to reallocate
1042 * @delta: number of bytes to advance tail
1043 *
1044 * The function makes a sense only on a fragmented &sk_buff,
1045 * it expands header moving its tail forward and copying necessary
1046 * data from fragmented part.
1047 *
1048 * &sk_buff MUST have reference count of 1.
1049 *
1050 * Returns %NULL (and &sk_buff does not change) if pull failed
1051 * or value of new tail of skb in the case of success.
1052 *
1053 * All the pointers pointing into skb header may change and must be
1054 * reloaded after call to this function.
1055 */
1056
1057/* Moves tail of skb head forward, copying data from fragmented part,
1058 * when it is necessary.
1059 * 1. It may fail due to malloc failure.
1060 * 2. It may change skb pointers.
1061 *
1062 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1063 */
1064unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1065{
1066 /* If skb has not enough free space at tail, get new one
1067 * plus 128 bytes for future expansions. If we have enough
1068 * room at tail, reallocate without expansion only if skb is cloned.
1069 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001070 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 if (eat > 0 || skb_cloned(skb)) {
1073 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1074 GFP_ATOMIC))
1075 return NULL;
1076 }
1077
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001078 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 BUG();
1080
1081 /* Optimization: no fragments, no reasons to preestimate
1082 * size of pulled pages. Superb.
1083 */
1084 if (!skb_shinfo(skb)->frag_list)
1085 goto pull_pages;
1086
1087 /* Estimate size of pulled pages. */
1088 eat = delta;
1089 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1090 if (skb_shinfo(skb)->frags[i].size >= eat)
1091 goto pull_pages;
1092 eat -= skb_shinfo(skb)->frags[i].size;
1093 }
1094
1095 /* If we need update frag list, we are in troubles.
1096 * Certainly, it possible to add an offset to skb data,
1097 * but taking into account that pulling is expected to
1098 * be very rare operation, it is worth to fight against
1099 * further bloating skb head and crucify ourselves here instead.
1100 * Pure masohism, indeed. 8)8)
1101 */
1102 if (eat) {
1103 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1104 struct sk_buff *clone = NULL;
1105 struct sk_buff *insp = NULL;
1106
1107 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001108 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (list->len <= eat) {
1111 /* Eaten as whole. */
1112 eat -= list->len;
1113 list = list->next;
1114 insp = list;
1115 } else {
1116 /* Eaten partially. */
1117
1118 if (skb_shared(list)) {
1119 /* Sucks! We need to fork list. :-( */
1120 clone = skb_clone(list, GFP_ATOMIC);
1121 if (!clone)
1122 return NULL;
1123 insp = list->next;
1124 list = clone;
1125 } else {
1126 /* This may be pulled without
1127 * problems. */
1128 insp = list;
1129 }
1130 if (!pskb_pull(list, eat)) {
1131 if (clone)
1132 kfree_skb(clone);
1133 return NULL;
1134 }
1135 break;
1136 }
1137 } while (eat);
1138
1139 /* Free pulled out fragments. */
1140 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1141 skb_shinfo(skb)->frag_list = list->next;
1142 kfree_skb(list);
1143 }
1144 /* And insert new clone at head. */
1145 if (clone) {
1146 clone->next = list;
1147 skb_shinfo(skb)->frag_list = clone;
1148 }
1149 }
1150 /* Success! Now we may commit changes to skb data. */
1151
1152pull_pages:
1153 eat = delta;
1154 k = 0;
1155 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1156 if (skb_shinfo(skb)->frags[i].size <= eat) {
1157 put_page(skb_shinfo(skb)->frags[i].page);
1158 eat -= skb_shinfo(skb)->frags[i].size;
1159 } else {
1160 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1161 if (eat) {
1162 skb_shinfo(skb)->frags[k].page_offset += eat;
1163 skb_shinfo(skb)->frags[k].size -= eat;
1164 eat = 0;
1165 }
1166 k++;
1167 }
1168 }
1169 skb_shinfo(skb)->nr_frags = k;
1170
1171 skb->tail += delta;
1172 skb->data_len -= delta;
1173
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001174 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
1177/* Copy some data bits from skb to kernel buffer. */
1178
1179int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1180{
1181 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001182 int start = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 if (offset > (int)skb->len - len)
1185 goto fault;
1186
1187 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001188 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (copy > len)
1190 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001191 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if ((len -= copy) == 0)
1193 return 0;
1194 offset += copy;
1195 to += copy;
1196 }
1197
1198 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001199 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
David S. Miller1a028e52007-04-27 15:21:23 -07001201 BUG_TRAP(start <= offset + len);
1202
1203 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if ((copy = end - offset) > 0) {
1205 u8 *vaddr;
1206
1207 if (copy > len)
1208 copy = len;
1209
1210 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1211 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001212 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1213 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 kunmap_skb_frag(vaddr);
1215
1216 if ((len -= copy) == 0)
1217 return 0;
1218 offset += copy;
1219 to += copy;
1220 }
David S. Miller1a028e52007-04-27 15:21:23 -07001221 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223
1224 if (skb_shinfo(skb)->frag_list) {
1225 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1226
1227 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001228 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
David S. Miller1a028e52007-04-27 15:21:23 -07001230 BUG_TRAP(start <= offset + len);
1231
1232 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if ((copy = end - offset) > 0) {
1234 if (copy > len)
1235 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001236 if (skb_copy_bits(list, offset - start,
1237 to, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 goto fault;
1239 if ((len -= copy) == 0)
1240 return 0;
1241 offset += copy;
1242 to += copy;
1243 }
David S. Miller1a028e52007-04-27 15:21:23 -07001244 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246 }
1247 if (!len)
1248 return 0;
1249
1250fault:
1251 return -EFAULT;
1252}
1253
Jens Axboe9c55e012007-11-06 23:30:13 -08001254/*
1255 * Callback from splice_to_pipe(), if we need to release some pages
1256 * at the end of the spd in case we error'ed out in filling the pipe.
1257 */
1258static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1259{
1260 struct sk_buff *skb = (struct sk_buff *) spd->partial[i].private;
1261
1262 kfree_skb(skb);
1263}
1264
1265/*
1266 * Fill page/offset/length into spd, if it can hold more pages.
1267 */
1268static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
1269 unsigned int len, unsigned int offset,
1270 struct sk_buff *skb)
1271{
1272 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1273 return 1;
1274
1275 spd->pages[spd->nr_pages] = page;
1276 spd->partial[spd->nr_pages].len = len;
1277 spd->partial[spd->nr_pages].offset = offset;
1278 spd->partial[spd->nr_pages].private = (unsigned long) skb_get(skb);
1279 spd->nr_pages++;
1280 return 0;
1281}
1282
1283/*
1284 * Map linear and fragment data from the skb to spd. Returns number of
1285 * pages mapped.
1286 */
1287static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
1288 unsigned int *total_len,
1289 struct splice_pipe_desc *spd)
1290{
1291 unsigned int nr_pages = spd->nr_pages;
1292 unsigned int poff, plen, len, toff, tlen;
1293 int headlen, seg;
1294
1295 toff = *offset;
1296 tlen = *total_len;
1297 if (!tlen)
1298 goto err;
1299
1300 /*
1301 * if the offset is greater than the linear part, go directly to
1302 * the fragments.
1303 */
1304 headlen = skb_headlen(skb);
1305 if (toff >= headlen) {
1306 toff -= headlen;
1307 goto map_frag;
1308 }
1309
1310 /*
1311 * first map the linear region into the pages/partial map, skipping
1312 * any potential initial offset.
1313 */
1314 len = 0;
1315 while (len < headlen) {
1316 void *p = skb->data + len;
1317
1318 poff = (unsigned long) p & (PAGE_SIZE - 1);
1319 plen = min_t(unsigned int, headlen - len, PAGE_SIZE - poff);
1320 len += plen;
1321
1322 if (toff) {
1323 if (plen <= toff) {
1324 toff -= plen;
1325 continue;
1326 }
1327 plen -= toff;
1328 poff += toff;
1329 toff = 0;
1330 }
1331
1332 plen = min(plen, tlen);
1333 if (!plen)
1334 break;
1335
1336 /*
1337 * just jump directly to update and return, no point
1338 * in going over fragments when the output is full.
1339 */
1340 if (spd_fill_page(spd, virt_to_page(p), plen, poff, skb))
1341 goto done;
1342
1343 tlen -= plen;
1344 }
1345
1346 /*
1347 * then map the fragments
1348 */
1349map_frag:
1350 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1351 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1352
1353 plen = f->size;
1354 poff = f->page_offset;
1355
1356 if (toff) {
1357 if (plen <= toff) {
1358 toff -= plen;
1359 continue;
1360 }
1361 plen -= toff;
1362 poff += toff;
1363 toff = 0;
1364 }
1365
1366 plen = min(plen, tlen);
1367 if (!plen)
1368 break;
1369
1370 if (spd_fill_page(spd, f->page, plen, poff, skb))
1371 break;
1372
1373 tlen -= plen;
1374 }
1375
1376done:
1377 if (spd->nr_pages - nr_pages) {
1378 *offset = 0;
1379 *total_len = tlen;
1380 return 0;
1381 }
1382err:
1383 return 1;
1384}
1385
1386/*
1387 * Map data from the skb to a pipe. Should handle both the linear part,
1388 * the fragments, and the frag list. It does NOT handle frag lists within
1389 * the frag list, if such a thing exists. We'd probably need to recurse to
1390 * handle that cleanly.
1391 */
1392int skb_splice_bits(struct sk_buff *__skb, unsigned int offset,
1393 struct pipe_inode_info *pipe, unsigned int tlen,
1394 unsigned int flags)
1395{
1396 struct partial_page partial[PIPE_BUFFERS];
1397 struct page *pages[PIPE_BUFFERS];
1398 struct splice_pipe_desc spd = {
1399 .pages = pages,
1400 .partial = partial,
1401 .flags = flags,
1402 .ops = &sock_pipe_buf_ops,
1403 .spd_release = sock_spd_release,
1404 };
1405 struct sk_buff *skb;
1406
1407 /*
1408 * I'd love to avoid the clone here, but tcp_read_sock()
1409 * ignores reference counts and unconditonally kills the sk_buff
1410 * on return from the actor.
1411 */
1412 skb = skb_clone(__skb, GFP_KERNEL);
1413 if (unlikely(!skb))
1414 return -ENOMEM;
1415
1416 /*
1417 * __skb_splice_bits() only fails if the output has no room left,
1418 * so no point in going over the frag_list for the error case.
1419 */
1420 if (__skb_splice_bits(skb, &offset, &tlen, &spd))
1421 goto done;
1422 else if (!tlen)
1423 goto done;
1424
1425 /*
1426 * now see if we have a frag_list to map
1427 */
1428 if (skb_shinfo(skb)->frag_list) {
1429 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1430
1431 for (; list && tlen; list = list->next) {
1432 if (__skb_splice_bits(list, &offset, &tlen, &spd))
1433 break;
1434 }
1435 }
1436
1437done:
1438 /*
1439 * drop our reference to the clone, the pipe consumption will
1440 * drop the rest.
1441 */
1442 kfree_skb(skb);
1443
1444 if (spd.nr_pages) {
1445 int ret;
Octavian Purdila293ad602008-06-04 15:45:58 -07001446 struct sock *sk = __skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001447
1448 /*
1449 * Drop the socket lock, otherwise we have reverse
1450 * locking dependencies between sk_lock and i_mutex
1451 * here as compared to sendfile(). We enter here
1452 * with the socket lock held, and splice_to_pipe() will
1453 * grab the pipe inode lock. For sendfile() emulation,
1454 * we call into ->sendpage() with the i_mutex lock held
1455 * and networking will grab the socket lock.
1456 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001457 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001458 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001459 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001460 return ret;
1461 }
1462
1463 return 0;
1464}
1465
Herbert Xu357b40a2005-04-19 22:30:14 -07001466/**
1467 * skb_store_bits - store bits from kernel buffer to skb
1468 * @skb: destination buffer
1469 * @offset: offset in destination
1470 * @from: source buffer
1471 * @len: number of bytes to copy
1472 *
1473 * Copy the specified number of bytes from the source buffer to the
1474 * destination skb. This function handles all the messy bits of
1475 * traversing fragment lists and such.
1476 */
1477
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001478int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001479{
1480 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001481 int start = skb_headlen(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -07001482
1483 if (offset > (int)skb->len - len)
1484 goto fault;
1485
David S. Miller1a028e52007-04-27 15:21:23 -07001486 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001487 if (copy > len)
1488 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001489 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001490 if ((len -= copy) == 0)
1491 return 0;
1492 offset += copy;
1493 from += copy;
1494 }
1495
1496 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1497 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001498 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001499
David S. Miller1a028e52007-04-27 15:21:23 -07001500 BUG_TRAP(start <= offset + len);
1501
1502 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001503 if ((copy = end - offset) > 0) {
1504 u8 *vaddr;
1505
1506 if (copy > len)
1507 copy = len;
1508
1509 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001510 memcpy(vaddr + frag->page_offset + offset - start,
1511 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001512 kunmap_skb_frag(vaddr);
1513
1514 if ((len -= copy) == 0)
1515 return 0;
1516 offset += copy;
1517 from += copy;
1518 }
David S. Miller1a028e52007-04-27 15:21:23 -07001519 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001520 }
1521
1522 if (skb_shinfo(skb)->frag_list) {
1523 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1524
1525 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001526 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001527
David S. Miller1a028e52007-04-27 15:21:23 -07001528 BUG_TRAP(start <= offset + len);
1529
1530 end = start + list->len;
Herbert Xu357b40a2005-04-19 22:30:14 -07001531 if ((copy = end - offset) > 0) {
1532 if (copy > len)
1533 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001534 if (skb_store_bits(list, offset - start,
1535 from, copy))
Herbert Xu357b40a2005-04-19 22:30:14 -07001536 goto fault;
1537 if ((len -= copy) == 0)
1538 return 0;
1539 offset += copy;
1540 from += copy;
1541 }
David S. Miller1a028e52007-04-27 15:21:23 -07001542 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001543 }
1544 }
1545 if (!len)
1546 return 0;
1547
1548fault:
1549 return -EFAULT;
1550}
1551
1552EXPORT_SYMBOL(skb_store_bits);
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554/* Checksum skb data. */
1555
Al Viro2bbbc862006-11-14 21:37:14 -08001556__wsum skb_checksum(const struct sk_buff *skb, int offset,
1557 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
David S. Miller1a028e52007-04-27 15:21:23 -07001559 int start = skb_headlen(skb);
1560 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 int pos = 0;
1562
1563 /* Checksum header. */
1564 if (copy > 0) {
1565 if (copy > len)
1566 copy = len;
1567 csum = csum_partial(skb->data + offset, copy, csum);
1568 if ((len -= copy) == 0)
1569 return csum;
1570 offset += copy;
1571 pos = copy;
1572 }
1573
1574 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001575 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
David S. Miller1a028e52007-04-27 15:21:23 -07001577 BUG_TRAP(start <= offset + len);
1578
1579 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001581 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 u8 *vaddr;
1583 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1584
1585 if (copy > len)
1586 copy = len;
1587 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001588 csum2 = csum_partial(vaddr + frag->page_offset +
1589 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 kunmap_skb_frag(vaddr);
1591 csum = csum_block_add(csum, csum2, pos);
1592 if (!(len -= copy))
1593 return csum;
1594 offset += copy;
1595 pos += copy;
1596 }
David S. Miller1a028e52007-04-27 15:21:23 -07001597 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
1600 if (skb_shinfo(skb)->frag_list) {
1601 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1602
1603 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001604 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
David S. Miller1a028e52007-04-27 15:21:23 -07001606 BUG_TRAP(start <= offset + len);
1607
1608 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if ((copy = end - offset) > 0) {
Al Viro5f92a732006-11-14 21:36:54 -08001610 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (copy > len)
1612 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001613 csum2 = skb_checksum(list, offset - start,
1614 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 csum = csum_block_add(csum, csum2, pos);
1616 if ((len -= copy) == 0)
1617 return csum;
1618 offset += copy;
1619 pos += copy;
1620 }
David S. Miller1a028e52007-04-27 15:21:23 -07001621 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
1623 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001624 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 return csum;
1627}
1628
1629/* Both of above in one bottle. */
1630
Al Viro81d77662006-11-14 21:37:33 -08001631__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1632 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
David S. Miller1a028e52007-04-27 15:21:23 -07001634 int start = skb_headlen(skb);
1635 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 int pos = 0;
1637
1638 /* Copy header. */
1639 if (copy > 0) {
1640 if (copy > len)
1641 copy = len;
1642 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1643 copy, csum);
1644 if ((len -= copy) == 0)
1645 return csum;
1646 offset += copy;
1647 to += copy;
1648 pos = copy;
1649 }
1650
1651 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001652 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
David S. Miller1a028e52007-04-27 15:21:23 -07001654 BUG_TRAP(start <= offset + len);
1655
1656 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001658 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 u8 *vaddr;
1660 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1661
1662 if (copy > len)
1663 copy = len;
1664 vaddr = kmap_skb_frag(frag);
1665 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001666 frag->page_offset +
1667 offset - start, to,
1668 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 kunmap_skb_frag(vaddr);
1670 csum = csum_block_add(csum, csum2, pos);
1671 if (!(len -= copy))
1672 return csum;
1673 offset += copy;
1674 to += copy;
1675 pos += copy;
1676 }
David S. Miller1a028e52007-04-27 15:21:23 -07001677 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679
1680 if (skb_shinfo(skb)->frag_list) {
1681 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1682
1683 for (; list; list = list->next) {
Al Viro81d77662006-11-14 21:37:33 -08001684 __wsum csum2;
David S. Miller1a028e52007-04-27 15:21:23 -07001685 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
David S. Miller1a028e52007-04-27 15:21:23 -07001687 BUG_TRAP(start <= offset + len);
1688
1689 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if ((copy = end - offset) > 0) {
1691 if (copy > len)
1692 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001693 csum2 = skb_copy_and_csum_bits(list,
1694 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 to, copy, 0);
1696 csum = csum_block_add(csum, csum2, pos);
1697 if ((len -= copy) == 0)
1698 return csum;
1699 offset += copy;
1700 to += copy;
1701 pos += copy;
1702 }
David S. Miller1a028e52007-04-27 15:21:23 -07001703 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
1705 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001706 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return csum;
1708}
1709
1710void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1711{
Al Virod3bc23e2006-11-14 21:24:49 -08001712 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 long csstart;
1714
Patrick McHardy84fa7932006-08-29 16:44:56 -07001715 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001716 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 else
1718 csstart = skb_headlen(skb);
1719
Kris Katterjohn09a62662006-01-08 22:24:28 -08001720 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001722 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 csum = 0;
1725 if (csstart != skb->len)
1726 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1727 skb->len - csstart, 0);
1728
Patrick McHardy84fa7932006-08-29 16:44:56 -07001729 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001730 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Al Virod3bc23e2006-11-14 21:24:49 -08001732 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734}
1735
1736/**
1737 * skb_dequeue - remove from the head of the queue
1738 * @list: list to dequeue from
1739 *
1740 * Remove the head of the list. The list lock is taken so the function
1741 * may be used safely with other locking list functions. The head item is
1742 * returned or %NULL if the list is empty.
1743 */
1744
1745struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1746{
1747 unsigned long flags;
1748 struct sk_buff *result;
1749
1750 spin_lock_irqsave(&list->lock, flags);
1751 result = __skb_dequeue(list);
1752 spin_unlock_irqrestore(&list->lock, flags);
1753 return result;
1754}
1755
1756/**
1757 * skb_dequeue_tail - remove from the tail of the queue
1758 * @list: list to dequeue from
1759 *
1760 * Remove the tail of the list. The list lock is taken so the function
1761 * may be used safely with other locking list functions. The tail item is
1762 * returned or %NULL if the list is empty.
1763 */
1764struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1765{
1766 unsigned long flags;
1767 struct sk_buff *result;
1768
1769 spin_lock_irqsave(&list->lock, flags);
1770 result = __skb_dequeue_tail(list);
1771 spin_unlock_irqrestore(&list->lock, flags);
1772 return result;
1773}
1774
1775/**
1776 * skb_queue_purge - empty a list
1777 * @list: list to empty
1778 *
1779 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1780 * the list and one reference dropped. This function takes the list
1781 * lock and is atomic with respect to other list locking functions.
1782 */
1783void skb_queue_purge(struct sk_buff_head *list)
1784{
1785 struct sk_buff *skb;
1786 while ((skb = skb_dequeue(list)) != NULL)
1787 kfree_skb(skb);
1788}
1789
1790/**
1791 * skb_queue_head - queue a buffer at the list head
1792 * @list: list to use
1793 * @newsk: buffer to queue
1794 *
1795 * Queue a buffer at the start of the list. This function takes the
1796 * list lock and can be used safely with other locking &sk_buff functions
1797 * safely.
1798 *
1799 * A buffer cannot be placed on two lists at the same time.
1800 */
1801void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1802{
1803 unsigned long flags;
1804
1805 spin_lock_irqsave(&list->lock, flags);
1806 __skb_queue_head(list, newsk);
1807 spin_unlock_irqrestore(&list->lock, flags);
1808}
1809
1810/**
1811 * skb_queue_tail - queue a buffer at the list tail
1812 * @list: list to use
1813 * @newsk: buffer to queue
1814 *
1815 * Queue a buffer at the tail of the list. This function takes the
1816 * list lock and can be used safely with other locking &sk_buff functions
1817 * safely.
1818 *
1819 * A buffer cannot be placed on two lists at the same time.
1820 */
1821void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1822{
1823 unsigned long flags;
1824
1825 spin_lock_irqsave(&list->lock, flags);
1826 __skb_queue_tail(list, newsk);
1827 spin_unlock_irqrestore(&list->lock, flags);
1828}
David S. Miller8728b832005-08-09 19:25:21 -07001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830/**
1831 * skb_unlink - remove a buffer from a list
1832 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001833 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 *
David S. Miller8728b832005-08-09 19:25:21 -07001835 * Remove a packet from a list. The list locks are taken and this
1836 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 *
David S. Miller8728b832005-08-09 19:25:21 -07001838 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 */
David S. Miller8728b832005-08-09 19:25:21 -07001840void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
David S. Miller8728b832005-08-09 19:25:21 -07001842 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
David S. Miller8728b832005-08-09 19:25:21 -07001844 spin_lock_irqsave(&list->lock, flags);
1845 __skb_unlink(skb, list);
1846 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849/**
1850 * skb_append - append a buffer
1851 * @old: buffer to insert after
1852 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001853 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 *
1855 * Place a packet after a given packet in a list. The list locks are taken
1856 * and this function is atomic with respect to other list locked calls.
1857 * A buffer cannot be placed on two lists at the same time.
1858 */
David S. Miller8728b832005-08-09 19:25:21 -07001859void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
1861 unsigned long flags;
1862
David S. Miller8728b832005-08-09 19:25:21 -07001863 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001864 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001865 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866}
1867
1868
1869/**
1870 * skb_insert - insert a buffer
1871 * @old: buffer to insert before
1872 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001873 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 *
David S. Miller8728b832005-08-09 19:25:21 -07001875 * Place a packet before a given packet in a list. The list locks are
1876 * taken and this function is atomic with respect to other list locked
1877 * calls.
1878 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 * A buffer cannot be placed on two lists at the same time.
1880 */
David S. Miller8728b832005-08-09 19:25:21 -07001881void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 unsigned long flags;
1884
David S. Miller8728b832005-08-09 19:25:21 -07001885 spin_lock_irqsave(&list->lock, flags);
1886 __skb_insert(newsk, old->prev, old, list);
1887 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890static inline void skb_split_inside_header(struct sk_buff *skb,
1891 struct sk_buff* skb1,
1892 const u32 len, const int pos)
1893{
1894 int i;
1895
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001896 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
1897 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /* And move data appendix as is. */
1899 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1900 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
1901
1902 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
1903 skb_shinfo(skb)->nr_frags = 0;
1904 skb1->data_len = skb->data_len;
1905 skb1->len += skb1->data_len;
1906 skb->data_len = 0;
1907 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001908 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
1911static inline void skb_split_no_header(struct sk_buff *skb,
1912 struct sk_buff* skb1,
1913 const u32 len, int pos)
1914{
1915 int i, k = 0;
1916 const int nfrags = skb_shinfo(skb)->nr_frags;
1917
1918 skb_shinfo(skb)->nr_frags = 0;
1919 skb1->len = skb1->data_len = skb->len - len;
1920 skb->len = len;
1921 skb->data_len = len - pos;
1922
1923 for (i = 0; i < nfrags; i++) {
1924 int size = skb_shinfo(skb)->frags[i].size;
1925
1926 if (pos + size > len) {
1927 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
1928
1929 if (pos < len) {
1930 /* Split frag.
1931 * We have two variants in this case:
1932 * 1. Move all the frag to the second
1933 * part, if it is possible. F.e.
1934 * this approach is mandatory for TUX,
1935 * where splitting is expensive.
1936 * 2. Split is accurately. We make this.
1937 */
1938 get_page(skb_shinfo(skb)->frags[i].page);
1939 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
1940 skb_shinfo(skb1)->frags[0].size -= len - pos;
1941 skb_shinfo(skb)->frags[i].size = len - pos;
1942 skb_shinfo(skb)->nr_frags++;
1943 }
1944 k++;
1945 } else
1946 skb_shinfo(skb)->nr_frags++;
1947 pos += size;
1948 }
1949 skb_shinfo(skb1)->nr_frags = k;
1950}
1951
1952/**
1953 * skb_split - Split fragmented skb to two parts at length len.
1954 * @skb: the buffer to split
1955 * @skb1: the buffer to receive the second part
1956 * @len: new length for skb
1957 */
1958void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
1959{
1960 int pos = skb_headlen(skb);
1961
1962 if (len < pos) /* Split line is inside header. */
1963 skb_split_inside_header(skb, skb1, len, pos);
1964 else /* Second chunk has no header, nothing to copy. */
1965 skb_split_no_header(skb, skb1, len, pos);
1966}
1967
Thomas Graf677e90e2005-06-23 20:59:51 -07001968/**
1969 * skb_prepare_seq_read - Prepare a sequential read of skb data
1970 * @skb: the buffer to read
1971 * @from: lower offset of data to be read
1972 * @to: upper offset of data to be read
1973 * @st: state variable
1974 *
1975 * Initializes the specified state variable. Must be called before
1976 * invoking skb_seq_read() for the first time.
1977 */
1978void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
1979 unsigned int to, struct skb_seq_state *st)
1980{
1981 st->lower_offset = from;
1982 st->upper_offset = to;
1983 st->root_skb = st->cur_skb = skb;
1984 st->frag_idx = st->stepped_offset = 0;
1985 st->frag_data = NULL;
1986}
1987
1988/**
1989 * skb_seq_read - Sequentially read skb data
1990 * @consumed: number of bytes consumed by the caller so far
1991 * @data: destination pointer for data to be returned
1992 * @st: state variable
1993 *
1994 * Reads a block of skb data at &consumed relative to the
1995 * lower offset specified to skb_prepare_seq_read(). Assigns
1996 * the head of the data block to &data and returns the length
1997 * of the block or 0 if the end of the skb data or the upper
1998 * offset has been reached.
1999 *
2000 * The caller is not required to consume all of the data
2001 * returned, i.e. &consumed is typically set to the number
2002 * of bytes already consumed and the next call to
2003 * skb_seq_read() will return the remaining part of the block.
2004 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002005 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002006 * this limitation is the cost for zerocopy seqeuental
2007 * reads of potentially non linear data.
2008 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002009 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002010 * at the moment, state->root_skb could be replaced with
2011 * a stack for this purpose.
2012 */
2013unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2014 struct skb_seq_state *st)
2015{
2016 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2017 skb_frag_t *frag;
2018
2019 if (unlikely(abs_offset >= st->upper_offset))
2020 return 0;
2021
2022next_skb:
2023 block_limit = skb_headlen(st->cur_skb);
2024
2025 if (abs_offset < block_limit) {
2026 *data = st->cur_skb->data + abs_offset;
2027 return block_limit - abs_offset;
2028 }
2029
2030 if (st->frag_idx == 0 && !st->frag_data)
2031 st->stepped_offset += skb_headlen(st->cur_skb);
2032
2033 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2034 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2035 block_limit = frag->size + st->stepped_offset;
2036
2037 if (abs_offset < block_limit) {
2038 if (!st->frag_data)
2039 st->frag_data = kmap_skb_frag(frag);
2040
2041 *data = (u8 *) st->frag_data + frag->page_offset +
2042 (abs_offset - st->stepped_offset);
2043
2044 return block_limit - abs_offset;
2045 }
2046
2047 if (st->frag_data) {
2048 kunmap_skb_frag(st->frag_data);
2049 st->frag_data = NULL;
2050 }
2051
2052 st->frag_idx++;
2053 st->stepped_offset += frag->size;
2054 }
2055
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002056 if (st->frag_data) {
2057 kunmap_skb_frag(st->frag_data);
2058 st->frag_data = NULL;
2059 }
2060
Thomas Graf677e90e2005-06-23 20:59:51 -07002061 if (st->cur_skb->next) {
2062 st->cur_skb = st->cur_skb->next;
2063 st->frag_idx = 0;
2064 goto next_skb;
2065 } else if (st->root_skb == st->cur_skb &&
2066 skb_shinfo(st->root_skb)->frag_list) {
2067 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
2068 goto next_skb;
2069 }
2070
2071 return 0;
2072}
2073
2074/**
2075 * skb_abort_seq_read - Abort a sequential read of skb data
2076 * @st: state variable
2077 *
2078 * Must be called if skb_seq_read() was not called until it
2079 * returned 0.
2080 */
2081void skb_abort_seq_read(struct skb_seq_state *st)
2082{
2083 if (st->frag_data)
2084 kunmap_skb_frag(st->frag_data);
2085}
2086
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002087#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2088
2089static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2090 struct ts_config *conf,
2091 struct ts_state *state)
2092{
2093 return skb_seq_read(offset, text, TS_SKB_CB(state));
2094}
2095
2096static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2097{
2098 skb_abort_seq_read(TS_SKB_CB(state));
2099}
2100
2101/**
2102 * skb_find_text - Find a text pattern in skb data
2103 * @skb: the buffer to look in
2104 * @from: search offset
2105 * @to: search limit
2106 * @config: textsearch configuration
2107 * @state: uninitialized textsearch state variable
2108 *
2109 * Finds a pattern in the skb data according to the specified
2110 * textsearch configuration. Use textsearch_next() to retrieve
2111 * subsequent occurrences of the pattern. Returns the offset
2112 * to the first occurrence or UINT_MAX if no match was found.
2113 */
2114unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2115 unsigned int to, struct ts_config *config,
2116 struct ts_state *state)
2117{
Phil Oesterf72b9482006-06-26 00:00:57 -07002118 unsigned int ret;
2119
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002120 config->get_next_block = skb_ts_get_next_block;
2121 config->finish = skb_ts_finish;
2122
2123 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2124
Phil Oesterf72b9482006-06-26 00:00:57 -07002125 ret = textsearch_find(config, state);
2126 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002127}
2128
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002129/**
2130 * skb_append_datato_frags: - append the user data to a skb
2131 * @sk: sock structure
2132 * @skb: skb structure to be appened with user data.
2133 * @getfrag: call back function to be used for getting the user data
2134 * @from: pointer to user message iov
2135 * @length: length of the iov message
2136 *
2137 * Description: This procedure append the user data in the fragment part
2138 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2139 */
2140int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002141 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002142 int len, int odd, struct sk_buff *skb),
2143 void *from, int length)
2144{
2145 int frg_cnt = 0;
2146 skb_frag_t *frag = NULL;
2147 struct page *page = NULL;
2148 int copy, left;
2149 int offset = 0;
2150 int ret;
2151
2152 do {
2153 /* Return error if we don't have space for new frag */
2154 frg_cnt = skb_shinfo(skb)->nr_frags;
2155 if (frg_cnt >= MAX_SKB_FRAGS)
2156 return -EFAULT;
2157
2158 /* allocate a new page for next frag */
2159 page = alloc_pages(sk->sk_allocation, 0);
2160
2161 /* If alloc_page fails just return failure and caller will
2162 * free previous allocated pages by doing kfree_skb()
2163 */
2164 if (page == NULL)
2165 return -ENOMEM;
2166
2167 /* initialize the next frag */
2168 sk->sk_sndmsg_page = page;
2169 sk->sk_sndmsg_off = 0;
2170 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2171 skb->truesize += PAGE_SIZE;
2172 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2173
2174 /* get the new initialized frag */
2175 frg_cnt = skb_shinfo(skb)->nr_frags;
2176 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2177
2178 /* copy the user data to page */
2179 left = PAGE_SIZE - frag->page_offset;
2180 copy = (length > left)? left : length;
2181
2182 ret = getfrag(from, (page_address(frag->page) +
2183 frag->page_offset + frag->size),
2184 offset, copy, 0, skb);
2185 if (ret < 0)
2186 return -EFAULT;
2187
2188 /* copy was successful so update the size parameters */
2189 sk->sk_sndmsg_off += copy;
2190 frag->size += copy;
2191 skb->len += copy;
2192 skb->data_len += copy;
2193 offset += copy;
2194 length -= copy;
2195
2196 } while (length > 0);
2197
2198 return 0;
2199}
2200
Herbert Xucbb042f2006-03-20 22:43:56 -08002201/**
2202 * skb_pull_rcsum - pull skb and update receive checksum
2203 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002204 * @len: length of data pulled
2205 *
2206 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002207 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002208 * receive path processing instead of skb_pull unless you know
2209 * that the checksum difference is zero (e.g., a valid IP header)
2210 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002211 */
2212unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2213{
2214 BUG_ON(len > skb->len);
2215 skb->len -= len;
2216 BUG_ON(skb->len < skb->data_len);
2217 skb_postpull_rcsum(skb, skb->data, len);
2218 return skb->data += len;
2219}
2220
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002221EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2222
Herbert Xuf4c50d92006-06-22 03:02:40 -07002223/**
2224 * skb_segment - Perform protocol segmentation on skb.
2225 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002226 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002227 *
2228 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002229 * a pointer to the first in a list of new skbs for the segments.
2230 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002231 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002232struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002233{
2234 struct sk_buff *segs = NULL;
2235 struct sk_buff *tail = NULL;
2236 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002237 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002238 unsigned int offset = doffset;
2239 unsigned int headroom;
2240 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002241 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002242 int nfrags = skb_shinfo(skb)->nr_frags;
2243 int err = -ENOMEM;
2244 int i = 0;
2245 int pos;
2246
2247 __skb_push(skb, doffset);
2248 headroom = skb_headroom(skb);
2249 pos = skb_headlen(skb);
2250
2251 do {
2252 struct sk_buff *nskb;
2253 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002254 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002255 int k;
2256 int size;
2257
2258 len = skb->len - offset;
2259 if (len > mss)
2260 len = mss;
2261
2262 hsize = skb_headlen(skb) - offset;
2263 if (hsize < 0)
2264 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002265 if (hsize > len || !sg)
2266 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002267
Herbert Xuc8884ed2006-10-29 15:59:41 -08002268 nskb = alloc_skb(hsize + doffset + headroom, GFP_ATOMIC);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002269 if (unlikely(!nskb))
2270 goto err;
2271
2272 if (segs)
2273 tail->next = nskb;
2274 else
2275 segs = nskb;
2276 tail = nskb;
2277
2278 nskb->dev = skb->dev;
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07002279 skb_copy_queue_mapping(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002280 nskb->priority = skb->priority;
2281 nskb->protocol = skb->protocol;
2282 nskb->dst = dst_clone(skb->dst);
2283 memcpy(nskb->cb, skb->cb, sizeof(skb->cb));
2284 nskb->pkt_type = skb->pkt_type;
2285 nskb->mac_len = skb->mac_len;
2286
2287 skb_reserve(nskb, headroom);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002288 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002289 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002290 nskb->transport_header = (nskb->network_header +
2291 skb_network_header_len(skb));
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002292 skb_copy_from_linear_data(skb, skb_put(nskb, doffset),
2293 doffset);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002294 if (!sg) {
2295 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2296 skb_put(nskb, len),
2297 len, 0);
2298 continue;
2299 }
2300
2301 frag = skb_shinfo(nskb)->frags;
2302 k = 0;
2303
Patrick McHardy84fa7932006-08-29 16:44:56 -07002304 nskb->ip_summed = CHECKSUM_PARTIAL;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002305 nskb->csum = skb->csum;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002306 skb_copy_from_linear_data_offset(skb, offset,
2307 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002308
2309 while (pos < offset + len) {
2310 BUG_ON(i >= nfrags);
2311
2312 *frag = skb_shinfo(skb)->frags[i];
2313 get_page(frag->page);
2314 size = frag->size;
2315
2316 if (pos < offset) {
2317 frag->page_offset += offset - pos;
2318 frag->size -= offset - pos;
2319 }
2320
2321 k++;
2322
2323 if (pos + size <= offset + len) {
2324 i++;
2325 pos += size;
2326 } else {
2327 frag->size -= pos + size - (offset + len);
2328 break;
2329 }
2330
2331 frag++;
2332 }
2333
2334 skb_shinfo(nskb)->nr_frags = k;
2335 nskb->data_len = len - hsize;
2336 nskb->len += nskb->data_len;
2337 nskb->truesize += nskb->data_len;
2338 } while ((offset += len) < skb->len);
2339
2340 return segs;
2341
2342err:
2343 while ((skb = segs)) {
2344 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002345 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002346 }
2347 return ERR_PTR(err);
2348}
2349
2350EXPORT_SYMBOL_GPL(skb_segment);
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352void __init skb_init(void)
2353{
2354 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2355 sizeof(struct sk_buff),
2356 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002357 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002358 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002359 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2360 (2*sizeof(struct sk_buff)) +
2361 sizeof(atomic_t),
2362 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002363 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002364 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
David Howells716ea3a2007-04-02 20:19:53 -07002367/**
2368 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2369 * @skb: Socket buffer containing the buffers to be mapped
2370 * @sg: The scatter-gather list to map into
2371 * @offset: The offset into the buffer's contents to start mapping
2372 * @len: Length of buffer space to be mapped
2373 *
2374 * Fill the specified scatter-gather list with mappings/pointers into a
2375 * region of the buffer space attached to a socket buffer.
2376 */
David S. Miller51c739d2007-10-30 21:29:29 -07002377static int
2378__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002379{
David S. Miller1a028e52007-04-27 15:21:23 -07002380 int start = skb_headlen(skb);
2381 int i, copy = start - offset;
David Howells716ea3a2007-04-02 20:19:53 -07002382 int elt = 0;
2383
2384 if (copy > 0) {
2385 if (copy > len)
2386 copy = len;
Jens Axboe642f149032007-10-24 11:20:47 +02002387 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002388 elt++;
2389 if ((len -= copy) == 0)
2390 return elt;
2391 offset += copy;
2392 }
2393
2394 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002395 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002396
David S. Miller1a028e52007-04-27 15:21:23 -07002397 BUG_TRAP(start <= offset + len);
2398
2399 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002400 if ((copy = end - offset) > 0) {
2401 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2402
2403 if (copy > len)
2404 copy = len;
Jens Axboe642f149032007-10-24 11:20:47 +02002405 sg_set_page(&sg[elt], frag->page, copy,
2406 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002407 elt++;
2408 if (!(len -= copy))
2409 return elt;
2410 offset += copy;
2411 }
David S. Miller1a028e52007-04-27 15:21:23 -07002412 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002413 }
2414
2415 if (skb_shinfo(skb)->frag_list) {
2416 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2417
2418 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07002419 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002420
David S. Miller1a028e52007-04-27 15:21:23 -07002421 BUG_TRAP(start <= offset + len);
2422
2423 end = start + list->len;
David Howells716ea3a2007-04-02 20:19:53 -07002424 if ((copy = end - offset) > 0) {
2425 if (copy > len)
2426 copy = len;
David S. Miller51c739d2007-10-30 21:29:29 -07002427 elt += __skb_to_sgvec(list, sg+elt, offset - start,
2428 copy);
David Howells716ea3a2007-04-02 20:19:53 -07002429 if ((len -= copy) == 0)
2430 return elt;
2431 offset += copy;
2432 }
David S. Miller1a028e52007-04-27 15:21:23 -07002433 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002434 }
2435 }
2436 BUG_ON(len);
2437 return elt;
2438}
2439
David S. Miller51c739d2007-10-30 21:29:29 -07002440int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2441{
2442 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2443
Jens Axboec46f2332007-10-31 12:06:37 +01002444 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002445
2446 return nsg;
2447}
2448
David Howells716ea3a2007-04-02 20:19:53 -07002449/**
2450 * skb_cow_data - Check that a socket buffer's data buffers are writable
2451 * @skb: The socket buffer to check.
2452 * @tailbits: Amount of trailing space to be added
2453 * @trailer: Returned pointer to the skb where the @tailbits space begins
2454 *
2455 * Make sure that the data buffers attached to a socket buffer are
2456 * writable. If they are not, private copies are made of the data buffers
2457 * and the socket buffer is set to use these instead.
2458 *
2459 * If @tailbits is given, make sure that there is space to write @tailbits
2460 * bytes of data beyond current end of socket buffer. @trailer will be
2461 * set to point to the skb in which this space begins.
2462 *
2463 * The number of scatterlist elements required to completely map the
2464 * COW'd and extended socket buffer will be returned.
2465 */
2466int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2467{
2468 int copyflag;
2469 int elt;
2470 struct sk_buff *skb1, **skb_p;
2471
2472 /* If skb is cloned or its head is paged, reallocate
2473 * head pulling out all the pages (pages are considered not writable
2474 * at the moment even if they are anonymous).
2475 */
2476 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2477 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2478 return -ENOMEM;
2479
2480 /* Easy case. Most of packets will go this way. */
2481 if (!skb_shinfo(skb)->frag_list) {
2482 /* A little of trouble, not enough of space for trailer.
2483 * This should not happen, when stack is tuned to generate
2484 * good frames. OK, on miss we reallocate and reserve even more
2485 * space, 128 bytes is fair. */
2486
2487 if (skb_tailroom(skb) < tailbits &&
2488 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2489 return -ENOMEM;
2490
2491 /* Voila! */
2492 *trailer = skb;
2493 return 1;
2494 }
2495
2496 /* Misery. We are in troubles, going to mincer fragments... */
2497
2498 elt = 1;
2499 skb_p = &skb_shinfo(skb)->frag_list;
2500 copyflag = 0;
2501
2502 while ((skb1 = *skb_p) != NULL) {
2503 int ntail = 0;
2504
2505 /* The fragment is partially pulled by someone,
2506 * this can happen on input. Copy it and everything
2507 * after it. */
2508
2509 if (skb_shared(skb1))
2510 copyflag = 1;
2511
2512 /* If the skb is the last, worry about trailer. */
2513
2514 if (skb1->next == NULL && tailbits) {
2515 if (skb_shinfo(skb1)->nr_frags ||
2516 skb_shinfo(skb1)->frag_list ||
2517 skb_tailroom(skb1) < tailbits)
2518 ntail = tailbits + 128;
2519 }
2520
2521 if (copyflag ||
2522 skb_cloned(skb1) ||
2523 ntail ||
2524 skb_shinfo(skb1)->nr_frags ||
2525 skb_shinfo(skb1)->frag_list) {
2526 struct sk_buff *skb2;
2527
2528 /* Fuck, we are miserable poor guys... */
2529 if (ntail == 0)
2530 skb2 = skb_copy(skb1, GFP_ATOMIC);
2531 else
2532 skb2 = skb_copy_expand(skb1,
2533 skb_headroom(skb1),
2534 ntail,
2535 GFP_ATOMIC);
2536 if (unlikely(skb2 == NULL))
2537 return -ENOMEM;
2538
2539 if (skb1->sk)
2540 skb_set_owner_w(skb2, skb1->sk);
2541
2542 /* Looking around. Are we still alive?
2543 * OK, link new skb, drop old one */
2544
2545 skb2->next = skb1->next;
2546 *skb_p = skb2;
2547 kfree_skb(skb1);
2548 skb1 = skb2;
2549 }
2550 elt++;
2551 *trailer = skb1;
2552 skb_p = &skb1->next;
2553 }
2554
2555 return elt;
2556}
2557
Rusty Russellf35d9d82008-02-04 23:49:54 -05002558/**
2559 * skb_partial_csum_set - set up and verify partial csum values for packet
2560 * @skb: the skb to set
2561 * @start: the number of bytes after skb->data to start checksumming.
2562 * @off: the offset from start to place the checksum.
2563 *
2564 * For untrusted partially-checksummed packets, we need to make sure the values
2565 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
2566 *
2567 * This function checks and sets those values and skb->ip_summed: if this
2568 * returns false you should drop the packet.
2569 */
2570bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
2571{
2572 if (unlikely(start > skb->len - 2) ||
2573 unlikely((int)start + off > skb->len - 2)) {
2574 if (net_ratelimit())
2575 printk(KERN_WARNING
2576 "bad partial csum: csum=%u/%u len=%u\n",
2577 start, off, skb->len);
2578 return false;
2579 }
2580 skb->ip_summed = CHECKSUM_PARTIAL;
2581 skb->csum_start = skb_headroom(skb) + start;
2582 skb->csum_offset = off;
2583 return true;
2584}
2585
Ben Hutchings4497b072008-06-19 16:22:28 -07002586void __skb_warn_lro_forwarding(const struct sk_buff *skb)
2587{
2588 if (net_ratelimit())
2589 pr_warning("%s: received packets cannot be forwarded"
2590 " while LRO is enabled\n", skb->dev->name);
2591}
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593EXPORT_SYMBOL(___pskb_trim);
2594EXPORT_SYMBOL(__kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -08002595EXPORT_SYMBOL(kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596EXPORT_SYMBOL(__pskb_pull_tail);
David S. Millerd179cd12005-08-17 14:57:30 -07002597EXPORT_SYMBOL(__alloc_skb);
Christoph Hellwig8af27452006-07-31 22:35:23 -07002598EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599EXPORT_SYMBOL(pskb_copy);
2600EXPORT_SYMBOL(pskb_expand_head);
2601EXPORT_SYMBOL(skb_checksum);
2602EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603EXPORT_SYMBOL(skb_copy);
2604EXPORT_SYMBOL(skb_copy_and_csum_bits);
2605EXPORT_SYMBOL(skb_copy_and_csum_dev);
2606EXPORT_SYMBOL(skb_copy_bits);
2607EXPORT_SYMBOL(skb_copy_expand);
2608EXPORT_SYMBOL(skb_over_panic);
2609EXPORT_SYMBOL(skb_pad);
2610EXPORT_SYMBOL(skb_realloc_headroom);
2611EXPORT_SYMBOL(skb_under_panic);
2612EXPORT_SYMBOL(skb_dequeue);
2613EXPORT_SYMBOL(skb_dequeue_tail);
2614EXPORT_SYMBOL(skb_insert);
2615EXPORT_SYMBOL(skb_queue_purge);
2616EXPORT_SYMBOL(skb_queue_head);
2617EXPORT_SYMBOL(skb_queue_tail);
2618EXPORT_SYMBOL(skb_unlink);
2619EXPORT_SYMBOL(skb_append);
2620EXPORT_SYMBOL(skb_split);
Thomas Graf677e90e2005-06-23 20:59:51 -07002621EXPORT_SYMBOL(skb_prepare_seq_read);
2622EXPORT_SYMBOL(skb_seq_read);
2623EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002624EXPORT_SYMBOL(skb_find_text);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002625EXPORT_SYMBOL(skb_append_datato_frags);
Ben Hutchings4497b072008-06-19 16:22:28 -07002626EXPORT_SYMBOL(__skb_warn_lro_forwarding);
David Howells716ea3a2007-04-02 20:19:53 -07002627
2628EXPORT_SYMBOL_GPL(skb_to_sgvec);
2629EXPORT_SYMBOL_GPL(skb_cow_data);
Rusty Russellf35d9d82008-02-04 23:49:54 -05002630EXPORT_SYMBOL_GPL(skb_partial_csum_set);