blob: 84303af71a36541c4f2f48c66680662f8598298f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40#include <linux/types.h>
41#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020042#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mm.h>
44#include <linux/interrupt.h>
45#include <linux/in.h>
46#include <linux/inet.h>
47#include <linux/slab.h>
Florian Westphal32f8b742014-02-22 10:33:25 +010048#include <linux/tcp.h>
49#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/netdevice.h>
51#ifdef CONFIG_NET_CLS_ACT
52#include <net/pkt_sched.h>
53#endif
54#include <linux/string.h>
55#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080056#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/cache.h>
58#include <linux/rtnetlink.h>
59#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070060#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000061#include <linux/errqueue.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070062#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <net/protocol.h>
65#include <net/dst.h>
66#include <net/sock.h>
67#include <net/checksum.h>
68#include <net/xfrm.h>
69
70#include <asm/uaccess.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040071#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Al Viroa1f8e7f2006-10-19 16:08:53 -040073#include "kmap_skb.h"
74
Christoph Lametere18b8902006-12-06 20:33:20 -080075static struct kmem_cache *skbuff_head_cache __read_mostly;
76static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Jens Axboe9c55e012007-11-06 23:30:13 -080078static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
79 struct pipe_buffer *buf)
80{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080081 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080082}
83
84static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
85 struct pipe_buffer *buf)
86{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080087 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080088}
89
90static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
91 struct pipe_buffer *buf)
92{
93 return 1;
94}
95
96
97/* Pipe buffer operations for a socket. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -080098static const struct pipe_buf_operations sock_pipe_buf_ops = {
Jens Axboe9c55e012007-11-06 23:30:13 -080099 .can_merge = 0,
100 .map = generic_pipe_buf_map,
101 .unmap = generic_pipe_buf_unmap,
102 .confirm = generic_pipe_buf_confirm,
103 .release = sock_pipe_buf_release,
104 .steal = sock_pipe_buf_steal,
105 .get = sock_pipe_buf_get,
106};
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * Keep out-of-line to prevent kernel bloat.
110 * __builtin_return_address is not used because it is not always
111 * reliable.
112 */
113
114/**
115 * skb_over_panic - private function
116 * @skb: buffer
117 * @sz: size
118 * @here: address
119 *
120 * Out of line support code for skb_put(). Not user callable.
121 */
Rami Rosenccb7c772010-04-20 22:39:53 -0700122static void skb_over_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Patrick McHardy26095452005-04-21 16:43:02 -0700124 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700125 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700126 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700127 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700128 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 BUG();
130}
131
132/**
133 * skb_under_panic - private function
134 * @skb: buffer
135 * @sz: size
136 * @here: address
137 *
138 * Out of line support code for skb_push(). Not user callable.
139 */
140
Rami Rosenccb7c772010-04-20 22:39:53 -0700141static void skb_under_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Patrick McHardy26095452005-04-21 16:43:02 -0700143 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700144 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700145 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700146 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700147 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 BUG();
149}
150
151/* Allocate a new skbuff. We do this ourselves so we can fill in a few
152 * 'private' fields and also do memory statistics to find all the
153 * [BEEP] leaks.
154 *
155 */
156
157/**
David S. Millerd179cd12005-08-17 14:57:30 -0700158 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * @size: size to allocate
160 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700161 * @fclone: allocate from fclone cache instead of head cache
162 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800163 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
165 * Allocate a new &sk_buff. The returned buffer has no headroom and a
166 * tail room of size bytes. The object has a reference count of one.
167 * The return is the buffer. On a failure the return is %NULL.
168 *
169 * Buffers may only be allocated from interrupts using a @gfp_mask of
170 * %GFP_ATOMIC.
171 */
Al Virodd0fc662005-10-07 07:46:04 +0100172struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800173 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Christoph Lametere18b8902006-12-06 20:33:20 -0800175 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800176 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct sk_buff *skb;
178 u8 *data;
179
Herbert Xu8798b3f2006-01-23 16:32:45 -0800180 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800183 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (!skb)
185 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700186 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000188 /* We do our best to align skb_shared_info on a separate cache
189 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
190 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
191 * Both skb->head and skb_shared_info are cache line aligned.
192 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000193 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000194 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
195 data = kmalloc_node_track_caller(size, gfp_mask, node);
Pan Fang01c3bdc2013-11-14 23:17:42 +0800196 if (unlikely(ZERO_OR_NULL_PTR(data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000198 /* kmalloc(size) might give us more room than requested.
199 * Put skb_shared_info exactly at the end of allocated zone,
200 * to allow max possible filling before reallocation.
201 */
202 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700203 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300205 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700206 * Only clear those fields we need to clear, not those that we will
207 * actually initialise below. Hence, don't put any more fields after
208 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300209 */
210 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000211 /* Account for allocated memory : skb + skb->head */
212 skb->truesize = SKB_TRUESIZE(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 atomic_set(&skb->users, 1);
214 skb->head = data;
215 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700216 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700217 skb->end = skb->tail + size;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000218#ifdef NET_SKBUFF_DATA_USES_OFFSET
219 skb->mac_header = ~0U;
220#endif
221
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800222 /* make sure we initialize shinfo sequentially */
223 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700224 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800225 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000226 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800227
David S. Millerd179cd12005-08-17 14:57:30 -0700228 if (fclone) {
229 struct sk_buff *child = skb + 1;
230 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200232 kmemcheck_annotate_bitfield(child, flags1);
233 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700234 skb->fclone = SKB_FCLONE_ORIG;
235 atomic_set(fclone_ref, 1);
236
237 child->fclone = SKB_FCLONE_UNAVAILABLE;
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239out:
240 return skb;
241nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800242 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 skb = NULL;
244 goto out;
245}
David S. Millerb4ac5302009-02-10 02:09:24 -0800246EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000249 * build_skb - build a network buffer
250 * @data: data buffer provided by caller
251 *
252 * Allocate a new &sk_buff. Caller provides space holding head and
253 * skb_shared_info. @data must have been allocated by kmalloc()
254 * The return is the new skb buffer.
255 * On a failure the return is %NULL, and @data is not freed.
256 * Notes :
257 * Before IO, driver allocates only data buffer where NIC put incoming frame
258 * Driver should add room at head (NET_SKB_PAD) and
259 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
260 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
261 * before giving packet to stack.
262 * RX rings only contains data buffers, not full skbs.
263 */
264struct sk_buff *build_skb(void *data)
265{
266 struct skb_shared_info *shinfo;
267 struct sk_buff *skb;
268 unsigned int size;
269
270 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
271 if (!skb)
272 return NULL;
273
274 size = ksize(data) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
275
276 memset(skb, 0, offsetof(struct sk_buff, tail));
277 skb->truesize = SKB_TRUESIZE(size);
278 atomic_set(&skb->users, 1);
279 skb->head = data;
280 skb->data = data;
281 skb_reset_tail_pointer(skb);
282 skb->end = skb->tail + size;
283#ifdef NET_SKBUFF_DATA_USES_OFFSET
284 skb->mac_header = ~0U;
285#endif
286
287 /* make sure we initialize shinfo sequentially */
288 shinfo = skb_shinfo(skb);
289 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
290 atomic_set(&shinfo->dataref, 1);
291 kmemcheck_annotate_variable(shinfo->destructor_arg);
292
293 return skb;
294}
295EXPORT_SYMBOL(build_skb);
296
297/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700298 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
299 * @dev: network device to receive on
300 * @length: length to allocate
301 * @gfp_mask: get_free_pages mask, passed to alloc_skb
302 *
303 * Allocate a new &sk_buff and assign it a usage count of one. The
304 * buffer has unspecified headroom built in. Users should allocate
305 * the headroom they think they need without accounting for the
306 * built in space. The built in space is used for optimisations.
307 *
308 * %NULL is returned if there is no free memory.
309 */
310struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
311 unsigned int length, gfp_t gfp_mask)
312{
313 struct sk_buff *skb;
314
Eric Dumazet564824b2010-10-11 19:05:25 +0000315 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, NUMA_NO_NODE);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700316 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700317 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700318 skb->dev = dev;
319 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700320 return skb;
321}
David S. Millerb4ac5302009-02-10 02:09:24 -0800322EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Peter Zijlstra654bed12008-10-07 14:22:33 -0700324void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000325 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700326{
327 skb_fill_page_desc(skb, i, page, off, size);
328 skb->len += size;
329 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000330 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700331}
332EXPORT_SYMBOL(skb_add_rx_frag);
333
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700334/**
335 * dev_alloc_skb - allocate an skbuff for receiving
336 * @length: length to allocate
337 *
338 * Allocate a new &sk_buff and assign it a usage count of one. The
339 * buffer has unspecified headroom built in. Users should allocate
340 * the headroom they think they need without accounting for the
341 * built in space. The built in space is used for optimisations.
342 *
343 * %NULL is returned if there is no free memory. Although this function
344 * allocates memory it can be called from an interrupt.
345 */
346struct sk_buff *dev_alloc_skb(unsigned int length)
347{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700348 /*
349 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700350 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700351 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700352 return __dev_alloc_skb(length, GFP_ATOMIC);
353}
354EXPORT_SYMBOL(dev_alloc_skb);
355
Herbert Xu27b437c2006-07-13 19:26:39 -0700356static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Herbert Xu27b437c2006-07-13 19:26:39 -0700358 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Herbert Xu27b437c2006-07-13 19:26:39 -0700360 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 do {
363 struct sk_buff *this = list;
364 list = list->next;
365 kfree_skb(this);
366 } while (list);
367}
368
Herbert Xu27b437c2006-07-13 19:26:39 -0700369static inline void skb_drop_fraglist(struct sk_buff *skb)
370{
371 skb_drop_list(&skb_shinfo(skb)->frag_list);
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static void skb_clone_fraglist(struct sk_buff *skb)
375{
376 struct sk_buff *list;
377
David S. Millerfbb398a2009-06-09 00:18:59 -0700378 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 skb_get(list);
380}
381
Adrian Bunk5bba1712006-06-29 13:02:35 -0700382static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 if (!skb->cloned ||
385 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
386 &skb_shinfo(skb)->dataref)) {
387 if (skb_shinfo(skb)->nr_frags) {
388 int i;
389 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000390 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
Shirley Maa6686f22011-07-06 12:22:12 +0000393 /*
394 * If skb buf is from userspace, we need to notify the caller
395 * the lower device DMA has done;
396 */
397 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
398 struct ubuf_info *uarg;
399
400 uarg = skb_shinfo(skb)->destructor_arg;
401 if (uarg->callback)
402 uarg->callback(uarg);
403 }
404
David S. Miller21dc3302010-08-23 00:13:46 -0700405 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 skb_drop_fraglist(skb);
407
408 kfree(skb->head);
409 }
410}
411
412/*
413 * Free an skbuff by memory without cleaning the state.
414 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800415static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
David S. Millerd179cd12005-08-17 14:57:30 -0700417 struct sk_buff *other;
418 atomic_t *fclone_ref;
419
David S. Millerd179cd12005-08-17 14:57:30 -0700420 switch (skb->fclone) {
421 case SKB_FCLONE_UNAVAILABLE:
422 kmem_cache_free(skbuff_head_cache, skb);
423 break;
424
425 case SKB_FCLONE_ORIG:
426 fclone_ref = (atomic_t *) (skb + 2);
427 if (atomic_dec_and_test(fclone_ref))
428 kmem_cache_free(skbuff_fclone_cache, skb);
429 break;
430
431 case SKB_FCLONE_CLONE:
432 fclone_ref = (atomic_t *) (skb + 1);
433 other = skb - 1;
434
435 /* The clone portion is available for
436 * fast-cloning again.
437 */
438 skb->fclone = SKB_FCLONE_UNAVAILABLE;
439
440 if (atomic_dec_and_test(fclone_ref))
441 kmem_cache_free(skbuff_fclone_cache, other);
442 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700446static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Eric Dumazetadf30902009-06-02 05:19:30 +0000448 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#ifdef CONFIG_XFRM
450 secpath_put(skb->sp);
451#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700452 if (skb->destructor) {
453 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 skb->destructor(skb);
455 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000456#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700457 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100458#endif
459#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800460 nf_conntrack_put_reasm(skb->nfct_reasm);
461#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#ifdef CONFIG_BRIDGE_NETFILTER
463 nf_bridge_put(skb->nf_bridge);
464#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/* XXX: IS this still necessary? - JHS */
466#ifdef CONFIG_NET_SCHED
467 skb->tc_index = 0;
468#ifdef CONFIG_NET_CLS_ACT
469 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif
471#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700472}
473
474/* Free everything but the sk_buff shell. */
475static void skb_release_all(struct sk_buff *skb)
476{
477 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800478 skb_release_data(skb);
479}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Herbert Xu2d4baff2007-11-26 23:11:19 +0800481/**
482 * __kfree_skb - private function
483 * @skb: buffer
484 *
485 * Free an sk_buff. Release anything attached to the buffer.
486 * Clean the state. This is an internal helper function. Users should
487 * always call kfree_skb
488 */
489
490void __kfree_skb(struct sk_buff *skb)
491{
492 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 kfree_skbmem(skb);
494}
David S. Millerb4ac5302009-02-10 02:09:24 -0800495EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800498 * kfree_skb - free an sk_buff
499 * @skb: buffer to free
500 *
501 * Drop a reference to the buffer and free it if the usage count has
502 * hit zero.
503 */
504void kfree_skb(struct sk_buff *skb)
505{
506 if (unlikely(!skb))
507 return;
508 if (likely(atomic_read(&skb->users) == 1))
509 smp_rmb();
510 else if (likely(!atomic_dec_and_test(&skb->users)))
511 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000512 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800513 __kfree_skb(skb);
514}
David S. Millerb4ac5302009-02-10 02:09:24 -0800515EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800516
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700517/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000518 * consume_skb - free an skbuff
519 * @skb: buffer to free
520 *
521 * Drop a ref to the buffer and free it if the usage count has hit zero
522 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
523 * is being dropped after a failure and notes that
524 */
525void consume_skb(struct sk_buff *skb)
526{
527 if (unlikely(!skb))
528 return;
529 if (likely(atomic_read(&skb->users) == 1))
530 smp_rmb();
531 else if (likely(!atomic_dec_and_test(&skb->users)))
532 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900533 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000534 __kfree_skb(skb);
535}
536EXPORT_SYMBOL(consume_skb);
537
538/**
Andy Fleming3d153a72011-10-13 04:33:54 +0000539 * skb_recycle - clean up an skb for reuse
540 * @skb: buffer
541 *
542 * Recycles the skb to be reused as a receive buffer. This
543 * function does any necessary reference count dropping, and
544 * cleans up the skbuff as if it just came from __alloc_skb().
545 */
546void skb_recycle(struct sk_buff *skb)
547{
548 struct skb_shared_info *shinfo;
549
550 skb_release_head_state(skb);
551
552 shinfo = skb_shinfo(skb);
553 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
554 atomic_set(&shinfo->dataref, 1);
555
556 memset(skb, 0, offsetof(struct sk_buff, tail));
557 skb->data = skb->head + NET_SKB_PAD;
558 skb_reset_tail_pointer(skb);
559}
560EXPORT_SYMBOL(skb_recycle);
561
562/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700563 * skb_recycle_check - check if skb can be reused for receive
564 * @skb: buffer
565 * @skb_size: minimum receive buffer size
566 *
567 * Checks that the skb passed in is not shared or cloned, and
568 * that it is linear and its head portion at least as large as
569 * skb_size so that it can be recycled as a receive buffer.
570 * If these conditions are met, this function does any necessary
571 * reference count dropping and cleans up the skbuff as if it
572 * just came from __alloc_skb().
573 */
Changli Gao5b0daa32010-05-29 00:12:13 -0700574bool skb_recycle_check(struct sk_buff *skb, int skb_size)
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700575{
Andy Fleming3d153a72011-10-13 04:33:54 +0000576 if (!skb_is_recycleable(skb, skb_size))
Changli Gao5b0daa32010-05-29 00:12:13 -0700577 return false;
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000578
Andy Fleming3d153a72011-10-13 04:33:54 +0000579 skb_recycle(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700580
Changli Gao5b0daa32010-05-29 00:12:13 -0700581 return true;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700582}
583EXPORT_SYMBOL(skb_recycle_check);
584
Herbert Xudec18812007-10-14 00:37:30 -0700585static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
586{
587 new->tstamp = old->tstamp;
588 new->dev = old->dev;
589 new->transport_header = old->transport_header;
590 new->network_header = old->network_header;
591 new->mac_header = old->mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000592 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000593 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000594 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000595 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000596 new->no_fcs = old->no_fcs;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700597#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700598 new->sp = secpath_get(old->sp);
599#endif
600 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000601 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700602 new->local_df = old->local_df;
603 new->pkt_type = old->pkt_type;
604 new->ip_summed = old->ip_summed;
605 skb_copy_queue_mapping(new, old);
606 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000607#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700608 new->ipvs_property = old->ipvs_property;
609#endif
610 new->protocol = old->protocol;
611 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800612 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700613 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000614#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700615 new->nf_trace = old->nf_trace;
616#endif
617#ifdef CONFIG_NET_SCHED
618 new->tc_index = old->tc_index;
619#ifdef CONFIG_NET_CLS_ACT
620 new->tc_verd = old->tc_verd;
621#endif
622#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700623 new->vlan_tci = old->vlan_tci;
624
Herbert Xudec18812007-10-14 00:37:30 -0700625 skb_copy_secmark(new, old);
626}
627
Herbert Xu82c49a32009-05-22 22:11:37 +0000628/*
629 * You should not add any new code to this function. Add it to
630 * __copy_skb_header above instead.
631 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700632static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#define C(x) n->x = skb->x
635
636 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700638 __copy_skb_header(n, skb);
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 C(len);
641 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700642 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700643 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800644 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 C(tail);
648 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800649 C(head);
650 C(data);
651 C(truesize);
652 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 atomic_inc(&(skb_shinfo(skb)->dataref));
655 skb->cloned = 1;
656
657 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700658#undef C
659}
660
661/**
662 * skb_morph - morph one skb into another
663 * @dst: the skb to receive the contents
664 * @src: the skb to supply the contents
665 *
666 * This is identical to skb_clone except that the target skb is
667 * supplied by the user.
668 *
669 * The target skb is returned upon exit.
670 */
671struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
672{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800673 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700674 return __skb_clone(dst, src);
675}
676EXPORT_SYMBOL_GPL(skb_morph);
677
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000678/* skb_copy_ubufs - copy userspace skb frags buffers to kernel
679 * @skb: the skb to modify
680 * @gfp_mask: allocation priority
681 *
682 * This must be called on SKBTX_DEV_ZEROCOPY skb.
683 * It will copy all frags into kernel and drop the reference
684 * to userspace pages.
685 *
686 * If this function is called from an interrupt gfp_mask() must be
687 * %GFP_ATOMIC.
688 *
689 * Returns 0 on success or a negative error code on failure
690 * to allocate kernel memory to copy to.
691 */
692int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000693{
694 int i;
695 int num_frags = skb_shinfo(skb)->nr_frags;
696 struct page *page, *head = NULL;
697 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
698
699 for (i = 0; i < num_frags; i++) {
700 u8 *vaddr;
701 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
702
703 page = alloc_page(GFP_ATOMIC);
704 if (!page) {
705 while (head) {
706 struct page *next = (struct page *)head->private;
707 put_page(head);
708 head = next;
709 }
710 return -ENOMEM;
711 }
712 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
713 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000714 vaddr + f->page_offset, skb_frag_size(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000715 kunmap_skb_frag(vaddr);
716 page->private = (unsigned long)head;
717 head = page;
718 }
719
720 /* skb frags release userspace buffers */
721 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000722 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000723
724 uarg->callback(uarg);
725
726 /* skb frags point to kernel buffers */
727 for (i = skb_shinfo(skb)->nr_frags; i > 0; i--) {
Ian Campbella8605c62011-10-19 23:01:49 +0000728 __skb_fill_page_desc(skb, i-1, head, 0,
729 skb_shinfo(skb)->frags[i - 1].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000730 head = (struct page *)head->private;
731 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000732
733 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000734 return 0;
735}
736
737
Herbert Xue0053ec2007-10-14 00:37:52 -0700738/**
739 * skb_clone - duplicate an sk_buff
740 * @skb: buffer to clone
741 * @gfp_mask: allocation priority
742 *
743 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
744 * copies share the same packet data but not structure. The new
745 * buffer has a reference count of 1. If the allocation fails the
746 * function returns %NULL otherwise the new buffer is returned.
747 *
748 * If this function is called from an interrupt gfp_mask() must be
749 * %GFP_ATOMIC.
750 */
751
752struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
753{
754 struct sk_buff *n;
755
Shirley Maa6686f22011-07-06 12:22:12 +0000756 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
757 if (skb_copy_ubufs(skb, gfp_mask))
758 return NULL;
759 }
760
Herbert Xue0053ec2007-10-14 00:37:52 -0700761 n = skb + 1;
762 if (skb->fclone == SKB_FCLONE_ORIG &&
763 n->fclone == SKB_FCLONE_UNAVAILABLE) {
764 atomic_t *fclone_ref = (atomic_t *) (n + 1);
765 n->fclone = SKB_FCLONE_CLONE;
766 atomic_inc(fclone_ref);
767 } else {
768 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
769 if (!n)
770 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200771
772 kmemcheck_annotate_bitfield(n, flags1);
773 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700774 n->fclone = SKB_FCLONE_UNAVAILABLE;
775 }
776
777 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
David S. Millerb4ac5302009-02-10 02:09:24 -0800779EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
782{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700783#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /*
785 * Shift between the two data areas in bytes
786 */
787 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700788#endif
Herbert Xudec18812007-10-14 00:37:30 -0700789
790 __copy_skb_header(new, old);
791
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700792#ifndef NET_SKBUFF_DATA_USES_OFFSET
793 /* {transport,network,mac}_header are relative to skb->head */
794 new->transport_header += offset;
795 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000796 if (skb_mac_header_was_set(new))
797 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700798#endif
Herbert Xu79671682006-06-22 02:40:14 -0700799 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
800 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
801 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/**
805 * skb_copy - create private copy of an sk_buff
806 * @skb: buffer to copy
807 * @gfp_mask: allocation priority
808 *
809 * Make a copy of both an &sk_buff and its data. This is used when the
810 * caller wishes to modify the data and needs a private copy of the
811 * data to alter. Returns %NULL on failure or the pointer to the buffer
812 * on success. The returned buffer has a reference count of 1.
813 *
814 * As by-product this function converts non-linear &sk_buff to linear
815 * one, so that &sk_buff becomes completely private and caller is allowed
816 * to modify all the data of returned buffer. This means that this
817 * function is not recommended for use in circumstances when only
818 * header is going to be modified. Use pskb_copy() instead.
819 */
820
Al Virodd0fc662005-10-07 07:46:04 +0100821struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000823 int headerlen = skb_headroom(skb);
824 unsigned int size = (skb_end_pointer(skb) - skb->head) + skb->data_len;
825 struct sk_buff *n = alloc_skb(size, gfp_mask);
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (!n)
828 return NULL;
829
830 /* Set the data pointer */
831 skb_reserve(n, headerlen);
832 /* Set the tail pointer and length */
833 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
836 BUG();
837
838 copy_skb_header(n, skb);
839 return n;
840}
David S. Millerb4ac5302009-02-10 02:09:24 -0800841EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000844 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000846 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 * @gfp_mask: allocation priority
848 *
849 * Make a copy of both an &sk_buff and part of its data, located
850 * in header. Fragmented data remain shared. This is used when
851 * the caller wishes to modify only header of &sk_buff and needs
852 * private copy of the header to alter. Returns %NULL on failure
853 * or the pointer to the buffer on success.
854 * The returned buffer has a reference count of 1.
855 */
856
Eric Dumazet117632e2011-12-03 21:39:53 +0000857struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Eric Dumazet117632e2011-12-03 21:39:53 +0000859 unsigned int size = skb_headlen(skb) + headroom;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000860 struct sk_buff *n = alloc_skb(size, gfp_mask);
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (!n)
863 goto out;
864
865 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000866 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Set the tail pointer and length */
868 skb_put(n, skb_headlen(skb));
869 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300870 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Herbert Xu25f484a2006-11-07 14:57:15 -0800872 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 n->data_len = skb->data_len;
874 n->len = skb->len;
875
876 if (skb_shinfo(skb)->nr_frags) {
877 int i;
878
Shirley Maa6686f22011-07-06 12:22:12 +0000879 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
880 if (skb_copy_ubufs(skb, gfp_mask)) {
Dan Carpenter15110222011-07-19 22:51:49 +0000881 kfree_skb(n);
882 n = NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000883 goto out;
884 }
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
887 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +0000888 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890 skb_shinfo(n)->nr_frags = i;
891 }
892
David S. Miller21dc3302010-08-23 00:13:46 -0700893 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
895 skb_clone_fraglist(n);
896 }
897
898 copy_skb_header(n, skb);
899out:
900 return n;
901}
Eric Dumazet117632e2011-12-03 21:39:53 +0000902EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904/**
905 * pskb_expand_head - reallocate header of &sk_buff
906 * @skb: buffer to reallocate
907 * @nhead: room to add at head
908 * @ntail: room to add at tail
909 * @gfp_mask: allocation priority
910 *
911 * Expands (or creates identical copy, if &nhead and &ntail are zero)
912 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
913 * reference count of 1. Returns zero in the case of success or error,
914 * if expansion failed. In the last case, &sk_buff is not changed.
915 *
916 * All the pointers pointing into skb header may change and must be
917 * reloaded after call to this function.
918 */
919
Victor Fusco86a76ca2005-07-08 14:57:47 -0700920int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100921 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 int i;
924 u8 *data;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000925 int size = nhead + (skb_end_pointer(skb) - skb->head) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 long off;
Eric Dumazet1fd63042010-09-02 23:09:32 +0000927 bool fastpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Herbert Xu4edd87a2008-10-01 07:09:38 -0700929 BUG_ON(nhead < 0);
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (skb_shared(skb))
932 BUG();
933
934 size = SKB_DATA_ALIGN(size);
935
Changli Gaoca44ac32010-11-29 22:48:46 +0000936 /* Check if we can avoid taking references on fragments if we own
937 * the last reference on skb->head. (see skb_release_data())
938 */
939 if (!skb->cloned)
940 fastpath = true;
941 else {
942 int delta = skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1;
Changli Gaoca44ac32010-11-29 22:48:46 +0000943 fastpath = atomic_read(&skb_shinfo(skb)->dataref) == delta;
944 }
945
946 if (fastpath &&
947 size + sizeof(struct skb_shared_info) <= ksize(skb->head)) {
948 memmove(skb->head + size, skb_shinfo(skb),
949 offsetof(struct skb_shared_info,
950 frags[skb_shinfo(skb)->nr_frags]));
951 memmove(skb->head + nhead, skb->head,
952 skb_tail_pointer(skb) - skb->head);
953 off = nhead;
954 goto adjust_others;
955 }
956
Eric Dumazet87151b82012-04-10 20:08:39 +0000957 data = kmalloc(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
958 gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (!data)
960 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +0000961 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000964 * optimized for the cases when header is void.
965 */
966 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
967
968 memcpy((struct skb_shared_info *)(data + size),
969 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +0000970 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Eric Dumazet1fd63042010-09-02 23:09:32 +0000972 if (fastpath) {
973 kfree(skb->head);
974 } else {
Shirley Maa6686f22011-07-06 12:22:12 +0000975 /* copy this zero copy skb frags */
976 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
977 if (skb_copy_ubufs(skb, gfp_mask))
978 goto nofrags;
979 }
Eric Dumazet1fd63042010-09-02 23:09:32 +0000980 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000981 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Eric Dumazet1fd63042010-09-02 23:09:32 +0000983 if (skb_has_frag_list(skb))
984 skb_clone_fraglist(skb);
985
986 skb_release_data(skb);
987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 off = (data + nhead) - skb->head;
989
990 skb->head = data;
Changli Gaoca44ac32010-11-29 22:48:46 +0000991adjust_others:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700993#ifdef NET_SKBUFF_DATA_USES_OFFSET
994 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700995 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700996#else
997 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700998#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700999 /* {transport,network,mac}_header and tail are relative to skb->head */
1000 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001001 skb->transport_header += off;
1002 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001003 if (skb_mac_header_was_set(skb))
1004 skb->mac_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +00001005 /* Only adjust this if it actually is csum_start rather than csum */
1006 if (skb->ip_summed == CHECKSUM_PARTIAL)
1007 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001009 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 skb->nohdr = 0;
1011 atomic_set(&skb_shinfo(skb)->dataref, 1);
1012 return 0;
1013
Shirley Maa6686f22011-07-06 12:22:12 +00001014nofrags:
1015 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016nodata:
1017 return -ENOMEM;
1018}
David S. Millerb4ac5302009-02-10 02:09:24 -08001019EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021/* Make private copy of skb with writable head and some headroom */
1022
1023struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1024{
1025 struct sk_buff *skb2;
1026 int delta = headroom - skb_headroom(skb);
1027
1028 if (delta <= 0)
1029 skb2 = pskb_copy(skb, GFP_ATOMIC);
1030 else {
1031 skb2 = skb_clone(skb, GFP_ATOMIC);
1032 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1033 GFP_ATOMIC)) {
1034 kfree_skb(skb2);
1035 skb2 = NULL;
1036 }
1037 }
1038 return skb2;
1039}
David S. Millerb4ac5302009-02-10 02:09:24 -08001040EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042/**
1043 * skb_copy_expand - copy and expand sk_buff
1044 * @skb: buffer to copy
1045 * @newheadroom: new free bytes at head
1046 * @newtailroom: new free bytes at tail
1047 * @gfp_mask: allocation priority
1048 *
1049 * Make a copy of both an &sk_buff and its data and while doing so
1050 * allocate additional space.
1051 *
1052 * This is used when the caller wishes to modify the data and needs a
1053 * private copy of the data to alter as well as more space for new fields.
1054 * Returns %NULL on failure or the pointer to the buffer
1055 * on success. The returned buffer has a reference count of 1.
1056 *
1057 * You must pass %GFP_ATOMIC as the allocation priority if this function
1058 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 */
1060struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001061 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001062 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 /*
1065 * Allocate the copy buffer
1066 */
1067 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
1068 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001069 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001071 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 if (!n)
1074 return NULL;
1075
1076 skb_reserve(n, newheadroom);
1077
1078 /* Set the tail pointer and length */
1079 skb_put(n, skb->len);
1080
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001081 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 head_copy_off = 0;
1083 if (newheadroom <= head_copy_len)
1084 head_copy_len = newheadroom;
1085 else
1086 head_copy_off = newheadroom - head_copy_len;
1087
1088 /* Copy the linear header and data. */
1089 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1090 skb->len + head_copy_len))
1091 BUG();
1092
1093 copy_skb_header(n, skb);
1094
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001095 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001096 if (n->ip_summed == CHECKSUM_PARTIAL)
1097 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001098#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001099 n->transport_header += off;
1100 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001101 if (skb_mac_header_was_set(skb))
1102 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -07001103#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return n;
1106}
David S. Millerb4ac5302009-02-10 02:09:24 -08001107EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109/**
1110 * skb_pad - zero pad the tail of an skb
1111 * @skb: buffer to pad
1112 * @pad: space to pad
1113 *
1114 * Ensure that a buffer is followed by a padding area that is zero
1115 * filled. Used by network drivers which may DMA or transfer data
1116 * beyond the buffer end onto the wire.
1117 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001118 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001120
Herbert Xu5b057c62006-06-23 02:06:41 -07001121int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Herbert Xu5b057c62006-06-23 02:06:41 -07001123 int err;
1124 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001127 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001131
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001132 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001133 if (likely(skb_cloned(skb) || ntail > 0)) {
1134 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1135 if (unlikely(err))
1136 goto free_skb;
1137 }
1138
1139 /* FIXME: The use of this function with non-linear skb's really needs
1140 * to be audited.
1141 */
1142 err = skb_linearize(skb);
1143 if (unlikely(err))
1144 goto free_skb;
1145
1146 memset(skb->data + skb->len, 0, pad);
1147 return 0;
1148
1149free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001151 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001152}
David S. Millerb4ac5302009-02-10 02:09:24 -08001153EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001154
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001155/**
1156 * skb_put - add data to a buffer
1157 * @skb: buffer to use
1158 * @len: amount of data to add
1159 *
1160 * This function extends the used data area of the buffer. If this would
1161 * exceed the total buffer size the kernel will panic. A pointer to the
1162 * first byte of the extra data is returned.
1163 */
1164unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1165{
1166 unsigned char *tmp = skb_tail_pointer(skb);
1167 SKB_LINEAR_ASSERT(skb);
1168 skb->tail += len;
1169 skb->len += len;
1170 if (unlikely(skb->tail > skb->end))
1171 skb_over_panic(skb, len, __builtin_return_address(0));
1172 return tmp;
1173}
1174EXPORT_SYMBOL(skb_put);
1175
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001176/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001177 * skb_push - add data to the start of a buffer
1178 * @skb: buffer to use
1179 * @len: amount of data to add
1180 *
1181 * This function extends the used data area of the buffer at the buffer
1182 * start. If this would exceed the total buffer headroom the kernel will
1183 * panic. A pointer to the first byte of the extra data is returned.
1184 */
1185unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1186{
1187 skb->data -= len;
1188 skb->len += len;
1189 if (unlikely(skb->data<skb->head))
1190 skb_under_panic(skb, len, __builtin_return_address(0));
1191 return skb->data;
1192}
1193EXPORT_SYMBOL(skb_push);
1194
1195/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001196 * skb_pull - remove data from the start of a buffer
1197 * @skb: buffer to use
1198 * @len: amount of data to remove
1199 *
1200 * This function removes data from the start of a buffer, returning
1201 * the memory to the headroom. A pointer to the next data in the buffer
1202 * is returned. Once the data has been pulled future pushes will overwrite
1203 * the old data.
1204 */
1205unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1206{
David S. Miller47d29642010-05-02 02:21:44 -07001207 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001208}
1209EXPORT_SYMBOL(skb_pull);
1210
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001211/**
1212 * skb_trim - remove end from a buffer
1213 * @skb: buffer to alter
1214 * @len: new length
1215 *
1216 * Cut the length of a buffer down by removing data from the tail. If
1217 * the buffer is already under the length specified it is not modified.
1218 * The skb must be linear.
1219 */
1220void skb_trim(struct sk_buff *skb, unsigned int len)
1221{
1222 if (skb->len > len)
1223 __skb_trim(skb, len);
1224}
1225EXPORT_SYMBOL(skb_trim);
1226
Herbert Xu3cc0e872006-06-09 16:13:38 -07001227/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 */
1229
Herbert Xu3cc0e872006-06-09 16:13:38 -07001230int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Herbert Xu27b437c2006-07-13 19:26:39 -07001232 struct sk_buff **fragp;
1233 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 int offset = skb_headlen(skb);
1235 int nfrags = skb_shinfo(skb)->nr_frags;
1236 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001237 int err;
1238
1239 if (skb_cloned(skb) &&
1240 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1241 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001243 i = 0;
1244 if (offset >= len)
1245 goto drop_pages;
1246
1247 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001248 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001249
1250 if (end < len) {
1251 offset = end;
1252 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001254
Eric Dumazet9e903e02011-10-18 21:00:24 +00001255 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001256
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001257drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001258 skb_shinfo(skb)->nr_frags = i;
1259
1260 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001261 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001262
David S. Miller21dc3302010-08-23 00:13:46 -07001263 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001264 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001265 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267
Herbert Xu27b437c2006-07-13 19:26:39 -07001268 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1269 fragp = &frag->next) {
1270 int end = offset + frag->len;
1271
1272 if (skb_shared(frag)) {
1273 struct sk_buff *nfrag;
1274
1275 nfrag = skb_clone(frag, GFP_ATOMIC);
1276 if (unlikely(!nfrag))
1277 return -ENOMEM;
1278
1279 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001280 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001281 frag = nfrag;
1282 *fragp = frag;
1283 }
1284
1285 if (end < len) {
1286 offset = end;
1287 continue;
1288 }
1289
1290 if (end > len &&
1291 unlikely((err = pskb_trim(frag, len - offset))))
1292 return err;
1293
1294 if (frag->next)
1295 skb_drop_list(&frag->next);
1296 break;
1297 }
1298
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001299done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001300 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 skb->data_len -= skb->len - len;
1302 skb->len = len;
1303 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001304 skb->len = len;
1305 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001306 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
1308
1309 return 0;
1310}
David S. Millerb4ac5302009-02-10 02:09:24 -08001311EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313/**
1314 * __pskb_pull_tail - advance tail of skb header
1315 * @skb: buffer to reallocate
1316 * @delta: number of bytes to advance tail
1317 *
1318 * The function makes a sense only on a fragmented &sk_buff,
1319 * it expands header moving its tail forward and copying necessary
1320 * data from fragmented part.
1321 *
1322 * &sk_buff MUST have reference count of 1.
1323 *
1324 * Returns %NULL (and &sk_buff does not change) if pull failed
1325 * or value of new tail of skb in the case of success.
1326 *
1327 * All the pointers pointing into skb header may change and must be
1328 * reloaded after call to this function.
1329 */
1330
1331/* Moves tail of skb head forward, copying data from fragmented part,
1332 * when it is necessary.
1333 * 1. It may fail due to malloc failure.
1334 * 2. It may change skb pointers.
1335 *
1336 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1337 */
1338unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1339{
1340 /* If skb has not enough free space at tail, get new one
1341 * plus 128 bytes for future expansions. If we have enough
1342 * room at tail, reallocate without expansion only if skb is cloned.
1343 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001344 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 if (eat > 0 || skb_cloned(skb)) {
1347 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1348 GFP_ATOMIC))
1349 return NULL;
1350 }
1351
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001352 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 BUG();
1354
1355 /* Optimization: no fragments, no reasons to preestimate
1356 * size of pulled pages. Superb.
1357 */
David S. Miller21dc3302010-08-23 00:13:46 -07001358 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 goto pull_pages;
1360
1361 /* Estimate size of pulled pages. */
1362 eat = delta;
1363 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001364 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1365
1366 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001368 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370
1371 /* If we need update frag list, we are in troubles.
1372 * Certainly, it possible to add an offset to skb data,
1373 * but taking into account that pulling is expected to
1374 * be very rare operation, it is worth to fight against
1375 * further bloating skb head and crucify ourselves here instead.
1376 * Pure masohism, indeed. 8)8)
1377 */
1378 if (eat) {
1379 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1380 struct sk_buff *clone = NULL;
1381 struct sk_buff *insp = NULL;
1382
1383 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001384 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 if (list->len <= eat) {
1387 /* Eaten as whole. */
1388 eat -= list->len;
1389 list = list->next;
1390 insp = list;
1391 } else {
1392 /* Eaten partially. */
1393
1394 if (skb_shared(list)) {
1395 /* Sucks! We need to fork list. :-( */
1396 clone = skb_clone(list, GFP_ATOMIC);
1397 if (!clone)
1398 return NULL;
1399 insp = list->next;
1400 list = clone;
1401 } else {
1402 /* This may be pulled without
1403 * problems. */
1404 insp = list;
1405 }
1406 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001407 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return NULL;
1409 }
1410 break;
1411 }
1412 } while (eat);
1413
1414 /* Free pulled out fragments. */
1415 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1416 skb_shinfo(skb)->frag_list = list->next;
1417 kfree_skb(list);
1418 }
1419 /* And insert new clone at head. */
1420 if (clone) {
1421 clone->next = list;
1422 skb_shinfo(skb)->frag_list = clone;
1423 }
1424 }
1425 /* Success! Now we may commit changes to skb data. */
1426
1427pull_pages:
1428 eat = delta;
1429 k = 0;
1430 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001431 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1432
1433 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001434 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001435 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 } else {
1437 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1438 if (eat) {
1439 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001440 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 eat = 0;
1442 }
1443 k++;
1444 }
1445 }
1446 skb_shinfo(skb)->nr_frags = k;
1447
1448 skb->tail += delta;
1449 skb->data_len -= delta;
1450
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001451 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
David S. Millerb4ac5302009-02-10 02:09:24 -08001453EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Eric Dumazet22019b12011-07-29 18:37:31 +00001455/**
1456 * skb_copy_bits - copy bits from skb to kernel buffer
1457 * @skb: source skb
1458 * @offset: offset in source
1459 * @to: destination buffer
1460 * @len: number of bytes to copy
1461 *
1462 * Copy the specified number of bytes from the source skb to the
1463 * destination buffer.
1464 *
1465 * CAUTION ! :
1466 * If its prototype is ever changed,
1467 * check arch/{*}/net/{*}.S files,
1468 * since it is called from BPF assembly code.
1469 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1471{
David S. Miller1a028e52007-04-27 15:21:23 -07001472 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001473 struct sk_buff *frag_iter;
1474 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 if (offset > (int)skb->len - len)
1477 goto fault;
1478
1479 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001480 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (copy > len)
1482 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001483 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if ((len -= copy) == 0)
1485 return 0;
1486 offset += copy;
1487 to += copy;
1488 }
1489
1490 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001491 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001493 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001494
Eric Dumazet9e903e02011-10-18 21:00:24 +00001495 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if ((copy = end - offset) > 0) {
1497 u8 *vaddr;
1498
1499 if (copy > len)
1500 copy = len;
1501
1502 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1503 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001504 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1505 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 kunmap_skb_frag(vaddr);
1507
1508 if ((len -= copy) == 0)
1509 return 0;
1510 offset += copy;
1511 to += copy;
1512 }
David S. Miller1a028e52007-04-27 15:21:23 -07001513 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515
David S. Millerfbb398a2009-06-09 00:18:59 -07001516 skb_walk_frags(skb, frag_iter) {
1517 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
David S. Millerfbb398a2009-06-09 00:18:59 -07001519 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
David S. Millerfbb398a2009-06-09 00:18:59 -07001521 end = start + frag_iter->len;
1522 if ((copy = end - offset) > 0) {
1523 if (copy > len)
1524 copy = len;
1525 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1526 goto fault;
1527 if ((len -= copy) == 0)
1528 return 0;
1529 offset += copy;
1530 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001532 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
Shirley Maa6686f22011-07-06 12:22:12 +00001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (!len)
1536 return 0;
1537
1538fault:
1539 return -EFAULT;
1540}
David S. Millerb4ac5302009-02-10 02:09:24 -08001541EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Jens Axboe9c55e012007-11-06 23:30:13 -08001543/*
1544 * Callback from splice_to_pipe(), if we need to release some pages
1545 * at the end of the spd in case we error'ed out in filling the pipe.
1546 */
1547static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1548{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001549 put_page(spd->pages[i]);
1550}
Jens Axboe9c55e012007-11-06 23:30:13 -08001551
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001552static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1553 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001554 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001555{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001556 struct page *p = sk->sk_sndmsg_page;
1557 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001558
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001559 if (!p) {
1560new_page:
1561 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1562 if (!p)
1563 return NULL;
1564
1565 off = sk->sk_sndmsg_off = 0;
1566 /* hold one ref to this page until it's full */
1567 } else {
1568 unsigned int mlen;
1569
1570 off = sk->sk_sndmsg_off;
1571 mlen = PAGE_SIZE - off;
1572 if (mlen < 64 && mlen < *len) {
1573 put_page(p);
1574 goto new_page;
1575 }
1576
1577 *len = min_t(unsigned int, *len, mlen);
1578 }
1579
1580 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1581 sk->sk_sndmsg_off += *len;
1582 *offset = off;
1583 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001584
1585 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001586}
1587
1588/*
1589 * Fill page/offset/length into spd, if it can hold more pages.
1590 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001591static inline int spd_fill_page(struct splice_pipe_desc *spd,
1592 struct pipe_inode_info *pipe, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001593 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001594 struct sk_buff *skb, int linear,
1595 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001596{
Jens Axboe35f3d142010-05-20 10:43:18 +02001597 if (unlikely(spd->nr_pages == pipe->buffers))
Jens Axboe9c55e012007-11-06 23:30:13 -08001598 return 1;
1599
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001600 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001601 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001602 if (!page)
1603 return 1;
1604 } else
1605 get_page(page);
1606
Jens Axboe9c55e012007-11-06 23:30:13 -08001607 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001608 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001609 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001610 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001611
Jens Axboe9c55e012007-11-06 23:30:13 -08001612 return 0;
1613}
1614
Octavian Purdila2870c432008-07-15 00:49:11 -07001615static inline void __segment_seek(struct page **page, unsigned int *poff,
1616 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001617{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001618 unsigned long n;
1619
Octavian Purdila2870c432008-07-15 00:49:11 -07001620 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001621 n = *poff / PAGE_SIZE;
1622 if (n)
1623 *page = nth_page(*page, n);
1624
Octavian Purdila2870c432008-07-15 00:49:11 -07001625 *poff = *poff % PAGE_SIZE;
1626 *plen -= off;
1627}
Jens Axboe9c55e012007-11-06 23:30:13 -08001628
Octavian Purdila2870c432008-07-15 00:49:11 -07001629static inline int __splice_segment(struct page *page, unsigned int poff,
1630 unsigned int plen, unsigned int *off,
1631 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001632 struct splice_pipe_desc *spd, int linear,
Jens Axboe35f3d142010-05-20 10:43:18 +02001633 struct sock *sk,
1634 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001635{
1636 if (!*len)
1637 return 1;
1638
1639 /* skip this segment if already processed */
1640 if (*off >= plen) {
1641 *off -= plen;
1642 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001643 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001644
Octavian Purdila2870c432008-07-15 00:49:11 -07001645 /* ignore any bits we already processed */
1646 if (*off) {
1647 __segment_seek(&page, &poff, &plen, *off);
1648 *off = 0;
1649 }
1650
1651 do {
1652 unsigned int flen = min(*len, plen);
1653
1654 /* the linear region may spread across several pages */
1655 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1656
Jens Axboe35f3d142010-05-20 10:43:18 +02001657 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001658 return 1;
1659
1660 __segment_seek(&page, &poff, &plen, flen);
1661 *len -= flen;
1662
1663 } while (*len && plen);
1664
1665 return 0;
1666}
1667
1668/*
1669 * Map linear and fragment data from the skb to spd. It reports failure if the
1670 * pipe is full or if we already spliced the requested length.
1671 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001672static int __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1673 unsigned int *offset, unsigned int *len,
1674 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001675{
1676 int seg;
1677
Jens Axboe9c55e012007-11-06 23:30:13 -08001678 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001679 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001680 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001681 if (__splice_segment(virt_to_page(skb->data),
1682 (unsigned long) skb->data & (PAGE_SIZE - 1),
1683 skb_headlen(skb),
Jens Axboe35f3d142010-05-20 10:43:18 +02001684 offset, len, skb, spd, 1, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001685 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001686
1687 /*
1688 * then map the fragments
1689 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001690 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1691 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1692
Ian Campbellea2ab692011-08-22 23:44:58 +00001693 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001694 f->page_offset, skb_frag_size(f),
Jens Axboe35f3d142010-05-20 10:43:18 +02001695 offset, len, skb, spd, 0, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001696 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001697 }
1698
Octavian Purdila2870c432008-07-15 00:49:11 -07001699 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001700}
1701
1702/*
1703 * Map data from the skb to a pipe. Should handle both the linear part,
1704 * the fragments, and the frag list. It does NOT handle frag lists within
1705 * the frag list, if such a thing exists. We'd probably need to recurse to
1706 * handle that cleanly.
1707 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001708int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001709 struct pipe_inode_info *pipe, unsigned int tlen,
1710 unsigned int flags)
1711{
Jens Axboe35f3d142010-05-20 10:43:18 +02001712 struct partial_page partial[PIPE_DEF_BUFFERS];
1713 struct page *pages[PIPE_DEF_BUFFERS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001714 struct splice_pipe_desc spd = {
1715 .pages = pages,
1716 .partial = partial,
Eric Dumazet7ba56a52012-06-12 15:24:40 +02001717 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001718 .flags = flags,
1719 .ops = &sock_pipe_buf_ops,
1720 .spd_release = sock_spd_release,
1721 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001722 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001723 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001724 int ret = 0;
1725
1726 if (splice_grow_spd(pipe, &spd))
1727 return -ENOMEM;
Jens Axboe9c55e012007-11-06 23:30:13 -08001728
1729 /*
1730 * __skb_splice_bits() only fails if the output has no room left,
1731 * so no point in going over the frag_list for the error case.
1732 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001733 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001734 goto done;
1735 else if (!tlen)
1736 goto done;
1737
1738 /*
1739 * now see if we have a frag_list to map
1740 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001741 skb_walk_frags(skb, frag_iter) {
1742 if (!tlen)
1743 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001744 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001745 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001746 }
1747
1748done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001749 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001750 /*
1751 * Drop the socket lock, otherwise we have reverse
1752 * locking dependencies between sk_lock and i_mutex
1753 * here as compared to sendfile(). We enter here
1754 * with the socket lock held, and splice_to_pipe() will
1755 * grab the pipe inode lock. For sendfile() emulation,
1756 * we call into ->sendpage() with the i_mutex lock held
1757 * and networking will grab the socket lock.
1758 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001759 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001760 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001761 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001762 }
1763
Eric Dumazet7ba56a52012-06-12 15:24:40 +02001764 splice_shrink_spd(&spd);
Jens Axboe35f3d142010-05-20 10:43:18 +02001765 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001766}
1767
Herbert Xu357b40a2005-04-19 22:30:14 -07001768/**
1769 * skb_store_bits - store bits from kernel buffer to skb
1770 * @skb: destination buffer
1771 * @offset: offset in destination
1772 * @from: source buffer
1773 * @len: number of bytes to copy
1774 *
1775 * Copy the specified number of bytes from the source buffer to the
1776 * destination skb. This function handles all the messy bits of
1777 * traversing fragment lists and such.
1778 */
1779
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001780int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001781{
David S. Miller1a028e52007-04-27 15:21:23 -07001782 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001783 struct sk_buff *frag_iter;
1784 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001785
1786 if (offset > (int)skb->len - len)
1787 goto fault;
1788
David S. Miller1a028e52007-04-27 15:21:23 -07001789 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001790 if (copy > len)
1791 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001792 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001793 if ((len -= copy) == 0)
1794 return 0;
1795 offset += copy;
1796 from += copy;
1797 }
1798
1799 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1800 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001801 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001802
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001803 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001804
Eric Dumazet9e903e02011-10-18 21:00:24 +00001805 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001806 if ((copy = end - offset) > 0) {
1807 u8 *vaddr;
1808
1809 if (copy > len)
1810 copy = len;
1811
1812 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001813 memcpy(vaddr + frag->page_offset + offset - start,
1814 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001815 kunmap_skb_frag(vaddr);
1816
1817 if ((len -= copy) == 0)
1818 return 0;
1819 offset += copy;
1820 from += copy;
1821 }
David S. Miller1a028e52007-04-27 15:21:23 -07001822 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001823 }
1824
David S. Millerfbb398a2009-06-09 00:18:59 -07001825 skb_walk_frags(skb, frag_iter) {
1826 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001827
David S. Millerfbb398a2009-06-09 00:18:59 -07001828 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001829
David S. Millerfbb398a2009-06-09 00:18:59 -07001830 end = start + frag_iter->len;
1831 if ((copy = end - offset) > 0) {
1832 if (copy > len)
1833 copy = len;
1834 if (skb_store_bits(frag_iter, offset - start,
1835 from, copy))
1836 goto fault;
1837 if ((len -= copy) == 0)
1838 return 0;
1839 offset += copy;
1840 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001841 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001842 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001843 }
1844 if (!len)
1845 return 0;
1846
1847fault:
1848 return -EFAULT;
1849}
Herbert Xu357b40a2005-04-19 22:30:14 -07001850EXPORT_SYMBOL(skb_store_bits);
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852/* Checksum skb data. */
1853
Al Viro2bbbc862006-11-14 21:37:14 -08001854__wsum skb_checksum(const struct sk_buff *skb, int offset,
1855 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
David S. Miller1a028e52007-04-27 15:21:23 -07001857 int start = skb_headlen(skb);
1858 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001859 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 int pos = 0;
1861
1862 /* Checksum header. */
1863 if (copy > 0) {
1864 if (copy > len)
1865 copy = len;
1866 csum = csum_partial(skb->data + offset, copy, csum);
1867 if ((len -= copy) == 0)
1868 return csum;
1869 offset += copy;
1870 pos = copy;
1871 }
1872
1873 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001874 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001876 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001877
Eric Dumazet9e903e02011-10-18 21:00:24 +00001878 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001880 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 u8 *vaddr;
1882 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1883
1884 if (copy > len)
1885 copy = len;
1886 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001887 csum2 = csum_partial(vaddr + frag->page_offset +
1888 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 kunmap_skb_frag(vaddr);
1890 csum = csum_block_add(csum, csum2, pos);
1891 if (!(len -= copy))
1892 return csum;
1893 offset += copy;
1894 pos += copy;
1895 }
David S. Miller1a028e52007-04-27 15:21:23 -07001896 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898
David S. Millerfbb398a2009-06-09 00:18:59 -07001899 skb_walk_frags(skb, frag_iter) {
1900 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
David S. Millerfbb398a2009-06-09 00:18:59 -07001902 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
David S. Millerfbb398a2009-06-09 00:18:59 -07001904 end = start + frag_iter->len;
1905 if ((copy = end - offset) > 0) {
1906 __wsum csum2;
1907 if (copy > len)
1908 copy = len;
1909 csum2 = skb_checksum(frag_iter, offset - start,
1910 copy, 0);
1911 csum = csum_block_add(csum, csum2, pos);
1912 if ((len -= copy) == 0)
1913 return csum;
1914 offset += copy;
1915 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001917 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001919 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 return csum;
1922}
David S. Millerb4ac5302009-02-10 02:09:24 -08001923EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925/* Both of above in one bottle. */
1926
Al Viro81d77662006-11-14 21:37:33 -08001927__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1928 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
David S. Miller1a028e52007-04-27 15:21:23 -07001930 int start = skb_headlen(skb);
1931 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001932 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 int pos = 0;
1934
1935 /* Copy header. */
1936 if (copy > 0) {
1937 if (copy > len)
1938 copy = len;
1939 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1940 copy, csum);
1941 if ((len -= copy) == 0)
1942 return csum;
1943 offset += copy;
1944 to += copy;
1945 pos = copy;
1946 }
1947
1948 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001949 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001951 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001952
Eric Dumazet9e903e02011-10-18 21:00:24 +00001953 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001955 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 u8 *vaddr;
1957 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1958
1959 if (copy > len)
1960 copy = len;
1961 vaddr = kmap_skb_frag(frag);
1962 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001963 frag->page_offset +
1964 offset - start, to,
1965 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 kunmap_skb_frag(vaddr);
1967 csum = csum_block_add(csum, csum2, pos);
1968 if (!(len -= copy))
1969 return csum;
1970 offset += copy;
1971 to += copy;
1972 pos += copy;
1973 }
David S. Miller1a028e52007-04-27 15:21:23 -07001974 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976
David S. Millerfbb398a2009-06-09 00:18:59 -07001977 skb_walk_frags(skb, frag_iter) {
1978 __wsum csum2;
1979 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
David S. Millerfbb398a2009-06-09 00:18:59 -07001981 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
David S. Millerfbb398a2009-06-09 00:18:59 -07001983 end = start + frag_iter->len;
1984 if ((copy = end - offset) > 0) {
1985 if (copy > len)
1986 copy = len;
1987 csum2 = skb_copy_and_csum_bits(frag_iter,
1988 offset - start,
1989 to, copy, 0);
1990 csum = csum_block_add(csum, csum2, pos);
1991 if ((len -= copy) == 0)
1992 return csum;
1993 offset += copy;
1994 to += copy;
1995 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001997 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001999 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return csum;
2001}
David S. Millerb4ac5302009-02-10 02:09:24 -08002002EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2005{
Al Virod3bc23e2006-11-14 21:24:49 -08002006 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 long csstart;
2008
Patrick McHardy84fa7932006-08-29 16:44:56 -07002009 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002010 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 else
2012 csstart = skb_headlen(skb);
2013
Kris Katterjohn09a62662006-01-08 22:24:28 -08002014 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002016 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 csum = 0;
2019 if (csstart != skb->len)
2020 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2021 skb->len - csstart, 0);
2022
Patrick McHardy84fa7932006-08-29 16:44:56 -07002023 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002024 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Al Virod3bc23e2006-11-14 21:24:49 -08002026 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028}
David S. Millerb4ac5302009-02-10 02:09:24 -08002029EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031/**
2032 * skb_dequeue - remove from the head of the queue
2033 * @list: list to dequeue from
2034 *
2035 * Remove the head of the list. The list lock is taken so the function
2036 * may be used safely with other locking list functions. The head item is
2037 * returned or %NULL if the list is empty.
2038 */
2039
2040struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2041{
2042 unsigned long flags;
2043 struct sk_buff *result;
2044
2045 spin_lock_irqsave(&list->lock, flags);
2046 result = __skb_dequeue(list);
2047 spin_unlock_irqrestore(&list->lock, flags);
2048 return result;
2049}
David S. Millerb4ac5302009-02-10 02:09:24 -08002050EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052/**
2053 * skb_dequeue_tail - remove from the tail of the queue
2054 * @list: list to dequeue from
2055 *
2056 * Remove the tail of the list. The list lock is taken so the function
2057 * may be used safely with other locking list functions. The tail item is
2058 * returned or %NULL if the list is empty.
2059 */
2060struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2061{
2062 unsigned long flags;
2063 struct sk_buff *result;
2064
2065 spin_lock_irqsave(&list->lock, flags);
2066 result = __skb_dequeue_tail(list);
2067 spin_unlock_irqrestore(&list->lock, flags);
2068 return result;
2069}
David S. Millerb4ac5302009-02-10 02:09:24 -08002070EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072/**
2073 * skb_queue_purge - empty a list
2074 * @list: list to empty
2075 *
2076 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2077 * the list and one reference dropped. This function takes the list
2078 * lock and is atomic with respect to other list locking functions.
2079 */
2080void skb_queue_purge(struct sk_buff_head *list)
2081{
2082 struct sk_buff *skb;
2083 while ((skb = skb_dequeue(list)) != NULL)
2084 kfree_skb(skb);
2085}
David S. Millerb4ac5302009-02-10 02:09:24 -08002086EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088/**
2089 * skb_queue_head - queue a buffer at the list head
2090 * @list: list to use
2091 * @newsk: buffer to queue
2092 *
2093 * Queue a buffer at the start of the list. This function takes the
2094 * list lock and can be used safely with other locking &sk_buff functions
2095 * safely.
2096 *
2097 * A buffer cannot be placed on two lists at the same time.
2098 */
2099void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2100{
2101 unsigned long flags;
2102
2103 spin_lock_irqsave(&list->lock, flags);
2104 __skb_queue_head(list, newsk);
2105 spin_unlock_irqrestore(&list->lock, flags);
2106}
David S. Millerb4ac5302009-02-10 02:09:24 -08002107EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109/**
2110 * skb_queue_tail - queue a buffer at the list tail
2111 * @list: list to use
2112 * @newsk: buffer to queue
2113 *
2114 * Queue a buffer at the tail of the list. This function takes the
2115 * list lock and can be used safely with other locking &sk_buff functions
2116 * safely.
2117 *
2118 * A buffer cannot be placed on two lists at the same time.
2119 */
2120void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2121{
2122 unsigned long flags;
2123
2124 spin_lock_irqsave(&list->lock, flags);
2125 __skb_queue_tail(list, newsk);
2126 spin_unlock_irqrestore(&list->lock, flags);
2127}
David S. Millerb4ac5302009-02-10 02:09:24 -08002128EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130/**
2131 * skb_unlink - remove a buffer from a list
2132 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002133 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 *
David S. Miller8728b832005-08-09 19:25:21 -07002135 * Remove a packet from a list. The list locks are taken and this
2136 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 *
David S. Miller8728b832005-08-09 19:25:21 -07002138 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 */
David S. Miller8728b832005-08-09 19:25:21 -07002140void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
David S. Miller8728b832005-08-09 19:25:21 -07002142 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
David S. Miller8728b832005-08-09 19:25:21 -07002144 spin_lock_irqsave(&list->lock, flags);
2145 __skb_unlink(skb, list);
2146 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
David S. Millerb4ac5302009-02-10 02:09:24 -08002148EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150/**
2151 * skb_append - append a buffer
2152 * @old: buffer to insert after
2153 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002154 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 *
2156 * Place a packet after a given packet in a list. The list locks are taken
2157 * and this function is atomic with respect to other list locked calls.
2158 * A buffer cannot be placed on two lists at the same time.
2159 */
David S. Miller8728b832005-08-09 19:25:21 -07002160void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 unsigned long flags;
2163
David S. Miller8728b832005-08-09 19:25:21 -07002164 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002165 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002166 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167}
David S. Millerb4ac5302009-02-10 02:09:24 -08002168EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170/**
2171 * skb_insert - insert a buffer
2172 * @old: buffer to insert before
2173 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002174 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 *
David S. Miller8728b832005-08-09 19:25:21 -07002176 * Place a packet before a given packet in a list. The list locks are
2177 * taken and this function is atomic with respect to other list locked
2178 * calls.
2179 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 * A buffer cannot be placed on two lists at the same time.
2181 */
David S. Miller8728b832005-08-09 19:25:21 -07002182void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 unsigned long flags;
2185
David S. Miller8728b832005-08-09 19:25:21 -07002186 spin_lock_irqsave(&list->lock, flags);
2187 __skb_insert(newsk, old->prev, old, list);
2188 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
David S. Millerb4ac5302009-02-10 02:09:24 -08002190EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192static inline void skb_split_inside_header(struct sk_buff *skb,
2193 struct sk_buff* skb1,
2194 const u32 len, const int pos)
2195{
2196 int i;
2197
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002198 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2199 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 /* And move data appendix as is. */
2201 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2202 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2203
2204 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2205 skb_shinfo(skb)->nr_frags = 0;
2206 skb1->data_len = skb->data_len;
2207 skb1->len += skb1->data_len;
2208 skb->data_len = 0;
2209 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002210 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
2212
2213static inline void skb_split_no_header(struct sk_buff *skb,
2214 struct sk_buff* skb1,
2215 const u32 len, int pos)
2216{
2217 int i, k = 0;
2218 const int nfrags = skb_shinfo(skb)->nr_frags;
2219
2220 skb_shinfo(skb)->nr_frags = 0;
2221 skb1->len = skb1->data_len = skb->len - len;
2222 skb->len = len;
2223 skb->data_len = len - pos;
2224
2225 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002226 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 if (pos + size > len) {
2229 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2230
2231 if (pos < len) {
2232 /* Split frag.
2233 * We have two variants in this case:
2234 * 1. Move all the frag to the second
2235 * part, if it is possible. F.e.
2236 * this approach is mandatory for TUX,
2237 * where splitting is expensive.
2238 * 2. Split is accurately. We make this.
2239 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002240 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002242 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2243 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 skb_shinfo(skb)->nr_frags++;
2245 }
2246 k++;
2247 } else
2248 skb_shinfo(skb)->nr_frags++;
2249 pos += size;
2250 }
2251 skb_shinfo(skb1)->nr_frags = k;
2252}
2253
2254/**
2255 * skb_split - Split fragmented skb to two parts at length len.
2256 * @skb: the buffer to split
2257 * @skb1: the buffer to receive the second part
2258 * @len: new length for skb
2259 */
2260void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2261{
2262 int pos = skb_headlen(skb);
2263
2264 if (len < pos) /* Split line is inside header. */
2265 skb_split_inside_header(skb, skb1, len, pos);
2266 else /* Second chunk has no header, nothing to copy. */
2267 skb_split_no_header(skb, skb1, len, pos);
2268}
David S. Millerb4ac5302009-02-10 02:09:24 -08002269EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002271/* Shifting from/to a cloned skb is a no-go.
2272 *
2273 * Caller cannot keep skb_shinfo related pointers past calling here!
2274 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002275static int skb_prepare_for_shift(struct sk_buff *skb)
2276{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002277 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002278}
2279
2280/**
2281 * skb_shift - Shifts paged data partially from skb to another
2282 * @tgt: buffer into which tail data gets added
2283 * @skb: buffer from which the paged data comes from
2284 * @shiftlen: shift up to this many bytes
2285 *
2286 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002287 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002288 * It's up to caller to free skb if everything was shifted.
2289 *
2290 * If @tgt runs out of frags, the whole operation is aborted.
2291 *
2292 * Skb cannot include anything else but paged data while tgt is allowed
2293 * to have non-paged data as well.
2294 *
2295 * TODO: full sized shift could be optimized but that would need
2296 * specialized skb free'er to handle frags without up-to-date nr_frags.
2297 */
2298int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2299{
2300 int from, to, merge, todo;
2301 struct skb_frag_struct *fragfrom, *fragto;
2302
2303 BUG_ON(shiftlen > skb->len);
2304 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2305
2306 todo = shiftlen;
2307 from = 0;
2308 to = skb_shinfo(tgt)->nr_frags;
2309 fragfrom = &skb_shinfo(skb)->frags[from];
2310
2311 /* Actual merge is delayed until the point when we know we can
2312 * commit all, so that we don't have to undo partial changes
2313 */
2314 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002315 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2316 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002317 merge = -1;
2318 } else {
2319 merge = to - 1;
2320
Eric Dumazet9e903e02011-10-18 21:00:24 +00002321 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002322 if (todo < 0) {
2323 if (skb_prepare_for_shift(skb) ||
2324 skb_prepare_for_shift(tgt))
2325 return 0;
2326
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002327 /* All previous frag pointers might be stale! */
2328 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002329 fragto = &skb_shinfo(tgt)->frags[merge];
2330
Eric Dumazet9e903e02011-10-18 21:00:24 +00002331 skb_frag_size_add(fragto, shiftlen);
2332 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002333 fragfrom->page_offset += shiftlen;
2334
2335 goto onlymerged;
2336 }
2337
2338 from++;
2339 }
2340
2341 /* Skip full, not-fitting skb to avoid expensive operations */
2342 if ((shiftlen == skb->len) &&
2343 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2344 return 0;
2345
2346 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2347 return 0;
2348
2349 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2350 if (to == MAX_SKB_FRAGS)
2351 return 0;
2352
2353 fragfrom = &skb_shinfo(skb)->frags[from];
2354 fragto = &skb_shinfo(tgt)->frags[to];
2355
Eric Dumazet9e903e02011-10-18 21:00:24 +00002356 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002357 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002358 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002359 from++;
2360 to++;
2361
2362 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002363 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002364 fragto->page = fragfrom->page;
2365 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002366 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002367
2368 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002369 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002370 todo = 0;
2371
2372 to++;
2373 break;
2374 }
2375 }
2376
2377 /* Ready to "commit" this state change to tgt */
2378 skb_shinfo(tgt)->nr_frags = to;
2379
2380 if (merge >= 0) {
2381 fragfrom = &skb_shinfo(skb)->frags[0];
2382 fragto = &skb_shinfo(tgt)->frags[merge];
2383
Eric Dumazet9e903e02011-10-18 21:00:24 +00002384 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002385 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002386 }
2387
2388 /* Reposition in the original skb */
2389 to = 0;
2390 while (from < skb_shinfo(skb)->nr_frags)
2391 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2392 skb_shinfo(skb)->nr_frags = to;
2393
2394 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2395
2396onlymerged:
2397 /* Most likely the tgt won't ever need its checksum anymore, skb on
2398 * the other hand might need it if it needs to be resent
2399 */
2400 tgt->ip_summed = CHECKSUM_PARTIAL;
2401 skb->ip_summed = CHECKSUM_PARTIAL;
2402
2403 /* Yak, is it really working this way? Some helper please? */
2404 skb->len -= shiftlen;
2405 skb->data_len -= shiftlen;
2406 skb->truesize -= shiftlen;
2407 tgt->len += shiftlen;
2408 tgt->data_len += shiftlen;
2409 tgt->truesize += shiftlen;
2410
2411 return shiftlen;
2412}
2413
Thomas Graf677e90e2005-06-23 20:59:51 -07002414/**
2415 * skb_prepare_seq_read - Prepare a sequential read of skb data
2416 * @skb: the buffer to read
2417 * @from: lower offset of data to be read
2418 * @to: upper offset of data to be read
2419 * @st: state variable
2420 *
2421 * Initializes the specified state variable. Must be called before
2422 * invoking skb_seq_read() for the first time.
2423 */
2424void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2425 unsigned int to, struct skb_seq_state *st)
2426{
2427 st->lower_offset = from;
2428 st->upper_offset = to;
2429 st->root_skb = st->cur_skb = skb;
2430 st->frag_idx = st->stepped_offset = 0;
2431 st->frag_data = NULL;
2432}
David S. Millerb4ac5302009-02-10 02:09:24 -08002433EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002434
2435/**
2436 * skb_seq_read - Sequentially read skb data
2437 * @consumed: number of bytes consumed by the caller so far
2438 * @data: destination pointer for data to be returned
2439 * @st: state variable
2440 *
2441 * Reads a block of skb data at &consumed relative to the
2442 * lower offset specified to skb_prepare_seq_read(). Assigns
2443 * the head of the data block to &data and returns the length
2444 * of the block or 0 if the end of the skb data or the upper
2445 * offset has been reached.
2446 *
2447 * The caller is not required to consume all of the data
2448 * returned, i.e. &consumed is typically set to the number
2449 * of bytes already consumed and the next call to
2450 * skb_seq_read() will return the remaining part of the block.
2451 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002452 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002453 * this limitation is the cost for zerocopy seqeuental
2454 * reads of potentially non linear data.
2455 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002456 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002457 * at the moment, state->root_skb could be replaced with
2458 * a stack for this purpose.
2459 */
2460unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2461 struct skb_seq_state *st)
2462{
2463 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2464 skb_frag_t *frag;
2465
2466 if (unlikely(abs_offset >= st->upper_offset))
2467 return 0;
2468
2469next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002470 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002471
Thomas Chenault995b3372009-05-18 21:43:27 -07002472 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002473 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002474 return block_limit - abs_offset;
2475 }
2476
2477 if (st->frag_idx == 0 && !st->frag_data)
2478 st->stepped_offset += skb_headlen(st->cur_skb);
2479
2480 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2481 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002482 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002483
2484 if (abs_offset < block_limit) {
2485 if (!st->frag_data)
2486 st->frag_data = kmap_skb_frag(frag);
2487
2488 *data = (u8 *) st->frag_data + frag->page_offset +
2489 (abs_offset - st->stepped_offset);
2490
2491 return block_limit - abs_offset;
2492 }
2493
2494 if (st->frag_data) {
2495 kunmap_skb_frag(st->frag_data);
2496 st->frag_data = NULL;
2497 }
2498
2499 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002500 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002501 }
2502
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002503 if (st->frag_data) {
2504 kunmap_skb_frag(st->frag_data);
2505 st->frag_data = NULL;
2506 }
2507
David S. Miller21dc3302010-08-23 00:13:46 -07002508 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002509 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002510 st->frag_idx = 0;
2511 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002512 } else if (st->cur_skb->next) {
2513 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002514 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002515 goto next_skb;
2516 }
2517
2518 return 0;
2519}
David S. Millerb4ac5302009-02-10 02:09:24 -08002520EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002521
2522/**
2523 * skb_abort_seq_read - Abort a sequential read of skb data
2524 * @st: state variable
2525 *
2526 * Must be called if skb_seq_read() was not called until it
2527 * returned 0.
2528 */
2529void skb_abort_seq_read(struct skb_seq_state *st)
2530{
2531 if (st->frag_data)
2532 kunmap_skb_frag(st->frag_data);
2533}
David S. Millerb4ac5302009-02-10 02:09:24 -08002534EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002535
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002536#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2537
2538static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2539 struct ts_config *conf,
2540 struct ts_state *state)
2541{
2542 return skb_seq_read(offset, text, TS_SKB_CB(state));
2543}
2544
2545static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2546{
2547 skb_abort_seq_read(TS_SKB_CB(state));
2548}
2549
2550/**
2551 * skb_find_text - Find a text pattern in skb data
2552 * @skb: the buffer to look in
2553 * @from: search offset
2554 * @to: search limit
2555 * @config: textsearch configuration
2556 * @state: uninitialized textsearch state variable
2557 *
2558 * Finds a pattern in the skb data according to the specified
2559 * textsearch configuration. Use textsearch_next() to retrieve
2560 * subsequent occurrences of the pattern. Returns the offset
2561 * to the first occurrence or UINT_MAX if no match was found.
2562 */
2563unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2564 unsigned int to, struct ts_config *config,
2565 struct ts_state *state)
2566{
Phil Oesterf72b9482006-06-26 00:00:57 -07002567 unsigned int ret;
2568
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002569 config->get_next_block = skb_ts_get_next_block;
2570 config->finish = skb_ts_finish;
2571
2572 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2573
Phil Oesterf72b9482006-06-26 00:00:57 -07002574 ret = textsearch_find(config, state);
2575 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002576}
David S. Millerb4ac5302009-02-10 02:09:24 -08002577EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002578
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002579/**
2580 * skb_append_datato_frags: - append the user data to a skb
2581 * @sk: sock structure
2582 * @skb: skb structure to be appened with user data.
2583 * @getfrag: call back function to be used for getting the user data
2584 * @from: pointer to user message iov
2585 * @length: length of the iov message
2586 *
2587 * Description: This procedure append the user data in the fragment part
2588 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2589 */
2590int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002591 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002592 int len, int odd, struct sk_buff *skb),
2593 void *from, int length)
2594{
2595 int frg_cnt = 0;
2596 skb_frag_t *frag = NULL;
2597 struct page *page = NULL;
2598 int copy, left;
2599 int offset = 0;
2600 int ret;
2601
2602 do {
2603 /* Return error if we don't have space for new frag */
2604 frg_cnt = skb_shinfo(skb)->nr_frags;
2605 if (frg_cnt >= MAX_SKB_FRAGS)
2606 return -EFAULT;
2607
2608 /* allocate a new page for next frag */
2609 page = alloc_pages(sk->sk_allocation, 0);
2610
2611 /* If alloc_page fails just return failure and caller will
2612 * free previous allocated pages by doing kfree_skb()
2613 */
2614 if (page == NULL)
2615 return -ENOMEM;
2616
2617 /* initialize the next frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002618 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2619 skb->truesize += PAGE_SIZE;
2620 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2621
2622 /* get the new initialized frag */
2623 frg_cnt = skb_shinfo(skb)->nr_frags;
2624 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2625
2626 /* copy the user data to page */
2627 left = PAGE_SIZE - frag->page_offset;
2628 copy = (length > left)? left : length;
2629
Eric Dumazet9e903e02011-10-18 21:00:24 +00002630 ret = getfrag(from, skb_frag_address(frag) + skb_frag_size(frag),
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002631 offset, copy, 0, skb);
2632 if (ret < 0)
2633 return -EFAULT;
2634
2635 /* copy was successful so update the size parameters */
Eric Dumazet9e903e02011-10-18 21:00:24 +00002636 skb_frag_size_add(frag, copy);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002637 skb->len += copy;
2638 skb->data_len += copy;
2639 offset += copy;
2640 length -= copy;
2641
2642 } while (length > 0);
2643
2644 return 0;
2645}
David S. Millerb4ac5302009-02-10 02:09:24 -08002646EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002647
Herbert Xucbb042f2006-03-20 22:43:56 -08002648/**
2649 * skb_pull_rcsum - pull skb and update receive checksum
2650 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002651 * @len: length of data pulled
2652 *
2653 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002654 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002655 * receive path processing instead of skb_pull unless you know
2656 * that the checksum difference is zero (e.g., a valid IP header)
2657 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002658 */
2659unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2660{
2661 BUG_ON(len > skb->len);
2662 skb->len -= len;
2663 BUG_ON(skb->len < skb->data_len);
2664 skb_postpull_rcsum(skb, skb->data, len);
2665 return skb->data += len;
2666}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002667EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2668
Herbert Xuf4c50d92006-06-22 03:02:40 -07002669/**
2670 * skb_segment - Perform protocol segmentation on skb.
2671 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002672 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002673 *
2674 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002675 * a pointer to the first in a list of new skbs for the segments.
2676 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002677 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002678struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002679{
2680 struct sk_buff *segs = NULL;
2681 struct sk_buff *tail = NULL;
Herbert Xu89319d32008-12-15 23:26:06 -08002682 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002683 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002684 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002685 unsigned int offset = doffset;
2686 unsigned int headroom;
2687 unsigned int len;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002688 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002689 int nfrags = skb_shinfo(skb)->nr_frags;
2690 int err = -ENOMEM;
2691 int i = 0;
2692 int pos;
2693
2694 __skb_push(skb, doffset);
2695 headroom = skb_headroom(skb);
2696 pos = skb_headlen(skb);
2697
2698 do {
2699 struct sk_buff *nskb;
2700 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002701 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002702 int size;
2703
2704 len = skb->len - offset;
2705 if (len > mss)
2706 len = mss;
2707
2708 hsize = skb_headlen(skb) - offset;
2709 if (hsize < 0)
2710 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002711 if (hsize > len || !sg)
2712 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002713
Herbert Xu89319d32008-12-15 23:26:06 -08002714 if (!hsize && i >= nfrags) {
2715 BUG_ON(fskb->len != len);
2716
2717 pos += len;
2718 nskb = skb_clone(fskb, GFP_ATOMIC);
2719 fskb = fskb->next;
2720
2721 if (unlikely(!nskb))
2722 goto err;
2723
2724 hsize = skb_end_pointer(nskb) - nskb->head;
2725 if (skb_cow_head(nskb, doffset + headroom)) {
2726 kfree_skb(nskb);
2727 goto err;
2728 }
2729
2730 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2731 hsize;
2732 skb_release_head_state(nskb);
2733 __skb_push(nskb, doffset);
2734 } else {
2735 nskb = alloc_skb(hsize + doffset + headroom,
2736 GFP_ATOMIC);
2737
2738 if (unlikely(!nskb))
2739 goto err;
2740
2741 skb_reserve(nskb, headroom);
2742 __skb_put(nskb, doffset);
2743 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002744
2745 if (segs)
2746 tail->next = nskb;
2747 else
2748 segs = nskb;
2749 tail = nskb;
2750
Herbert Xu6f85a122008-08-15 14:55:02 -07002751 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002752 nskb->mac_len = skb->mac_len;
2753
Eric Dumazet3d3be432010-09-01 00:50:51 +00002754 /* nskb and skb might have different headroom */
2755 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2756 nskb->csum_start += skb_headroom(nskb) - headroom;
2757
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002758 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002759 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002760 nskb->transport_header = (nskb->network_header +
2761 skb_network_header_len(skb));
Herbert Xu89319d32008-12-15 23:26:06 -08002762 skb_copy_from_linear_data(skb, nskb->data, doffset);
2763
Herbert Xu2f181852009-03-28 23:39:18 -07002764 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d32008-12-15 23:26:06 -08002765 continue;
2766
Herbert Xuf4c50d92006-06-22 03:02:40 -07002767 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002768 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002769 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2770 skb_put(nskb, len),
2771 len, 0);
2772 continue;
2773 }
2774
2775 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002776
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002777 skb_copy_from_linear_data_offset(skb, offset,
2778 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002779
Herbert Xu89319d32008-12-15 23:26:06 -08002780 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002781 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002782 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002783 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002784
2785 if (pos < offset) {
2786 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002787 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002788 }
2789
Herbert Xu89319d32008-12-15 23:26:06 -08002790 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002791
2792 if (pos + size <= offset + len) {
2793 i++;
2794 pos += size;
2795 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002796 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d32008-12-15 23:26:06 -08002797 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002798 }
2799
2800 frag++;
2801 }
2802
Herbert Xu89319d32008-12-15 23:26:06 -08002803 if (pos < offset + len) {
2804 struct sk_buff *fskb2 = fskb;
2805
2806 BUG_ON(pos + fskb->len != offset + len);
2807
2808 pos += fskb->len;
2809 fskb = fskb->next;
2810
2811 if (fskb2->next) {
2812 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2813 if (!fskb2)
2814 goto err;
2815 } else
2816 skb_get(fskb2);
2817
David S. Millerfbb398a2009-06-09 00:18:59 -07002818 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d32008-12-15 23:26:06 -08002819 skb_shinfo(nskb)->frag_list = fskb2;
2820 }
2821
2822skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002823 nskb->data_len = len - hsize;
2824 nskb->len += nskb->data_len;
2825 nskb->truesize += nskb->data_len;
2826 } while ((offset += len) < skb->len);
2827
2828 return segs;
2829
2830err:
2831 while ((skb = segs)) {
2832 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002833 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002834 }
2835 return ERR_PTR(err);
2836}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002837EXPORT_SYMBOL_GPL(skb_segment);
2838
Herbert Xu71d93b32008-12-15 23:42:33 -08002839int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2840{
2841 struct sk_buff *p = *head;
2842 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002843 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2844 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002845 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002846 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002847 unsigned int offset = skb_gro_offset(skb);
2848 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002849
Herbert Xu86911732009-01-29 14:19:50 +00002850 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002851 return -E2BIG;
2852
Herbert Xu9aaa1562009-05-26 18:50:33 +00002853 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002854 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002855 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002856 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002857 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002858 int i = skbinfo->nr_frags;
2859 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002860
Herbert Xu66e92fc2009-05-26 18:50:32 +00002861 offset -= headlen;
2862
2863 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002864 return -E2BIG;
2865
Herbert Xu9aaa1562009-05-26 18:50:33 +00002866 pinfo->nr_frags = nr_frags;
2867 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002868
Herbert Xu9aaa1562009-05-26 18:50:33 +00002869 frag = pinfo->frags + nr_frags;
2870 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002871 do {
2872 *--frag = *--frag2;
2873 } while (--i);
2874
2875 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002876 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002877
Herbert Xuf5572062009-01-14 20:40:03 -08002878 skb->truesize -= skb->data_len;
2879 skb->len -= skb->data_len;
2880 skb->data_len = 0;
2881
Herbert Xu5d38a072009-01-04 16:13:40 -08002882 NAPI_GRO_CB(skb)->free = 1;
2883 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002884 } else if (skb_gro_len(p) != pinfo->gso_size)
2885 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002886
2887 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002888 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002889 if (unlikely(!nskb))
2890 return -ENOMEM;
2891
2892 __copy_skb_header(nskb, p);
2893 nskb->mac_len = p->mac_len;
2894
2895 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002896 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002897
Herbert Xu86911732009-01-29 14:19:50 +00002898 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002899 skb_set_network_header(nskb, skb_network_offset(p));
2900 skb_set_transport_header(nskb, skb_transport_offset(p));
2901
Herbert Xu86911732009-01-29 14:19:50 +00002902 __skb_pull(p, skb_gro_offset(p));
2903 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2904 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002905
2906 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2907 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002908 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07002909 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08002910 skb_header_release(p);
2911 nskb->prev = p;
2912
2913 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00002914 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002915 nskb->len += p->len;
2916
2917 *head = nskb;
2918 nskb->next = p->next;
2919 p->next = NULL;
2920
2921 p = nskb;
2922
2923merge:
Eric Dumazetde8261c2012-02-13 04:09:20 +00002924 p->truesize += skb->truesize - len;
Herbert Xu67147ba2009-05-26 18:50:22 +00002925 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00002926 unsigned int eat = offset - headlen;
2927
2928 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002929 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00002930 skb->data_len -= eat;
2931 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00002932 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002933 }
2934
Herbert Xu67147ba2009-05-26 18:50:22 +00002935 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002936
Herbert Xu71d93b32008-12-15 23:42:33 -08002937 p->prev->next = skb;
2938 p->prev = skb;
2939 skb_header_release(skb);
2940
Herbert Xu5d38a072009-01-04 16:13:40 -08002941done:
2942 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002943 p->data_len += len;
2944 p->truesize += len;
2945 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002946
2947 NAPI_GRO_CB(skb)->same_flow = 1;
2948 return 0;
2949}
2950EXPORT_SYMBOL_GPL(skb_gro_receive);
2951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952void __init skb_init(void)
2953{
2954 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2955 sizeof(struct sk_buff),
2956 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002957 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002958 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002959 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2960 (2*sizeof(struct sk_buff)) +
2961 sizeof(atomic_t),
2962 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002963 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002964 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965}
2966
David Howells716ea3a2007-04-02 20:19:53 -07002967/**
2968 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2969 * @skb: Socket buffer containing the buffers to be mapped
2970 * @sg: The scatter-gather list to map into
2971 * @offset: The offset into the buffer's contents to start mapping
2972 * @len: Length of buffer space to be mapped
2973 *
2974 * Fill the specified scatter-gather list with mappings/pointers into a
2975 * region of the buffer space attached to a socket buffer.
2976 */
David S. Miller51c739d2007-10-30 21:29:29 -07002977static int
2978__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002979{
David S. Miller1a028e52007-04-27 15:21:23 -07002980 int start = skb_headlen(skb);
2981 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002982 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002983 int elt = 0;
2984
2985 if (copy > 0) {
2986 if (copy > len)
2987 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002988 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002989 elt++;
2990 if ((len -= copy) == 0)
2991 return elt;
2992 offset += copy;
2993 }
2994
2995 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002996 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002997
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002998 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002999
Eric Dumazet9e903e02011-10-18 21:00:24 +00003000 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003001 if ((copy = end - offset) > 0) {
3002 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3003
3004 if (copy > len)
3005 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003006 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003007 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003008 elt++;
3009 if (!(len -= copy))
3010 return elt;
3011 offset += copy;
3012 }
David S. Miller1a028e52007-04-27 15:21:23 -07003013 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003014 }
3015
David S. Millerfbb398a2009-06-09 00:18:59 -07003016 skb_walk_frags(skb, frag_iter) {
3017 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003018
David S. Millerfbb398a2009-06-09 00:18:59 -07003019 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003020
David S. Millerfbb398a2009-06-09 00:18:59 -07003021 end = start + frag_iter->len;
3022 if ((copy = end - offset) > 0) {
3023 if (copy > len)
3024 copy = len;
3025 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3026 copy);
3027 if ((len -= copy) == 0)
3028 return elt;
3029 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003030 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003031 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003032 }
3033 BUG_ON(len);
3034 return elt;
3035}
3036
David S. Miller51c739d2007-10-30 21:29:29 -07003037int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3038{
3039 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3040
Jens Axboec46f2332007-10-31 12:06:37 +01003041 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003042
3043 return nsg;
3044}
David S. Millerb4ac5302009-02-10 02:09:24 -08003045EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003046
David Howells716ea3a2007-04-02 20:19:53 -07003047/**
3048 * skb_cow_data - Check that a socket buffer's data buffers are writable
3049 * @skb: The socket buffer to check.
3050 * @tailbits: Amount of trailing space to be added
3051 * @trailer: Returned pointer to the skb where the @tailbits space begins
3052 *
3053 * Make sure that the data buffers attached to a socket buffer are
3054 * writable. If they are not, private copies are made of the data buffers
3055 * and the socket buffer is set to use these instead.
3056 *
3057 * If @tailbits is given, make sure that there is space to write @tailbits
3058 * bytes of data beyond current end of socket buffer. @trailer will be
3059 * set to point to the skb in which this space begins.
3060 *
3061 * The number of scatterlist elements required to completely map the
3062 * COW'd and extended socket buffer will be returned.
3063 */
3064int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3065{
3066 int copyflag;
3067 int elt;
3068 struct sk_buff *skb1, **skb_p;
3069
3070 /* If skb is cloned or its head is paged, reallocate
3071 * head pulling out all the pages (pages are considered not writable
3072 * at the moment even if they are anonymous).
3073 */
3074 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3075 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3076 return -ENOMEM;
3077
3078 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003079 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003080 /* A little of trouble, not enough of space for trailer.
3081 * This should not happen, when stack is tuned to generate
3082 * good frames. OK, on miss we reallocate and reserve even more
3083 * space, 128 bytes is fair. */
3084
3085 if (skb_tailroom(skb) < tailbits &&
3086 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3087 return -ENOMEM;
3088
3089 /* Voila! */
3090 *trailer = skb;
3091 return 1;
3092 }
3093
3094 /* Misery. We are in troubles, going to mincer fragments... */
3095
3096 elt = 1;
3097 skb_p = &skb_shinfo(skb)->frag_list;
3098 copyflag = 0;
3099
3100 while ((skb1 = *skb_p) != NULL) {
3101 int ntail = 0;
3102
3103 /* The fragment is partially pulled by someone,
3104 * this can happen on input. Copy it and everything
3105 * after it. */
3106
3107 if (skb_shared(skb1))
3108 copyflag = 1;
3109
3110 /* If the skb is the last, worry about trailer. */
3111
3112 if (skb1->next == NULL && tailbits) {
3113 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003114 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003115 skb_tailroom(skb1) < tailbits)
3116 ntail = tailbits + 128;
3117 }
3118
3119 if (copyflag ||
3120 skb_cloned(skb1) ||
3121 ntail ||
3122 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003123 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003124 struct sk_buff *skb2;
3125
3126 /* Fuck, we are miserable poor guys... */
3127 if (ntail == 0)
3128 skb2 = skb_copy(skb1, GFP_ATOMIC);
3129 else
3130 skb2 = skb_copy_expand(skb1,
3131 skb_headroom(skb1),
3132 ntail,
3133 GFP_ATOMIC);
3134 if (unlikely(skb2 == NULL))
3135 return -ENOMEM;
3136
3137 if (skb1->sk)
3138 skb_set_owner_w(skb2, skb1->sk);
3139
3140 /* Looking around. Are we still alive?
3141 * OK, link new skb, drop old one */
3142
3143 skb2->next = skb1->next;
3144 *skb_p = skb2;
3145 kfree_skb(skb1);
3146 skb1 = skb2;
3147 }
3148 elt++;
3149 *trailer = skb1;
3150 skb_p = &skb1->next;
3151 }
3152
3153 return elt;
3154}
David S. Millerb4ac5302009-02-10 02:09:24 -08003155EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003156
Eric Dumazetb1faf562010-05-31 23:44:05 -07003157static void sock_rmem_free(struct sk_buff *skb)
3158{
3159 struct sock *sk = skb->sk;
3160
3161 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3162}
3163
3164/*
3165 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3166 */
3167int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3168{
Eric Dumazet110c4332012-04-06 10:49:10 +02003169 int len = skb->len;
3170
Eric Dumazetb1faf562010-05-31 23:44:05 -07003171 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
3172 (unsigned)sk->sk_rcvbuf)
3173 return -ENOMEM;
3174
3175 skb_orphan(skb);
3176 skb->sk = sk;
3177 skb->destructor = sock_rmem_free;
3178 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3179
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003180 /* before exiting rcu section, make sure dst is refcounted */
3181 skb_dst_force(skb);
3182
Eric Dumazetb1faf562010-05-31 23:44:05 -07003183 skb_queue_tail(&sk->sk_error_queue, skb);
3184 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003185 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003186 return 0;
3187}
3188EXPORT_SYMBOL(sock_queue_err_skb);
3189
Patrick Ohlyac45f602009-02-12 05:03:37 +00003190void skb_tstamp_tx(struct sk_buff *orig_skb,
3191 struct skb_shared_hwtstamps *hwtstamps)
3192{
3193 struct sock *sk = orig_skb->sk;
3194 struct sock_exterr_skb *serr;
3195 struct sk_buff *skb;
3196 int err;
3197
3198 if (!sk)
3199 return;
3200
3201 skb = skb_clone(orig_skb, GFP_ATOMIC);
3202 if (!skb)
3203 return;
3204
3205 if (hwtstamps) {
3206 *skb_hwtstamps(skb) =
3207 *hwtstamps;
3208 } else {
3209 /*
3210 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003211 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003212 * store software time stamp
3213 */
3214 skb->tstamp = ktime_get_real();
3215 }
3216
3217 serr = SKB_EXT_ERR(skb);
3218 memset(serr, 0, sizeof(*serr));
3219 serr->ee.ee_errno = ENOMSG;
3220 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003221
Patrick Ohlyac45f602009-02-12 05:03:37 +00003222 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003223
Patrick Ohlyac45f602009-02-12 05:03:37 +00003224 if (err)
3225 kfree_skb(skb);
3226}
3227EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3228
Johannes Berg6e3e9392011-11-09 10:15:42 +01003229void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3230{
3231 struct sock *sk = skb->sk;
3232 struct sock_exterr_skb *serr;
3233 int err;
3234
3235 skb->wifi_acked_valid = 1;
3236 skb->wifi_acked = acked;
3237
3238 serr = SKB_EXT_ERR(skb);
3239 memset(serr, 0, sizeof(*serr));
3240 serr->ee.ee_errno = ENOMSG;
3241 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3242
3243 err = sock_queue_err_skb(sk, skb);
3244 if (err)
3245 kfree_skb(skb);
3246}
3247EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3248
Patrick Ohlyac45f602009-02-12 05:03:37 +00003249
Rusty Russellf35d9d82008-02-04 23:49:54 -05003250/**
3251 * skb_partial_csum_set - set up and verify partial csum values for packet
3252 * @skb: the skb to set
3253 * @start: the number of bytes after skb->data to start checksumming.
3254 * @off: the offset from start to place the checksum.
3255 *
3256 * For untrusted partially-checksummed packets, we need to make sure the values
3257 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3258 *
3259 * This function checks and sets those values and skb->ip_summed: if this
3260 * returns false you should drop the packet.
3261 */
3262bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3263{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003264 if (unlikely(start > skb_headlen(skb)) ||
3265 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003266 if (net_ratelimit())
3267 printk(KERN_WARNING
3268 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003269 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003270 return false;
3271 }
3272 skb->ip_summed = CHECKSUM_PARTIAL;
3273 skb->csum_start = skb_headroom(skb) + start;
3274 skb->csum_offset = off;
3275 return true;
3276}
David S. Millerb4ac5302009-02-10 02:09:24 -08003277EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003278
Ben Hutchings4497b072008-06-19 16:22:28 -07003279void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3280{
3281 if (net_ratelimit())
3282 pr_warning("%s: received packets cannot be forwarded"
3283 " while LRO is enabled\n", skb->dev->name);
3284}
Ben Hutchings4497b072008-06-19 16:22:28 -07003285EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Florian Westphal32f8b742014-02-22 10:33:25 +01003286
3287/**
3288 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
3289 *
3290 * @skb: GSO skb
3291 *
3292 * skb_gso_transport_seglen is used to determine the real size of the
3293 * individual segments, including Layer4 headers (TCP/UDP).
3294 *
3295 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
3296 */
3297unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
3298{
3299 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3300 unsigned int hdr_len;
3301
3302 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
3303 hdr_len = tcp_hdrlen(skb);
3304 else
3305 hdr_len = sizeof(struct udphdr);
3306 return hdr_len + shinfo->gso_size;
3307}
3308EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);