blob: 27cfe5fe4bb9f2bf274f3eb0d67dec0616995eff [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 *
7 * Version: $Id: skbuff.c,v 1.90 2001/11/07 05:56:19 davem Exp $
8 *
9 * Fixes:
10 * Alan Cox : Fixed the worst of the load
11 * balancer bugs.
12 * Dave Platt : Interrupt stacking fix.
13 * Richard Kooijman : Timestamp fixes.
14 * Alan Cox : Changed buffer format.
15 * Alan Cox : destructor hook for AF_UNIX etc.
16 * Linus Torvalds : Better skb_clone.
17 * Alan Cox : Added skb_copy.
18 * Alan Cox : Added all the changed routines Linus
19 * only put in the headers
20 * Ray VanTassle : Fixed --skb->lock in free
21 * Alan Cox : skb_copy copy arp field
22 * Andi Kleen : slabified it.
23 * Robert Olsson : Removed skb_head_pool
24 *
25 * NOTE:
26 * The __skb_ routines should be called with interrupts
27 * disabled, or you better be *real* sure that the operation is atomic
28 * with respect to whatever list is being frobbed (e.g. via lock_sock()
29 * or via disabling bottom half handlers, etc).
30 *
31 * This program is free software; you can redistribute it and/or
32 * modify it under the terms of the GNU General Public License
33 * as published by the Free Software Foundation; either version
34 * 2 of the License, or (at your option) any later version.
35 */
36
37/*
38 * The functions in this file will not compile correctly with gcc 2.4.x
39 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/types.h>
43#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/mm.h>
45#include <linux/interrupt.h>
46#include <linux/in.h>
47#include <linux/inet.h>
48#include <linux/slab.h>
49#include <linux/netdevice.h>
50#ifdef CONFIG_NET_CLS_ACT
51#include <net/pkt_sched.h>
52#endif
53#include <linux/string.h>
54#include <linux/skbuff.h>
55#include <linux/cache.h>
56#include <linux/rtnetlink.h>
57#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070058#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <net/protocol.h>
61#include <net/dst.h>
62#include <net/sock.h>
63#include <net/checksum.h>
64#include <net/xfrm.h>
65
66#include <asm/uaccess.h>
67#include <asm/system.h>
68
Al Viroa1f8e7f72006-10-19 16:08:53 -040069#include "kmap_skb.h"
70
Christoph Lametere18b8902006-12-06 20:33:20 -080071static struct kmem_cache *skbuff_head_cache __read_mostly;
72static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * Keep out-of-line to prevent kernel bloat.
76 * __builtin_return_address is not used because it is not always
77 * reliable.
78 */
79
80/**
81 * skb_over_panic - private function
82 * @skb: buffer
83 * @sz: size
84 * @here: address
85 *
86 * Out of line support code for skb_put(). Not user callable.
87 */
88void skb_over_panic(struct sk_buff *skb, int sz, void *here)
89{
Patrick McHardy26095452005-04-21 16:43:02 -070090 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -070091 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070092 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -070093 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -070094 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 BUG();
96}
97
98/**
99 * skb_under_panic - private function
100 * @skb: buffer
101 * @sz: size
102 * @here: address
103 *
104 * Out of line support code for skb_push(). Not user callable.
105 */
106
107void skb_under_panic(struct sk_buff *skb, int sz, void *here)
108{
Patrick McHardy26095452005-04-21 16:43:02 -0700109 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700110 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700111 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700112 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700113 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 BUG();
115}
116
David S. Millerdc6de332006-04-20 00:10:50 -0700117void skb_truesize_bug(struct sk_buff *skb)
118{
119 printk(KERN_ERR "SKB BUG: Invalid truesize (%u) "
120 "len=%u, sizeof(sk_buff)=%Zd\n",
121 skb->truesize, skb->len, sizeof(struct sk_buff));
122}
123EXPORT_SYMBOL(skb_truesize_bug);
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/* Allocate a new skbuff. We do this ourselves so we can fill in a few
126 * 'private' fields and also do memory statistics to find all the
127 * [BEEP] leaks.
128 *
129 */
130
131/**
David S. Millerd179cd12005-08-17 14:57:30 -0700132 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * @size: size to allocate
134 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700135 * @fclone: allocate from fclone cache instead of head cache
136 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800137 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 * Allocate a new &sk_buff. The returned buffer has no headroom and a
140 * tail room of size bytes. The object has a reference count of one.
141 * The return is the buffer. On a failure the return is %NULL.
142 *
143 * Buffers may only be allocated from interrupts using a @gfp_mask of
144 * %GFP_ATOMIC.
145 */
Al Virodd0fc662005-10-07 07:46:04 +0100146struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800147 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Christoph Lametere18b8902006-12-06 20:33:20 -0800149 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800150 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct sk_buff *skb;
152 u8 *data;
153
Herbert Xu8798b3f2006-01-23 16:32:45 -0800154 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800157 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (!skb)
159 goto out;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800162 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
163 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (!data)
165 goto nodata;
166
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300167 /*
168 * See comment in sk_buff definition, just before the 'tail' member
169 */
170 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 skb->truesize = size + sizeof(struct sk_buff);
172 atomic_set(&skb->users, 1);
173 skb->head = data;
174 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700175 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700176 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800177 /* make sure we initialize shinfo sequentially */
178 shinfo = skb_shinfo(skb);
179 atomic_set(&shinfo->dataref, 1);
180 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700181 shinfo->gso_size = 0;
182 shinfo->gso_segs = 0;
183 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800184 shinfo->ip6_frag_id = 0;
185 shinfo->frag_list = NULL;
186
David S. Millerd179cd12005-08-17 14:57:30 -0700187 if (fclone) {
188 struct sk_buff *child = skb + 1;
189 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
David S. Millerd179cd12005-08-17 14:57:30 -0700191 skb->fclone = SKB_FCLONE_ORIG;
192 atomic_set(fclone_ref, 1);
193
194 child->fclone = SKB_FCLONE_UNAVAILABLE;
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196out:
197 return skb;
198nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800199 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 skb = NULL;
201 goto out;
202}
203
204/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700205 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
206 * @dev: network device to receive on
207 * @length: length to allocate
208 * @gfp_mask: get_free_pages mask, passed to alloc_skb
209 *
210 * Allocate a new &sk_buff and assign it a usage count of one. The
211 * buffer has unspecified headroom built in. Users should allocate
212 * the headroom they think they need without accounting for the
213 * built in space. The built in space is used for optimisations.
214 *
215 * %NULL is returned if there is no free memory.
216 */
217struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
218 unsigned int length, gfp_t gfp_mask)
219{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700220 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700221 struct sk_buff *skb;
222
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900223 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700224 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700225 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700226 skb->dev = dev;
227 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700228 return skb;
229}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Herbert Xu27b437c2006-07-13 19:26:39 -0700231static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Herbert Xu27b437c2006-07-13 19:26:39 -0700233 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Herbert Xu27b437c2006-07-13 19:26:39 -0700235 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 do {
238 struct sk_buff *this = list;
239 list = list->next;
240 kfree_skb(this);
241 } while (list);
242}
243
Herbert Xu27b437c2006-07-13 19:26:39 -0700244static inline void skb_drop_fraglist(struct sk_buff *skb)
245{
246 skb_drop_list(&skb_shinfo(skb)->frag_list);
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249static void skb_clone_fraglist(struct sk_buff *skb)
250{
251 struct sk_buff *list;
252
253 for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
254 skb_get(list);
255}
256
Adrian Bunk5bba1712006-06-29 13:02:35 -0700257static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 if (!skb->cloned ||
260 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
261 &skb_shinfo(skb)->dataref)) {
262 if (skb_shinfo(skb)->nr_frags) {
263 int i;
264 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
265 put_page(skb_shinfo(skb)->frags[i].page);
266 }
267
268 if (skb_shinfo(skb)->frag_list)
269 skb_drop_fraglist(skb);
270
271 kfree(skb->head);
272 }
273}
274
275/*
276 * Free an skbuff by memory without cleaning the state.
277 */
278void kfree_skbmem(struct sk_buff *skb)
279{
David S. Millerd179cd12005-08-17 14:57:30 -0700280 struct sk_buff *other;
281 atomic_t *fclone_ref;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 skb_release_data(skb);
David S. Millerd179cd12005-08-17 14:57:30 -0700284 switch (skb->fclone) {
285 case SKB_FCLONE_UNAVAILABLE:
286 kmem_cache_free(skbuff_head_cache, skb);
287 break;
288
289 case SKB_FCLONE_ORIG:
290 fclone_ref = (atomic_t *) (skb + 2);
291 if (atomic_dec_and_test(fclone_ref))
292 kmem_cache_free(skbuff_fclone_cache, skb);
293 break;
294
295 case SKB_FCLONE_CLONE:
296 fclone_ref = (atomic_t *) (skb + 1);
297 other = skb - 1;
298
299 /* The clone portion is available for
300 * fast-cloning again.
301 */
302 skb->fclone = SKB_FCLONE_UNAVAILABLE;
303
304 if (atomic_dec_and_test(fclone_ref))
305 kmem_cache_free(skbuff_fclone_cache, other);
306 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310/**
311 * __kfree_skb - private function
312 * @skb: buffer
313 *
314 * Free an sk_buff. Release anything attached to the buffer.
315 * Clean the state. This is an internal helper function. Users should
316 * always call kfree_skb
317 */
318
319void __kfree_skb(struct sk_buff *skb)
320{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 dst_release(skb->dst);
322#ifdef CONFIG_XFRM
323 secpath_put(skb->sp);
324#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700325 if (skb->destructor) {
326 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 skb->destructor(skb);
328 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700330 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800331 nf_conntrack_put_reasm(skb->nfct_reasm);
332#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#ifdef CONFIG_BRIDGE_NETFILTER
334 nf_bridge_put(skb->nf_bridge);
335#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/* XXX: IS this still necessary? - JHS */
337#ifdef CONFIG_NET_SCHED
338 skb->tc_index = 0;
339#ifdef CONFIG_NET_CLS_ACT
340 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#endif
342#endif
343
344 kfree_skbmem(skb);
345}
346
347/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800348 * kfree_skb - free an sk_buff
349 * @skb: buffer to free
350 *
351 * Drop a reference to the buffer and free it if the usage count has
352 * hit zero.
353 */
354void kfree_skb(struct sk_buff *skb)
355{
356 if (unlikely(!skb))
357 return;
358 if (likely(atomic_read(&skb->users) == 1))
359 smp_rmb();
360 else if (likely(!atomic_dec_and_test(&skb->users)))
361 return;
362 __kfree_skb(skb);
363}
364
365/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * skb_clone - duplicate an sk_buff
367 * @skb: buffer to clone
368 * @gfp_mask: allocation priority
369 *
370 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
371 * copies share the same packet data but not structure. The new
372 * buffer has a reference count of 1. If the allocation fails the
373 * function returns %NULL otherwise the new buffer is returned.
374 *
375 * If this function is called from an interrupt gfp_mask() must be
376 * %GFP_ATOMIC.
377 */
378
Al Virodd0fc662005-10-07 07:46:04 +0100379struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
David S. Millerd179cd12005-08-17 14:57:30 -0700381 struct sk_buff *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
David S. Millerd179cd12005-08-17 14:57:30 -0700383 n = skb + 1;
384 if (skb->fclone == SKB_FCLONE_ORIG &&
385 n->fclone == SKB_FCLONE_UNAVAILABLE) {
386 atomic_t *fclone_ref = (atomic_t *) (n + 1);
387 n->fclone = SKB_FCLONE_CLONE;
388 atomic_inc(fclone_ref);
389 } else {
390 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
391 if (!n)
392 return NULL;
393 n->fclone = SKB_FCLONE_UNAVAILABLE;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396#define C(x) n->x = skb->x
397
398 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 n->sk = NULL;
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700400 C(tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 C(dev);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700402 C(transport_header);
403 C(network_header);
404 C(mac_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 C(dst);
406 dst_clone(skb->dst);
407 C(sp);
408#ifdef CONFIG_INET
409 secpath_get(skb->sp);
410#endif
411 memcpy(n->cb, skb->cb, sizeof(skb->cb));
412 C(len);
413 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700414 C(mac_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 C(csum);
416 C(local_df);
417 n->cloned = 1;
418 n->nohdr = 0;
419 C(pkt_type);
420 C(ip_summed);
421 C(priority);
YOSHIFUJI Hideakia8372f02006-02-19 22:32:06 -0800422#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
423 C(ipvs_property);
424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 C(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 n->destructor = NULL;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800427 C(mark);
Yasuyuki Kozakaiedda5532007-03-14 16:43:37 -0700428 __nf_copy(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429#ifdef CONFIG_NET_SCHED
430 C(tc_index);
431#ifdef CONFIG_NET_CLS_ACT
432 n->tc_verd = SET_TC_VERD(skb->tc_verd,0);
David S. Millerb72f6ec2005-07-19 14:13:54 -0700433 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
434 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
Patrick McHardyc01003c2007-03-29 11:46:52 -0700435 C(iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#endif
Patrick McHardydbbeb2f2007-06-23 22:58:34 -0700438 skb_copy_secmark(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 C(truesize);
440 atomic_set(&n->users, 1);
441 C(head);
442 C(data);
443 C(tail);
444 C(end);
445
446 atomic_inc(&(skb_shinfo(skb)->dataref));
447 skb->cloned = 1;
448
449 return n;
450}
451
452static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
453{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700454#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
456 * Shift between the two data areas in bytes
457 */
458 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700459#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 new->sk = NULL;
461 new->dev = old->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 new->priority = old->priority;
463 new->protocol = old->protocol;
464 new->dst = dst_clone(old->dst);
465#ifdef CONFIG_INET
466 new->sp = secpath_get(old->sp);
467#endif
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700468 new->transport_header = old->transport_header;
469 new->network_header = old->network_header;
470 new->mac_header = old->mac_header;
471#ifndef NET_SKBUFF_DATA_USES_OFFSET
472 /* {transport,network,mac}_header are relative to skb->head */
473 new->transport_header += offset;
474 new->network_header += offset;
475 new->mac_header += offset;
476#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 memcpy(new->cb, old->cb, sizeof(old->cb));
478 new->local_df = old->local_df;
David S. Millerd179cd12005-08-17 14:57:30 -0700479 new->fclone = SKB_FCLONE_UNAVAILABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 new->pkt_type = old->pkt_type;
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700481 new->tstamp = old->tstamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 new->destructor = NULL;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800483 new->mark = old->mark;
Yasuyuki Kozakaiedda5532007-03-14 16:43:37 -0700484 __nf_copy(new, old);
Julian Anastasovc98d80e2005-10-22 13:39:21 +0300485#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
486 new->ipvs_property = old->ipvs_property;
487#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#ifdef CONFIG_NET_SCHED
489#ifdef CONFIG_NET_CLS_ACT
490 new->tc_verd = old->tc_verd;
491#endif
492 new->tc_index = old->tc_index;
493#endif
James Morris984bc162006-06-09 00:29:17 -0700494 skb_copy_secmark(new, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 atomic_set(&new->users, 1);
Herbert Xu79671682006-06-22 02:40:14 -0700496 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
497 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
498 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501/**
502 * skb_copy - create private copy of an sk_buff
503 * @skb: buffer to copy
504 * @gfp_mask: allocation priority
505 *
506 * Make a copy of both an &sk_buff and its data. This is used when the
507 * caller wishes to modify the data and needs a private copy of the
508 * data to alter. Returns %NULL on failure or the pointer to the buffer
509 * on success. The returned buffer has a reference count of 1.
510 *
511 * As by-product this function converts non-linear &sk_buff to linear
512 * one, so that &sk_buff becomes completely private and caller is allowed
513 * to modify all the data of returned buffer. This means that this
514 * function is not recommended for use in circumstances when only
515 * header is going to be modified. Use pskb_copy() instead.
516 */
517
Al Virodd0fc662005-10-07 07:46:04 +0100518struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 int headerlen = skb->data - skb->head;
521 /*
522 * Allocate the copy buffer
523 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700524 struct sk_buff *n;
525#ifdef NET_SKBUFF_DATA_USES_OFFSET
526 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
527#else
528 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
529#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (!n)
531 return NULL;
532
533 /* Set the data pointer */
534 skb_reserve(n, headerlen);
535 /* Set the tail pointer and length */
536 skb_put(n, skb->len);
537 n->csum = skb->csum;
538 n->ip_summed = skb->ip_summed;
539
540 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
541 BUG();
542
543 copy_skb_header(n, skb);
544 return n;
545}
546
547
548/**
549 * pskb_copy - create copy of an sk_buff with private head.
550 * @skb: buffer to copy
551 * @gfp_mask: allocation priority
552 *
553 * Make a copy of both an &sk_buff and part of its data, located
554 * in header. Fragmented data remain shared. This is used when
555 * the caller wishes to modify only header of &sk_buff and needs
556 * private copy of the header to alter. Returns %NULL on failure
557 * or the pointer to the buffer on success.
558 * The returned buffer has a reference count of 1.
559 */
560
Al Virodd0fc662005-10-07 07:46:04 +0100561struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 /*
564 * Allocate the copy buffer
565 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700566 struct sk_buff *n;
567#ifdef NET_SKBUFF_DATA_USES_OFFSET
568 n = alloc_skb(skb->end, gfp_mask);
569#else
570 n = alloc_skb(skb->end - skb->head, gfp_mask);
571#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!n)
573 goto out;
574
575 /* Set the data pointer */
576 skb_reserve(n, skb->data - skb->head);
577 /* Set the tail pointer and length */
578 skb_put(n, skb_headlen(skb));
579 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300580 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 n->csum = skb->csum;
582 n->ip_summed = skb->ip_summed;
583
Herbert Xu25f484a2006-11-07 14:57:15 -0800584 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 n->data_len = skb->data_len;
586 n->len = skb->len;
587
588 if (skb_shinfo(skb)->nr_frags) {
589 int i;
590
591 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
592 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
593 get_page(skb_shinfo(n)->frags[i].page);
594 }
595 skb_shinfo(n)->nr_frags = i;
596 }
597
598 if (skb_shinfo(skb)->frag_list) {
599 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
600 skb_clone_fraglist(n);
601 }
602
603 copy_skb_header(n, skb);
604out:
605 return n;
606}
607
608/**
609 * pskb_expand_head - reallocate header of &sk_buff
610 * @skb: buffer to reallocate
611 * @nhead: room to add at head
612 * @ntail: room to add at tail
613 * @gfp_mask: allocation priority
614 *
615 * Expands (or creates identical copy, if &nhead and &ntail are zero)
616 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
617 * reference count of 1. Returns zero in the case of success or error,
618 * if expansion failed. In the last case, &sk_buff is not changed.
619 *
620 * All the pointers pointing into skb header may change and must be
621 * reloaded after call to this function.
622 */
623
Victor Fusco86a76ca2005-07-08 14:57:47 -0700624int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100625 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 int i;
628 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700629#ifdef NET_SKBUFF_DATA_USES_OFFSET
630 int size = nhead + skb->end + ntail;
631#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700633#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 long off;
635
636 if (skb_shared(skb))
637 BUG();
638
639 size = SKB_DATA_ALIGN(size);
640
641 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
642 if (!data)
643 goto nodata;
644
645 /* Copy only real data... and, alas, header. This should be
646 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700647#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700648 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700649#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700650 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700651#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700652 memcpy(data + size, skb_end_pointer(skb),
653 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
656 get_page(skb_shinfo(skb)->frags[i].page);
657
658 if (skb_shinfo(skb)->frag_list)
659 skb_clone_fraglist(skb);
660
661 skb_release_data(skb);
662
663 off = (data + nhead) - skb->head;
664
665 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700667#ifdef NET_SKBUFF_DATA_USES_OFFSET
668 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700669 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700670#else
671 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700672#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700673 /* {transport,network,mac}_header and tail are relative to skb->head */
674 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700675 skb->transport_header += off;
676 skb->network_header += off;
677 skb->mac_header += off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 skb->cloned = 0;
679 skb->nohdr = 0;
680 atomic_set(&skb_shinfo(skb)->dataref, 1);
681 return 0;
682
683nodata:
684 return -ENOMEM;
685}
686
687/* Make private copy of skb with writable head and some headroom */
688
689struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
690{
691 struct sk_buff *skb2;
692 int delta = headroom - skb_headroom(skb);
693
694 if (delta <= 0)
695 skb2 = pskb_copy(skb, GFP_ATOMIC);
696 else {
697 skb2 = skb_clone(skb, GFP_ATOMIC);
698 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
699 GFP_ATOMIC)) {
700 kfree_skb(skb2);
701 skb2 = NULL;
702 }
703 }
704 return skb2;
705}
706
707
708/**
709 * skb_copy_expand - copy and expand sk_buff
710 * @skb: buffer to copy
711 * @newheadroom: new free bytes at head
712 * @newtailroom: new free bytes at tail
713 * @gfp_mask: allocation priority
714 *
715 * Make a copy of both an &sk_buff and its data and while doing so
716 * allocate additional space.
717 *
718 * This is used when the caller wishes to modify the data and needs a
719 * private copy of the data to alter as well as more space for new fields.
720 * Returns %NULL on failure or the pointer to the buffer
721 * on success. The returned buffer has a reference count of 1.
722 *
723 * You must pass %GFP_ATOMIC as the allocation priority if this function
724 * is called from an interrupt.
725 *
726 * BUG ALERT: ip_summed is not copied. Why does this work? Is it used
727 * only by netfilter in the cases when checksum is recalculated? --ANK
728 */
729struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700730 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100731 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 /*
734 * Allocate the copy buffer
735 */
736 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
737 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700738 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int head_copy_len, head_copy_off;
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700740 int off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (!n)
743 return NULL;
744
745 skb_reserve(n, newheadroom);
746
747 /* Set the tail pointer and length */
748 skb_put(n, skb->len);
749
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700750 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 head_copy_off = 0;
752 if (newheadroom <= head_copy_len)
753 head_copy_len = newheadroom;
754 else
755 head_copy_off = newheadroom - head_copy_len;
756
757 /* Copy the linear header and data. */
758 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
759 skb->len + head_copy_len))
760 BUG();
761
762 copy_skb_header(n, skb);
763
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700764#ifdef NET_SKBUFF_DATA_USES_OFFSET
765 off = newheadroom - oldheadroom;
766#endif
767 n->transport_header += off;
768 n->network_header += off;
769 n->mac_header += off;
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return n;
772}
773
774/**
775 * skb_pad - zero pad the tail of an skb
776 * @skb: buffer to pad
777 * @pad: space to pad
778 *
779 * Ensure that a buffer is followed by a padding area that is zero
780 * filled. Used by network drivers which may DMA or transfer data
781 * beyond the buffer end onto the wire.
782 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700783 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900785
Herbert Xu5b057c62006-06-23 02:06:41 -0700786int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Herbert Xu5b057c62006-06-23 02:06:41 -0700788 int err;
789 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700792 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700796
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700797 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700798 if (likely(skb_cloned(skb) || ntail > 0)) {
799 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
800 if (unlikely(err))
801 goto free_skb;
802 }
803
804 /* FIXME: The use of this function with non-linear skb's really needs
805 * to be audited.
806 */
807 err = skb_linearize(skb);
808 if (unlikely(err))
809 goto free_skb;
810
811 memset(skb->data + skb->len, 0, pad);
812 return 0;
813
814free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700816 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900817}
818
Herbert Xu3cc0e872006-06-09 16:13:38 -0700819/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
821
Herbert Xu3cc0e872006-06-09 16:13:38 -0700822int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Herbert Xu27b437c2006-07-13 19:26:39 -0700824 struct sk_buff **fragp;
825 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int offset = skb_headlen(skb);
827 int nfrags = skb_shinfo(skb)->nr_frags;
828 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -0700829 int err;
830
831 if (skb_cloned(skb) &&
832 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
833 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700835 i = 0;
836 if (offset >= len)
837 goto drop_pages;
838
839 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -0700841
842 if (end < len) {
843 offset = end;
844 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
Herbert Xu27b437c2006-07-13 19:26:39 -0700846
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700847 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -0700848
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700849drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -0700850 skb_shinfo(skb)->nr_frags = i;
851
852 for (; i < nfrags; i++)
853 put_page(skb_shinfo(skb)->frags[i].page);
854
855 if (skb_shinfo(skb)->frag_list)
856 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700857 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
Herbert Xu27b437c2006-07-13 19:26:39 -0700860 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
861 fragp = &frag->next) {
862 int end = offset + frag->len;
863
864 if (skb_shared(frag)) {
865 struct sk_buff *nfrag;
866
867 nfrag = skb_clone(frag, GFP_ATOMIC);
868 if (unlikely(!nfrag))
869 return -ENOMEM;
870
871 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700872 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -0700873 frag = nfrag;
874 *fragp = frag;
875 }
876
877 if (end < len) {
878 offset = end;
879 continue;
880 }
881
882 if (end > len &&
883 unlikely((err = pskb_trim(frag, len - offset))))
884 return err;
885
886 if (frag->next)
887 skb_drop_list(&frag->next);
888 break;
889 }
890
Herbert Xuf4d26fb2006-07-30 20:20:28 -0700891done:
Herbert Xu27b437c2006-07-13 19:26:39 -0700892 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 skb->data_len -= skb->len - len;
894 skb->len = len;
895 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -0700896 skb->len = len;
897 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700898 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900
901 return 0;
902}
903
904/**
905 * __pskb_pull_tail - advance tail of skb header
906 * @skb: buffer to reallocate
907 * @delta: number of bytes to advance tail
908 *
909 * The function makes a sense only on a fragmented &sk_buff,
910 * it expands header moving its tail forward and copying necessary
911 * data from fragmented part.
912 *
913 * &sk_buff MUST have reference count of 1.
914 *
915 * Returns %NULL (and &sk_buff does not change) if pull failed
916 * or value of new tail of skb in the case of success.
917 *
918 * All the pointers pointing into skb header may change and must be
919 * reloaded after call to this function.
920 */
921
922/* Moves tail of skb head forward, copying data from fragmented part,
923 * when it is necessary.
924 * 1. It may fail due to malloc failure.
925 * 2. It may change skb pointers.
926 *
927 * It is pretty complicated. Luckily, it is called only in exceptional cases.
928 */
929unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
930{
931 /* If skb has not enough free space at tail, get new one
932 * plus 128 bytes for future expansions. If we have enough
933 * room at tail, reallocate without expansion only if skb is cloned.
934 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700935 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (eat > 0 || skb_cloned(skb)) {
938 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
939 GFP_ATOMIC))
940 return NULL;
941 }
942
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700943 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 BUG();
945
946 /* Optimization: no fragments, no reasons to preestimate
947 * size of pulled pages. Superb.
948 */
949 if (!skb_shinfo(skb)->frag_list)
950 goto pull_pages;
951
952 /* Estimate size of pulled pages. */
953 eat = delta;
954 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
955 if (skb_shinfo(skb)->frags[i].size >= eat)
956 goto pull_pages;
957 eat -= skb_shinfo(skb)->frags[i].size;
958 }
959
960 /* If we need update frag list, we are in troubles.
961 * Certainly, it possible to add an offset to skb data,
962 * but taking into account that pulling is expected to
963 * be very rare operation, it is worth to fight against
964 * further bloating skb head and crucify ourselves here instead.
965 * Pure masohism, indeed. 8)8)
966 */
967 if (eat) {
968 struct sk_buff *list = skb_shinfo(skb)->frag_list;
969 struct sk_buff *clone = NULL;
970 struct sk_buff *insp = NULL;
971
972 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -0800973 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 if (list->len <= eat) {
976 /* Eaten as whole. */
977 eat -= list->len;
978 list = list->next;
979 insp = list;
980 } else {
981 /* Eaten partially. */
982
983 if (skb_shared(list)) {
984 /* Sucks! We need to fork list. :-( */
985 clone = skb_clone(list, GFP_ATOMIC);
986 if (!clone)
987 return NULL;
988 insp = list->next;
989 list = clone;
990 } else {
991 /* This may be pulled without
992 * problems. */
993 insp = list;
994 }
995 if (!pskb_pull(list, eat)) {
996 if (clone)
997 kfree_skb(clone);
998 return NULL;
999 }
1000 break;
1001 }
1002 } while (eat);
1003
1004 /* Free pulled out fragments. */
1005 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1006 skb_shinfo(skb)->frag_list = list->next;
1007 kfree_skb(list);
1008 }
1009 /* And insert new clone at head. */
1010 if (clone) {
1011 clone->next = list;
1012 skb_shinfo(skb)->frag_list = clone;
1013 }
1014 }
1015 /* Success! Now we may commit changes to skb data. */
1016
1017pull_pages:
1018 eat = delta;
1019 k = 0;
1020 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1021 if (skb_shinfo(skb)->frags[i].size <= eat) {
1022 put_page(skb_shinfo(skb)->frags[i].page);
1023 eat -= skb_shinfo(skb)->frags[i].size;
1024 } else {
1025 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1026 if (eat) {
1027 skb_shinfo(skb)->frags[k].page_offset += eat;
1028 skb_shinfo(skb)->frags[k].size -= eat;
1029 eat = 0;
1030 }
1031 k++;
1032 }
1033 }
1034 skb_shinfo(skb)->nr_frags = k;
1035
1036 skb->tail += delta;
1037 skb->data_len -= delta;
1038
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001039 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042/* Copy some data bits from skb to kernel buffer. */
1043
1044int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1045{
1046 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001047 int start = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 if (offset > (int)skb->len - len)
1050 goto fault;
1051
1052 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001053 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (copy > len)
1055 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001056 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if ((len -= copy) == 0)
1058 return 0;
1059 offset += copy;
1060 to += copy;
1061 }
1062
1063 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001064 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
David S. Miller1a028e52007-04-27 15:21:23 -07001066 BUG_TRAP(start <= offset + len);
1067
1068 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if ((copy = end - offset) > 0) {
1070 u8 *vaddr;
1071
1072 if (copy > len)
1073 copy = len;
1074
1075 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1076 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001077 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1078 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 kunmap_skb_frag(vaddr);
1080
1081 if ((len -= copy) == 0)
1082 return 0;
1083 offset += copy;
1084 to += copy;
1085 }
David S. Miller1a028e52007-04-27 15:21:23 -07001086 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
1089 if (skb_shinfo(skb)->frag_list) {
1090 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1091
1092 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001093 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
David S. Miller1a028e52007-04-27 15:21:23 -07001095 BUG_TRAP(start <= offset + len);
1096
1097 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if ((copy = end - offset) > 0) {
1099 if (copy > len)
1100 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001101 if (skb_copy_bits(list, offset - start,
1102 to, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 goto fault;
1104 if ((len -= copy) == 0)
1105 return 0;
1106 offset += copy;
1107 to += copy;
1108 }
David S. Miller1a028e52007-04-27 15:21:23 -07001109 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111 }
1112 if (!len)
1113 return 0;
1114
1115fault:
1116 return -EFAULT;
1117}
1118
Herbert Xu357b40a2005-04-19 22:30:14 -07001119/**
1120 * skb_store_bits - store bits from kernel buffer to skb
1121 * @skb: destination buffer
1122 * @offset: offset in destination
1123 * @from: source buffer
1124 * @len: number of bytes to copy
1125 *
1126 * Copy the specified number of bytes from the source buffer to the
1127 * destination skb. This function handles all the messy bits of
1128 * traversing fragment lists and such.
1129 */
1130
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001131int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001132{
1133 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001134 int start = skb_headlen(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -07001135
1136 if (offset > (int)skb->len - len)
1137 goto fault;
1138
David S. Miller1a028e52007-04-27 15:21:23 -07001139 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001140 if (copy > len)
1141 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001142 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001143 if ((len -= copy) == 0)
1144 return 0;
1145 offset += copy;
1146 from += copy;
1147 }
1148
1149 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1150 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001151 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001152
David S. Miller1a028e52007-04-27 15:21:23 -07001153 BUG_TRAP(start <= offset + len);
1154
1155 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001156 if ((copy = end - offset) > 0) {
1157 u8 *vaddr;
1158
1159 if (copy > len)
1160 copy = len;
1161
1162 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001163 memcpy(vaddr + frag->page_offset + offset - start,
1164 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001165 kunmap_skb_frag(vaddr);
1166
1167 if ((len -= copy) == 0)
1168 return 0;
1169 offset += copy;
1170 from += copy;
1171 }
David S. Miller1a028e52007-04-27 15:21:23 -07001172 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001173 }
1174
1175 if (skb_shinfo(skb)->frag_list) {
1176 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1177
1178 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001179 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001180
David S. Miller1a028e52007-04-27 15:21:23 -07001181 BUG_TRAP(start <= offset + len);
1182
1183 end = start + list->len;
Herbert Xu357b40a2005-04-19 22:30:14 -07001184 if ((copy = end - offset) > 0) {
1185 if (copy > len)
1186 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001187 if (skb_store_bits(list, offset - start,
1188 from, copy))
Herbert Xu357b40a2005-04-19 22:30:14 -07001189 goto fault;
1190 if ((len -= copy) == 0)
1191 return 0;
1192 offset += copy;
1193 from += copy;
1194 }
David S. Miller1a028e52007-04-27 15:21:23 -07001195 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001196 }
1197 }
1198 if (!len)
1199 return 0;
1200
1201fault:
1202 return -EFAULT;
1203}
1204
1205EXPORT_SYMBOL(skb_store_bits);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207/* Checksum skb data. */
1208
Al Viro2bbbc862006-11-14 21:37:14 -08001209__wsum skb_checksum(const struct sk_buff *skb, int offset,
1210 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
David S. Miller1a028e52007-04-27 15:21:23 -07001212 int start = skb_headlen(skb);
1213 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 int pos = 0;
1215
1216 /* Checksum header. */
1217 if (copy > 0) {
1218 if (copy > len)
1219 copy = len;
1220 csum = csum_partial(skb->data + offset, copy, csum);
1221 if ((len -= copy) == 0)
1222 return csum;
1223 offset += copy;
1224 pos = copy;
1225 }
1226
1227 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
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 + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001234 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 u8 *vaddr;
1236 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1237
1238 if (copy > len)
1239 copy = len;
1240 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001241 csum2 = csum_partial(vaddr + frag->page_offset +
1242 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 kunmap_skb_frag(vaddr);
1244 csum = csum_block_add(csum, csum2, pos);
1245 if (!(len -= copy))
1246 return csum;
1247 offset += copy;
1248 pos += copy;
1249 }
David S. Miller1a028e52007-04-27 15:21:23 -07001250 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252
1253 if (skb_shinfo(skb)->frag_list) {
1254 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1255
1256 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001257 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
David S. Miller1a028e52007-04-27 15:21:23 -07001259 BUG_TRAP(start <= offset + len);
1260
1261 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if ((copy = end - offset) > 0) {
Al Viro5f92a732006-11-14 21:36:54 -08001263 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (copy > len)
1265 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001266 csum2 = skb_checksum(list, offset - start,
1267 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 csum = csum_block_add(csum, csum2, pos);
1269 if ((len -= copy) == 0)
1270 return csum;
1271 offset += copy;
1272 pos += copy;
1273 }
David S. Miller1a028e52007-04-27 15:21:23 -07001274 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001277 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 return csum;
1280}
1281
1282/* Both of above in one bottle. */
1283
Al Viro81d77662006-11-14 21:37:33 -08001284__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1285 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
David S. Miller1a028e52007-04-27 15:21:23 -07001287 int start = skb_headlen(skb);
1288 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 int pos = 0;
1290
1291 /* Copy header. */
1292 if (copy > 0) {
1293 if (copy > len)
1294 copy = len;
1295 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1296 copy, csum);
1297 if ((len -= copy) == 0)
1298 return csum;
1299 offset += copy;
1300 to += copy;
1301 pos = copy;
1302 }
1303
1304 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001305 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
David S. Miller1a028e52007-04-27 15:21:23 -07001307 BUG_TRAP(start <= offset + len);
1308
1309 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001311 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 u8 *vaddr;
1313 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1314
1315 if (copy > len)
1316 copy = len;
1317 vaddr = kmap_skb_frag(frag);
1318 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001319 frag->page_offset +
1320 offset - start, to,
1321 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 kunmap_skb_frag(vaddr);
1323 csum = csum_block_add(csum, csum2, pos);
1324 if (!(len -= copy))
1325 return csum;
1326 offset += copy;
1327 to += copy;
1328 pos += copy;
1329 }
David S. Miller1a028e52007-04-27 15:21:23 -07001330 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
1333 if (skb_shinfo(skb)->frag_list) {
1334 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1335
1336 for (; list; list = list->next) {
Al Viro81d77662006-11-14 21:37:33 -08001337 __wsum csum2;
David S. Miller1a028e52007-04-27 15:21:23 -07001338 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
David S. Miller1a028e52007-04-27 15:21:23 -07001340 BUG_TRAP(start <= offset + len);
1341
1342 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if ((copy = end - offset) > 0) {
1344 if (copy > len)
1345 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001346 csum2 = skb_copy_and_csum_bits(list,
1347 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 to, copy, 0);
1349 csum = csum_block_add(csum, csum2, pos);
1350 if ((len -= copy) == 0)
1351 return csum;
1352 offset += copy;
1353 to += copy;
1354 pos += copy;
1355 }
David S. Miller1a028e52007-04-27 15:21:23 -07001356 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001359 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return csum;
1361}
1362
1363void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1364{
Al Virod3bc23e2006-11-14 21:24:49 -08001365 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 long csstart;
1367
Patrick McHardy84fa7932006-08-29 16:44:56 -07001368 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001369 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 else
1371 csstart = skb_headlen(skb);
1372
Kris Katterjohn09a62662006-01-08 22:24:28 -08001373 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001375 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 csum = 0;
1378 if (csstart != skb->len)
1379 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1380 skb->len - csstart, 0);
1381
Patrick McHardy84fa7932006-08-29 16:44:56 -07001382 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001383 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Al Virod3bc23e2006-11-14 21:24:49 -08001385 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387}
1388
1389/**
1390 * skb_dequeue - remove from the head of the queue
1391 * @list: list to dequeue from
1392 *
1393 * Remove the head of the list. The list lock is taken so the function
1394 * may be used safely with other locking list functions. The head item is
1395 * returned or %NULL if the list is empty.
1396 */
1397
1398struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1399{
1400 unsigned long flags;
1401 struct sk_buff *result;
1402
1403 spin_lock_irqsave(&list->lock, flags);
1404 result = __skb_dequeue(list);
1405 spin_unlock_irqrestore(&list->lock, flags);
1406 return result;
1407}
1408
1409/**
1410 * skb_dequeue_tail - remove from the tail of the queue
1411 * @list: list to dequeue from
1412 *
1413 * Remove the tail of the list. The list lock is taken so the function
1414 * may be used safely with other locking list functions. The tail item is
1415 * returned or %NULL if the list is empty.
1416 */
1417struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1418{
1419 unsigned long flags;
1420 struct sk_buff *result;
1421
1422 spin_lock_irqsave(&list->lock, flags);
1423 result = __skb_dequeue_tail(list);
1424 spin_unlock_irqrestore(&list->lock, flags);
1425 return result;
1426}
1427
1428/**
1429 * skb_queue_purge - empty a list
1430 * @list: list to empty
1431 *
1432 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1433 * the list and one reference dropped. This function takes the list
1434 * lock and is atomic with respect to other list locking functions.
1435 */
1436void skb_queue_purge(struct sk_buff_head *list)
1437{
1438 struct sk_buff *skb;
1439 while ((skb = skb_dequeue(list)) != NULL)
1440 kfree_skb(skb);
1441}
1442
1443/**
1444 * skb_queue_head - queue a buffer at the list head
1445 * @list: list to use
1446 * @newsk: buffer to queue
1447 *
1448 * Queue a buffer at the start of the list. This function takes the
1449 * list lock and can be used safely with other locking &sk_buff functions
1450 * safely.
1451 *
1452 * A buffer cannot be placed on two lists at the same time.
1453 */
1454void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1455{
1456 unsigned long flags;
1457
1458 spin_lock_irqsave(&list->lock, flags);
1459 __skb_queue_head(list, newsk);
1460 spin_unlock_irqrestore(&list->lock, flags);
1461}
1462
1463/**
1464 * skb_queue_tail - queue a buffer at the list tail
1465 * @list: list to use
1466 * @newsk: buffer to queue
1467 *
1468 * Queue a buffer at the tail of the list. This function takes the
1469 * list lock and can be used safely with other locking &sk_buff functions
1470 * safely.
1471 *
1472 * A buffer cannot be placed on two lists at the same time.
1473 */
1474void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1475{
1476 unsigned long flags;
1477
1478 spin_lock_irqsave(&list->lock, flags);
1479 __skb_queue_tail(list, newsk);
1480 spin_unlock_irqrestore(&list->lock, flags);
1481}
David S. Miller8728b832005-08-09 19:25:21 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483/**
1484 * skb_unlink - remove a buffer from a list
1485 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001486 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 *
David S. Miller8728b832005-08-09 19:25:21 -07001488 * Remove a packet from a list. The list locks are taken and this
1489 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 *
David S. Miller8728b832005-08-09 19:25:21 -07001491 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 */
David S. Miller8728b832005-08-09 19:25:21 -07001493void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
David S. Miller8728b832005-08-09 19:25:21 -07001495 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
David S. Miller8728b832005-08-09 19:25:21 -07001497 spin_lock_irqsave(&list->lock, flags);
1498 __skb_unlink(skb, list);
1499 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502/**
1503 * skb_append - append a buffer
1504 * @old: buffer to insert after
1505 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001506 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *
1508 * Place a packet after a given packet in a list. The list locks are taken
1509 * and this function is atomic with respect to other list locked calls.
1510 * A buffer cannot be placed on two lists at the same time.
1511 */
David S. Miller8728b832005-08-09 19:25:21 -07001512void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 unsigned long flags;
1515
David S. Miller8728b832005-08-09 19:25:21 -07001516 spin_lock_irqsave(&list->lock, flags);
1517 __skb_append(old, newsk, list);
1518 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
1521
1522/**
1523 * skb_insert - insert a buffer
1524 * @old: buffer to insert before
1525 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001526 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 *
David S. Miller8728b832005-08-09 19:25:21 -07001528 * Place a packet before a given packet in a list. The list locks are
1529 * taken and this function is atomic with respect to other list locked
1530 * calls.
1531 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 * A buffer cannot be placed on two lists at the same time.
1533 */
David S. Miller8728b832005-08-09 19:25:21 -07001534void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
1536 unsigned long flags;
1537
David S. Miller8728b832005-08-09 19:25:21 -07001538 spin_lock_irqsave(&list->lock, flags);
1539 __skb_insert(newsk, old->prev, old, list);
1540 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543static inline void skb_split_inside_header(struct sk_buff *skb,
1544 struct sk_buff* skb1,
1545 const u32 len, const int pos)
1546{
1547 int i;
1548
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001549 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
1550 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 /* And move data appendix as is. */
1552 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1553 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
1554
1555 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
1556 skb_shinfo(skb)->nr_frags = 0;
1557 skb1->data_len = skb->data_len;
1558 skb1->len += skb1->data_len;
1559 skb->data_len = 0;
1560 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001561 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
1564static inline void skb_split_no_header(struct sk_buff *skb,
1565 struct sk_buff* skb1,
1566 const u32 len, int pos)
1567{
1568 int i, k = 0;
1569 const int nfrags = skb_shinfo(skb)->nr_frags;
1570
1571 skb_shinfo(skb)->nr_frags = 0;
1572 skb1->len = skb1->data_len = skb->len - len;
1573 skb->len = len;
1574 skb->data_len = len - pos;
1575
1576 for (i = 0; i < nfrags; i++) {
1577 int size = skb_shinfo(skb)->frags[i].size;
1578
1579 if (pos + size > len) {
1580 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
1581
1582 if (pos < len) {
1583 /* Split frag.
1584 * We have two variants in this case:
1585 * 1. Move all the frag to the second
1586 * part, if it is possible. F.e.
1587 * this approach is mandatory for TUX,
1588 * where splitting is expensive.
1589 * 2. Split is accurately. We make this.
1590 */
1591 get_page(skb_shinfo(skb)->frags[i].page);
1592 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
1593 skb_shinfo(skb1)->frags[0].size -= len - pos;
1594 skb_shinfo(skb)->frags[i].size = len - pos;
1595 skb_shinfo(skb)->nr_frags++;
1596 }
1597 k++;
1598 } else
1599 skb_shinfo(skb)->nr_frags++;
1600 pos += size;
1601 }
1602 skb_shinfo(skb1)->nr_frags = k;
1603}
1604
1605/**
1606 * skb_split - Split fragmented skb to two parts at length len.
1607 * @skb: the buffer to split
1608 * @skb1: the buffer to receive the second part
1609 * @len: new length for skb
1610 */
1611void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
1612{
1613 int pos = skb_headlen(skb);
1614
1615 if (len < pos) /* Split line is inside header. */
1616 skb_split_inside_header(skb, skb1, len, pos);
1617 else /* Second chunk has no header, nothing to copy. */
1618 skb_split_no_header(skb, skb1, len, pos);
1619}
1620
Thomas Graf677e90e2005-06-23 20:59:51 -07001621/**
1622 * skb_prepare_seq_read - Prepare a sequential read of skb data
1623 * @skb: the buffer to read
1624 * @from: lower offset of data to be read
1625 * @to: upper offset of data to be read
1626 * @st: state variable
1627 *
1628 * Initializes the specified state variable. Must be called before
1629 * invoking skb_seq_read() for the first time.
1630 */
1631void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
1632 unsigned int to, struct skb_seq_state *st)
1633{
1634 st->lower_offset = from;
1635 st->upper_offset = to;
1636 st->root_skb = st->cur_skb = skb;
1637 st->frag_idx = st->stepped_offset = 0;
1638 st->frag_data = NULL;
1639}
1640
1641/**
1642 * skb_seq_read - Sequentially read skb data
1643 * @consumed: number of bytes consumed by the caller so far
1644 * @data: destination pointer for data to be returned
1645 * @st: state variable
1646 *
1647 * Reads a block of skb data at &consumed relative to the
1648 * lower offset specified to skb_prepare_seq_read(). Assigns
1649 * the head of the data block to &data and returns the length
1650 * of the block or 0 if the end of the skb data or the upper
1651 * offset has been reached.
1652 *
1653 * The caller is not required to consume all of the data
1654 * returned, i.e. &consumed is typically set to the number
1655 * of bytes already consumed and the next call to
1656 * skb_seq_read() will return the remaining part of the block.
1657 *
1658 * Note: The size of each block of data returned can be arbitary,
1659 * this limitation is the cost for zerocopy seqeuental
1660 * reads of potentially non linear data.
1661 *
1662 * Note: Fragment lists within fragments are not implemented
1663 * at the moment, state->root_skb could be replaced with
1664 * a stack for this purpose.
1665 */
1666unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
1667 struct skb_seq_state *st)
1668{
1669 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
1670 skb_frag_t *frag;
1671
1672 if (unlikely(abs_offset >= st->upper_offset))
1673 return 0;
1674
1675next_skb:
1676 block_limit = skb_headlen(st->cur_skb);
1677
1678 if (abs_offset < block_limit) {
1679 *data = st->cur_skb->data + abs_offset;
1680 return block_limit - abs_offset;
1681 }
1682
1683 if (st->frag_idx == 0 && !st->frag_data)
1684 st->stepped_offset += skb_headlen(st->cur_skb);
1685
1686 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
1687 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
1688 block_limit = frag->size + st->stepped_offset;
1689
1690 if (abs_offset < block_limit) {
1691 if (!st->frag_data)
1692 st->frag_data = kmap_skb_frag(frag);
1693
1694 *data = (u8 *) st->frag_data + frag->page_offset +
1695 (abs_offset - st->stepped_offset);
1696
1697 return block_limit - abs_offset;
1698 }
1699
1700 if (st->frag_data) {
1701 kunmap_skb_frag(st->frag_data);
1702 st->frag_data = NULL;
1703 }
1704
1705 st->frag_idx++;
1706 st->stepped_offset += frag->size;
1707 }
1708
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07001709 if (st->frag_data) {
1710 kunmap_skb_frag(st->frag_data);
1711 st->frag_data = NULL;
1712 }
1713
Thomas Graf677e90e2005-06-23 20:59:51 -07001714 if (st->cur_skb->next) {
1715 st->cur_skb = st->cur_skb->next;
1716 st->frag_idx = 0;
1717 goto next_skb;
1718 } else if (st->root_skb == st->cur_skb &&
1719 skb_shinfo(st->root_skb)->frag_list) {
1720 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
1721 goto next_skb;
1722 }
1723
1724 return 0;
1725}
1726
1727/**
1728 * skb_abort_seq_read - Abort a sequential read of skb data
1729 * @st: state variable
1730 *
1731 * Must be called if skb_seq_read() was not called until it
1732 * returned 0.
1733 */
1734void skb_abort_seq_read(struct skb_seq_state *st)
1735{
1736 if (st->frag_data)
1737 kunmap_skb_frag(st->frag_data);
1738}
1739
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07001740#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
1741
1742static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
1743 struct ts_config *conf,
1744 struct ts_state *state)
1745{
1746 return skb_seq_read(offset, text, TS_SKB_CB(state));
1747}
1748
1749static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
1750{
1751 skb_abort_seq_read(TS_SKB_CB(state));
1752}
1753
1754/**
1755 * skb_find_text - Find a text pattern in skb data
1756 * @skb: the buffer to look in
1757 * @from: search offset
1758 * @to: search limit
1759 * @config: textsearch configuration
1760 * @state: uninitialized textsearch state variable
1761 *
1762 * Finds a pattern in the skb data according to the specified
1763 * textsearch configuration. Use textsearch_next() to retrieve
1764 * subsequent occurrences of the pattern. Returns the offset
1765 * to the first occurrence or UINT_MAX if no match was found.
1766 */
1767unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
1768 unsigned int to, struct ts_config *config,
1769 struct ts_state *state)
1770{
Phil Oesterf72b9482006-06-26 00:00:57 -07001771 unsigned int ret;
1772
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07001773 config->get_next_block = skb_ts_get_next_block;
1774 config->finish = skb_ts_finish;
1775
1776 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
1777
Phil Oesterf72b9482006-06-26 00:00:57 -07001778 ret = textsearch_find(config, state);
1779 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07001780}
1781
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001782/**
1783 * skb_append_datato_frags: - append the user data to a skb
1784 * @sk: sock structure
1785 * @skb: skb structure to be appened with user data.
1786 * @getfrag: call back function to be used for getting the user data
1787 * @from: pointer to user message iov
1788 * @length: length of the iov message
1789 *
1790 * Description: This procedure append the user data in the fragment part
1791 * of the skb if any page alloc fails user this procedure returns -ENOMEM
1792 */
1793int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08001794 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001795 int len, int odd, struct sk_buff *skb),
1796 void *from, int length)
1797{
1798 int frg_cnt = 0;
1799 skb_frag_t *frag = NULL;
1800 struct page *page = NULL;
1801 int copy, left;
1802 int offset = 0;
1803 int ret;
1804
1805 do {
1806 /* Return error if we don't have space for new frag */
1807 frg_cnt = skb_shinfo(skb)->nr_frags;
1808 if (frg_cnt >= MAX_SKB_FRAGS)
1809 return -EFAULT;
1810
1811 /* allocate a new page for next frag */
1812 page = alloc_pages(sk->sk_allocation, 0);
1813
1814 /* If alloc_page fails just return failure and caller will
1815 * free previous allocated pages by doing kfree_skb()
1816 */
1817 if (page == NULL)
1818 return -ENOMEM;
1819
1820 /* initialize the next frag */
1821 sk->sk_sndmsg_page = page;
1822 sk->sk_sndmsg_off = 0;
1823 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
1824 skb->truesize += PAGE_SIZE;
1825 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
1826
1827 /* get the new initialized frag */
1828 frg_cnt = skb_shinfo(skb)->nr_frags;
1829 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
1830
1831 /* copy the user data to page */
1832 left = PAGE_SIZE - frag->page_offset;
1833 copy = (length > left)? left : length;
1834
1835 ret = getfrag(from, (page_address(frag->page) +
1836 frag->page_offset + frag->size),
1837 offset, copy, 0, skb);
1838 if (ret < 0)
1839 return -EFAULT;
1840
1841 /* copy was successful so update the size parameters */
1842 sk->sk_sndmsg_off += copy;
1843 frag->size += copy;
1844 skb->len += copy;
1845 skb->data_len += copy;
1846 offset += copy;
1847 length -= copy;
1848
1849 } while (length > 0);
1850
1851 return 0;
1852}
1853
Herbert Xucbb042f2006-03-20 22:43:56 -08001854/**
1855 * skb_pull_rcsum - pull skb and update receive checksum
1856 * @skb: buffer to update
1857 * @start: start of data before pull
1858 * @len: length of data pulled
1859 *
1860 * This function performs an skb_pull on the packet and updates
Patrick McHardy84fa7932006-08-29 16:44:56 -07001861 * update the CHECKSUM_COMPLETE checksum. It should be used on
1862 * receive path processing instead of skb_pull unless you know
1863 * that the checksum difference is zero (e.g., a valid IP header)
1864 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08001865 */
1866unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
1867{
1868 BUG_ON(len > skb->len);
1869 skb->len -= len;
1870 BUG_ON(skb->len < skb->data_len);
1871 skb_postpull_rcsum(skb, skb->data, len);
1872 return skb->data += len;
1873}
1874
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08001875EXPORT_SYMBOL_GPL(skb_pull_rcsum);
1876
Herbert Xuf4c50d92006-06-22 03:02:40 -07001877/**
1878 * skb_segment - Perform protocol segmentation on skb.
1879 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07001880 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07001881 *
1882 * This function performs segmentation on the given skb. It returns
1883 * the segment at the given position. It returns NULL if there are
1884 * no more segments to generate, or when an error is encountered.
1885 */
Herbert Xu576a30e2006-06-27 13:22:38 -07001886struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07001887{
1888 struct sk_buff *segs = NULL;
1889 struct sk_buff *tail = NULL;
1890 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001891 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001892 unsigned int offset = doffset;
1893 unsigned int headroom;
1894 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07001895 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001896 int nfrags = skb_shinfo(skb)->nr_frags;
1897 int err = -ENOMEM;
1898 int i = 0;
1899 int pos;
1900
1901 __skb_push(skb, doffset);
1902 headroom = skb_headroom(skb);
1903 pos = skb_headlen(skb);
1904
1905 do {
1906 struct sk_buff *nskb;
1907 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08001908 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001909 int k;
1910 int size;
1911
1912 len = skb->len - offset;
1913 if (len > mss)
1914 len = mss;
1915
1916 hsize = skb_headlen(skb) - offset;
1917 if (hsize < 0)
1918 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08001919 if (hsize > len || !sg)
1920 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001921
Herbert Xuc8884ed2006-10-29 15:59:41 -08001922 nskb = alloc_skb(hsize + doffset + headroom, GFP_ATOMIC);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001923 if (unlikely(!nskb))
1924 goto err;
1925
1926 if (segs)
1927 tail->next = nskb;
1928 else
1929 segs = nskb;
1930 tail = nskb;
1931
1932 nskb->dev = skb->dev;
1933 nskb->priority = skb->priority;
1934 nskb->protocol = skb->protocol;
1935 nskb->dst = dst_clone(skb->dst);
1936 memcpy(nskb->cb, skb->cb, sizeof(skb->cb));
1937 nskb->pkt_type = skb->pkt_type;
1938 nskb->mac_len = skb->mac_len;
1939
1940 skb_reserve(nskb, headroom);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001941 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03001942 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001943 nskb->transport_header = (nskb->network_header +
1944 skb_network_header_len(skb));
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001945 skb_copy_from_linear_data(skb, skb_put(nskb, doffset),
1946 doffset);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001947 if (!sg) {
1948 nskb->csum = skb_copy_and_csum_bits(skb, offset,
1949 skb_put(nskb, len),
1950 len, 0);
1951 continue;
1952 }
1953
1954 frag = skb_shinfo(nskb)->frags;
1955 k = 0;
1956
Patrick McHardy84fa7932006-08-29 16:44:56 -07001957 nskb->ip_summed = CHECKSUM_PARTIAL;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001958 nskb->csum = skb->csum;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001959 skb_copy_from_linear_data_offset(skb, offset,
1960 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001961
1962 while (pos < offset + len) {
1963 BUG_ON(i >= nfrags);
1964
1965 *frag = skb_shinfo(skb)->frags[i];
1966 get_page(frag->page);
1967 size = frag->size;
1968
1969 if (pos < offset) {
1970 frag->page_offset += offset - pos;
1971 frag->size -= offset - pos;
1972 }
1973
1974 k++;
1975
1976 if (pos + size <= offset + len) {
1977 i++;
1978 pos += size;
1979 } else {
1980 frag->size -= pos + size - (offset + len);
1981 break;
1982 }
1983
1984 frag++;
1985 }
1986
1987 skb_shinfo(nskb)->nr_frags = k;
1988 nskb->data_len = len - hsize;
1989 nskb->len += nskb->data_len;
1990 nskb->truesize += nskb->data_len;
1991 } while ((offset += len) < skb->len);
1992
1993 return segs;
1994
1995err:
1996 while ((skb = segs)) {
1997 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08001998 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001999 }
2000 return ERR_PTR(err);
2001}
2002
2003EXPORT_SYMBOL_GPL(skb_segment);
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005void __init skb_init(void)
2006{
2007 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2008 sizeof(struct sk_buff),
2009 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002010 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 NULL, NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002012 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2013 (2*sizeof(struct sk_buff)) +
2014 sizeof(atomic_t),
2015 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002016 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
David S. Millerd179cd12005-08-17 14:57:30 -07002017 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
David Howells716ea3a2007-04-02 20:19:53 -07002020/**
2021 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2022 * @skb: Socket buffer containing the buffers to be mapped
2023 * @sg: The scatter-gather list to map into
2024 * @offset: The offset into the buffer's contents to start mapping
2025 * @len: Length of buffer space to be mapped
2026 *
2027 * Fill the specified scatter-gather list with mappings/pointers into a
2028 * region of the buffer space attached to a socket buffer.
2029 */
2030int
2031skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2032{
David S. Miller1a028e52007-04-27 15:21:23 -07002033 int start = skb_headlen(skb);
2034 int i, copy = start - offset;
David Howells716ea3a2007-04-02 20:19:53 -07002035 int elt = 0;
2036
2037 if (copy > 0) {
2038 if (copy > len)
2039 copy = len;
2040 sg[elt].page = virt_to_page(skb->data + offset);
2041 sg[elt].offset = (unsigned long)(skb->data + offset) % PAGE_SIZE;
2042 sg[elt].length = copy;
2043 elt++;
2044 if ((len -= copy) == 0)
2045 return elt;
2046 offset += copy;
2047 }
2048
2049 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002050 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002051
David S. Miller1a028e52007-04-27 15:21:23 -07002052 BUG_TRAP(start <= offset + len);
2053
2054 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002055 if ((copy = end - offset) > 0) {
2056 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2057
2058 if (copy > len)
2059 copy = len;
2060 sg[elt].page = frag->page;
David S. Miller1a028e52007-04-27 15:21:23 -07002061 sg[elt].offset = frag->page_offset+offset-start;
David Howells716ea3a2007-04-02 20:19:53 -07002062 sg[elt].length = copy;
2063 elt++;
2064 if (!(len -= copy))
2065 return elt;
2066 offset += copy;
2067 }
David S. Miller1a028e52007-04-27 15:21:23 -07002068 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002069 }
2070
2071 if (skb_shinfo(skb)->frag_list) {
2072 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2073
2074 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07002075 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002076
David S. Miller1a028e52007-04-27 15:21:23 -07002077 BUG_TRAP(start <= offset + len);
2078
2079 end = start + list->len;
David Howells716ea3a2007-04-02 20:19:53 -07002080 if ((copy = end - offset) > 0) {
2081 if (copy > len)
2082 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07002083 elt += skb_to_sgvec(list, sg+elt, offset - start, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002084 if ((len -= copy) == 0)
2085 return elt;
2086 offset += copy;
2087 }
David S. Miller1a028e52007-04-27 15:21:23 -07002088 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002089 }
2090 }
2091 BUG_ON(len);
2092 return elt;
2093}
2094
2095/**
2096 * skb_cow_data - Check that a socket buffer's data buffers are writable
2097 * @skb: The socket buffer to check.
2098 * @tailbits: Amount of trailing space to be added
2099 * @trailer: Returned pointer to the skb where the @tailbits space begins
2100 *
2101 * Make sure that the data buffers attached to a socket buffer are
2102 * writable. If they are not, private copies are made of the data buffers
2103 * and the socket buffer is set to use these instead.
2104 *
2105 * If @tailbits is given, make sure that there is space to write @tailbits
2106 * bytes of data beyond current end of socket buffer. @trailer will be
2107 * set to point to the skb in which this space begins.
2108 *
2109 * The number of scatterlist elements required to completely map the
2110 * COW'd and extended socket buffer will be returned.
2111 */
2112int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2113{
2114 int copyflag;
2115 int elt;
2116 struct sk_buff *skb1, **skb_p;
2117
2118 /* If skb is cloned or its head is paged, reallocate
2119 * head pulling out all the pages (pages are considered not writable
2120 * at the moment even if they are anonymous).
2121 */
2122 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2123 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2124 return -ENOMEM;
2125
2126 /* Easy case. Most of packets will go this way. */
2127 if (!skb_shinfo(skb)->frag_list) {
2128 /* A little of trouble, not enough of space for trailer.
2129 * This should not happen, when stack is tuned to generate
2130 * good frames. OK, on miss we reallocate and reserve even more
2131 * space, 128 bytes is fair. */
2132
2133 if (skb_tailroom(skb) < tailbits &&
2134 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2135 return -ENOMEM;
2136
2137 /* Voila! */
2138 *trailer = skb;
2139 return 1;
2140 }
2141
2142 /* Misery. We are in troubles, going to mincer fragments... */
2143
2144 elt = 1;
2145 skb_p = &skb_shinfo(skb)->frag_list;
2146 copyflag = 0;
2147
2148 while ((skb1 = *skb_p) != NULL) {
2149 int ntail = 0;
2150
2151 /* The fragment is partially pulled by someone,
2152 * this can happen on input. Copy it and everything
2153 * after it. */
2154
2155 if (skb_shared(skb1))
2156 copyflag = 1;
2157
2158 /* If the skb is the last, worry about trailer. */
2159
2160 if (skb1->next == NULL && tailbits) {
2161 if (skb_shinfo(skb1)->nr_frags ||
2162 skb_shinfo(skb1)->frag_list ||
2163 skb_tailroom(skb1) < tailbits)
2164 ntail = tailbits + 128;
2165 }
2166
2167 if (copyflag ||
2168 skb_cloned(skb1) ||
2169 ntail ||
2170 skb_shinfo(skb1)->nr_frags ||
2171 skb_shinfo(skb1)->frag_list) {
2172 struct sk_buff *skb2;
2173
2174 /* Fuck, we are miserable poor guys... */
2175 if (ntail == 0)
2176 skb2 = skb_copy(skb1, GFP_ATOMIC);
2177 else
2178 skb2 = skb_copy_expand(skb1,
2179 skb_headroom(skb1),
2180 ntail,
2181 GFP_ATOMIC);
2182 if (unlikely(skb2 == NULL))
2183 return -ENOMEM;
2184
2185 if (skb1->sk)
2186 skb_set_owner_w(skb2, skb1->sk);
2187
2188 /* Looking around. Are we still alive?
2189 * OK, link new skb, drop old one */
2190
2191 skb2->next = skb1->next;
2192 *skb_p = skb2;
2193 kfree_skb(skb1);
2194 skb1 = skb2;
2195 }
2196 elt++;
2197 *trailer = skb1;
2198 skb_p = &skb1->next;
2199 }
2200
2201 return elt;
2202}
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204EXPORT_SYMBOL(___pskb_trim);
2205EXPORT_SYMBOL(__kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -08002206EXPORT_SYMBOL(kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207EXPORT_SYMBOL(__pskb_pull_tail);
David S. Millerd179cd12005-08-17 14:57:30 -07002208EXPORT_SYMBOL(__alloc_skb);
Christoph Hellwig8af27452006-07-31 22:35:23 -07002209EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210EXPORT_SYMBOL(pskb_copy);
2211EXPORT_SYMBOL(pskb_expand_head);
2212EXPORT_SYMBOL(skb_checksum);
2213EXPORT_SYMBOL(skb_clone);
2214EXPORT_SYMBOL(skb_clone_fraglist);
2215EXPORT_SYMBOL(skb_copy);
2216EXPORT_SYMBOL(skb_copy_and_csum_bits);
2217EXPORT_SYMBOL(skb_copy_and_csum_dev);
2218EXPORT_SYMBOL(skb_copy_bits);
2219EXPORT_SYMBOL(skb_copy_expand);
2220EXPORT_SYMBOL(skb_over_panic);
2221EXPORT_SYMBOL(skb_pad);
2222EXPORT_SYMBOL(skb_realloc_headroom);
2223EXPORT_SYMBOL(skb_under_panic);
2224EXPORT_SYMBOL(skb_dequeue);
2225EXPORT_SYMBOL(skb_dequeue_tail);
2226EXPORT_SYMBOL(skb_insert);
2227EXPORT_SYMBOL(skb_queue_purge);
2228EXPORT_SYMBOL(skb_queue_head);
2229EXPORT_SYMBOL(skb_queue_tail);
2230EXPORT_SYMBOL(skb_unlink);
2231EXPORT_SYMBOL(skb_append);
2232EXPORT_SYMBOL(skb_split);
Thomas Graf677e90e2005-06-23 20:59:51 -07002233EXPORT_SYMBOL(skb_prepare_seq_read);
2234EXPORT_SYMBOL(skb_seq_read);
2235EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002236EXPORT_SYMBOL(skb_find_text);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002237EXPORT_SYMBOL(skb_append_datato_frags);
David Howells716ea3a2007-04-02 20:19:53 -07002238
2239EXPORT_SYMBOL_GPL(skb_to_sgvec);
2240EXPORT_SYMBOL_GPL(skb_cow_data);