blob: e5e2111a397d1d0559ab171c663b5f50c457a2ce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40#include <linux/types.h>
41#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/mm.h>
43#include <linux/interrupt.h>
44#include <linux/in.h>
45#include <linux/inet.h>
46#include <linux/slab.h>
47#include <linux/netdevice.h>
48#ifdef CONFIG_NET_CLS_ACT
49#include <net/pkt_sched.h>
50#endif
51#include <linux/string.h>
52#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080053#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/cache.h>
55#include <linux/rtnetlink.h>
56#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070057#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000058#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <net/protocol.h>
61#include <net/dst.h>
62#include <net/sock.h>
63#include <net/checksum.h>
64#include <net/xfrm.h>
65
66#include <asm/uaccess.h>
67#include <asm/system.h>
68
Al Viroa1f8e7f72006-10-19 16:08:53 -040069#include "kmap_skb.h"
70
Christoph Lametere18b8902006-12-06 20:33:20 -080071static struct kmem_cache *skbuff_head_cache __read_mostly;
72static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Jens Axboe9c55e012007-11-06 23:30:13 -080074static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
75 struct pipe_buffer *buf)
76{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080077 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080078}
79
80static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
81 struct pipe_buffer *buf)
82{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080083 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080084}
85
86static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
87 struct pipe_buffer *buf)
88{
89 return 1;
90}
91
92
93/* Pipe buffer operations for a socket. */
94static struct pipe_buf_operations sock_pipe_buf_ops = {
95 .can_merge = 0,
96 .map = generic_pipe_buf_map,
97 .unmap = generic_pipe_buf_unmap,
98 .confirm = generic_pipe_buf_confirm,
99 .release = sock_pipe_buf_release,
100 .steal = sock_pipe_buf_steal,
101 .get = sock_pipe_buf_get,
102};
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * Keep out-of-line to prevent kernel bloat.
106 * __builtin_return_address is not used because it is not always
107 * reliable.
108 */
109
110/**
111 * skb_over_panic - private function
112 * @skb: buffer
113 * @sz: size
114 * @here: address
115 *
116 * Out of line support code for skb_put(). Not user callable.
117 */
118void skb_over_panic(struct sk_buff *skb, int sz, void *here)
119{
Patrick McHardy26095452005-04-21 16:43:02 -0700120 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700121 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700122 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700123 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700124 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 BUG();
126}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800127EXPORT_SYMBOL(skb_over_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/**
130 * skb_under_panic - private function
131 * @skb: buffer
132 * @sz: size
133 * @here: address
134 *
135 * Out of line support code for skb_push(). Not user callable.
136 */
137
138void skb_under_panic(struct sk_buff *skb, int sz, void *here)
139{
Patrick McHardy26095452005-04-21 16:43:02 -0700140 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700141 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700142 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700143 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700144 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 BUG();
146}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800147EXPORT_SYMBOL(skb_under_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
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;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800186 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
187 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!data)
189 goto nodata;
190
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300191 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700192 * Only clear those fields we need to clear, not those that we will
193 * actually initialise below. Hence, don't put any more fields after
194 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300195 */
196 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 skb->truesize = size + sizeof(struct sk_buff);
198 atomic_set(&skb->users, 1);
199 skb->head = data;
200 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700201 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700202 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800203 /* make sure we initialize shinfo sequentially */
204 shinfo = skb_shinfo(skb);
205 atomic_set(&shinfo->dataref, 1);
206 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700207 shinfo->gso_size = 0;
208 shinfo->gso_segs = 0;
209 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800210 shinfo->ip6_frag_id = 0;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000211 shinfo->tx_flags.flags = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800212 shinfo->frag_list = NULL;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000213 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800214
David S. Millerd179cd12005-08-17 14:57:30 -0700215 if (fclone) {
216 struct sk_buff *child = skb + 1;
217 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
David S. Millerd179cd12005-08-17 14:57:30 -0700219 skb->fclone = SKB_FCLONE_ORIG;
220 atomic_set(fclone_ref, 1);
221
222 child->fclone = SKB_FCLONE_UNAVAILABLE;
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224out:
225 return skb;
226nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800227 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 skb = NULL;
229 goto out;
230}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800231EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700234 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
235 * @dev: network device to receive on
236 * @length: length to allocate
237 * @gfp_mask: get_free_pages mask, passed to alloc_skb
238 *
239 * Allocate a new &sk_buff and assign it a usage count of one. The
240 * buffer has unspecified headroom built in. Users should allocate
241 * the headroom they think they need without accounting for the
242 * built in space. The built in space is used for optimisations.
243 *
244 * %NULL is returned if there is no free memory.
245 */
246struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
247 unsigned int length, gfp_t gfp_mask)
248{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700249 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700250 struct sk_buff *skb;
251
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900252 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, 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 -0700261struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
262{
263 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
264 struct page *page;
265
266 page = alloc_pages_node(node, gfp_mask, 0);
267 return page;
268}
269EXPORT_SYMBOL(__netdev_alloc_page);
270
271void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
272 int size)
273{
274 skb_fill_page_desc(skb, i, page, off, size);
275 skb->len += size;
276 skb->data_len += size;
277 skb->truesize += size;
278}
279EXPORT_SYMBOL(skb_add_rx_frag);
280
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700281/**
282 * dev_alloc_skb - allocate an skbuff for receiving
283 * @length: length to allocate
284 *
285 * Allocate a new &sk_buff and assign it a usage count of one. The
286 * buffer has unspecified headroom built in. Users should allocate
287 * the headroom they think they need without accounting for the
288 * built in space. The built in space is used for optimisations.
289 *
290 * %NULL is returned if there is no free memory. Although this function
291 * allocates memory it can be called from an interrupt.
292 */
293struct sk_buff *dev_alloc_skb(unsigned int length)
294{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700295 /*
296 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700297 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700298 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700299 return __dev_alloc_skb(length, GFP_ATOMIC);
300}
301EXPORT_SYMBOL(dev_alloc_skb);
302
Herbert Xu27b437c2006-07-13 19:26:39 -0700303static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Herbert Xu27b437c2006-07-13 19:26:39 -0700305 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Herbert Xu27b437c2006-07-13 19:26:39 -0700307 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 do {
310 struct sk_buff *this = list;
311 list = list->next;
312 kfree_skb(this);
313 } while (list);
314}
315
Herbert Xu27b437c2006-07-13 19:26:39 -0700316static inline void skb_drop_fraglist(struct sk_buff *skb)
317{
318 skb_drop_list(&skb_shinfo(skb)->frag_list);
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static void skb_clone_fraglist(struct sk_buff *skb)
322{
323 struct sk_buff *list;
324
325 for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
326 skb_get(list);
327}
328
Adrian Bunk5bba1712006-06-29 13:02:35 -0700329static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 if (!skb->cloned ||
332 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
333 &skb_shinfo(skb)->dataref)) {
334 if (skb_shinfo(skb)->nr_frags) {
335 int i;
336 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
337 put_page(skb_shinfo(skb)->frags[i].page);
338 }
339
340 if (skb_shinfo(skb)->frag_list)
341 skb_drop_fraglist(skb);
342
343 kfree(skb->head);
344 }
345}
346
347/*
348 * Free an skbuff by memory without cleaning the state.
349 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800350static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
David S. Millerd179cd12005-08-17 14:57:30 -0700352 struct sk_buff *other;
353 atomic_t *fclone_ref;
354
David S. Millerd179cd12005-08-17 14:57:30 -0700355 switch (skb->fclone) {
356 case SKB_FCLONE_UNAVAILABLE:
357 kmem_cache_free(skbuff_head_cache, skb);
358 break;
359
360 case SKB_FCLONE_ORIG:
361 fclone_ref = (atomic_t *) (skb + 2);
362 if (atomic_dec_and_test(fclone_ref))
363 kmem_cache_free(skbuff_fclone_cache, skb);
364 break;
365
366 case SKB_FCLONE_CLONE:
367 fclone_ref = (atomic_t *) (skb + 1);
368 other = skb - 1;
369
370 /* The clone portion is available for
371 * fast-cloning again.
372 */
373 skb->fclone = SKB_FCLONE_UNAVAILABLE;
374
375 if (atomic_dec_and_test(fclone_ref))
376 kmem_cache_free(skbuff_fclone_cache, other);
377 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700381static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 dst_release(skb->dst);
384#ifdef CONFIG_XFRM
385 secpath_put(skb->sp);
386#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700387 if (skb->destructor) {
388 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 skb->destructor(skb);
390 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700392 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800393 nf_conntrack_put_reasm(skb->nfct_reasm);
394#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#ifdef CONFIG_BRIDGE_NETFILTER
396 nf_bridge_put(skb->nf_bridge);
397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398/* XXX: IS this still necessary? - JHS */
399#ifdef CONFIG_NET_SCHED
400 skb->tc_index = 0;
401#ifdef CONFIG_NET_CLS_ACT
402 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#endif
404#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700405}
406
407/* Free everything but the sk_buff shell. */
408static void skb_release_all(struct sk_buff *skb)
409{
410 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800411 skb_release_data(skb);
412}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Herbert Xu2d4baff2007-11-26 23:11:19 +0800414/**
415 * __kfree_skb - private function
416 * @skb: buffer
417 *
418 * Free an sk_buff. Release anything attached to the buffer.
419 * Clean the state. This is an internal helper function. Users should
420 * always call kfree_skb
421 */
422
423void __kfree_skb(struct sk_buff *skb)
424{
425 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 kfree_skbmem(skb);
427}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800428EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800431 * kfree_skb - free an sk_buff
432 * @skb: buffer to free
433 *
434 * Drop a reference to the buffer and free it if the usage count has
435 * hit zero.
436 */
437void kfree_skb(struct sk_buff *skb)
438{
439 if (unlikely(!skb))
440 return;
441 if (likely(atomic_read(&skb->users) == 1))
442 smp_rmb();
443 else if (likely(!atomic_dec_and_test(&skb->users)))
444 return;
445 __kfree_skb(skb);
446}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800447EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800448
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700449/**
450 * skb_recycle_check - check if skb can be reused for receive
451 * @skb: buffer
452 * @skb_size: minimum receive buffer size
453 *
454 * Checks that the skb passed in is not shared or cloned, and
455 * that it is linear and its head portion at least as large as
456 * skb_size so that it can be recycled as a receive buffer.
457 * If these conditions are met, this function does any necessary
458 * reference count dropping and cleans up the skbuff as if it
459 * just came from __alloc_skb().
460 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700461int skb_recycle_check(struct sk_buff *skb, int skb_size)
462{
463 struct skb_shared_info *shinfo;
464
465 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
466 return 0;
467
468 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
469 if (skb_end_pointer(skb) - skb->head < skb_size)
470 return 0;
471
472 if (skb_shared(skb) || skb_cloned(skb))
473 return 0;
474
475 skb_release_head_state(skb);
476 shinfo = skb_shinfo(skb);
477 atomic_set(&shinfo->dataref, 1);
478 shinfo->nr_frags = 0;
479 shinfo->gso_size = 0;
480 shinfo->gso_segs = 0;
481 shinfo->gso_type = 0;
482 shinfo->ip6_frag_id = 0;
483 shinfo->frag_list = NULL;
484
485 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700486 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800487 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700488
489 return 1;
490}
491EXPORT_SYMBOL(skb_recycle_check);
492
Herbert Xudec18812007-10-14 00:37:30 -0700493static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
494{
495 new->tstamp = old->tstamp;
496 new->dev = old->dev;
497 new->transport_header = old->transport_header;
498 new->network_header = old->network_header;
499 new->mac_header = old->mac_header;
500 new->dst = dst_clone(old->dst);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700501#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700502 new->sp = secpath_get(old->sp);
503#endif
504 memcpy(new->cb, old->cb, sizeof(old->cb));
505 new->csum_start = old->csum_start;
506 new->csum_offset = old->csum_offset;
507 new->local_df = old->local_df;
508 new->pkt_type = old->pkt_type;
509 new->ip_summed = old->ip_summed;
510 skb_copy_queue_mapping(new, old);
511 new->priority = old->priority;
512#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
513 new->ipvs_property = old->ipvs_property;
514#endif
515 new->protocol = old->protocol;
516 new->mark = old->mark;
517 __nf_copy(new, old);
518#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
519 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
520 new->nf_trace = old->nf_trace;
521#endif
522#ifdef CONFIG_NET_SCHED
523 new->tc_index = old->tc_index;
524#ifdef CONFIG_NET_CLS_ACT
525 new->tc_verd = old->tc_verd;
526#endif
527#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700528 new->vlan_tci = old->vlan_tci;
529
Herbert Xudec18812007-10-14 00:37:30 -0700530 skb_copy_secmark(new, old);
531}
532
Herbert Xue0053ec2007-10-14 00:37:52 -0700533static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535#define C(x) n->x = skb->x
536
537 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700539 __copy_skb_header(n, skb);
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 C(len);
542 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700543 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700544 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800545 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 n->destructor = NULL;
Paul Moore02f1c892008-01-07 21:56:41 -0800548 C(iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 C(tail);
550 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800551 C(head);
552 C(data);
553 C(truesize);
Johannes Bergd0f09802008-07-29 11:32:07 +0200554#if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE)
555 C(do_not_encrypt);
Sujith8b30b1f2008-10-24 09:55:27 +0530556 C(requeue);
Johannes Bergd0f09802008-07-29 11:32:07 +0200557#endif
Paul Moore02f1c892008-01-07 21:56:41 -0800558 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 atomic_inc(&(skb_shinfo(skb)->dataref));
561 skb->cloned = 1;
562
563 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700564#undef C
565}
566
567/**
568 * skb_morph - morph one skb into another
569 * @dst: the skb to receive the contents
570 * @src: the skb to supply the contents
571 *
572 * This is identical to skb_clone except that the target skb is
573 * supplied by the user.
574 *
575 * The target skb is returned upon exit.
576 */
577struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
578{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800579 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700580 return __skb_clone(dst, src);
581}
582EXPORT_SYMBOL_GPL(skb_morph);
583
584/**
585 * skb_clone - duplicate an sk_buff
586 * @skb: buffer to clone
587 * @gfp_mask: allocation priority
588 *
589 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
590 * copies share the same packet data but not structure. The new
591 * buffer has a reference count of 1. If the allocation fails the
592 * function returns %NULL otherwise the new buffer is returned.
593 *
594 * If this function is called from an interrupt gfp_mask() must be
595 * %GFP_ATOMIC.
596 */
597
598struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
599{
600 struct sk_buff *n;
601
602 n = skb + 1;
603 if (skb->fclone == SKB_FCLONE_ORIG &&
604 n->fclone == SKB_FCLONE_UNAVAILABLE) {
605 atomic_t *fclone_ref = (atomic_t *) (n + 1);
606 n->fclone = SKB_FCLONE_CLONE;
607 atomic_inc(fclone_ref);
608 } else {
609 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
610 if (!n)
611 return NULL;
612 n->fclone = SKB_FCLONE_UNAVAILABLE;
613 }
614
615 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800617EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
620{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700621#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /*
623 * Shift between the two data areas in bytes
624 */
625 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700626#endif
Herbert Xudec18812007-10-14 00:37:30 -0700627
628 __copy_skb_header(new, old);
629
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700630#ifndef NET_SKBUFF_DATA_USES_OFFSET
631 /* {transport,network,mac}_header are relative to skb->head */
632 new->transport_header += offset;
633 new->network_header += offset;
634 new->mac_header += offset;
635#endif
Herbert Xu79671682006-06-22 02:40:14 -0700636 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
637 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
638 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/**
642 * skb_copy - create private copy of an sk_buff
643 * @skb: buffer to copy
644 * @gfp_mask: allocation priority
645 *
646 * Make a copy of both an &sk_buff and its data. This is used when the
647 * caller wishes to modify the data and needs a private copy of the
648 * data to alter. Returns %NULL on failure or the pointer to the buffer
649 * on success. The returned buffer has a reference count of 1.
650 *
651 * As by-product this function converts non-linear &sk_buff to linear
652 * one, so that &sk_buff becomes completely private and caller is allowed
653 * to modify all the data of returned buffer. This means that this
654 * function is not recommended for use in circumstances when only
655 * header is going to be modified. Use pskb_copy() instead.
656 */
657
Al Virodd0fc662005-10-07 07:46:04 +0100658struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 int headerlen = skb->data - skb->head;
661 /*
662 * Allocate the copy buffer
663 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700664 struct sk_buff *n;
665#ifdef NET_SKBUFF_DATA_USES_OFFSET
666 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
667#else
668 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
669#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (!n)
671 return NULL;
672
673 /* Set the data pointer */
674 skb_reserve(n, headerlen);
675 /* Set the tail pointer and length */
676 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
679 BUG();
680
681 copy_skb_header(n, skb);
682 return n;
683}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800684EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686/**
687 * pskb_copy - create copy of an sk_buff with private head.
688 * @skb: buffer to copy
689 * @gfp_mask: allocation priority
690 *
691 * Make a copy of both an &sk_buff and part of its data, located
692 * in header. Fragmented data remain shared. This is used when
693 * the caller wishes to modify only header of &sk_buff and needs
694 * private copy of the header to alter. Returns %NULL on failure
695 * or the pointer to the buffer on success.
696 * The returned buffer has a reference count of 1.
697 */
698
Al Virodd0fc662005-10-07 07:46:04 +0100699struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 /*
702 * Allocate the copy buffer
703 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700704 struct sk_buff *n;
705#ifdef NET_SKBUFF_DATA_USES_OFFSET
706 n = alloc_skb(skb->end, gfp_mask);
707#else
708 n = alloc_skb(skb->end - skb->head, gfp_mask);
709#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!n)
711 goto out;
712
713 /* Set the data pointer */
714 skb_reserve(n, skb->data - skb->head);
715 /* Set the tail pointer and length */
716 skb_put(n, skb_headlen(skb));
717 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300718 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Herbert Xu25f484a2006-11-07 14:57:15 -0800720 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 n->data_len = skb->data_len;
722 n->len = skb->len;
723
724 if (skb_shinfo(skb)->nr_frags) {
725 int i;
726
727 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
728 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
729 get_page(skb_shinfo(n)->frags[i].page);
730 }
731 skb_shinfo(n)->nr_frags = i;
732 }
733
734 if (skb_shinfo(skb)->frag_list) {
735 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
736 skb_clone_fraglist(n);
737 }
738
739 copy_skb_header(n, skb);
740out:
741 return n;
742}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800743EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745/**
746 * pskb_expand_head - reallocate header of &sk_buff
747 * @skb: buffer to reallocate
748 * @nhead: room to add at head
749 * @ntail: room to add at tail
750 * @gfp_mask: allocation priority
751 *
752 * Expands (or creates identical copy, if &nhead and &ntail are zero)
753 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
754 * reference count of 1. Returns zero in the case of success or error,
755 * if expansion failed. In the last case, &sk_buff is not changed.
756 *
757 * All the pointers pointing into skb header may change and must be
758 * reloaded after call to this function.
759 */
760
Victor Fusco86a76ca2005-07-08 14:57:47 -0700761int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100762 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 int i;
765 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700766#ifdef NET_SKBUFF_DATA_USES_OFFSET
767 int size = nhead + skb->end + ntail;
768#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700770#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 long off;
772
Herbert Xu4edd87a2008-10-01 07:09:38 -0700773 BUG_ON(nhead < 0);
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (skb_shared(skb))
776 BUG();
777
778 size = SKB_DATA_ALIGN(size);
779
780 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
781 if (!data)
782 goto nodata;
783
784 /* Copy only real data... and, alas, header. This should be
785 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700786#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700787 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700788#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700789 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700790#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700791 memcpy(data + size, skb_end_pointer(skb),
792 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
795 get_page(skb_shinfo(skb)->frags[i].page);
796
797 if (skb_shinfo(skb)->frag_list)
798 skb_clone_fraglist(skb);
799
800 skb_release_data(skb);
801
802 off = (data + nhead) - skb->head;
803
804 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700806#ifdef NET_SKBUFF_DATA_USES_OFFSET
807 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700808 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700809#else
810 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700811#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700812 /* {transport,network,mac}_header and tail are relative to skb->head */
813 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700814 skb->transport_header += off;
815 skb->network_header += off;
816 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700817 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700819 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 skb->nohdr = 0;
821 atomic_set(&skb_shinfo(skb)->dataref, 1);
822 return 0;
823
824nodata:
825 return -ENOMEM;
826}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800827EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829/* Make private copy of skb with writable head and some headroom */
830
831struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
832{
833 struct sk_buff *skb2;
834 int delta = headroom - skb_headroom(skb);
835
836 if (delta <= 0)
837 skb2 = pskb_copy(skb, GFP_ATOMIC);
838 else {
839 skb2 = skb_clone(skb, GFP_ATOMIC);
840 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
841 GFP_ATOMIC)) {
842 kfree_skb(skb2);
843 skb2 = NULL;
844 }
845 }
846 return skb2;
847}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800848EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850/**
851 * skb_copy_expand - copy and expand sk_buff
852 * @skb: buffer to copy
853 * @newheadroom: new free bytes at head
854 * @newtailroom: new free bytes at tail
855 * @gfp_mask: allocation priority
856 *
857 * Make a copy of both an &sk_buff and its data and while doing so
858 * allocate additional space.
859 *
860 * This is used when the caller wishes to modify the data and needs a
861 * private copy of the data to alter as well as more space for new fields.
862 * Returns %NULL on failure or the pointer to the buffer
863 * on success. The returned buffer has a reference count of 1.
864 *
865 * You must pass %GFP_ATOMIC as the allocation priority if this function
866 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 */
868struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700869 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100870 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 /*
873 * Allocate the copy buffer
874 */
875 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
876 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700877 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700879 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 if (!n)
882 return NULL;
883
884 skb_reserve(n, newheadroom);
885
886 /* Set the tail pointer and length */
887 skb_put(n, skb->len);
888
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700889 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 head_copy_off = 0;
891 if (newheadroom <= head_copy_len)
892 head_copy_len = newheadroom;
893 else
894 head_copy_off = newheadroom - head_copy_len;
895
896 /* Copy the linear header and data. */
897 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
898 skb->len + head_copy_len))
899 BUG();
900
901 copy_skb_header(n, skb);
902
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700903 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700904 n->csum_start += off;
905#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700906 n->transport_header += off;
907 n->network_header += off;
908 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700909#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return n;
912}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800913EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915/**
916 * skb_pad - zero pad the tail of an skb
917 * @skb: buffer to pad
918 * @pad: space to pad
919 *
920 * Ensure that a buffer is followed by a padding area that is zero
921 * filled. Used by network drivers which may DMA or transfer data
922 * beyond the buffer end onto the wire.
923 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700924 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900926
Herbert Xu5b057c62006-06-23 02:06:41 -0700927int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Herbert Xu5b057c62006-06-23 02:06:41 -0700929 int err;
930 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700933 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700935 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700937
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700938 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700939 if (likely(skb_cloned(skb) || ntail > 0)) {
940 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
941 if (unlikely(err))
942 goto free_skb;
943 }
944
945 /* FIXME: The use of this function with non-linear skb's really needs
946 * to be audited.
947 */
948 err = skb_linearize(skb);
949 if (unlikely(err))
950 goto free_skb;
951
952 memset(skb->data + skb->len, 0, pad);
953 return 0;
954
955free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700957 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900958}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800959EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900960
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700961/**
962 * skb_put - add data to a buffer
963 * @skb: buffer to use
964 * @len: amount of data to add
965 *
966 * This function extends the used data area of the buffer. If this would
967 * exceed the total buffer size the kernel will panic. A pointer to the
968 * first byte of the extra data is returned.
969 */
970unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
971{
972 unsigned char *tmp = skb_tail_pointer(skb);
973 SKB_LINEAR_ASSERT(skb);
974 skb->tail += len;
975 skb->len += len;
976 if (unlikely(skb->tail > skb->end))
977 skb_over_panic(skb, len, __builtin_return_address(0));
978 return tmp;
979}
980EXPORT_SYMBOL(skb_put);
981
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700982/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -0700983 * skb_push - add data to the start of a buffer
984 * @skb: buffer to use
985 * @len: amount of data to add
986 *
987 * This function extends the used data area of the buffer at the buffer
988 * start. If this would exceed the total buffer headroom the kernel will
989 * panic. A pointer to the first byte of the extra data is returned.
990 */
991unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
992{
993 skb->data -= len;
994 skb->len += len;
995 if (unlikely(skb->data<skb->head))
996 skb_under_panic(skb, len, __builtin_return_address(0));
997 return skb->data;
998}
999EXPORT_SYMBOL(skb_push);
1000
1001/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001002 * skb_pull - remove data from the start of a buffer
1003 * @skb: buffer to use
1004 * @len: amount of data to remove
1005 *
1006 * This function removes data from the start of a buffer, returning
1007 * the memory to the headroom. A pointer to the next data in the buffer
1008 * is returned. Once the data has been pulled future pushes will overwrite
1009 * the old data.
1010 */
1011unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1012{
1013 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1014}
1015EXPORT_SYMBOL(skb_pull);
1016
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001017/**
1018 * skb_trim - remove end from a buffer
1019 * @skb: buffer to alter
1020 * @len: new length
1021 *
1022 * Cut the length of a buffer down by removing data from the tail. If
1023 * the buffer is already under the length specified it is not modified.
1024 * The skb must be linear.
1025 */
1026void skb_trim(struct sk_buff *skb, unsigned int len)
1027{
1028 if (skb->len > len)
1029 __skb_trim(skb, len);
1030}
1031EXPORT_SYMBOL(skb_trim);
1032
Herbert Xu3cc0e872006-06-09 16:13:38 -07001033/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 */
1035
Herbert Xu3cc0e872006-06-09 16:13:38 -07001036int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Herbert Xu27b437c2006-07-13 19:26:39 -07001038 struct sk_buff **fragp;
1039 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 int offset = skb_headlen(skb);
1041 int nfrags = skb_shinfo(skb)->nr_frags;
1042 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001043 int err;
1044
1045 if (skb_cloned(skb) &&
1046 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1047 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001049 i = 0;
1050 if (offset >= len)
1051 goto drop_pages;
1052
1053 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001055
1056 if (end < len) {
1057 offset = end;
1058 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001060
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001061 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001062
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001063drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001064 skb_shinfo(skb)->nr_frags = i;
1065
1066 for (; i < nfrags; i++)
1067 put_page(skb_shinfo(skb)->frags[i].page);
1068
1069 if (skb_shinfo(skb)->frag_list)
1070 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001071 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073
Herbert Xu27b437c2006-07-13 19:26:39 -07001074 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1075 fragp = &frag->next) {
1076 int end = offset + frag->len;
1077
1078 if (skb_shared(frag)) {
1079 struct sk_buff *nfrag;
1080
1081 nfrag = skb_clone(frag, GFP_ATOMIC);
1082 if (unlikely(!nfrag))
1083 return -ENOMEM;
1084
1085 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001086 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001087 frag = nfrag;
1088 *fragp = frag;
1089 }
1090
1091 if (end < len) {
1092 offset = end;
1093 continue;
1094 }
1095
1096 if (end > len &&
1097 unlikely((err = pskb_trim(frag, len - offset))))
1098 return err;
1099
1100 if (frag->next)
1101 skb_drop_list(&frag->next);
1102 break;
1103 }
1104
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001105done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001106 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 skb->data_len -= skb->len - len;
1108 skb->len = len;
1109 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001110 skb->len = len;
1111 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001112 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
1115 return 0;
1116}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001117EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119/**
1120 * __pskb_pull_tail - advance tail of skb header
1121 * @skb: buffer to reallocate
1122 * @delta: number of bytes to advance tail
1123 *
1124 * The function makes a sense only on a fragmented &sk_buff,
1125 * it expands header moving its tail forward and copying necessary
1126 * data from fragmented part.
1127 *
1128 * &sk_buff MUST have reference count of 1.
1129 *
1130 * Returns %NULL (and &sk_buff does not change) if pull failed
1131 * or value of new tail of skb in the case of success.
1132 *
1133 * All the pointers pointing into skb header may change and must be
1134 * reloaded after call to this function.
1135 */
1136
1137/* Moves tail of skb head forward, copying data from fragmented part,
1138 * when it is necessary.
1139 * 1. It may fail due to malloc failure.
1140 * 2. It may change skb pointers.
1141 *
1142 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1143 */
1144unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1145{
1146 /* If skb has not enough free space at tail, get new one
1147 * plus 128 bytes for future expansions. If we have enough
1148 * room at tail, reallocate without expansion only if skb is cloned.
1149 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001150 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (eat > 0 || skb_cloned(skb)) {
1153 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1154 GFP_ATOMIC))
1155 return NULL;
1156 }
1157
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001158 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 BUG();
1160
1161 /* Optimization: no fragments, no reasons to preestimate
1162 * size of pulled pages. Superb.
1163 */
1164 if (!skb_shinfo(skb)->frag_list)
1165 goto pull_pages;
1166
1167 /* Estimate size of pulled pages. */
1168 eat = delta;
1169 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1170 if (skb_shinfo(skb)->frags[i].size >= eat)
1171 goto pull_pages;
1172 eat -= skb_shinfo(skb)->frags[i].size;
1173 }
1174
1175 /* If we need update frag list, we are in troubles.
1176 * Certainly, it possible to add an offset to skb data,
1177 * but taking into account that pulling is expected to
1178 * be very rare operation, it is worth to fight against
1179 * further bloating skb head and crucify ourselves here instead.
1180 * Pure masohism, indeed. 8)8)
1181 */
1182 if (eat) {
1183 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1184 struct sk_buff *clone = NULL;
1185 struct sk_buff *insp = NULL;
1186
1187 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001188 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 if (list->len <= eat) {
1191 /* Eaten as whole. */
1192 eat -= list->len;
1193 list = list->next;
1194 insp = list;
1195 } else {
1196 /* Eaten partially. */
1197
1198 if (skb_shared(list)) {
1199 /* Sucks! We need to fork list. :-( */
1200 clone = skb_clone(list, GFP_ATOMIC);
1201 if (!clone)
1202 return NULL;
1203 insp = list->next;
1204 list = clone;
1205 } else {
1206 /* This may be pulled without
1207 * problems. */
1208 insp = list;
1209 }
1210 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001211 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return NULL;
1213 }
1214 break;
1215 }
1216 } while (eat);
1217
1218 /* Free pulled out fragments. */
1219 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1220 skb_shinfo(skb)->frag_list = list->next;
1221 kfree_skb(list);
1222 }
1223 /* And insert new clone at head. */
1224 if (clone) {
1225 clone->next = list;
1226 skb_shinfo(skb)->frag_list = clone;
1227 }
1228 }
1229 /* Success! Now we may commit changes to skb data. */
1230
1231pull_pages:
1232 eat = delta;
1233 k = 0;
1234 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1235 if (skb_shinfo(skb)->frags[i].size <= eat) {
1236 put_page(skb_shinfo(skb)->frags[i].page);
1237 eat -= skb_shinfo(skb)->frags[i].size;
1238 } else {
1239 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1240 if (eat) {
1241 skb_shinfo(skb)->frags[k].page_offset += eat;
1242 skb_shinfo(skb)->frags[k].size -= eat;
1243 eat = 0;
1244 }
1245 k++;
1246 }
1247 }
1248 skb_shinfo(skb)->nr_frags = k;
1249
1250 skb->tail += delta;
1251 skb->data_len -= delta;
1252
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001253 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001255EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257/* Copy some data bits from skb to kernel buffer. */
1258
1259int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1260{
1261 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001262 int start = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 if (offset > (int)skb->len - len)
1265 goto fault;
1266
1267 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001268 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (copy > len)
1270 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001271 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if ((len -= copy) == 0)
1273 return 0;
1274 offset += copy;
1275 to += copy;
1276 }
1277
1278 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001279 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001281 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001282
1283 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if ((copy = end - offset) > 0) {
1285 u8 *vaddr;
1286
1287 if (copy > len)
1288 copy = len;
1289
1290 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1291 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001292 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1293 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 kunmap_skb_frag(vaddr);
1295
1296 if ((len -= copy) == 0)
1297 return 0;
1298 offset += copy;
1299 to += copy;
1300 }
David S. Miller1a028e52007-04-27 15:21:23 -07001301 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303
1304 if (skb_shinfo(skb)->frag_list) {
1305 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1306
1307 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001308 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001310 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001311
1312 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if ((copy = end - offset) > 0) {
1314 if (copy > len)
1315 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001316 if (skb_copy_bits(list, offset - start,
1317 to, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 goto fault;
1319 if ((len -= copy) == 0)
1320 return 0;
1321 offset += copy;
1322 to += copy;
1323 }
David S. Miller1a028e52007-04-27 15:21:23 -07001324 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326 }
1327 if (!len)
1328 return 0;
1329
1330fault:
1331 return -EFAULT;
1332}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001333EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Jens Axboe9c55e012007-11-06 23:30:13 -08001335/*
1336 * Callback from splice_to_pipe(), if we need to release some pages
1337 * at the end of the spd in case we error'ed out in filling the pipe.
1338 */
1339static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1340{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001341 put_page(spd->pages[i]);
1342}
Jens Axboe9c55e012007-11-06 23:30:13 -08001343
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001344static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1345 unsigned int *offset,
1346 struct sk_buff *skb)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001347{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001348 struct sock *sk = skb->sk;
1349 struct page *p = sk->sk_sndmsg_page;
1350 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001351
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001352 if (!p) {
1353new_page:
1354 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1355 if (!p)
1356 return NULL;
1357
1358 off = sk->sk_sndmsg_off = 0;
1359 /* hold one ref to this page until it's full */
1360 } else {
1361 unsigned int mlen;
1362
1363 off = sk->sk_sndmsg_off;
1364 mlen = PAGE_SIZE - off;
1365 if (mlen < 64 && mlen < *len) {
1366 put_page(p);
1367 goto new_page;
1368 }
1369
1370 *len = min_t(unsigned int, *len, mlen);
1371 }
1372
1373 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1374 sk->sk_sndmsg_off += *len;
1375 *offset = off;
1376 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001377
1378 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001379}
1380
1381/*
1382 * Fill page/offset/length into spd, if it can hold more pages.
1383 */
1384static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001385 unsigned int *len, unsigned int offset,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001386 struct sk_buff *skb, int linear)
Jens Axboe9c55e012007-11-06 23:30:13 -08001387{
1388 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1389 return 1;
1390
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001391 if (linear) {
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001392 page = linear_to_page(page, len, &offset, skb);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001393 if (!page)
1394 return 1;
1395 } else
1396 get_page(page);
1397
Jens Axboe9c55e012007-11-06 23:30:13 -08001398 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001399 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001400 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001401 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001402
Jens Axboe9c55e012007-11-06 23:30:13 -08001403 return 0;
1404}
1405
Octavian Purdila2870c432008-07-15 00:49:11 -07001406static inline void __segment_seek(struct page **page, unsigned int *poff,
1407 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001408{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001409 unsigned long n;
1410
Octavian Purdila2870c432008-07-15 00:49:11 -07001411 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001412 n = *poff / PAGE_SIZE;
1413 if (n)
1414 *page = nth_page(*page, n);
1415
Octavian Purdila2870c432008-07-15 00:49:11 -07001416 *poff = *poff % PAGE_SIZE;
1417 *plen -= off;
1418}
Jens Axboe9c55e012007-11-06 23:30:13 -08001419
Octavian Purdila2870c432008-07-15 00:49:11 -07001420static inline int __splice_segment(struct page *page, unsigned int poff,
1421 unsigned int plen, unsigned int *off,
1422 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001423 struct splice_pipe_desc *spd, int linear)
Octavian Purdila2870c432008-07-15 00:49:11 -07001424{
1425 if (!*len)
1426 return 1;
1427
1428 /* skip this segment if already processed */
1429 if (*off >= plen) {
1430 *off -= plen;
1431 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001432 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001433
Octavian Purdila2870c432008-07-15 00:49:11 -07001434 /* ignore any bits we already processed */
1435 if (*off) {
1436 __segment_seek(&page, &poff, &plen, *off);
1437 *off = 0;
1438 }
1439
1440 do {
1441 unsigned int flen = min(*len, plen);
1442
1443 /* the linear region may spread across several pages */
1444 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1445
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001446 if (spd_fill_page(spd, page, &flen, poff, skb, linear))
Octavian Purdila2870c432008-07-15 00:49:11 -07001447 return 1;
1448
1449 __segment_seek(&page, &poff, &plen, flen);
1450 *len -= flen;
1451
1452 } while (*len && plen);
1453
1454 return 0;
1455}
1456
1457/*
1458 * Map linear and fragment data from the skb to spd. It reports failure if the
1459 * pipe is full or if we already spliced the requested length.
1460 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001461static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Octavian Purdila2870c432008-07-15 00:49:11 -07001462 unsigned int *len,
1463 struct splice_pipe_desc *spd)
1464{
1465 int seg;
1466
Jens Axboe9c55e012007-11-06 23:30:13 -08001467 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001468 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001469 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001470 if (__splice_segment(virt_to_page(skb->data),
1471 (unsigned long) skb->data & (PAGE_SIZE - 1),
1472 skb_headlen(skb),
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001473 offset, len, skb, spd, 1))
Octavian Purdila2870c432008-07-15 00:49:11 -07001474 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001475
1476 /*
1477 * then map the fragments
1478 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001479 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1480 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1481
Octavian Purdila2870c432008-07-15 00:49:11 -07001482 if (__splice_segment(f->page, f->page_offset, f->size,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001483 offset, len, skb, spd, 0))
Octavian Purdila2870c432008-07-15 00:49:11 -07001484 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001485 }
1486
Octavian Purdila2870c432008-07-15 00:49:11 -07001487 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001488}
1489
1490/*
1491 * Map data from the skb to a pipe. Should handle both the linear part,
1492 * the fragments, and the frag list. It does NOT handle frag lists within
1493 * the frag list, if such a thing exists. We'd probably need to recurse to
1494 * handle that cleanly.
1495 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001496int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001497 struct pipe_inode_info *pipe, unsigned int tlen,
1498 unsigned int flags)
1499{
1500 struct partial_page partial[PIPE_BUFFERS];
1501 struct page *pages[PIPE_BUFFERS];
1502 struct splice_pipe_desc spd = {
1503 .pages = pages,
1504 .partial = partial,
1505 .flags = flags,
1506 .ops = &sock_pipe_buf_ops,
1507 .spd_release = sock_spd_release,
1508 };
Jens Axboe9c55e012007-11-06 23:30:13 -08001509
1510 /*
1511 * __skb_splice_bits() only fails if the output has no room left,
1512 * so no point in going over the frag_list for the error case.
1513 */
1514 if (__skb_splice_bits(skb, &offset, &tlen, &spd))
1515 goto done;
1516 else if (!tlen)
1517 goto done;
1518
1519 /*
1520 * now see if we have a frag_list to map
1521 */
1522 if (skb_shinfo(skb)->frag_list) {
1523 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1524
1525 for (; list && tlen; list = list->next) {
1526 if (__skb_splice_bits(list, &offset, &tlen, &spd))
1527 break;
1528 }
1529 }
1530
1531done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001532 if (spd.nr_pages) {
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001533 struct sock *sk = skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001534 int ret;
1535
1536 /*
1537 * Drop the socket lock, otherwise we have reverse
1538 * locking dependencies between sk_lock and i_mutex
1539 * here as compared to sendfile(). We enter here
1540 * with the socket lock held, and splice_to_pipe() will
1541 * grab the pipe inode lock. For sendfile() emulation,
1542 * we call into ->sendpage() with the i_mutex lock held
1543 * and networking will grab the socket lock.
1544 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001545 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001546 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001547 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001548 return ret;
1549 }
1550
1551 return 0;
1552}
1553
Herbert Xu357b40a2005-04-19 22:30:14 -07001554/**
1555 * skb_store_bits - store bits from kernel buffer to skb
1556 * @skb: destination buffer
1557 * @offset: offset in destination
1558 * @from: source buffer
1559 * @len: number of bytes to copy
1560 *
1561 * Copy the specified number of bytes from the source buffer to the
1562 * destination skb. This function handles all the messy bits of
1563 * traversing fragment lists and such.
1564 */
1565
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001566int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001567{
1568 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001569 int start = skb_headlen(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -07001570
1571 if (offset > (int)skb->len - len)
1572 goto fault;
1573
David S. Miller1a028e52007-04-27 15:21:23 -07001574 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001575 if (copy > len)
1576 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001577 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001578 if ((len -= copy) == 0)
1579 return 0;
1580 offset += copy;
1581 from += copy;
1582 }
1583
1584 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1585 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001586 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001587
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001588 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001589
1590 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001591 if ((copy = end - offset) > 0) {
1592 u8 *vaddr;
1593
1594 if (copy > len)
1595 copy = len;
1596
1597 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001598 memcpy(vaddr + frag->page_offset + offset - start,
1599 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001600 kunmap_skb_frag(vaddr);
1601
1602 if ((len -= copy) == 0)
1603 return 0;
1604 offset += copy;
1605 from += copy;
1606 }
David S. Miller1a028e52007-04-27 15:21:23 -07001607 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001608 }
1609
1610 if (skb_shinfo(skb)->frag_list) {
1611 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1612
1613 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001614 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001615
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001616 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001617
1618 end = start + list->len;
Herbert Xu357b40a2005-04-19 22:30:14 -07001619 if ((copy = end - offset) > 0) {
1620 if (copy > len)
1621 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001622 if (skb_store_bits(list, offset - start,
1623 from, copy))
Herbert Xu357b40a2005-04-19 22:30:14 -07001624 goto fault;
1625 if ((len -= copy) == 0)
1626 return 0;
1627 offset += copy;
1628 from += copy;
1629 }
David S. Miller1a028e52007-04-27 15:21:23 -07001630 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001631 }
1632 }
1633 if (!len)
1634 return 0;
1635
1636fault:
1637 return -EFAULT;
1638}
Herbert Xu357b40a2005-04-19 22:30:14 -07001639EXPORT_SYMBOL(skb_store_bits);
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641/* Checksum skb data. */
1642
Al Viro2bbbc862006-11-14 21:37:14 -08001643__wsum skb_checksum(const struct sk_buff *skb, int offset,
1644 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
David S. Miller1a028e52007-04-27 15:21:23 -07001646 int start = skb_headlen(skb);
1647 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 int pos = 0;
1649
1650 /* Checksum header. */
1651 if (copy > 0) {
1652 if (copy > len)
1653 copy = len;
1654 csum = csum_partial(skb->data + offset, copy, csum);
1655 if ((len -= copy) == 0)
1656 return csum;
1657 offset += copy;
1658 pos = copy;
1659 }
1660
1661 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001662 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001664 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001665
1666 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001668 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 u8 *vaddr;
1670 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1671
1672 if (copy > len)
1673 copy = len;
1674 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001675 csum2 = csum_partial(vaddr + frag->page_offset +
1676 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 kunmap_skb_frag(vaddr);
1678 csum = csum_block_add(csum, csum2, pos);
1679 if (!(len -= copy))
1680 return csum;
1681 offset += copy;
1682 pos += copy;
1683 }
David S. Miller1a028e52007-04-27 15:21:23 -07001684 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686
1687 if (skb_shinfo(skb)->frag_list) {
1688 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1689
1690 for (; list; list = list->next) {
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 + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if ((copy = end - offset) > 0) {
Al Viro5f92a732006-11-14 21:36:54 -08001697 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (copy > len)
1699 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001700 csum2 = skb_checksum(list, offset - start,
1701 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 csum = csum_block_add(csum, csum2, pos);
1703 if ((len -= copy) == 0)
1704 return csum;
1705 offset += copy;
1706 pos += copy;
1707 }
David S. Miller1a028e52007-04-27 15:21:23 -07001708 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001711 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 return csum;
1714}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001715EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717/* Both of above in one bottle. */
1718
Al Viro81d77662006-11-14 21:37:33 -08001719__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1720 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
David S. Miller1a028e52007-04-27 15:21:23 -07001722 int start = skb_headlen(skb);
1723 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 int pos = 0;
1725
1726 /* Copy header. */
1727 if (copy > 0) {
1728 if (copy > len)
1729 copy = len;
1730 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1731 copy, csum);
1732 if ((len -= copy) == 0)
1733 return csum;
1734 offset += copy;
1735 to += copy;
1736 pos = copy;
1737 }
1738
1739 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001740 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001742 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001743
1744 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001746 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 u8 *vaddr;
1748 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1749
1750 if (copy > len)
1751 copy = len;
1752 vaddr = kmap_skb_frag(frag);
1753 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001754 frag->page_offset +
1755 offset - start, to,
1756 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 kunmap_skb_frag(vaddr);
1758 csum = csum_block_add(csum, csum2, pos);
1759 if (!(len -= copy))
1760 return csum;
1761 offset += copy;
1762 to += copy;
1763 pos += copy;
1764 }
David S. Miller1a028e52007-04-27 15:21:23 -07001765 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
1768 if (skb_shinfo(skb)->frag_list) {
1769 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1770
1771 for (; list; list = list->next) {
Al Viro81d77662006-11-14 21:37:33 -08001772 __wsum csum2;
David S. Miller1a028e52007-04-27 15:21:23 -07001773 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001775 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001776
1777 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if ((copy = end - offset) > 0) {
1779 if (copy > len)
1780 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001781 csum2 = skb_copy_and_csum_bits(list,
1782 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 to, copy, 0);
1784 csum = csum_block_add(csum, csum2, pos);
1785 if ((len -= copy) == 0)
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 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001794 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return csum;
1796}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001797EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1800{
Al Virod3bc23e2006-11-14 21:24:49 -08001801 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 long csstart;
1803
Patrick McHardy84fa7932006-08-29 16:44:56 -07001804 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001805 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 else
1807 csstart = skb_headlen(skb);
1808
Kris Katterjohn09a62662006-01-08 22:24:28 -08001809 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001811 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 csum = 0;
1814 if (csstart != skb->len)
1815 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1816 skb->len - csstart, 0);
1817
Patrick McHardy84fa7932006-08-29 16:44:56 -07001818 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001819 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Al Virod3bc23e2006-11-14 21:24:49 -08001821 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001824EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826/**
1827 * skb_dequeue - remove from the head of the queue
1828 * @list: list to dequeue from
1829 *
1830 * Remove the head of the list. The list lock is taken so the function
1831 * may be used safely with other locking list functions. The head item is
1832 * returned or %NULL if the list is empty.
1833 */
1834
1835struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1836{
1837 unsigned long flags;
1838 struct sk_buff *result;
1839
1840 spin_lock_irqsave(&list->lock, flags);
1841 result = __skb_dequeue(list);
1842 spin_unlock_irqrestore(&list->lock, flags);
1843 return result;
1844}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001845EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847/**
1848 * skb_dequeue_tail - remove from the tail of the queue
1849 * @list: list to dequeue from
1850 *
1851 * Remove the tail of the list. The list lock is taken so the function
1852 * may be used safely with other locking list functions. The tail item is
1853 * returned or %NULL if the list is empty.
1854 */
1855struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1856{
1857 unsigned long flags;
1858 struct sk_buff *result;
1859
1860 spin_lock_irqsave(&list->lock, flags);
1861 result = __skb_dequeue_tail(list);
1862 spin_unlock_irqrestore(&list->lock, flags);
1863 return result;
1864}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001865EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867/**
1868 * skb_queue_purge - empty a list
1869 * @list: list to empty
1870 *
1871 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1872 * the list and one reference dropped. This function takes the list
1873 * lock and is atomic with respect to other list locking functions.
1874 */
1875void skb_queue_purge(struct sk_buff_head *list)
1876{
1877 struct sk_buff *skb;
1878 while ((skb = skb_dequeue(list)) != NULL)
1879 kfree_skb(skb);
1880}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001881EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883/**
1884 * skb_queue_head - queue a buffer at the list head
1885 * @list: list to use
1886 * @newsk: buffer to queue
1887 *
1888 * Queue a buffer at the start of the list. This function takes the
1889 * list lock and can be used safely with other locking &sk_buff functions
1890 * safely.
1891 *
1892 * A buffer cannot be placed on two lists at the same time.
1893 */
1894void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1895{
1896 unsigned long flags;
1897
1898 spin_lock_irqsave(&list->lock, flags);
1899 __skb_queue_head(list, newsk);
1900 spin_unlock_irqrestore(&list->lock, flags);
1901}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001902EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904/**
1905 * skb_queue_tail - queue a buffer at the list tail
1906 * @list: list to use
1907 * @newsk: buffer to queue
1908 *
1909 * Queue a buffer at the tail of the list. This function takes the
1910 * list lock and can be used safely with other locking &sk_buff functions
1911 * safely.
1912 *
1913 * A buffer cannot be placed on two lists at the same time.
1914 */
1915void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1916{
1917 unsigned long flags;
1918
1919 spin_lock_irqsave(&list->lock, flags);
1920 __skb_queue_tail(list, newsk);
1921 spin_unlock_irqrestore(&list->lock, flags);
1922}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001923EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925/**
1926 * skb_unlink - remove a buffer from a list
1927 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001928 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 *
David S. Miller8728b832005-08-09 19:25:21 -07001930 * Remove a packet from a list. The list locks are taken and this
1931 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 *
David S. Miller8728b832005-08-09 19:25:21 -07001933 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 */
David S. Miller8728b832005-08-09 19:25:21 -07001935void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
David S. Miller8728b832005-08-09 19:25:21 -07001937 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
David S. Miller8728b832005-08-09 19:25:21 -07001939 spin_lock_irqsave(&list->lock, flags);
1940 __skb_unlink(skb, list);
1941 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001943EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945/**
1946 * skb_append - append a buffer
1947 * @old: buffer to insert after
1948 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001949 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 *
1951 * Place a packet after a given packet in a list. The list locks are taken
1952 * and this function is atomic with respect to other list locked calls.
1953 * A buffer cannot be placed on two lists at the same time.
1954 */
David S. Miller8728b832005-08-09 19:25:21 -07001955void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
1957 unsigned long flags;
1958
David S. Miller8728b832005-08-09 19:25:21 -07001959 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001960 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001961 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001963EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965/**
1966 * skb_insert - insert a buffer
1967 * @old: buffer to insert before
1968 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001969 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 *
David S. Miller8728b832005-08-09 19:25:21 -07001971 * Place a packet before a given packet in a list. The list locks are
1972 * taken and this function is atomic with respect to other list locked
1973 * calls.
1974 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 * A buffer cannot be placed on two lists at the same time.
1976 */
David S. Miller8728b832005-08-09 19:25:21 -07001977void skb_insert(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);
1982 __skb_insert(newsk, old->prev, old, list);
1983 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_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987static inline void skb_split_inside_header(struct sk_buff *skb,
1988 struct sk_buff* skb1,
1989 const u32 len, const int pos)
1990{
1991 int i;
1992
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001993 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
1994 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 /* And move data appendix as is. */
1996 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1997 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
1998
1999 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2000 skb_shinfo(skb)->nr_frags = 0;
2001 skb1->data_len = skb->data_len;
2002 skb1->len += skb1->data_len;
2003 skb->data_len = 0;
2004 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002005 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
2008static inline void skb_split_no_header(struct sk_buff *skb,
2009 struct sk_buff* skb1,
2010 const u32 len, int pos)
2011{
2012 int i, k = 0;
2013 const int nfrags = skb_shinfo(skb)->nr_frags;
2014
2015 skb_shinfo(skb)->nr_frags = 0;
2016 skb1->len = skb1->data_len = skb->len - len;
2017 skb->len = len;
2018 skb->data_len = len - pos;
2019
2020 for (i = 0; i < nfrags; i++) {
2021 int size = skb_shinfo(skb)->frags[i].size;
2022
2023 if (pos + size > len) {
2024 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2025
2026 if (pos < len) {
2027 /* Split frag.
2028 * We have two variants in this case:
2029 * 1. Move all the frag to the second
2030 * part, if it is possible. F.e.
2031 * this approach is mandatory for TUX,
2032 * where splitting is expensive.
2033 * 2. Split is accurately. We make this.
2034 */
2035 get_page(skb_shinfo(skb)->frags[i].page);
2036 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2037 skb_shinfo(skb1)->frags[0].size -= len - pos;
2038 skb_shinfo(skb)->frags[i].size = len - pos;
2039 skb_shinfo(skb)->nr_frags++;
2040 }
2041 k++;
2042 } else
2043 skb_shinfo(skb)->nr_frags++;
2044 pos += size;
2045 }
2046 skb_shinfo(skb1)->nr_frags = k;
2047}
2048
2049/**
2050 * skb_split - Split fragmented skb to two parts at length len.
2051 * @skb: the buffer to split
2052 * @skb1: the buffer to receive the second part
2053 * @len: new length for skb
2054 */
2055void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2056{
2057 int pos = skb_headlen(skb);
2058
2059 if (len < pos) /* Split line is inside header. */
2060 skb_split_inside_header(skb, skb1, len, pos);
2061 else /* Second chunk has no header, nothing to copy. */
2062 skb_split_no_header(skb, skb1, len, pos);
2063}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002064EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002066/* Shifting from/to a cloned skb is a no-go.
2067 *
2068 * Caller cannot keep skb_shinfo related pointers past calling here!
2069 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002070static int skb_prepare_for_shift(struct sk_buff *skb)
2071{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002072 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002073}
2074
2075/**
2076 * skb_shift - Shifts paged data partially from skb to another
2077 * @tgt: buffer into which tail data gets added
2078 * @skb: buffer from which the paged data comes from
2079 * @shiftlen: shift up to this many bytes
2080 *
2081 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2082 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2083 * It's up to caller to free skb if everything was shifted.
2084 *
2085 * If @tgt runs out of frags, the whole operation is aborted.
2086 *
2087 * Skb cannot include anything else but paged data while tgt is allowed
2088 * to have non-paged data as well.
2089 *
2090 * TODO: full sized shift could be optimized but that would need
2091 * specialized skb free'er to handle frags without up-to-date nr_frags.
2092 */
2093int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2094{
2095 int from, to, merge, todo;
2096 struct skb_frag_struct *fragfrom, *fragto;
2097
2098 BUG_ON(shiftlen > skb->len);
2099 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2100
2101 todo = shiftlen;
2102 from = 0;
2103 to = skb_shinfo(tgt)->nr_frags;
2104 fragfrom = &skb_shinfo(skb)->frags[from];
2105
2106 /* Actual merge is delayed until the point when we know we can
2107 * commit all, so that we don't have to undo partial changes
2108 */
2109 if (!to ||
2110 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2111 merge = -1;
2112 } else {
2113 merge = to - 1;
2114
2115 todo -= fragfrom->size;
2116 if (todo < 0) {
2117 if (skb_prepare_for_shift(skb) ||
2118 skb_prepare_for_shift(tgt))
2119 return 0;
2120
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002121 /* All previous frag pointers might be stale! */
2122 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002123 fragto = &skb_shinfo(tgt)->frags[merge];
2124
2125 fragto->size += shiftlen;
2126 fragfrom->size -= shiftlen;
2127 fragfrom->page_offset += shiftlen;
2128
2129 goto onlymerged;
2130 }
2131
2132 from++;
2133 }
2134
2135 /* Skip full, not-fitting skb to avoid expensive operations */
2136 if ((shiftlen == skb->len) &&
2137 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2138 return 0;
2139
2140 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2141 return 0;
2142
2143 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2144 if (to == MAX_SKB_FRAGS)
2145 return 0;
2146
2147 fragfrom = &skb_shinfo(skb)->frags[from];
2148 fragto = &skb_shinfo(tgt)->frags[to];
2149
2150 if (todo >= fragfrom->size) {
2151 *fragto = *fragfrom;
2152 todo -= fragfrom->size;
2153 from++;
2154 to++;
2155
2156 } else {
2157 get_page(fragfrom->page);
2158 fragto->page = fragfrom->page;
2159 fragto->page_offset = fragfrom->page_offset;
2160 fragto->size = todo;
2161
2162 fragfrom->page_offset += todo;
2163 fragfrom->size -= todo;
2164 todo = 0;
2165
2166 to++;
2167 break;
2168 }
2169 }
2170
2171 /* Ready to "commit" this state change to tgt */
2172 skb_shinfo(tgt)->nr_frags = to;
2173
2174 if (merge >= 0) {
2175 fragfrom = &skb_shinfo(skb)->frags[0];
2176 fragto = &skb_shinfo(tgt)->frags[merge];
2177
2178 fragto->size += fragfrom->size;
2179 put_page(fragfrom->page);
2180 }
2181
2182 /* Reposition in the original skb */
2183 to = 0;
2184 while (from < skb_shinfo(skb)->nr_frags)
2185 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2186 skb_shinfo(skb)->nr_frags = to;
2187
2188 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2189
2190onlymerged:
2191 /* Most likely the tgt won't ever need its checksum anymore, skb on
2192 * the other hand might need it if it needs to be resent
2193 */
2194 tgt->ip_summed = CHECKSUM_PARTIAL;
2195 skb->ip_summed = CHECKSUM_PARTIAL;
2196
2197 /* Yak, is it really working this way? Some helper please? */
2198 skb->len -= shiftlen;
2199 skb->data_len -= shiftlen;
2200 skb->truesize -= shiftlen;
2201 tgt->len += shiftlen;
2202 tgt->data_len += shiftlen;
2203 tgt->truesize += shiftlen;
2204
2205 return shiftlen;
2206}
2207
Thomas Graf677e90e2005-06-23 20:59:51 -07002208/**
2209 * skb_prepare_seq_read - Prepare a sequential read of skb data
2210 * @skb: the buffer to read
2211 * @from: lower offset of data to be read
2212 * @to: upper offset of data to be read
2213 * @st: state variable
2214 *
2215 * Initializes the specified state variable. Must be called before
2216 * invoking skb_seq_read() for the first time.
2217 */
2218void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2219 unsigned int to, struct skb_seq_state *st)
2220{
2221 st->lower_offset = from;
2222 st->upper_offset = to;
2223 st->root_skb = st->cur_skb = skb;
2224 st->frag_idx = st->stepped_offset = 0;
2225 st->frag_data = NULL;
2226}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002227EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002228
2229/**
2230 * skb_seq_read - Sequentially read skb data
2231 * @consumed: number of bytes consumed by the caller so far
2232 * @data: destination pointer for data to be returned
2233 * @st: state variable
2234 *
2235 * Reads a block of skb data at &consumed relative to the
2236 * lower offset specified to skb_prepare_seq_read(). Assigns
2237 * the head of the data block to &data and returns the length
2238 * of the block or 0 if the end of the skb data or the upper
2239 * offset has been reached.
2240 *
2241 * The caller is not required to consume all of the data
2242 * returned, i.e. &consumed is typically set to the number
2243 * of bytes already consumed and the next call to
2244 * skb_seq_read() will return the remaining part of the block.
2245 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002246 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002247 * this limitation is the cost for zerocopy seqeuental
2248 * reads of potentially non linear data.
2249 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002250 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002251 * at the moment, state->root_skb could be replaced with
2252 * a stack for this purpose.
2253 */
2254unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2255 struct skb_seq_state *st)
2256{
2257 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2258 skb_frag_t *frag;
2259
2260 if (unlikely(abs_offset >= st->upper_offset))
2261 return 0;
2262
2263next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002264 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002265
2266 if (abs_offset < block_limit) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002267 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002268 return block_limit - abs_offset;
2269 }
2270
2271 if (st->frag_idx == 0 && !st->frag_data)
2272 st->stepped_offset += skb_headlen(st->cur_skb);
2273
2274 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2275 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2276 block_limit = frag->size + st->stepped_offset;
2277
2278 if (abs_offset < block_limit) {
2279 if (!st->frag_data)
2280 st->frag_data = kmap_skb_frag(frag);
2281
2282 *data = (u8 *) st->frag_data + frag->page_offset +
2283 (abs_offset - st->stepped_offset);
2284
2285 return block_limit - abs_offset;
2286 }
2287
2288 if (st->frag_data) {
2289 kunmap_skb_frag(st->frag_data);
2290 st->frag_data = NULL;
2291 }
2292
2293 st->frag_idx++;
2294 st->stepped_offset += frag->size;
2295 }
2296
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002297 if (st->frag_data) {
2298 kunmap_skb_frag(st->frag_data);
2299 st->frag_data = NULL;
2300 }
2301
Shyam Iyer71b33462009-01-29 16:12:42 -08002302 if (st->root_skb == st->cur_skb &&
2303 skb_shinfo(st->root_skb)->frag_list) {
2304 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002305 st->frag_idx = 0;
2306 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002307 } else if (st->cur_skb->next) {
2308 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002309 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002310 goto next_skb;
2311 }
2312
2313 return 0;
2314}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002315EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002316
2317/**
2318 * skb_abort_seq_read - Abort a sequential read of skb data
2319 * @st: state variable
2320 *
2321 * Must be called if skb_seq_read() was not called until it
2322 * returned 0.
2323 */
2324void skb_abort_seq_read(struct skb_seq_state *st)
2325{
2326 if (st->frag_data)
2327 kunmap_skb_frag(st->frag_data);
2328}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002329EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002330
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002331#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2332
2333static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2334 struct ts_config *conf,
2335 struct ts_state *state)
2336{
2337 return skb_seq_read(offset, text, TS_SKB_CB(state));
2338}
2339
2340static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2341{
2342 skb_abort_seq_read(TS_SKB_CB(state));
2343}
2344
2345/**
2346 * skb_find_text - Find a text pattern in skb data
2347 * @skb: the buffer to look in
2348 * @from: search offset
2349 * @to: search limit
2350 * @config: textsearch configuration
2351 * @state: uninitialized textsearch state variable
2352 *
2353 * Finds a pattern in the skb data according to the specified
2354 * textsearch configuration. Use textsearch_next() to retrieve
2355 * subsequent occurrences of the pattern. Returns the offset
2356 * to the first occurrence or UINT_MAX if no match was found.
2357 */
2358unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2359 unsigned int to, struct ts_config *config,
2360 struct ts_state *state)
2361{
Phil Oesterf72b9482006-06-26 00:00:57 -07002362 unsigned int ret;
2363
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002364 config->get_next_block = skb_ts_get_next_block;
2365 config->finish = skb_ts_finish;
2366
2367 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2368
Phil Oesterf72b9482006-06-26 00:00:57 -07002369 ret = textsearch_find(config, state);
2370 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002371}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002372EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002373
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002374/**
2375 * skb_append_datato_frags: - append the user data to a skb
2376 * @sk: sock structure
2377 * @skb: skb structure to be appened with user data.
2378 * @getfrag: call back function to be used for getting the user data
2379 * @from: pointer to user message iov
2380 * @length: length of the iov message
2381 *
2382 * Description: This procedure append the user data in the fragment part
2383 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2384 */
2385int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002386 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002387 int len, int odd, struct sk_buff *skb),
2388 void *from, int length)
2389{
2390 int frg_cnt = 0;
2391 skb_frag_t *frag = NULL;
2392 struct page *page = NULL;
2393 int copy, left;
2394 int offset = 0;
2395 int ret;
2396
2397 do {
2398 /* Return error if we don't have space for new frag */
2399 frg_cnt = skb_shinfo(skb)->nr_frags;
2400 if (frg_cnt >= MAX_SKB_FRAGS)
2401 return -EFAULT;
2402
2403 /* allocate a new page for next frag */
2404 page = alloc_pages(sk->sk_allocation, 0);
2405
2406 /* If alloc_page fails just return failure and caller will
2407 * free previous allocated pages by doing kfree_skb()
2408 */
2409 if (page == NULL)
2410 return -ENOMEM;
2411
2412 /* initialize the next frag */
2413 sk->sk_sndmsg_page = page;
2414 sk->sk_sndmsg_off = 0;
2415 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2416 skb->truesize += PAGE_SIZE;
2417 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2418
2419 /* get the new initialized frag */
2420 frg_cnt = skb_shinfo(skb)->nr_frags;
2421 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2422
2423 /* copy the user data to page */
2424 left = PAGE_SIZE - frag->page_offset;
2425 copy = (length > left)? left : length;
2426
2427 ret = getfrag(from, (page_address(frag->page) +
2428 frag->page_offset + frag->size),
2429 offset, copy, 0, skb);
2430 if (ret < 0)
2431 return -EFAULT;
2432
2433 /* copy was successful so update the size parameters */
2434 sk->sk_sndmsg_off += copy;
2435 frag->size += copy;
2436 skb->len += copy;
2437 skb->data_len += copy;
2438 offset += copy;
2439 length -= copy;
2440
2441 } while (length > 0);
2442
2443 return 0;
2444}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002445EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002446
Herbert Xucbb042f2006-03-20 22:43:56 -08002447/**
2448 * skb_pull_rcsum - pull skb and update receive checksum
2449 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002450 * @len: length of data pulled
2451 *
2452 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002453 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002454 * receive path processing instead of skb_pull unless you know
2455 * that the checksum difference is zero (e.g., a valid IP header)
2456 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002457 */
2458unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2459{
2460 BUG_ON(len > skb->len);
2461 skb->len -= len;
2462 BUG_ON(skb->len < skb->data_len);
2463 skb_postpull_rcsum(skb, skb->data, len);
2464 return skb->data += len;
2465}
2466
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002467EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2468
Herbert Xuf4c50d92006-06-22 03:02:40 -07002469/**
2470 * skb_segment - Perform protocol segmentation on skb.
2471 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002472 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002473 *
2474 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002475 * a pointer to the first in a list of new skbs for the segments.
2476 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002477 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002478struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002479{
2480 struct sk_buff *segs = NULL;
2481 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002482 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002483 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002484 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002485 unsigned int offset = doffset;
2486 unsigned int headroom;
2487 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002488 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002489 int nfrags = skb_shinfo(skb)->nr_frags;
2490 int err = -ENOMEM;
2491 int i = 0;
2492 int pos;
2493
2494 __skb_push(skb, doffset);
2495 headroom = skb_headroom(skb);
2496 pos = skb_headlen(skb);
2497
2498 do {
2499 struct sk_buff *nskb;
2500 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002501 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002502 int size;
2503
2504 len = skb->len - offset;
2505 if (len > mss)
2506 len = mss;
2507
2508 hsize = skb_headlen(skb) - offset;
2509 if (hsize < 0)
2510 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002511 if (hsize > len || !sg)
2512 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002513
Herbert Xu89319d382008-12-15 23:26:06 -08002514 if (!hsize && i >= nfrags) {
2515 BUG_ON(fskb->len != len);
2516
2517 pos += len;
2518 nskb = skb_clone(fskb, GFP_ATOMIC);
2519 fskb = fskb->next;
2520
2521 if (unlikely(!nskb))
2522 goto err;
2523
2524 hsize = skb_end_pointer(nskb) - nskb->head;
2525 if (skb_cow_head(nskb, doffset + headroom)) {
2526 kfree_skb(nskb);
2527 goto err;
2528 }
2529
2530 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2531 hsize;
2532 skb_release_head_state(nskb);
2533 __skb_push(nskb, doffset);
2534 } else {
2535 nskb = alloc_skb(hsize + doffset + headroom,
2536 GFP_ATOMIC);
2537
2538 if (unlikely(!nskb))
2539 goto err;
2540
2541 skb_reserve(nskb, headroom);
2542 __skb_put(nskb, doffset);
2543 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002544
2545 if (segs)
2546 tail->next = nskb;
2547 else
2548 segs = nskb;
2549 tail = nskb;
2550
Herbert Xu6f85a122008-08-15 14:55:02 -07002551 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002552 nskb->mac_len = skb->mac_len;
2553
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002554 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002555 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002556 nskb->transport_header = (nskb->network_header +
2557 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002558 skb_copy_from_linear_data(skb, nskb->data, doffset);
2559
2560 if (pos >= offset + len)
2561 continue;
2562
Herbert Xuf4c50d92006-06-22 03:02:40 -07002563 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002564 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002565 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2566 skb_put(nskb, len),
2567 len, 0);
2568 continue;
2569 }
2570
2571 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002572
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002573 skb_copy_from_linear_data_offset(skb, offset,
2574 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002575
Herbert Xu89319d382008-12-15 23:26:06 -08002576 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002577 *frag = skb_shinfo(skb)->frags[i];
2578 get_page(frag->page);
2579 size = frag->size;
2580
2581 if (pos < offset) {
2582 frag->page_offset += offset - pos;
2583 frag->size -= offset - pos;
2584 }
2585
Herbert Xu89319d382008-12-15 23:26:06 -08002586 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002587
2588 if (pos + size <= offset + len) {
2589 i++;
2590 pos += size;
2591 } else {
2592 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002593 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002594 }
2595
2596 frag++;
2597 }
2598
Herbert Xu89319d382008-12-15 23:26:06 -08002599 if (pos < offset + len) {
2600 struct sk_buff *fskb2 = fskb;
2601
2602 BUG_ON(pos + fskb->len != offset + len);
2603
2604 pos += fskb->len;
2605 fskb = fskb->next;
2606
2607 if (fskb2->next) {
2608 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2609 if (!fskb2)
2610 goto err;
2611 } else
2612 skb_get(fskb2);
2613
2614 BUG_ON(skb_shinfo(nskb)->frag_list);
2615 skb_shinfo(nskb)->frag_list = fskb2;
2616 }
2617
2618skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002619 nskb->data_len = len - hsize;
2620 nskb->len += nskb->data_len;
2621 nskb->truesize += nskb->data_len;
2622 } while ((offset += len) < skb->len);
2623
2624 return segs;
2625
2626err:
2627 while ((skb = segs)) {
2628 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002629 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002630 }
2631 return ERR_PTR(err);
2632}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002633EXPORT_SYMBOL_GPL(skb_segment);
2634
Herbert Xu71d93b32008-12-15 23:42:33 -08002635int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2636{
2637 struct sk_buff *p = *head;
2638 struct sk_buff *nskb;
2639 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002640 unsigned int len = skb_gro_len(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002641
Herbert Xu86911732009-01-29 14:19:50 +00002642 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002643 return -E2BIG;
2644
2645 if (skb_shinfo(p)->frag_list)
2646 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00002647 else if (skb_headlen(skb) <= skb_gro_offset(skb)) {
2648 if (skb_shinfo(p)->nr_frags + skb_shinfo(skb)->nr_frags >
2649 MAX_SKB_FRAGS)
2650 return -E2BIG;
2651
Herbert Xu86911732009-01-29 14:19:50 +00002652 skb_shinfo(skb)->frags[0].page_offset +=
2653 skb_gro_offset(skb) - skb_headlen(skb);
2654 skb_shinfo(skb)->frags[0].size -=
2655 skb_gro_offset(skb) - skb_headlen(skb);
2656
Herbert Xu5d38a072009-01-04 16:13:40 -08002657 memcpy(skb_shinfo(p)->frags + skb_shinfo(p)->nr_frags,
2658 skb_shinfo(skb)->frags,
2659 skb_shinfo(skb)->nr_frags * sizeof(skb_frag_t));
2660
2661 skb_shinfo(p)->nr_frags += skb_shinfo(skb)->nr_frags;
Herbert Xuf5572062009-01-14 20:40:03 -08002662 skb_shinfo(skb)->nr_frags = 0;
2663
2664 skb->truesize -= skb->data_len;
2665 skb->len -= skb->data_len;
2666 skb->data_len = 0;
2667
Herbert Xu5d38a072009-01-04 16:13:40 -08002668 NAPI_GRO_CB(skb)->free = 1;
2669 goto done;
2670 }
Herbert Xu71d93b32008-12-15 23:42:33 -08002671
2672 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002673 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002674 if (unlikely(!nskb))
2675 return -ENOMEM;
2676
2677 __copy_skb_header(nskb, p);
2678 nskb->mac_len = p->mac_len;
2679
2680 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002681 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002682
Herbert Xu86911732009-01-29 14:19:50 +00002683 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002684 skb_set_network_header(nskb, skb_network_offset(p));
2685 skb_set_transport_header(nskb, skb_transport_offset(p));
2686
Herbert Xu86911732009-01-29 14:19:50 +00002687 __skb_pull(p, skb_gro_offset(p));
2688 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2689 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002690
2691 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2692 skb_shinfo(nskb)->frag_list = p;
Herbert Xub5302562009-01-04 16:13:19 -08002693 skb_shinfo(nskb)->gso_size = skb_shinfo(p)->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002694 skb_header_release(p);
2695 nskb->prev = p;
2696
2697 nskb->data_len += p->len;
2698 nskb->truesize += p->len;
2699 nskb->len += p->len;
2700
2701 *head = nskb;
2702 nskb->next = p->next;
2703 p->next = NULL;
2704
2705 p = nskb;
2706
2707merge:
Herbert Xu56035022009-02-05 21:26:52 -08002708 if (skb_gro_offset(skb) > skb_headlen(skb)) {
2709 skb_shinfo(skb)->frags[0].page_offset +=
2710 skb_gro_offset(skb) - skb_headlen(skb);
2711 skb_shinfo(skb)->frags[0].size -=
2712 skb_gro_offset(skb) - skb_headlen(skb);
2713 skb_gro_reset_offset(skb);
2714 skb_gro_pull(skb, skb_headlen(skb));
2715 }
2716
2717 __skb_pull(skb, skb_gro_offset(skb));
2718
Herbert Xu71d93b32008-12-15 23:42:33 -08002719 p->prev->next = skb;
2720 p->prev = skb;
2721 skb_header_release(skb);
2722
Herbert Xu5d38a072009-01-04 16:13:40 -08002723done:
2724 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002725 p->data_len += len;
2726 p->truesize += len;
2727 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002728
2729 NAPI_GRO_CB(skb)->same_flow = 1;
2730 return 0;
2731}
2732EXPORT_SYMBOL_GPL(skb_gro_receive);
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734void __init skb_init(void)
2735{
2736 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2737 sizeof(struct sk_buff),
2738 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002739 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002740 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002741 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2742 (2*sizeof(struct sk_buff)) +
2743 sizeof(atomic_t),
2744 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002745 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002746 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
David Howells716ea3a2007-04-02 20:19:53 -07002749/**
2750 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2751 * @skb: Socket buffer containing the buffers to be mapped
2752 * @sg: The scatter-gather list to map into
2753 * @offset: The offset into the buffer's contents to start mapping
2754 * @len: Length of buffer space to be mapped
2755 *
2756 * Fill the specified scatter-gather list with mappings/pointers into a
2757 * region of the buffer space attached to a socket buffer.
2758 */
David S. Miller51c739d2007-10-30 21:29:29 -07002759static int
2760__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002761{
David S. Miller1a028e52007-04-27 15:21:23 -07002762 int start = skb_headlen(skb);
2763 int i, copy = start - offset;
David Howells716ea3a2007-04-02 20:19:53 -07002764 int elt = 0;
2765
2766 if (copy > 0) {
2767 if (copy > len)
2768 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002769 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002770 elt++;
2771 if ((len -= copy) == 0)
2772 return elt;
2773 offset += copy;
2774 }
2775
2776 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002777 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002778
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002779 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002780
2781 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002782 if ((copy = end - offset) > 0) {
2783 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2784
2785 if (copy > len)
2786 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002787 sg_set_page(&sg[elt], frag->page, copy,
2788 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002789 elt++;
2790 if (!(len -= copy))
2791 return elt;
2792 offset += copy;
2793 }
David S. Miller1a028e52007-04-27 15:21:23 -07002794 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002795 }
2796
2797 if (skb_shinfo(skb)->frag_list) {
2798 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2799
2800 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07002801 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002802
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002803 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002804
2805 end = start + list->len;
David Howells716ea3a2007-04-02 20:19:53 -07002806 if ((copy = end - offset) > 0) {
2807 if (copy > len)
2808 copy = len;
David S. Miller51c739d2007-10-30 21:29:29 -07002809 elt += __skb_to_sgvec(list, sg+elt, offset - start,
2810 copy);
David Howells716ea3a2007-04-02 20:19:53 -07002811 if ((len -= copy) == 0)
2812 return elt;
2813 offset += copy;
2814 }
David S. Miller1a028e52007-04-27 15:21:23 -07002815 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002816 }
2817 }
2818 BUG_ON(len);
2819 return elt;
2820}
2821
David S. Miller51c739d2007-10-30 21:29:29 -07002822int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2823{
2824 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2825
Jens Axboec46f2332007-10-31 12:06:37 +01002826 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002827
2828 return nsg;
2829}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002830EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002831
David Howells716ea3a2007-04-02 20:19:53 -07002832/**
2833 * skb_cow_data - Check that a socket buffer's data buffers are writable
2834 * @skb: The socket buffer to check.
2835 * @tailbits: Amount of trailing space to be added
2836 * @trailer: Returned pointer to the skb where the @tailbits space begins
2837 *
2838 * Make sure that the data buffers attached to a socket buffer are
2839 * writable. If they are not, private copies are made of the data buffers
2840 * and the socket buffer is set to use these instead.
2841 *
2842 * If @tailbits is given, make sure that there is space to write @tailbits
2843 * bytes of data beyond current end of socket buffer. @trailer will be
2844 * set to point to the skb in which this space begins.
2845 *
2846 * The number of scatterlist elements required to completely map the
2847 * COW'd and extended socket buffer will be returned.
2848 */
2849int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2850{
2851 int copyflag;
2852 int elt;
2853 struct sk_buff *skb1, **skb_p;
2854
2855 /* If skb is cloned or its head is paged, reallocate
2856 * head pulling out all the pages (pages are considered not writable
2857 * at the moment even if they are anonymous).
2858 */
2859 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2860 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2861 return -ENOMEM;
2862
2863 /* Easy case. Most of packets will go this way. */
2864 if (!skb_shinfo(skb)->frag_list) {
2865 /* A little of trouble, not enough of space for trailer.
2866 * This should not happen, when stack is tuned to generate
2867 * good frames. OK, on miss we reallocate and reserve even more
2868 * space, 128 bytes is fair. */
2869
2870 if (skb_tailroom(skb) < tailbits &&
2871 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2872 return -ENOMEM;
2873
2874 /* Voila! */
2875 *trailer = skb;
2876 return 1;
2877 }
2878
2879 /* Misery. We are in troubles, going to mincer fragments... */
2880
2881 elt = 1;
2882 skb_p = &skb_shinfo(skb)->frag_list;
2883 copyflag = 0;
2884
2885 while ((skb1 = *skb_p) != NULL) {
2886 int ntail = 0;
2887
2888 /* The fragment is partially pulled by someone,
2889 * this can happen on input. Copy it and everything
2890 * after it. */
2891
2892 if (skb_shared(skb1))
2893 copyflag = 1;
2894
2895 /* If the skb is the last, worry about trailer. */
2896
2897 if (skb1->next == NULL && tailbits) {
2898 if (skb_shinfo(skb1)->nr_frags ||
2899 skb_shinfo(skb1)->frag_list ||
2900 skb_tailroom(skb1) < tailbits)
2901 ntail = tailbits + 128;
2902 }
2903
2904 if (copyflag ||
2905 skb_cloned(skb1) ||
2906 ntail ||
2907 skb_shinfo(skb1)->nr_frags ||
2908 skb_shinfo(skb1)->frag_list) {
2909 struct sk_buff *skb2;
2910
2911 /* Fuck, we are miserable poor guys... */
2912 if (ntail == 0)
2913 skb2 = skb_copy(skb1, GFP_ATOMIC);
2914 else
2915 skb2 = skb_copy_expand(skb1,
2916 skb_headroom(skb1),
2917 ntail,
2918 GFP_ATOMIC);
2919 if (unlikely(skb2 == NULL))
2920 return -ENOMEM;
2921
2922 if (skb1->sk)
2923 skb_set_owner_w(skb2, skb1->sk);
2924
2925 /* Looking around. Are we still alive?
2926 * OK, link new skb, drop old one */
2927
2928 skb2->next = skb1->next;
2929 *skb_p = skb2;
2930 kfree_skb(skb1);
2931 skb1 = skb2;
2932 }
2933 elt++;
2934 *trailer = skb1;
2935 skb_p = &skb1->next;
2936 }
2937
2938 return elt;
2939}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002940EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002941
Patrick Ohlyac45f602009-02-12 05:03:37 +00002942void skb_tstamp_tx(struct sk_buff *orig_skb,
2943 struct skb_shared_hwtstamps *hwtstamps)
2944{
2945 struct sock *sk = orig_skb->sk;
2946 struct sock_exterr_skb *serr;
2947 struct sk_buff *skb;
2948 int err;
2949
2950 if (!sk)
2951 return;
2952
2953 skb = skb_clone(orig_skb, GFP_ATOMIC);
2954 if (!skb)
2955 return;
2956
2957 if (hwtstamps) {
2958 *skb_hwtstamps(skb) =
2959 *hwtstamps;
2960 } else {
2961 /*
2962 * no hardware time stamps available,
2963 * so keep the skb_shared_tx and only
2964 * store software time stamp
2965 */
2966 skb->tstamp = ktime_get_real();
2967 }
2968
2969 serr = SKB_EXT_ERR(skb);
2970 memset(serr, 0, sizeof(*serr));
2971 serr->ee.ee_errno = ENOMSG;
2972 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
2973 err = sock_queue_err_skb(sk, skb);
2974 if (err)
2975 kfree_skb(skb);
2976}
2977EXPORT_SYMBOL_GPL(skb_tstamp_tx);
2978
2979
Rusty Russellf35d9d82008-02-04 23:49:54 -05002980/**
2981 * skb_partial_csum_set - set up and verify partial csum values for packet
2982 * @skb: the skb to set
2983 * @start: the number of bytes after skb->data to start checksumming.
2984 * @off: the offset from start to place the checksum.
2985 *
2986 * For untrusted partially-checksummed packets, we need to make sure the values
2987 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
2988 *
2989 * This function checks and sets those values and skb->ip_summed: if this
2990 * returns false you should drop the packet.
2991 */
2992bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
2993{
2994 if (unlikely(start > skb->len - 2) ||
2995 unlikely((int)start + off > skb->len - 2)) {
2996 if (net_ratelimit())
2997 printk(KERN_WARNING
2998 "bad partial csum: csum=%u/%u len=%u\n",
2999 start, off, skb->len);
3000 return false;
3001 }
3002 skb->ip_summed = CHECKSUM_PARTIAL;
3003 skb->csum_start = skb_headroom(skb) + start;
3004 skb->csum_offset = off;
3005 return true;
3006}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003007EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003008
Ben Hutchings4497b072008-06-19 16:22:28 -07003009void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3010{
3011 if (net_ratelimit())
3012 pr_warning("%s: received packets cannot be forwarded"
3013 " while LRO is enabled\n", skb->dev->name);
3014}
Ben Hutchings4497b072008-06-19 16:22:28 -07003015EXPORT_SYMBOL(__skb_warn_lro_forwarding);