blob: a9b0e1f77806a50ed0ae82759244f9b36cb39b85 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40#include <linux/types.h>
41#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020042#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mm.h>
44#include <linux/interrupt.h>
45#include <linux/in.h>
46#include <linux/inet.h>
47#include <linux/slab.h>
48#include <linux/netdevice.h>
49#ifdef CONFIG_NET_CLS_ACT
50#include <net/pkt_sched.h>
51#endif
52#include <linux/string.h>
53#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080054#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/cache.h>
56#include <linux/rtnetlink.h>
57#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070058#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000059#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#include <net/protocol.h>
62#include <net/dst.h>
63#include <net/sock.h>
64#include <net/checksum.h>
65#include <net/xfrm.h>
66
67#include <asm/uaccess.h>
68#include <asm/system.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040069#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Al Viroa1f8e7f72006-10-19 16:08:53 -040071#include "kmap_skb.h"
72
Christoph Lametere18b8902006-12-06 20:33:20 -080073static struct kmem_cache *skbuff_head_cache __read_mostly;
74static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Jens Axboe9c55e012007-11-06 23:30:13 -080076static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
77 struct pipe_buffer *buf)
78{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080079 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080080}
81
82static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
83 struct pipe_buffer *buf)
84{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080085 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080086}
87
88static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
89 struct pipe_buffer *buf)
90{
91 return 1;
92}
93
94
95/* Pipe buffer operations for a socket. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -080096static const struct pipe_buf_operations sock_pipe_buf_ops = {
Jens Axboe9c55e012007-11-06 23:30:13 -080097 .can_merge = 0,
98 .map = generic_pipe_buf_map,
99 .unmap = generic_pipe_buf_unmap,
100 .confirm = generic_pipe_buf_confirm,
101 .release = sock_pipe_buf_release,
102 .steal = sock_pipe_buf_steal,
103 .get = sock_pipe_buf_get,
104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * Keep out-of-line to prevent kernel bloat.
108 * __builtin_return_address is not used because it is not always
109 * reliable.
110 */
111
112/**
113 * skb_over_panic - private function
114 * @skb: buffer
115 * @sz: size
116 * @here: address
117 *
118 * Out of line support code for skb_put(). Not user callable.
119 */
Rami Rosenccb7c772010-04-20 22:39:53 -0700120static void skb_over_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Patrick McHardy26095452005-04-21 16:43:02 -0700122 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700123 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700124 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700125 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700126 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 BUG();
128}
129
130/**
131 * skb_under_panic - private function
132 * @skb: buffer
133 * @sz: size
134 * @here: address
135 *
136 * Out of line support code for skb_push(). Not user callable.
137 */
138
Rami Rosenccb7c772010-04-20 22:39:53 -0700139static void skb_under_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Patrick McHardy26095452005-04-21 16:43:02 -0700141 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700142 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700143 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700144 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700145 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 BUG();
147}
148
149/* Allocate a new skbuff. We do this ourselves so we can fill in a few
150 * 'private' fields and also do memory statistics to find all the
151 * [BEEP] leaks.
152 *
153 */
154
155/**
David S. Millerd179cd12005-08-17 14:57:30 -0700156 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * @size: size to allocate
158 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700159 * @fclone: allocate from fclone cache instead of head cache
160 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800161 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
163 * Allocate a new &sk_buff. The returned buffer has no headroom and a
164 * tail room of size bytes. The object has a reference count of one.
165 * The return is the buffer. On a failure the return is %NULL.
166 *
167 * Buffers may only be allocated from interrupts using a @gfp_mask of
168 * %GFP_ATOMIC.
169 */
Al Virodd0fc662005-10-07 07:46:04 +0100170struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800171 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Christoph Lametere18b8902006-12-06 20:33:20 -0800173 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800174 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 struct sk_buff *skb;
176 u8 *data;
177
Herbert Xu8798b3f2006-01-23 16:32:45 -0800178 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800181 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (!skb)
183 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700184 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800187 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
188 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!data)
190 goto nodata;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700191 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300193 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700194 * Only clear those fields we need to clear, not those that we will
195 * actually initialise below. Hence, don't put any more fields after
196 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300197 */
198 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 skb->truesize = size + sizeof(struct sk_buff);
200 atomic_set(&skb->users, 1);
201 skb->head = data;
202 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700203 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700204 skb->end = skb->tail + size;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200205 kmemcheck_annotate_bitfield(skb, flags1);
206 kmemcheck_annotate_bitfield(skb, flags2);
Stephen Hemminger19633e12009-06-17 05:23:27 +0000207#ifdef NET_SKBUFF_DATA_USES_OFFSET
208 skb->mac_header = ~0U;
209#endif
210
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800211 /* make sure we initialize shinfo sequentially */
212 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700213 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800214 atomic_set(&shinfo->dataref, 1);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800215
David S. Millerd179cd12005-08-17 14:57:30 -0700216 if (fclone) {
217 struct sk_buff *child = skb + 1;
218 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200220 kmemcheck_annotate_bitfield(child, flags1);
221 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700222 skb->fclone = SKB_FCLONE_ORIG;
223 atomic_set(fclone_ref, 1);
224
225 child->fclone = SKB_FCLONE_UNAVAILABLE;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227out:
228 return skb;
229nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800230 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 skb = NULL;
232 goto out;
233}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800234EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700237 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
238 * @dev: network device to receive on
239 * @length: length to allocate
240 * @gfp_mask: get_free_pages mask, passed to alloc_skb
241 *
242 * Allocate a new &sk_buff and assign it a usage count of one. The
243 * buffer has unspecified headroom built in. Users should allocate
244 * the headroom they think they need without accounting for the
245 * built in space. The built in space is used for optimisations.
246 *
247 * %NULL is returned if there is no free memory.
248 */
249struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
250 unsigned int length, gfp_t gfp_mask)
251{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700252 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700253 struct sk_buff *skb;
254
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900255 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700256 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700257 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700258 skb->dev = dev;
259 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700260 return skb;
261}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800262EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Peter Zijlstra654bed12008-10-07 14:22:33 -0700264struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
265{
266 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
267 struct page *page;
268
269 page = alloc_pages_node(node, gfp_mask, 0);
270 return page;
271}
272EXPORT_SYMBOL(__netdev_alloc_page);
273
274void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
275 int size)
276{
277 skb_fill_page_desc(skb, i, page, off, size);
278 skb->len += size;
279 skb->data_len += size;
280 skb->truesize += size;
281}
282EXPORT_SYMBOL(skb_add_rx_frag);
283
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700284/**
285 * dev_alloc_skb - allocate an skbuff for receiving
286 * @length: length to allocate
287 *
288 * Allocate a new &sk_buff and assign it a usage count of one. The
289 * buffer has unspecified headroom built in. Users should allocate
290 * the headroom they think they need without accounting for the
291 * built in space. The built in space is used for optimisations.
292 *
293 * %NULL is returned if there is no free memory. Although this function
294 * allocates memory it can be called from an interrupt.
295 */
296struct sk_buff *dev_alloc_skb(unsigned int length)
297{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700298 /*
299 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700300 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700301 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700302 return __dev_alloc_skb(length, GFP_ATOMIC);
303}
304EXPORT_SYMBOL(dev_alloc_skb);
305
Herbert Xu27b437c2006-07-13 19:26:39 -0700306static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Herbert Xu27b437c2006-07-13 19:26:39 -0700308 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Herbert Xu27b437c2006-07-13 19:26:39 -0700310 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 do {
313 struct sk_buff *this = list;
314 list = list->next;
315 kfree_skb(this);
316 } while (list);
317}
318
Herbert Xu27b437c2006-07-13 19:26:39 -0700319static inline void skb_drop_fraglist(struct sk_buff *skb)
320{
321 skb_drop_list(&skb_shinfo(skb)->frag_list);
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static void skb_clone_fraglist(struct sk_buff *skb)
325{
326 struct sk_buff *list;
327
David S. Millerfbb398a2009-06-09 00:18:59 -0700328 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 skb_get(list);
330}
331
Adrian Bunk5bba1712006-06-29 13:02:35 -0700332static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 if (!skb->cloned ||
335 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
336 &skb_shinfo(skb)->dataref)) {
337 if (skb_shinfo(skb)->nr_frags) {
338 int i;
339 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
340 put_page(skb_shinfo(skb)->frags[i].page);
341 }
342
David S. Millerfbb398a2009-06-09 00:18:59 -0700343 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 skb_drop_fraglist(skb);
345
346 kfree(skb->head);
347 }
348}
349
350/*
351 * Free an skbuff by memory without cleaning the state.
352 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800353static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
David S. Millerd179cd12005-08-17 14:57:30 -0700355 struct sk_buff *other;
356 atomic_t *fclone_ref;
357
David S. Millerd179cd12005-08-17 14:57:30 -0700358 switch (skb->fclone) {
359 case SKB_FCLONE_UNAVAILABLE:
360 kmem_cache_free(skbuff_head_cache, skb);
361 break;
362
363 case SKB_FCLONE_ORIG:
364 fclone_ref = (atomic_t *) (skb + 2);
365 if (atomic_dec_and_test(fclone_ref))
366 kmem_cache_free(skbuff_fclone_cache, skb);
367 break;
368
369 case SKB_FCLONE_CLONE:
370 fclone_ref = (atomic_t *) (skb + 1);
371 other = skb - 1;
372
373 /* The clone portion is available for
374 * fast-cloning again.
375 */
376 skb->fclone = SKB_FCLONE_UNAVAILABLE;
377
378 if (atomic_dec_and_test(fclone_ref))
379 kmem_cache_free(skbuff_fclone_cache, other);
380 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700384static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Eric Dumazetadf30902009-06-02 05:19:30 +0000386 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#ifdef CONFIG_XFRM
388 secpath_put(skb->sp);
389#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700390 if (skb->destructor) {
391 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 skb->destructor(skb);
393 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800394#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700395 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800396 nf_conntrack_put_reasm(skb->nfct_reasm);
397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#ifdef CONFIG_BRIDGE_NETFILTER
399 nf_bridge_put(skb->nf_bridge);
400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/* XXX: IS this still necessary? - JHS */
402#ifdef CONFIG_NET_SCHED
403 skb->tc_index = 0;
404#ifdef CONFIG_NET_CLS_ACT
405 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#endif
407#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700408}
409
410/* Free everything but the sk_buff shell. */
411static void skb_release_all(struct sk_buff *skb)
412{
413 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800414 skb_release_data(skb);
415}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Herbert Xu2d4baff2007-11-26 23:11:19 +0800417/**
418 * __kfree_skb - private function
419 * @skb: buffer
420 *
421 * Free an sk_buff. Release anything attached to the buffer.
422 * Clean the state. This is an internal helper function. Users should
423 * always call kfree_skb
424 */
425
426void __kfree_skb(struct sk_buff *skb)
427{
428 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 kfree_skbmem(skb);
430}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800431EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800434 * kfree_skb - free an sk_buff
435 * @skb: buffer to free
436 *
437 * Drop a reference to the buffer and free it if the usage count has
438 * hit zero.
439 */
440void kfree_skb(struct sk_buff *skb)
441{
442 if (unlikely(!skb))
443 return;
444 if (likely(atomic_read(&skb->users) == 1))
445 smp_rmb();
446 else if (likely(!atomic_dec_and_test(&skb->users)))
447 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000448 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800449 __kfree_skb(skb);
450}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800451EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800452
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700453/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000454 * consume_skb - free an skbuff
455 * @skb: buffer to free
456 *
457 * Drop a ref to the buffer and free it if the usage count has hit zero
458 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
459 * is being dropped after a failure and notes that
460 */
461void consume_skb(struct sk_buff *skb)
462{
463 if (unlikely(!skb))
464 return;
465 if (likely(atomic_read(&skb->users) == 1))
466 smp_rmb();
467 else if (likely(!atomic_dec_and_test(&skb->users)))
468 return;
469 __kfree_skb(skb);
470}
471EXPORT_SYMBOL(consume_skb);
472
473/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700474 * skb_recycle_check - check if skb can be reused for receive
475 * @skb: buffer
476 * @skb_size: minimum receive buffer size
477 *
478 * Checks that the skb passed in is not shared or cloned, and
479 * that it is linear and its head portion at least as large as
480 * skb_size so that it can be recycled as a receive buffer.
481 * If these conditions are met, this function does any necessary
482 * reference count dropping and cleans up the skbuff as if it
483 * just came from __alloc_skb().
484 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700485int skb_recycle_check(struct sk_buff *skb, int skb_size)
486{
487 struct skb_shared_info *shinfo;
488
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000489 if (irqs_disabled())
490 return 0;
491
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700492 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
493 return 0;
494
495 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
496 if (skb_end_pointer(skb) - skb->head < skb_size)
497 return 0;
498
499 if (skb_shared(skb) || skb_cloned(skb))
500 return 0;
501
502 skb_release_head_state(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700503
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700504 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700505 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700506 atomic_set(&shinfo->dataref, 1);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700507
508 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700509 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800510 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700511
512 return 1;
513}
514EXPORT_SYMBOL(skb_recycle_check);
515
Herbert Xudec18812007-10-14 00:37:30 -0700516static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
517{
518 new->tstamp = old->tstamp;
519 new->dev = old->dev;
520 new->transport_header = old->transport_header;
521 new->network_header = old->network_header;
522 new->mac_header = old->mac_header;
Eric Dumazetadf30902009-06-02 05:19:30 +0000523 skb_dst_set(new, dst_clone(skb_dst(old)));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000524 new->rxhash = old->rxhash;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700525#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700526 new->sp = secpath_get(old->sp);
527#endif
528 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000529 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700530 new->local_df = old->local_df;
531 new->pkt_type = old->pkt_type;
532 new->ip_summed = old->ip_summed;
533 skb_copy_queue_mapping(new, old);
534 new->priority = old->priority;
535#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
536 new->ipvs_property = old->ipvs_property;
537#endif
538 new->protocol = old->protocol;
539 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800540 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700541 __nf_copy(new, old);
542#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
543 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
544 new->nf_trace = old->nf_trace;
545#endif
546#ifdef CONFIG_NET_SCHED
547 new->tc_index = old->tc_index;
548#ifdef CONFIG_NET_CLS_ACT
549 new->tc_verd = old->tc_verd;
550#endif
551#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700552 new->vlan_tci = old->vlan_tci;
553
Herbert Xudec18812007-10-14 00:37:30 -0700554 skb_copy_secmark(new, old);
555}
556
Herbert Xu82c49a32009-05-22 22:11:37 +0000557/*
558 * You should not add any new code to this function. Add it to
559 * __copy_skb_header above instead.
560 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700561static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#define C(x) n->x = skb->x
564
565 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700567 __copy_skb_header(n, skb);
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 C(len);
570 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700571 C(mac_len);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000572 C(rxhash);
Patrick McHardy334a8132007-06-25 04:35:20 -0700573 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800574 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 C(tail);
578 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800579 C(head);
580 C(data);
581 C(truesize);
582 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 atomic_inc(&(skb_shinfo(skb)->dataref));
585 skb->cloned = 1;
586
587 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700588#undef C
589}
590
591/**
592 * skb_morph - morph one skb into another
593 * @dst: the skb to receive the contents
594 * @src: the skb to supply the contents
595 *
596 * This is identical to skb_clone except that the target skb is
597 * supplied by the user.
598 *
599 * The target skb is returned upon exit.
600 */
601struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
602{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800603 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700604 return __skb_clone(dst, src);
605}
606EXPORT_SYMBOL_GPL(skb_morph);
607
608/**
609 * skb_clone - duplicate an sk_buff
610 * @skb: buffer to clone
611 * @gfp_mask: allocation priority
612 *
613 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
614 * copies share the same packet data but not structure. The new
615 * buffer has a reference count of 1. If the allocation fails the
616 * function returns %NULL otherwise the new buffer is returned.
617 *
618 * If this function is called from an interrupt gfp_mask() must be
619 * %GFP_ATOMIC.
620 */
621
622struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
623{
624 struct sk_buff *n;
625
626 n = skb + 1;
627 if (skb->fclone == SKB_FCLONE_ORIG &&
628 n->fclone == SKB_FCLONE_UNAVAILABLE) {
629 atomic_t *fclone_ref = (atomic_t *) (n + 1);
630 n->fclone = SKB_FCLONE_CLONE;
631 atomic_inc(fclone_ref);
632 } else {
633 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
634 if (!n)
635 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200636
637 kmemcheck_annotate_bitfield(n, flags1);
638 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700639 n->fclone = SKB_FCLONE_UNAVAILABLE;
640 }
641
642 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800644EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
647{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700648#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
650 * Shift between the two data areas in bytes
651 */
652 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700653#endif
Herbert Xudec18812007-10-14 00:37:30 -0700654
655 __copy_skb_header(new, old);
656
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700657#ifndef NET_SKBUFF_DATA_USES_OFFSET
658 /* {transport,network,mac}_header are relative to skb->head */
659 new->transport_header += offset;
660 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000661 if (skb_mac_header_was_set(new))
662 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700663#endif
Herbert Xu79671682006-06-22 02:40:14 -0700664 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
665 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
666 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/**
670 * skb_copy - create private copy of an sk_buff
671 * @skb: buffer to copy
672 * @gfp_mask: allocation priority
673 *
674 * Make a copy of both an &sk_buff and its data. This is used when the
675 * caller wishes to modify the data and needs a private copy of the
676 * data to alter. Returns %NULL on failure or the pointer to the buffer
677 * on success. The returned buffer has a reference count of 1.
678 *
679 * As by-product this function converts non-linear &sk_buff to linear
680 * one, so that &sk_buff becomes completely private and caller is allowed
681 * to modify all the data of returned buffer. This means that this
682 * function is not recommended for use in circumstances when only
683 * header is going to be modified. Use pskb_copy() instead.
684 */
685
Al Virodd0fc662005-10-07 07:46:04 +0100686struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 int headerlen = skb->data - skb->head;
689 /*
690 * Allocate the copy buffer
691 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700692 struct sk_buff *n;
693#ifdef NET_SKBUFF_DATA_USES_OFFSET
694 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
695#else
696 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
697#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (!n)
699 return NULL;
700
701 /* Set the data pointer */
702 skb_reserve(n, headerlen);
703 /* Set the tail pointer and length */
704 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
707 BUG();
708
709 copy_skb_header(n, skb);
710 return n;
711}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800712EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714/**
715 * pskb_copy - create copy of an sk_buff with private head.
716 * @skb: buffer to copy
717 * @gfp_mask: allocation priority
718 *
719 * Make a copy of both an &sk_buff and part of its data, located
720 * in header. Fragmented data remain shared. This is used when
721 * the caller wishes to modify only header of &sk_buff and needs
722 * private copy of the header to alter. Returns %NULL on failure
723 * or the pointer to the buffer on success.
724 * The returned buffer has a reference count of 1.
725 */
726
Al Virodd0fc662005-10-07 07:46:04 +0100727struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 /*
730 * Allocate the copy buffer
731 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700732 struct sk_buff *n;
733#ifdef NET_SKBUFF_DATA_USES_OFFSET
734 n = alloc_skb(skb->end, gfp_mask);
735#else
736 n = alloc_skb(skb->end - skb->head, gfp_mask);
737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (!n)
739 goto out;
740
741 /* Set the data pointer */
742 skb_reserve(n, skb->data - skb->head);
743 /* Set the tail pointer and length */
744 skb_put(n, skb_headlen(skb));
745 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300746 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Herbert Xu25f484a2006-11-07 14:57:15 -0800748 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 n->data_len = skb->data_len;
750 n->len = skb->len;
751
752 if (skb_shinfo(skb)->nr_frags) {
753 int i;
754
755 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
756 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
757 get_page(skb_shinfo(n)->frags[i].page);
758 }
759 skb_shinfo(n)->nr_frags = i;
760 }
761
David S. Millerfbb398a2009-06-09 00:18:59 -0700762 if (skb_has_frags(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
764 skb_clone_fraglist(n);
765 }
766
767 copy_skb_header(n, skb);
768out:
769 return n;
770}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800771EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773/**
774 * pskb_expand_head - reallocate header of &sk_buff
775 * @skb: buffer to reallocate
776 * @nhead: room to add at head
777 * @ntail: room to add at tail
778 * @gfp_mask: allocation priority
779 *
780 * Expands (or creates identical copy, if &nhead and &ntail are zero)
781 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
782 * reference count of 1. Returns zero in the case of success or error,
783 * if expansion failed. In the last case, &sk_buff is not changed.
784 *
785 * All the pointers pointing into skb header may change and must be
786 * reloaded after call to this function.
787 */
788
Victor Fusco86a76ca2005-07-08 14:57:47 -0700789int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100790 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 int i;
793 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700794#ifdef NET_SKBUFF_DATA_USES_OFFSET
795 int size = nhead + skb->end + ntail;
796#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700798#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 long off;
800
Herbert Xu4edd87a2008-10-01 07:09:38 -0700801 BUG_ON(nhead < 0);
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (skb_shared(skb))
804 BUG();
805
806 size = SKB_DATA_ALIGN(size);
807
808 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
809 if (!data)
810 goto nodata;
811
812 /* Copy only real data... and, alas, header. This should be
813 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700814#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700815 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700816#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700817 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700818#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700819 memcpy(data + size, skb_end_pointer(skb),
820 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
823 get_page(skb_shinfo(skb)->frags[i].page);
824
David S. Millerfbb398a2009-06-09 00:18:59 -0700825 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 skb_clone_fraglist(skb);
827
828 skb_release_data(skb);
829
830 off = (data + nhead) - skb->head;
831
832 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700834#ifdef NET_SKBUFF_DATA_USES_OFFSET
835 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700836 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700837#else
838 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700839#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700840 /* {transport,network,mac}_header and tail are relative to skb->head */
841 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700842 skb->transport_header += off;
843 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000844 if (skb_mac_header_was_set(skb))
845 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700846 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700848 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 skb->nohdr = 0;
850 atomic_set(&skb_shinfo(skb)->dataref, 1);
851 return 0;
852
853nodata:
854 return -ENOMEM;
855}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800856EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858/* Make private copy of skb with writable head and some headroom */
859
860struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
861{
862 struct sk_buff *skb2;
863 int delta = headroom - skb_headroom(skb);
864
865 if (delta <= 0)
866 skb2 = pskb_copy(skb, GFP_ATOMIC);
867 else {
868 skb2 = skb_clone(skb, GFP_ATOMIC);
869 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
870 GFP_ATOMIC)) {
871 kfree_skb(skb2);
872 skb2 = NULL;
873 }
874 }
875 return skb2;
876}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800877EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879/**
880 * skb_copy_expand - copy and expand sk_buff
881 * @skb: buffer to copy
882 * @newheadroom: new free bytes at head
883 * @newtailroom: new free bytes at tail
884 * @gfp_mask: allocation priority
885 *
886 * Make a copy of both an &sk_buff and its data and while doing so
887 * allocate additional space.
888 *
889 * This is used when the caller wishes to modify the data and needs a
890 * private copy of the data to alter as well as more space for new fields.
891 * Returns %NULL on failure or the pointer to the buffer
892 * on success. The returned buffer has a reference count of 1.
893 *
894 * You must pass %GFP_ATOMIC as the allocation priority if this function
895 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
897struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700898 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100899 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 /*
902 * Allocate the copy buffer
903 */
904 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
905 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700906 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700908 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (!n)
911 return NULL;
912
913 skb_reserve(n, newheadroom);
914
915 /* Set the tail pointer and length */
916 skb_put(n, skb->len);
917
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700918 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 head_copy_off = 0;
920 if (newheadroom <= head_copy_len)
921 head_copy_len = newheadroom;
922 else
923 head_copy_off = newheadroom - head_copy_len;
924
925 /* Copy the linear header and data. */
926 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
927 skb->len + head_copy_len))
928 BUG();
929
930 copy_skb_header(n, skb);
931
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700932 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700933 n->csum_start += off;
934#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700935 n->transport_header += off;
936 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000937 if (skb_mac_header_was_set(skb))
938 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700939#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return n;
942}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800943EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945/**
946 * skb_pad - zero pad the tail of an skb
947 * @skb: buffer to pad
948 * @pad: space to pad
949 *
950 * Ensure that a buffer is followed by a padding area that is zero
951 * filled. Used by network drivers which may DMA or transfer data
952 * beyond the buffer end onto the wire.
953 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700954 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900956
Herbert Xu5b057c62006-06-23 02:06:41 -0700957int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Herbert Xu5b057c62006-06-23 02:06:41 -0700959 int err;
960 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700963 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700965 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700967
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700968 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700969 if (likely(skb_cloned(skb) || ntail > 0)) {
970 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
971 if (unlikely(err))
972 goto free_skb;
973 }
974
975 /* FIXME: The use of this function with non-linear skb's really needs
976 * to be audited.
977 */
978 err = skb_linearize(skb);
979 if (unlikely(err))
980 goto free_skb;
981
982 memset(skb->data + skb->len, 0, pad);
983 return 0;
984
985free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700987 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900988}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800989EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900990
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700991/**
992 * skb_put - add data to a buffer
993 * @skb: buffer to use
994 * @len: amount of data to add
995 *
996 * This function extends the used data area of the buffer. If this would
997 * exceed the total buffer size the kernel will panic. A pointer to the
998 * first byte of the extra data is returned.
999 */
1000unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1001{
1002 unsigned char *tmp = skb_tail_pointer(skb);
1003 SKB_LINEAR_ASSERT(skb);
1004 skb->tail += len;
1005 skb->len += len;
1006 if (unlikely(skb->tail > skb->end))
1007 skb_over_panic(skb, len, __builtin_return_address(0));
1008 return tmp;
1009}
1010EXPORT_SYMBOL(skb_put);
1011
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001012/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001013 * skb_push - add data to the start of a buffer
1014 * @skb: buffer to use
1015 * @len: amount of data to add
1016 *
1017 * This function extends the used data area of the buffer at the buffer
1018 * start. If this would exceed the total buffer headroom the kernel will
1019 * panic. A pointer to the first byte of the extra data is returned.
1020 */
1021unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1022{
1023 skb->data -= len;
1024 skb->len += len;
1025 if (unlikely(skb->data<skb->head))
1026 skb_under_panic(skb, len, __builtin_return_address(0));
1027 return skb->data;
1028}
1029EXPORT_SYMBOL(skb_push);
1030
1031/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001032 * skb_pull - remove data from the start of a buffer
1033 * @skb: buffer to use
1034 * @len: amount of data to remove
1035 *
1036 * This function removes data from the start of a buffer, returning
1037 * the memory to the headroom. A pointer to the next data in the buffer
1038 * is returned. Once the data has been pulled future pushes will overwrite
1039 * the old data.
1040 */
1041unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1042{
David S. Miller47d29642010-05-02 02:21:44 -07001043 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001044}
1045EXPORT_SYMBOL(skb_pull);
1046
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001047/**
1048 * skb_trim - remove end from a buffer
1049 * @skb: buffer to alter
1050 * @len: new length
1051 *
1052 * Cut the length of a buffer down by removing data from the tail. If
1053 * the buffer is already under the length specified it is not modified.
1054 * The skb must be linear.
1055 */
1056void skb_trim(struct sk_buff *skb, unsigned int len)
1057{
1058 if (skb->len > len)
1059 __skb_trim(skb, len);
1060}
1061EXPORT_SYMBOL(skb_trim);
1062
Herbert Xu3cc0e872006-06-09 16:13:38 -07001063/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 */
1065
Herbert Xu3cc0e872006-06-09 16:13:38 -07001066int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Herbert Xu27b437c2006-07-13 19:26:39 -07001068 struct sk_buff **fragp;
1069 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 int offset = skb_headlen(skb);
1071 int nfrags = skb_shinfo(skb)->nr_frags;
1072 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001073 int err;
1074
1075 if (skb_cloned(skb) &&
1076 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1077 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001079 i = 0;
1080 if (offset >= len)
1081 goto drop_pages;
1082
1083 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001085
1086 if (end < len) {
1087 offset = end;
1088 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001090
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001091 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001092
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001093drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001094 skb_shinfo(skb)->nr_frags = i;
1095
1096 for (; i < nfrags; i++)
1097 put_page(skb_shinfo(skb)->frags[i].page);
1098
David S. Millerfbb398a2009-06-09 00:18:59 -07001099 if (skb_has_frags(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001100 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001101 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103
Herbert Xu27b437c2006-07-13 19:26:39 -07001104 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1105 fragp = &frag->next) {
1106 int end = offset + frag->len;
1107
1108 if (skb_shared(frag)) {
1109 struct sk_buff *nfrag;
1110
1111 nfrag = skb_clone(frag, GFP_ATOMIC);
1112 if (unlikely(!nfrag))
1113 return -ENOMEM;
1114
1115 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001116 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001117 frag = nfrag;
1118 *fragp = frag;
1119 }
1120
1121 if (end < len) {
1122 offset = end;
1123 continue;
1124 }
1125
1126 if (end > len &&
1127 unlikely((err = pskb_trim(frag, len - offset))))
1128 return err;
1129
1130 if (frag->next)
1131 skb_drop_list(&frag->next);
1132 break;
1133 }
1134
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001135done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001136 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 skb->data_len -= skb->len - len;
1138 skb->len = len;
1139 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001140 skb->len = len;
1141 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001142 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144
1145 return 0;
1146}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001147EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149/**
1150 * __pskb_pull_tail - advance tail of skb header
1151 * @skb: buffer to reallocate
1152 * @delta: number of bytes to advance tail
1153 *
1154 * The function makes a sense only on a fragmented &sk_buff,
1155 * it expands header moving its tail forward and copying necessary
1156 * data from fragmented part.
1157 *
1158 * &sk_buff MUST have reference count of 1.
1159 *
1160 * Returns %NULL (and &sk_buff does not change) if pull failed
1161 * or value of new tail of skb in the case of success.
1162 *
1163 * All the pointers pointing into skb header may change and must be
1164 * reloaded after call to this function.
1165 */
1166
1167/* Moves tail of skb head forward, copying data from fragmented part,
1168 * when it is necessary.
1169 * 1. It may fail due to malloc failure.
1170 * 2. It may change skb pointers.
1171 *
1172 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1173 */
1174unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1175{
1176 /* If skb has not enough free space at tail, get new one
1177 * plus 128 bytes for future expansions. If we have enough
1178 * room at tail, reallocate without expansion only if skb is cloned.
1179 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001180 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 if (eat > 0 || skb_cloned(skb)) {
1183 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1184 GFP_ATOMIC))
1185 return NULL;
1186 }
1187
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001188 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 BUG();
1190
1191 /* Optimization: no fragments, no reasons to preestimate
1192 * size of pulled pages. Superb.
1193 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001194 if (!skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 goto pull_pages;
1196
1197 /* Estimate size of pulled pages. */
1198 eat = delta;
1199 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1200 if (skb_shinfo(skb)->frags[i].size >= eat)
1201 goto pull_pages;
1202 eat -= skb_shinfo(skb)->frags[i].size;
1203 }
1204
1205 /* If we need update frag list, we are in troubles.
1206 * Certainly, it possible to add an offset to skb data,
1207 * but taking into account that pulling is expected to
1208 * be very rare operation, it is worth to fight against
1209 * further bloating skb head and crucify ourselves here instead.
1210 * Pure masohism, indeed. 8)8)
1211 */
1212 if (eat) {
1213 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1214 struct sk_buff *clone = NULL;
1215 struct sk_buff *insp = NULL;
1216
1217 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001218 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 if (list->len <= eat) {
1221 /* Eaten as whole. */
1222 eat -= list->len;
1223 list = list->next;
1224 insp = list;
1225 } else {
1226 /* Eaten partially. */
1227
1228 if (skb_shared(list)) {
1229 /* Sucks! We need to fork list. :-( */
1230 clone = skb_clone(list, GFP_ATOMIC);
1231 if (!clone)
1232 return NULL;
1233 insp = list->next;
1234 list = clone;
1235 } else {
1236 /* This may be pulled without
1237 * problems. */
1238 insp = list;
1239 }
1240 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001241 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return NULL;
1243 }
1244 break;
1245 }
1246 } while (eat);
1247
1248 /* Free pulled out fragments. */
1249 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1250 skb_shinfo(skb)->frag_list = list->next;
1251 kfree_skb(list);
1252 }
1253 /* And insert new clone at head. */
1254 if (clone) {
1255 clone->next = list;
1256 skb_shinfo(skb)->frag_list = clone;
1257 }
1258 }
1259 /* Success! Now we may commit changes to skb data. */
1260
1261pull_pages:
1262 eat = delta;
1263 k = 0;
1264 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1265 if (skb_shinfo(skb)->frags[i].size <= eat) {
1266 put_page(skb_shinfo(skb)->frags[i].page);
1267 eat -= skb_shinfo(skb)->frags[i].size;
1268 } else {
1269 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1270 if (eat) {
1271 skb_shinfo(skb)->frags[k].page_offset += eat;
1272 skb_shinfo(skb)->frags[k].size -= eat;
1273 eat = 0;
1274 }
1275 k++;
1276 }
1277 }
1278 skb_shinfo(skb)->nr_frags = k;
1279
1280 skb->tail += delta;
1281 skb->data_len -= delta;
1282
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001283 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001285EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287/* Copy some data bits from skb to kernel buffer. */
1288
1289int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1290{
David S. Miller1a028e52007-04-27 15:21:23 -07001291 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001292 struct sk_buff *frag_iter;
1293 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 if (offset > (int)skb->len - len)
1296 goto fault;
1297
1298 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001299 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (copy > len)
1301 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001302 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if ((len -= copy) == 0)
1304 return 0;
1305 offset += copy;
1306 to += copy;
1307 }
1308
1309 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001310 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001312 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001313
1314 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if ((copy = end - offset) > 0) {
1316 u8 *vaddr;
1317
1318 if (copy > len)
1319 copy = len;
1320
1321 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1322 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001323 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1324 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 kunmap_skb_frag(vaddr);
1326
1327 if ((len -= copy) == 0)
1328 return 0;
1329 offset += copy;
1330 to += copy;
1331 }
David S. Miller1a028e52007-04-27 15:21:23 -07001332 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
1334
David S. Millerfbb398a2009-06-09 00:18:59 -07001335 skb_walk_frags(skb, frag_iter) {
1336 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
David S. Millerfbb398a2009-06-09 00:18:59 -07001338 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
David S. Millerfbb398a2009-06-09 00:18:59 -07001340 end = start + frag_iter->len;
1341 if ((copy = end - offset) > 0) {
1342 if (copy > len)
1343 copy = len;
1344 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1345 goto fault;
1346 if ((len -= copy) == 0)
1347 return 0;
1348 offset += copy;
1349 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001351 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
1353 if (!len)
1354 return 0;
1355
1356fault:
1357 return -EFAULT;
1358}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001359EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Jens Axboe9c55e012007-11-06 23:30:13 -08001361/*
1362 * Callback from splice_to_pipe(), if we need to release some pages
1363 * at the end of the spd in case we error'ed out in filling the pipe.
1364 */
1365static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1366{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001367 put_page(spd->pages[i]);
1368}
Jens Axboe9c55e012007-11-06 23:30:13 -08001369
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001370static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1371 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001372 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001373{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001374 struct page *p = sk->sk_sndmsg_page;
1375 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001376
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001377 if (!p) {
1378new_page:
1379 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1380 if (!p)
1381 return NULL;
1382
1383 off = sk->sk_sndmsg_off = 0;
1384 /* hold one ref to this page until it's full */
1385 } else {
1386 unsigned int mlen;
1387
1388 off = sk->sk_sndmsg_off;
1389 mlen = PAGE_SIZE - off;
1390 if (mlen < 64 && mlen < *len) {
1391 put_page(p);
1392 goto new_page;
1393 }
1394
1395 *len = min_t(unsigned int, *len, mlen);
1396 }
1397
1398 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1399 sk->sk_sndmsg_off += *len;
1400 *offset = off;
1401 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001402
1403 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001404}
1405
1406/*
1407 * Fill page/offset/length into spd, if it can hold more pages.
1408 */
1409static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001410 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001411 struct sk_buff *skb, int linear,
1412 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001413{
1414 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1415 return 1;
1416
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001417 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001418 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001419 if (!page)
1420 return 1;
1421 } else
1422 get_page(page);
1423
Jens Axboe9c55e012007-11-06 23:30:13 -08001424 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001425 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001426 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001427 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001428
Jens Axboe9c55e012007-11-06 23:30:13 -08001429 return 0;
1430}
1431
Octavian Purdila2870c432008-07-15 00:49:11 -07001432static inline void __segment_seek(struct page **page, unsigned int *poff,
1433 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001434{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001435 unsigned long n;
1436
Octavian Purdila2870c432008-07-15 00:49:11 -07001437 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001438 n = *poff / PAGE_SIZE;
1439 if (n)
1440 *page = nth_page(*page, n);
1441
Octavian Purdila2870c432008-07-15 00:49:11 -07001442 *poff = *poff % PAGE_SIZE;
1443 *plen -= off;
1444}
Jens Axboe9c55e012007-11-06 23:30:13 -08001445
Octavian Purdila2870c432008-07-15 00:49:11 -07001446static inline int __splice_segment(struct page *page, unsigned int poff,
1447 unsigned int plen, unsigned int *off,
1448 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001449 struct splice_pipe_desc *spd, int linear,
1450 struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001451{
1452 if (!*len)
1453 return 1;
1454
1455 /* skip this segment if already processed */
1456 if (*off >= plen) {
1457 *off -= plen;
1458 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001459 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001460
Octavian Purdila2870c432008-07-15 00:49:11 -07001461 /* ignore any bits we already processed */
1462 if (*off) {
1463 __segment_seek(&page, &poff, &plen, *off);
1464 *off = 0;
1465 }
1466
1467 do {
1468 unsigned int flen = min(*len, plen);
1469
1470 /* the linear region may spread across several pages */
1471 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1472
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001473 if (spd_fill_page(spd, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001474 return 1;
1475
1476 __segment_seek(&page, &poff, &plen, flen);
1477 *len -= flen;
1478
1479 } while (*len && plen);
1480
1481 return 0;
1482}
1483
1484/*
1485 * Map linear and fragment data from the skb to spd. It reports failure if the
1486 * pipe is full or if we already spliced the requested length.
1487 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001488static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001489 unsigned int *len, struct splice_pipe_desc *spd,
1490 struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001491{
1492 int seg;
1493
Jens Axboe9c55e012007-11-06 23:30:13 -08001494 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001495 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001496 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001497 if (__splice_segment(virt_to_page(skb->data),
1498 (unsigned long) skb->data & (PAGE_SIZE - 1),
1499 skb_headlen(skb),
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001500 offset, len, skb, spd, 1, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001501 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001502
1503 /*
1504 * then map the fragments
1505 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001506 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1507 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1508
Octavian Purdila2870c432008-07-15 00:49:11 -07001509 if (__splice_segment(f->page, f->page_offset, f->size,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001510 offset, len, skb, spd, 0, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001511 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001512 }
1513
Octavian Purdila2870c432008-07-15 00:49:11 -07001514 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001515}
1516
1517/*
1518 * Map data from the skb to a pipe. Should handle both the linear part,
1519 * the fragments, and the frag list. It does NOT handle frag lists within
1520 * the frag list, if such a thing exists. We'd probably need to recurse to
1521 * handle that cleanly.
1522 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001523int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001524 struct pipe_inode_info *pipe, unsigned int tlen,
1525 unsigned int flags)
1526{
1527 struct partial_page partial[PIPE_BUFFERS];
1528 struct page *pages[PIPE_BUFFERS];
1529 struct splice_pipe_desc spd = {
1530 .pages = pages,
1531 .partial = partial,
1532 .flags = flags,
1533 .ops = &sock_pipe_buf_ops,
1534 .spd_release = sock_spd_release,
1535 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001536 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001537 struct sock *sk = skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001538
1539 /*
1540 * __skb_splice_bits() only fails if the output has no room left,
1541 * so no point in going over the frag_list for the error case.
1542 */
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001543 if (__skb_splice_bits(skb, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001544 goto done;
1545 else if (!tlen)
1546 goto done;
1547
1548 /*
1549 * now see if we have a frag_list to map
1550 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001551 skb_walk_frags(skb, frag_iter) {
1552 if (!tlen)
1553 break;
1554 if (__skb_splice_bits(frag_iter, &offset, &tlen, &spd, sk))
1555 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001556 }
1557
1558done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001559 if (spd.nr_pages) {
1560 int ret;
1561
1562 /*
1563 * Drop the socket lock, otherwise we have reverse
1564 * locking dependencies between sk_lock and i_mutex
1565 * here as compared to sendfile(). We enter here
1566 * with the socket lock held, and splice_to_pipe() will
1567 * grab the pipe inode lock. For sendfile() emulation,
1568 * we call into ->sendpage() with the i_mutex lock held
1569 * and networking will grab the socket lock.
1570 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001571 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001572 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001573 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001574 return ret;
1575 }
1576
1577 return 0;
1578}
1579
Herbert Xu357b40a2005-04-19 22:30:14 -07001580/**
1581 * skb_store_bits - store bits from kernel buffer to skb
1582 * @skb: destination buffer
1583 * @offset: offset in destination
1584 * @from: source buffer
1585 * @len: number of bytes to copy
1586 *
1587 * Copy the specified number of bytes from the source buffer to the
1588 * destination skb. This function handles all the messy bits of
1589 * traversing fragment lists and such.
1590 */
1591
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001592int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001593{
David S. Miller1a028e52007-04-27 15:21:23 -07001594 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001595 struct sk_buff *frag_iter;
1596 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001597
1598 if (offset > (int)skb->len - len)
1599 goto fault;
1600
David S. Miller1a028e52007-04-27 15:21:23 -07001601 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001602 if (copy > len)
1603 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001604 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001605 if ((len -= copy) == 0)
1606 return 0;
1607 offset += copy;
1608 from += copy;
1609 }
1610
1611 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1612 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001613 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001614
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001615 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001616
1617 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001618 if ((copy = end - offset) > 0) {
1619 u8 *vaddr;
1620
1621 if (copy > len)
1622 copy = len;
1623
1624 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001625 memcpy(vaddr + frag->page_offset + offset - start,
1626 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001627 kunmap_skb_frag(vaddr);
1628
1629 if ((len -= copy) == 0)
1630 return 0;
1631 offset += copy;
1632 from += copy;
1633 }
David S. Miller1a028e52007-04-27 15:21:23 -07001634 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001635 }
1636
David S. Millerfbb398a2009-06-09 00:18:59 -07001637 skb_walk_frags(skb, frag_iter) {
1638 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001639
David S. Millerfbb398a2009-06-09 00:18:59 -07001640 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001641
David S. Millerfbb398a2009-06-09 00:18:59 -07001642 end = start + frag_iter->len;
1643 if ((copy = end - offset) > 0) {
1644 if (copy > len)
1645 copy = len;
1646 if (skb_store_bits(frag_iter, offset - start,
1647 from, copy))
1648 goto fault;
1649 if ((len -= copy) == 0)
1650 return 0;
1651 offset += copy;
1652 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001653 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001654 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001655 }
1656 if (!len)
1657 return 0;
1658
1659fault:
1660 return -EFAULT;
1661}
Herbert Xu357b40a2005-04-19 22:30:14 -07001662EXPORT_SYMBOL(skb_store_bits);
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664/* Checksum skb data. */
1665
Al Viro2bbbc862006-11-14 21:37:14 -08001666__wsum skb_checksum(const struct sk_buff *skb, int offset,
1667 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
David S. Miller1a028e52007-04-27 15:21:23 -07001669 int start = skb_headlen(skb);
1670 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001671 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 int pos = 0;
1673
1674 /* Checksum header. */
1675 if (copy > 0) {
1676 if (copy > len)
1677 copy = len;
1678 csum = csum_partial(skb->data + offset, copy, csum);
1679 if ((len -= copy) == 0)
1680 return csum;
1681 offset += copy;
1682 pos = copy;
1683 }
1684
1685 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001686 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001688 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001689
1690 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001692 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 u8 *vaddr;
1694 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1695
1696 if (copy > len)
1697 copy = len;
1698 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001699 csum2 = csum_partial(vaddr + frag->page_offset +
1700 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 kunmap_skb_frag(vaddr);
1702 csum = csum_block_add(csum, csum2, pos);
1703 if (!(len -= copy))
1704 return csum;
1705 offset += copy;
1706 pos += copy;
1707 }
David S. Miller1a028e52007-04-27 15:21:23 -07001708 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710
David S. Millerfbb398a2009-06-09 00:18:59 -07001711 skb_walk_frags(skb, frag_iter) {
1712 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
David S. Millerfbb398a2009-06-09 00:18:59 -07001714 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
David S. Millerfbb398a2009-06-09 00:18:59 -07001716 end = start + frag_iter->len;
1717 if ((copy = end - offset) > 0) {
1718 __wsum csum2;
1719 if (copy > len)
1720 copy = len;
1721 csum2 = skb_checksum(frag_iter, offset - start,
1722 copy, 0);
1723 csum = csum_block_add(csum, csum2, pos);
1724 if ((len -= copy) == 0)
1725 return csum;
1726 offset += copy;
1727 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001729 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001731 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 return csum;
1734}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001735EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737/* Both of above in one bottle. */
1738
Al Viro81d77662006-11-14 21:37:33 -08001739__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1740 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
David S. Miller1a028e52007-04-27 15:21:23 -07001742 int start = skb_headlen(skb);
1743 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001744 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 int pos = 0;
1746
1747 /* Copy header. */
1748 if (copy > 0) {
1749 if (copy > len)
1750 copy = len;
1751 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1752 copy, csum);
1753 if ((len -= copy) == 0)
1754 return csum;
1755 offset += copy;
1756 to += copy;
1757 pos = copy;
1758 }
1759
1760 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001761 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001763 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001764
1765 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001767 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 u8 *vaddr;
1769 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1770
1771 if (copy > len)
1772 copy = len;
1773 vaddr = kmap_skb_frag(frag);
1774 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001775 frag->page_offset +
1776 offset - start, to,
1777 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 kunmap_skb_frag(vaddr);
1779 csum = csum_block_add(csum, csum2, pos);
1780 if (!(len -= copy))
1781 return csum;
1782 offset += copy;
1783 to += copy;
1784 pos += copy;
1785 }
David S. Miller1a028e52007-04-27 15:21:23 -07001786 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
1788
David S. Millerfbb398a2009-06-09 00:18:59 -07001789 skb_walk_frags(skb, frag_iter) {
1790 __wsum csum2;
1791 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
David S. Millerfbb398a2009-06-09 00:18:59 -07001793 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
David S. Millerfbb398a2009-06-09 00:18:59 -07001795 end = start + frag_iter->len;
1796 if ((copy = end - offset) > 0) {
1797 if (copy > len)
1798 copy = len;
1799 csum2 = skb_copy_and_csum_bits(frag_iter,
1800 offset - start,
1801 to, copy, 0);
1802 csum = csum_block_add(csum, csum2, pos);
1803 if ((len -= copy) == 0)
1804 return csum;
1805 offset += copy;
1806 to += copy;
1807 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001809 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001811 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return csum;
1813}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001814EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1817{
Al Virod3bc23e2006-11-14 21:24:49 -08001818 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 long csstart;
1820
Patrick McHardy84fa7932006-08-29 16:44:56 -07001821 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001822 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 else
1824 csstart = skb_headlen(skb);
1825
Kris Katterjohn09a62662006-01-08 22:24:28 -08001826 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001828 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 csum = 0;
1831 if (csstart != skb->len)
1832 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1833 skb->len - csstart, 0);
1834
Patrick McHardy84fa7932006-08-29 16:44:56 -07001835 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001836 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Al Virod3bc23e2006-11-14 21:24:49 -08001838 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
1840}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001841EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843/**
1844 * skb_dequeue - remove from the head of the queue
1845 * @list: list to dequeue from
1846 *
1847 * Remove the head of the list. The list lock is taken so the function
1848 * may be used safely with other locking list functions. The head item is
1849 * returned or %NULL if the list is empty.
1850 */
1851
1852struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1853{
1854 unsigned long flags;
1855 struct sk_buff *result;
1856
1857 spin_lock_irqsave(&list->lock, flags);
1858 result = __skb_dequeue(list);
1859 spin_unlock_irqrestore(&list->lock, flags);
1860 return result;
1861}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001862EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864/**
1865 * skb_dequeue_tail - remove from the tail of the queue
1866 * @list: list to dequeue from
1867 *
1868 * Remove the tail of the list. The list lock is taken so the function
1869 * may be used safely with other locking list functions. The tail item is
1870 * returned or %NULL if the list is empty.
1871 */
1872struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1873{
1874 unsigned long flags;
1875 struct sk_buff *result;
1876
1877 spin_lock_irqsave(&list->lock, flags);
1878 result = __skb_dequeue_tail(list);
1879 spin_unlock_irqrestore(&list->lock, flags);
1880 return result;
1881}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001882EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884/**
1885 * skb_queue_purge - empty a list
1886 * @list: list to empty
1887 *
1888 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1889 * the list and one reference dropped. This function takes the list
1890 * lock and is atomic with respect to other list locking functions.
1891 */
1892void skb_queue_purge(struct sk_buff_head *list)
1893{
1894 struct sk_buff *skb;
1895 while ((skb = skb_dequeue(list)) != NULL)
1896 kfree_skb(skb);
1897}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001898EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900/**
1901 * skb_queue_head - queue a buffer at the list head
1902 * @list: list to use
1903 * @newsk: buffer to queue
1904 *
1905 * Queue a buffer at the start of the list. This function takes the
1906 * list lock and can be used safely with other locking &sk_buff functions
1907 * safely.
1908 *
1909 * A buffer cannot be placed on two lists at the same time.
1910 */
1911void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1912{
1913 unsigned long flags;
1914
1915 spin_lock_irqsave(&list->lock, flags);
1916 __skb_queue_head(list, newsk);
1917 spin_unlock_irqrestore(&list->lock, flags);
1918}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001919EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921/**
1922 * skb_queue_tail - queue a buffer at the list tail
1923 * @list: list to use
1924 * @newsk: buffer to queue
1925 *
1926 * Queue a buffer at the tail of the list. This function takes the
1927 * list lock and can be used safely with other locking &sk_buff functions
1928 * safely.
1929 *
1930 * A buffer cannot be placed on two lists at the same time.
1931 */
1932void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1933{
1934 unsigned long flags;
1935
1936 spin_lock_irqsave(&list->lock, flags);
1937 __skb_queue_tail(list, newsk);
1938 spin_unlock_irqrestore(&list->lock, flags);
1939}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001940EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942/**
1943 * skb_unlink - remove a buffer from a list
1944 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001945 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 *
David S. Miller8728b832005-08-09 19:25:21 -07001947 * Remove a packet from a list. The list locks are taken and this
1948 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 *
David S. Miller8728b832005-08-09 19:25:21 -07001950 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 */
David S. Miller8728b832005-08-09 19:25:21 -07001952void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
David S. Miller8728b832005-08-09 19:25:21 -07001954 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
David S. Miller8728b832005-08-09 19:25:21 -07001956 spin_lock_irqsave(&list->lock, flags);
1957 __skb_unlink(skb, list);
1958 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001960EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962/**
1963 * skb_append - append a buffer
1964 * @old: buffer to insert after
1965 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001966 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 *
1968 * Place a packet after a given packet in a list. The list locks are taken
1969 * and this function is atomic with respect to other list locked calls.
1970 * A buffer cannot be placed on two lists at the same time.
1971 */
David S. Miller8728b832005-08-09 19:25:21 -07001972void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 unsigned long flags;
1975
David S. Miller8728b832005-08-09 19:25:21 -07001976 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001977 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001978 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001980EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982/**
1983 * skb_insert - insert a buffer
1984 * @old: buffer to insert before
1985 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001986 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 *
David S. Miller8728b832005-08-09 19:25:21 -07001988 * Place a packet before a given packet in a list. The list locks are
1989 * taken and this function is atomic with respect to other list locked
1990 * calls.
1991 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 * A buffer cannot be placed on two lists at the same time.
1993 */
David S. Miller8728b832005-08-09 19:25:21 -07001994void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 unsigned long flags;
1997
David S. Miller8728b832005-08-09 19:25:21 -07001998 spin_lock_irqsave(&list->lock, flags);
1999 __skb_insert(newsk, old->prev, old, list);
2000 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002002EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004static inline void skb_split_inside_header(struct sk_buff *skb,
2005 struct sk_buff* skb1,
2006 const u32 len, const int pos)
2007{
2008 int i;
2009
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002010 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2011 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* And move data appendix as is. */
2013 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2014 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2015
2016 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2017 skb_shinfo(skb)->nr_frags = 0;
2018 skb1->data_len = skb->data_len;
2019 skb1->len += skb1->data_len;
2020 skb->data_len = 0;
2021 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002022 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
2024
2025static inline void skb_split_no_header(struct sk_buff *skb,
2026 struct sk_buff* skb1,
2027 const u32 len, int pos)
2028{
2029 int i, k = 0;
2030 const int nfrags = skb_shinfo(skb)->nr_frags;
2031
2032 skb_shinfo(skb)->nr_frags = 0;
2033 skb1->len = skb1->data_len = skb->len - len;
2034 skb->len = len;
2035 skb->data_len = len - pos;
2036
2037 for (i = 0; i < nfrags; i++) {
2038 int size = skb_shinfo(skb)->frags[i].size;
2039
2040 if (pos + size > len) {
2041 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2042
2043 if (pos < len) {
2044 /* Split frag.
2045 * We have two variants in this case:
2046 * 1. Move all the frag to the second
2047 * part, if it is possible. F.e.
2048 * this approach is mandatory for TUX,
2049 * where splitting is expensive.
2050 * 2. Split is accurately. We make this.
2051 */
2052 get_page(skb_shinfo(skb)->frags[i].page);
2053 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2054 skb_shinfo(skb1)->frags[0].size -= len - pos;
2055 skb_shinfo(skb)->frags[i].size = len - pos;
2056 skb_shinfo(skb)->nr_frags++;
2057 }
2058 k++;
2059 } else
2060 skb_shinfo(skb)->nr_frags++;
2061 pos += size;
2062 }
2063 skb_shinfo(skb1)->nr_frags = k;
2064}
2065
2066/**
2067 * skb_split - Split fragmented skb to two parts at length len.
2068 * @skb: the buffer to split
2069 * @skb1: the buffer to receive the second part
2070 * @len: new length for skb
2071 */
2072void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2073{
2074 int pos = skb_headlen(skb);
2075
2076 if (len < pos) /* Split line is inside header. */
2077 skb_split_inside_header(skb, skb1, len, pos);
2078 else /* Second chunk has no header, nothing to copy. */
2079 skb_split_no_header(skb, skb1, len, pos);
2080}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002081EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002083/* Shifting from/to a cloned skb is a no-go.
2084 *
2085 * Caller cannot keep skb_shinfo related pointers past calling here!
2086 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002087static int skb_prepare_for_shift(struct sk_buff *skb)
2088{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002089 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002090}
2091
2092/**
2093 * skb_shift - Shifts paged data partially from skb to another
2094 * @tgt: buffer into which tail data gets added
2095 * @skb: buffer from which the paged data comes from
2096 * @shiftlen: shift up to this many bytes
2097 *
2098 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2099 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2100 * It's up to caller to free skb if everything was shifted.
2101 *
2102 * If @tgt runs out of frags, the whole operation is aborted.
2103 *
2104 * Skb cannot include anything else but paged data while tgt is allowed
2105 * to have non-paged data as well.
2106 *
2107 * TODO: full sized shift could be optimized but that would need
2108 * specialized skb free'er to handle frags without up-to-date nr_frags.
2109 */
2110int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2111{
2112 int from, to, merge, todo;
2113 struct skb_frag_struct *fragfrom, *fragto;
2114
2115 BUG_ON(shiftlen > skb->len);
2116 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2117
2118 todo = shiftlen;
2119 from = 0;
2120 to = skb_shinfo(tgt)->nr_frags;
2121 fragfrom = &skb_shinfo(skb)->frags[from];
2122
2123 /* Actual merge is delayed until the point when we know we can
2124 * commit all, so that we don't have to undo partial changes
2125 */
2126 if (!to ||
2127 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2128 merge = -1;
2129 } else {
2130 merge = to - 1;
2131
2132 todo -= fragfrom->size;
2133 if (todo < 0) {
2134 if (skb_prepare_for_shift(skb) ||
2135 skb_prepare_for_shift(tgt))
2136 return 0;
2137
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002138 /* All previous frag pointers might be stale! */
2139 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002140 fragto = &skb_shinfo(tgt)->frags[merge];
2141
2142 fragto->size += shiftlen;
2143 fragfrom->size -= shiftlen;
2144 fragfrom->page_offset += shiftlen;
2145
2146 goto onlymerged;
2147 }
2148
2149 from++;
2150 }
2151
2152 /* Skip full, not-fitting skb to avoid expensive operations */
2153 if ((shiftlen == skb->len) &&
2154 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2155 return 0;
2156
2157 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2158 return 0;
2159
2160 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2161 if (to == MAX_SKB_FRAGS)
2162 return 0;
2163
2164 fragfrom = &skb_shinfo(skb)->frags[from];
2165 fragto = &skb_shinfo(tgt)->frags[to];
2166
2167 if (todo >= fragfrom->size) {
2168 *fragto = *fragfrom;
2169 todo -= fragfrom->size;
2170 from++;
2171 to++;
2172
2173 } else {
2174 get_page(fragfrom->page);
2175 fragto->page = fragfrom->page;
2176 fragto->page_offset = fragfrom->page_offset;
2177 fragto->size = todo;
2178
2179 fragfrom->page_offset += todo;
2180 fragfrom->size -= todo;
2181 todo = 0;
2182
2183 to++;
2184 break;
2185 }
2186 }
2187
2188 /* Ready to "commit" this state change to tgt */
2189 skb_shinfo(tgt)->nr_frags = to;
2190
2191 if (merge >= 0) {
2192 fragfrom = &skb_shinfo(skb)->frags[0];
2193 fragto = &skb_shinfo(tgt)->frags[merge];
2194
2195 fragto->size += fragfrom->size;
2196 put_page(fragfrom->page);
2197 }
2198
2199 /* Reposition in the original skb */
2200 to = 0;
2201 while (from < skb_shinfo(skb)->nr_frags)
2202 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2203 skb_shinfo(skb)->nr_frags = to;
2204
2205 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2206
2207onlymerged:
2208 /* Most likely the tgt won't ever need its checksum anymore, skb on
2209 * the other hand might need it if it needs to be resent
2210 */
2211 tgt->ip_summed = CHECKSUM_PARTIAL;
2212 skb->ip_summed = CHECKSUM_PARTIAL;
2213
2214 /* Yak, is it really working this way? Some helper please? */
2215 skb->len -= shiftlen;
2216 skb->data_len -= shiftlen;
2217 skb->truesize -= shiftlen;
2218 tgt->len += shiftlen;
2219 tgt->data_len += shiftlen;
2220 tgt->truesize += shiftlen;
2221
2222 return shiftlen;
2223}
2224
Thomas Graf677e90e2005-06-23 20:59:51 -07002225/**
2226 * skb_prepare_seq_read - Prepare a sequential read of skb data
2227 * @skb: the buffer to read
2228 * @from: lower offset of data to be read
2229 * @to: upper offset of data to be read
2230 * @st: state variable
2231 *
2232 * Initializes the specified state variable. Must be called before
2233 * invoking skb_seq_read() for the first time.
2234 */
2235void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2236 unsigned int to, struct skb_seq_state *st)
2237{
2238 st->lower_offset = from;
2239 st->upper_offset = to;
2240 st->root_skb = st->cur_skb = skb;
2241 st->frag_idx = st->stepped_offset = 0;
2242 st->frag_data = NULL;
2243}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002244EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002245
2246/**
2247 * skb_seq_read - Sequentially read skb data
2248 * @consumed: number of bytes consumed by the caller so far
2249 * @data: destination pointer for data to be returned
2250 * @st: state variable
2251 *
2252 * Reads a block of skb data at &consumed relative to the
2253 * lower offset specified to skb_prepare_seq_read(). Assigns
2254 * the head of the data block to &data and returns the length
2255 * of the block or 0 if the end of the skb data or the upper
2256 * offset has been reached.
2257 *
2258 * The caller is not required to consume all of the data
2259 * returned, i.e. &consumed is typically set to the number
2260 * of bytes already consumed and the next call to
2261 * skb_seq_read() will return the remaining part of the block.
2262 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002263 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002264 * this limitation is the cost for zerocopy seqeuental
2265 * reads of potentially non linear data.
2266 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002267 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002268 * at the moment, state->root_skb could be replaced with
2269 * a stack for this purpose.
2270 */
2271unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2272 struct skb_seq_state *st)
2273{
2274 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2275 skb_frag_t *frag;
2276
2277 if (unlikely(abs_offset >= st->upper_offset))
2278 return 0;
2279
2280next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002281 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002282
Thomas Chenault995b3372009-05-18 21:43:27 -07002283 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002284 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002285 return block_limit - abs_offset;
2286 }
2287
2288 if (st->frag_idx == 0 && !st->frag_data)
2289 st->stepped_offset += skb_headlen(st->cur_skb);
2290
2291 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2292 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2293 block_limit = frag->size + st->stepped_offset;
2294
2295 if (abs_offset < block_limit) {
2296 if (!st->frag_data)
2297 st->frag_data = kmap_skb_frag(frag);
2298
2299 *data = (u8 *) st->frag_data + frag->page_offset +
2300 (abs_offset - st->stepped_offset);
2301
2302 return block_limit - abs_offset;
2303 }
2304
2305 if (st->frag_data) {
2306 kunmap_skb_frag(st->frag_data);
2307 st->frag_data = NULL;
2308 }
2309
2310 st->frag_idx++;
2311 st->stepped_offset += frag->size;
2312 }
2313
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002314 if (st->frag_data) {
2315 kunmap_skb_frag(st->frag_data);
2316 st->frag_data = NULL;
2317 }
2318
David S. Millerfbb398a2009-06-09 00:18:59 -07002319 if (st->root_skb == st->cur_skb && skb_has_frags(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002320 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002321 st->frag_idx = 0;
2322 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002323 } else if (st->cur_skb->next) {
2324 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002325 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002326 goto next_skb;
2327 }
2328
2329 return 0;
2330}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002331EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002332
2333/**
2334 * skb_abort_seq_read - Abort a sequential read of skb data
2335 * @st: state variable
2336 *
2337 * Must be called if skb_seq_read() was not called until it
2338 * returned 0.
2339 */
2340void skb_abort_seq_read(struct skb_seq_state *st)
2341{
2342 if (st->frag_data)
2343 kunmap_skb_frag(st->frag_data);
2344}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002345EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002346
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002347#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2348
2349static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2350 struct ts_config *conf,
2351 struct ts_state *state)
2352{
2353 return skb_seq_read(offset, text, TS_SKB_CB(state));
2354}
2355
2356static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2357{
2358 skb_abort_seq_read(TS_SKB_CB(state));
2359}
2360
2361/**
2362 * skb_find_text - Find a text pattern in skb data
2363 * @skb: the buffer to look in
2364 * @from: search offset
2365 * @to: search limit
2366 * @config: textsearch configuration
2367 * @state: uninitialized textsearch state variable
2368 *
2369 * Finds a pattern in the skb data according to the specified
2370 * textsearch configuration. Use textsearch_next() to retrieve
2371 * subsequent occurrences of the pattern. Returns the offset
2372 * to the first occurrence or UINT_MAX if no match was found.
2373 */
2374unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2375 unsigned int to, struct ts_config *config,
2376 struct ts_state *state)
2377{
Phil Oesterf72b9482006-06-26 00:00:57 -07002378 unsigned int ret;
2379
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002380 config->get_next_block = skb_ts_get_next_block;
2381 config->finish = skb_ts_finish;
2382
2383 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2384
Phil Oesterf72b9482006-06-26 00:00:57 -07002385 ret = textsearch_find(config, state);
2386 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002387}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002388EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002389
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002390/**
2391 * skb_append_datato_frags: - append the user data to a skb
2392 * @sk: sock structure
2393 * @skb: skb structure to be appened with user data.
2394 * @getfrag: call back function to be used for getting the user data
2395 * @from: pointer to user message iov
2396 * @length: length of the iov message
2397 *
2398 * Description: This procedure append the user data in the fragment part
2399 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2400 */
2401int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002402 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002403 int len, int odd, struct sk_buff *skb),
2404 void *from, int length)
2405{
2406 int frg_cnt = 0;
2407 skb_frag_t *frag = NULL;
2408 struct page *page = NULL;
2409 int copy, left;
2410 int offset = 0;
2411 int ret;
2412
2413 do {
2414 /* Return error if we don't have space for new frag */
2415 frg_cnt = skb_shinfo(skb)->nr_frags;
2416 if (frg_cnt >= MAX_SKB_FRAGS)
2417 return -EFAULT;
2418
2419 /* allocate a new page for next frag */
2420 page = alloc_pages(sk->sk_allocation, 0);
2421
2422 /* If alloc_page fails just return failure and caller will
2423 * free previous allocated pages by doing kfree_skb()
2424 */
2425 if (page == NULL)
2426 return -ENOMEM;
2427
2428 /* initialize the next frag */
2429 sk->sk_sndmsg_page = page;
2430 sk->sk_sndmsg_off = 0;
2431 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2432 skb->truesize += PAGE_SIZE;
2433 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2434
2435 /* get the new initialized frag */
2436 frg_cnt = skb_shinfo(skb)->nr_frags;
2437 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2438
2439 /* copy the user data to page */
2440 left = PAGE_SIZE - frag->page_offset;
2441 copy = (length > left)? left : length;
2442
2443 ret = getfrag(from, (page_address(frag->page) +
2444 frag->page_offset + frag->size),
2445 offset, copy, 0, skb);
2446 if (ret < 0)
2447 return -EFAULT;
2448
2449 /* copy was successful so update the size parameters */
2450 sk->sk_sndmsg_off += copy;
2451 frag->size += copy;
2452 skb->len += copy;
2453 skb->data_len += copy;
2454 offset += copy;
2455 length -= copy;
2456
2457 } while (length > 0);
2458
2459 return 0;
2460}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002461EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002462
Herbert Xucbb042f2006-03-20 22:43:56 -08002463/**
2464 * skb_pull_rcsum - pull skb and update receive checksum
2465 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002466 * @len: length of data pulled
2467 *
2468 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002469 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002470 * receive path processing instead of skb_pull unless you know
2471 * that the checksum difference is zero (e.g., a valid IP header)
2472 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002473 */
2474unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2475{
2476 BUG_ON(len > skb->len);
2477 skb->len -= len;
2478 BUG_ON(skb->len < skb->data_len);
2479 skb_postpull_rcsum(skb, skb->data, len);
2480 return skb->data += len;
2481}
2482
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002483EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2484
Herbert Xuf4c50d92006-06-22 03:02:40 -07002485/**
2486 * skb_segment - Perform protocol segmentation on skb.
2487 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002488 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002489 *
2490 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002491 * a pointer to the first in a list of new skbs for the segments.
2492 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002493 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002494struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002495{
2496 struct sk_buff *segs = NULL;
2497 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002498 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002499 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002500 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002501 unsigned int offset = doffset;
2502 unsigned int headroom;
2503 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002504 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002505 int nfrags = skb_shinfo(skb)->nr_frags;
2506 int err = -ENOMEM;
2507 int i = 0;
2508 int pos;
2509
2510 __skb_push(skb, doffset);
2511 headroom = skb_headroom(skb);
2512 pos = skb_headlen(skb);
2513
2514 do {
2515 struct sk_buff *nskb;
2516 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002517 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002518 int size;
2519
2520 len = skb->len - offset;
2521 if (len > mss)
2522 len = mss;
2523
2524 hsize = skb_headlen(skb) - offset;
2525 if (hsize < 0)
2526 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002527 if (hsize > len || !sg)
2528 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002529
Herbert Xu89319d382008-12-15 23:26:06 -08002530 if (!hsize && i >= nfrags) {
2531 BUG_ON(fskb->len != len);
2532
2533 pos += len;
2534 nskb = skb_clone(fskb, GFP_ATOMIC);
2535 fskb = fskb->next;
2536
2537 if (unlikely(!nskb))
2538 goto err;
2539
2540 hsize = skb_end_pointer(nskb) - nskb->head;
2541 if (skb_cow_head(nskb, doffset + headroom)) {
2542 kfree_skb(nskb);
2543 goto err;
2544 }
2545
2546 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2547 hsize;
2548 skb_release_head_state(nskb);
2549 __skb_push(nskb, doffset);
2550 } else {
2551 nskb = alloc_skb(hsize + doffset + headroom,
2552 GFP_ATOMIC);
2553
2554 if (unlikely(!nskb))
2555 goto err;
2556
2557 skb_reserve(nskb, headroom);
2558 __skb_put(nskb, doffset);
2559 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002560
2561 if (segs)
2562 tail->next = nskb;
2563 else
2564 segs = nskb;
2565 tail = nskb;
2566
Herbert Xu6f85a122008-08-15 14:55:02 -07002567 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002568 nskb->mac_len = skb->mac_len;
2569
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002570 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002571 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002572 nskb->transport_header = (nskb->network_header +
2573 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002574 skb_copy_from_linear_data(skb, nskb->data, doffset);
2575
Herbert Xu2f181852009-03-28 23:39:18 -07002576 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002577 continue;
2578
Herbert Xuf4c50d92006-06-22 03:02:40 -07002579 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002580 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002581 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2582 skb_put(nskb, len),
2583 len, 0);
2584 continue;
2585 }
2586
2587 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002588
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002589 skb_copy_from_linear_data_offset(skb, offset,
2590 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002591
Herbert Xu89319d382008-12-15 23:26:06 -08002592 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002593 *frag = skb_shinfo(skb)->frags[i];
2594 get_page(frag->page);
2595 size = frag->size;
2596
2597 if (pos < offset) {
2598 frag->page_offset += offset - pos;
2599 frag->size -= offset - pos;
2600 }
2601
Herbert Xu89319d382008-12-15 23:26:06 -08002602 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002603
2604 if (pos + size <= offset + len) {
2605 i++;
2606 pos += size;
2607 } else {
2608 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002609 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002610 }
2611
2612 frag++;
2613 }
2614
Herbert Xu89319d382008-12-15 23:26:06 -08002615 if (pos < offset + len) {
2616 struct sk_buff *fskb2 = fskb;
2617
2618 BUG_ON(pos + fskb->len != offset + len);
2619
2620 pos += fskb->len;
2621 fskb = fskb->next;
2622
2623 if (fskb2->next) {
2624 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2625 if (!fskb2)
2626 goto err;
2627 } else
2628 skb_get(fskb2);
2629
David S. Millerfbb398a2009-06-09 00:18:59 -07002630 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002631 skb_shinfo(nskb)->frag_list = fskb2;
2632 }
2633
2634skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002635 nskb->data_len = len - hsize;
2636 nskb->len += nskb->data_len;
2637 nskb->truesize += nskb->data_len;
2638 } while ((offset += len) < skb->len);
2639
2640 return segs;
2641
2642err:
2643 while ((skb = segs)) {
2644 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002645 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002646 }
2647 return ERR_PTR(err);
2648}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002649EXPORT_SYMBOL_GPL(skb_segment);
2650
Herbert Xu71d93b32008-12-15 23:42:33 -08002651int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2652{
2653 struct sk_buff *p = *head;
2654 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002655 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2656 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002657 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002658 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002659 unsigned int offset = skb_gro_offset(skb);
2660 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002661
Herbert Xu86911732009-01-29 14:19:50 +00002662 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002663 return -E2BIG;
2664
Herbert Xu9aaa1562009-05-26 18:50:33 +00002665 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002666 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002667 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002668 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002669 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002670 int i = skbinfo->nr_frags;
2671 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002672
Herbert Xu66e92fc2009-05-26 18:50:32 +00002673 offset -= headlen;
2674
2675 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002676 return -E2BIG;
2677
Herbert Xu9aaa1562009-05-26 18:50:33 +00002678 pinfo->nr_frags = nr_frags;
2679 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002680
Herbert Xu9aaa1562009-05-26 18:50:33 +00002681 frag = pinfo->frags + nr_frags;
2682 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002683 do {
2684 *--frag = *--frag2;
2685 } while (--i);
2686
2687 frag->page_offset += offset;
2688 frag->size -= offset;
2689
Herbert Xuf5572062009-01-14 20:40:03 -08002690 skb->truesize -= skb->data_len;
2691 skb->len -= skb->data_len;
2692 skb->data_len = 0;
2693
Herbert Xu5d38a072009-01-04 16:13:40 -08002694 NAPI_GRO_CB(skb)->free = 1;
2695 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002696 } else if (skb_gro_len(p) != pinfo->gso_size)
2697 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002698
2699 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002700 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002701 if (unlikely(!nskb))
2702 return -ENOMEM;
2703
2704 __copy_skb_header(nskb, p);
2705 nskb->mac_len = p->mac_len;
2706
2707 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002708 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002709
Herbert Xu86911732009-01-29 14:19:50 +00002710 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002711 skb_set_network_header(nskb, skb_network_offset(p));
2712 skb_set_transport_header(nskb, skb_transport_offset(p));
2713
Herbert Xu86911732009-01-29 14:19:50 +00002714 __skb_pull(p, skb_gro_offset(p));
2715 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2716 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002717
2718 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2719 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002720 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002721 skb_header_release(p);
2722 nskb->prev = p;
2723
2724 nskb->data_len += p->len;
2725 nskb->truesize += p->len;
2726 nskb->len += p->len;
2727
2728 *head = nskb;
2729 nskb->next = p->next;
2730 p->next = NULL;
2731
2732 p = nskb;
2733
2734merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002735 if (offset > headlen) {
Herbert Xu9aaa1562009-05-26 18:50:33 +00002736 skbinfo->frags[0].page_offset += offset - headlen;
2737 skbinfo->frags[0].size -= offset - headlen;
Herbert Xu67147ba2009-05-26 18:50:22 +00002738 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002739 }
2740
Herbert Xu67147ba2009-05-26 18:50:22 +00002741 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002742
Herbert Xu71d93b32008-12-15 23:42:33 -08002743 p->prev->next = skb;
2744 p->prev = skb;
2745 skb_header_release(skb);
2746
Herbert Xu5d38a072009-01-04 16:13:40 -08002747done:
2748 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002749 p->data_len += len;
2750 p->truesize += len;
2751 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002752
2753 NAPI_GRO_CB(skb)->same_flow = 1;
2754 return 0;
2755}
2756EXPORT_SYMBOL_GPL(skb_gro_receive);
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758void __init skb_init(void)
2759{
2760 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2761 sizeof(struct sk_buff),
2762 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002763 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002764 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002765 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2766 (2*sizeof(struct sk_buff)) +
2767 sizeof(atomic_t),
2768 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002769 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002770 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771}
2772
David Howells716ea3a2007-04-02 20:19:53 -07002773/**
2774 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2775 * @skb: Socket buffer containing the buffers to be mapped
2776 * @sg: The scatter-gather list to map into
2777 * @offset: The offset into the buffer's contents to start mapping
2778 * @len: Length of buffer space to be mapped
2779 *
2780 * Fill the specified scatter-gather list with mappings/pointers into a
2781 * region of the buffer space attached to a socket buffer.
2782 */
David S. Miller51c739d2007-10-30 21:29:29 -07002783static int
2784__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002785{
David S. Miller1a028e52007-04-27 15:21:23 -07002786 int start = skb_headlen(skb);
2787 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002788 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002789 int elt = 0;
2790
2791 if (copy > 0) {
2792 if (copy > len)
2793 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002794 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002795 elt++;
2796 if ((len -= copy) == 0)
2797 return elt;
2798 offset += copy;
2799 }
2800
2801 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002802 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002803
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002804 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002805
2806 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002807 if ((copy = end - offset) > 0) {
2808 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2809
2810 if (copy > len)
2811 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002812 sg_set_page(&sg[elt], frag->page, copy,
2813 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002814 elt++;
2815 if (!(len -= copy))
2816 return elt;
2817 offset += copy;
2818 }
David S. Miller1a028e52007-04-27 15:21:23 -07002819 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002820 }
2821
David S. Millerfbb398a2009-06-09 00:18:59 -07002822 skb_walk_frags(skb, frag_iter) {
2823 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002824
David S. Millerfbb398a2009-06-09 00:18:59 -07002825 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002826
David S. Millerfbb398a2009-06-09 00:18:59 -07002827 end = start + frag_iter->len;
2828 if ((copy = end - offset) > 0) {
2829 if (copy > len)
2830 copy = len;
2831 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2832 copy);
2833 if ((len -= copy) == 0)
2834 return elt;
2835 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002836 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002837 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002838 }
2839 BUG_ON(len);
2840 return elt;
2841}
2842
David S. Miller51c739d2007-10-30 21:29:29 -07002843int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2844{
2845 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2846
Jens Axboec46f2332007-10-31 12:06:37 +01002847 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002848
2849 return nsg;
2850}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002851EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002852
David Howells716ea3a2007-04-02 20:19:53 -07002853/**
2854 * skb_cow_data - Check that a socket buffer's data buffers are writable
2855 * @skb: The socket buffer to check.
2856 * @tailbits: Amount of trailing space to be added
2857 * @trailer: Returned pointer to the skb where the @tailbits space begins
2858 *
2859 * Make sure that the data buffers attached to a socket buffer are
2860 * writable. If they are not, private copies are made of the data buffers
2861 * and the socket buffer is set to use these instead.
2862 *
2863 * If @tailbits is given, make sure that there is space to write @tailbits
2864 * bytes of data beyond current end of socket buffer. @trailer will be
2865 * set to point to the skb in which this space begins.
2866 *
2867 * The number of scatterlist elements required to completely map the
2868 * COW'd and extended socket buffer will be returned.
2869 */
2870int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2871{
2872 int copyflag;
2873 int elt;
2874 struct sk_buff *skb1, **skb_p;
2875
2876 /* If skb is cloned or its head is paged, reallocate
2877 * head pulling out all the pages (pages are considered not writable
2878 * at the moment even if they are anonymous).
2879 */
2880 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2881 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2882 return -ENOMEM;
2883
2884 /* Easy case. Most of packets will go this way. */
David S. Millerfbb398a2009-06-09 00:18:59 -07002885 if (!skb_has_frags(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002886 /* A little of trouble, not enough of space for trailer.
2887 * This should not happen, when stack is tuned to generate
2888 * good frames. OK, on miss we reallocate and reserve even more
2889 * space, 128 bytes is fair. */
2890
2891 if (skb_tailroom(skb) < tailbits &&
2892 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2893 return -ENOMEM;
2894
2895 /* Voila! */
2896 *trailer = skb;
2897 return 1;
2898 }
2899
2900 /* Misery. We are in troubles, going to mincer fragments... */
2901
2902 elt = 1;
2903 skb_p = &skb_shinfo(skb)->frag_list;
2904 copyflag = 0;
2905
2906 while ((skb1 = *skb_p) != NULL) {
2907 int ntail = 0;
2908
2909 /* The fragment is partially pulled by someone,
2910 * this can happen on input. Copy it and everything
2911 * after it. */
2912
2913 if (skb_shared(skb1))
2914 copyflag = 1;
2915
2916 /* If the skb is the last, worry about trailer. */
2917
2918 if (skb1->next == NULL && tailbits) {
2919 if (skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002920 skb_has_frags(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07002921 skb_tailroom(skb1) < tailbits)
2922 ntail = tailbits + 128;
2923 }
2924
2925 if (copyflag ||
2926 skb_cloned(skb1) ||
2927 ntail ||
2928 skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002929 skb_has_frags(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07002930 struct sk_buff *skb2;
2931
2932 /* Fuck, we are miserable poor guys... */
2933 if (ntail == 0)
2934 skb2 = skb_copy(skb1, GFP_ATOMIC);
2935 else
2936 skb2 = skb_copy_expand(skb1,
2937 skb_headroom(skb1),
2938 ntail,
2939 GFP_ATOMIC);
2940 if (unlikely(skb2 == NULL))
2941 return -ENOMEM;
2942
2943 if (skb1->sk)
2944 skb_set_owner_w(skb2, skb1->sk);
2945
2946 /* Looking around. Are we still alive?
2947 * OK, link new skb, drop old one */
2948
2949 skb2->next = skb1->next;
2950 *skb_p = skb2;
2951 kfree_skb(skb1);
2952 skb1 = skb2;
2953 }
2954 elt++;
2955 *trailer = skb1;
2956 skb_p = &skb1->next;
2957 }
2958
2959 return elt;
2960}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002961EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002962
Patrick Ohlyac45f602009-02-12 05:03:37 +00002963void skb_tstamp_tx(struct sk_buff *orig_skb,
2964 struct skb_shared_hwtstamps *hwtstamps)
2965{
2966 struct sock *sk = orig_skb->sk;
2967 struct sock_exterr_skb *serr;
2968 struct sk_buff *skb;
2969 int err;
2970
2971 if (!sk)
2972 return;
2973
2974 skb = skb_clone(orig_skb, GFP_ATOMIC);
2975 if (!skb)
2976 return;
2977
2978 if (hwtstamps) {
2979 *skb_hwtstamps(skb) =
2980 *hwtstamps;
2981 } else {
2982 /*
2983 * no hardware time stamps available,
2984 * so keep the skb_shared_tx and only
2985 * store software time stamp
2986 */
2987 skb->tstamp = ktime_get_real();
2988 }
2989
2990 serr = SKB_EXT_ERR(skb);
2991 memset(serr, 0, sizeof(*serr));
2992 serr->ee.ee_errno = ENOMSG;
2993 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
2994 err = sock_queue_err_skb(sk, skb);
2995 if (err)
2996 kfree_skb(skb);
2997}
2998EXPORT_SYMBOL_GPL(skb_tstamp_tx);
2999
3000
Rusty Russellf35d9d82008-02-04 23:49:54 -05003001/**
3002 * skb_partial_csum_set - set up and verify partial csum values for packet
3003 * @skb: the skb to set
3004 * @start: the number of bytes after skb->data to start checksumming.
3005 * @off: the offset from start to place the checksum.
3006 *
3007 * For untrusted partially-checksummed packets, we need to make sure the values
3008 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3009 *
3010 * This function checks and sets those values and skb->ip_summed: if this
3011 * returns false you should drop the packet.
3012 */
3013bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3014{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003015 if (unlikely(start > skb_headlen(skb)) ||
3016 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003017 if (net_ratelimit())
3018 printk(KERN_WARNING
3019 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003020 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003021 return false;
3022 }
3023 skb->ip_summed = CHECKSUM_PARTIAL;
3024 skb->csum_start = skb_headroom(skb) + start;
3025 skb->csum_offset = off;
3026 return true;
3027}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003028EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003029
Ben Hutchings4497b072008-06-19 16:22:28 -07003030void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3031{
3032 if (net_ratelimit())
3033 pr_warning("%s: received packets cannot be forwarded"
3034 " while LRO is enabled\n", skb->dev->name);
3035}
Ben Hutchings4497b072008-06-19 16:22:28 -07003036EXPORT_SYMBOL(__skb_warn_lro_forwarding);