blob: 19d6c21220fd47bb7141d8376a55c1785627a5e8 [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;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000205#ifdef NET_SKBUFF_DATA_USES_OFFSET
206 skb->mac_header = ~0U;
207#endif
208
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800209 /* make sure we initialize shinfo sequentially */
210 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700211 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800212 atomic_set(&shinfo->dataref, 1);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800213
David S. Millerd179cd12005-08-17 14:57:30 -0700214 if (fclone) {
215 struct sk_buff *child = skb + 1;
216 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200218 kmemcheck_annotate_bitfield(child, flags1);
219 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700220 skb->fclone = SKB_FCLONE_ORIG;
221 atomic_set(fclone_ref, 1);
222
223 child->fclone = SKB_FCLONE_UNAVAILABLE;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225out:
226 return skb;
227nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800228 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 skb = NULL;
230 goto out;
231}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800232EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700235 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
236 * @dev: network device to receive on
237 * @length: length to allocate
238 * @gfp_mask: get_free_pages mask, passed to alloc_skb
239 *
240 * Allocate a new &sk_buff and assign it a usage count of one. The
241 * buffer has unspecified headroom built in. Users should allocate
242 * the headroom they think they need without accounting for the
243 * built in space. The built in space is used for optimisations.
244 *
245 * %NULL is returned if there is no free memory.
246 */
247struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
248 unsigned int length, gfp_t gfp_mask)
249{
250 struct sk_buff *skb;
251
Eric Dumazet564824b2010-10-11 19:05:25 +0000252 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, NUMA_NO_NODE);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700253 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700254 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700255 skb->dev = dev;
256 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700257 return skb;
258}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800259EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Peter Zijlstra654bed12008-10-07 14:22:33 -0700261void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
262 int size)
263{
264 skb_fill_page_desc(skb, i, page, off, size);
265 skb->len += size;
266 skb->data_len += size;
267 skb->truesize += size;
268}
269EXPORT_SYMBOL(skb_add_rx_frag);
270
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700271/**
272 * dev_alloc_skb - allocate an skbuff for receiving
273 * @length: length to allocate
274 *
275 * Allocate a new &sk_buff and assign it a usage count of one. The
276 * buffer has unspecified headroom built in. Users should allocate
277 * the headroom they think they need without accounting for the
278 * built in space. The built in space is used for optimisations.
279 *
280 * %NULL is returned if there is no free memory. Although this function
281 * allocates memory it can be called from an interrupt.
282 */
283struct sk_buff *dev_alloc_skb(unsigned int length)
284{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700285 /*
286 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700287 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700288 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700289 return __dev_alloc_skb(length, GFP_ATOMIC);
290}
291EXPORT_SYMBOL(dev_alloc_skb);
292
Herbert Xu27b437c2006-07-13 19:26:39 -0700293static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Herbert Xu27b437c2006-07-13 19:26:39 -0700295 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Herbert Xu27b437c2006-07-13 19:26:39 -0700297 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 do {
300 struct sk_buff *this = list;
301 list = list->next;
302 kfree_skb(this);
303 } while (list);
304}
305
Herbert Xu27b437c2006-07-13 19:26:39 -0700306static inline void skb_drop_fraglist(struct sk_buff *skb)
307{
308 skb_drop_list(&skb_shinfo(skb)->frag_list);
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static void skb_clone_fraglist(struct sk_buff *skb)
312{
313 struct sk_buff *list;
314
David S. Millerfbb398a2009-06-09 00:18:59 -0700315 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 skb_get(list);
317}
318
Adrian Bunk5bba1712006-06-29 13:02:35 -0700319static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 if (!skb->cloned ||
322 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
323 &skb_shinfo(skb)->dataref)) {
324 if (skb_shinfo(skb)->nr_frags) {
325 int i;
326 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
327 put_page(skb_shinfo(skb)->frags[i].page);
328 }
329
David S. Miller21dc3302010-08-23 00:13:46 -0700330 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 skb_drop_fraglist(skb);
332
333 kfree(skb->head);
334 }
335}
336
337/*
338 * Free an skbuff by memory without cleaning the state.
339 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800340static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
David S. Millerd179cd12005-08-17 14:57:30 -0700342 struct sk_buff *other;
343 atomic_t *fclone_ref;
344
David S. Millerd179cd12005-08-17 14:57:30 -0700345 switch (skb->fclone) {
346 case SKB_FCLONE_UNAVAILABLE:
347 kmem_cache_free(skbuff_head_cache, skb);
348 break;
349
350 case SKB_FCLONE_ORIG:
351 fclone_ref = (atomic_t *) (skb + 2);
352 if (atomic_dec_and_test(fclone_ref))
353 kmem_cache_free(skbuff_fclone_cache, skb);
354 break;
355
356 case SKB_FCLONE_CLONE:
357 fclone_ref = (atomic_t *) (skb + 1);
358 other = skb - 1;
359
360 /* The clone portion is available for
361 * fast-cloning again.
362 */
363 skb->fclone = SKB_FCLONE_UNAVAILABLE;
364
365 if (atomic_dec_and_test(fclone_ref))
366 kmem_cache_free(skbuff_fclone_cache, other);
367 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700371static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Eric Dumazetadf30902009-06-02 05:19:30 +0000373 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#ifdef CONFIG_XFRM
375 secpath_put(skb->sp);
376#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700377 if (skb->destructor) {
378 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 skb->destructor(skb);
380 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800381#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700382 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383 nf_conntrack_put_reasm(skb->nfct_reasm);
384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifdef CONFIG_BRIDGE_NETFILTER
386 nf_bridge_put(skb->nf_bridge);
387#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/* XXX: IS this still necessary? - JHS */
389#ifdef CONFIG_NET_SCHED
390 skb->tc_index = 0;
391#ifdef CONFIG_NET_CLS_ACT
392 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393#endif
394#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700395}
396
397/* Free everything but the sk_buff shell. */
398static void skb_release_all(struct sk_buff *skb)
399{
400 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800401 skb_release_data(skb);
402}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Herbert Xu2d4baff2007-11-26 23:11:19 +0800404/**
405 * __kfree_skb - private function
406 * @skb: buffer
407 *
408 * Free an sk_buff. Release anything attached to the buffer.
409 * Clean the state. This is an internal helper function. Users should
410 * always call kfree_skb
411 */
412
413void __kfree_skb(struct sk_buff *skb)
414{
415 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 kfree_skbmem(skb);
417}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800418EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800421 * kfree_skb - free an sk_buff
422 * @skb: buffer to free
423 *
424 * Drop a reference to the buffer and free it if the usage count has
425 * hit zero.
426 */
427void kfree_skb(struct sk_buff *skb)
428{
429 if (unlikely(!skb))
430 return;
431 if (likely(atomic_read(&skb->users) == 1))
432 smp_rmb();
433 else if (likely(!atomic_dec_and_test(&skb->users)))
434 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000435 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800436 __kfree_skb(skb);
437}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800438EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800439
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700440/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000441 * consume_skb - free an skbuff
442 * @skb: buffer to free
443 *
444 * Drop a ref to the buffer and free it if the usage count has hit zero
445 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
446 * is being dropped after a failure and notes that
447 */
448void consume_skb(struct sk_buff *skb)
449{
450 if (unlikely(!skb))
451 return;
452 if (likely(atomic_read(&skb->users) == 1))
453 smp_rmb();
454 else if (likely(!atomic_dec_and_test(&skb->users)))
455 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900456 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000457 __kfree_skb(skb);
458}
459EXPORT_SYMBOL(consume_skb);
460
461/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700462 * skb_recycle_check - check if skb can be reused for receive
463 * @skb: buffer
464 * @skb_size: minimum receive buffer size
465 *
466 * Checks that the skb passed in is not shared or cloned, and
467 * that it is linear and its head portion at least as large as
468 * skb_size so that it can be recycled as a receive buffer.
469 * If these conditions are met, this function does any necessary
470 * reference count dropping and cleans up the skbuff as if it
471 * just came from __alloc_skb().
472 */
Changli Gao5b0daa32010-05-29 00:12:13 -0700473bool skb_recycle_check(struct sk_buff *skb, int skb_size)
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700474{
475 struct skb_shared_info *shinfo;
476
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000477 if (irqs_disabled())
Changli Gao5b0daa32010-05-29 00:12:13 -0700478 return false;
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000479
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700480 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
Changli Gao5b0daa32010-05-29 00:12:13 -0700481 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700482
483 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
484 if (skb_end_pointer(skb) - skb->head < skb_size)
Changli Gao5b0daa32010-05-29 00:12:13 -0700485 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700486
487 if (skb_shared(skb) || skb_cloned(skb))
Changli Gao5b0daa32010-05-29 00:12:13 -0700488 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700489
490 skb_release_head_state(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700491
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700492 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700493 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700494 atomic_set(&shinfo->dataref, 1);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700495
496 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700497 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800498 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700499
Changli Gao5b0daa32010-05-29 00:12:13 -0700500 return true;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700501}
502EXPORT_SYMBOL(skb_recycle_check);
503
Herbert Xudec18812007-10-14 00:37:30 -0700504static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
505{
506 new->tstamp = old->tstamp;
507 new->dev = old->dev;
508 new->transport_header = old->transport_header;
509 new->network_header = old->network_header;
510 new->mac_header = old->mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000511 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000512 new->rxhash = old->rxhash;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700513#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700514 new->sp = secpath_get(old->sp);
515#endif
516 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000517 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700518 new->local_df = old->local_df;
519 new->pkt_type = old->pkt_type;
520 new->ip_summed = old->ip_summed;
521 skb_copy_queue_mapping(new, old);
522 new->priority = old->priority;
John Fastabende8970822010-06-13 10:36:30 +0000523 new->deliver_no_wcard = old->deliver_no_wcard;
Herbert Xudec18812007-10-14 00:37:30 -0700524#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
525 new->ipvs_property = old->ipvs_property;
526#endif
527 new->protocol = old->protocol;
528 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800529 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700530 __nf_copy(new, old);
531#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
532 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
533 new->nf_trace = old->nf_trace;
534#endif
535#ifdef CONFIG_NET_SCHED
536 new->tc_index = old->tc_index;
537#ifdef CONFIG_NET_CLS_ACT
538 new->tc_verd = old->tc_verd;
539#endif
540#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700541 new->vlan_tci = old->vlan_tci;
542
Herbert Xudec18812007-10-14 00:37:30 -0700543 skb_copy_secmark(new, old);
544}
545
Herbert Xu82c49a32009-05-22 22:11:37 +0000546/*
547 * You should not add any new code to this function. Add it to
548 * __copy_skb_header above instead.
549 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700550static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552#define C(x) n->x = skb->x
553
554 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700556 __copy_skb_header(n, skb);
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 C(len);
559 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700560 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700561 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800562 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 C(tail);
566 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800567 C(head);
568 C(data);
569 C(truesize);
570 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 atomic_inc(&(skb_shinfo(skb)->dataref));
573 skb->cloned = 1;
574
575 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700576#undef C
577}
578
579/**
580 * skb_morph - morph one skb into another
581 * @dst: the skb to receive the contents
582 * @src: the skb to supply the contents
583 *
584 * This is identical to skb_clone except that the target skb is
585 * supplied by the user.
586 *
587 * The target skb is returned upon exit.
588 */
589struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
590{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800591 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700592 return __skb_clone(dst, src);
593}
594EXPORT_SYMBOL_GPL(skb_morph);
595
596/**
597 * skb_clone - duplicate an sk_buff
598 * @skb: buffer to clone
599 * @gfp_mask: allocation priority
600 *
601 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
602 * copies share the same packet data but not structure. The new
603 * buffer has a reference count of 1. If the allocation fails the
604 * function returns %NULL otherwise the new buffer is returned.
605 *
606 * If this function is called from an interrupt gfp_mask() must be
607 * %GFP_ATOMIC.
608 */
609
610struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
611{
612 struct sk_buff *n;
613
614 n = skb + 1;
615 if (skb->fclone == SKB_FCLONE_ORIG &&
616 n->fclone == SKB_FCLONE_UNAVAILABLE) {
617 atomic_t *fclone_ref = (atomic_t *) (n + 1);
618 n->fclone = SKB_FCLONE_CLONE;
619 atomic_inc(fclone_ref);
620 } else {
621 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
622 if (!n)
623 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200624
625 kmemcheck_annotate_bitfield(n, flags1);
626 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700627 n->fclone = SKB_FCLONE_UNAVAILABLE;
628 }
629
630 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800632EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
635{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700636#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /*
638 * Shift between the two data areas in bytes
639 */
640 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700641#endif
Herbert Xudec18812007-10-14 00:37:30 -0700642
643 __copy_skb_header(new, old);
644
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700645#ifndef NET_SKBUFF_DATA_USES_OFFSET
646 /* {transport,network,mac}_header are relative to skb->head */
647 new->transport_header += offset;
648 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000649 if (skb_mac_header_was_set(new))
650 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700651#endif
Herbert Xu79671682006-06-22 02:40:14 -0700652 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
653 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
654 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
657/**
658 * skb_copy - create private copy of an sk_buff
659 * @skb: buffer to copy
660 * @gfp_mask: allocation priority
661 *
662 * Make a copy of both an &sk_buff and its data. This is used when the
663 * caller wishes to modify the data and needs a private copy of the
664 * data to alter. Returns %NULL on failure or the pointer to the buffer
665 * on success. The returned buffer has a reference count of 1.
666 *
667 * As by-product this function converts non-linear &sk_buff to linear
668 * one, so that &sk_buff becomes completely private and caller is allowed
669 * to modify all the data of returned buffer. This means that this
670 * function is not recommended for use in circumstances when only
671 * header is going to be modified. Use pskb_copy() instead.
672 */
673
Al Virodd0fc662005-10-07 07:46:04 +0100674struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000676 int headerlen = skb_headroom(skb);
677 unsigned int size = (skb_end_pointer(skb) - skb->head) + skb->data_len;
678 struct sk_buff *n = alloc_skb(size, gfp_mask);
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (!n)
681 return NULL;
682
683 /* Set the data pointer */
684 skb_reserve(n, headerlen);
685 /* Set the tail pointer and length */
686 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
689 BUG();
690
691 copy_skb_header(n, skb);
692 return n;
693}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800694EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696/**
697 * pskb_copy - create copy of an sk_buff with private head.
698 * @skb: buffer to copy
699 * @gfp_mask: allocation priority
700 *
701 * Make a copy of both an &sk_buff and part of its data, located
702 * in header. Fragmented data remain shared. This is used when
703 * the caller wishes to modify only header of &sk_buff and needs
704 * private copy of the header to alter. Returns %NULL on failure
705 * or the pointer to the buffer on success.
706 * The returned buffer has a reference count of 1.
707 */
708
Al Virodd0fc662005-10-07 07:46:04 +0100709struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000711 unsigned int size = skb_end_pointer(skb) - skb->head;
712 struct sk_buff *n = alloc_skb(size, gfp_mask);
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (!n)
715 goto out;
716
717 /* Set the data pointer */
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000718 skb_reserve(n, skb_headroom(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* Set the tail pointer and length */
720 skb_put(n, skb_headlen(skb));
721 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300722 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Herbert Xu25f484a2006-11-07 14:57:15 -0800724 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 n->data_len = skb->data_len;
726 n->len = skb->len;
727
728 if (skb_shinfo(skb)->nr_frags) {
729 int i;
730
731 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
732 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
733 get_page(skb_shinfo(n)->frags[i].page);
734 }
735 skb_shinfo(n)->nr_frags = i;
736 }
737
David S. Miller21dc3302010-08-23 00:13:46 -0700738 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
740 skb_clone_fraglist(n);
741 }
742
743 copy_skb_header(n, skb);
744out:
745 return n;
746}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800747EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749/**
750 * pskb_expand_head - reallocate header of &sk_buff
751 * @skb: buffer to reallocate
752 * @nhead: room to add at head
753 * @ntail: room to add at tail
754 * @gfp_mask: allocation priority
755 *
756 * Expands (or creates identical copy, if &nhead and &ntail are zero)
757 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
758 * reference count of 1. Returns zero in the case of success or error,
759 * if expansion failed. In the last case, &sk_buff is not changed.
760 *
761 * All the pointers pointing into skb header may change and must be
762 * reloaded after call to this function.
763 */
764
Victor Fusco86a76ca2005-07-08 14:57:47 -0700765int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100766 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 int i;
769 u8 *data;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000770 int size = nhead + (skb_end_pointer(skb) - skb->head) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 long off;
Eric Dumazet1fd63042010-09-02 23:09:32 +0000772 bool fastpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Herbert Xu4edd87a2008-10-01 07:09:38 -0700774 BUG_ON(nhead < 0);
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (skb_shared(skb))
777 BUG();
778
779 size = SKB_DATA_ALIGN(size);
780
Changli Gaoca44ac32010-11-29 22:48:46 +0000781 /* Check if we can avoid taking references on fragments if we own
782 * the last reference on skb->head. (see skb_release_data())
783 */
784 if (!skb->cloned)
785 fastpath = true;
786 else {
787 int delta = skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1;
788
789 fastpath = atomic_read(&skb_shinfo(skb)->dataref) == delta;
790 }
791
792 if (fastpath &&
793 size + sizeof(struct skb_shared_info) <= ksize(skb->head)) {
794 memmove(skb->head + size, skb_shinfo(skb),
795 offsetof(struct skb_shared_info,
796 frags[skb_shinfo(skb)->nr_frags]));
797 memmove(skb->head + nhead, skb->head,
798 skb_tail_pointer(skb) - skb->head);
799 off = nhead;
800 goto adjust_others;
801 }
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
804 if (!data)
805 goto nodata;
806
807 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000808 * optimized for the cases when header is void.
809 */
810 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
811
812 memcpy((struct skb_shared_info *)(data + size),
813 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +0000814 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Eric Dumazet1fd63042010-09-02 23:09:32 +0000816 if (fastpath) {
817 kfree(skb->head);
818 } else {
819 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
820 get_page(skb_shinfo(skb)->frags[i].page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Eric Dumazet1fd63042010-09-02 23:09:32 +0000822 if (skb_has_frag_list(skb))
823 skb_clone_fraglist(skb);
824
825 skb_release_data(skb);
826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 off = (data + nhead) - skb->head;
828
829 skb->head = data;
Changli Gaoca44ac32010-11-29 22:48:46 +0000830adjust_others:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700832#ifdef NET_SKBUFF_DATA_USES_OFFSET
833 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700834 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700835#else
836 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700837#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700838 /* {transport,network,mac}_header and tail are relative to skb->head */
839 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700840 skb->transport_header += off;
841 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000842 if (skb_mac_header_was_set(skb))
843 skb->mac_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +0000844 /* Only adjust this if it actually is csum_start rather than csum */
845 if (skb->ip_summed == CHECKSUM_PARTIAL)
846 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;
David S. Millerbe2b6e62010-07-22 13:27:09 -0700933 if (n->ip_summed == CHECKSUM_PARTIAL)
934 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -0700935#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700936 n->transport_header += off;
937 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000938 if (skb_mac_header_was_set(skb))
939 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700940#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return n;
943}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800944EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946/**
947 * skb_pad - zero pad the tail of an skb
948 * @skb: buffer to pad
949 * @pad: space to pad
950 *
951 * Ensure that a buffer is followed by a padding area that is zero
952 * filled. Used by network drivers which may DMA or transfer data
953 * beyond the buffer end onto the wire.
954 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700955 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900957
Herbert Xu5b057c62006-06-23 02:06:41 -0700958int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Herbert Xu5b057c62006-06-23 02:06:41 -0700960 int err;
961 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700964 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700968
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700969 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700970 if (likely(skb_cloned(skb) || ntail > 0)) {
971 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
972 if (unlikely(err))
973 goto free_skb;
974 }
975
976 /* FIXME: The use of this function with non-linear skb's really needs
977 * to be audited.
978 */
979 err = skb_linearize(skb);
980 if (unlikely(err))
981 goto free_skb;
982
983 memset(skb->data + skb->len, 0, pad);
984 return 0;
985
986free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700988 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900989}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800990EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900991
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700992/**
993 * skb_put - add data to a buffer
994 * @skb: buffer to use
995 * @len: amount of data to add
996 *
997 * This function extends the used data area of the buffer. If this would
998 * exceed the total buffer size the kernel will panic. A pointer to the
999 * first byte of the extra data is returned.
1000 */
1001unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1002{
1003 unsigned char *tmp = skb_tail_pointer(skb);
1004 SKB_LINEAR_ASSERT(skb);
1005 skb->tail += len;
1006 skb->len += len;
1007 if (unlikely(skb->tail > skb->end))
1008 skb_over_panic(skb, len, __builtin_return_address(0));
1009 return tmp;
1010}
1011EXPORT_SYMBOL(skb_put);
1012
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001013/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001014 * skb_push - add data to the start of a buffer
1015 * @skb: buffer to use
1016 * @len: amount of data to add
1017 *
1018 * This function extends the used data area of the buffer at the buffer
1019 * start. If this would exceed the total buffer headroom the kernel will
1020 * panic. A pointer to the first byte of the extra data is returned.
1021 */
1022unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1023{
1024 skb->data -= len;
1025 skb->len += len;
1026 if (unlikely(skb->data<skb->head))
1027 skb_under_panic(skb, len, __builtin_return_address(0));
1028 return skb->data;
1029}
1030EXPORT_SYMBOL(skb_push);
1031
1032/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001033 * skb_pull - remove data from the start of a buffer
1034 * @skb: buffer to use
1035 * @len: amount of data to remove
1036 *
1037 * This function removes data from the start of a buffer, returning
1038 * the memory to the headroom. A pointer to the next data in the buffer
1039 * is returned. Once the data has been pulled future pushes will overwrite
1040 * the old data.
1041 */
1042unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1043{
David S. Miller47d29642010-05-02 02:21:44 -07001044 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001045}
1046EXPORT_SYMBOL(skb_pull);
1047
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001048/**
1049 * skb_trim - remove end from a buffer
1050 * @skb: buffer to alter
1051 * @len: new length
1052 *
1053 * Cut the length of a buffer down by removing data from the tail. If
1054 * the buffer is already under the length specified it is not modified.
1055 * The skb must be linear.
1056 */
1057void skb_trim(struct sk_buff *skb, unsigned int len)
1058{
1059 if (skb->len > len)
1060 __skb_trim(skb, len);
1061}
1062EXPORT_SYMBOL(skb_trim);
1063
Herbert Xu3cc0e872006-06-09 16:13:38 -07001064/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
1066
Herbert Xu3cc0e872006-06-09 16:13:38 -07001067int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Herbert Xu27b437c2006-07-13 19:26:39 -07001069 struct sk_buff **fragp;
1070 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 int offset = skb_headlen(skb);
1072 int nfrags = skb_shinfo(skb)->nr_frags;
1073 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001074 int err;
1075
1076 if (skb_cloned(skb) &&
1077 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1078 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001080 i = 0;
1081 if (offset >= len)
1082 goto drop_pages;
1083
1084 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001086
1087 if (end < len) {
1088 offset = end;
1089 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001091
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001092 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001093
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001094drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001095 skb_shinfo(skb)->nr_frags = i;
1096
1097 for (; i < nfrags; i++)
1098 put_page(skb_shinfo(skb)->frags[i].page);
1099
David S. Miller21dc3302010-08-23 00:13:46 -07001100 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001101 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001102 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104
Herbert Xu27b437c2006-07-13 19:26:39 -07001105 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1106 fragp = &frag->next) {
1107 int end = offset + frag->len;
1108
1109 if (skb_shared(frag)) {
1110 struct sk_buff *nfrag;
1111
1112 nfrag = skb_clone(frag, GFP_ATOMIC);
1113 if (unlikely(!nfrag))
1114 return -ENOMEM;
1115
1116 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001117 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001118 frag = nfrag;
1119 *fragp = frag;
1120 }
1121
1122 if (end < len) {
1123 offset = end;
1124 continue;
1125 }
1126
1127 if (end > len &&
1128 unlikely((err = pskb_trim(frag, len - offset))))
1129 return err;
1130
1131 if (frag->next)
1132 skb_drop_list(&frag->next);
1133 break;
1134 }
1135
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001136done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001137 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 skb->data_len -= skb->len - len;
1139 skb->len = len;
1140 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001141 skb->len = len;
1142 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001143 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145
1146 return 0;
1147}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001148EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150/**
1151 * __pskb_pull_tail - advance tail of skb header
1152 * @skb: buffer to reallocate
1153 * @delta: number of bytes to advance tail
1154 *
1155 * The function makes a sense only on a fragmented &sk_buff,
1156 * it expands header moving its tail forward and copying necessary
1157 * data from fragmented part.
1158 *
1159 * &sk_buff MUST have reference count of 1.
1160 *
1161 * Returns %NULL (and &sk_buff does not change) if pull failed
1162 * or value of new tail of skb in the case of success.
1163 *
1164 * All the pointers pointing into skb header may change and must be
1165 * reloaded after call to this function.
1166 */
1167
1168/* Moves tail of skb head forward, copying data from fragmented part,
1169 * when it is necessary.
1170 * 1. It may fail due to malloc failure.
1171 * 2. It may change skb pointers.
1172 *
1173 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1174 */
1175unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1176{
1177 /* If skb has not enough free space at tail, get new one
1178 * plus 128 bytes for future expansions. If we have enough
1179 * room at tail, reallocate without expansion only if skb is cloned.
1180 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001181 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (eat > 0 || skb_cloned(skb)) {
1184 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1185 GFP_ATOMIC))
1186 return NULL;
1187 }
1188
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001189 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 BUG();
1191
1192 /* Optimization: no fragments, no reasons to preestimate
1193 * size of pulled pages. Superb.
1194 */
David S. Miller21dc3302010-08-23 00:13:46 -07001195 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto pull_pages;
1197
1198 /* Estimate size of pulled pages. */
1199 eat = delta;
1200 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1201 if (skb_shinfo(skb)->frags[i].size >= eat)
1202 goto pull_pages;
1203 eat -= skb_shinfo(skb)->frags[i].size;
1204 }
1205
1206 /* If we need update frag list, we are in troubles.
1207 * Certainly, it possible to add an offset to skb data,
1208 * but taking into account that pulling is expected to
1209 * be very rare operation, it is worth to fight against
1210 * further bloating skb head and crucify ourselves here instead.
1211 * Pure masohism, indeed. 8)8)
1212 */
1213 if (eat) {
1214 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1215 struct sk_buff *clone = NULL;
1216 struct sk_buff *insp = NULL;
1217
1218 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001219 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 if (list->len <= eat) {
1222 /* Eaten as whole. */
1223 eat -= list->len;
1224 list = list->next;
1225 insp = list;
1226 } else {
1227 /* Eaten partially. */
1228
1229 if (skb_shared(list)) {
1230 /* Sucks! We need to fork list. :-( */
1231 clone = skb_clone(list, GFP_ATOMIC);
1232 if (!clone)
1233 return NULL;
1234 insp = list->next;
1235 list = clone;
1236 } else {
1237 /* This may be pulled without
1238 * problems. */
1239 insp = list;
1240 }
1241 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001242 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return NULL;
1244 }
1245 break;
1246 }
1247 } while (eat);
1248
1249 /* Free pulled out fragments. */
1250 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1251 skb_shinfo(skb)->frag_list = list->next;
1252 kfree_skb(list);
1253 }
1254 /* And insert new clone at head. */
1255 if (clone) {
1256 clone->next = list;
1257 skb_shinfo(skb)->frag_list = clone;
1258 }
1259 }
1260 /* Success! Now we may commit changes to skb data. */
1261
1262pull_pages:
1263 eat = delta;
1264 k = 0;
1265 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1266 if (skb_shinfo(skb)->frags[i].size <= eat) {
1267 put_page(skb_shinfo(skb)->frags[i].page);
1268 eat -= skb_shinfo(skb)->frags[i].size;
1269 } else {
1270 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1271 if (eat) {
1272 skb_shinfo(skb)->frags[k].page_offset += eat;
1273 skb_shinfo(skb)->frags[k].size -= eat;
1274 eat = 0;
1275 }
1276 k++;
1277 }
1278 }
1279 skb_shinfo(skb)->nr_frags = k;
1280
1281 skb->tail += delta;
1282 skb->data_len -= delta;
1283
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001284 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001286EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288/* Copy some data bits from skb to kernel buffer. */
1289
1290int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1291{
David S. Miller1a028e52007-04-27 15:21:23 -07001292 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001293 struct sk_buff *frag_iter;
1294 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (offset > (int)skb->len - len)
1297 goto fault;
1298
1299 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001300 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (copy > len)
1302 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001303 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if ((len -= copy) == 0)
1305 return 0;
1306 offset += copy;
1307 to += copy;
1308 }
1309
1310 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001311 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001313 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001314
1315 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if ((copy = end - offset) > 0) {
1317 u8 *vaddr;
1318
1319 if (copy > len)
1320 copy = len;
1321
1322 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1323 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001324 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1325 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 kunmap_skb_frag(vaddr);
1327
1328 if ((len -= copy) == 0)
1329 return 0;
1330 offset += copy;
1331 to += copy;
1332 }
David S. Miller1a028e52007-04-27 15:21:23 -07001333 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335
David S. Millerfbb398a2009-06-09 00:18:59 -07001336 skb_walk_frags(skb, frag_iter) {
1337 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
David S. Millerfbb398a2009-06-09 00:18:59 -07001339 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
David S. Millerfbb398a2009-06-09 00:18:59 -07001341 end = start + frag_iter->len;
1342 if ((copy = end - offset) > 0) {
1343 if (copy > len)
1344 copy = len;
1345 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1346 goto fault;
1347 if ((len -= copy) == 0)
1348 return 0;
1349 offset += copy;
1350 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001352 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354 if (!len)
1355 return 0;
1356
1357fault:
1358 return -EFAULT;
1359}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001360EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Jens Axboe9c55e012007-11-06 23:30:13 -08001362/*
1363 * Callback from splice_to_pipe(), if we need to release some pages
1364 * at the end of the spd in case we error'ed out in filling the pipe.
1365 */
1366static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1367{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001368 put_page(spd->pages[i]);
1369}
Jens Axboe9c55e012007-11-06 23:30:13 -08001370
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001371static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1372 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001373 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001374{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001375 struct page *p = sk->sk_sndmsg_page;
1376 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001377
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001378 if (!p) {
1379new_page:
1380 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1381 if (!p)
1382 return NULL;
1383
1384 off = sk->sk_sndmsg_off = 0;
1385 /* hold one ref to this page until it's full */
1386 } else {
1387 unsigned int mlen;
1388
1389 off = sk->sk_sndmsg_off;
1390 mlen = PAGE_SIZE - off;
1391 if (mlen < 64 && mlen < *len) {
1392 put_page(p);
1393 goto new_page;
1394 }
1395
1396 *len = min_t(unsigned int, *len, mlen);
1397 }
1398
1399 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1400 sk->sk_sndmsg_off += *len;
1401 *offset = off;
1402 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001403
1404 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001405}
1406
1407/*
1408 * Fill page/offset/length into spd, if it can hold more pages.
1409 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001410static inline int spd_fill_page(struct splice_pipe_desc *spd,
1411 struct pipe_inode_info *pipe, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001412 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001413 struct sk_buff *skb, int linear,
1414 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001415{
Jens Axboe35f3d142010-05-20 10:43:18 +02001416 if (unlikely(spd->nr_pages == pipe->buffers))
Jens Axboe9c55e012007-11-06 23:30:13 -08001417 return 1;
1418
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001419 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001420 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001421 if (!page)
1422 return 1;
1423 } else
1424 get_page(page);
1425
Jens Axboe9c55e012007-11-06 23:30:13 -08001426 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001427 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001428 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001429 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001430
Jens Axboe9c55e012007-11-06 23:30:13 -08001431 return 0;
1432}
1433
Octavian Purdila2870c432008-07-15 00:49:11 -07001434static inline void __segment_seek(struct page **page, unsigned int *poff,
1435 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001436{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001437 unsigned long n;
1438
Octavian Purdila2870c432008-07-15 00:49:11 -07001439 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001440 n = *poff / PAGE_SIZE;
1441 if (n)
1442 *page = nth_page(*page, n);
1443
Octavian Purdila2870c432008-07-15 00:49:11 -07001444 *poff = *poff % PAGE_SIZE;
1445 *plen -= off;
1446}
Jens Axboe9c55e012007-11-06 23:30:13 -08001447
Octavian Purdila2870c432008-07-15 00:49:11 -07001448static inline int __splice_segment(struct page *page, unsigned int poff,
1449 unsigned int plen, unsigned int *off,
1450 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001451 struct splice_pipe_desc *spd, int linear,
Jens Axboe35f3d142010-05-20 10:43:18 +02001452 struct sock *sk,
1453 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001454{
1455 if (!*len)
1456 return 1;
1457
1458 /* skip this segment if already processed */
1459 if (*off >= plen) {
1460 *off -= plen;
1461 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001462 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001463
Octavian Purdila2870c432008-07-15 00:49:11 -07001464 /* ignore any bits we already processed */
1465 if (*off) {
1466 __segment_seek(&page, &poff, &plen, *off);
1467 *off = 0;
1468 }
1469
1470 do {
1471 unsigned int flen = min(*len, plen);
1472
1473 /* the linear region may spread across several pages */
1474 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1475
Jens Axboe35f3d142010-05-20 10:43:18 +02001476 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001477 return 1;
1478
1479 __segment_seek(&page, &poff, &plen, flen);
1480 *len -= flen;
1481
1482 } while (*len && plen);
1483
1484 return 0;
1485}
1486
1487/*
1488 * Map linear and fragment data from the skb to spd. It reports failure if the
1489 * pipe is full or if we already spliced the requested length.
1490 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001491static int __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1492 unsigned int *offset, unsigned int *len,
1493 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001494{
1495 int seg;
1496
Jens Axboe9c55e012007-11-06 23:30:13 -08001497 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001498 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001499 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001500 if (__splice_segment(virt_to_page(skb->data),
1501 (unsigned long) skb->data & (PAGE_SIZE - 1),
1502 skb_headlen(skb),
Jens Axboe35f3d142010-05-20 10:43:18 +02001503 offset, len, skb, spd, 1, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001504 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001505
1506 /*
1507 * then map the fragments
1508 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001509 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1510 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1511
Octavian Purdila2870c432008-07-15 00:49:11 -07001512 if (__splice_segment(f->page, f->page_offset, f->size,
Jens Axboe35f3d142010-05-20 10:43:18 +02001513 offset, len, skb, spd, 0, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001514 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001515 }
1516
Octavian Purdila2870c432008-07-15 00:49:11 -07001517 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001518}
1519
1520/*
1521 * Map data from the skb to a pipe. Should handle both the linear part,
1522 * the fragments, and the frag list. It does NOT handle frag lists within
1523 * the frag list, if such a thing exists. We'd probably need to recurse to
1524 * handle that cleanly.
1525 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001526int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001527 struct pipe_inode_info *pipe, unsigned int tlen,
1528 unsigned int flags)
1529{
Jens Axboe35f3d142010-05-20 10:43:18 +02001530 struct partial_page partial[PIPE_DEF_BUFFERS];
1531 struct page *pages[PIPE_DEF_BUFFERS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001532 struct splice_pipe_desc spd = {
1533 .pages = pages,
1534 .partial = partial,
1535 .flags = flags,
1536 .ops = &sock_pipe_buf_ops,
1537 .spd_release = sock_spd_release,
1538 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001539 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001540 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001541 int ret = 0;
1542
1543 if (splice_grow_spd(pipe, &spd))
1544 return -ENOMEM;
Jens Axboe9c55e012007-11-06 23:30:13 -08001545
1546 /*
1547 * __skb_splice_bits() only fails if the output has no room left,
1548 * so no point in going over the frag_list for the error case.
1549 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001550 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001551 goto done;
1552 else if (!tlen)
1553 goto done;
1554
1555 /*
1556 * now see if we have a frag_list to map
1557 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001558 skb_walk_frags(skb, frag_iter) {
1559 if (!tlen)
1560 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001561 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001562 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001563 }
1564
1565done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001566 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001567 /*
1568 * Drop the socket lock, otherwise we have reverse
1569 * locking dependencies between sk_lock and i_mutex
1570 * here as compared to sendfile(). We enter here
1571 * with the socket lock held, and splice_to_pipe() will
1572 * grab the pipe inode lock. For sendfile() emulation,
1573 * we call into ->sendpage() with the i_mutex lock held
1574 * and networking will grab the socket lock.
1575 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001576 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001577 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001578 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001579 }
1580
Jens Axboe35f3d142010-05-20 10:43:18 +02001581 splice_shrink_spd(pipe, &spd);
1582 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001583}
1584
Herbert Xu357b40a2005-04-19 22:30:14 -07001585/**
1586 * skb_store_bits - store bits from kernel buffer to skb
1587 * @skb: destination buffer
1588 * @offset: offset in destination
1589 * @from: source buffer
1590 * @len: number of bytes to copy
1591 *
1592 * Copy the specified number of bytes from the source buffer to the
1593 * destination skb. This function handles all the messy bits of
1594 * traversing fragment lists and such.
1595 */
1596
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001597int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001598{
David S. Miller1a028e52007-04-27 15:21:23 -07001599 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001600 struct sk_buff *frag_iter;
1601 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001602
1603 if (offset > (int)skb->len - len)
1604 goto fault;
1605
David S. Miller1a028e52007-04-27 15:21:23 -07001606 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001607 if (copy > len)
1608 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001609 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001610 if ((len -= copy) == 0)
1611 return 0;
1612 offset += copy;
1613 from += copy;
1614 }
1615
1616 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1617 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001618 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001619
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001620 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001621
1622 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001623 if ((copy = end - offset) > 0) {
1624 u8 *vaddr;
1625
1626 if (copy > len)
1627 copy = len;
1628
1629 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001630 memcpy(vaddr + frag->page_offset + offset - start,
1631 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001632 kunmap_skb_frag(vaddr);
1633
1634 if ((len -= copy) == 0)
1635 return 0;
1636 offset += copy;
1637 from += copy;
1638 }
David S. Miller1a028e52007-04-27 15:21:23 -07001639 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001640 }
1641
David S. Millerfbb398a2009-06-09 00:18:59 -07001642 skb_walk_frags(skb, frag_iter) {
1643 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001644
David S. Millerfbb398a2009-06-09 00:18:59 -07001645 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001646
David S. Millerfbb398a2009-06-09 00:18:59 -07001647 end = start + frag_iter->len;
1648 if ((copy = end - offset) > 0) {
1649 if (copy > len)
1650 copy = len;
1651 if (skb_store_bits(frag_iter, offset - start,
1652 from, copy))
1653 goto fault;
1654 if ((len -= copy) == 0)
1655 return 0;
1656 offset += copy;
1657 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001658 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001659 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001660 }
1661 if (!len)
1662 return 0;
1663
1664fault:
1665 return -EFAULT;
1666}
Herbert Xu357b40a2005-04-19 22:30:14 -07001667EXPORT_SYMBOL(skb_store_bits);
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669/* Checksum skb data. */
1670
Al Viro2bbbc862006-11-14 21:37:14 -08001671__wsum skb_checksum(const struct sk_buff *skb, int offset,
1672 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
David S. Miller1a028e52007-04-27 15:21:23 -07001674 int start = skb_headlen(skb);
1675 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001676 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 int pos = 0;
1678
1679 /* Checksum header. */
1680 if (copy > 0) {
1681 if (copy > len)
1682 copy = len;
1683 csum = csum_partial(skb->data + offset, copy, csum);
1684 if ((len -= copy) == 0)
1685 return csum;
1686 offset += copy;
1687 pos = copy;
1688 }
1689
1690 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001691 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001693 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001694
1695 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001697 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 u8 *vaddr;
1699 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1700
1701 if (copy > len)
1702 copy = len;
1703 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001704 csum2 = csum_partial(vaddr + frag->page_offset +
1705 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 kunmap_skb_frag(vaddr);
1707 csum = csum_block_add(csum, csum2, pos);
1708 if (!(len -= copy))
1709 return csum;
1710 offset += copy;
1711 pos += copy;
1712 }
David S. Miller1a028e52007-04-27 15:21:23 -07001713 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
1715
David S. Millerfbb398a2009-06-09 00:18:59 -07001716 skb_walk_frags(skb, frag_iter) {
1717 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
David S. Millerfbb398a2009-06-09 00:18:59 -07001719 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
David S. Millerfbb398a2009-06-09 00:18:59 -07001721 end = start + frag_iter->len;
1722 if ((copy = end - offset) > 0) {
1723 __wsum csum2;
1724 if (copy > len)
1725 copy = len;
1726 csum2 = skb_checksum(frag_iter, offset - start,
1727 copy, 0);
1728 csum = csum_block_add(csum, csum2, pos);
1729 if ((len -= copy) == 0)
1730 return csum;
1731 offset += copy;
1732 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001734 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001736 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 return csum;
1739}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001740EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742/* Both of above in one bottle. */
1743
Al Viro81d77662006-11-14 21:37:33 -08001744__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1745 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
David S. Miller1a028e52007-04-27 15:21:23 -07001747 int start = skb_headlen(skb);
1748 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001749 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int pos = 0;
1751
1752 /* Copy header. */
1753 if (copy > 0) {
1754 if (copy > len)
1755 copy = len;
1756 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1757 copy, csum);
1758 if ((len -= copy) == 0)
1759 return csum;
1760 offset += copy;
1761 to += copy;
1762 pos = copy;
1763 }
1764
1765 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001766 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001768 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001769
1770 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001772 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 u8 *vaddr;
1774 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1775
1776 if (copy > len)
1777 copy = len;
1778 vaddr = kmap_skb_frag(frag);
1779 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001780 frag->page_offset +
1781 offset - start, to,
1782 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 kunmap_skb_frag(vaddr);
1784 csum = csum_block_add(csum, csum2, pos);
1785 if (!(len -= copy))
1786 return csum;
1787 offset += copy;
1788 to += copy;
1789 pos += copy;
1790 }
David S. Miller1a028e52007-04-27 15:21:23 -07001791 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
1793
David S. Millerfbb398a2009-06-09 00:18:59 -07001794 skb_walk_frags(skb, frag_iter) {
1795 __wsum csum2;
1796 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
David S. Millerfbb398a2009-06-09 00:18:59 -07001798 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
David S. Millerfbb398a2009-06-09 00:18:59 -07001800 end = start + frag_iter->len;
1801 if ((copy = end - offset) > 0) {
1802 if (copy > len)
1803 copy = len;
1804 csum2 = skb_copy_and_csum_bits(frag_iter,
1805 offset - start,
1806 to, copy, 0);
1807 csum = csum_block_add(csum, csum2, pos);
1808 if ((len -= copy) == 0)
1809 return csum;
1810 offset += copy;
1811 to += copy;
1812 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001814 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001816 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return csum;
1818}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001819EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1822{
Al Virod3bc23e2006-11-14 21:24:49 -08001823 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 long csstart;
1825
Patrick McHardy84fa7932006-08-29 16:44:56 -07001826 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00001827 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 else
1829 csstart = skb_headlen(skb);
1830
Kris Katterjohn09a62662006-01-08 22:24:28 -08001831 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001833 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 csum = 0;
1836 if (csstart != skb->len)
1837 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1838 skb->len - csstart, 0);
1839
Patrick McHardy84fa7932006-08-29 16:44:56 -07001840 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001841 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Al Virod3bc23e2006-11-14 21:24:49 -08001843 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001846EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848/**
1849 * skb_dequeue - remove from the head of the queue
1850 * @list: list to dequeue from
1851 *
1852 * Remove the head of the list. The list lock is taken so the function
1853 * may be used safely with other locking list functions. The head item is
1854 * returned or %NULL if the list is empty.
1855 */
1856
1857struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1858{
1859 unsigned long flags;
1860 struct sk_buff *result;
1861
1862 spin_lock_irqsave(&list->lock, flags);
1863 result = __skb_dequeue(list);
1864 spin_unlock_irqrestore(&list->lock, flags);
1865 return result;
1866}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001867EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869/**
1870 * skb_dequeue_tail - remove from the tail of the queue
1871 * @list: list to dequeue from
1872 *
1873 * Remove the tail of the list. The list lock is taken so the function
1874 * may be used safely with other locking list functions. The tail item is
1875 * returned or %NULL if the list is empty.
1876 */
1877struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1878{
1879 unsigned long flags;
1880 struct sk_buff *result;
1881
1882 spin_lock_irqsave(&list->lock, flags);
1883 result = __skb_dequeue_tail(list);
1884 spin_unlock_irqrestore(&list->lock, flags);
1885 return result;
1886}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001887EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889/**
1890 * skb_queue_purge - empty a list
1891 * @list: list to empty
1892 *
1893 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1894 * the list and one reference dropped. This function takes the list
1895 * lock and is atomic with respect to other list locking functions.
1896 */
1897void skb_queue_purge(struct sk_buff_head *list)
1898{
1899 struct sk_buff *skb;
1900 while ((skb = skb_dequeue(list)) != NULL)
1901 kfree_skb(skb);
1902}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001903EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905/**
1906 * skb_queue_head - queue a buffer at the list head
1907 * @list: list to use
1908 * @newsk: buffer to queue
1909 *
1910 * Queue a buffer at the start of the list. This function takes the
1911 * list lock and can be used safely with other locking &sk_buff functions
1912 * safely.
1913 *
1914 * A buffer cannot be placed on two lists at the same time.
1915 */
1916void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1917{
1918 unsigned long flags;
1919
1920 spin_lock_irqsave(&list->lock, flags);
1921 __skb_queue_head(list, newsk);
1922 spin_unlock_irqrestore(&list->lock, flags);
1923}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001924EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926/**
1927 * skb_queue_tail - queue a buffer at the list tail
1928 * @list: list to use
1929 * @newsk: buffer to queue
1930 *
1931 * Queue a buffer at the tail of the list. This function takes the
1932 * list lock and can be used safely with other locking &sk_buff functions
1933 * safely.
1934 *
1935 * A buffer cannot be placed on two lists at the same time.
1936 */
1937void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1938{
1939 unsigned long flags;
1940
1941 spin_lock_irqsave(&list->lock, flags);
1942 __skb_queue_tail(list, newsk);
1943 spin_unlock_irqrestore(&list->lock, flags);
1944}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001945EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947/**
1948 * skb_unlink - remove a buffer from a list
1949 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001950 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 *
David S. Miller8728b832005-08-09 19:25:21 -07001952 * Remove a packet from a list. The list locks are taken and this
1953 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 *
David S. Miller8728b832005-08-09 19:25:21 -07001955 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 */
David S. Miller8728b832005-08-09 19:25:21 -07001957void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
David S. Miller8728b832005-08-09 19:25:21 -07001959 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
David S. Miller8728b832005-08-09 19:25:21 -07001961 spin_lock_irqsave(&list->lock, flags);
1962 __skb_unlink(skb, list);
1963 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001965EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/**
1968 * skb_append - append a buffer
1969 * @old: buffer to insert after
1970 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001971 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 *
1973 * Place a packet after a given packet in a list. The list locks are taken
1974 * and this function is atomic with respect to other list locked calls.
1975 * A buffer cannot be placed on two lists at the same time.
1976 */
David S. Miller8728b832005-08-09 19:25:21 -07001977void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 unsigned long flags;
1980
David S. Miller8728b832005-08-09 19:25:21 -07001981 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001982 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001983 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001985EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987/**
1988 * skb_insert - insert a buffer
1989 * @old: buffer to insert before
1990 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001991 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 *
David S. Miller8728b832005-08-09 19:25:21 -07001993 * Place a packet before a given packet in a list. The list locks are
1994 * taken and this function is atomic with respect to other list locked
1995 * calls.
1996 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * A buffer cannot be placed on two lists at the same time.
1998 */
David S. Miller8728b832005-08-09 19:25:21 -07001999void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 unsigned long flags;
2002
David S. Miller8728b832005-08-09 19:25:21 -07002003 spin_lock_irqsave(&list->lock, flags);
2004 __skb_insert(newsk, old->prev, old, list);
2005 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002007EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009static inline void skb_split_inside_header(struct sk_buff *skb,
2010 struct sk_buff* skb1,
2011 const u32 len, const int pos)
2012{
2013 int i;
2014
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002015 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2016 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /* And move data appendix as is. */
2018 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2019 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2020
2021 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2022 skb_shinfo(skb)->nr_frags = 0;
2023 skb1->data_len = skb->data_len;
2024 skb1->len += skb1->data_len;
2025 skb->data_len = 0;
2026 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002027 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
2030static inline void skb_split_no_header(struct sk_buff *skb,
2031 struct sk_buff* skb1,
2032 const u32 len, int pos)
2033{
2034 int i, k = 0;
2035 const int nfrags = skb_shinfo(skb)->nr_frags;
2036
2037 skb_shinfo(skb)->nr_frags = 0;
2038 skb1->len = skb1->data_len = skb->len - len;
2039 skb->len = len;
2040 skb->data_len = len - pos;
2041
2042 for (i = 0; i < nfrags; i++) {
2043 int size = skb_shinfo(skb)->frags[i].size;
2044
2045 if (pos + size > len) {
2046 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2047
2048 if (pos < len) {
2049 /* Split frag.
2050 * We have two variants in this case:
2051 * 1. Move all the frag to the second
2052 * part, if it is possible. F.e.
2053 * this approach is mandatory for TUX,
2054 * where splitting is expensive.
2055 * 2. Split is accurately. We make this.
2056 */
2057 get_page(skb_shinfo(skb)->frags[i].page);
2058 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2059 skb_shinfo(skb1)->frags[0].size -= len - pos;
2060 skb_shinfo(skb)->frags[i].size = len - pos;
2061 skb_shinfo(skb)->nr_frags++;
2062 }
2063 k++;
2064 } else
2065 skb_shinfo(skb)->nr_frags++;
2066 pos += size;
2067 }
2068 skb_shinfo(skb1)->nr_frags = k;
2069}
2070
2071/**
2072 * skb_split - Split fragmented skb to two parts at length len.
2073 * @skb: the buffer to split
2074 * @skb1: the buffer to receive the second part
2075 * @len: new length for skb
2076 */
2077void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2078{
2079 int pos = skb_headlen(skb);
2080
2081 if (len < pos) /* Split line is inside header. */
2082 skb_split_inside_header(skb, skb1, len, pos);
2083 else /* Second chunk has no header, nothing to copy. */
2084 skb_split_no_header(skb, skb1, len, pos);
2085}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002086EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002088/* Shifting from/to a cloned skb is a no-go.
2089 *
2090 * Caller cannot keep skb_shinfo related pointers past calling here!
2091 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002092static int skb_prepare_for_shift(struct sk_buff *skb)
2093{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002094 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002095}
2096
2097/**
2098 * skb_shift - Shifts paged data partially from skb to another
2099 * @tgt: buffer into which tail data gets added
2100 * @skb: buffer from which the paged data comes from
2101 * @shiftlen: shift up to this many bytes
2102 *
2103 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2104 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2105 * It's up to caller to free skb if everything was shifted.
2106 *
2107 * If @tgt runs out of frags, the whole operation is aborted.
2108 *
2109 * Skb cannot include anything else but paged data while tgt is allowed
2110 * to have non-paged data as well.
2111 *
2112 * TODO: full sized shift could be optimized but that would need
2113 * specialized skb free'er to handle frags without up-to-date nr_frags.
2114 */
2115int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2116{
2117 int from, to, merge, todo;
2118 struct skb_frag_struct *fragfrom, *fragto;
2119
2120 BUG_ON(shiftlen > skb->len);
2121 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2122
2123 todo = shiftlen;
2124 from = 0;
2125 to = skb_shinfo(tgt)->nr_frags;
2126 fragfrom = &skb_shinfo(skb)->frags[from];
2127
2128 /* Actual merge is delayed until the point when we know we can
2129 * commit all, so that we don't have to undo partial changes
2130 */
2131 if (!to ||
2132 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2133 merge = -1;
2134 } else {
2135 merge = to - 1;
2136
2137 todo -= fragfrom->size;
2138 if (todo < 0) {
2139 if (skb_prepare_for_shift(skb) ||
2140 skb_prepare_for_shift(tgt))
2141 return 0;
2142
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002143 /* All previous frag pointers might be stale! */
2144 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002145 fragto = &skb_shinfo(tgt)->frags[merge];
2146
2147 fragto->size += shiftlen;
2148 fragfrom->size -= shiftlen;
2149 fragfrom->page_offset += shiftlen;
2150
2151 goto onlymerged;
2152 }
2153
2154 from++;
2155 }
2156
2157 /* Skip full, not-fitting skb to avoid expensive operations */
2158 if ((shiftlen == skb->len) &&
2159 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2160 return 0;
2161
2162 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2163 return 0;
2164
2165 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2166 if (to == MAX_SKB_FRAGS)
2167 return 0;
2168
2169 fragfrom = &skb_shinfo(skb)->frags[from];
2170 fragto = &skb_shinfo(tgt)->frags[to];
2171
2172 if (todo >= fragfrom->size) {
2173 *fragto = *fragfrom;
2174 todo -= fragfrom->size;
2175 from++;
2176 to++;
2177
2178 } else {
2179 get_page(fragfrom->page);
2180 fragto->page = fragfrom->page;
2181 fragto->page_offset = fragfrom->page_offset;
2182 fragto->size = todo;
2183
2184 fragfrom->page_offset += todo;
2185 fragfrom->size -= todo;
2186 todo = 0;
2187
2188 to++;
2189 break;
2190 }
2191 }
2192
2193 /* Ready to "commit" this state change to tgt */
2194 skb_shinfo(tgt)->nr_frags = to;
2195
2196 if (merge >= 0) {
2197 fragfrom = &skb_shinfo(skb)->frags[0];
2198 fragto = &skb_shinfo(tgt)->frags[merge];
2199
2200 fragto->size += fragfrom->size;
2201 put_page(fragfrom->page);
2202 }
2203
2204 /* Reposition in the original skb */
2205 to = 0;
2206 while (from < skb_shinfo(skb)->nr_frags)
2207 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2208 skb_shinfo(skb)->nr_frags = to;
2209
2210 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2211
2212onlymerged:
2213 /* Most likely the tgt won't ever need its checksum anymore, skb on
2214 * the other hand might need it if it needs to be resent
2215 */
2216 tgt->ip_summed = CHECKSUM_PARTIAL;
2217 skb->ip_summed = CHECKSUM_PARTIAL;
2218
2219 /* Yak, is it really working this way? Some helper please? */
2220 skb->len -= shiftlen;
2221 skb->data_len -= shiftlen;
2222 skb->truesize -= shiftlen;
2223 tgt->len += shiftlen;
2224 tgt->data_len += shiftlen;
2225 tgt->truesize += shiftlen;
2226
2227 return shiftlen;
2228}
2229
Thomas Graf677e90e2005-06-23 20:59:51 -07002230/**
2231 * skb_prepare_seq_read - Prepare a sequential read of skb data
2232 * @skb: the buffer to read
2233 * @from: lower offset of data to be read
2234 * @to: upper offset of data to be read
2235 * @st: state variable
2236 *
2237 * Initializes the specified state variable. Must be called before
2238 * invoking skb_seq_read() for the first time.
2239 */
2240void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2241 unsigned int to, struct skb_seq_state *st)
2242{
2243 st->lower_offset = from;
2244 st->upper_offset = to;
2245 st->root_skb = st->cur_skb = skb;
2246 st->frag_idx = st->stepped_offset = 0;
2247 st->frag_data = NULL;
2248}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002249EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002250
2251/**
2252 * skb_seq_read - Sequentially read skb data
2253 * @consumed: number of bytes consumed by the caller so far
2254 * @data: destination pointer for data to be returned
2255 * @st: state variable
2256 *
2257 * Reads a block of skb data at &consumed relative to the
2258 * lower offset specified to skb_prepare_seq_read(). Assigns
2259 * the head of the data block to &data and returns the length
2260 * of the block or 0 if the end of the skb data or the upper
2261 * offset has been reached.
2262 *
2263 * The caller is not required to consume all of the data
2264 * returned, i.e. &consumed is typically set to the number
2265 * of bytes already consumed and the next call to
2266 * skb_seq_read() will return the remaining part of the block.
2267 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002268 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002269 * this limitation is the cost for zerocopy seqeuental
2270 * reads of potentially non linear data.
2271 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002272 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002273 * at the moment, state->root_skb could be replaced with
2274 * a stack for this purpose.
2275 */
2276unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2277 struct skb_seq_state *st)
2278{
2279 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2280 skb_frag_t *frag;
2281
2282 if (unlikely(abs_offset >= st->upper_offset))
2283 return 0;
2284
2285next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002286 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002287
Thomas Chenault995b3372009-05-18 21:43:27 -07002288 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002289 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002290 return block_limit - abs_offset;
2291 }
2292
2293 if (st->frag_idx == 0 && !st->frag_data)
2294 st->stepped_offset += skb_headlen(st->cur_skb);
2295
2296 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2297 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2298 block_limit = frag->size + st->stepped_offset;
2299
2300 if (abs_offset < block_limit) {
2301 if (!st->frag_data)
2302 st->frag_data = kmap_skb_frag(frag);
2303
2304 *data = (u8 *) st->frag_data + frag->page_offset +
2305 (abs_offset - st->stepped_offset);
2306
2307 return block_limit - abs_offset;
2308 }
2309
2310 if (st->frag_data) {
2311 kunmap_skb_frag(st->frag_data);
2312 st->frag_data = NULL;
2313 }
2314
2315 st->frag_idx++;
2316 st->stepped_offset += frag->size;
2317 }
2318
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002319 if (st->frag_data) {
2320 kunmap_skb_frag(st->frag_data);
2321 st->frag_data = NULL;
2322 }
2323
David S. Miller21dc3302010-08-23 00:13:46 -07002324 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002325 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002326 st->frag_idx = 0;
2327 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002328 } else if (st->cur_skb->next) {
2329 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002330 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002331 goto next_skb;
2332 }
2333
2334 return 0;
2335}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002336EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002337
2338/**
2339 * skb_abort_seq_read - Abort a sequential read of skb data
2340 * @st: state variable
2341 *
2342 * Must be called if skb_seq_read() was not called until it
2343 * returned 0.
2344 */
2345void skb_abort_seq_read(struct skb_seq_state *st)
2346{
2347 if (st->frag_data)
2348 kunmap_skb_frag(st->frag_data);
2349}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002350EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002351
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002352#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2353
2354static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2355 struct ts_config *conf,
2356 struct ts_state *state)
2357{
2358 return skb_seq_read(offset, text, TS_SKB_CB(state));
2359}
2360
2361static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2362{
2363 skb_abort_seq_read(TS_SKB_CB(state));
2364}
2365
2366/**
2367 * skb_find_text - Find a text pattern in skb data
2368 * @skb: the buffer to look in
2369 * @from: search offset
2370 * @to: search limit
2371 * @config: textsearch configuration
2372 * @state: uninitialized textsearch state variable
2373 *
2374 * Finds a pattern in the skb data according to the specified
2375 * textsearch configuration. Use textsearch_next() to retrieve
2376 * subsequent occurrences of the pattern. Returns the offset
2377 * to the first occurrence or UINT_MAX if no match was found.
2378 */
2379unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2380 unsigned int to, struct ts_config *config,
2381 struct ts_state *state)
2382{
Phil Oesterf72b9482006-06-26 00:00:57 -07002383 unsigned int ret;
2384
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002385 config->get_next_block = skb_ts_get_next_block;
2386 config->finish = skb_ts_finish;
2387
2388 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2389
Phil Oesterf72b9482006-06-26 00:00:57 -07002390 ret = textsearch_find(config, state);
2391 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002392}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002393EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002394
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002395/**
2396 * skb_append_datato_frags: - append the user data to a skb
2397 * @sk: sock structure
2398 * @skb: skb structure to be appened with user data.
2399 * @getfrag: call back function to be used for getting the user data
2400 * @from: pointer to user message iov
2401 * @length: length of the iov message
2402 *
2403 * Description: This procedure append the user data in the fragment part
2404 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2405 */
2406int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002407 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002408 int len, int odd, struct sk_buff *skb),
2409 void *from, int length)
2410{
2411 int frg_cnt = 0;
2412 skb_frag_t *frag = NULL;
2413 struct page *page = NULL;
2414 int copy, left;
2415 int offset = 0;
2416 int ret;
2417
2418 do {
2419 /* Return error if we don't have space for new frag */
2420 frg_cnt = skb_shinfo(skb)->nr_frags;
2421 if (frg_cnt >= MAX_SKB_FRAGS)
2422 return -EFAULT;
2423
2424 /* allocate a new page for next frag */
2425 page = alloc_pages(sk->sk_allocation, 0);
2426
2427 /* If alloc_page fails just return failure and caller will
2428 * free previous allocated pages by doing kfree_skb()
2429 */
2430 if (page == NULL)
2431 return -ENOMEM;
2432
2433 /* initialize the next frag */
2434 sk->sk_sndmsg_page = page;
2435 sk->sk_sndmsg_off = 0;
2436 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2437 skb->truesize += PAGE_SIZE;
2438 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2439
2440 /* get the new initialized frag */
2441 frg_cnt = skb_shinfo(skb)->nr_frags;
2442 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2443
2444 /* copy the user data to page */
2445 left = PAGE_SIZE - frag->page_offset;
2446 copy = (length > left)? left : length;
2447
2448 ret = getfrag(from, (page_address(frag->page) +
2449 frag->page_offset + frag->size),
2450 offset, copy, 0, skb);
2451 if (ret < 0)
2452 return -EFAULT;
2453
2454 /* copy was successful so update the size parameters */
2455 sk->sk_sndmsg_off += copy;
2456 frag->size += copy;
2457 skb->len += copy;
2458 skb->data_len += copy;
2459 offset += copy;
2460 length -= copy;
2461
2462 } while (length > 0);
2463
2464 return 0;
2465}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002466EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002467
Herbert Xucbb042f2006-03-20 22:43:56 -08002468/**
2469 * skb_pull_rcsum - pull skb and update receive checksum
2470 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002471 * @len: length of data pulled
2472 *
2473 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002474 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002475 * receive path processing instead of skb_pull unless you know
2476 * that the checksum difference is zero (e.g., a valid IP header)
2477 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002478 */
2479unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2480{
2481 BUG_ON(len > skb->len);
2482 skb->len -= len;
2483 BUG_ON(skb->len < skb->data_len);
2484 skb_postpull_rcsum(skb, skb->data, len);
2485 return skb->data += len;
2486}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002487EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2488
Herbert Xuf4c50d92006-06-22 03:02:40 -07002489/**
2490 * skb_segment - Perform protocol segmentation on skb.
2491 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002492 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002493 *
2494 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002495 * a pointer to the first in a list of new skbs for the segments.
2496 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002497 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002498struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002499{
2500 struct sk_buff *segs = NULL;
2501 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002502 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002503 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002504 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002505 unsigned int offset = doffset;
2506 unsigned int headroom;
2507 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002508 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002509 int nfrags = skb_shinfo(skb)->nr_frags;
2510 int err = -ENOMEM;
2511 int i = 0;
2512 int pos;
2513
2514 __skb_push(skb, doffset);
2515 headroom = skb_headroom(skb);
2516 pos = skb_headlen(skb);
2517
2518 do {
2519 struct sk_buff *nskb;
2520 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002521 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002522 int size;
2523
2524 len = skb->len - offset;
2525 if (len > mss)
2526 len = mss;
2527
2528 hsize = skb_headlen(skb) - offset;
2529 if (hsize < 0)
2530 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002531 if (hsize > len || !sg)
2532 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002533
Herbert Xu89319d382008-12-15 23:26:06 -08002534 if (!hsize && i >= nfrags) {
2535 BUG_ON(fskb->len != len);
2536
2537 pos += len;
2538 nskb = skb_clone(fskb, GFP_ATOMIC);
2539 fskb = fskb->next;
2540
2541 if (unlikely(!nskb))
2542 goto err;
2543
2544 hsize = skb_end_pointer(nskb) - nskb->head;
2545 if (skb_cow_head(nskb, doffset + headroom)) {
2546 kfree_skb(nskb);
2547 goto err;
2548 }
2549
2550 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2551 hsize;
2552 skb_release_head_state(nskb);
2553 __skb_push(nskb, doffset);
2554 } else {
2555 nskb = alloc_skb(hsize + doffset + headroom,
2556 GFP_ATOMIC);
2557
2558 if (unlikely(!nskb))
2559 goto err;
2560
2561 skb_reserve(nskb, headroom);
2562 __skb_put(nskb, doffset);
2563 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002564
2565 if (segs)
2566 tail->next = nskb;
2567 else
2568 segs = nskb;
2569 tail = nskb;
2570
Herbert Xu6f85a122008-08-15 14:55:02 -07002571 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002572 nskb->mac_len = skb->mac_len;
2573
Eric Dumazet3d3be432010-09-01 00:50:51 +00002574 /* nskb and skb might have different headroom */
2575 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2576 nskb->csum_start += skb_headroom(nskb) - headroom;
2577
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002578 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002579 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002580 nskb->transport_header = (nskb->network_header +
2581 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002582 skb_copy_from_linear_data(skb, nskb->data, doffset);
2583
Herbert Xu2f181852009-03-28 23:39:18 -07002584 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002585 continue;
2586
Herbert Xuf4c50d92006-06-22 03:02:40 -07002587 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002588 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002589 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2590 skb_put(nskb, len),
2591 len, 0);
2592 continue;
2593 }
2594
2595 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002596
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002597 skb_copy_from_linear_data_offset(skb, offset,
2598 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002599
Herbert Xu89319d382008-12-15 23:26:06 -08002600 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002601 *frag = skb_shinfo(skb)->frags[i];
2602 get_page(frag->page);
2603 size = frag->size;
2604
2605 if (pos < offset) {
2606 frag->page_offset += offset - pos;
2607 frag->size -= offset - pos;
2608 }
2609
Herbert Xu89319d382008-12-15 23:26:06 -08002610 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002611
2612 if (pos + size <= offset + len) {
2613 i++;
2614 pos += size;
2615 } else {
2616 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002617 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002618 }
2619
2620 frag++;
2621 }
2622
Herbert Xu89319d382008-12-15 23:26:06 -08002623 if (pos < offset + len) {
2624 struct sk_buff *fskb2 = fskb;
2625
2626 BUG_ON(pos + fskb->len != offset + len);
2627
2628 pos += fskb->len;
2629 fskb = fskb->next;
2630
2631 if (fskb2->next) {
2632 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2633 if (!fskb2)
2634 goto err;
2635 } else
2636 skb_get(fskb2);
2637
David S. Millerfbb398a2009-06-09 00:18:59 -07002638 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002639 skb_shinfo(nskb)->frag_list = fskb2;
2640 }
2641
2642skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002643 nskb->data_len = len - hsize;
2644 nskb->len += nskb->data_len;
2645 nskb->truesize += nskb->data_len;
2646 } while ((offset += len) < skb->len);
2647
2648 return segs;
2649
2650err:
2651 while ((skb = segs)) {
2652 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002653 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002654 }
2655 return ERR_PTR(err);
2656}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002657EXPORT_SYMBOL_GPL(skb_segment);
2658
Herbert Xu71d93b32008-12-15 23:42:33 -08002659int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2660{
2661 struct sk_buff *p = *head;
2662 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002663 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2664 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002665 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002666 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002667 unsigned int offset = skb_gro_offset(skb);
2668 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002669
Herbert Xu86911732009-01-29 14:19:50 +00002670 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002671 return -E2BIG;
2672
Herbert Xu9aaa1562009-05-26 18:50:33 +00002673 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002674 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002675 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002676 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002677 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002678 int i = skbinfo->nr_frags;
2679 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002680
Herbert Xu66e92fc2009-05-26 18:50:32 +00002681 offset -= headlen;
2682
2683 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002684 return -E2BIG;
2685
Herbert Xu9aaa1562009-05-26 18:50:33 +00002686 pinfo->nr_frags = nr_frags;
2687 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002688
Herbert Xu9aaa1562009-05-26 18:50:33 +00002689 frag = pinfo->frags + nr_frags;
2690 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002691 do {
2692 *--frag = *--frag2;
2693 } while (--i);
2694
2695 frag->page_offset += offset;
2696 frag->size -= offset;
2697
Herbert Xuf5572062009-01-14 20:40:03 -08002698 skb->truesize -= skb->data_len;
2699 skb->len -= skb->data_len;
2700 skb->data_len = 0;
2701
Herbert Xu5d38a072009-01-04 16:13:40 -08002702 NAPI_GRO_CB(skb)->free = 1;
2703 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002704 } else if (skb_gro_len(p) != pinfo->gso_size)
2705 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002706
2707 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002708 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002709 if (unlikely(!nskb))
2710 return -ENOMEM;
2711
2712 __copy_skb_header(nskb, p);
2713 nskb->mac_len = p->mac_len;
2714
2715 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002716 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002717
Herbert Xu86911732009-01-29 14:19:50 +00002718 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002719 skb_set_network_header(nskb, skb_network_offset(p));
2720 skb_set_transport_header(nskb, skb_transport_offset(p));
2721
Herbert Xu86911732009-01-29 14:19:50 +00002722 __skb_pull(p, skb_gro_offset(p));
2723 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2724 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002725
2726 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2727 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002728 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07002729 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08002730 skb_header_release(p);
2731 nskb->prev = p;
2732
2733 nskb->data_len += p->len;
2734 nskb->truesize += p->len;
2735 nskb->len += p->len;
2736
2737 *head = nskb;
2738 nskb->next = p->next;
2739 p->next = NULL;
2740
2741 p = nskb;
2742
2743merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002744 if (offset > headlen) {
Herbert Xu9aaa1562009-05-26 18:50:33 +00002745 skbinfo->frags[0].page_offset += offset - headlen;
2746 skbinfo->frags[0].size -= offset - headlen;
Herbert Xu67147ba2009-05-26 18:50:22 +00002747 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002748 }
2749
Herbert Xu67147ba2009-05-26 18:50:22 +00002750 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002751
Herbert Xu71d93b32008-12-15 23:42:33 -08002752 p->prev->next = skb;
2753 p->prev = skb;
2754 skb_header_release(skb);
2755
Herbert Xu5d38a072009-01-04 16:13:40 -08002756done:
2757 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002758 p->data_len += len;
2759 p->truesize += len;
2760 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002761
2762 NAPI_GRO_CB(skb)->same_flow = 1;
2763 return 0;
2764}
2765EXPORT_SYMBOL_GPL(skb_gro_receive);
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767void __init skb_init(void)
2768{
2769 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2770 sizeof(struct sk_buff),
2771 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002772 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002773 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002774 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2775 (2*sizeof(struct sk_buff)) +
2776 sizeof(atomic_t),
2777 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002778 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002779 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
David Howells716ea3a2007-04-02 20:19:53 -07002782/**
2783 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2784 * @skb: Socket buffer containing the buffers to be mapped
2785 * @sg: The scatter-gather list to map into
2786 * @offset: The offset into the buffer's contents to start mapping
2787 * @len: Length of buffer space to be mapped
2788 *
2789 * Fill the specified scatter-gather list with mappings/pointers into a
2790 * region of the buffer space attached to a socket buffer.
2791 */
David S. Miller51c739d2007-10-30 21:29:29 -07002792static int
2793__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002794{
David S. Miller1a028e52007-04-27 15:21:23 -07002795 int start = skb_headlen(skb);
2796 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002797 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002798 int elt = 0;
2799
2800 if (copy > 0) {
2801 if (copy > len)
2802 copy = len;
Jens Axboe642f149032007-10-24 11:20:47 +02002803 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002804 elt++;
2805 if ((len -= copy) == 0)
2806 return elt;
2807 offset += copy;
2808 }
2809
2810 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002811 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002812
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002813 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002814
2815 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002816 if ((copy = end - offset) > 0) {
2817 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2818
2819 if (copy > len)
2820 copy = len;
Jens Axboe642f149032007-10-24 11:20:47 +02002821 sg_set_page(&sg[elt], frag->page, copy,
2822 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002823 elt++;
2824 if (!(len -= copy))
2825 return elt;
2826 offset += copy;
2827 }
David S. Miller1a028e52007-04-27 15:21:23 -07002828 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002829 }
2830
David S. Millerfbb398a2009-06-09 00:18:59 -07002831 skb_walk_frags(skb, frag_iter) {
2832 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002833
David S. Millerfbb398a2009-06-09 00:18:59 -07002834 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002835
David S. Millerfbb398a2009-06-09 00:18:59 -07002836 end = start + frag_iter->len;
2837 if ((copy = end - offset) > 0) {
2838 if (copy > len)
2839 copy = len;
2840 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2841 copy);
2842 if ((len -= copy) == 0)
2843 return elt;
2844 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002845 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002846 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002847 }
2848 BUG_ON(len);
2849 return elt;
2850}
2851
David S. Miller51c739d2007-10-30 21:29:29 -07002852int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2853{
2854 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2855
Jens Axboec46f2332007-10-31 12:06:37 +01002856 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002857
2858 return nsg;
2859}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002860EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002861
David Howells716ea3a2007-04-02 20:19:53 -07002862/**
2863 * skb_cow_data - Check that a socket buffer's data buffers are writable
2864 * @skb: The socket buffer to check.
2865 * @tailbits: Amount of trailing space to be added
2866 * @trailer: Returned pointer to the skb where the @tailbits space begins
2867 *
2868 * Make sure that the data buffers attached to a socket buffer are
2869 * writable. If they are not, private copies are made of the data buffers
2870 * and the socket buffer is set to use these instead.
2871 *
2872 * If @tailbits is given, make sure that there is space to write @tailbits
2873 * bytes of data beyond current end of socket buffer. @trailer will be
2874 * set to point to the skb in which this space begins.
2875 *
2876 * The number of scatterlist elements required to completely map the
2877 * COW'd and extended socket buffer will be returned.
2878 */
2879int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2880{
2881 int copyflag;
2882 int elt;
2883 struct sk_buff *skb1, **skb_p;
2884
2885 /* If skb is cloned or its head is paged, reallocate
2886 * head pulling out all the pages (pages are considered not writable
2887 * at the moment even if they are anonymous).
2888 */
2889 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2890 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2891 return -ENOMEM;
2892
2893 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07002894 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002895 /* A little of trouble, not enough of space for trailer.
2896 * This should not happen, when stack is tuned to generate
2897 * good frames. OK, on miss we reallocate and reserve even more
2898 * space, 128 bytes is fair. */
2899
2900 if (skb_tailroom(skb) < tailbits &&
2901 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2902 return -ENOMEM;
2903
2904 /* Voila! */
2905 *trailer = skb;
2906 return 1;
2907 }
2908
2909 /* Misery. We are in troubles, going to mincer fragments... */
2910
2911 elt = 1;
2912 skb_p = &skb_shinfo(skb)->frag_list;
2913 copyflag = 0;
2914
2915 while ((skb1 = *skb_p) != NULL) {
2916 int ntail = 0;
2917
2918 /* The fragment is partially pulled by someone,
2919 * this can happen on input. Copy it and everything
2920 * after it. */
2921
2922 if (skb_shared(skb1))
2923 copyflag = 1;
2924
2925 /* If the skb is the last, worry about trailer. */
2926
2927 if (skb1->next == NULL && tailbits) {
2928 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07002929 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07002930 skb_tailroom(skb1) < tailbits)
2931 ntail = tailbits + 128;
2932 }
2933
2934 if (copyflag ||
2935 skb_cloned(skb1) ||
2936 ntail ||
2937 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07002938 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07002939 struct sk_buff *skb2;
2940
2941 /* Fuck, we are miserable poor guys... */
2942 if (ntail == 0)
2943 skb2 = skb_copy(skb1, GFP_ATOMIC);
2944 else
2945 skb2 = skb_copy_expand(skb1,
2946 skb_headroom(skb1),
2947 ntail,
2948 GFP_ATOMIC);
2949 if (unlikely(skb2 == NULL))
2950 return -ENOMEM;
2951
2952 if (skb1->sk)
2953 skb_set_owner_w(skb2, skb1->sk);
2954
2955 /* Looking around. Are we still alive?
2956 * OK, link new skb, drop old one */
2957
2958 skb2->next = skb1->next;
2959 *skb_p = skb2;
2960 kfree_skb(skb1);
2961 skb1 = skb2;
2962 }
2963 elt++;
2964 *trailer = skb1;
2965 skb_p = &skb1->next;
2966 }
2967
2968 return elt;
2969}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002970EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002971
Eric Dumazetb1faf562010-05-31 23:44:05 -07002972static void sock_rmem_free(struct sk_buff *skb)
2973{
2974 struct sock *sk = skb->sk;
2975
2976 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
2977}
2978
2979/*
2980 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
2981 */
2982int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
2983{
2984 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
2985 (unsigned)sk->sk_rcvbuf)
2986 return -ENOMEM;
2987
2988 skb_orphan(skb);
2989 skb->sk = sk;
2990 skb->destructor = sock_rmem_free;
2991 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
2992
2993 skb_queue_tail(&sk->sk_error_queue, skb);
2994 if (!sock_flag(sk, SOCK_DEAD))
2995 sk->sk_data_ready(sk, skb->len);
2996 return 0;
2997}
2998EXPORT_SYMBOL(sock_queue_err_skb);
2999
Patrick Ohlyac45f602009-02-12 05:03:37 +00003000void skb_tstamp_tx(struct sk_buff *orig_skb,
3001 struct skb_shared_hwtstamps *hwtstamps)
3002{
3003 struct sock *sk = orig_skb->sk;
3004 struct sock_exterr_skb *serr;
3005 struct sk_buff *skb;
3006 int err;
3007
3008 if (!sk)
3009 return;
3010
3011 skb = skb_clone(orig_skb, GFP_ATOMIC);
3012 if (!skb)
3013 return;
3014
3015 if (hwtstamps) {
3016 *skb_hwtstamps(skb) =
3017 *hwtstamps;
3018 } else {
3019 /*
3020 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003021 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003022 * store software time stamp
3023 */
3024 skb->tstamp = ktime_get_real();
3025 }
3026
3027 serr = SKB_EXT_ERR(skb);
3028 memset(serr, 0, sizeof(*serr));
3029 serr->ee.ee_errno = ENOMSG;
3030 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003031
Patrick Ohlyac45f602009-02-12 05:03:37 +00003032 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003033
Patrick Ohlyac45f602009-02-12 05:03:37 +00003034 if (err)
3035 kfree_skb(skb);
3036}
3037EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3038
3039
Rusty Russellf35d9d82008-02-04 23:49:54 -05003040/**
3041 * skb_partial_csum_set - set up and verify partial csum values for packet
3042 * @skb: the skb to set
3043 * @start: the number of bytes after skb->data to start checksumming.
3044 * @off: the offset from start to place the checksum.
3045 *
3046 * For untrusted partially-checksummed packets, we need to make sure the values
3047 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3048 *
3049 * This function checks and sets those values and skb->ip_summed: if this
3050 * returns false you should drop the packet.
3051 */
3052bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3053{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003054 if (unlikely(start > skb_headlen(skb)) ||
3055 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003056 if (net_ratelimit())
3057 printk(KERN_WARNING
3058 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003059 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003060 return false;
3061 }
3062 skb->ip_summed = CHECKSUM_PARTIAL;
3063 skb->csum_start = skb_headroom(skb) + start;
3064 skb->csum_offset = off;
3065 return true;
3066}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003067EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003068
Ben Hutchings4497b072008-06-19 16:22:28 -07003069void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3070{
3071 if (net_ratelimit())
3072 pr_warning("%s: received packets cannot be forwarded"
3073 " while LRO is enabled\n", skb->dev->name);
3074}
Ben Hutchings4497b072008-06-19 16:22:28 -07003075EXPORT_SYMBOL(__skb_warn_lro_forwarding);