blob: e5a8351ff12d5be925fedaad8f7d3ec0d2a3849c [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
David S. Millerdc6de332006-04-20 00:10:50 -0700149void skb_truesize_bug(struct sk_buff *skb)
150{
Arjan van de Ven8f480c02008-11-25 21:08:13 -0800151 WARN(net_ratelimit(), KERN_ERR "SKB BUG: Invalid truesize (%u) "
David S. Millerdc6de332006-04-20 00:10:50 -0700152 "len=%u, sizeof(sk_buff)=%Zd\n",
153 skb->truesize, skb->len, sizeof(struct sk_buff));
154}
155EXPORT_SYMBOL(skb_truesize_bug);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/* Allocate a new skbuff. We do this ourselves so we can fill in a few
158 * 'private' fields and also do memory statistics to find all the
159 * [BEEP] leaks.
160 *
161 */
162
163/**
David S. Millerd179cd12005-08-17 14:57:30 -0700164 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * @size: size to allocate
166 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700167 * @fclone: allocate from fclone cache instead of head cache
168 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800169 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 *
171 * Allocate a new &sk_buff. The returned buffer has no headroom and a
172 * tail room of size bytes. The object has a reference count of one.
173 * The return is the buffer. On a failure the return is %NULL.
174 *
175 * Buffers may only be allocated from interrupts using a @gfp_mask of
176 * %GFP_ATOMIC.
177 */
Al Virodd0fc662005-10-07 07:46:04 +0100178struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800179 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Christoph Lametere18b8902006-12-06 20:33:20 -0800181 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800182 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 struct sk_buff *skb;
184 u8 *data;
185
Herbert Xu8798b3f2006-01-23 16:32:45 -0800186 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800189 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (!skb)
191 goto out;
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800194 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
195 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (!data)
197 goto nodata;
198
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300199 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700200 * Only clear those fields we need to clear, not those that we will
201 * actually initialise below. Hence, don't put any more fields after
202 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300203 */
204 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 skb->truesize = size + sizeof(struct sk_buff);
206 atomic_set(&skb->users, 1);
207 skb->head = data;
208 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700209 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700210 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800211 /* make sure we initialize shinfo sequentially */
212 shinfo = skb_shinfo(skb);
213 atomic_set(&shinfo->dataref, 1);
214 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700215 shinfo->gso_size = 0;
216 shinfo->gso_segs = 0;
217 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800218 shinfo->ip6_frag_id = 0;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000219 shinfo->tx_flags.flags = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800220 shinfo->frag_list = NULL;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000221 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800222
David S. Millerd179cd12005-08-17 14:57:30 -0700223 if (fclone) {
224 struct sk_buff *child = skb + 1;
225 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
David S. Millerd179cd12005-08-17 14:57:30 -0700227 skb->fclone = SKB_FCLONE_ORIG;
228 atomic_set(fclone_ref, 1);
229
230 child->fclone = SKB_FCLONE_UNAVAILABLE;
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232out:
233 return skb;
234nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800235 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 skb = NULL;
237 goto out;
238}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800239EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700242 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
243 * @dev: network device to receive on
244 * @length: length to allocate
245 * @gfp_mask: get_free_pages mask, passed to alloc_skb
246 *
247 * Allocate a new &sk_buff and assign it a usage count of one. The
248 * buffer has unspecified headroom built in. Users should allocate
249 * the headroom they think they need without accounting for the
250 * built in space. The built in space is used for optimisations.
251 *
252 * %NULL is returned if there is no free memory.
253 */
254struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
255 unsigned int length, gfp_t gfp_mask)
256{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700257 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700258 struct sk_buff *skb;
259
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900260 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700261 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700262 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700263 skb->dev = dev;
264 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700265 return skb;
266}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800267EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Peter Zijlstra654bed12008-10-07 14:22:33 -0700269struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
270{
271 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
272 struct page *page;
273
274 page = alloc_pages_node(node, gfp_mask, 0);
275 return page;
276}
277EXPORT_SYMBOL(__netdev_alloc_page);
278
279void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
280 int size)
281{
282 skb_fill_page_desc(skb, i, page, off, size);
283 skb->len += size;
284 skb->data_len += size;
285 skb->truesize += size;
286}
287EXPORT_SYMBOL(skb_add_rx_frag);
288
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700289/**
290 * dev_alloc_skb - allocate an skbuff for receiving
291 * @length: length to allocate
292 *
293 * Allocate a new &sk_buff and assign it a usage count of one. The
294 * buffer has unspecified headroom built in. Users should allocate
295 * the headroom they think they need without accounting for the
296 * built in space. The built in space is used for optimisations.
297 *
298 * %NULL is returned if there is no free memory. Although this function
299 * allocates memory it can be called from an interrupt.
300 */
301struct sk_buff *dev_alloc_skb(unsigned int length)
302{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700303 /*
304 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700305 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700306 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700307 return __dev_alloc_skb(length, GFP_ATOMIC);
308}
309EXPORT_SYMBOL(dev_alloc_skb);
310
Herbert Xu27b437c2006-07-13 19:26:39 -0700311static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Herbert Xu27b437c2006-07-13 19:26:39 -0700313 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Herbert Xu27b437c2006-07-13 19:26:39 -0700315 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 do {
318 struct sk_buff *this = list;
319 list = list->next;
320 kfree_skb(this);
321 } while (list);
322}
323
Herbert Xu27b437c2006-07-13 19:26:39 -0700324static inline void skb_drop_fraglist(struct sk_buff *skb)
325{
326 skb_drop_list(&skb_shinfo(skb)->frag_list);
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329static void skb_clone_fraglist(struct sk_buff *skb)
330{
331 struct sk_buff *list;
332
333 for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
334 skb_get(list);
335}
336
Adrian Bunk5bba1712006-06-29 13:02:35 -0700337static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 if (!skb->cloned ||
340 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
341 &skb_shinfo(skb)->dataref)) {
342 if (skb_shinfo(skb)->nr_frags) {
343 int i;
344 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
345 put_page(skb_shinfo(skb)->frags[i].page);
346 }
347
348 if (skb_shinfo(skb)->frag_list)
349 skb_drop_fraglist(skb);
350
351 kfree(skb->head);
352 }
353}
354
355/*
356 * Free an skbuff by memory without cleaning the state.
357 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800358static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
David S. Millerd179cd12005-08-17 14:57:30 -0700360 struct sk_buff *other;
361 atomic_t *fclone_ref;
362
David S. Millerd179cd12005-08-17 14:57:30 -0700363 switch (skb->fclone) {
364 case SKB_FCLONE_UNAVAILABLE:
365 kmem_cache_free(skbuff_head_cache, skb);
366 break;
367
368 case SKB_FCLONE_ORIG:
369 fclone_ref = (atomic_t *) (skb + 2);
370 if (atomic_dec_and_test(fclone_ref))
371 kmem_cache_free(skbuff_fclone_cache, skb);
372 break;
373
374 case SKB_FCLONE_CLONE:
375 fclone_ref = (atomic_t *) (skb + 1);
376 other = skb - 1;
377
378 /* The clone portion is available for
379 * fast-cloning again.
380 */
381 skb->fclone = SKB_FCLONE_UNAVAILABLE;
382
383 if (atomic_dec_and_test(fclone_ref))
384 kmem_cache_free(skbuff_fclone_cache, other);
385 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700389static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 dst_release(skb->dst);
392#ifdef CONFIG_XFRM
393 secpath_put(skb->sp);
394#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700395 if (skb->destructor) {
396 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 skb->destructor(skb);
398 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800399#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700400 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800401 nf_conntrack_put_reasm(skb->nfct_reasm);
402#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#ifdef CONFIG_BRIDGE_NETFILTER
404 nf_bridge_put(skb->nf_bridge);
405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/* XXX: IS this still necessary? - JHS */
407#ifdef CONFIG_NET_SCHED
408 skb->tc_index = 0;
409#ifdef CONFIG_NET_CLS_ACT
410 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#endif
412#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700413}
414
415/* Free everything but the sk_buff shell. */
416static void skb_release_all(struct sk_buff *skb)
417{
418 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800419 skb_release_data(skb);
420}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Herbert Xu2d4baff2007-11-26 23:11:19 +0800422/**
423 * __kfree_skb - private function
424 * @skb: buffer
425 *
426 * Free an sk_buff. Release anything attached to the buffer.
427 * Clean the state. This is an internal helper function. Users should
428 * always call kfree_skb
429 */
430
431void __kfree_skb(struct sk_buff *skb)
432{
433 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 kfree_skbmem(skb);
435}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800436EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800439 * kfree_skb - free an sk_buff
440 * @skb: buffer to free
441 *
442 * Drop a reference to the buffer and free it if the usage count has
443 * hit zero.
444 */
445void kfree_skb(struct sk_buff *skb)
446{
447 if (unlikely(!skb))
448 return;
449 if (likely(atomic_read(&skb->users) == 1))
450 smp_rmb();
451 else if (likely(!atomic_dec_and_test(&skb->users)))
452 return;
453 __kfree_skb(skb);
454}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800455EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800456
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700457/**
458 * skb_recycle_check - check if skb can be reused for receive
459 * @skb: buffer
460 * @skb_size: minimum receive buffer size
461 *
462 * Checks that the skb passed in is not shared or cloned, and
463 * that it is linear and its head portion at least as large as
464 * skb_size so that it can be recycled as a receive buffer.
465 * If these conditions are met, this function does any necessary
466 * reference count dropping and cleans up the skbuff as if it
467 * just came from __alloc_skb().
468 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700469int skb_recycle_check(struct sk_buff *skb, int skb_size)
470{
471 struct skb_shared_info *shinfo;
472
473 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
474 return 0;
475
476 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
477 if (skb_end_pointer(skb) - skb->head < skb_size)
478 return 0;
479
480 if (skb_shared(skb) || skb_cloned(skb))
481 return 0;
482
483 skb_release_head_state(skb);
484 shinfo = skb_shinfo(skb);
485 atomic_set(&shinfo->dataref, 1);
486 shinfo->nr_frags = 0;
487 shinfo->gso_size = 0;
488 shinfo->gso_segs = 0;
489 shinfo->gso_type = 0;
490 shinfo->ip6_frag_id = 0;
491 shinfo->frag_list = NULL;
492
493 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700494 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800495 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700496
497 return 1;
498}
499EXPORT_SYMBOL(skb_recycle_check);
500
Herbert Xudec18812007-10-14 00:37:30 -0700501static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
502{
503 new->tstamp = old->tstamp;
504 new->dev = old->dev;
505 new->transport_header = old->transport_header;
506 new->network_header = old->network_header;
507 new->mac_header = old->mac_header;
508 new->dst = dst_clone(old->dst);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700509#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700510 new->sp = secpath_get(old->sp);
511#endif
512 memcpy(new->cb, old->cb, sizeof(old->cb));
513 new->csum_start = old->csum_start;
514 new->csum_offset = old->csum_offset;
515 new->local_df = old->local_df;
516 new->pkt_type = old->pkt_type;
517 new->ip_summed = old->ip_summed;
518 skb_copy_queue_mapping(new, old);
519 new->priority = old->priority;
520#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
521 new->ipvs_property = old->ipvs_property;
522#endif
523 new->protocol = old->protocol;
524 new->mark = old->mark;
525 __nf_copy(new, old);
526#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
527 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
528 new->nf_trace = old->nf_trace;
529#endif
530#ifdef CONFIG_NET_SCHED
531 new->tc_index = old->tc_index;
532#ifdef CONFIG_NET_CLS_ACT
533 new->tc_verd = old->tc_verd;
534#endif
535#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700536 new->vlan_tci = old->vlan_tci;
537
Herbert Xudec18812007-10-14 00:37:30 -0700538 skb_copy_secmark(new, old);
539}
540
Herbert Xue0053ec2007-10-14 00:37:52 -0700541static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#define C(x) n->x = skb->x
544
545 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700547 __copy_skb_header(n, skb);
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 C(len);
550 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700551 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700552 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800553 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 n->destructor = NULL;
Paul Moore02f1c892008-01-07 21:56:41 -0800556 C(iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 C(tail);
558 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800559 C(head);
560 C(data);
561 C(truesize);
Johannes Bergd0f09802008-07-29 11:32:07 +0200562#if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE)
563 C(do_not_encrypt);
Sujith8b30b1f2008-10-24 09:55:27 +0530564 C(requeue);
Johannes Bergd0f09802008-07-29 11:32:07 +0200565#endif
Paul Moore02f1c892008-01-07 21:56:41 -0800566 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 atomic_inc(&(skb_shinfo(skb)->dataref));
569 skb->cloned = 1;
570
571 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700572#undef C
573}
574
575/**
576 * skb_morph - morph one skb into another
577 * @dst: the skb to receive the contents
578 * @src: the skb to supply the contents
579 *
580 * This is identical to skb_clone except that the target skb is
581 * supplied by the user.
582 *
583 * The target skb is returned upon exit.
584 */
585struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
586{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800587 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700588 return __skb_clone(dst, src);
589}
590EXPORT_SYMBOL_GPL(skb_morph);
591
592/**
593 * skb_clone - duplicate an sk_buff
594 * @skb: buffer to clone
595 * @gfp_mask: allocation priority
596 *
597 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
598 * copies share the same packet data but not structure. The new
599 * buffer has a reference count of 1. If the allocation fails the
600 * function returns %NULL otherwise the new buffer is returned.
601 *
602 * If this function is called from an interrupt gfp_mask() must be
603 * %GFP_ATOMIC.
604 */
605
606struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
607{
608 struct sk_buff *n;
609
610 n = skb + 1;
611 if (skb->fclone == SKB_FCLONE_ORIG &&
612 n->fclone == SKB_FCLONE_UNAVAILABLE) {
613 atomic_t *fclone_ref = (atomic_t *) (n + 1);
614 n->fclone = SKB_FCLONE_CLONE;
615 atomic_inc(fclone_ref);
616 } else {
617 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
618 if (!n)
619 return NULL;
620 n->fclone = SKB_FCLONE_UNAVAILABLE;
621 }
622
623 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800625EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
628{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700629#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /*
631 * Shift between the two data areas in bytes
632 */
633 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700634#endif
Herbert Xudec18812007-10-14 00:37:30 -0700635
636 __copy_skb_header(new, old);
637
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700638#ifndef NET_SKBUFF_DATA_USES_OFFSET
639 /* {transport,network,mac}_header are relative to skb->head */
640 new->transport_header += offset;
641 new->network_header += offset;
642 new->mac_header += offset;
643#endif
Herbert Xu79671682006-06-22 02:40:14 -0700644 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
645 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
646 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/**
650 * skb_copy - create private copy of an sk_buff
651 * @skb: buffer to copy
652 * @gfp_mask: allocation priority
653 *
654 * Make a copy of both an &sk_buff and its data. This is used when the
655 * caller wishes to modify the data and needs a private copy of the
656 * data to alter. Returns %NULL on failure or the pointer to the buffer
657 * on success. The returned buffer has a reference count of 1.
658 *
659 * As by-product this function converts non-linear &sk_buff to linear
660 * one, so that &sk_buff becomes completely private and caller is allowed
661 * to modify all the data of returned buffer. This means that this
662 * function is not recommended for use in circumstances when only
663 * header is going to be modified. Use pskb_copy() instead.
664 */
665
Al Virodd0fc662005-10-07 07:46:04 +0100666struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 int headerlen = skb->data - skb->head;
669 /*
670 * Allocate the copy buffer
671 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700672 struct sk_buff *n;
673#ifdef NET_SKBUFF_DATA_USES_OFFSET
674 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
675#else
676 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
677#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!n)
679 return NULL;
680
681 /* Set the data pointer */
682 skb_reserve(n, headerlen);
683 /* Set the tail pointer and length */
684 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
687 BUG();
688
689 copy_skb_header(n, skb);
690 return n;
691}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800692EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694/**
695 * pskb_copy - create copy of an sk_buff with private head.
696 * @skb: buffer to copy
697 * @gfp_mask: allocation priority
698 *
699 * Make a copy of both an &sk_buff and part of its data, located
700 * in header. Fragmented data remain shared. This is used when
701 * the caller wishes to modify only header of &sk_buff and needs
702 * private copy of the header to alter. Returns %NULL on failure
703 * or the pointer to the buffer on success.
704 * The returned buffer has a reference count of 1.
705 */
706
Al Virodd0fc662005-10-07 07:46:04 +0100707struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
709 /*
710 * Allocate the copy buffer
711 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700712 struct sk_buff *n;
713#ifdef NET_SKBUFF_DATA_USES_OFFSET
714 n = alloc_skb(skb->end, gfp_mask);
715#else
716 n = alloc_skb(skb->end - skb->head, gfp_mask);
717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (!n)
719 goto out;
720
721 /* Set the data pointer */
722 skb_reserve(n, skb->data - skb->head);
723 /* Set the tail pointer and length */
724 skb_put(n, skb_headlen(skb));
725 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300726 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Herbert Xu25f484a2006-11-07 14:57:15 -0800728 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 n->data_len = skb->data_len;
730 n->len = skb->len;
731
732 if (skb_shinfo(skb)->nr_frags) {
733 int i;
734
735 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
736 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
737 get_page(skb_shinfo(n)->frags[i].page);
738 }
739 skb_shinfo(n)->nr_frags = i;
740 }
741
742 if (skb_shinfo(skb)->frag_list) {
743 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
744 skb_clone_fraglist(n);
745 }
746
747 copy_skb_header(n, skb);
748out:
749 return n;
750}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800751EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753/**
754 * pskb_expand_head - reallocate header of &sk_buff
755 * @skb: buffer to reallocate
756 * @nhead: room to add at head
757 * @ntail: room to add at tail
758 * @gfp_mask: allocation priority
759 *
760 * Expands (or creates identical copy, if &nhead and &ntail are zero)
761 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
762 * reference count of 1. Returns zero in the case of success or error,
763 * if expansion failed. In the last case, &sk_buff is not changed.
764 *
765 * All the pointers pointing into skb header may change and must be
766 * reloaded after call to this function.
767 */
768
Victor Fusco86a76ca2005-07-08 14:57:47 -0700769int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100770 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 int i;
773 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700774#ifdef NET_SKBUFF_DATA_USES_OFFSET
775 int size = nhead + skb->end + ntail;
776#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700778#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 long off;
780
Herbert Xu4edd87a2008-10-01 07:09:38 -0700781 BUG_ON(nhead < 0);
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (skb_shared(skb))
784 BUG();
785
786 size = SKB_DATA_ALIGN(size);
787
788 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
789 if (!data)
790 goto nodata;
791
792 /* Copy only real data... and, alas, header. This should be
793 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700794#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700795 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700796#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700797 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700798#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700799 memcpy(data + size, skb_end_pointer(skb),
800 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
803 get_page(skb_shinfo(skb)->frags[i].page);
804
805 if (skb_shinfo(skb)->frag_list)
806 skb_clone_fraglist(skb);
807
808 skb_release_data(skb);
809
810 off = (data + nhead) - skb->head;
811
812 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700814#ifdef NET_SKBUFF_DATA_USES_OFFSET
815 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700816 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700817#else
818 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700819#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700820 /* {transport,network,mac}_header and tail are relative to skb->head */
821 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700822 skb->transport_header += off;
823 skb->network_header += off;
824 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700825 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700827 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 skb->nohdr = 0;
829 atomic_set(&skb_shinfo(skb)->dataref, 1);
830 return 0;
831
832nodata:
833 return -ENOMEM;
834}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800835EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837/* Make private copy of skb with writable head and some headroom */
838
839struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
840{
841 struct sk_buff *skb2;
842 int delta = headroom - skb_headroom(skb);
843
844 if (delta <= 0)
845 skb2 = pskb_copy(skb, GFP_ATOMIC);
846 else {
847 skb2 = skb_clone(skb, GFP_ATOMIC);
848 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
849 GFP_ATOMIC)) {
850 kfree_skb(skb2);
851 skb2 = NULL;
852 }
853 }
854 return skb2;
855}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800856EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858/**
859 * skb_copy_expand - copy and expand sk_buff
860 * @skb: buffer to copy
861 * @newheadroom: new free bytes at head
862 * @newtailroom: new free bytes at tail
863 * @gfp_mask: allocation priority
864 *
865 * Make a copy of both an &sk_buff and its data and while doing so
866 * allocate additional space.
867 *
868 * This is used when the caller wishes to modify the data and needs a
869 * private copy of the data to alter as well as more space for new fields.
870 * Returns %NULL on failure or the pointer to the buffer
871 * on success. The returned buffer has a reference count of 1.
872 *
873 * You must pass %GFP_ATOMIC as the allocation priority if this function
874 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
876struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700877 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100878 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 /*
881 * Allocate the copy buffer
882 */
883 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
884 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700885 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700887 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (!n)
890 return NULL;
891
892 skb_reserve(n, newheadroom);
893
894 /* Set the tail pointer and length */
895 skb_put(n, skb->len);
896
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700897 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 head_copy_off = 0;
899 if (newheadroom <= head_copy_len)
900 head_copy_len = newheadroom;
901 else
902 head_copy_off = newheadroom - head_copy_len;
903
904 /* Copy the linear header and data. */
905 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
906 skb->len + head_copy_len))
907 BUG();
908
909 copy_skb_header(n, skb);
910
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700911 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700912 n->csum_start += off;
913#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700914 n->transport_header += off;
915 n->network_header += off;
916 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700917#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return n;
920}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800921EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923/**
924 * skb_pad - zero pad the tail of an skb
925 * @skb: buffer to pad
926 * @pad: space to pad
927 *
928 * Ensure that a buffer is followed by a padding area that is zero
929 * filled. Used by network drivers which may DMA or transfer data
930 * beyond the buffer end onto the wire.
931 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700932 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900934
Herbert Xu5b057c62006-06-23 02:06:41 -0700935int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Herbert Xu5b057c62006-06-23 02:06:41 -0700937 int err;
938 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700941 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700943 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700945
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700946 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700947 if (likely(skb_cloned(skb) || ntail > 0)) {
948 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
949 if (unlikely(err))
950 goto free_skb;
951 }
952
953 /* FIXME: The use of this function with non-linear skb's really needs
954 * to be audited.
955 */
956 err = skb_linearize(skb);
957 if (unlikely(err))
958 goto free_skb;
959
960 memset(skb->data + skb->len, 0, pad);
961 return 0;
962
963free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700965 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900966}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800967EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900968
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700969/**
970 * skb_put - add data to a buffer
971 * @skb: buffer to use
972 * @len: amount of data to add
973 *
974 * This function extends the used data area of the buffer. If this would
975 * exceed the total buffer size the kernel will panic. A pointer to the
976 * first byte of the extra data is returned.
977 */
978unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
979{
980 unsigned char *tmp = skb_tail_pointer(skb);
981 SKB_LINEAR_ASSERT(skb);
982 skb->tail += len;
983 skb->len += len;
984 if (unlikely(skb->tail > skb->end))
985 skb_over_panic(skb, len, __builtin_return_address(0));
986 return tmp;
987}
988EXPORT_SYMBOL(skb_put);
989
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700990/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -0700991 * skb_push - add data to the start of a buffer
992 * @skb: buffer to use
993 * @len: amount of data to add
994 *
995 * This function extends the used data area of the buffer at the buffer
996 * start. If this would exceed the total buffer headroom the kernel will
997 * panic. A pointer to the first byte of the extra data is returned.
998 */
999unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1000{
1001 skb->data -= len;
1002 skb->len += len;
1003 if (unlikely(skb->data<skb->head))
1004 skb_under_panic(skb, len, __builtin_return_address(0));
1005 return skb->data;
1006}
1007EXPORT_SYMBOL(skb_push);
1008
1009/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001010 * skb_pull - remove data from the start of a buffer
1011 * @skb: buffer to use
1012 * @len: amount of data to remove
1013 *
1014 * This function removes data from the start of a buffer, returning
1015 * the memory to the headroom. A pointer to the next data in the buffer
1016 * is returned. Once the data has been pulled future pushes will overwrite
1017 * the old data.
1018 */
1019unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1020{
1021 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1022}
1023EXPORT_SYMBOL(skb_pull);
1024
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001025/**
1026 * skb_trim - remove end from a buffer
1027 * @skb: buffer to alter
1028 * @len: new length
1029 *
1030 * Cut the length of a buffer down by removing data from the tail. If
1031 * the buffer is already under the length specified it is not modified.
1032 * The skb must be linear.
1033 */
1034void skb_trim(struct sk_buff *skb, unsigned int len)
1035{
1036 if (skb->len > len)
1037 __skb_trim(skb, len);
1038}
1039EXPORT_SYMBOL(skb_trim);
1040
Herbert Xu3cc0e872006-06-09 16:13:38 -07001041/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 */
1043
Herbert Xu3cc0e872006-06-09 16:13:38 -07001044int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Herbert Xu27b437c2006-07-13 19:26:39 -07001046 struct sk_buff **fragp;
1047 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 int offset = skb_headlen(skb);
1049 int nfrags = skb_shinfo(skb)->nr_frags;
1050 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001051 int err;
1052
1053 if (skb_cloned(skb) &&
1054 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1055 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001057 i = 0;
1058 if (offset >= len)
1059 goto drop_pages;
1060
1061 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001063
1064 if (end < len) {
1065 offset = end;
1066 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001068
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001069 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001070
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001071drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001072 skb_shinfo(skb)->nr_frags = i;
1073
1074 for (; i < nfrags; i++)
1075 put_page(skb_shinfo(skb)->frags[i].page);
1076
1077 if (skb_shinfo(skb)->frag_list)
1078 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001079 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Herbert Xu27b437c2006-07-13 19:26:39 -07001082 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1083 fragp = &frag->next) {
1084 int end = offset + frag->len;
1085
1086 if (skb_shared(frag)) {
1087 struct sk_buff *nfrag;
1088
1089 nfrag = skb_clone(frag, GFP_ATOMIC);
1090 if (unlikely(!nfrag))
1091 return -ENOMEM;
1092
1093 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001094 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001095 frag = nfrag;
1096 *fragp = frag;
1097 }
1098
1099 if (end < len) {
1100 offset = end;
1101 continue;
1102 }
1103
1104 if (end > len &&
1105 unlikely((err = pskb_trim(frag, len - offset))))
1106 return err;
1107
1108 if (frag->next)
1109 skb_drop_list(&frag->next);
1110 break;
1111 }
1112
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001113done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001114 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 skb->data_len -= skb->len - len;
1116 skb->len = len;
1117 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001118 skb->len = len;
1119 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001120 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122
1123 return 0;
1124}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001125EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127/**
1128 * __pskb_pull_tail - advance tail of skb header
1129 * @skb: buffer to reallocate
1130 * @delta: number of bytes to advance tail
1131 *
1132 * The function makes a sense only on a fragmented &sk_buff,
1133 * it expands header moving its tail forward and copying necessary
1134 * data from fragmented part.
1135 *
1136 * &sk_buff MUST have reference count of 1.
1137 *
1138 * Returns %NULL (and &sk_buff does not change) if pull failed
1139 * or value of new tail of skb in the case of success.
1140 *
1141 * All the pointers pointing into skb header may change and must be
1142 * reloaded after call to this function.
1143 */
1144
1145/* Moves tail of skb head forward, copying data from fragmented part,
1146 * when it is necessary.
1147 * 1. It may fail due to malloc failure.
1148 * 2. It may change skb pointers.
1149 *
1150 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1151 */
1152unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1153{
1154 /* If skb has not enough free space at tail, get new one
1155 * plus 128 bytes for future expansions. If we have enough
1156 * room at tail, reallocate without expansion only if skb is cloned.
1157 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001158 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 if (eat > 0 || skb_cloned(skb)) {
1161 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1162 GFP_ATOMIC))
1163 return NULL;
1164 }
1165
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001166 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 BUG();
1168
1169 /* Optimization: no fragments, no reasons to preestimate
1170 * size of pulled pages. Superb.
1171 */
1172 if (!skb_shinfo(skb)->frag_list)
1173 goto pull_pages;
1174
1175 /* Estimate size of pulled pages. */
1176 eat = delta;
1177 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1178 if (skb_shinfo(skb)->frags[i].size >= eat)
1179 goto pull_pages;
1180 eat -= skb_shinfo(skb)->frags[i].size;
1181 }
1182
1183 /* If we need update frag list, we are in troubles.
1184 * Certainly, it possible to add an offset to skb data,
1185 * but taking into account that pulling is expected to
1186 * be very rare operation, it is worth to fight against
1187 * further bloating skb head and crucify ourselves here instead.
1188 * Pure masohism, indeed. 8)8)
1189 */
1190 if (eat) {
1191 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1192 struct sk_buff *clone = NULL;
1193 struct sk_buff *insp = NULL;
1194
1195 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001196 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 if (list->len <= eat) {
1199 /* Eaten as whole. */
1200 eat -= list->len;
1201 list = list->next;
1202 insp = list;
1203 } else {
1204 /* Eaten partially. */
1205
1206 if (skb_shared(list)) {
1207 /* Sucks! We need to fork list. :-( */
1208 clone = skb_clone(list, GFP_ATOMIC);
1209 if (!clone)
1210 return NULL;
1211 insp = list->next;
1212 list = clone;
1213 } else {
1214 /* This may be pulled without
1215 * problems. */
1216 insp = list;
1217 }
1218 if (!pskb_pull(list, eat)) {
1219 if (clone)
1220 kfree_skb(clone);
1221 return NULL;
1222 }
1223 break;
1224 }
1225 } while (eat);
1226
1227 /* Free pulled out fragments. */
1228 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1229 skb_shinfo(skb)->frag_list = list->next;
1230 kfree_skb(list);
1231 }
1232 /* And insert new clone at head. */
1233 if (clone) {
1234 clone->next = list;
1235 skb_shinfo(skb)->frag_list = clone;
1236 }
1237 }
1238 /* Success! Now we may commit changes to skb data. */
1239
1240pull_pages:
1241 eat = delta;
1242 k = 0;
1243 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1244 if (skb_shinfo(skb)->frags[i].size <= eat) {
1245 put_page(skb_shinfo(skb)->frags[i].page);
1246 eat -= skb_shinfo(skb)->frags[i].size;
1247 } else {
1248 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1249 if (eat) {
1250 skb_shinfo(skb)->frags[k].page_offset += eat;
1251 skb_shinfo(skb)->frags[k].size -= eat;
1252 eat = 0;
1253 }
1254 k++;
1255 }
1256 }
1257 skb_shinfo(skb)->nr_frags = k;
1258
1259 skb->tail += delta;
1260 skb->data_len -= delta;
1261
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001262 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001264EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266/* Copy some data bits from skb to kernel buffer. */
1267
1268int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1269{
1270 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001271 int start = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (offset > (int)skb->len - len)
1274 goto fault;
1275
1276 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001277 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (copy > len)
1279 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001280 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if ((len -= copy) == 0)
1282 return 0;
1283 offset += copy;
1284 to += copy;
1285 }
1286
1287 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001288 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001290 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001291
1292 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if ((copy = end - offset) > 0) {
1294 u8 *vaddr;
1295
1296 if (copy > len)
1297 copy = len;
1298
1299 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1300 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001301 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1302 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 kunmap_skb_frag(vaddr);
1304
1305 if ((len -= copy) == 0)
1306 return 0;
1307 offset += copy;
1308 to += copy;
1309 }
David S. Miller1a028e52007-04-27 15:21:23 -07001310 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
1313 if (skb_shinfo(skb)->frag_list) {
1314 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1315
1316 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001317 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001319 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001320
1321 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if ((copy = end - offset) > 0) {
1323 if (copy > len)
1324 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001325 if (skb_copy_bits(list, offset - start,
1326 to, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 goto fault;
1328 if ((len -= copy) == 0)
1329 return 0;
1330 offset += copy;
1331 to += copy;
1332 }
David S. Miller1a028e52007-04-27 15:21:23 -07001333 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335 }
1336 if (!len)
1337 return 0;
1338
1339fault:
1340 return -EFAULT;
1341}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001342EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Jens Axboe9c55e012007-11-06 23:30:13 -08001344/*
1345 * Callback from splice_to_pipe(), if we need to release some pages
1346 * at the end of the spd in case we error'ed out in filling the pipe.
1347 */
1348static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1349{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001350 put_page(spd->pages[i]);
1351}
Jens Axboe9c55e012007-11-06 23:30:13 -08001352
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001353static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1354 unsigned int *offset,
1355 struct sk_buff *skb)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001356{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001357 struct sock *sk = skb->sk;
1358 struct page *p = sk->sk_sndmsg_page;
1359 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001360
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001361 if (!p) {
1362new_page:
1363 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1364 if (!p)
1365 return NULL;
1366
1367 off = sk->sk_sndmsg_off = 0;
1368 /* hold one ref to this page until it's full */
1369 } else {
1370 unsigned int mlen;
1371
1372 off = sk->sk_sndmsg_off;
1373 mlen = PAGE_SIZE - off;
1374 if (mlen < 64 && mlen < *len) {
1375 put_page(p);
1376 goto new_page;
1377 }
1378
1379 *len = min_t(unsigned int, *len, mlen);
1380 }
1381
1382 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1383 sk->sk_sndmsg_off += *len;
1384 *offset = off;
1385 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001386
1387 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001388}
1389
1390/*
1391 * Fill page/offset/length into spd, if it can hold more pages.
1392 */
1393static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001394 unsigned int *len, unsigned int offset,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001395 struct sk_buff *skb, int linear)
Jens Axboe9c55e012007-11-06 23:30:13 -08001396{
1397 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1398 return 1;
1399
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001400 if (linear) {
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001401 page = linear_to_page(page, len, &offset, skb);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001402 if (!page)
1403 return 1;
1404 } else
1405 get_page(page);
1406
Jens Axboe9c55e012007-11-06 23:30:13 -08001407 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001408 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001409 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001410 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001411
Jens Axboe9c55e012007-11-06 23:30:13 -08001412 return 0;
1413}
1414
Octavian Purdila2870c432008-07-15 00:49:11 -07001415static inline void __segment_seek(struct page **page, unsigned int *poff,
1416 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001417{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001418 unsigned long n;
1419
Octavian Purdila2870c432008-07-15 00:49:11 -07001420 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001421 n = *poff / PAGE_SIZE;
1422 if (n)
1423 *page = nth_page(*page, n);
1424
Octavian Purdila2870c432008-07-15 00:49:11 -07001425 *poff = *poff % PAGE_SIZE;
1426 *plen -= off;
1427}
Jens Axboe9c55e012007-11-06 23:30:13 -08001428
Octavian Purdila2870c432008-07-15 00:49:11 -07001429static inline int __splice_segment(struct page *page, unsigned int poff,
1430 unsigned int plen, unsigned int *off,
1431 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001432 struct splice_pipe_desc *spd, int linear)
Octavian Purdila2870c432008-07-15 00:49:11 -07001433{
1434 if (!*len)
1435 return 1;
1436
1437 /* skip this segment if already processed */
1438 if (*off >= plen) {
1439 *off -= plen;
1440 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001441 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001442
Octavian Purdila2870c432008-07-15 00:49:11 -07001443 /* ignore any bits we already processed */
1444 if (*off) {
1445 __segment_seek(&page, &poff, &plen, *off);
1446 *off = 0;
1447 }
1448
1449 do {
1450 unsigned int flen = min(*len, plen);
1451
1452 /* the linear region may spread across several pages */
1453 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1454
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001455 if (spd_fill_page(spd, page, &flen, poff, skb, linear))
Octavian Purdila2870c432008-07-15 00:49:11 -07001456 return 1;
1457
1458 __segment_seek(&page, &poff, &plen, flen);
1459 *len -= flen;
1460
1461 } while (*len && plen);
1462
1463 return 0;
1464}
1465
1466/*
1467 * Map linear and fragment data from the skb to spd. It reports failure if the
1468 * pipe is full or if we already spliced the requested length.
1469 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001470static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Octavian Purdila2870c432008-07-15 00:49:11 -07001471 unsigned int *len,
1472 struct splice_pipe_desc *spd)
1473{
1474 int seg;
1475
Jens Axboe9c55e012007-11-06 23:30:13 -08001476 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001477 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001478 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001479 if (__splice_segment(virt_to_page(skb->data),
1480 (unsigned long) skb->data & (PAGE_SIZE - 1),
1481 skb_headlen(skb),
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001482 offset, len, skb, spd, 1))
Octavian Purdila2870c432008-07-15 00:49:11 -07001483 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001484
1485 /*
1486 * then map the fragments
1487 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001488 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1489 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1490
Octavian Purdila2870c432008-07-15 00:49:11 -07001491 if (__splice_segment(f->page, f->page_offset, f->size,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001492 offset, len, skb, spd, 0))
Octavian Purdila2870c432008-07-15 00:49:11 -07001493 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001494 }
1495
Octavian Purdila2870c432008-07-15 00:49:11 -07001496 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001497}
1498
1499/*
1500 * Map data from the skb to a pipe. Should handle both the linear part,
1501 * the fragments, and the frag list. It does NOT handle frag lists within
1502 * the frag list, if such a thing exists. We'd probably need to recurse to
1503 * handle that cleanly.
1504 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001505int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001506 struct pipe_inode_info *pipe, unsigned int tlen,
1507 unsigned int flags)
1508{
1509 struct partial_page partial[PIPE_BUFFERS];
1510 struct page *pages[PIPE_BUFFERS];
1511 struct splice_pipe_desc spd = {
1512 .pages = pages,
1513 .partial = partial,
1514 .flags = flags,
1515 .ops = &sock_pipe_buf_ops,
1516 .spd_release = sock_spd_release,
1517 };
Jens Axboe9c55e012007-11-06 23:30:13 -08001518
1519 /*
1520 * __skb_splice_bits() only fails if the output has no room left,
1521 * so no point in going over the frag_list for the error case.
1522 */
1523 if (__skb_splice_bits(skb, &offset, &tlen, &spd))
1524 goto done;
1525 else if (!tlen)
1526 goto done;
1527
1528 /*
1529 * now see if we have a frag_list to map
1530 */
1531 if (skb_shinfo(skb)->frag_list) {
1532 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1533
1534 for (; list && tlen; list = list->next) {
1535 if (__skb_splice_bits(list, &offset, &tlen, &spd))
1536 break;
1537 }
1538 }
1539
1540done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001541 if (spd.nr_pages) {
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001542 struct sock *sk = skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001543 int ret;
1544
1545 /*
1546 * Drop the socket lock, otherwise we have reverse
1547 * locking dependencies between sk_lock and i_mutex
1548 * here as compared to sendfile(). We enter here
1549 * with the socket lock held, and splice_to_pipe() will
1550 * grab the pipe inode lock. For sendfile() emulation,
1551 * we call into ->sendpage() with the i_mutex lock held
1552 * and networking will grab the socket lock.
1553 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001554 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001555 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001556 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001557 return ret;
1558 }
1559
1560 return 0;
1561}
1562
Herbert Xu357b40a2005-04-19 22:30:14 -07001563/**
1564 * skb_store_bits - store bits from kernel buffer to skb
1565 * @skb: destination buffer
1566 * @offset: offset in destination
1567 * @from: source buffer
1568 * @len: number of bytes to copy
1569 *
1570 * Copy the specified number of bytes from the source buffer to the
1571 * destination skb. This function handles all the messy bits of
1572 * traversing fragment lists and such.
1573 */
1574
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001575int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001576{
1577 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001578 int start = skb_headlen(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -07001579
1580 if (offset > (int)skb->len - len)
1581 goto fault;
1582
David S. Miller1a028e52007-04-27 15:21:23 -07001583 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001584 if (copy > len)
1585 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001586 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001587 if ((len -= copy) == 0)
1588 return 0;
1589 offset += copy;
1590 from += copy;
1591 }
1592
1593 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1594 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001595 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001596
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001597 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001598
1599 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001600 if ((copy = end - offset) > 0) {
1601 u8 *vaddr;
1602
1603 if (copy > len)
1604 copy = len;
1605
1606 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001607 memcpy(vaddr + frag->page_offset + offset - start,
1608 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001609 kunmap_skb_frag(vaddr);
1610
1611 if ((len -= copy) == 0)
1612 return 0;
1613 offset += copy;
1614 from += copy;
1615 }
David S. Miller1a028e52007-04-27 15:21:23 -07001616 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001617 }
1618
1619 if (skb_shinfo(skb)->frag_list) {
1620 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1621
1622 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001623 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001624
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001625 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001626
1627 end = start + list->len;
Herbert Xu357b40a2005-04-19 22:30:14 -07001628 if ((copy = end - offset) > 0) {
1629 if (copy > len)
1630 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001631 if (skb_store_bits(list, offset - start,
1632 from, copy))
Herbert Xu357b40a2005-04-19 22:30:14 -07001633 goto fault;
1634 if ((len -= copy) == 0)
1635 return 0;
1636 offset += copy;
1637 from += copy;
1638 }
David S. Miller1a028e52007-04-27 15:21:23 -07001639 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001640 }
1641 }
1642 if (!len)
1643 return 0;
1644
1645fault:
1646 return -EFAULT;
1647}
Herbert Xu357b40a2005-04-19 22:30:14 -07001648EXPORT_SYMBOL(skb_store_bits);
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650/* Checksum skb data. */
1651
Al Viro2bbbc862006-11-14 21:37:14 -08001652__wsum skb_checksum(const struct sk_buff *skb, int offset,
1653 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
David S. Miller1a028e52007-04-27 15:21:23 -07001655 int start = skb_headlen(skb);
1656 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 int pos = 0;
1658
1659 /* Checksum header. */
1660 if (copy > 0) {
1661 if (copy > len)
1662 copy = len;
1663 csum = csum_partial(skb->data + offset, copy, csum);
1664 if ((len -= copy) == 0)
1665 return csum;
1666 offset += copy;
1667 pos = copy;
1668 }
1669
1670 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001671 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001673 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001674
1675 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001677 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 u8 *vaddr;
1679 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1680
1681 if (copy > len)
1682 copy = len;
1683 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001684 csum2 = csum_partial(vaddr + frag->page_offset +
1685 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 kunmap_skb_frag(vaddr);
1687 csum = csum_block_add(csum, csum2, pos);
1688 if (!(len -= copy))
1689 return csum;
1690 offset += copy;
1691 pos += copy;
1692 }
David S. Miller1a028e52007-04-27 15:21:23 -07001693 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
1695
1696 if (skb_shinfo(skb)->frag_list) {
1697 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1698
1699 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001700 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001702 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001703
1704 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if ((copy = end - offset) > 0) {
Al Viro5f92a732006-11-14 21:36:54 -08001706 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (copy > len)
1708 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001709 csum2 = skb_checksum(list, offset - start,
1710 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 csum = csum_block_add(csum, csum2, pos);
1712 if ((len -= copy) == 0)
1713 return csum;
1714 offset += copy;
1715 pos += copy;
1716 }
David S. Miller1a028e52007-04-27 15:21:23 -07001717 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001720 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 return csum;
1723}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001724EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726/* Both of above in one bottle. */
1727
Al Viro81d77662006-11-14 21:37:33 -08001728__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1729 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
David S. Miller1a028e52007-04-27 15:21:23 -07001731 int start = skb_headlen(skb);
1732 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 int pos = 0;
1734
1735 /* Copy header. */
1736 if (copy > 0) {
1737 if (copy > len)
1738 copy = len;
1739 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1740 copy, csum);
1741 if ((len -= copy) == 0)
1742 return csum;
1743 offset += copy;
1744 to += copy;
1745 pos = copy;
1746 }
1747
1748 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001749 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001751 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001752
1753 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001755 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 u8 *vaddr;
1757 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1758
1759 if (copy > len)
1760 copy = len;
1761 vaddr = kmap_skb_frag(frag);
1762 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001763 frag->page_offset +
1764 offset - start, to,
1765 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 kunmap_skb_frag(vaddr);
1767 csum = csum_block_add(csum, csum2, pos);
1768 if (!(len -= copy))
1769 return csum;
1770 offset += copy;
1771 to += copy;
1772 pos += copy;
1773 }
David S. Miller1a028e52007-04-27 15:21:23 -07001774 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776
1777 if (skb_shinfo(skb)->frag_list) {
1778 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1779
1780 for (; list; list = list->next) {
Al Viro81d77662006-11-14 21:37:33 -08001781 __wsum csum2;
David S. Miller1a028e52007-04-27 15:21:23 -07001782 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001784 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001785
1786 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if ((copy = end - offset) > 0) {
1788 if (copy > len)
1789 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001790 csum2 = skb_copy_and_csum_bits(list,
1791 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 to, copy, 0);
1793 csum = csum_block_add(csum, csum2, pos);
1794 if ((len -= copy) == 0)
1795 return csum;
1796 offset += copy;
1797 to += copy;
1798 pos += copy;
1799 }
David S. Miller1a028e52007-04-27 15:21:23 -07001800 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001803 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return csum;
1805}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001806EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1809{
Al Virod3bc23e2006-11-14 21:24:49 -08001810 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 long csstart;
1812
Patrick McHardy84fa7932006-08-29 16:44:56 -07001813 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001814 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 else
1816 csstart = skb_headlen(skb);
1817
Kris Katterjohn09a62662006-01-08 22:24:28 -08001818 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001820 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 csum = 0;
1823 if (csstart != skb->len)
1824 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1825 skb->len - csstart, 0);
1826
Patrick McHardy84fa7932006-08-29 16:44:56 -07001827 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001828 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Al Virod3bc23e2006-11-14 21:24:49 -08001830 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001833EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835/**
1836 * skb_dequeue - remove from the head of the queue
1837 * @list: list to dequeue from
1838 *
1839 * Remove the head of the list. The list lock is taken so the function
1840 * may be used safely with other locking list functions. The head item is
1841 * returned or %NULL if the list is empty.
1842 */
1843
1844struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1845{
1846 unsigned long flags;
1847 struct sk_buff *result;
1848
1849 spin_lock_irqsave(&list->lock, flags);
1850 result = __skb_dequeue(list);
1851 spin_unlock_irqrestore(&list->lock, flags);
1852 return result;
1853}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001854EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856/**
1857 * skb_dequeue_tail - remove from the tail of the queue
1858 * @list: list to dequeue from
1859 *
1860 * Remove the tail of the list. The list lock is taken so the function
1861 * may be used safely with other locking list functions. The tail item is
1862 * returned or %NULL if the list is empty.
1863 */
1864struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1865{
1866 unsigned long flags;
1867 struct sk_buff *result;
1868
1869 spin_lock_irqsave(&list->lock, flags);
1870 result = __skb_dequeue_tail(list);
1871 spin_unlock_irqrestore(&list->lock, flags);
1872 return result;
1873}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001874EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876/**
1877 * skb_queue_purge - empty a list
1878 * @list: list to empty
1879 *
1880 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1881 * the list and one reference dropped. This function takes the list
1882 * lock and is atomic with respect to other list locking functions.
1883 */
1884void skb_queue_purge(struct sk_buff_head *list)
1885{
1886 struct sk_buff *skb;
1887 while ((skb = skb_dequeue(list)) != NULL)
1888 kfree_skb(skb);
1889}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001890EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892/**
1893 * skb_queue_head - queue a buffer at the list head
1894 * @list: list to use
1895 * @newsk: buffer to queue
1896 *
1897 * Queue a buffer at the start of the list. This function takes the
1898 * list lock and can be used safely with other locking &sk_buff functions
1899 * safely.
1900 *
1901 * A buffer cannot be placed on two lists at the same time.
1902 */
1903void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1904{
1905 unsigned long flags;
1906
1907 spin_lock_irqsave(&list->lock, flags);
1908 __skb_queue_head(list, newsk);
1909 spin_unlock_irqrestore(&list->lock, flags);
1910}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001911EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913/**
1914 * skb_queue_tail - queue a buffer at the list tail
1915 * @list: list to use
1916 * @newsk: buffer to queue
1917 *
1918 * Queue a buffer at the tail of the list. This function takes the
1919 * list lock and can be used safely with other locking &sk_buff functions
1920 * safely.
1921 *
1922 * A buffer cannot be placed on two lists at the same time.
1923 */
1924void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1925{
1926 unsigned long flags;
1927
1928 spin_lock_irqsave(&list->lock, flags);
1929 __skb_queue_tail(list, newsk);
1930 spin_unlock_irqrestore(&list->lock, flags);
1931}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001932EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934/**
1935 * skb_unlink - remove a buffer from a list
1936 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001937 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 *
David S. Miller8728b832005-08-09 19:25:21 -07001939 * Remove a packet from a list. The list locks are taken and this
1940 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 *
David S. Miller8728b832005-08-09 19:25:21 -07001942 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 */
David S. Miller8728b832005-08-09 19:25:21 -07001944void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
David S. Miller8728b832005-08-09 19:25:21 -07001946 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
David S. Miller8728b832005-08-09 19:25:21 -07001948 spin_lock_irqsave(&list->lock, flags);
1949 __skb_unlink(skb, list);
1950 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001952EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954/**
1955 * skb_append - append a buffer
1956 * @old: buffer to insert after
1957 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001958 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 *
1960 * Place a packet after a given packet in a list. The list locks are taken
1961 * and this function is atomic with respect to other list locked calls.
1962 * A buffer cannot be placed on two lists at the same time.
1963 */
David S. Miller8728b832005-08-09 19:25:21 -07001964void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
1966 unsigned long flags;
1967
David S. Miller8728b832005-08-09 19:25:21 -07001968 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001969 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001970 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001972EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974/**
1975 * skb_insert - insert a buffer
1976 * @old: buffer to insert before
1977 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001978 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 *
David S. Miller8728b832005-08-09 19:25:21 -07001980 * Place a packet before a given packet in a list. The list locks are
1981 * taken and this function is atomic with respect to other list locked
1982 * calls.
1983 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 * A buffer cannot be placed on two lists at the same time.
1985 */
David S. Miller8728b832005-08-09 19:25:21 -07001986void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
1988 unsigned long flags;
1989
David S. Miller8728b832005-08-09 19:25:21 -07001990 spin_lock_irqsave(&list->lock, flags);
1991 __skb_insert(newsk, old->prev, old, list);
1992 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001994EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996static inline void skb_split_inside_header(struct sk_buff *skb,
1997 struct sk_buff* skb1,
1998 const u32 len, const int pos)
1999{
2000 int i;
2001
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002002 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2003 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 /* And move data appendix as is. */
2005 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2006 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2007
2008 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2009 skb_shinfo(skb)->nr_frags = 0;
2010 skb1->data_len = skb->data_len;
2011 skb1->len += skb1->data_len;
2012 skb->data_len = 0;
2013 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002014 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015}
2016
2017static inline void skb_split_no_header(struct sk_buff *skb,
2018 struct sk_buff* skb1,
2019 const u32 len, int pos)
2020{
2021 int i, k = 0;
2022 const int nfrags = skb_shinfo(skb)->nr_frags;
2023
2024 skb_shinfo(skb)->nr_frags = 0;
2025 skb1->len = skb1->data_len = skb->len - len;
2026 skb->len = len;
2027 skb->data_len = len - pos;
2028
2029 for (i = 0; i < nfrags; i++) {
2030 int size = skb_shinfo(skb)->frags[i].size;
2031
2032 if (pos + size > len) {
2033 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2034
2035 if (pos < len) {
2036 /* Split frag.
2037 * We have two variants in this case:
2038 * 1. Move all the frag to the second
2039 * part, if it is possible. F.e.
2040 * this approach is mandatory for TUX,
2041 * where splitting is expensive.
2042 * 2. Split is accurately. We make this.
2043 */
2044 get_page(skb_shinfo(skb)->frags[i].page);
2045 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2046 skb_shinfo(skb1)->frags[0].size -= len - pos;
2047 skb_shinfo(skb)->frags[i].size = len - pos;
2048 skb_shinfo(skb)->nr_frags++;
2049 }
2050 k++;
2051 } else
2052 skb_shinfo(skb)->nr_frags++;
2053 pos += size;
2054 }
2055 skb_shinfo(skb1)->nr_frags = k;
2056}
2057
2058/**
2059 * skb_split - Split fragmented skb to two parts at length len.
2060 * @skb: the buffer to split
2061 * @skb1: the buffer to receive the second part
2062 * @len: new length for skb
2063 */
2064void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2065{
2066 int pos = skb_headlen(skb);
2067
2068 if (len < pos) /* Split line is inside header. */
2069 skb_split_inside_header(skb, skb1, len, pos);
2070 else /* Second chunk has no header, nothing to copy. */
2071 skb_split_no_header(skb, skb1, len, pos);
2072}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002073EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002075/* Shifting from/to a cloned skb is a no-go.
2076 *
2077 * Caller cannot keep skb_shinfo related pointers past calling here!
2078 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002079static int skb_prepare_for_shift(struct sk_buff *skb)
2080{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002081 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002082}
2083
2084/**
2085 * skb_shift - Shifts paged data partially from skb to another
2086 * @tgt: buffer into which tail data gets added
2087 * @skb: buffer from which the paged data comes from
2088 * @shiftlen: shift up to this many bytes
2089 *
2090 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2091 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2092 * It's up to caller to free skb if everything was shifted.
2093 *
2094 * If @tgt runs out of frags, the whole operation is aborted.
2095 *
2096 * Skb cannot include anything else but paged data while tgt is allowed
2097 * to have non-paged data as well.
2098 *
2099 * TODO: full sized shift could be optimized but that would need
2100 * specialized skb free'er to handle frags without up-to-date nr_frags.
2101 */
2102int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2103{
2104 int from, to, merge, todo;
2105 struct skb_frag_struct *fragfrom, *fragto;
2106
2107 BUG_ON(shiftlen > skb->len);
2108 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2109
2110 todo = shiftlen;
2111 from = 0;
2112 to = skb_shinfo(tgt)->nr_frags;
2113 fragfrom = &skb_shinfo(skb)->frags[from];
2114
2115 /* Actual merge is delayed until the point when we know we can
2116 * commit all, so that we don't have to undo partial changes
2117 */
2118 if (!to ||
2119 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2120 merge = -1;
2121 } else {
2122 merge = to - 1;
2123
2124 todo -= fragfrom->size;
2125 if (todo < 0) {
2126 if (skb_prepare_for_shift(skb) ||
2127 skb_prepare_for_shift(tgt))
2128 return 0;
2129
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002130 /* All previous frag pointers might be stale! */
2131 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002132 fragto = &skb_shinfo(tgt)->frags[merge];
2133
2134 fragto->size += shiftlen;
2135 fragfrom->size -= shiftlen;
2136 fragfrom->page_offset += shiftlen;
2137
2138 goto onlymerged;
2139 }
2140
2141 from++;
2142 }
2143
2144 /* Skip full, not-fitting skb to avoid expensive operations */
2145 if ((shiftlen == skb->len) &&
2146 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2147 return 0;
2148
2149 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2150 return 0;
2151
2152 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2153 if (to == MAX_SKB_FRAGS)
2154 return 0;
2155
2156 fragfrom = &skb_shinfo(skb)->frags[from];
2157 fragto = &skb_shinfo(tgt)->frags[to];
2158
2159 if (todo >= fragfrom->size) {
2160 *fragto = *fragfrom;
2161 todo -= fragfrom->size;
2162 from++;
2163 to++;
2164
2165 } else {
2166 get_page(fragfrom->page);
2167 fragto->page = fragfrom->page;
2168 fragto->page_offset = fragfrom->page_offset;
2169 fragto->size = todo;
2170
2171 fragfrom->page_offset += todo;
2172 fragfrom->size -= todo;
2173 todo = 0;
2174
2175 to++;
2176 break;
2177 }
2178 }
2179
2180 /* Ready to "commit" this state change to tgt */
2181 skb_shinfo(tgt)->nr_frags = to;
2182
2183 if (merge >= 0) {
2184 fragfrom = &skb_shinfo(skb)->frags[0];
2185 fragto = &skb_shinfo(tgt)->frags[merge];
2186
2187 fragto->size += fragfrom->size;
2188 put_page(fragfrom->page);
2189 }
2190
2191 /* Reposition in the original skb */
2192 to = 0;
2193 while (from < skb_shinfo(skb)->nr_frags)
2194 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2195 skb_shinfo(skb)->nr_frags = to;
2196
2197 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2198
2199onlymerged:
2200 /* Most likely the tgt won't ever need its checksum anymore, skb on
2201 * the other hand might need it if it needs to be resent
2202 */
2203 tgt->ip_summed = CHECKSUM_PARTIAL;
2204 skb->ip_summed = CHECKSUM_PARTIAL;
2205
2206 /* Yak, is it really working this way? Some helper please? */
2207 skb->len -= shiftlen;
2208 skb->data_len -= shiftlen;
2209 skb->truesize -= shiftlen;
2210 tgt->len += shiftlen;
2211 tgt->data_len += shiftlen;
2212 tgt->truesize += shiftlen;
2213
2214 return shiftlen;
2215}
2216
Thomas Graf677e90e2005-06-23 20:59:51 -07002217/**
2218 * skb_prepare_seq_read - Prepare a sequential read of skb data
2219 * @skb: the buffer to read
2220 * @from: lower offset of data to be read
2221 * @to: upper offset of data to be read
2222 * @st: state variable
2223 *
2224 * Initializes the specified state variable. Must be called before
2225 * invoking skb_seq_read() for the first time.
2226 */
2227void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2228 unsigned int to, struct skb_seq_state *st)
2229{
2230 st->lower_offset = from;
2231 st->upper_offset = to;
2232 st->root_skb = st->cur_skb = skb;
2233 st->frag_idx = st->stepped_offset = 0;
2234 st->frag_data = NULL;
2235}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002236EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002237
2238/**
2239 * skb_seq_read - Sequentially read skb data
2240 * @consumed: number of bytes consumed by the caller so far
2241 * @data: destination pointer for data to be returned
2242 * @st: state variable
2243 *
2244 * Reads a block of skb data at &consumed relative to the
2245 * lower offset specified to skb_prepare_seq_read(). Assigns
2246 * the head of the data block to &data and returns the length
2247 * of the block or 0 if the end of the skb data or the upper
2248 * offset has been reached.
2249 *
2250 * The caller is not required to consume all of the data
2251 * returned, i.e. &consumed is typically set to the number
2252 * of bytes already consumed and the next call to
2253 * skb_seq_read() will return the remaining part of the block.
2254 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002255 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002256 * this limitation is the cost for zerocopy seqeuental
2257 * reads of potentially non linear data.
2258 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002259 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002260 * at the moment, state->root_skb could be replaced with
2261 * a stack for this purpose.
2262 */
2263unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2264 struct skb_seq_state *st)
2265{
2266 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2267 skb_frag_t *frag;
2268
2269 if (unlikely(abs_offset >= st->upper_offset))
2270 return 0;
2271
2272next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002273 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002274
2275 if (abs_offset < block_limit) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002276 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002277 return block_limit - abs_offset;
2278 }
2279
2280 if (st->frag_idx == 0 && !st->frag_data)
2281 st->stepped_offset += skb_headlen(st->cur_skb);
2282
2283 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2284 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2285 block_limit = frag->size + st->stepped_offset;
2286
2287 if (abs_offset < block_limit) {
2288 if (!st->frag_data)
2289 st->frag_data = kmap_skb_frag(frag);
2290
2291 *data = (u8 *) st->frag_data + frag->page_offset +
2292 (abs_offset - st->stepped_offset);
2293
2294 return block_limit - abs_offset;
2295 }
2296
2297 if (st->frag_data) {
2298 kunmap_skb_frag(st->frag_data);
2299 st->frag_data = NULL;
2300 }
2301
2302 st->frag_idx++;
2303 st->stepped_offset += frag->size;
2304 }
2305
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002306 if (st->frag_data) {
2307 kunmap_skb_frag(st->frag_data);
2308 st->frag_data = NULL;
2309 }
2310
Shyam Iyer71b33462009-01-29 16:12:42 -08002311 if (st->root_skb == st->cur_skb &&
2312 skb_shinfo(st->root_skb)->frag_list) {
2313 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002314 st->frag_idx = 0;
2315 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002316 } else if (st->cur_skb->next) {
2317 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002318 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002319 goto next_skb;
2320 }
2321
2322 return 0;
2323}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002324EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002325
2326/**
2327 * skb_abort_seq_read - Abort a sequential read of skb data
2328 * @st: state variable
2329 *
2330 * Must be called if skb_seq_read() was not called until it
2331 * returned 0.
2332 */
2333void skb_abort_seq_read(struct skb_seq_state *st)
2334{
2335 if (st->frag_data)
2336 kunmap_skb_frag(st->frag_data);
2337}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002338EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002339
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002340#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2341
2342static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2343 struct ts_config *conf,
2344 struct ts_state *state)
2345{
2346 return skb_seq_read(offset, text, TS_SKB_CB(state));
2347}
2348
2349static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2350{
2351 skb_abort_seq_read(TS_SKB_CB(state));
2352}
2353
2354/**
2355 * skb_find_text - Find a text pattern in skb data
2356 * @skb: the buffer to look in
2357 * @from: search offset
2358 * @to: search limit
2359 * @config: textsearch configuration
2360 * @state: uninitialized textsearch state variable
2361 *
2362 * Finds a pattern in the skb data according to the specified
2363 * textsearch configuration. Use textsearch_next() to retrieve
2364 * subsequent occurrences of the pattern. Returns the offset
2365 * to the first occurrence or UINT_MAX if no match was found.
2366 */
2367unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2368 unsigned int to, struct ts_config *config,
2369 struct ts_state *state)
2370{
Phil Oesterf72b9482006-06-26 00:00:57 -07002371 unsigned int ret;
2372
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002373 config->get_next_block = skb_ts_get_next_block;
2374 config->finish = skb_ts_finish;
2375
2376 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2377
Phil Oesterf72b9482006-06-26 00:00:57 -07002378 ret = textsearch_find(config, state);
2379 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002380}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002381EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002382
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002383/**
2384 * skb_append_datato_frags: - append the user data to a skb
2385 * @sk: sock structure
2386 * @skb: skb structure to be appened with user data.
2387 * @getfrag: call back function to be used for getting the user data
2388 * @from: pointer to user message iov
2389 * @length: length of the iov message
2390 *
2391 * Description: This procedure append the user data in the fragment part
2392 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2393 */
2394int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002395 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002396 int len, int odd, struct sk_buff *skb),
2397 void *from, int length)
2398{
2399 int frg_cnt = 0;
2400 skb_frag_t *frag = NULL;
2401 struct page *page = NULL;
2402 int copy, left;
2403 int offset = 0;
2404 int ret;
2405
2406 do {
2407 /* Return error if we don't have space for new frag */
2408 frg_cnt = skb_shinfo(skb)->nr_frags;
2409 if (frg_cnt >= MAX_SKB_FRAGS)
2410 return -EFAULT;
2411
2412 /* allocate a new page for next frag */
2413 page = alloc_pages(sk->sk_allocation, 0);
2414
2415 /* If alloc_page fails just return failure and caller will
2416 * free previous allocated pages by doing kfree_skb()
2417 */
2418 if (page == NULL)
2419 return -ENOMEM;
2420
2421 /* initialize the next frag */
2422 sk->sk_sndmsg_page = page;
2423 sk->sk_sndmsg_off = 0;
2424 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2425 skb->truesize += PAGE_SIZE;
2426 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2427
2428 /* get the new initialized frag */
2429 frg_cnt = skb_shinfo(skb)->nr_frags;
2430 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2431
2432 /* copy the user data to page */
2433 left = PAGE_SIZE - frag->page_offset;
2434 copy = (length > left)? left : length;
2435
2436 ret = getfrag(from, (page_address(frag->page) +
2437 frag->page_offset + frag->size),
2438 offset, copy, 0, skb);
2439 if (ret < 0)
2440 return -EFAULT;
2441
2442 /* copy was successful so update the size parameters */
2443 sk->sk_sndmsg_off += copy;
2444 frag->size += copy;
2445 skb->len += copy;
2446 skb->data_len += copy;
2447 offset += copy;
2448 length -= copy;
2449
2450 } while (length > 0);
2451
2452 return 0;
2453}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002454EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002455
Herbert Xucbb042f2006-03-20 22:43:56 -08002456/**
2457 * skb_pull_rcsum - pull skb and update receive checksum
2458 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002459 * @len: length of data pulled
2460 *
2461 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002462 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002463 * receive path processing instead of skb_pull unless you know
2464 * that the checksum difference is zero (e.g., a valid IP header)
2465 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002466 */
2467unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2468{
2469 BUG_ON(len > skb->len);
2470 skb->len -= len;
2471 BUG_ON(skb->len < skb->data_len);
2472 skb_postpull_rcsum(skb, skb->data, len);
2473 return skb->data += len;
2474}
2475
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002476EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2477
Herbert Xuf4c50d92006-06-22 03:02:40 -07002478/**
2479 * skb_segment - Perform protocol segmentation on skb.
2480 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002481 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002482 *
2483 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002484 * a pointer to the first in a list of new skbs for the segments.
2485 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002486 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002487struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002488{
2489 struct sk_buff *segs = NULL;
2490 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002491 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002492 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002493 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002494 unsigned int offset = doffset;
2495 unsigned int headroom;
2496 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002497 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002498 int nfrags = skb_shinfo(skb)->nr_frags;
2499 int err = -ENOMEM;
2500 int i = 0;
2501 int pos;
2502
2503 __skb_push(skb, doffset);
2504 headroom = skb_headroom(skb);
2505 pos = skb_headlen(skb);
2506
2507 do {
2508 struct sk_buff *nskb;
2509 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002510 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002511 int size;
2512
2513 len = skb->len - offset;
2514 if (len > mss)
2515 len = mss;
2516
2517 hsize = skb_headlen(skb) - offset;
2518 if (hsize < 0)
2519 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002520 if (hsize > len || !sg)
2521 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002522
Herbert Xu89319d382008-12-15 23:26:06 -08002523 if (!hsize && i >= nfrags) {
2524 BUG_ON(fskb->len != len);
2525
2526 pos += len;
2527 nskb = skb_clone(fskb, GFP_ATOMIC);
2528 fskb = fskb->next;
2529
2530 if (unlikely(!nskb))
2531 goto err;
2532
2533 hsize = skb_end_pointer(nskb) - nskb->head;
2534 if (skb_cow_head(nskb, doffset + headroom)) {
2535 kfree_skb(nskb);
2536 goto err;
2537 }
2538
2539 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2540 hsize;
2541 skb_release_head_state(nskb);
2542 __skb_push(nskb, doffset);
2543 } else {
2544 nskb = alloc_skb(hsize + doffset + headroom,
2545 GFP_ATOMIC);
2546
2547 if (unlikely(!nskb))
2548 goto err;
2549
2550 skb_reserve(nskb, headroom);
2551 __skb_put(nskb, doffset);
2552 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002553
2554 if (segs)
2555 tail->next = nskb;
2556 else
2557 segs = nskb;
2558 tail = nskb;
2559
Herbert Xu6f85a122008-08-15 14:55:02 -07002560 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002561 nskb->mac_len = skb->mac_len;
2562
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002563 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002564 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002565 nskb->transport_header = (nskb->network_header +
2566 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002567 skb_copy_from_linear_data(skb, nskb->data, doffset);
2568
2569 if (pos >= offset + len)
2570 continue;
2571
Herbert Xuf4c50d92006-06-22 03:02:40 -07002572 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002573 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002574 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2575 skb_put(nskb, len),
2576 len, 0);
2577 continue;
2578 }
2579
2580 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002581
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002582 skb_copy_from_linear_data_offset(skb, offset,
2583 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002584
Herbert Xu89319d382008-12-15 23:26:06 -08002585 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002586 *frag = skb_shinfo(skb)->frags[i];
2587 get_page(frag->page);
2588 size = frag->size;
2589
2590 if (pos < offset) {
2591 frag->page_offset += offset - pos;
2592 frag->size -= offset - pos;
2593 }
2594
Herbert Xu89319d382008-12-15 23:26:06 -08002595 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002596
2597 if (pos + size <= offset + len) {
2598 i++;
2599 pos += size;
2600 } else {
2601 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002602 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002603 }
2604
2605 frag++;
2606 }
2607
Herbert Xu89319d382008-12-15 23:26:06 -08002608 if (pos < offset + len) {
2609 struct sk_buff *fskb2 = fskb;
2610
2611 BUG_ON(pos + fskb->len != offset + len);
2612
2613 pos += fskb->len;
2614 fskb = fskb->next;
2615
2616 if (fskb2->next) {
2617 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2618 if (!fskb2)
2619 goto err;
2620 } else
2621 skb_get(fskb2);
2622
2623 BUG_ON(skb_shinfo(nskb)->frag_list);
2624 skb_shinfo(nskb)->frag_list = fskb2;
2625 }
2626
2627skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002628 nskb->data_len = len - hsize;
2629 nskb->len += nskb->data_len;
2630 nskb->truesize += nskb->data_len;
2631 } while ((offset += len) < skb->len);
2632
2633 return segs;
2634
2635err:
2636 while ((skb = segs)) {
2637 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002638 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002639 }
2640 return ERR_PTR(err);
2641}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002642EXPORT_SYMBOL_GPL(skb_segment);
2643
Herbert Xu71d93b32008-12-15 23:42:33 -08002644int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2645{
2646 struct sk_buff *p = *head;
2647 struct sk_buff *nskb;
2648 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002649 unsigned int len = skb_gro_len(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002650
Herbert Xu86911732009-01-29 14:19:50 +00002651 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002652 return -E2BIG;
2653
2654 if (skb_shinfo(p)->frag_list)
2655 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00002656 else if (skb_headlen(skb) <= skb_gro_offset(skb)) {
2657 if (skb_shinfo(p)->nr_frags + skb_shinfo(skb)->nr_frags >
2658 MAX_SKB_FRAGS)
2659 return -E2BIG;
2660
Herbert Xu86911732009-01-29 14:19:50 +00002661 skb_shinfo(skb)->frags[0].page_offset +=
2662 skb_gro_offset(skb) - skb_headlen(skb);
2663 skb_shinfo(skb)->frags[0].size -=
2664 skb_gro_offset(skb) - skb_headlen(skb);
2665
Herbert Xu5d38a072009-01-04 16:13:40 -08002666 memcpy(skb_shinfo(p)->frags + skb_shinfo(p)->nr_frags,
2667 skb_shinfo(skb)->frags,
2668 skb_shinfo(skb)->nr_frags * sizeof(skb_frag_t));
2669
2670 skb_shinfo(p)->nr_frags += skb_shinfo(skb)->nr_frags;
Herbert Xuf5572062009-01-14 20:40:03 -08002671 skb_shinfo(skb)->nr_frags = 0;
2672
2673 skb->truesize -= skb->data_len;
2674 skb->len -= skb->data_len;
2675 skb->data_len = 0;
2676
Herbert Xu5d38a072009-01-04 16:13:40 -08002677 NAPI_GRO_CB(skb)->free = 1;
2678 goto done;
2679 }
Herbert Xu71d93b32008-12-15 23:42:33 -08002680
2681 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002682 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002683 if (unlikely(!nskb))
2684 return -ENOMEM;
2685
2686 __copy_skb_header(nskb, p);
2687 nskb->mac_len = p->mac_len;
2688
2689 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002690 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002691
Herbert Xu86911732009-01-29 14:19:50 +00002692 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002693 skb_set_network_header(nskb, skb_network_offset(p));
2694 skb_set_transport_header(nskb, skb_transport_offset(p));
2695
Herbert Xu86911732009-01-29 14:19:50 +00002696 __skb_pull(p, skb_gro_offset(p));
2697 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2698 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002699
2700 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2701 skb_shinfo(nskb)->frag_list = p;
Herbert Xub5302562009-01-04 16:13:19 -08002702 skb_shinfo(nskb)->gso_size = skb_shinfo(p)->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002703 skb_header_release(p);
2704 nskb->prev = p;
2705
2706 nskb->data_len += p->len;
2707 nskb->truesize += p->len;
2708 nskb->len += p->len;
2709
2710 *head = nskb;
2711 nskb->next = p->next;
2712 p->next = NULL;
2713
2714 p = nskb;
2715
2716merge:
Herbert Xu56035022009-02-05 21:26:52 -08002717 if (skb_gro_offset(skb) > skb_headlen(skb)) {
2718 skb_shinfo(skb)->frags[0].page_offset +=
2719 skb_gro_offset(skb) - skb_headlen(skb);
2720 skb_shinfo(skb)->frags[0].size -=
2721 skb_gro_offset(skb) - skb_headlen(skb);
2722 skb_gro_reset_offset(skb);
2723 skb_gro_pull(skb, skb_headlen(skb));
2724 }
2725
2726 __skb_pull(skb, skb_gro_offset(skb));
2727
Herbert Xu71d93b32008-12-15 23:42:33 -08002728 p->prev->next = skb;
2729 p->prev = skb;
2730 skb_header_release(skb);
2731
Herbert Xu5d38a072009-01-04 16:13:40 -08002732done:
2733 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002734 p->data_len += len;
2735 p->truesize += len;
2736 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002737
2738 NAPI_GRO_CB(skb)->same_flow = 1;
2739 return 0;
2740}
2741EXPORT_SYMBOL_GPL(skb_gro_receive);
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743void __init skb_init(void)
2744{
2745 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2746 sizeof(struct sk_buff),
2747 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002748 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002749 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002750 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2751 (2*sizeof(struct sk_buff)) +
2752 sizeof(atomic_t),
2753 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002754 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002755 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
David Howells716ea3a2007-04-02 20:19:53 -07002758/**
2759 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2760 * @skb: Socket buffer containing the buffers to be mapped
2761 * @sg: The scatter-gather list to map into
2762 * @offset: The offset into the buffer's contents to start mapping
2763 * @len: Length of buffer space to be mapped
2764 *
2765 * Fill the specified scatter-gather list with mappings/pointers into a
2766 * region of the buffer space attached to a socket buffer.
2767 */
David S. Miller51c739d2007-10-30 21:29:29 -07002768static int
2769__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002770{
David S. Miller1a028e52007-04-27 15:21:23 -07002771 int start = skb_headlen(skb);
2772 int i, copy = start - offset;
David Howells716ea3a2007-04-02 20:19:53 -07002773 int elt = 0;
2774
2775 if (copy > 0) {
2776 if (copy > len)
2777 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002778 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002779 elt++;
2780 if ((len -= copy) == 0)
2781 return elt;
2782 offset += copy;
2783 }
2784
2785 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002786 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002787
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002788 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002789
2790 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002791 if ((copy = end - offset) > 0) {
2792 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2793
2794 if (copy > len)
2795 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002796 sg_set_page(&sg[elt], frag->page, copy,
2797 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002798 elt++;
2799 if (!(len -= copy))
2800 return elt;
2801 offset += copy;
2802 }
David S. Miller1a028e52007-04-27 15:21:23 -07002803 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002804 }
2805
2806 if (skb_shinfo(skb)->frag_list) {
2807 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2808
2809 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07002810 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002811
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002812 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002813
2814 end = start + list->len;
David Howells716ea3a2007-04-02 20:19:53 -07002815 if ((copy = end - offset) > 0) {
2816 if (copy > len)
2817 copy = len;
David S. Miller51c739d2007-10-30 21:29:29 -07002818 elt += __skb_to_sgvec(list, sg+elt, offset - start,
2819 copy);
David Howells716ea3a2007-04-02 20:19:53 -07002820 if ((len -= copy) == 0)
2821 return elt;
2822 offset += copy;
2823 }
David S. Miller1a028e52007-04-27 15:21:23 -07002824 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002825 }
2826 }
2827 BUG_ON(len);
2828 return elt;
2829}
2830
David S. Miller51c739d2007-10-30 21:29:29 -07002831int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2832{
2833 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2834
Jens Axboec46f2332007-10-31 12:06:37 +01002835 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002836
2837 return nsg;
2838}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002839EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002840
David Howells716ea3a2007-04-02 20:19:53 -07002841/**
2842 * skb_cow_data - Check that a socket buffer's data buffers are writable
2843 * @skb: The socket buffer to check.
2844 * @tailbits: Amount of trailing space to be added
2845 * @trailer: Returned pointer to the skb where the @tailbits space begins
2846 *
2847 * Make sure that the data buffers attached to a socket buffer are
2848 * writable. If they are not, private copies are made of the data buffers
2849 * and the socket buffer is set to use these instead.
2850 *
2851 * If @tailbits is given, make sure that there is space to write @tailbits
2852 * bytes of data beyond current end of socket buffer. @trailer will be
2853 * set to point to the skb in which this space begins.
2854 *
2855 * The number of scatterlist elements required to completely map the
2856 * COW'd and extended socket buffer will be returned.
2857 */
2858int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2859{
2860 int copyflag;
2861 int elt;
2862 struct sk_buff *skb1, **skb_p;
2863
2864 /* If skb is cloned or its head is paged, reallocate
2865 * head pulling out all the pages (pages are considered not writable
2866 * at the moment even if they are anonymous).
2867 */
2868 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2869 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2870 return -ENOMEM;
2871
2872 /* Easy case. Most of packets will go this way. */
2873 if (!skb_shinfo(skb)->frag_list) {
2874 /* A little of trouble, not enough of space for trailer.
2875 * This should not happen, when stack is tuned to generate
2876 * good frames. OK, on miss we reallocate and reserve even more
2877 * space, 128 bytes is fair. */
2878
2879 if (skb_tailroom(skb) < tailbits &&
2880 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2881 return -ENOMEM;
2882
2883 /* Voila! */
2884 *trailer = skb;
2885 return 1;
2886 }
2887
2888 /* Misery. We are in troubles, going to mincer fragments... */
2889
2890 elt = 1;
2891 skb_p = &skb_shinfo(skb)->frag_list;
2892 copyflag = 0;
2893
2894 while ((skb1 = *skb_p) != NULL) {
2895 int ntail = 0;
2896
2897 /* The fragment is partially pulled by someone,
2898 * this can happen on input. Copy it and everything
2899 * after it. */
2900
2901 if (skb_shared(skb1))
2902 copyflag = 1;
2903
2904 /* If the skb is the last, worry about trailer. */
2905
2906 if (skb1->next == NULL && tailbits) {
2907 if (skb_shinfo(skb1)->nr_frags ||
2908 skb_shinfo(skb1)->frag_list ||
2909 skb_tailroom(skb1) < tailbits)
2910 ntail = tailbits + 128;
2911 }
2912
2913 if (copyflag ||
2914 skb_cloned(skb1) ||
2915 ntail ||
2916 skb_shinfo(skb1)->nr_frags ||
2917 skb_shinfo(skb1)->frag_list) {
2918 struct sk_buff *skb2;
2919
2920 /* Fuck, we are miserable poor guys... */
2921 if (ntail == 0)
2922 skb2 = skb_copy(skb1, GFP_ATOMIC);
2923 else
2924 skb2 = skb_copy_expand(skb1,
2925 skb_headroom(skb1),
2926 ntail,
2927 GFP_ATOMIC);
2928 if (unlikely(skb2 == NULL))
2929 return -ENOMEM;
2930
2931 if (skb1->sk)
2932 skb_set_owner_w(skb2, skb1->sk);
2933
2934 /* Looking around. Are we still alive?
2935 * OK, link new skb, drop old one */
2936
2937 skb2->next = skb1->next;
2938 *skb_p = skb2;
2939 kfree_skb(skb1);
2940 skb1 = skb2;
2941 }
2942 elt++;
2943 *trailer = skb1;
2944 skb_p = &skb1->next;
2945 }
2946
2947 return elt;
2948}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002949EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002950
Patrick Ohlyac45f602009-02-12 05:03:37 +00002951void skb_tstamp_tx(struct sk_buff *orig_skb,
2952 struct skb_shared_hwtstamps *hwtstamps)
2953{
2954 struct sock *sk = orig_skb->sk;
2955 struct sock_exterr_skb *serr;
2956 struct sk_buff *skb;
2957 int err;
2958
2959 if (!sk)
2960 return;
2961
2962 skb = skb_clone(orig_skb, GFP_ATOMIC);
2963 if (!skb)
2964 return;
2965
2966 if (hwtstamps) {
2967 *skb_hwtstamps(skb) =
2968 *hwtstamps;
2969 } else {
2970 /*
2971 * no hardware time stamps available,
2972 * so keep the skb_shared_tx and only
2973 * store software time stamp
2974 */
2975 skb->tstamp = ktime_get_real();
2976 }
2977
2978 serr = SKB_EXT_ERR(skb);
2979 memset(serr, 0, sizeof(*serr));
2980 serr->ee.ee_errno = ENOMSG;
2981 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
2982 err = sock_queue_err_skb(sk, skb);
2983 if (err)
2984 kfree_skb(skb);
2985}
2986EXPORT_SYMBOL_GPL(skb_tstamp_tx);
2987
2988
Rusty Russellf35d9d82008-02-04 23:49:54 -05002989/**
2990 * skb_partial_csum_set - set up and verify partial csum values for packet
2991 * @skb: the skb to set
2992 * @start: the number of bytes after skb->data to start checksumming.
2993 * @off: the offset from start to place the checksum.
2994 *
2995 * For untrusted partially-checksummed packets, we need to make sure the values
2996 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
2997 *
2998 * This function checks and sets those values and skb->ip_summed: if this
2999 * returns false you should drop the packet.
3000 */
3001bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3002{
3003 if (unlikely(start > skb->len - 2) ||
3004 unlikely((int)start + off > skb->len - 2)) {
3005 if (net_ratelimit())
3006 printk(KERN_WARNING
3007 "bad partial csum: csum=%u/%u len=%u\n",
3008 start, off, skb->len);
3009 return false;
3010 }
3011 skb->ip_summed = CHECKSUM_PARTIAL;
3012 skb->csum_start = skb_headroom(skb) + start;
3013 skb->csum_offset = off;
3014 return true;
3015}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003016EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003017
Ben Hutchings4497b072008-06-19 16:22:28 -07003018void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3019{
3020 if (net_ratelimit())
3021 pr_warning("%s: received packets cannot be forwarded"
3022 " while LRO is enabled\n", skb->dev->name);
3023}
Ben Hutchings4497b072008-06-19 16:22:28 -07003024EXPORT_SYMBOL(__skb_warn_lro_forwarding);