blob: 6acbf9e79eb1dc2076bc192f774c8b5591566c42 [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>
Neil Hormanead2ceb2009-03-11 09:49:55 +000068#include <trace/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Al Viroa1f8e7f72006-10-19 16:08:53 -040070#include "kmap_skb.h"
71
Christoph Lametere18b8902006-12-06 20:33:20 -080072static struct kmem_cache *skbuff_head_cache __read_mostly;
73static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jens Axboe9c55e012007-11-06 23:30:13 -080075static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
76 struct pipe_buffer *buf)
77{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080078 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080079}
80
81static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
82 struct pipe_buffer *buf)
83{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080084 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080085}
86
87static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
88 struct pipe_buffer *buf)
89{
90 return 1;
91}
92
93
94/* Pipe buffer operations for a socket. */
95static struct pipe_buf_operations sock_pipe_buf_ops = {
96 .can_merge = 0,
97 .map = generic_pipe_buf_map,
98 .unmap = generic_pipe_buf_unmap,
99 .confirm = generic_pipe_buf_confirm,
100 .release = sock_pipe_buf_release,
101 .steal = sock_pipe_buf_steal,
102 .get = sock_pipe_buf_get,
103};
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * Keep out-of-line to prevent kernel bloat.
107 * __builtin_return_address is not used because it is not always
108 * reliable.
109 */
110
111/**
112 * skb_over_panic - private function
113 * @skb: buffer
114 * @sz: size
115 * @here: address
116 *
117 * Out of line support code for skb_put(). Not user callable.
118 */
119void skb_over_panic(struct sk_buff *skb, int sz, void *here)
120{
Patrick McHardy26095452005-04-21 16:43:02 -0700121 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700122 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700123 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700124 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700125 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 BUG();
127}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800128EXPORT_SYMBOL(skb_over_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/**
131 * skb_under_panic - private function
132 * @skb: buffer
133 * @sz: size
134 * @here: address
135 *
136 * Out of line support code for skb_push(). Not user callable.
137 */
138
139void skb_under_panic(struct sk_buff *skb, int sz, void *here)
140{
Patrick McHardy26095452005-04-21 16:43:02 -0700141 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700142 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700143 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700144 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700145 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 BUG();
147}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800148EXPORT_SYMBOL(skb_under_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* Allocate a new skbuff. We do this ourselves so we can fill in a few
151 * 'private' fields and also do memory statistics to find all the
152 * [BEEP] leaks.
153 *
154 */
155
156/**
David S. Millerd179cd12005-08-17 14:57:30 -0700157 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * @size: size to allocate
159 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700160 * @fclone: allocate from fclone cache instead of head cache
161 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800162 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
164 * Allocate a new &sk_buff. The returned buffer has no headroom and a
165 * tail room of size bytes. The object has a reference count of one.
166 * The return is the buffer. On a failure the return is %NULL.
167 *
168 * Buffers may only be allocated from interrupts using a @gfp_mask of
169 * %GFP_ATOMIC.
170 */
Al Virodd0fc662005-10-07 07:46:04 +0100171struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800172 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Christoph Lametere18b8902006-12-06 20:33:20 -0800174 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800175 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct sk_buff *skb;
177 u8 *data;
178
Herbert Xu8798b3f2006-01-23 16:32:45 -0800179 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800182 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (!skb)
184 goto out;
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800187 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
188 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!data)
190 goto nodata;
191
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300192 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700193 * Only clear those fields we need to clear, not those that we will
194 * actually initialise below. Hence, don't put any more fields after
195 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300196 */
197 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 skb->truesize = size + sizeof(struct sk_buff);
199 atomic_set(&skb->users, 1);
200 skb->head = data;
201 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700202 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700203 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800204 /* make sure we initialize shinfo sequentially */
205 shinfo = skb_shinfo(skb);
206 atomic_set(&shinfo->dataref, 1);
207 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700208 shinfo->gso_size = 0;
209 shinfo->gso_segs = 0;
210 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800211 shinfo->ip6_frag_id = 0;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000212 shinfo->tx_flags.flags = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800213 shinfo->frag_list = NULL;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000214 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800215
David S. Millerd179cd12005-08-17 14:57:30 -0700216 if (fclone) {
217 struct sk_buff *child = skb + 1;
218 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
David S. Millerd179cd12005-08-17 14:57:30 -0700220 skb->fclone = SKB_FCLONE_ORIG;
221 atomic_set(fclone_ref, 1);
222
223 child->fclone = SKB_FCLONE_UNAVAILABLE;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225out:
226 return skb;
227nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800228 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 skb = NULL;
230 goto out;
231}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800232EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700235 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
236 * @dev: network device to receive on
237 * @length: length to allocate
238 * @gfp_mask: get_free_pages mask, passed to alloc_skb
239 *
240 * Allocate a new &sk_buff and assign it a usage count of one. The
241 * buffer has unspecified headroom built in. Users should allocate
242 * the headroom they think they need without accounting for the
243 * built in space. The built in space is used for optimisations.
244 *
245 * %NULL is returned if there is no free memory.
246 */
247struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
248 unsigned int length, gfp_t gfp_mask)
249{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700250 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700251 struct sk_buff *skb;
252
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900253 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700254 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700255 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700256 skb->dev = dev;
257 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700258 return skb;
259}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800260EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Peter Zijlstra654bed12008-10-07 14:22:33 -0700262struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
263{
264 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
265 struct page *page;
266
267 page = alloc_pages_node(node, gfp_mask, 0);
268 return page;
269}
270EXPORT_SYMBOL(__netdev_alloc_page);
271
272void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
273 int size)
274{
275 skb_fill_page_desc(skb, i, page, off, size);
276 skb->len += size;
277 skb->data_len += size;
278 skb->truesize += size;
279}
280EXPORT_SYMBOL(skb_add_rx_frag);
281
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700282/**
283 * dev_alloc_skb - allocate an skbuff for receiving
284 * @length: length to allocate
285 *
286 * Allocate a new &sk_buff and assign it a usage count of one. The
287 * buffer has unspecified headroom built in. Users should allocate
288 * the headroom they think they need without accounting for the
289 * built in space. The built in space is used for optimisations.
290 *
291 * %NULL is returned if there is no free memory. Although this function
292 * allocates memory it can be called from an interrupt.
293 */
294struct sk_buff *dev_alloc_skb(unsigned int length)
295{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700296 /*
297 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700298 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700299 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700300 return __dev_alloc_skb(length, GFP_ATOMIC);
301}
302EXPORT_SYMBOL(dev_alloc_skb);
303
Herbert Xu27b437c2006-07-13 19:26:39 -0700304static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Herbert Xu27b437c2006-07-13 19:26:39 -0700306 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Herbert Xu27b437c2006-07-13 19:26:39 -0700308 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 do {
311 struct sk_buff *this = list;
312 list = list->next;
313 kfree_skb(this);
314 } while (list);
315}
316
Herbert Xu27b437c2006-07-13 19:26:39 -0700317static inline void skb_drop_fraglist(struct sk_buff *skb)
318{
319 skb_drop_list(&skb_shinfo(skb)->frag_list);
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322static void skb_clone_fraglist(struct sk_buff *skb)
323{
324 struct sk_buff *list;
325
326 for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
327 skb_get(list);
328}
329
Adrian Bunk5bba1712006-06-29 13:02:35 -0700330static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 if (!skb->cloned ||
333 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
334 &skb_shinfo(skb)->dataref)) {
335 if (skb_shinfo(skb)->nr_frags) {
336 int i;
337 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
338 put_page(skb_shinfo(skb)->frags[i].page);
339 }
340
341 if (skb_shinfo(skb)->frag_list)
342 skb_drop_fraglist(skb);
343
344 kfree(skb->head);
345 }
346}
347
348/*
349 * Free an skbuff by memory without cleaning the state.
350 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800351static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
David S. Millerd179cd12005-08-17 14:57:30 -0700353 struct sk_buff *other;
354 atomic_t *fclone_ref;
355
David S. Millerd179cd12005-08-17 14:57:30 -0700356 switch (skb->fclone) {
357 case SKB_FCLONE_UNAVAILABLE:
358 kmem_cache_free(skbuff_head_cache, skb);
359 break;
360
361 case SKB_FCLONE_ORIG:
362 fclone_ref = (atomic_t *) (skb + 2);
363 if (atomic_dec_and_test(fclone_ref))
364 kmem_cache_free(skbuff_fclone_cache, skb);
365 break;
366
367 case SKB_FCLONE_CLONE:
368 fclone_ref = (atomic_t *) (skb + 1);
369 other = skb - 1;
370
371 /* The clone portion is available for
372 * fast-cloning again.
373 */
374 skb->fclone = SKB_FCLONE_UNAVAILABLE;
375
376 if (atomic_dec_and_test(fclone_ref))
377 kmem_cache_free(skbuff_fclone_cache, other);
378 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700382static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 dst_release(skb->dst);
385#ifdef CONFIG_XFRM
386 secpath_put(skb->sp);
387#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700388 if (skb->destructor) {
389 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 skb->destructor(skb);
391 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800392#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700393 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800394 nf_conntrack_put_reasm(skb->nfct_reasm);
395#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396#ifdef CONFIG_BRIDGE_NETFILTER
397 nf_bridge_put(skb->nf_bridge);
398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/* XXX: IS this still necessary? - JHS */
400#ifdef CONFIG_NET_SCHED
401 skb->tc_index = 0;
402#ifdef CONFIG_NET_CLS_ACT
403 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#endif
405#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700406}
407
408/* Free everything but the sk_buff shell. */
409static void skb_release_all(struct sk_buff *skb)
410{
411 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800412 skb_release_data(skb);
413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Herbert Xu2d4baff2007-11-26 23:11:19 +0800415/**
416 * __kfree_skb - private function
417 * @skb: buffer
418 *
419 * Free an sk_buff. Release anything attached to the buffer.
420 * Clean the state. This is an internal helper function. Users should
421 * always call kfree_skb
422 */
423
424void __kfree_skb(struct sk_buff *skb)
425{
426 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 kfree_skbmem(skb);
428}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800429EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800432 * kfree_skb - free an sk_buff
433 * @skb: buffer to free
434 *
435 * Drop a reference to the buffer and free it if the usage count has
436 * hit zero.
437 */
438void kfree_skb(struct sk_buff *skb)
439{
440 if (unlikely(!skb))
441 return;
442 if (likely(atomic_read(&skb->users) == 1))
443 smp_rmb();
444 else if (likely(!atomic_dec_and_test(&skb->users)))
445 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000446 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800447 __kfree_skb(skb);
448}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800449EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800450
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700451/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000452 * consume_skb - free an skbuff
453 * @skb: buffer to free
454 *
455 * Drop a ref to the buffer and free it if the usage count has hit zero
456 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
457 * is being dropped after a failure and notes that
458 */
459void consume_skb(struct sk_buff *skb)
460{
461 if (unlikely(!skb))
462 return;
463 if (likely(atomic_read(&skb->users) == 1))
464 smp_rmb();
465 else if (likely(!atomic_dec_and_test(&skb->users)))
466 return;
467 __kfree_skb(skb);
468}
469EXPORT_SYMBOL(consume_skb);
470
471/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700472 * skb_recycle_check - check if skb can be reused for receive
473 * @skb: buffer
474 * @skb_size: minimum receive buffer size
475 *
476 * Checks that the skb passed in is not shared or cloned, and
477 * that it is linear and its head portion at least as large as
478 * skb_size so that it can be recycled as a receive buffer.
479 * If these conditions are met, this function does any necessary
480 * reference count dropping and cleans up the skbuff as if it
481 * just came from __alloc_skb().
482 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700483int skb_recycle_check(struct sk_buff *skb, int skb_size)
484{
485 struct skb_shared_info *shinfo;
486
487 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
488 return 0;
489
490 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
491 if (skb_end_pointer(skb) - skb->head < skb_size)
492 return 0;
493
494 if (skb_shared(skb) || skb_cloned(skb))
495 return 0;
496
497 skb_release_head_state(skb);
498 shinfo = skb_shinfo(skb);
499 atomic_set(&shinfo->dataref, 1);
500 shinfo->nr_frags = 0;
501 shinfo->gso_size = 0;
502 shinfo->gso_segs = 0;
503 shinfo->gso_type = 0;
504 shinfo->ip6_frag_id = 0;
505 shinfo->frag_list = NULL;
506
507 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700508 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800509 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700510
511 return 1;
512}
513EXPORT_SYMBOL(skb_recycle_check);
514
Herbert Xudec18812007-10-14 00:37:30 -0700515static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
516{
517 new->tstamp = old->tstamp;
518 new->dev = old->dev;
519 new->transport_header = old->transport_header;
520 new->network_header = old->network_header;
521 new->mac_header = old->mac_header;
522 new->dst = dst_clone(old->dst);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700523#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700524 new->sp = secpath_get(old->sp);
525#endif
526 memcpy(new->cb, old->cb, sizeof(old->cb));
527 new->csum_start = old->csum_start;
528 new->csum_offset = old->csum_offset;
529 new->local_df = old->local_df;
530 new->pkt_type = old->pkt_type;
531 new->ip_summed = old->ip_summed;
532 skb_copy_queue_mapping(new, old);
533 new->priority = old->priority;
534#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
535 new->ipvs_property = old->ipvs_property;
536#endif
537 new->protocol = old->protocol;
538 new->mark = old->mark;
539 __nf_copy(new, old);
540#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
541 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
542 new->nf_trace = old->nf_trace;
543#endif
544#ifdef CONFIG_NET_SCHED
545 new->tc_index = old->tc_index;
546#ifdef CONFIG_NET_CLS_ACT
547 new->tc_verd = old->tc_verd;
548#endif
549#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700550 new->vlan_tci = old->vlan_tci;
551
Herbert Xudec18812007-10-14 00:37:30 -0700552 skb_copy_secmark(new, old);
553}
554
Herbert Xue0053ec2007-10-14 00:37:52 -0700555static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557#define C(x) n->x = skb->x
558
559 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700561 __copy_skb_header(n, skb);
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 C(len);
564 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700565 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700566 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800567 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 n->destructor = NULL;
Paul Moore02f1c892008-01-07 21:56:41 -0800570 C(iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 C(tail);
572 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800573 C(head);
574 C(data);
575 C(truesize);
Johannes Bergd0f09802008-07-29 11:32:07 +0200576#if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE)
577 C(do_not_encrypt);
Sujith8b30b1f2008-10-24 09:55:27 +0530578 C(requeue);
Johannes Bergd0f09802008-07-29 11:32:07 +0200579#endif
Paul Moore02f1c892008-01-07 21:56:41 -0800580 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 atomic_inc(&(skb_shinfo(skb)->dataref));
583 skb->cloned = 1;
584
585 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700586#undef C
587}
588
589/**
590 * skb_morph - morph one skb into another
591 * @dst: the skb to receive the contents
592 * @src: the skb to supply the contents
593 *
594 * This is identical to skb_clone except that the target skb is
595 * supplied by the user.
596 *
597 * The target skb is returned upon exit.
598 */
599struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
600{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800601 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700602 return __skb_clone(dst, src);
603}
604EXPORT_SYMBOL_GPL(skb_morph);
605
606/**
607 * skb_clone - duplicate an sk_buff
608 * @skb: buffer to clone
609 * @gfp_mask: allocation priority
610 *
611 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
612 * copies share the same packet data but not structure. The new
613 * buffer has a reference count of 1. If the allocation fails the
614 * function returns %NULL otherwise the new buffer is returned.
615 *
616 * If this function is called from an interrupt gfp_mask() must be
617 * %GFP_ATOMIC.
618 */
619
620struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
621{
622 struct sk_buff *n;
623
624 n = skb + 1;
625 if (skb->fclone == SKB_FCLONE_ORIG &&
626 n->fclone == SKB_FCLONE_UNAVAILABLE) {
627 atomic_t *fclone_ref = (atomic_t *) (n + 1);
628 n->fclone = SKB_FCLONE_CLONE;
629 atomic_inc(fclone_ref);
630 } else {
631 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
632 if (!n)
633 return NULL;
634 n->fclone = SKB_FCLONE_UNAVAILABLE;
635 }
636
637 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800639EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
642{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700643#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /*
645 * Shift between the two data areas in bytes
646 */
647 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700648#endif
Herbert Xudec18812007-10-14 00:37:30 -0700649
650 __copy_skb_header(new, old);
651
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700652#ifndef NET_SKBUFF_DATA_USES_OFFSET
653 /* {transport,network,mac}_header are relative to skb->head */
654 new->transport_header += offset;
655 new->network_header += offset;
656 new->mac_header += offset;
657#endif
Herbert Xu79671682006-06-22 02:40:14 -0700658 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
659 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
660 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663/**
664 * skb_copy - create private copy of an sk_buff
665 * @skb: buffer to copy
666 * @gfp_mask: allocation priority
667 *
668 * Make a copy of both an &sk_buff and its data. This is used when the
669 * caller wishes to modify the data and needs a private copy of the
670 * data to alter. Returns %NULL on failure or the pointer to the buffer
671 * on success. The returned buffer has a reference count of 1.
672 *
673 * As by-product this function converts non-linear &sk_buff to linear
674 * one, so that &sk_buff becomes completely private and caller is allowed
675 * to modify all the data of returned buffer. This means that this
676 * function is not recommended for use in circumstances when only
677 * header is going to be modified. Use pskb_copy() instead.
678 */
679
Al Virodd0fc662005-10-07 07:46:04 +0100680struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 int headerlen = skb->data - skb->head;
683 /*
684 * Allocate the copy buffer
685 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700686 struct sk_buff *n;
687#ifdef NET_SKBUFF_DATA_USES_OFFSET
688 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
689#else
690 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
691#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (!n)
693 return NULL;
694
695 /* Set the data pointer */
696 skb_reserve(n, headerlen);
697 /* Set the tail pointer and length */
698 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
701 BUG();
702
703 copy_skb_header(n, skb);
704 return n;
705}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800706EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708/**
709 * pskb_copy - create copy of an sk_buff with private head.
710 * @skb: buffer to copy
711 * @gfp_mask: allocation priority
712 *
713 * Make a copy of both an &sk_buff and part of its data, located
714 * in header. Fragmented data remain shared. This is used when
715 * the caller wishes to modify only header of &sk_buff and needs
716 * private copy of the header to alter. Returns %NULL on failure
717 * or the pointer to the buffer on success.
718 * The returned buffer has a reference count of 1.
719 */
720
Al Virodd0fc662005-10-07 07:46:04 +0100721struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 /*
724 * Allocate the copy buffer
725 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700726 struct sk_buff *n;
727#ifdef NET_SKBUFF_DATA_USES_OFFSET
728 n = alloc_skb(skb->end, gfp_mask);
729#else
730 n = alloc_skb(skb->end - skb->head, gfp_mask);
731#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (!n)
733 goto out;
734
735 /* Set the data pointer */
736 skb_reserve(n, skb->data - skb->head);
737 /* Set the tail pointer and length */
738 skb_put(n, skb_headlen(skb));
739 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300740 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Herbert Xu25f484a2006-11-07 14:57:15 -0800742 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 n->data_len = skb->data_len;
744 n->len = skb->len;
745
746 if (skb_shinfo(skb)->nr_frags) {
747 int i;
748
749 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
750 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
751 get_page(skb_shinfo(n)->frags[i].page);
752 }
753 skb_shinfo(n)->nr_frags = i;
754 }
755
756 if (skb_shinfo(skb)->frag_list) {
757 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
758 skb_clone_fraglist(n);
759 }
760
761 copy_skb_header(n, skb);
762out:
763 return n;
764}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800765EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767/**
768 * pskb_expand_head - reallocate header of &sk_buff
769 * @skb: buffer to reallocate
770 * @nhead: room to add at head
771 * @ntail: room to add at tail
772 * @gfp_mask: allocation priority
773 *
774 * Expands (or creates identical copy, if &nhead and &ntail are zero)
775 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
776 * reference count of 1. Returns zero in the case of success or error,
777 * if expansion failed. In the last case, &sk_buff is not changed.
778 *
779 * All the pointers pointing into skb header may change and must be
780 * reloaded after call to this function.
781 */
782
Victor Fusco86a76ca2005-07-08 14:57:47 -0700783int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100784 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 int i;
787 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700788#ifdef NET_SKBUFF_DATA_USES_OFFSET
789 int size = nhead + skb->end + ntail;
790#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700792#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 long off;
794
Herbert Xu4edd87a2008-10-01 07:09:38 -0700795 BUG_ON(nhead < 0);
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (skb_shared(skb))
798 BUG();
799
800 size = SKB_DATA_ALIGN(size);
801
802 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
803 if (!data)
804 goto nodata;
805
806 /* Copy only real data... and, alas, header. This should be
807 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700808#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700809 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700810#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700811 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700812#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700813 memcpy(data + size, skb_end_pointer(skb),
814 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
817 get_page(skb_shinfo(skb)->frags[i].page);
818
819 if (skb_shinfo(skb)->frag_list)
820 skb_clone_fraglist(skb);
821
822 skb_release_data(skb);
823
824 off = (data + nhead) - skb->head;
825
826 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700828#ifdef NET_SKBUFF_DATA_USES_OFFSET
829 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700830 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700831#else
832 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700833#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700834 /* {transport,network,mac}_header and tail are relative to skb->head */
835 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700836 skb->transport_header += off;
837 skb->network_header += off;
838 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700839 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700841 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 skb->nohdr = 0;
843 atomic_set(&skb_shinfo(skb)->dataref, 1);
844 return 0;
845
846nodata:
847 return -ENOMEM;
848}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800849EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851/* Make private copy of skb with writable head and some headroom */
852
853struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
854{
855 struct sk_buff *skb2;
856 int delta = headroom - skb_headroom(skb);
857
858 if (delta <= 0)
859 skb2 = pskb_copy(skb, GFP_ATOMIC);
860 else {
861 skb2 = skb_clone(skb, GFP_ATOMIC);
862 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
863 GFP_ATOMIC)) {
864 kfree_skb(skb2);
865 skb2 = NULL;
866 }
867 }
868 return skb2;
869}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800870EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872/**
873 * skb_copy_expand - copy and expand sk_buff
874 * @skb: buffer to copy
875 * @newheadroom: new free bytes at head
876 * @newtailroom: new free bytes at tail
877 * @gfp_mask: allocation priority
878 *
879 * Make a copy of both an &sk_buff and its data and while doing so
880 * allocate additional space.
881 *
882 * This is used when the caller wishes to modify the data and needs a
883 * private copy of the data to alter as well as more space for new fields.
884 * Returns %NULL on failure or the pointer to the buffer
885 * on success. The returned buffer has a reference count of 1.
886 *
887 * You must pass %GFP_ATOMIC as the allocation priority if this function
888 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
890struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700891 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100892 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 /*
895 * Allocate the copy buffer
896 */
897 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
898 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700899 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700901 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if (!n)
904 return NULL;
905
906 skb_reserve(n, newheadroom);
907
908 /* Set the tail pointer and length */
909 skb_put(n, skb->len);
910
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700911 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 head_copy_off = 0;
913 if (newheadroom <= head_copy_len)
914 head_copy_len = newheadroom;
915 else
916 head_copy_off = newheadroom - head_copy_len;
917
918 /* Copy the linear header and data. */
919 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
920 skb->len + head_copy_len))
921 BUG();
922
923 copy_skb_header(n, skb);
924
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700925 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700926 n->csum_start += off;
927#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700928 n->transport_header += off;
929 n->network_header += off;
930 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700931#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return n;
934}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800935EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937/**
938 * skb_pad - zero pad the tail of an skb
939 * @skb: buffer to pad
940 * @pad: space to pad
941 *
942 * Ensure that a buffer is followed by a padding area that is zero
943 * filled. Used by network drivers which may DMA or transfer data
944 * beyond the buffer end onto the wire.
945 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700946 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900948
Herbert Xu5b057c62006-06-23 02:06:41 -0700949int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Herbert Xu5b057c62006-06-23 02:06:41 -0700951 int err;
952 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700955 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700959
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700960 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700961 if (likely(skb_cloned(skb) || ntail > 0)) {
962 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
963 if (unlikely(err))
964 goto free_skb;
965 }
966
967 /* FIXME: The use of this function with non-linear skb's really needs
968 * to be audited.
969 */
970 err = skb_linearize(skb);
971 if (unlikely(err))
972 goto free_skb;
973
974 memset(skb->data + skb->len, 0, pad);
975 return 0;
976
977free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700979 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900980}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800981EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900982
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700983/**
984 * skb_put - add data to a buffer
985 * @skb: buffer to use
986 * @len: amount of data to add
987 *
988 * This function extends the used data area of the buffer. If this would
989 * exceed the total buffer size the kernel will panic. A pointer to the
990 * first byte of the extra data is returned.
991 */
992unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
993{
994 unsigned char *tmp = skb_tail_pointer(skb);
995 SKB_LINEAR_ASSERT(skb);
996 skb->tail += len;
997 skb->len += len;
998 if (unlikely(skb->tail > skb->end))
999 skb_over_panic(skb, len, __builtin_return_address(0));
1000 return tmp;
1001}
1002EXPORT_SYMBOL(skb_put);
1003
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001004/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001005 * skb_push - add data to the start of a buffer
1006 * @skb: buffer to use
1007 * @len: amount of data to add
1008 *
1009 * This function extends the used data area of the buffer at the buffer
1010 * start. If this would exceed the total buffer headroom the kernel will
1011 * panic. A pointer to the first byte of the extra data is returned.
1012 */
1013unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1014{
1015 skb->data -= len;
1016 skb->len += len;
1017 if (unlikely(skb->data<skb->head))
1018 skb_under_panic(skb, len, __builtin_return_address(0));
1019 return skb->data;
1020}
1021EXPORT_SYMBOL(skb_push);
1022
1023/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001024 * skb_pull - remove data from the start of a buffer
1025 * @skb: buffer to use
1026 * @len: amount of data to remove
1027 *
1028 * This function removes data from the start of a buffer, returning
1029 * the memory to the headroom. A pointer to the next data in the buffer
1030 * is returned. Once the data has been pulled future pushes will overwrite
1031 * the old data.
1032 */
1033unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1034{
1035 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1036}
1037EXPORT_SYMBOL(skb_pull);
1038
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001039/**
1040 * skb_trim - remove end from a buffer
1041 * @skb: buffer to alter
1042 * @len: new length
1043 *
1044 * Cut the length of a buffer down by removing data from the tail. If
1045 * the buffer is already under the length specified it is not modified.
1046 * The skb must be linear.
1047 */
1048void skb_trim(struct sk_buff *skb, unsigned int len)
1049{
1050 if (skb->len > len)
1051 __skb_trim(skb, len);
1052}
1053EXPORT_SYMBOL(skb_trim);
1054
Herbert Xu3cc0e872006-06-09 16:13:38 -07001055/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
1057
Herbert Xu3cc0e872006-06-09 16:13:38 -07001058int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Herbert Xu27b437c2006-07-13 19:26:39 -07001060 struct sk_buff **fragp;
1061 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 int offset = skb_headlen(skb);
1063 int nfrags = skb_shinfo(skb)->nr_frags;
1064 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001065 int err;
1066
1067 if (skb_cloned(skb) &&
1068 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1069 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001071 i = 0;
1072 if (offset >= len)
1073 goto drop_pages;
1074
1075 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001077
1078 if (end < len) {
1079 offset = end;
1080 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001082
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001083 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001084
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001085drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001086 skb_shinfo(skb)->nr_frags = i;
1087
1088 for (; i < nfrags; i++)
1089 put_page(skb_shinfo(skb)->frags[i].page);
1090
1091 if (skb_shinfo(skb)->frag_list)
1092 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001093 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
Herbert Xu27b437c2006-07-13 19:26:39 -07001096 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1097 fragp = &frag->next) {
1098 int end = offset + frag->len;
1099
1100 if (skb_shared(frag)) {
1101 struct sk_buff *nfrag;
1102
1103 nfrag = skb_clone(frag, GFP_ATOMIC);
1104 if (unlikely(!nfrag))
1105 return -ENOMEM;
1106
1107 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001108 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001109 frag = nfrag;
1110 *fragp = frag;
1111 }
1112
1113 if (end < len) {
1114 offset = end;
1115 continue;
1116 }
1117
1118 if (end > len &&
1119 unlikely((err = pskb_trim(frag, len - offset))))
1120 return err;
1121
1122 if (frag->next)
1123 skb_drop_list(&frag->next);
1124 break;
1125 }
1126
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001127done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001128 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 skb->data_len -= skb->len - len;
1130 skb->len = len;
1131 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001132 skb->len = len;
1133 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001134 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
1137 return 0;
1138}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001139EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141/**
1142 * __pskb_pull_tail - advance tail of skb header
1143 * @skb: buffer to reallocate
1144 * @delta: number of bytes to advance tail
1145 *
1146 * The function makes a sense only on a fragmented &sk_buff,
1147 * it expands header moving its tail forward and copying necessary
1148 * data from fragmented part.
1149 *
1150 * &sk_buff MUST have reference count of 1.
1151 *
1152 * Returns %NULL (and &sk_buff does not change) if pull failed
1153 * or value of new tail of skb in the case of success.
1154 *
1155 * All the pointers pointing into skb header may change and must be
1156 * reloaded after call to this function.
1157 */
1158
1159/* Moves tail of skb head forward, copying data from fragmented part,
1160 * when it is necessary.
1161 * 1. It may fail due to malloc failure.
1162 * 2. It may change skb pointers.
1163 *
1164 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1165 */
1166unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1167{
1168 /* If skb has not enough free space at tail, get new one
1169 * plus 128 bytes for future expansions. If we have enough
1170 * room at tail, reallocate without expansion only if skb is cloned.
1171 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001172 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 if (eat > 0 || skb_cloned(skb)) {
1175 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1176 GFP_ATOMIC))
1177 return NULL;
1178 }
1179
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001180 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 BUG();
1182
1183 /* Optimization: no fragments, no reasons to preestimate
1184 * size of pulled pages. Superb.
1185 */
1186 if (!skb_shinfo(skb)->frag_list)
1187 goto pull_pages;
1188
1189 /* Estimate size of pulled pages. */
1190 eat = delta;
1191 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1192 if (skb_shinfo(skb)->frags[i].size >= eat)
1193 goto pull_pages;
1194 eat -= skb_shinfo(skb)->frags[i].size;
1195 }
1196
1197 /* If we need update frag list, we are in troubles.
1198 * Certainly, it possible to add an offset to skb data,
1199 * but taking into account that pulling is expected to
1200 * be very rare operation, it is worth to fight against
1201 * further bloating skb head and crucify ourselves here instead.
1202 * Pure masohism, indeed. 8)8)
1203 */
1204 if (eat) {
1205 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1206 struct sk_buff *clone = NULL;
1207 struct sk_buff *insp = NULL;
1208
1209 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001210 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 if (list->len <= eat) {
1213 /* Eaten as whole. */
1214 eat -= list->len;
1215 list = list->next;
1216 insp = list;
1217 } else {
1218 /* Eaten partially. */
1219
1220 if (skb_shared(list)) {
1221 /* Sucks! We need to fork list. :-( */
1222 clone = skb_clone(list, GFP_ATOMIC);
1223 if (!clone)
1224 return NULL;
1225 insp = list->next;
1226 list = clone;
1227 } else {
1228 /* This may be pulled without
1229 * problems. */
1230 insp = list;
1231 }
1232 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001233 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return NULL;
1235 }
1236 break;
1237 }
1238 } while (eat);
1239
1240 /* Free pulled out fragments. */
1241 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1242 skb_shinfo(skb)->frag_list = list->next;
1243 kfree_skb(list);
1244 }
1245 /* And insert new clone at head. */
1246 if (clone) {
1247 clone->next = list;
1248 skb_shinfo(skb)->frag_list = clone;
1249 }
1250 }
1251 /* Success! Now we may commit changes to skb data. */
1252
1253pull_pages:
1254 eat = delta;
1255 k = 0;
1256 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1257 if (skb_shinfo(skb)->frags[i].size <= eat) {
1258 put_page(skb_shinfo(skb)->frags[i].page);
1259 eat -= skb_shinfo(skb)->frags[i].size;
1260 } else {
1261 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1262 if (eat) {
1263 skb_shinfo(skb)->frags[k].page_offset += eat;
1264 skb_shinfo(skb)->frags[k].size -= eat;
1265 eat = 0;
1266 }
1267 k++;
1268 }
1269 }
1270 skb_shinfo(skb)->nr_frags = k;
1271
1272 skb->tail += delta;
1273 skb->data_len -= delta;
1274
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001275 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001277EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279/* Copy some data bits from skb to kernel buffer. */
1280
1281int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1282{
1283 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001284 int start = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 if (offset > (int)skb->len - len)
1287 goto fault;
1288
1289 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001290 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (copy > len)
1292 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001293 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if ((len -= copy) == 0)
1295 return 0;
1296 offset += copy;
1297 to += copy;
1298 }
1299
1300 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001301 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001303 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001304
1305 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if ((copy = end - offset) > 0) {
1307 u8 *vaddr;
1308
1309 if (copy > len)
1310 copy = len;
1311
1312 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1313 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001314 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1315 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 kunmap_skb_frag(vaddr);
1317
1318 if ((len -= copy) == 0)
1319 return 0;
1320 offset += copy;
1321 to += copy;
1322 }
David S. Miller1a028e52007-04-27 15:21:23 -07001323 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325
1326 if (skb_shinfo(skb)->frag_list) {
1327 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1328
1329 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001330 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001332 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001333
1334 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if ((copy = end - offset) > 0) {
1336 if (copy > len)
1337 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001338 if (skb_copy_bits(list, offset - start,
1339 to, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 goto fault;
1341 if ((len -= copy) == 0)
1342 return 0;
1343 offset += copy;
1344 to += copy;
1345 }
David S. Miller1a028e52007-04-27 15:21:23 -07001346 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348 }
1349 if (!len)
1350 return 0;
1351
1352fault:
1353 return -EFAULT;
1354}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001355EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Jens Axboe9c55e012007-11-06 23:30:13 -08001357/*
1358 * Callback from splice_to_pipe(), if we need to release some pages
1359 * at the end of the spd in case we error'ed out in filling the pipe.
1360 */
1361static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1362{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001363 put_page(spd->pages[i]);
1364}
Jens Axboe9c55e012007-11-06 23:30:13 -08001365
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001366static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1367 unsigned int *offset,
1368 struct sk_buff *skb)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001369{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001370 struct sock *sk = skb->sk;
1371 struct page *p = sk->sk_sndmsg_page;
1372 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001373
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001374 if (!p) {
1375new_page:
1376 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1377 if (!p)
1378 return NULL;
1379
1380 off = sk->sk_sndmsg_off = 0;
1381 /* hold one ref to this page until it's full */
1382 } else {
1383 unsigned int mlen;
1384
1385 off = sk->sk_sndmsg_off;
1386 mlen = PAGE_SIZE - off;
1387 if (mlen < 64 && mlen < *len) {
1388 put_page(p);
1389 goto new_page;
1390 }
1391
1392 *len = min_t(unsigned int, *len, mlen);
1393 }
1394
1395 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1396 sk->sk_sndmsg_off += *len;
1397 *offset = off;
1398 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001399
1400 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001401}
1402
1403/*
1404 * Fill page/offset/length into spd, if it can hold more pages.
1405 */
1406static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001407 unsigned int *len, unsigned int offset,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001408 struct sk_buff *skb, int linear)
Jens Axboe9c55e012007-11-06 23:30:13 -08001409{
1410 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1411 return 1;
1412
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001413 if (linear) {
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001414 page = linear_to_page(page, len, &offset, skb);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001415 if (!page)
1416 return 1;
1417 } else
1418 get_page(page);
1419
Jens Axboe9c55e012007-11-06 23:30:13 -08001420 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001421 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001422 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001423 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001424
Jens Axboe9c55e012007-11-06 23:30:13 -08001425 return 0;
1426}
1427
Octavian Purdila2870c432008-07-15 00:49:11 -07001428static inline void __segment_seek(struct page **page, unsigned int *poff,
1429 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001430{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001431 unsigned long n;
1432
Octavian Purdila2870c432008-07-15 00:49:11 -07001433 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001434 n = *poff / PAGE_SIZE;
1435 if (n)
1436 *page = nth_page(*page, n);
1437
Octavian Purdila2870c432008-07-15 00:49:11 -07001438 *poff = *poff % PAGE_SIZE;
1439 *plen -= off;
1440}
Jens Axboe9c55e012007-11-06 23:30:13 -08001441
Octavian Purdila2870c432008-07-15 00:49:11 -07001442static inline int __splice_segment(struct page *page, unsigned int poff,
1443 unsigned int plen, unsigned int *off,
1444 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001445 struct splice_pipe_desc *spd, int linear)
Octavian Purdila2870c432008-07-15 00:49:11 -07001446{
1447 if (!*len)
1448 return 1;
1449
1450 /* skip this segment if already processed */
1451 if (*off >= plen) {
1452 *off -= plen;
1453 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001454 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001455
Octavian Purdila2870c432008-07-15 00:49:11 -07001456 /* ignore any bits we already processed */
1457 if (*off) {
1458 __segment_seek(&page, &poff, &plen, *off);
1459 *off = 0;
1460 }
1461
1462 do {
1463 unsigned int flen = min(*len, plen);
1464
1465 /* the linear region may spread across several pages */
1466 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1467
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001468 if (spd_fill_page(spd, page, &flen, poff, skb, linear))
Octavian Purdila2870c432008-07-15 00:49:11 -07001469 return 1;
1470
1471 __segment_seek(&page, &poff, &plen, flen);
1472 *len -= flen;
1473
1474 } while (*len && plen);
1475
1476 return 0;
1477}
1478
1479/*
1480 * Map linear and fragment data from the skb to spd. It reports failure if the
1481 * pipe is full or if we already spliced the requested length.
1482 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001483static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Octavian Purdila2870c432008-07-15 00:49:11 -07001484 unsigned int *len,
1485 struct splice_pipe_desc *spd)
1486{
1487 int seg;
1488
Jens Axboe9c55e012007-11-06 23:30:13 -08001489 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001490 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001491 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001492 if (__splice_segment(virt_to_page(skb->data),
1493 (unsigned long) skb->data & (PAGE_SIZE - 1),
1494 skb_headlen(skb),
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001495 offset, len, skb, spd, 1))
Octavian Purdila2870c432008-07-15 00:49:11 -07001496 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001497
1498 /*
1499 * then map the fragments
1500 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001501 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1502 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1503
Octavian Purdila2870c432008-07-15 00:49:11 -07001504 if (__splice_segment(f->page, f->page_offset, f->size,
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001505 offset, len, skb, spd, 0))
Octavian Purdila2870c432008-07-15 00:49:11 -07001506 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001507 }
1508
Octavian Purdila2870c432008-07-15 00:49:11 -07001509 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001510}
1511
1512/*
1513 * Map data from the skb to a pipe. Should handle both the linear part,
1514 * the fragments, and the frag list. It does NOT handle frag lists within
1515 * the frag list, if such a thing exists. We'd probably need to recurse to
1516 * handle that cleanly.
1517 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001518int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001519 struct pipe_inode_info *pipe, unsigned int tlen,
1520 unsigned int flags)
1521{
1522 struct partial_page partial[PIPE_BUFFERS];
1523 struct page *pages[PIPE_BUFFERS];
1524 struct splice_pipe_desc spd = {
1525 .pages = pages,
1526 .partial = partial,
1527 .flags = flags,
1528 .ops = &sock_pipe_buf_ops,
1529 .spd_release = sock_spd_release,
1530 };
Jens Axboe9c55e012007-11-06 23:30:13 -08001531
1532 /*
1533 * __skb_splice_bits() only fails if the output has no room left,
1534 * so no point in going over the frag_list for the error case.
1535 */
1536 if (__skb_splice_bits(skb, &offset, &tlen, &spd))
1537 goto done;
1538 else if (!tlen)
1539 goto done;
1540
1541 /*
1542 * now see if we have a frag_list to map
1543 */
1544 if (skb_shinfo(skb)->frag_list) {
1545 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1546
1547 for (; list && tlen; list = list->next) {
1548 if (__skb_splice_bits(list, &offset, &tlen, &spd))
1549 break;
1550 }
1551 }
1552
1553done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001554 if (spd.nr_pages) {
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001555 struct sock *sk = skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001556 int ret;
1557
1558 /*
1559 * Drop the socket lock, otherwise we have reverse
1560 * locking dependencies between sk_lock and i_mutex
1561 * here as compared to sendfile(). We enter here
1562 * with the socket lock held, and splice_to_pipe() will
1563 * grab the pipe inode lock. For sendfile() emulation,
1564 * we call into ->sendpage() with the i_mutex lock held
1565 * and networking will grab the socket lock.
1566 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001567 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001568 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001569 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001570 return ret;
1571 }
1572
1573 return 0;
1574}
1575
Herbert Xu357b40a2005-04-19 22:30:14 -07001576/**
1577 * skb_store_bits - store bits from kernel buffer to skb
1578 * @skb: destination buffer
1579 * @offset: offset in destination
1580 * @from: source buffer
1581 * @len: number of bytes to copy
1582 *
1583 * Copy the specified number of bytes from the source buffer to the
1584 * destination skb. This function handles all the messy bits of
1585 * traversing fragment lists and such.
1586 */
1587
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001588int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001589{
1590 int i, copy;
David S. Miller1a028e52007-04-27 15:21:23 -07001591 int start = skb_headlen(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -07001592
1593 if (offset > (int)skb->len - len)
1594 goto fault;
1595
David S. Miller1a028e52007-04-27 15:21:23 -07001596 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001597 if (copy > len)
1598 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001599 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001600 if ((len -= copy) == 0)
1601 return 0;
1602 offset += copy;
1603 from += copy;
1604 }
1605
1606 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1607 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001608 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001609
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001610 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001611
1612 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001613 if ((copy = end - offset) > 0) {
1614 u8 *vaddr;
1615
1616 if (copy > len)
1617 copy = len;
1618
1619 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001620 memcpy(vaddr + frag->page_offset + offset - start,
1621 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001622 kunmap_skb_frag(vaddr);
1623
1624 if ((len -= copy) == 0)
1625 return 0;
1626 offset += copy;
1627 from += copy;
1628 }
David S. Miller1a028e52007-04-27 15:21:23 -07001629 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001630 }
1631
1632 if (skb_shinfo(skb)->frag_list) {
1633 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1634
1635 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001636 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001637
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001638 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001639
1640 end = start + list->len;
Herbert Xu357b40a2005-04-19 22:30:14 -07001641 if ((copy = end - offset) > 0) {
1642 if (copy > len)
1643 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001644 if (skb_store_bits(list, offset - start,
1645 from, copy))
Herbert Xu357b40a2005-04-19 22:30:14 -07001646 goto fault;
1647 if ((len -= copy) == 0)
1648 return 0;
1649 offset += copy;
1650 from += copy;
1651 }
David S. Miller1a028e52007-04-27 15:21:23 -07001652 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001653 }
1654 }
1655 if (!len)
1656 return 0;
1657
1658fault:
1659 return -EFAULT;
1660}
Herbert Xu357b40a2005-04-19 22:30:14 -07001661EXPORT_SYMBOL(skb_store_bits);
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663/* Checksum skb data. */
1664
Al Viro2bbbc862006-11-14 21:37:14 -08001665__wsum skb_checksum(const struct sk_buff *skb, int offset,
1666 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
David S. Miller1a028e52007-04-27 15:21:23 -07001668 int start = skb_headlen(skb);
1669 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 int pos = 0;
1671
1672 /* Checksum header. */
1673 if (copy > 0) {
1674 if (copy > len)
1675 copy = len;
1676 csum = csum_partial(skb->data + offset, copy, csum);
1677 if ((len -= copy) == 0)
1678 return csum;
1679 offset += copy;
1680 pos = copy;
1681 }
1682
1683 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001684 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001686 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001687
1688 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001690 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 u8 *vaddr;
1692 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1693
1694 if (copy > len)
1695 copy = len;
1696 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001697 csum2 = csum_partial(vaddr + frag->page_offset +
1698 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 kunmap_skb_frag(vaddr);
1700 csum = csum_block_add(csum, csum2, pos);
1701 if (!(len -= copy))
1702 return csum;
1703 offset += copy;
1704 pos += copy;
1705 }
David S. Miller1a028e52007-04-27 15:21:23 -07001706 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
1708
1709 if (skb_shinfo(skb)->frag_list) {
1710 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1711
1712 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07001713 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001715 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001716
1717 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if ((copy = end - offset) > 0) {
Al Viro5f92a732006-11-14 21:36:54 -08001719 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (copy > len)
1721 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001722 csum2 = skb_checksum(list, offset - start,
1723 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 csum = csum_block_add(csum, csum2, pos);
1725 if ((len -= copy) == 0)
1726 return csum;
1727 offset += copy;
1728 pos += copy;
1729 }
David S. Miller1a028e52007-04-27 15:21:23 -07001730 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001733 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 return csum;
1736}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001737EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739/* Both of above in one bottle. */
1740
Al Viro81d77662006-11-14 21:37:33 -08001741__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1742 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
David S. Miller1a028e52007-04-27 15:21:23 -07001744 int start = skb_headlen(skb);
1745 int i, copy = start - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 int pos = 0;
1747
1748 /* Copy header. */
1749 if (copy > 0) {
1750 if (copy > len)
1751 copy = len;
1752 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1753 copy, csum);
1754 if ((len -= copy) == 0)
1755 return csum;
1756 offset += copy;
1757 to += copy;
1758 pos = copy;
1759 }
1760
1761 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001762 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001764 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001765
1766 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001768 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 u8 *vaddr;
1770 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1771
1772 if (copy > len)
1773 copy = len;
1774 vaddr = kmap_skb_frag(frag);
1775 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001776 frag->page_offset +
1777 offset - start, to,
1778 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 kunmap_skb_frag(vaddr);
1780 csum = csum_block_add(csum, csum2, pos);
1781 if (!(len -= copy))
1782 return csum;
1783 offset += copy;
1784 to += copy;
1785 pos += copy;
1786 }
David S. Miller1a028e52007-04-27 15:21:23 -07001787 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
1790 if (skb_shinfo(skb)->frag_list) {
1791 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1792
1793 for (; list; list = list->next) {
Al Viro81d77662006-11-14 21:37:33 -08001794 __wsum csum2;
David S. Miller1a028e52007-04-27 15:21:23 -07001795 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001797 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001798
1799 end = start + list->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if ((copy = end - offset) > 0) {
1801 if (copy > len)
1802 copy = len;
David S. Miller1a028e52007-04-27 15:21:23 -07001803 csum2 = skb_copy_and_csum_bits(list,
1804 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 to, copy, 0);
1806 csum = csum_block_add(csum, csum2, pos);
1807 if ((len -= copy) == 0)
1808 return csum;
1809 offset += copy;
1810 to += copy;
1811 pos += copy;
1812 }
David S. Miller1a028e52007-04-27 15:21:23 -07001813 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001816 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return csum;
1818}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001819EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1822{
Al Virod3bc23e2006-11-14 21:24:49 -08001823 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 long csstart;
1825
Patrick McHardy84fa7932006-08-29 16:44:56 -07001826 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001827 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 else
1829 csstart = skb_headlen(skb);
1830
Kris Katterjohn09a62662006-01-08 22:24:28 -08001831 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001833 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 csum = 0;
1836 if (csstart != skb->len)
1837 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1838 skb->len - csstart, 0);
1839
Patrick McHardy84fa7932006-08-29 16:44:56 -07001840 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001841 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Al Virod3bc23e2006-11-14 21:24:49 -08001843 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001846EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848/**
1849 * skb_dequeue - remove from the head of the queue
1850 * @list: list to dequeue from
1851 *
1852 * Remove the head of the list. The list lock is taken so the function
1853 * may be used safely with other locking list functions. The head item is
1854 * returned or %NULL if the list is empty.
1855 */
1856
1857struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1858{
1859 unsigned long flags;
1860 struct sk_buff *result;
1861
1862 spin_lock_irqsave(&list->lock, flags);
1863 result = __skb_dequeue(list);
1864 spin_unlock_irqrestore(&list->lock, flags);
1865 return result;
1866}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001867EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869/**
1870 * skb_dequeue_tail - remove from the tail of the queue
1871 * @list: list to dequeue from
1872 *
1873 * Remove the tail of the list. The list lock is taken so the function
1874 * may be used safely with other locking list functions. The tail item is
1875 * returned or %NULL if the list is empty.
1876 */
1877struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1878{
1879 unsigned long flags;
1880 struct sk_buff *result;
1881
1882 spin_lock_irqsave(&list->lock, flags);
1883 result = __skb_dequeue_tail(list);
1884 spin_unlock_irqrestore(&list->lock, flags);
1885 return result;
1886}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001887EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889/**
1890 * skb_queue_purge - empty a list
1891 * @list: list to empty
1892 *
1893 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1894 * the list and one reference dropped. This function takes the list
1895 * lock and is atomic with respect to other list locking functions.
1896 */
1897void skb_queue_purge(struct sk_buff_head *list)
1898{
1899 struct sk_buff *skb;
1900 while ((skb = skb_dequeue(list)) != NULL)
1901 kfree_skb(skb);
1902}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001903EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905/**
1906 * skb_queue_head - queue a buffer at the list head
1907 * @list: list to use
1908 * @newsk: buffer to queue
1909 *
1910 * Queue a buffer at the start of the list. This function takes the
1911 * list lock and can be used safely with other locking &sk_buff functions
1912 * safely.
1913 *
1914 * A buffer cannot be placed on two lists at the same time.
1915 */
1916void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1917{
1918 unsigned long flags;
1919
1920 spin_lock_irqsave(&list->lock, flags);
1921 __skb_queue_head(list, newsk);
1922 spin_unlock_irqrestore(&list->lock, flags);
1923}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001924EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926/**
1927 * skb_queue_tail - queue a buffer at the list tail
1928 * @list: list to use
1929 * @newsk: buffer to queue
1930 *
1931 * Queue a buffer at the tail of the list. This function takes the
1932 * list lock and can be used safely with other locking &sk_buff functions
1933 * safely.
1934 *
1935 * A buffer cannot be placed on two lists at the same time.
1936 */
1937void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1938{
1939 unsigned long flags;
1940
1941 spin_lock_irqsave(&list->lock, flags);
1942 __skb_queue_tail(list, newsk);
1943 spin_unlock_irqrestore(&list->lock, flags);
1944}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001945EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947/**
1948 * skb_unlink - remove a buffer from a list
1949 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001950 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 *
David S. Miller8728b832005-08-09 19:25:21 -07001952 * Remove a packet from a list. The list locks are taken and this
1953 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 *
David S. Miller8728b832005-08-09 19:25:21 -07001955 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 */
David S. Miller8728b832005-08-09 19:25:21 -07001957void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
David S. Miller8728b832005-08-09 19:25:21 -07001959 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
David S. Miller8728b832005-08-09 19:25:21 -07001961 spin_lock_irqsave(&list->lock, flags);
1962 __skb_unlink(skb, list);
1963 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001965EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/**
1968 * skb_append - append a buffer
1969 * @old: buffer to insert after
1970 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001971 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 *
1973 * Place a packet after a given packet in a list. The list locks are taken
1974 * and this function is atomic with respect to other list locked calls.
1975 * A buffer cannot be placed on two lists at the same time.
1976 */
David S. Miller8728b832005-08-09 19:25:21 -07001977void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 unsigned long flags;
1980
David S. Miller8728b832005-08-09 19:25:21 -07001981 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001982 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001983 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001985EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987/**
1988 * skb_insert - insert a buffer
1989 * @old: buffer to insert before
1990 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001991 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 *
David S. Miller8728b832005-08-09 19:25:21 -07001993 * Place a packet before a given packet in a list. The list locks are
1994 * taken and this function is atomic with respect to other list locked
1995 * calls.
1996 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * A buffer cannot be placed on two lists at the same time.
1998 */
David S. Miller8728b832005-08-09 19:25:21 -07001999void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 unsigned long flags;
2002
David S. Miller8728b832005-08-09 19:25:21 -07002003 spin_lock_irqsave(&list->lock, flags);
2004 __skb_insert(newsk, old->prev, old, list);
2005 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002007EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009static inline void skb_split_inside_header(struct sk_buff *skb,
2010 struct sk_buff* skb1,
2011 const u32 len, const int pos)
2012{
2013 int i;
2014
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002015 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2016 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /* And move data appendix as is. */
2018 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2019 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2020
2021 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2022 skb_shinfo(skb)->nr_frags = 0;
2023 skb1->data_len = skb->data_len;
2024 skb1->len += skb1->data_len;
2025 skb->data_len = 0;
2026 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002027 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
2030static inline void skb_split_no_header(struct sk_buff *skb,
2031 struct sk_buff* skb1,
2032 const u32 len, int pos)
2033{
2034 int i, k = 0;
2035 const int nfrags = skb_shinfo(skb)->nr_frags;
2036
2037 skb_shinfo(skb)->nr_frags = 0;
2038 skb1->len = skb1->data_len = skb->len - len;
2039 skb->len = len;
2040 skb->data_len = len - pos;
2041
2042 for (i = 0; i < nfrags; i++) {
2043 int size = skb_shinfo(skb)->frags[i].size;
2044
2045 if (pos + size > len) {
2046 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2047
2048 if (pos < len) {
2049 /* Split frag.
2050 * We have two variants in this case:
2051 * 1. Move all the frag to the second
2052 * part, if it is possible. F.e.
2053 * this approach is mandatory for TUX,
2054 * where splitting is expensive.
2055 * 2. Split is accurately. We make this.
2056 */
2057 get_page(skb_shinfo(skb)->frags[i].page);
2058 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2059 skb_shinfo(skb1)->frags[0].size -= len - pos;
2060 skb_shinfo(skb)->frags[i].size = len - pos;
2061 skb_shinfo(skb)->nr_frags++;
2062 }
2063 k++;
2064 } else
2065 skb_shinfo(skb)->nr_frags++;
2066 pos += size;
2067 }
2068 skb_shinfo(skb1)->nr_frags = k;
2069}
2070
2071/**
2072 * skb_split - Split fragmented skb to two parts at length len.
2073 * @skb: the buffer to split
2074 * @skb1: the buffer to receive the second part
2075 * @len: new length for skb
2076 */
2077void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2078{
2079 int pos = skb_headlen(skb);
2080
2081 if (len < pos) /* Split line is inside header. */
2082 skb_split_inside_header(skb, skb1, len, pos);
2083 else /* Second chunk has no header, nothing to copy. */
2084 skb_split_no_header(skb, skb1, len, pos);
2085}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002086EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002088/* Shifting from/to a cloned skb is a no-go.
2089 *
2090 * Caller cannot keep skb_shinfo related pointers past calling here!
2091 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002092static int skb_prepare_for_shift(struct sk_buff *skb)
2093{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002094 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002095}
2096
2097/**
2098 * skb_shift - Shifts paged data partially from skb to another
2099 * @tgt: buffer into which tail data gets added
2100 * @skb: buffer from which the paged data comes from
2101 * @shiftlen: shift up to this many bytes
2102 *
2103 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2104 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2105 * It's up to caller to free skb if everything was shifted.
2106 *
2107 * If @tgt runs out of frags, the whole operation is aborted.
2108 *
2109 * Skb cannot include anything else but paged data while tgt is allowed
2110 * to have non-paged data as well.
2111 *
2112 * TODO: full sized shift could be optimized but that would need
2113 * specialized skb free'er to handle frags without up-to-date nr_frags.
2114 */
2115int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2116{
2117 int from, to, merge, todo;
2118 struct skb_frag_struct *fragfrom, *fragto;
2119
2120 BUG_ON(shiftlen > skb->len);
2121 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2122
2123 todo = shiftlen;
2124 from = 0;
2125 to = skb_shinfo(tgt)->nr_frags;
2126 fragfrom = &skb_shinfo(skb)->frags[from];
2127
2128 /* Actual merge is delayed until the point when we know we can
2129 * commit all, so that we don't have to undo partial changes
2130 */
2131 if (!to ||
2132 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2133 merge = -1;
2134 } else {
2135 merge = to - 1;
2136
2137 todo -= fragfrom->size;
2138 if (todo < 0) {
2139 if (skb_prepare_for_shift(skb) ||
2140 skb_prepare_for_shift(tgt))
2141 return 0;
2142
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002143 /* All previous frag pointers might be stale! */
2144 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002145 fragto = &skb_shinfo(tgt)->frags[merge];
2146
2147 fragto->size += shiftlen;
2148 fragfrom->size -= shiftlen;
2149 fragfrom->page_offset += shiftlen;
2150
2151 goto onlymerged;
2152 }
2153
2154 from++;
2155 }
2156
2157 /* Skip full, not-fitting skb to avoid expensive operations */
2158 if ((shiftlen == skb->len) &&
2159 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2160 return 0;
2161
2162 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2163 return 0;
2164
2165 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2166 if (to == MAX_SKB_FRAGS)
2167 return 0;
2168
2169 fragfrom = &skb_shinfo(skb)->frags[from];
2170 fragto = &skb_shinfo(tgt)->frags[to];
2171
2172 if (todo >= fragfrom->size) {
2173 *fragto = *fragfrom;
2174 todo -= fragfrom->size;
2175 from++;
2176 to++;
2177
2178 } else {
2179 get_page(fragfrom->page);
2180 fragto->page = fragfrom->page;
2181 fragto->page_offset = fragfrom->page_offset;
2182 fragto->size = todo;
2183
2184 fragfrom->page_offset += todo;
2185 fragfrom->size -= todo;
2186 todo = 0;
2187
2188 to++;
2189 break;
2190 }
2191 }
2192
2193 /* Ready to "commit" this state change to tgt */
2194 skb_shinfo(tgt)->nr_frags = to;
2195
2196 if (merge >= 0) {
2197 fragfrom = &skb_shinfo(skb)->frags[0];
2198 fragto = &skb_shinfo(tgt)->frags[merge];
2199
2200 fragto->size += fragfrom->size;
2201 put_page(fragfrom->page);
2202 }
2203
2204 /* Reposition in the original skb */
2205 to = 0;
2206 while (from < skb_shinfo(skb)->nr_frags)
2207 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2208 skb_shinfo(skb)->nr_frags = to;
2209
2210 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2211
2212onlymerged:
2213 /* Most likely the tgt won't ever need its checksum anymore, skb on
2214 * the other hand might need it if it needs to be resent
2215 */
2216 tgt->ip_summed = CHECKSUM_PARTIAL;
2217 skb->ip_summed = CHECKSUM_PARTIAL;
2218
2219 /* Yak, is it really working this way? Some helper please? */
2220 skb->len -= shiftlen;
2221 skb->data_len -= shiftlen;
2222 skb->truesize -= shiftlen;
2223 tgt->len += shiftlen;
2224 tgt->data_len += shiftlen;
2225 tgt->truesize += shiftlen;
2226
2227 return shiftlen;
2228}
2229
Thomas Graf677e90e2005-06-23 20:59:51 -07002230/**
2231 * skb_prepare_seq_read - Prepare a sequential read of skb data
2232 * @skb: the buffer to read
2233 * @from: lower offset of data to be read
2234 * @to: upper offset of data to be read
2235 * @st: state variable
2236 *
2237 * Initializes the specified state variable. Must be called before
2238 * invoking skb_seq_read() for the first time.
2239 */
2240void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2241 unsigned int to, struct skb_seq_state *st)
2242{
2243 st->lower_offset = from;
2244 st->upper_offset = to;
2245 st->root_skb = st->cur_skb = skb;
2246 st->frag_idx = st->stepped_offset = 0;
2247 st->frag_data = NULL;
2248}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002249EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002250
2251/**
2252 * skb_seq_read - Sequentially read skb data
2253 * @consumed: number of bytes consumed by the caller so far
2254 * @data: destination pointer for data to be returned
2255 * @st: state variable
2256 *
2257 * Reads a block of skb data at &consumed relative to the
2258 * lower offset specified to skb_prepare_seq_read(). Assigns
2259 * the head of the data block to &data and returns the length
2260 * of the block or 0 if the end of the skb data or the upper
2261 * offset has been reached.
2262 *
2263 * The caller is not required to consume all of the data
2264 * returned, i.e. &consumed is typically set to the number
2265 * of bytes already consumed and the next call to
2266 * skb_seq_read() will return the remaining part of the block.
2267 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002268 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002269 * this limitation is the cost for zerocopy seqeuental
2270 * reads of potentially non linear data.
2271 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002272 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002273 * at the moment, state->root_skb could be replaced with
2274 * a stack for this purpose.
2275 */
2276unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2277 struct skb_seq_state *st)
2278{
2279 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2280 skb_frag_t *frag;
2281
2282 if (unlikely(abs_offset >= st->upper_offset))
2283 return 0;
2284
2285next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002286 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002287
2288 if (abs_offset < block_limit) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002289 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002290 return block_limit - abs_offset;
2291 }
2292
2293 if (st->frag_idx == 0 && !st->frag_data)
2294 st->stepped_offset += skb_headlen(st->cur_skb);
2295
2296 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2297 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2298 block_limit = frag->size + st->stepped_offset;
2299
2300 if (abs_offset < block_limit) {
2301 if (!st->frag_data)
2302 st->frag_data = kmap_skb_frag(frag);
2303
2304 *data = (u8 *) st->frag_data + frag->page_offset +
2305 (abs_offset - st->stepped_offset);
2306
2307 return block_limit - abs_offset;
2308 }
2309
2310 if (st->frag_data) {
2311 kunmap_skb_frag(st->frag_data);
2312 st->frag_data = NULL;
2313 }
2314
2315 st->frag_idx++;
2316 st->stepped_offset += frag->size;
2317 }
2318
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002319 if (st->frag_data) {
2320 kunmap_skb_frag(st->frag_data);
2321 st->frag_data = NULL;
2322 }
2323
Shyam Iyer71b33462009-01-29 16:12:42 -08002324 if (st->root_skb == st->cur_skb &&
2325 skb_shinfo(st->root_skb)->frag_list) {
2326 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002327 st->frag_idx = 0;
2328 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002329 } else if (st->cur_skb->next) {
2330 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002331 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002332 goto next_skb;
2333 }
2334
2335 return 0;
2336}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002337EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002338
2339/**
2340 * skb_abort_seq_read - Abort a sequential read of skb data
2341 * @st: state variable
2342 *
2343 * Must be called if skb_seq_read() was not called until it
2344 * returned 0.
2345 */
2346void skb_abort_seq_read(struct skb_seq_state *st)
2347{
2348 if (st->frag_data)
2349 kunmap_skb_frag(st->frag_data);
2350}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002351EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002352
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002353#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2354
2355static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2356 struct ts_config *conf,
2357 struct ts_state *state)
2358{
2359 return skb_seq_read(offset, text, TS_SKB_CB(state));
2360}
2361
2362static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2363{
2364 skb_abort_seq_read(TS_SKB_CB(state));
2365}
2366
2367/**
2368 * skb_find_text - Find a text pattern in skb data
2369 * @skb: the buffer to look in
2370 * @from: search offset
2371 * @to: search limit
2372 * @config: textsearch configuration
2373 * @state: uninitialized textsearch state variable
2374 *
2375 * Finds a pattern in the skb data according to the specified
2376 * textsearch configuration. Use textsearch_next() to retrieve
2377 * subsequent occurrences of the pattern. Returns the offset
2378 * to the first occurrence or UINT_MAX if no match was found.
2379 */
2380unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2381 unsigned int to, struct ts_config *config,
2382 struct ts_state *state)
2383{
Phil Oesterf72b9482006-06-26 00:00:57 -07002384 unsigned int ret;
2385
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002386 config->get_next_block = skb_ts_get_next_block;
2387 config->finish = skb_ts_finish;
2388
2389 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2390
Phil Oesterf72b9482006-06-26 00:00:57 -07002391 ret = textsearch_find(config, state);
2392 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002393}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002394EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002395
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002396/**
2397 * skb_append_datato_frags: - append the user data to a skb
2398 * @sk: sock structure
2399 * @skb: skb structure to be appened with user data.
2400 * @getfrag: call back function to be used for getting the user data
2401 * @from: pointer to user message iov
2402 * @length: length of the iov message
2403 *
2404 * Description: This procedure append the user data in the fragment part
2405 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2406 */
2407int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002408 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002409 int len, int odd, struct sk_buff *skb),
2410 void *from, int length)
2411{
2412 int frg_cnt = 0;
2413 skb_frag_t *frag = NULL;
2414 struct page *page = NULL;
2415 int copy, left;
2416 int offset = 0;
2417 int ret;
2418
2419 do {
2420 /* Return error if we don't have space for new frag */
2421 frg_cnt = skb_shinfo(skb)->nr_frags;
2422 if (frg_cnt >= MAX_SKB_FRAGS)
2423 return -EFAULT;
2424
2425 /* allocate a new page for next frag */
2426 page = alloc_pages(sk->sk_allocation, 0);
2427
2428 /* If alloc_page fails just return failure and caller will
2429 * free previous allocated pages by doing kfree_skb()
2430 */
2431 if (page == NULL)
2432 return -ENOMEM;
2433
2434 /* initialize the next frag */
2435 sk->sk_sndmsg_page = page;
2436 sk->sk_sndmsg_off = 0;
2437 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2438 skb->truesize += PAGE_SIZE;
2439 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2440
2441 /* get the new initialized frag */
2442 frg_cnt = skb_shinfo(skb)->nr_frags;
2443 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2444
2445 /* copy the user data to page */
2446 left = PAGE_SIZE - frag->page_offset;
2447 copy = (length > left)? left : length;
2448
2449 ret = getfrag(from, (page_address(frag->page) +
2450 frag->page_offset + frag->size),
2451 offset, copy, 0, skb);
2452 if (ret < 0)
2453 return -EFAULT;
2454
2455 /* copy was successful so update the size parameters */
2456 sk->sk_sndmsg_off += copy;
2457 frag->size += copy;
2458 skb->len += copy;
2459 skb->data_len += copy;
2460 offset += copy;
2461 length -= copy;
2462
2463 } while (length > 0);
2464
2465 return 0;
2466}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002467EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002468
Herbert Xucbb042f2006-03-20 22:43:56 -08002469/**
2470 * skb_pull_rcsum - pull skb and update receive checksum
2471 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002472 * @len: length of data pulled
2473 *
2474 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002475 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002476 * receive path processing instead of skb_pull unless you know
2477 * that the checksum difference is zero (e.g., a valid IP header)
2478 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002479 */
2480unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2481{
2482 BUG_ON(len > skb->len);
2483 skb->len -= len;
2484 BUG_ON(skb->len < skb->data_len);
2485 skb_postpull_rcsum(skb, skb->data, len);
2486 return skb->data += len;
2487}
2488
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002489EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2490
Herbert Xuf4c50d92006-06-22 03:02:40 -07002491/**
2492 * skb_segment - Perform protocol segmentation on skb.
2493 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002494 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002495 *
2496 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002497 * a pointer to the first in a list of new skbs for the segments.
2498 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002499 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002500struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002501{
2502 struct sk_buff *segs = NULL;
2503 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002504 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002505 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002506 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002507 unsigned int offset = doffset;
2508 unsigned int headroom;
2509 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002510 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002511 int nfrags = skb_shinfo(skb)->nr_frags;
2512 int err = -ENOMEM;
2513 int i = 0;
2514 int pos;
2515
2516 __skb_push(skb, doffset);
2517 headroom = skb_headroom(skb);
2518 pos = skb_headlen(skb);
2519
2520 do {
2521 struct sk_buff *nskb;
2522 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002523 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002524 int size;
2525
2526 len = skb->len - offset;
2527 if (len > mss)
2528 len = mss;
2529
2530 hsize = skb_headlen(skb) - offset;
2531 if (hsize < 0)
2532 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002533 if (hsize > len || !sg)
2534 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002535
Herbert Xu89319d382008-12-15 23:26:06 -08002536 if (!hsize && i >= nfrags) {
2537 BUG_ON(fskb->len != len);
2538
2539 pos += len;
2540 nskb = skb_clone(fskb, GFP_ATOMIC);
2541 fskb = fskb->next;
2542
2543 if (unlikely(!nskb))
2544 goto err;
2545
2546 hsize = skb_end_pointer(nskb) - nskb->head;
2547 if (skb_cow_head(nskb, doffset + headroom)) {
2548 kfree_skb(nskb);
2549 goto err;
2550 }
2551
2552 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2553 hsize;
2554 skb_release_head_state(nskb);
2555 __skb_push(nskb, doffset);
2556 } else {
2557 nskb = alloc_skb(hsize + doffset + headroom,
2558 GFP_ATOMIC);
2559
2560 if (unlikely(!nskb))
2561 goto err;
2562
2563 skb_reserve(nskb, headroom);
2564 __skb_put(nskb, doffset);
2565 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002566
2567 if (segs)
2568 tail->next = nskb;
2569 else
2570 segs = nskb;
2571 tail = nskb;
2572
Herbert Xu6f85a122008-08-15 14:55:02 -07002573 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002574 nskb->mac_len = skb->mac_len;
2575
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002576 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002577 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002578 nskb->transport_header = (nskb->network_header +
2579 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002580 skb_copy_from_linear_data(skb, nskb->data, doffset);
2581
2582 if (pos >= offset + len)
2583 continue;
2584
Herbert Xuf4c50d92006-06-22 03:02:40 -07002585 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002586 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002587 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2588 skb_put(nskb, len),
2589 len, 0);
2590 continue;
2591 }
2592
2593 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002594
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002595 skb_copy_from_linear_data_offset(skb, offset,
2596 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002597
Herbert Xu89319d382008-12-15 23:26:06 -08002598 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002599 *frag = skb_shinfo(skb)->frags[i];
2600 get_page(frag->page);
2601 size = frag->size;
2602
2603 if (pos < offset) {
2604 frag->page_offset += offset - pos;
2605 frag->size -= offset - pos;
2606 }
2607
Herbert Xu89319d382008-12-15 23:26:06 -08002608 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002609
2610 if (pos + size <= offset + len) {
2611 i++;
2612 pos += size;
2613 } else {
2614 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002615 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002616 }
2617
2618 frag++;
2619 }
2620
Herbert Xu89319d382008-12-15 23:26:06 -08002621 if (pos < offset + len) {
2622 struct sk_buff *fskb2 = fskb;
2623
2624 BUG_ON(pos + fskb->len != offset + len);
2625
2626 pos += fskb->len;
2627 fskb = fskb->next;
2628
2629 if (fskb2->next) {
2630 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2631 if (!fskb2)
2632 goto err;
2633 } else
2634 skb_get(fskb2);
2635
2636 BUG_ON(skb_shinfo(nskb)->frag_list);
2637 skb_shinfo(nskb)->frag_list = fskb2;
2638 }
2639
2640skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002641 nskb->data_len = len - hsize;
2642 nskb->len += nskb->data_len;
2643 nskb->truesize += nskb->data_len;
2644 } while ((offset += len) < skb->len);
2645
2646 return segs;
2647
2648err:
2649 while ((skb = segs)) {
2650 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002651 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002652 }
2653 return ERR_PTR(err);
2654}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002655EXPORT_SYMBOL_GPL(skb_segment);
2656
Herbert Xu71d93b32008-12-15 23:42:33 -08002657int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2658{
2659 struct sk_buff *p = *head;
2660 struct sk_buff *nskb;
2661 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002662 unsigned int len = skb_gro_len(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002663
Herbert Xu86911732009-01-29 14:19:50 +00002664 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002665 return -E2BIG;
2666
2667 if (skb_shinfo(p)->frag_list)
2668 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00002669 else if (skb_headlen(skb) <= skb_gro_offset(skb)) {
2670 if (skb_shinfo(p)->nr_frags + skb_shinfo(skb)->nr_frags >
2671 MAX_SKB_FRAGS)
2672 return -E2BIG;
2673
Herbert Xu86911732009-01-29 14:19:50 +00002674 skb_shinfo(skb)->frags[0].page_offset +=
2675 skb_gro_offset(skb) - skb_headlen(skb);
2676 skb_shinfo(skb)->frags[0].size -=
2677 skb_gro_offset(skb) - skb_headlen(skb);
2678
Herbert Xu5d38a072009-01-04 16:13:40 -08002679 memcpy(skb_shinfo(p)->frags + skb_shinfo(p)->nr_frags,
2680 skb_shinfo(skb)->frags,
2681 skb_shinfo(skb)->nr_frags * sizeof(skb_frag_t));
2682
2683 skb_shinfo(p)->nr_frags += skb_shinfo(skb)->nr_frags;
Herbert Xuf5572062009-01-14 20:40:03 -08002684 skb_shinfo(skb)->nr_frags = 0;
2685
2686 skb->truesize -= skb->data_len;
2687 skb->len -= skb->data_len;
2688 skb->data_len = 0;
2689
Herbert Xu5d38a072009-01-04 16:13:40 -08002690 NAPI_GRO_CB(skb)->free = 1;
2691 goto done;
2692 }
Herbert Xu71d93b32008-12-15 23:42:33 -08002693
2694 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002695 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002696 if (unlikely(!nskb))
2697 return -ENOMEM;
2698
2699 __copy_skb_header(nskb, p);
2700 nskb->mac_len = p->mac_len;
2701
2702 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002703 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002704
Herbert Xu86911732009-01-29 14:19:50 +00002705 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002706 skb_set_network_header(nskb, skb_network_offset(p));
2707 skb_set_transport_header(nskb, skb_transport_offset(p));
2708
Herbert Xu86911732009-01-29 14:19:50 +00002709 __skb_pull(p, skb_gro_offset(p));
2710 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2711 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002712
2713 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2714 skb_shinfo(nskb)->frag_list = p;
Herbert Xub5302562009-01-04 16:13:19 -08002715 skb_shinfo(nskb)->gso_size = skb_shinfo(p)->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002716 skb_header_release(p);
2717 nskb->prev = p;
2718
2719 nskb->data_len += p->len;
2720 nskb->truesize += p->len;
2721 nskb->len += p->len;
2722
2723 *head = nskb;
2724 nskb->next = p->next;
2725 p->next = NULL;
2726
2727 p = nskb;
2728
2729merge:
Herbert Xu56035022009-02-05 21:26:52 -08002730 if (skb_gro_offset(skb) > skb_headlen(skb)) {
2731 skb_shinfo(skb)->frags[0].page_offset +=
2732 skb_gro_offset(skb) - skb_headlen(skb);
2733 skb_shinfo(skb)->frags[0].size -=
2734 skb_gro_offset(skb) - skb_headlen(skb);
2735 skb_gro_reset_offset(skb);
2736 skb_gro_pull(skb, skb_headlen(skb));
2737 }
2738
2739 __skb_pull(skb, skb_gro_offset(skb));
2740
Herbert Xu71d93b32008-12-15 23:42:33 -08002741 p->prev->next = skb;
2742 p->prev = skb;
2743 skb_header_release(skb);
2744
Herbert Xu5d38a072009-01-04 16:13:40 -08002745done:
2746 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002747 p->data_len += len;
2748 p->truesize += len;
2749 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002750
2751 NAPI_GRO_CB(skb)->same_flow = 1;
2752 return 0;
2753}
2754EXPORT_SYMBOL_GPL(skb_gro_receive);
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756void __init skb_init(void)
2757{
2758 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2759 sizeof(struct sk_buff),
2760 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002761 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002762 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002763 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2764 (2*sizeof(struct sk_buff)) +
2765 sizeof(atomic_t),
2766 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002767 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002768 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769}
2770
David Howells716ea3a2007-04-02 20:19:53 -07002771/**
2772 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2773 * @skb: Socket buffer containing the buffers to be mapped
2774 * @sg: The scatter-gather list to map into
2775 * @offset: The offset into the buffer's contents to start mapping
2776 * @len: Length of buffer space to be mapped
2777 *
2778 * Fill the specified scatter-gather list with mappings/pointers into a
2779 * region of the buffer space attached to a socket buffer.
2780 */
David S. Miller51c739d2007-10-30 21:29:29 -07002781static int
2782__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002783{
David S. Miller1a028e52007-04-27 15:21:23 -07002784 int start = skb_headlen(skb);
2785 int i, copy = start - offset;
David Howells716ea3a2007-04-02 20:19:53 -07002786 int elt = 0;
2787
2788 if (copy > 0) {
2789 if (copy > len)
2790 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002791 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002792 elt++;
2793 if ((len -= copy) == 0)
2794 return elt;
2795 offset += copy;
2796 }
2797
2798 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002799 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002800
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002801 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002802
2803 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002804 if ((copy = end - offset) > 0) {
2805 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2806
2807 if (copy > len)
2808 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002809 sg_set_page(&sg[elt], frag->page, copy,
2810 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002811 elt++;
2812 if (!(len -= copy))
2813 return elt;
2814 offset += copy;
2815 }
David S. Miller1a028e52007-04-27 15:21:23 -07002816 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002817 }
2818
2819 if (skb_shinfo(skb)->frag_list) {
2820 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2821
2822 for (; list; list = list->next) {
David S. Miller1a028e52007-04-27 15:21:23 -07002823 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002824
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002825 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002826
2827 end = start + list->len;
David Howells716ea3a2007-04-02 20:19:53 -07002828 if ((copy = end - offset) > 0) {
2829 if (copy > len)
2830 copy = len;
David S. Miller51c739d2007-10-30 21:29:29 -07002831 elt += __skb_to_sgvec(list, sg+elt, offset - start,
2832 copy);
David Howells716ea3a2007-04-02 20:19:53 -07002833 if ((len -= copy) == 0)
2834 return elt;
2835 offset += copy;
2836 }
David S. Miller1a028e52007-04-27 15:21:23 -07002837 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002838 }
2839 }
2840 BUG_ON(len);
2841 return elt;
2842}
2843
David S. Miller51c739d2007-10-30 21:29:29 -07002844int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2845{
2846 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2847
Jens Axboec46f2332007-10-31 12:06:37 +01002848 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002849
2850 return nsg;
2851}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002852EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002853
David Howells716ea3a2007-04-02 20:19:53 -07002854/**
2855 * skb_cow_data - Check that a socket buffer's data buffers are writable
2856 * @skb: The socket buffer to check.
2857 * @tailbits: Amount of trailing space to be added
2858 * @trailer: Returned pointer to the skb where the @tailbits space begins
2859 *
2860 * Make sure that the data buffers attached to a socket buffer are
2861 * writable. If they are not, private copies are made of the data buffers
2862 * and the socket buffer is set to use these instead.
2863 *
2864 * If @tailbits is given, make sure that there is space to write @tailbits
2865 * bytes of data beyond current end of socket buffer. @trailer will be
2866 * set to point to the skb in which this space begins.
2867 *
2868 * The number of scatterlist elements required to completely map the
2869 * COW'd and extended socket buffer will be returned.
2870 */
2871int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2872{
2873 int copyflag;
2874 int elt;
2875 struct sk_buff *skb1, **skb_p;
2876
2877 /* If skb is cloned or its head is paged, reallocate
2878 * head pulling out all the pages (pages are considered not writable
2879 * at the moment even if they are anonymous).
2880 */
2881 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2882 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2883 return -ENOMEM;
2884
2885 /* Easy case. Most of packets will go this way. */
2886 if (!skb_shinfo(skb)->frag_list) {
2887 /* A little of trouble, not enough of space for trailer.
2888 * This should not happen, when stack is tuned to generate
2889 * good frames. OK, on miss we reallocate and reserve even more
2890 * space, 128 bytes is fair. */
2891
2892 if (skb_tailroom(skb) < tailbits &&
2893 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2894 return -ENOMEM;
2895
2896 /* Voila! */
2897 *trailer = skb;
2898 return 1;
2899 }
2900
2901 /* Misery. We are in troubles, going to mincer fragments... */
2902
2903 elt = 1;
2904 skb_p = &skb_shinfo(skb)->frag_list;
2905 copyflag = 0;
2906
2907 while ((skb1 = *skb_p) != NULL) {
2908 int ntail = 0;
2909
2910 /* The fragment is partially pulled by someone,
2911 * this can happen on input. Copy it and everything
2912 * after it. */
2913
2914 if (skb_shared(skb1))
2915 copyflag = 1;
2916
2917 /* If the skb is the last, worry about trailer. */
2918
2919 if (skb1->next == NULL && tailbits) {
2920 if (skb_shinfo(skb1)->nr_frags ||
2921 skb_shinfo(skb1)->frag_list ||
2922 skb_tailroom(skb1) < tailbits)
2923 ntail = tailbits + 128;
2924 }
2925
2926 if (copyflag ||
2927 skb_cloned(skb1) ||
2928 ntail ||
2929 skb_shinfo(skb1)->nr_frags ||
2930 skb_shinfo(skb1)->frag_list) {
2931 struct sk_buff *skb2;
2932
2933 /* Fuck, we are miserable poor guys... */
2934 if (ntail == 0)
2935 skb2 = skb_copy(skb1, GFP_ATOMIC);
2936 else
2937 skb2 = skb_copy_expand(skb1,
2938 skb_headroom(skb1),
2939 ntail,
2940 GFP_ATOMIC);
2941 if (unlikely(skb2 == NULL))
2942 return -ENOMEM;
2943
2944 if (skb1->sk)
2945 skb_set_owner_w(skb2, skb1->sk);
2946
2947 /* Looking around. Are we still alive?
2948 * OK, link new skb, drop old one */
2949
2950 skb2->next = skb1->next;
2951 *skb_p = skb2;
2952 kfree_skb(skb1);
2953 skb1 = skb2;
2954 }
2955 elt++;
2956 *trailer = skb1;
2957 skb_p = &skb1->next;
2958 }
2959
2960 return elt;
2961}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002962EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002963
Patrick Ohlyac45f602009-02-12 05:03:37 +00002964void skb_tstamp_tx(struct sk_buff *orig_skb,
2965 struct skb_shared_hwtstamps *hwtstamps)
2966{
2967 struct sock *sk = orig_skb->sk;
2968 struct sock_exterr_skb *serr;
2969 struct sk_buff *skb;
2970 int err;
2971
2972 if (!sk)
2973 return;
2974
2975 skb = skb_clone(orig_skb, GFP_ATOMIC);
2976 if (!skb)
2977 return;
2978
2979 if (hwtstamps) {
2980 *skb_hwtstamps(skb) =
2981 *hwtstamps;
2982 } else {
2983 /*
2984 * no hardware time stamps available,
2985 * so keep the skb_shared_tx and only
2986 * store software time stamp
2987 */
2988 skb->tstamp = ktime_get_real();
2989 }
2990
2991 serr = SKB_EXT_ERR(skb);
2992 memset(serr, 0, sizeof(*serr));
2993 serr->ee.ee_errno = ENOMSG;
2994 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
2995 err = sock_queue_err_skb(sk, skb);
2996 if (err)
2997 kfree_skb(skb);
2998}
2999EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3000
3001
Rusty Russellf35d9d82008-02-04 23:49:54 -05003002/**
3003 * skb_partial_csum_set - set up and verify partial csum values for packet
3004 * @skb: the skb to set
3005 * @start: the number of bytes after skb->data to start checksumming.
3006 * @off: the offset from start to place the checksum.
3007 *
3008 * For untrusted partially-checksummed packets, we need to make sure the values
3009 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3010 *
3011 * This function checks and sets those values and skb->ip_summed: if this
3012 * returns false you should drop the packet.
3013 */
3014bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3015{
3016 if (unlikely(start > skb->len - 2) ||
3017 unlikely((int)start + off > skb->len - 2)) {
3018 if (net_ratelimit())
3019 printk(KERN_WARNING
3020 "bad partial csum: csum=%u/%u len=%u\n",
3021 start, off, skb->len);
3022 return false;
3023 }
3024 skb->ip_summed = CHECKSUM_PARTIAL;
3025 skb->csum_start = skb_headroom(skb) + start;
3026 skb->csum_offset = off;
3027 return true;
3028}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003029EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003030
Ben Hutchings4497b072008-06-19 16:22:28 -07003031void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3032{
3033 if (net_ratelimit())
3034 pr_warning("%s: received packets cannot be forwarded"
3035 " while LRO is enabled\n", skb->dev->name);
3036}
Ben Hutchings4497b072008-06-19 16:22:28 -07003037EXPORT_SYMBOL(__skb_warn_lro_forwarding);