blob: 0b5149c5bc4a14ca7ac559ab166961dacd2f1eec [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
Joe Perchese005d192012-05-16 19:58:40 +000039#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/types.h>
43#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020044#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/mm.h>
46#include <linux/interrupt.h>
47#include <linux/in.h>
48#include <linux/inet.h>
49#include <linux/slab.h>
50#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>
Eric Dumazet51c56b02012-04-05 11:35:15 +020072#include <linux/highmem.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040073
Eric Dumazetd7e88832012-04-30 08:10:34 +000074struct kmem_cache *skbuff_head_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080075static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/**
Jean Sacrenf05de732013-02-11 13:30:38 +000078 * skb_panic - private function for out-of-line support
79 * @skb: buffer
80 * @sz: size
81 * @addr: address
James Hogan99d58512013-02-13 11:20:27 +000082 * @msg: skb_over_panic or skb_under_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 *
Jean Sacrenf05de732013-02-11 13:30:38 +000084 * Out-of-line support for skb_put() and skb_push().
85 * Called via the wrapper skb_over_panic() or skb_under_panic().
86 * Keep out of line to prevent kernel bloat.
87 * __builtin_return_address is not used because it is not always reliable.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Jean Sacrenf05de732013-02-11 13:30:38 +000089static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
James Hogan99d58512013-02-13 11:20:27 +000090 const char msg[])
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Joe Perchese005d192012-05-16 19:58:40 +000092 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
James Hogan99d58512013-02-13 11:20:27 +000093 msg, addr, skb->len, sz, skb->head, skb->data,
Joe Perchese005d192012-05-16 19:58:40 +000094 (unsigned long)skb->tail, (unsigned long)skb->end,
95 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 BUG();
97}
98
Jean Sacrenf05de732013-02-11 13:30:38 +000099static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Jean Sacrenf05de732013-02-11 13:30:38 +0000101 skb_panic(skb, sz, addr, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Jean Sacrenf05de732013-02-11 13:30:38 +0000104static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
105{
106 skb_panic(skb, sz, addr, __func__);
107}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700108
109/*
110 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
111 * the caller if emergency pfmemalloc reserves are being used. If it is and
112 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
113 * may be used. Otherwise, the packet data may be discarded until enough
114 * memory is free
115 */
116#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
117 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
stephen hemminger61c5e882012-12-28 18:24:28 +0000118
119static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
120 unsigned long ip, bool *pfmemalloc)
Mel Gormanc93bdd02012-07-31 16:44:19 -0700121{
122 void *obj;
123 bool ret_pfmemalloc = false;
124
125 /*
126 * Try a regular allocation, when that fails and we're not entitled
127 * to the reserves, fail.
128 */
129 obj = kmalloc_node_track_caller(size,
130 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
131 node);
132 if (obj || !(gfp_pfmemalloc_allowed(flags)))
133 goto out;
134
135 /* Try again but now we are using pfmemalloc reserves */
136 ret_pfmemalloc = true;
137 obj = kmalloc_node_track_caller(size, flags, node);
138
139out:
140 if (pfmemalloc)
141 *pfmemalloc = ret_pfmemalloc;
142
143 return obj;
144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* Allocate a new skbuff. We do this ourselves so we can fill in a few
147 * 'private' fields and also do memory statistics to find all the
148 * [BEEP] leaks.
149 *
150 */
151
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000152struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
153{
154 struct sk_buff *skb;
155
156 /* Get the HEAD */
157 skb = kmem_cache_alloc_node(skbuff_head_cache,
158 gfp_mask & ~__GFP_DMA, node);
159 if (!skb)
160 goto out;
161
162 /*
163 * Only clear those fields we need to clear, not those that we will
164 * actually initialise below. Hence, don't put any more fields after
165 * the tail pointer in struct sk_buff!
166 */
167 memset(skb, 0, offsetof(struct sk_buff, tail));
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000168 skb->head = NULL;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000169 skb->truesize = sizeof(struct sk_buff);
170 atomic_set(&skb->users, 1);
171
Cong Wang35d04612013-05-29 15:16:05 +0800172 skb->mac_header = (typeof(skb->mac_header))~0U;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000173out:
174 return skb;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/**
David S. Millerd179cd12005-08-17 14:57:30 -0700178 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * @size: size to allocate
180 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700181 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
182 * instead of head cache and allocate a cloned (child) skb.
183 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
184 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800185 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000188 * tail room of at least size bytes. The object has a reference count
189 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 * Buffers may only be allocated from interrupts using a @gfp_mask of
192 * %GFP_ATOMIC.
193 */
Al Virodd0fc662005-10-07 07:46:04 +0100194struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700195 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Christoph Lametere18b8902006-12-06 20:33:20 -0800197 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800198 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct sk_buff *skb;
200 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700201 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Mel Gormanc93bdd02012-07-31 16:44:19 -0700203 cache = (flags & SKB_ALLOC_FCLONE)
204 ? skbuff_fclone_cache : skbuff_head_cache;
205
206 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
207 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800210 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (!skb)
212 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700213 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000215 /* We do our best to align skb_shared_info on a separate cache
216 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
217 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
218 * Both skb->head and skb_shared_info are cache line aligned.
219 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000220 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000221 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700222 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!data)
224 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000225 /* kmalloc(size) might give us more room than requested.
226 * Put skb_shared_info exactly at the end of allocated zone,
227 * to allow max possible filling before reallocation.
228 */
229 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700230 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300232 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700233 * Only clear those fields we need to clear, not those that we will
234 * actually initialise below. Hence, don't put any more fields after
235 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300236 */
237 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000238 /* Account for allocated memory : skb + skb->head */
239 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700240 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 atomic_set(&skb->users, 1);
242 skb->head = data;
243 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700244 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700245 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800246 skb->mac_header = (typeof(skb->mac_header))~0U;
247 skb->transport_header = (typeof(skb->transport_header))~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000248
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800249 /* make sure we initialize shinfo sequentially */
250 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700251 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800252 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000253 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800254
Mel Gormanc93bdd02012-07-31 16:44:19 -0700255 if (flags & SKB_ALLOC_FCLONE) {
David S. Millerd179cd12005-08-17 14:57:30 -0700256 struct sk_buff *child = skb + 1;
257 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200259 kmemcheck_annotate_bitfield(child, flags1);
260 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700261 skb->fclone = SKB_FCLONE_ORIG;
262 atomic_set(fclone_ref, 1);
263
264 child->fclone = SKB_FCLONE_UNAVAILABLE;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700265 child->pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267out:
268 return skb;
269nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800270 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 skb = NULL;
272 goto out;
273}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800274EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000277 * build_skb - build a network buffer
278 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000279 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000280 *
281 * Allocate a new &sk_buff. Caller provides space holding head and
Florian Fainellideceb4c2013-07-23 20:22:39 +0100282 * skb_shared_info. @data must have been allocated by kmalloc() only if
283 * @frag_size is 0, otherwise data should come from the page allocator.
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000284 * The return is the new skb buffer.
285 * On a failure the return is %NULL, and @data is not freed.
286 * Notes :
287 * Before IO, driver allocates only data buffer where NIC put incoming frame
288 * Driver should add room at head (NET_SKB_PAD) and
289 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
290 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
291 * before giving packet to stack.
292 * RX rings only contains data buffers, not full skbs.
293 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000294struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000295{
296 struct skb_shared_info *shinfo;
297 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000298 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000299
300 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
301 if (!skb)
302 return NULL;
303
Eric Dumazetd3836f22012-04-27 00:33:38 +0000304 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000305
306 memset(skb, 0, offsetof(struct sk_buff, tail));
307 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000308 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000309 atomic_set(&skb->users, 1);
310 skb->head = data;
311 skb->data = data;
312 skb_reset_tail_pointer(skb);
313 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800314 skb->mac_header = (typeof(skb->mac_header))~0U;
315 skb->transport_header = (typeof(skb->transport_header))~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000316
317 /* make sure we initialize shinfo sequentially */
318 shinfo = skb_shinfo(skb);
319 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
320 atomic_set(&shinfo->dataref, 1);
321 kmemcheck_annotate_variable(shinfo->destructor_arg);
322
323 return skb;
324}
325EXPORT_SYMBOL(build_skb);
326
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000327struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000328 struct page_frag frag;
329 /* we maintain a pagecount bias, so that we dont dirty cache line
330 * containing page->_count every time we allocate a fragment.
331 */
332 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000333};
334static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
335
Mel Gormanc93bdd02012-07-31 16:44:19 -0700336static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000337{
338 struct netdev_alloc_cache *nc;
339 void *data = NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000340 int order;
Eric Dumazet6f532612012-05-18 05:12:12 +0000341 unsigned long flags;
342
343 local_irq_save(flags);
344 nc = &__get_cpu_var(netdev_alloc_cache);
Eric Dumazet69b08f62012-09-26 06:46:57 +0000345 if (unlikely(!nc->frag.page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000346refill:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000347 for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) {
348 gfp_t gfp = gfp_mask;
349
350 if (order)
351 gfp |= __GFP_COMP | __GFP_NOWARN;
352 nc->frag.page = alloc_pages(gfp, order);
353 if (likely(nc->frag.page))
354 break;
355 if (--order < 0)
356 goto end;
357 }
358 nc->frag.size = PAGE_SIZE << order;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000359recycle:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000360 atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS);
361 nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS;
362 nc->frag.offset = 0;
Eric Dumazet6f532612012-05-18 05:12:12 +0000363 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000364
Eric Dumazet69b08f62012-09-26 06:46:57 +0000365 if (nc->frag.offset + fragsz > nc->frag.size) {
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000366 /* avoid unnecessary locked operations if possible */
Eric Dumazet69b08f62012-09-26 06:46:57 +0000367 if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) ||
368 atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count))
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000369 goto recycle;
370 goto refill;
Eric Dumazet6f532612012-05-18 05:12:12 +0000371 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000372
Eric Dumazet69b08f62012-09-26 06:46:57 +0000373 data = page_address(nc->frag.page) + nc->frag.offset;
374 nc->frag.offset += fragsz;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000375 nc->pagecnt_bias--;
376end:
Eric Dumazet6f532612012-05-18 05:12:12 +0000377 local_irq_restore(flags);
378 return data;
379}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700380
381/**
382 * netdev_alloc_frag - allocate a page fragment
383 * @fragsz: fragment size
384 *
385 * Allocates a frag from a page for receive buffer.
386 * Uses GFP_ATOMIC allocations.
387 */
388void *netdev_alloc_frag(unsigned int fragsz)
389{
390 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
391}
Eric Dumazet6f532612012-05-18 05:12:12 +0000392EXPORT_SYMBOL(netdev_alloc_frag);
393
394/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700395 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
396 * @dev: network device to receive on
397 * @length: length to allocate
398 * @gfp_mask: get_free_pages mask, passed to alloc_skb
399 *
400 * Allocate a new &sk_buff and assign it a usage count of one. The
401 * buffer has unspecified headroom built in. Users should allocate
402 * the headroom they think they need without accounting for the
403 * built in space. The built in space is used for optimisations.
404 *
405 * %NULL is returned if there is no free memory.
406 */
407struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
Eric Dumazet6f532612012-05-18 05:12:12 +0000408 unsigned int length, gfp_t gfp_mask)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700409{
Eric Dumazet6f532612012-05-18 05:12:12 +0000410 struct sk_buff *skb = NULL;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000411 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
412 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700413
Eric Dumazet310e1582012-07-16 13:15:52 +0200414 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700415 void *data;
416
417 if (sk_memalloc_socks())
418 gfp_mask |= __GFP_MEMALLOC;
419
420 data = __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000421
Eric Dumazet6f532612012-05-18 05:12:12 +0000422 if (likely(data)) {
423 skb = build_skb(data, fragsz);
424 if (unlikely(!skb))
425 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000426 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000427 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700428 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
429 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000430 }
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700431 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700432 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700433 skb->dev = dev;
434 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700435 return skb;
436}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800437EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Peter Zijlstra654bed12008-10-07 14:22:33 -0700439void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000440 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700441{
442 skb_fill_page_desc(skb, i, page, off, size);
443 skb->len += size;
444 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000445 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700446}
447EXPORT_SYMBOL(skb_add_rx_frag);
448
Jason Wangf8e617e2013-11-01 14:07:47 +0800449void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
450 unsigned int truesize)
451{
452 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
453
454 skb_frag_size_add(frag, size);
455 skb->len += size;
456 skb->data_len += size;
457 skb->truesize += truesize;
458}
459EXPORT_SYMBOL(skb_coalesce_rx_frag);
460
Herbert Xu27b437c2006-07-13 19:26:39 -0700461static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700463 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700464 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Herbert Xu27b437c2006-07-13 19:26:39 -0700467static inline void skb_drop_fraglist(struct sk_buff *skb)
468{
469 skb_drop_list(&skb_shinfo(skb)->frag_list);
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472static void skb_clone_fraglist(struct sk_buff *skb)
473{
474 struct sk_buff *list;
475
David S. Millerfbb398a2009-06-09 00:18:59 -0700476 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 skb_get(list);
478}
479
Eric Dumazetd3836f22012-04-27 00:33:38 +0000480static void skb_free_head(struct sk_buff *skb)
481{
482 if (skb->head_frag)
483 put_page(virt_to_head_page(skb->head));
484 else
485 kfree(skb->head);
486}
487
Adrian Bunk5bba1712006-06-29 13:02:35 -0700488static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 if (!skb->cloned ||
491 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
492 &skb_shinfo(skb)->dataref)) {
493 if (skb_shinfo(skb)->nr_frags) {
494 int i;
495 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000496 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Shirley Maa6686f22011-07-06 12:22:12 +0000499 /*
500 * If skb buf is from userspace, we need to notify the caller
501 * the lower device DMA has done;
502 */
503 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
504 struct ubuf_info *uarg;
505
506 uarg = skb_shinfo(skb)->destructor_arg;
507 if (uarg->callback)
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000508 uarg->callback(uarg, true);
Shirley Maa6686f22011-07-06 12:22:12 +0000509 }
510
David S. Miller21dc3302010-08-23 00:13:46 -0700511 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 skb_drop_fraglist(skb);
513
Eric Dumazetd3836f22012-04-27 00:33:38 +0000514 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516}
517
518/*
519 * Free an skbuff by memory without cleaning the state.
520 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800521static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
David S. Millerd179cd12005-08-17 14:57:30 -0700523 struct sk_buff *other;
524 atomic_t *fclone_ref;
525
David S. Millerd179cd12005-08-17 14:57:30 -0700526 switch (skb->fclone) {
527 case SKB_FCLONE_UNAVAILABLE:
528 kmem_cache_free(skbuff_head_cache, skb);
529 break;
530
531 case SKB_FCLONE_ORIG:
532 fclone_ref = (atomic_t *) (skb + 2);
533 if (atomic_dec_and_test(fclone_ref))
534 kmem_cache_free(skbuff_fclone_cache, skb);
535 break;
536
537 case SKB_FCLONE_CLONE:
538 fclone_ref = (atomic_t *) (skb + 1);
539 other = skb - 1;
540
541 /* The clone portion is available for
542 * fast-cloning again.
543 */
544 skb->fclone = SKB_FCLONE_UNAVAILABLE;
545
546 if (atomic_dec_and_test(fclone_ref))
547 kmem_cache_free(skbuff_fclone_cache, other);
548 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700552static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Eric Dumazetadf30902009-06-02 05:19:30 +0000554 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#ifdef CONFIG_XFRM
556 secpath_put(skb->sp);
557#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700558 if (skb->destructor) {
559 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 skb->destructor(skb);
561 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000562#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700563 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100564#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#ifdef CONFIG_BRIDGE_NETFILTER
566 nf_bridge_put(skb->nf_bridge);
567#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568/* XXX: IS this still necessary? - JHS */
569#ifdef CONFIG_NET_SCHED
570 skb->tc_index = 0;
571#ifdef CONFIG_NET_CLS_ACT
572 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#endif
574#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700575}
576
577/* Free everything but the sk_buff shell. */
578static void skb_release_all(struct sk_buff *skb)
579{
580 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000581 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000582 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800583}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Herbert Xu2d4baff2007-11-26 23:11:19 +0800585/**
586 * __kfree_skb - private function
587 * @skb: buffer
588 *
589 * Free an sk_buff. Release anything attached to the buffer.
590 * Clean the state. This is an internal helper function. Users should
591 * always call kfree_skb
592 */
593
594void __kfree_skb(struct sk_buff *skb)
595{
596 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 kfree_skbmem(skb);
598}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800599EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800602 * kfree_skb - free an sk_buff
603 * @skb: buffer to free
604 *
605 * Drop a reference to the buffer and free it if the usage count has
606 * hit zero.
607 */
608void kfree_skb(struct sk_buff *skb)
609{
610 if (unlikely(!skb))
611 return;
612 if (likely(atomic_read(&skb->users) == 1))
613 smp_rmb();
614 else if (likely(!atomic_dec_and_test(&skb->users)))
615 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000616 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800617 __kfree_skb(skb);
618}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800619EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800620
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700621void kfree_skb_list(struct sk_buff *segs)
622{
623 while (segs) {
624 struct sk_buff *next = segs->next;
625
626 kfree_skb(segs);
627 segs = next;
628 }
629}
630EXPORT_SYMBOL(kfree_skb_list);
631
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700632/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000633 * skb_tx_error - report an sk_buff xmit error
634 * @skb: buffer that triggered an error
635 *
636 * Report xmit error if a device callback is tracking this skb.
637 * skb must be freed afterwards.
638 */
639void skb_tx_error(struct sk_buff *skb)
640{
641 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
642 struct ubuf_info *uarg;
643
644 uarg = skb_shinfo(skb)->destructor_arg;
645 if (uarg->callback)
646 uarg->callback(uarg, false);
647 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
648 }
649}
650EXPORT_SYMBOL(skb_tx_error);
651
652/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000653 * consume_skb - free an skbuff
654 * @skb: buffer to free
655 *
656 * Drop a ref to the buffer and free it if the usage count has hit zero
657 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
658 * is being dropped after a failure and notes that
659 */
660void consume_skb(struct sk_buff *skb)
661{
662 if (unlikely(!skb))
663 return;
664 if (likely(atomic_read(&skb->users) == 1))
665 smp_rmb();
666 else if (likely(!atomic_dec_and_test(&skb->users)))
667 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900668 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000669 __kfree_skb(skb);
670}
671EXPORT_SYMBOL(consume_skb);
672
Herbert Xudec18812007-10-14 00:37:30 -0700673static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
674{
675 new->tstamp = old->tstamp;
676 new->dev = old->dev;
677 new->transport_header = old->transport_header;
678 new->network_header = old->network_header;
679 new->mac_header = old->mac_header;
Joe Stringer4bc41b82013-07-03 16:04:25 +0900680 new->inner_protocol = old->inner_protocol;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000681 new->inner_transport_header = old->inner_transport_header;
Pravin B Shelar92df9b22013-02-01 15:18:49 +0000682 new->inner_network_header = old->inner_network_header;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000683 new->inner_mac_header = old->inner_mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000684 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000685 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000686 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000687 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000688 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000689 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700690#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700691 new->sp = secpath_get(old->sp);
692#endif
693 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000694 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700695 new->local_df = old->local_df;
696 new->pkt_type = old->pkt_type;
697 new->ip_summed = old->ip_summed;
698 skb_copy_queue_mapping(new, old);
699 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000700#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700701 new->ipvs_property = old->ipvs_property;
702#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700703 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700704 new->protocol = old->protocol;
705 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800706 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700707 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000708#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700709 new->nf_trace = old->nf_trace;
710#endif
711#ifdef CONFIG_NET_SCHED
712 new->tc_index = old->tc_index;
713#ifdef CONFIG_NET_CLS_ACT
714 new->tc_verd = old->tc_verd;
715#endif
716#endif
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000717 new->vlan_proto = old->vlan_proto;
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700718 new->vlan_tci = old->vlan_tci;
719
Herbert Xudec18812007-10-14 00:37:30 -0700720 skb_copy_secmark(new, old);
Eliezer Tamir06021292013-06-10 11:39:50 +0300721
Cong Wange0d10952013-08-01 11:10:25 +0800722#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir06021292013-06-10 11:39:50 +0300723 new->napi_id = old->napi_id;
724#endif
Herbert Xudec18812007-10-14 00:37:30 -0700725}
726
Herbert Xu82c49a32009-05-22 22:11:37 +0000727/*
728 * You should not add any new code to this function. Add it to
729 * __copy_skb_header above instead.
730 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700731static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733#define C(x) n->x = skb->x
734
735 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700737 __copy_skb_header(n, skb);
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 C(len);
740 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700741 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700742 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800743 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 C(tail);
747 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800748 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000749 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800750 C(data);
751 C(truesize);
752 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 atomic_inc(&(skb_shinfo(skb)->dataref));
755 skb->cloned = 1;
756
757 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700758#undef C
759}
760
761/**
762 * skb_morph - morph one skb into another
763 * @dst: the skb to receive the contents
764 * @src: the skb to supply the contents
765 *
766 * This is identical to skb_clone except that the target skb is
767 * supplied by the user.
768 *
769 * The target skb is returned upon exit.
770 */
771struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
772{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800773 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700774 return __skb_clone(dst, src);
775}
776EXPORT_SYMBOL_GPL(skb_morph);
777
Ben Hutchings2c530402012-07-10 10:55:09 +0000778/**
779 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000780 * @skb: the skb to modify
781 * @gfp_mask: allocation priority
782 *
783 * This must be called on SKBTX_DEV_ZEROCOPY skb.
784 * It will copy all frags into kernel and drop the reference
785 * to userspace pages.
786 *
787 * If this function is called from an interrupt gfp_mask() must be
788 * %GFP_ATOMIC.
789 *
790 * Returns 0 on success or a negative error code on failure
791 * to allocate kernel memory to copy to.
792 */
793int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000794{
795 int i;
796 int num_frags = skb_shinfo(skb)->nr_frags;
797 struct page *page, *head = NULL;
798 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
799
800 for (i = 0; i < num_frags; i++) {
801 u8 *vaddr;
802 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
803
Krishna Kumar02756ed2012-07-17 02:05:29 +0000804 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000805 if (!page) {
806 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900807 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000808 put_page(head);
809 head = next;
810 }
811 return -ENOMEM;
812 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200813 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000814 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000815 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200816 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900817 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000818 head = page;
819 }
820
821 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000822 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000823 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000824
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000825 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000826
827 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000828 for (i = num_frags - 1; i >= 0; i--) {
829 __skb_fill_page_desc(skb, i, head, 0,
830 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900831 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000832 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000833
834 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000835 return 0;
836}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000837EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000838
Herbert Xue0053ec2007-10-14 00:37:52 -0700839/**
840 * skb_clone - duplicate an sk_buff
841 * @skb: buffer to clone
842 * @gfp_mask: allocation priority
843 *
844 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
845 * copies share the same packet data but not structure. The new
846 * buffer has a reference count of 1. If the allocation fails the
847 * function returns %NULL otherwise the new buffer is returned.
848 *
849 * If this function is called from an interrupt gfp_mask() must be
850 * %GFP_ATOMIC.
851 */
852
853struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
854{
855 struct sk_buff *n;
856
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000857 if (skb_orphan_frags(skb, gfp_mask))
858 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000859
Herbert Xue0053ec2007-10-14 00:37:52 -0700860 n = skb + 1;
861 if (skb->fclone == SKB_FCLONE_ORIG &&
862 n->fclone == SKB_FCLONE_UNAVAILABLE) {
863 atomic_t *fclone_ref = (atomic_t *) (n + 1);
864 n->fclone = SKB_FCLONE_CLONE;
865 atomic_inc(fclone_ref);
866 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700867 if (skb_pfmemalloc(skb))
868 gfp_mask |= __GFP_MEMALLOC;
869
Herbert Xue0053ec2007-10-14 00:37:52 -0700870 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
871 if (!n)
872 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200873
874 kmemcheck_annotate_bitfield(n, flags1);
875 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700876 n->fclone = SKB_FCLONE_UNAVAILABLE;
877 }
878
879 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800881EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000883static void skb_headers_offset_update(struct sk_buff *skb, int off)
884{
Eric Dumazet030737b2013-10-19 11:42:54 -0700885 /* Only adjust this if it actually is csum_start rather than csum */
886 if (skb->ip_summed == CHECKSUM_PARTIAL)
887 skb->csum_start += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000888 /* {transport,network,mac}_header and tail are relative to skb->head */
889 skb->transport_header += off;
890 skb->network_header += off;
891 if (skb_mac_header_was_set(skb))
892 skb->mac_header += off;
893 skb->inner_transport_header += off;
894 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000895 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
899{
Herbert Xudec18812007-10-14 00:37:30 -0700900 __copy_skb_header(new, old);
901
Herbert Xu79671682006-06-22 02:40:14 -0700902 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
903 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
904 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Mel Gormanc93bdd02012-07-31 16:44:19 -0700907static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
908{
909 if (skb_pfmemalloc(skb))
910 return SKB_ALLOC_RX;
911 return 0;
912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/**
915 * skb_copy - create private copy of an sk_buff
916 * @skb: buffer to copy
917 * @gfp_mask: allocation priority
918 *
919 * Make a copy of both an &sk_buff and its data. This is used when the
920 * caller wishes to modify the data and needs a private copy of the
921 * data to alter. Returns %NULL on failure or the pointer to the buffer
922 * on success. The returned buffer has a reference count of 1.
923 *
924 * As by-product this function converts non-linear &sk_buff to linear
925 * one, so that &sk_buff becomes completely private and caller is allowed
926 * to modify all the data of returned buffer. This means that this
927 * function is not recommended for use in circumstances when only
928 * header is going to be modified. Use pskb_copy() instead.
929 */
930
Al Virodd0fc662005-10-07 07:46:04 +0100931struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000933 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000934 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700935 struct sk_buff *n = __alloc_skb(size, gfp_mask,
936 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (!n)
939 return NULL;
940
941 /* Set the data pointer */
942 skb_reserve(n, headerlen);
943 /* Set the tail pointer and length */
944 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
947 BUG();
948
949 copy_skb_header(n, skb);
950 return n;
951}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800952EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000955 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000957 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * @gfp_mask: allocation priority
959 *
960 * Make a copy of both an &sk_buff and part of its data, located
961 * in header. Fragmented data remain shared. This is used when
962 * the caller wishes to modify only header of &sk_buff and needs
963 * private copy of the header to alter. Returns %NULL on failure
964 * or the pointer to the buffer on success.
965 * The returned buffer has a reference count of 1.
966 */
967
Eric Dumazet117632e2011-12-03 21:39:53 +0000968struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Eric Dumazet117632e2011-12-03 21:39:53 +0000970 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700971 struct sk_buff *n = __alloc_skb(size, gfp_mask,
972 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (!n)
975 goto out;
976
977 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000978 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /* Set the tail pointer and length */
980 skb_put(n, skb_headlen(skb));
981 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300982 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Herbert Xu25f484a2006-11-07 14:57:15 -0800984 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 n->data_len = skb->data_len;
986 n->len = skb->len;
987
988 if (skb_shinfo(skb)->nr_frags) {
989 int i;
990
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000991 if (skb_orphan_frags(skb, gfp_mask)) {
992 kfree_skb(n);
993 n = NULL;
994 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +0000995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
997 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +0000998 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000 skb_shinfo(n)->nr_frags = i;
1001 }
1002
David S. Miller21dc3302010-08-23 00:13:46 -07001003 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1005 skb_clone_fraglist(n);
1006 }
1007
1008 copy_skb_header(n, skb);
1009out:
1010 return n;
1011}
Eric Dumazet117632e2011-12-03 21:39:53 +00001012EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014/**
1015 * pskb_expand_head - reallocate header of &sk_buff
1016 * @skb: buffer to reallocate
1017 * @nhead: room to add at head
1018 * @ntail: room to add at tail
1019 * @gfp_mask: allocation priority
1020 *
Mathias Krausebc323832013-11-07 14:18:26 +01001021 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1022 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 * reference count of 1. Returns zero in the case of success or error,
1024 * if expansion failed. In the last case, &sk_buff is not changed.
1025 *
1026 * All the pointers pointing into skb header may change and must be
1027 * reloaded after call to this function.
1028 */
1029
Victor Fusco86a76ca2005-07-08 14:57:47 -07001030int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001031 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 int i;
1034 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001035 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 long off;
1037
Herbert Xu4edd87a2008-10-01 07:09:38 -07001038 BUG_ON(nhead < 0);
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (skb_shared(skb))
1041 BUG();
1042
1043 size = SKB_DATA_ALIGN(size);
1044
Mel Gormanc93bdd02012-07-31 16:44:19 -07001045 if (skb_pfmemalloc(skb))
1046 gfp_mask |= __GFP_MEMALLOC;
1047 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1048 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (!data)
1050 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001051 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001054 * optimized for the cases when header is void.
1055 */
1056 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1057
1058 memcpy((struct skb_shared_info *)(data + size),
1059 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001060 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Alexander Duyck3e245912012-05-04 14:26:51 +00001062 /*
1063 * if shinfo is shared we must drop the old head gracefully, but if it
1064 * is not we can just drop the old head and let the existing refcount
1065 * be since all we did is relocate the values
1066 */
1067 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001068 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001069 if (skb_orphan_frags(skb, gfp_mask))
1070 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001071 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001072 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Eric Dumazet1fd63042010-09-02 23:09:32 +00001074 if (skb_has_frag_list(skb))
1075 skb_clone_fraglist(skb);
1076
1077 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001078 } else {
1079 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 off = (data + nhead) - skb->head;
1082
1083 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001084 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001086#ifdef NET_SKBUFF_DATA_USES_OFFSET
1087 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001088 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001089#else
1090 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001091#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001092 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001093 skb_headers_offset_update(skb, nhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001095 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 skb->nohdr = 0;
1097 atomic_set(&skb_shinfo(skb)->dataref, 1);
1098 return 0;
1099
Shirley Maa6686f22011-07-06 12:22:12 +00001100nofrags:
1101 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102nodata:
1103 return -ENOMEM;
1104}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001105EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107/* Make private copy of skb with writable head and some headroom */
1108
1109struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1110{
1111 struct sk_buff *skb2;
1112 int delta = headroom - skb_headroom(skb);
1113
1114 if (delta <= 0)
1115 skb2 = pskb_copy(skb, GFP_ATOMIC);
1116 else {
1117 skb2 = skb_clone(skb, GFP_ATOMIC);
1118 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1119 GFP_ATOMIC)) {
1120 kfree_skb(skb2);
1121 skb2 = NULL;
1122 }
1123 }
1124 return skb2;
1125}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001126EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128/**
1129 * skb_copy_expand - copy and expand sk_buff
1130 * @skb: buffer to copy
1131 * @newheadroom: new free bytes at head
1132 * @newtailroom: new free bytes at tail
1133 * @gfp_mask: allocation priority
1134 *
1135 * Make a copy of both an &sk_buff and its data and while doing so
1136 * allocate additional space.
1137 *
1138 * This is used when the caller wishes to modify the data and needs a
1139 * private copy of the data to alter as well as more space for new fields.
1140 * Returns %NULL on failure or the pointer to the buffer
1141 * on success. The returned buffer has a reference count of 1.
1142 *
1143 * You must pass %GFP_ATOMIC as the allocation priority if this function
1144 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 */
1146struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001147 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001148 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 /*
1151 * Allocate the copy buffer
1152 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001153 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1154 gfp_mask, skb_alloc_rx_flag(skb),
1155 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001156 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 int head_copy_len, head_copy_off;
1158
1159 if (!n)
1160 return NULL;
1161
1162 skb_reserve(n, newheadroom);
1163
1164 /* Set the tail pointer and length */
1165 skb_put(n, skb->len);
1166
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001167 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 head_copy_off = 0;
1169 if (newheadroom <= head_copy_len)
1170 head_copy_len = newheadroom;
1171 else
1172 head_copy_off = newheadroom - head_copy_len;
1173
1174 /* Copy the linear header and data. */
1175 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1176 skb->len + head_copy_len))
1177 BUG();
1178
1179 copy_skb_header(n, skb);
1180
Eric Dumazet030737b2013-10-19 11:42:54 -07001181 skb_headers_offset_update(n, newheadroom - oldheadroom);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return n;
1184}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001185EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187/**
1188 * skb_pad - zero pad the tail of an skb
1189 * @skb: buffer to pad
1190 * @pad: space to pad
1191 *
1192 * Ensure that a buffer is followed by a padding area that is zero
1193 * filled. Used by network drivers which may DMA or transfer data
1194 * beyond the buffer end onto the wire.
1195 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001196 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001198
Herbert Xu5b057c62006-06-23 02:06:41 -07001199int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Herbert Xu5b057c62006-06-23 02:06:41 -07001201 int err;
1202 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001205 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001209
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001210 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001211 if (likely(skb_cloned(skb) || ntail > 0)) {
1212 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1213 if (unlikely(err))
1214 goto free_skb;
1215 }
1216
1217 /* FIXME: The use of this function with non-linear skb's really needs
1218 * to be audited.
1219 */
1220 err = skb_linearize(skb);
1221 if (unlikely(err))
1222 goto free_skb;
1223
1224 memset(skb->data + skb->len, 0, pad);
1225 return 0;
1226
1227free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001229 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001230}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001231EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001232
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001233/**
Mathias Krause0c7ddf32013-11-07 14:18:24 +01001234 * pskb_put - add data to the tail of a potentially fragmented buffer
1235 * @skb: start of the buffer to use
1236 * @tail: tail fragment of the buffer to use
1237 * @len: amount of data to add
1238 *
1239 * This function extends the used data area of the potentially
1240 * fragmented buffer. @tail must be the last fragment of @skb -- or
1241 * @skb itself. If this would exceed the total buffer size the kernel
1242 * will panic. A pointer to the first byte of the extra data is
1243 * returned.
1244 */
1245
1246unsigned char *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1247{
1248 if (tail != skb) {
1249 skb->data_len += len;
1250 skb->len += len;
1251 }
1252 return skb_put(tail, len);
1253}
1254EXPORT_SYMBOL_GPL(pskb_put);
1255
1256/**
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001257 * skb_put - add data to a buffer
1258 * @skb: buffer to use
1259 * @len: amount of data to add
1260 *
1261 * This function extends the used data area of the buffer. If this would
1262 * exceed the total buffer size the kernel will panic. A pointer to the
1263 * first byte of the extra data is returned.
1264 */
1265unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1266{
1267 unsigned char *tmp = skb_tail_pointer(skb);
1268 SKB_LINEAR_ASSERT(skb);
1269 skb->tail += len;
1270 skb->len += len;
1271 if (unlikely(skb->tail > skb->end))
1272 skb_over_panic(skb, len, __builtin_return_address(0));
1273 return tmp;
1274}
1275EXPORT_SYMBOL(skb_put);
1276
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001277/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001278 * skb_push - add data to the start of a buffer
1279 * @skb: buffer to use
1280 * @len: amount of data to add
1281 *
1282 * This function extends the used data area of the buffer at the buffer
1283 * start. If this would exceed the total buffer headroom the kernel will
1284 * panic. A pointer to the first byte of the extra data is returned.
1285 */
1286unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1287{
1288 skb->data -= len;
1289 skb->len += len;
1290 if (unlikely(skb->data<skb->head))
1291 skb_under_panic(skb, len, __builtin_return_address(0));
1292 return skb->data;
1293}
1294EXPORT_SYMBOL(skb_push);
1295
1296/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001297 * skb_pull - remove data from the start of a buffer
1298 * @skb: buffer to use
1299 * @len: amount of data to remove
1300 *
1301 * This function removes data from the start of a buffer, returning
1302 * the memory to the headroom. A pointer to the next data in the buffer
1303 * is returned. Once the data has been pulled future pushes will overwrite
1304 * the old data.
1305 */
1306unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1307{
David S. Miller47d29642010-05-02 02:21:44 -07001308 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001309}
1310EXPORT_SYMBOL(skb_pull);
1311
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001312/**
1313 * skb_trim - remove end from a buffer
1314 * @skb: buffer to alter
1315 * @len: new length
1316 *
1317 * Cut the length of a buffer down by removing data from the tail. If
1318 * the buffer is already under the length specified it is not modified.
1319 * The skb must be linear.
1320 */
1321void skb_trim(struct sk_buff *skb, unsigned int len)
1322{
1323 if (skb->len > len)
1324 __skb_trim(skb, len);
1325}
1326EXPORT_SYMBOL(skb_trim);
1327
Herbert Xu3cc0e872006-06-09 16:13:38 -07001328/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 */
1330
Herbert Xu3cc0e872006-06-09 16:13:38 -07001331int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Herbert Xu27b437c2006-07-13 19:26:39 -07001333 struct sk_buff **fragp;
1334 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 int offset = skb_headlen(skb);
1336 int nfrags = skb_shinfo(skb)->nr_frags;
1337 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001338 int err;
1339
1340 if (skb_cloned(skb) &&
1341 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1342 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001344 i = 0;
1345 if (offset >= len)
1346 goto drop_pages;
1347
1348 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001349 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001350
1351 if (end < len) {
1352 offset = end;
1353 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001355
Eric Dumazet9e903e02011-10-18 21:00:24 +00001356 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001357
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001358drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001359 skb_shinfo(skb)->nr_frags = i;
1360
1361 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001362 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001363
David S. Miller21dc3302010-08-23 00:13:46 -07001364 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001365 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001366 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
Herbert Xu27b437c2006-07-13 19:26:39 -07001369 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1370 fragp = &frag->next) {
1371 int end = offset + frag->len;
1372
1373 if (skb_shared(frag)) {
1374 struct sk_buff *nfrag;
1375
1376 nfrag = skb_clone(frag, GFP_ATOMIC);
1377 if (unlikely(!nfrag))
1378 return -ENOMEM;
1379
1380 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001381 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001382 frag = nfrag;
1383 *fragp = frag;
1384 }
1385
1386 if (end < len) {
1387 offset = end;
1388 continue;
1389 }
1390
1391 if (end > len &&
1392 unlikely((err = pskb_trim(frag, len - offset))))
1393 return err;
1394
1395 if (frag->next)
1396 skb_drop_list(&frag->next);
1397 break;
1398 }
1399
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001400done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001401 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 skb->data_len -= skb->len - len;
1403 skb->len = len;
1404 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001405 skb->len = len;
1406 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001407 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 return 0;
1411}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001412EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414/**
1415 * __pskb_pull_tail - advance tail of skb header
1416 * @skb: buffer to reallocate
1417 * @delta: number of bytes to advance tail
1418 *
1419 * The function makes a sense only on a fragmented &sk_buff,
1420 * it expands header moving its tail forward and copying necessary
1421 * data from fragmented part.
1422 *
1423 * &sk_buff MUST have reference count of 1.
1424 *
1425 * Returns %NULL (and &sk_buff does not change) if pull failed
1426 * or value of new tail of skb in the case of success.
1427 *
1428 * All the pointers pointing into skb header may change and must be
1429 * reloaded after call to this function.
1430 */
1431
1432/* Moves tail of skb head forward, copying data from fragmented part,
1433 * when it is necessary.
1434 * 1. It may fail due to malloc failure.
1435 * 2. It may change skb pointers.
1436 *
1437 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1438 */
1439unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1440{
1441 /* If skb has not enough free space at tail, get new one
1442 * plus 128 bytes for future expansions. If we have enough
1443 * room at tail, reallocate without expansion only if skb is cloned.
1444 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001445 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (eat > 0 || skb_cloned(skb)) {
1448 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1449 GFP_ATOMIC))
1450 return NULL;
1451 }
1452
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001453 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 BUG();
1455
1456 /* Optimization: no fragments, no reasons to preestimate
1457 * size of pulled pages. Superb.
1458 */
David S. Miller21dc3302010-08-23 00:13:46 -07001459 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto pull_pages;
1461
1462 /* Estimate size of pulled pages. */
1463 eat = delta;
1464 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001465 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1466
1467 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001469 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471
1472 /* If we need update frag list, we are in troubles.
1473 * Certainly, it possible to add an offset to skb data,
1474 * but taking into account that pulling is expected to
1475 * be very rare operation, it is worth to fight against
1476 * further bloating skb head and crucify ourselves here instead.
1477 * Pure masohism, indeed. 8)8)
1478 */
1479 if (eat) {
1480 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1481 struct sk_buff *clone = NULL;
1482 struct sk_buff *insp = NULL;
1483
1484 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001485 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 if (list->len <= eat) {
1488 /* Eaten as whole. */
1489 eat -= list->len;
1490 list = list->next;
1491 insp = list;
1492 } else {
1493 /* Eaten partially. */
1494
1495 if (skb_shared(list)) {
1496 /* Sucks! We need to fork list. :-( */
1497 clone = skb_clone(list, GFP_ATOMIC);
1498 if (!clone)
1499 return NULL;
1500 insp = list->next;
1501 list = clone;
1502 } else {
1503 /* This may be pulled without
1504 * problems. */
1505 insp = list;
1506 }
1507 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001508 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 return NULL;
1510 }
1511 break;
1512 }
1513 } while (eat);
1514
1515 /* Free pulled out fragments. */
1516 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1517 skb_shinfo(skb)->frag_list = list->next;
1518 kfree_skb(list);
1519 }
1520 /* And insert new clone at head. */
1521 if (clone) {
1522 clone->next = list;
1523 skb_shinfo(skb)->frag_list = clone;
1524 }
1525 }
1526 /* Success! Now we may commit changes to skb data. */
1527
1528pull_pages:
1529 eat = delta;
1530 k = 0;
1531 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001532 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1533
1534 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001535 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001536 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 } else {
1538 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1539 if (eat) {
1540 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001541 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 eat = 0;
1543 }
1544 k++;
1545 }
1546 }
1547 skb_shinfo(skb)->nr_frags = k;
1548
1549 skb->tail += delta;
1550 skb->data_len -= delta;
1551
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001552 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001554EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Eric Dumazet22019b12011-07-29 18:37:31 +00001556/**
1557 * skb_copy_bits - copy bits from skb to kernel buffer
1558 * @skb: source skb
1559 * @offset: offset in source
1560 * @to: destination buffer
1561 * @len: number of bytes to copy
1562 *
1563 * Copy the specified number of bytes from the source skb to the
1564 * destination buffer.
1565 *
1566 * CAUTION ! :
1567 * If its prototype is ever changed,
1568 * check arch/{*}/net/{*}.S files,
1569 * since it is called from BPF assembly code.
1570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1572{
David S. Miller1a028e52007-04-27 15:21:23 -07001573 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001574 struct sk_buff *frag_iter;
1575 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 if (offset > (int)skb->len - len)
1578 goto fault;
1579
1580 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001581 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (copy > len)
1583 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001584 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if ((len -= copy) == 0)
1586 return 0;
1587 offset += copy;
1588 to += copy;
1589 }
1590
1591 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001592 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001593 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001595 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001596
Eric Dumazet51c56b02012-04-05 11:35:15 +02001597 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if ((copy = end - offset) > 0) {
1599 u8 *vaddr;
1600
1601 if (copy > len)
1602 copy = len;
1603
Eric Dumazet51c56b02012-04-05 11:35:15 +02001604 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001606 vaddr + f->page_offset + offset - start,
1607 copy);
1608 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 if ((len -= copy) == 0)
1611 return 0;
1612 offset += copy;
1613 to += copy;
1614 }
David S. Miller1a028e52007-04-27 15:21:23 -07001615 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617
David S. Millerfbb398a2009-06-09 00:18:59 -07001618 skb_walk_frags(skb, frag_iter) {
1619 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
David S. Millerfbb398a2009-06-09 00:18:59 -07001621 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
David S. Millerfbb398a2009-06-09 00:18:59 -07001623 end = start + frag_iter->len;
1624 if ((copy = end - offset) > 0) {
1625 if (copy > len)
1626 copy = len;
1627 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1628 goto fault;
1629 if ((len -= copy) == 0)
1630 return 0;
1631 offset += copy;
1632 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001634 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
Shirley Maa6686f22011-07-06 12:22:12 +00001636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (!len)
1638 return 0;
1639
1640fault:
1641 return -EFAULT;
1642}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001643EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Jens Axboe9c55e012007-11-06 23:30:13 -08001645/*
1646 * Callback from splice_to_pipe(), if we need to release some pages
1647 * at the end of the spd in case we error'ed out in filling the pipe.
1648 */
1649static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1650{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001651 put_page(spd->pages[i]);
1652}
Jens Axboe9c55e012007-11-06 23:30:13 -08001653
David S. Millera108d5f2012-04-23 23:06:11 -04001654static struct page *linear_to_page(struct page *page, unsigned int *len,
1655 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001656 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001657{
Eric Dumazet5640f762012-09-23 23:04:42 +00001658 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001659
Eric Dumazet5640f762012-09-23 23:04:42 +00001660 if (!sk_page_frag_refill(sk, pfrag))
1661 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001662
Eric Dumazet5640f762012-09-23 23:04:42 +00001663 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001664
Eric Dumazet5640f762012-09-23 23:04:42 +00001665 memcpy(page_address(pfrag->page) + pfrag->offset,
1666 page_address(page) + *offset, *len);
1667 *offset = pfrag->offset;
1668 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001669
Eric Dumazet5640f762012-09-23 23:04:42 +00001670 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001671}
1672
Eric Dumazet41c73a02012-04-22 12:26:16 +00001673static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1674 struct page *page,
1675 unsigned int offset)
1676{
1677 return spd->nr_pages &&
1678 spd->pages[spd->nr_pages - 1] == page &&
1679 (spd->partial[spd->nr_pages - 1].offset +
1680 spd->partial[spd->nr_pages - 1].len == offset);
1681}
1682
Jens Axboe9c55e012007-11-06 23:30:13 -08001683/*
1684 * Fill page/offset/length into spd, if it can hold more pages.
1685 */
David S. Millera108d5f2012-04-23 23:06:11 -04001686static bool spd_fill_page(struct splice_pipe_desc *spd,
1687 struct pipe_inode_info *pipe, struct page *page,
1688 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001689 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001690 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001691{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001692 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001693 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001694
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001695 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001696 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001697 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001698 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001699 }
1700 if (spd_can_coalesce(spd, page, offset)) {
1701 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001702 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001703 }
1704 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001705 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001706 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001707 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001708 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001709
David S. Millera108d5f2012-04-23 23:06:11 -04001710 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001711}
1712
David S. Millera108d5f2012-04-23 23:06:11 -04001713static bool __splice_segment(struct page *page, unsigned int poff,
1714 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001715 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001716 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001717 struct sock *sk,
1718 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001719{
1720 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001721 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001722
1723 /* skip this segment if already processed */
1724 if (*off >= plen) {
1725 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001726 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001727 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001728
Octavian Purdila2870c432008-07-15 00:49:11 -07001729 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001730 poff += *off;
1731 plen -= *off;
1732 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001733
Eric Dumazet18aafc62013-01-11 14:46:37 +00001734 do {
1735 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001736
Eric Dumazet18aafc62013-01-11 14:46:37 +00001737 if (spd_fill_page(spd, pipe, page, &flen, poff,
1738 linear, sk))
1739 return true;
1740 poff += flen;
1741 plen -= flen;
1742 *len -= flen;
1743 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001744
David S. Millera108d5f2012-04-23 23:06:11 -04001745 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001746}
1747
1748/*
David S. Millera108d5f2012-04-23 23:06:11 -04001749 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001750 * pipe is full or if we already spliced the requested length.
1751 */
David S. Millera108d5f2012-04-23 23:06:11 -04001752static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1753 unsigned int *offset, unsigned int *len,
1754 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001755{
1756 int seg;
1757
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001758 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001759 * If skb->head_frag is set, this 'linear' part is backed by a
1760 * fragment, and if the head is not shared with any clones then
1761 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001762 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001763 if (__splice_segment(virt_to_page(skb->data),
1764 (unsigned long) skb->data & (PAGE_SIZE - 1),
1765 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001766 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001767 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001768 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001769 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001770
1771 /*
1772 * then map the fragments
1773 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001774 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1775 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1776
Ian Campbellea2ab692011-08-22 23:44:58 +00001777 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001778 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001779 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001780 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001781 }
1782
David S. Millera108d5f2012-04-23 23:06:11 -04001783 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001784}
1785
1786/*
1787 * Map data from the skb to a pipe. Should handle both the linear part,
1788 * the fragments, and the frag list. It does NOT handle frag lists within
1789 * the frag list, if such a thing exists. We'd probably need to recurse to
1790 * handle that cleanly.
1791 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001792int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001793 struct pipe_inode_info *pipe, unsigned int tlen,
1794 unsigned int flags)
1795{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001796 struct partial_page partial[MAX_SKB_FRAGS];
1797 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001798 struct splice_pipe_desc spd = {
1799 .pages = pages,
1800 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001801 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001802 .flags = flags,
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001803 .ops = &nosteal_pipe_buf_ops,
Jens Axboe9c55e012007-11-06 23:30:13 -08001804 .spd_release = sock_spd_release,
1805 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001806 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001807 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001808 int ret = 0;
1809
Jens Axboe9c55e012007-11-06 23:30:13 -08001810 /*
1811 * __skb_splice_bits() only fails if the output has no room left,
1812 * so no point in going over the frag_list for the error case.
1813 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001814 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001815 goto done;
1816 else if (!tlen)
1817 goto done;
1818
1819 /*
1820 * now see if we have a frag_list to map
1821 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001822 skb_walk_frags(skb, frag_iter) {
1823 if (!tlen)
1824 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001825 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001826 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001827 }
1828
1829done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001830 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001831 /*
1832 * Drop the socket lock, otherwise we have reverse
1833 * locking dependencies between sk_lock and i_mutex
1834 * here as compared to sendfile(). We enter here
1835 * with the socket lock held, and splice_to_pipe() will
1836 * grab the pipe inode lock. For sendfile() emulation,
1837 * we call into ->sendpage() with the i_mutex lock held
1838 * and networking will grab the socket lock.
1839 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001840 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001841 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001842 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001843 }
1844
Jens Axboe35f3d142010-05-20 10:43:18 +02001845 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001846}
1847
Herbert Xu357b40a2005-04-19 22:30:14 -07001848/**
1849 * skb_store_bits - store bits from kernel buffer to skb
1850 * @skb: destination buffer
1851 * @offset: offset in destination
1852 * @from: source buffer
1853 * @len: number of bytes to copy
1854 *
1855 * Copy the specified number of bytes from the source buffer to the
1856 * destination skb. This function handles all the messy bits of
1857 * traversing fragment lists and such.
1858 */
1859
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001860int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001861{
David S. Miller1a028e52007-04-27 15:21:23 -07001862 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001863 struct sk_buff *frag_iter;
1864 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001865
1866 if (offset > (int)skb->len - len)
1867 goto fault;
1868
David S. Miller1a028e52007-04-27 15:21:23 -07001869 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001870 if (copy > len)
1871 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001872 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001873 if ((len -= copy) == 0)
1874 return 0;
1875 offset += copy;
1876 from += copy;
1877 }
1878
1879 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1880 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001881 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001882
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001883 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001884
Eric Dumazet9e903e02011-10-18 21:00:24 +00001885 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001886 if ((copy = end - offset) > 0) {
1887 u8 *vaddr;
1888
1889 if (copy > len)
1890 copy = len;
1891
Eric Dumazet51c56b02012-04-05 11:35:15 +02001892 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001893 memcpy(vaddr + frag->page_offset + offset - start,
1894 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001895 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001896
1897 if ((len -= copy) == 0)
1898 return 0;
1899 offset += copy;
1900 from += copy;
1901 }
David S. Miller1a028e52007-04-27 15:21:23 -07001902 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001903 }
1904
David S. Millerfbb398a2009-06-09 00:18:59 -07001905 skb_walk_frags(skb, frag_iter) {
1906 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001907
David S. Millerfbb398a2009-06-09 00:18:59 -07001908 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001909
David S. Millerfbb398a2009-06-09 00:18:59 -07001910 end = start + frag_iter->len;
1911 if ((copy = end - offset) > 0) {
1912 if (copy > len)
1913 copy = len;
1914 if (skb_store_bits(frag_iter, offset - start,
1915 from, copy))
1916 goto fault;
1917 if ((len -= copy) == 0)
1918 return 0;
1919 offset += copy;
1920 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001921 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001922 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001923 }
1924 if (!len)
1925 return 0;
1926
1927fault:
1928 return -EFAULT;
1929}
Herbert Xu357b40a2005-04-19 22:30:14 -07001930EXPORT_SYMBOL(skb_store_bits);
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01001933__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
1934 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
David S. Miller1a028e52007-04-27 15:21:23 -07001936 int start = skb_headlen(skb);
1937 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001938 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int pos = 0;
1940
1941 /* Checksum header. */
1942 if (copy > 0) {
1943 if (copy > len)
1944 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01001945 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if ((len -= copy) == 0)
1947 return csum;
1948 offset += copy;
1949 pos = copy;
1950 }
1951
1952 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001953 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001954 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001956 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001957
Eric Dumazet51c56b02012-04-05 11:35:15 +02001958 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001960 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (copy > len)
1964 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001965 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01001966 csum2 = ops->update(vaddr + frag->page_offset +
1967 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001968 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01001969 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (!(len -= copy))
1971 return csum;
1972 offset += copy;
1973 pos += copy;
1974 }
David S. Miller1a028e52007-04-27 15:21:23 -07001975 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977
David S. Millerfbb398a2009-06-09 00:18:59 -07001978 skb_walk_frags(skb, frag_iter) {
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 __wsum csum2;
1986 if (copy > len)
1987 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01001988 csum2 = __skb_checksum(frag_iter, offset - start,
1989 copy, 0, ops);
1990 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07001991 if ((len -= copy) == 0)
1992 return csum;
1993 offset += copy;
1994 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001996 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001998 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 return csum;
2001}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002002EXPORT_SYMBOL(__skb_checksum);
2003
2004__wsum skb_checksum(const struct sk_buff *skb, int offset,
2005 int len, __wsum csum)
2006{
2007 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002008 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002009 .combine = csum_block_add_ext,
2010 };
2011
2012 return __skb_checksum(skb, offset, len, csum, &ops);
2013}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002014EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016/* Both of above in one bottle. */
2017
Al Viro81d77662006-11-14 21:37:33 -08002018__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2019 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
David S. Miller1a028e52007-04-27 15:21:23 -07002021 int start = skb_headlen(skb);
2022 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002023 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 int pos = 0;
2025
2026 /* Copy header. */
2027 if (copy > 0) {
2028 if (copy > len)
2029 copy = len;
2030 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2031 copy, csum);
2032 if ((len -= copy) == 0)
2033 return csum;
2034 offset += copy;
2035 to += copy;
2036 pos = copy;
2037 }
2038
2039 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002040 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002042 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002043
Eric Dumazet9e903e02011-10-18 21:00:24 +00002044 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002046 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 u8 *vaddr;
2048 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2049
2050 if (copy > len)
2051 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002052 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002054 frag->page_offset +
2055 offset - start, to,
2056 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002057 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 csum = csum_block_add(csum, csum2, pos);
2059 if (!(len -= copy))
2060 return csum;
2061 offset += copy;
2062 to += copy;
2063 pos += copy;
2064 }
David S. Miller1a028e52007-04-27 15:21:23 -07002065 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
2067
David S. Millerfbb398a2009-06-09 00:18:59 -07002068 skb_walk_frags(skb, frag_iter) {
2069 __wsum csum2;
2070 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
David S. Millerfbb398a2009-06-09 00:18:59 -07002072 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
David S. Millerfbb398a2009-06-09 00:18:59 -07002074 end = start + frag_iter->len;
2075 if ((copy = end - offset) > 0) {
2076 if (copy > len)
2077 copy = len;
2078 csum2 = skb_copy_and_csum_bits(frag_iter,
2079 offset - start,
2080 to, copy, 0);
2081 csum = csum_block_add(csum, csum2, pos);
2082 if ((len -= copy) == 0)
2083 return csum;
2084 offset += copy;
2085 to += copy;
2086 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002088 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002090 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return csum;
2092}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002093EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2096{
Al Virod3bc23e2006-11-14 21:24:49 -08002097 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 long csstart;
2099
Patrick McHardy84fa7932006-08-29 16:44:56 -07002100 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002101 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 else
2103 csstart = skb_headlen(skb);
2104
Kris Katterjohn09a62662006-01-08 22:24:28 -08002105 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002107 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 csum = 0;
2110 if (csstart != skb->len)
2111 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2112 skb->len - csstart, 0);
2113
Patrick McHardy84fa7932006-08-29 16:44:56 -07002114 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002115 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Al Virod3bc23e2006-11-14 21:24:49 -08002117 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002120EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122/**
2123 * skb_dequeue - remove from the head of the queue
2124 * @list: list to dequeue from
2125 *
2126 * Remove the head of the list. The list lock is taken so the function
2127 * may be used safely with other locking list functions. The head item is
2128 * returned or %NULL if the list is empty.
2129 */
2130
2131struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2132{
2133 unsigned long flags;
2134 struct sk_buff *result;
2135
2136 spin_lock_irqsave(&list->lock, flags);
2137 result = __skb_dequeue(list);
2138 spin_unlock_irqrestore(&list->lock, flags);
2139 return result;
2140}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002141EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143/**
2144 * skb_dequeue_tail - remove from the tail of the queue
2145 * @list: list to dequeue from
2146 *
2147 * Remove the tail of the list. The list lock is taken so the function
2148 * may be used safely with other locking list functions. The tail item is
2149 * returned or %NULL if the list is empty.
2150 */
2151struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2152{
2153 unsigned long flags;
2154 struct sk_buff *result;
2155
2156 spin_lock_irqsave(&list->lock, flags);
2157 result = __skb_dequeue_tail(list);
2158 spin_unlock_irqrestore(&list->lock, flags);
2159 return result;
2160}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002161EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163/**
2164 * skb_queue_purge - empty a list
2165 * @list: list to empty
2166 *
2167 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2168 * the list and one reference dropped. This function takes the list
2169 * lock and is atomic with respect to other list locking functions.
2170 */
2171void skb_queue_purge(struct sk_buff_head *list)
2172{
2173 struct sk_buff *skb;
2174 while ((skb = skb_dequeue(list)) != NULL)
2175 kfree_skb(skb);
2176}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002177EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179/**
2180 * skb_queue_head - queue a buffer at the list head
2181 * @list: list to use
2182 * @newsk: buffer to queue
2183 *
2184 * Queue a buffer at the start of the list. This function takes the
2185 * list lock and can be used safely with other locking &sk_buff functions
2186 * safely.
2187 *
2188 * A buffer cannot be placed on two lists at the same time.
2189 */
2190void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2191{
2192 unsigned long flags;
2193
2194 spin_lock_irqsave(&list->lock, flags);
2195 __skb_queue_head(list, newsk);
2196 spin_unlock_irqrestore(&list->lock, flags);
2197}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002198EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200/**
2201 * skb_queue_tail - queue a buffer at the list tail
2202 * @list: list to use
2203 * @newsk: buffer to queue
2204 *
2205 * Queue a buffer at the tail of the list. This function takes the
2206 * list lock and can be used safely with other locking &sk_buff functions
2207 * safely.
2208 *
2209 * A buffer cannot be placed on two lists at the same time.
2210 */
2211void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2212{
2213 unsigned long flags;
2214
2215 spin_lock_irqsave(&list->lock, flags);
2216 __skb_queue_tail(list, newsk);
2217 spin_unlock_irqrestore(&list->lock, flags);
2218}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002219EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221/**
2222 * skb_unlink - remove a buffer from a list
2223 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002224 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 *
David S. Miller8728b832005-08-09 19:25:21 -07002226 * Remove a packet from a list. The list locks are taken and this
2227 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 *
David S. Miller8728b832005-08-09 19:25:21 -07002229 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 */
David S. Miller8728b832005-08-09 19:25:21 -07002231void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
David S. Miller8728b832005-08-09 19:25:21 -07002233 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
David S. Miller8728b832005-08-09 19:25:21 -07002235 spin_lock_irqsave(&list->lock, flags);
2236 __skb_unlink(skb, list);
2237 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002239EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241/**
2242 * skb_append - append a buffer
2243 * @old: buffer to insert after
2244 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002245 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
2247 * Place a packet after a given packet in a list. The list locks are taken
2248 * and this function is atomic with respect to other list locked calls.
2249 * A buffer cannot be placed on two lists at the same time.
2250 */
David S. Miller8728b832005-08-09 19:25:21 -07002251void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 unsigned long flags;
2254
David S. Miller8728b832005-08-09 19:25:21 -07002255 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002256 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002257 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002259EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261/**
2262 * skb_insert - insert a buffer
2263 * @old: buffer to insert before
2264 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002265 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 *
David S. Miller8728b832005-08-09 19:25:21 -07002267 * Place a packet before a given packet in a list. The list locks are
2268 * taken and this function is atomic with respect to other list locked
2269 * calls.
2270 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 * A buffer cannot be placed on two lists at the same time.
2272 */
David S. Miller8728b832005-08-09 19:25:21 -07002273void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 unsigned long flags;
2276
David S. Miller8728b832005-08-09 19:25:21 -07002277 spin_lock_irqsave(&list->lock, flags);
2278 __skb_insert(newsk, old->prev, old, list);
2279 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002281EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283static inline void skb_split_inside_header(struct sk_buff *skb,
2284 struct sk_buff* skb1,
2285 const u32 len, const int pos)
2286{
2287 int i;
2288
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002289 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2290 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 /* And move data appendix as is. */
2292 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2293 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2294
2295 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2296 skb_shinfo(skb)->nr_frags = 0;
2297 skb1->data_len = skb->data_len;
2298 skb1->len += skb1->data_len;
2299 skb->data_len = 0;
2300 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002301 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
2304static inline void skb_split_no_header(struct sk_buff *skb,
2305 struct sk_buff* skb1,
2306 const u32 len, int pos)
2307{
2308 int i, k = 0;
2309 const int nfrags = skb_shinfo(skb)->nr_frags;
2310
2311 skb_shinfo(skb)->nr_frags = 0;
2312 skb1->len = skb1->data_len = skb->len - len;
2313 skb->len = len;
2314 skb->data_len = len - pos;
2315
2316 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002317 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 if (pos + size > len) {
2320 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2321
2322 if (pos < len) {
2323 /* Split frag.
2324 * We have two variants in this case:
2325 * 1. Move all the frag to the second
2326 * part, if it is possible. F.e.
2327 * this approach is mandatory for TUX,
2328 * where splitting is expensive.
2329 * 2. Split is accurately. We make this.
2330 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002331 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002333 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2334 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 skb_shinfo(skb)->nr_frags++;
2336 }
2337 k++;
2338 } else
2339 skb_shinfo(skb)->nr_frags++;
2340 pos += size;
2341 }
2342 skb_shinfo(skb1)->nr_frags = k;
2343}
2344
2345/**
2346 * skb_split - Split fragmented skb to two parts at length len.
2347 * @skb: the buffer to split
2348 * @skb1: the buffer to receive the second part
2349 * @len: new length for skb
2350 */
2351void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2352{
2353 int pos = skb_headlen(skb);
2354
Amerigo Wang68534c62013-02-19 22:51:30 +00002355 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (len < pos) /* Split line is inside header. */
2357 skb_split_inside_header(skb, skb1, len, pos);
2358 else /* Second chunk has no header, nothing to copy. */
2359 skb_split_no_header(skb, skb1, len, pos);
2360}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002361EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002363/* Shifting from/to a cloned skb is a no-go.
2364 *
2365 * Caller cannot keep skb_shinfo related pointers past calling here!
2366 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002367static int skb_prepare_for_shift(struct sk_buff *skb)
2368{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002369 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002370}
2371
2372/**
2373 * skb_shift - Shifts paged data partially from skb to another
2374 * @tgt: buffer into which tail data gets added
2375 * @skb: buffer from which the paged data comes from
2376 * @shiftlen: shift up to this many bytes
2377 *
2378 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002379 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002380 * It's up to caller to free skb if everything was shifted.
2381 *
2382 * If @tgt runs out of frags, the whole operation is aborted.
2383 *
2384 * Skb cannot include anything else but paged data while tgt is allowed
2385 * to have non-paged data as well.
2386 *
2387 * TODO: full sized shift could be optimized but that would need
2388 * specialized skb free'er to handle frags without up-to-date nr_frags.
2389 */
2390int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2391{
2392 int from, to, merge, todo;
2393 struct skb_frag_struct *fragfrom, *fragto;
2394
2395 BUG_ON(shiftlen > skb->len);
2396 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2397
2398 todo = shiftlen;
2399 from = 0;
2400 to = skb_shinfo(tgt)->nr_frags;
2401 fragfrom = &skb_shinfo(skb)->frags[from];
2402
2403 /* Actual merge is delayed until the point when we know we can
2404 * commit all, so that we don't have to undo partial changes
2405 */
2406 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002407 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2408 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002409 merge = -1;
2410 } else {
2411 merge = to - 1;
2412
Eric Dumazet9e903e02011-10-18 21:00:24 +00002413 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002414 if (todo < 0) {
2415 if (skb_prepare_for_shift(skb) ||
2416 skb_prepare_for_shift(tgt))
2417 return 0;
2418
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002419 /* All previous frag pointers might be stale! */
2420 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002421 fragto = &skb_shinfo(tgt)->frags[merge];
2422
Eric Dumazet9e903e02011-10-18 21:00:24 +00002423 skb_frag_size_add(fragto, shiftlen);
2424 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002425 fragfrom->page_offset += shiftlen;
2426
2427 goto onlymerged;
2428 }
2429
2430 from++;
2431 }
2432
2433 /* Skip full, not-fitting skb to avoid expensive operations */
2434 if ((shiftlen == skb->len) &&
2435 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2436 return 0;
2437
2438 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2439 return 0;
2440
2441 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2442 if (to == MAX_SKB_FRAGS)
2443 return 0;
2444
2445 fragfrom = &skb_shinfo(skb)->frags[from];
2446 fragto = &skb_shinfo(tgt)->frags[to];
2447
Eric Dumazet9e903e02011-10-18 21:00:24 +00002448 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002449 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002450 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002451 from++;
2452 to++;
2453
2454 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002455 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002456 fragto->page = fragfrom->page;
2457 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002458 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002459
2460 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002461 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002462 todo = 0;
2463
2464 to++;
2465 break;
2466 }
2467 }
2468
2469 /* Ready to "commit" this state change to tgt */
2470 skb_shinfo(tgt)->nr_frags = to;
2471
2472 if (merge >= 0) {
2473 fragfrom = &skb_shinfo(skb)->frags[0];
2474 fragto = &skb_shinfo(tgt)->frags[merge];
2475
Eric Dumazet9e903e02011-10-18 21:00:24 +00002476 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002477 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002478 }
2479
2480 /* Reposition in the original skb */
2481 to = 0;
2482 while (from < skb_shinfo(skb)->nr_frags)
2483 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2484 skb_shinfo(skb)->nr_frags = to;
2485
2486 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2487
2488onlymerged:
2489 /* Most likely the tgt won't ever need its checksum anymore, skb on
2490 * the other hand might need it if it needs to be resent
2491 */
2492 tgt->ip_summed = CHECKSUM_PARTIAL;
2493 skb->ip_summed = CHECKSUM_PARTIAL;
2494
2495 /* Yak, is it really working this way? Some helper please? */
2496 skb->len -= shiftlen;
2497 skb->data_len -= shiftlen;
2498 skb->truesize -= shiftlen;
2499 tgt->len += shiftlen;
2500 tgt->data_len += shiftlen;
2501 tgt->truesize += shiftlen;
2502
2503 return shiftlen;
2504}
2505
Thomas Graf677e90e2005-06-23 20:59:51 -07002506/**
2507 * skb_prepare_seq_read - Prepare a sequential read of skb data
2508 * @skb: the buffer to read
2509 * @from: lower offset of data to be read
2510 * @to: upper offset of data to be read
2511 * @st: state variable
2512 *
2513 * Initializes the specified state variable. Must be called before
2514 * invoking skb_seq_read() for the first time.
2515 */
2516void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2517 unsigned int to, struct skb_seq_state *st)
2518{
2519 st->lower_offset = from;
2520 st->upper_offset = to;
2521 st->root_skb = st->cur_skb = skb;
2522 st->frag_idx = st->stepped_offset = 0;
2523 st->frag_data = NULL;
2524}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002525EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002526
2527/**
2528 * skb_seq_read - Sequentially read skb data
2529 * @consumed: number of bytes consumed by the caller so far
2530 * @data: destination pointer for data to be returned
2531 * @st: state variable
2532 *
Mathias Krausebc323832013-11-07 14:18:26 +01002533 * Reads a block of skb data at @consumed relative to the
Thomas Graf677e90e2005-06-23 20:59:51 -07002534 * lower offset specified to skb_prepare_seq_read(). Assigns
Mathias Krausebc323832013-11-07 14:18:26 +01002535 * the head of the data block to @data and returns the length
Thomas Graf677e90e2005-06-23 20:59:51 -07002536 * of the block or 0 if the end of the skb data or the upper
2537 * offset has been reached.
2538 *
2539 * The caller is not required to consume all of the data
Mathias Krausebc323832013-11-07 14:18:26 +01002540 * returned, i.e. @consumed is typically set to the number
Thomas Graf677e90e2005-06-23 20:59:51 -07002541 * of bytes already consumed and the next call to
2542 * skb_seq_read() will return the remaining part of the block.
2543 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002544 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002545 * this limitation is the cost for zerocopy seqeuental
2546 * reads of potentially non linear data.
2547 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002548 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002549 * at the moment, state->root_skb could be replaced with
2550 * a stack for this purpose.
2551 */
2552unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2553 struct skb_seq_state *st)
2554{
2555 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2556 skb_frag_t *frag;
2557
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002558 if (unlikely(abs_offset >= st->upper_offset)) {
2559 if (st->frag_data) {
2560 kunmap_atomic(st->frag_data);
2561 st->frag_data = NULL;
2562 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002563 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002564 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002565
2566next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002567 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002568
Thomas Chenault995b3372009-05-18 21:43:27 -07002569 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002570 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002571 return block_limit - abs_offset;
2572 }
2573
2574 if (st->frag_idx == 0 && !st->frag_data)
2575 st->stepped_offset += skb_headlen(st->cur_skb);
2576
2577 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2578 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002579 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002580
2581 if (abs_offset < block_limit) {
2582 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002583 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002584
2585 *data = (u8 *) st->frag_data + frag->page_offset +
2586 (abs_offset - st->stepped_offset);
2587
2588 return block_limit - abs_offset;
2589 }
2590
2591 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002592 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002593 st->frag_data = NULL;
2594 }
2595
2596 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002597 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002598 }
2599
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002600 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002601 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002602 st->frag_data = NULL;
2603 }
2604
David S. Miller21dc3302010-08-23 00:13:46 -07002605 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002606 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002607 st->frag_idx = 0;
2608 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002609 } else if (st->cur_skb->next) {
2610 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002611 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002612 goto next_skb;
2613 }
2614
2615 return 0;
2616}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002617EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002618
2619/**
2620 * skb_abort_seq_read - Abort a sequential read of skb data
2621 * @st: state variable
2622 *
2623 * Must be called if skb_seq_read() was not called until it
2624 * returned 0.
2625 */
2626void skb_abort_seq_read(struct skb_seq_state *st)
2627{
2628 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002629 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002630}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002631EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002632
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002633#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2634
2635static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2636 struct ts_config *conf,
2637 struct ts_state *state)
2638{
2639 return skb_seq_read(offset, text, TS_SKB_CB(state));
2640}
2641
2642static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2643{
2644 skb_abort_seq_read(TS_SKB_CB(state));
2645}
2646
2647/**
2648 * skb_find_text - Find a text pattern in skb data
2649 * @skb: the buffer to look in
2650 * @from: search offset
2651 * @to: search limit
2652 * @config: textsearch configuration
2653 * @state: uninitialized textsearch state variable
2654 *
2655 * Finds a pattern in the skb data according to the specified
2656 * textsearch configuration. Use textsearch_next() to retrieve
2657 * subsequent occurrences of the pattern. Returns the offset
2658 * to the first occurrence or UINT_MAX if no match was found.
2659 */
2660unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2661 unsigned int to, struct ts_config *config,
2662 struct ts_state *state)
2663{
Phil Oesterf72b9482006-06-26 00:00:57 -07002664 unsigned int ret;
2665
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002666 config->get_next_block = skb_ts_get_next_block;
2667 config->finish = skb_ts_finish;
2668
2669 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2670
Phil Oesterf72b9482006-06-26 00:00:57 -07002671 ret = textsearch_find(config, state);
2672 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002673}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002674EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002675
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002676/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002677 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002678 * @sk: sock structure
2679 * @skb: skb structure to be appened with user data.
2680 * @getfrag: call back function to be used for getting the user data
2681 * @from: pointer to user message iov
2682 * @length: length of the iov message
2683 *
2684 * Description: This procedure append the user data in the fragment part
2685 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2686 */
2687int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002688 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002689 int len, int odd, struct sk_buff *skb),
2690 void *from, int length)
2691{
Eric Dumazetb2111722012-12-28 06:06:37 +00002692 int frg_cnt = skb_shinfo(skb)->nr_frags;
2693 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002694 int offset = 0;
2695 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002696 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002697
2698 do {
2699 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002700 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002701 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002702
Eric Dumazetb2111722012-12-28 06:06:37 +00002703 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002704 return -ENOMEM;
2705
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002706 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002707 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002708
Eric Dumazetb2111722012-12-28 06:06:37 +00002709 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2710 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002711 if (ret < 0)
2712 return -EFAULT;
2713
2714 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002715 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2716 copy);
2717 frg_cnt++;
2718 pfrag->offset += copy;
2719 get_page(pfrag->page);
2720
2721 skb->truesize += copy;
2722 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002723 skb->len += copy;
2724 skb->data_len += copy;
2725 offset += copy;
2726 length -= copy;
2727
2728 } while (length > 0);
2729
2730 return 0;
2731}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002732EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002733
Herbert Xucbb042f2006-03-20 22:43:56 -08002734/**
2735 * skb_pull_rcsum - pull skb and update receive checksum
2736 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002737 * @len: length of data pulled
2738 *
2739 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002740 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002741 * receive path processing instead of skb_pull unless you know
2742 * that the checksum difference is zero (e.g., a valid IP header)
2743 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002744 */
2745unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2746{
2747 BUG_ON(len > skb->len);
2748 skb->len -= len;
2749 BUG_ON(skb->len < skb->data_len);
2750 skb_postpull_rcsum(skb, skb->data, len);
2751 return skb->data += len;
2752}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002753EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2754
Herbert Xuf4c50d92006-06-22 03:02:40 -07002755/**
2756 * skb_segment - Perform protocol segmentation on skb.
2757 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002758 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002759 *
2760 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002761 * a pointer to the first in a list of new skbs for the segments.
2762 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002763 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002764struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002765{
2766 struct sk_buff *segs = NULL;
2767 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002768 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xu9d8506c2013-11-21 11:10:04 -08002769 skb_frag_t *skb_frag = skb_shinfo(skb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002770 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002771 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002772 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002773 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002774 unsigned int headroom;
2775 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002776 __be16 proto;
2777 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002778 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002779 int nfrags = skb_shinfo(skb)->nr_frags;
2780 int err = -ENOMEM;
2781 int i = 0;
2782 int pos;
2783
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002784 proto = skb_network_protocol(skb);
2785 if (unlikely(!proto))
2786 return ERR_PTR(-EINVAL);
2787
2788 csum = !!can_checksum_protocol(features, proto);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002789 __skb_push(skb, doffset);
2790 headroom = skb_headroom(skb);
2791 pos = skb_headlen(skb);
2792
2793 do {
2794 struct sk_buff *nskb;
2795 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002796 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002797 int size;
2798
2799 len = skb->len - offset;
2800 if (len > mss)
2801 len = mss;
2802
2803 hsize = skb_headlen(skb) - offset;
2804 if (hsize < 0)
2805 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002806 if (hsize > len || !sg)
2807 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002808
Herbert Xu9d8506c2013-11-21 11:10:04 -08002809 if (!hsize && i >= nfrags && skb_headlen(fskb) &&
2810 (skb_headlen(fskb) == len || sg)) {
2811 BUG_ON(skb_headlen(fskb) > len);
Herbert Xu89319d382008-12-15 23:26:06 -08002812
Herbert Xu9d8506c2013-11-21 11:10:04 -08002813 i = 0;
2814 nfrags = skb_shinfo(fskb)->nr_frags;
2815 skb_frag = skb_shinfo(fskb)->frags;
2816 pos += skb_headlen(fskb);
2817
2818 while (pos < offset + len) {
2819 BUG_ON(i >= nfrags);
2820
2821 size = skb_frag_size(skb_frag);
2822 if (pos + size > offset + len)
2823 break;
2824
2825 i++;
2826 pos += size;
2827 skb_frag++;
2828 }
2829
Herbert Xu89319d382008-12-15 23:26:06 -08002830 nskb = skb_clone(fskb, GFP_ATOMIC);
2831 fskb = fskb->next;
2832
2833 if (unlikely(!nskb))
2834 goto err;
2835
Herbert Xu9d8506c2013-11-21 11:10:04 -08002836 if (unlikely(pskb_trim(nskb, len))) {
2837 kfree_skb(nskb);
2838 goto err;
2839 }
2840
Alexander Duyckec47ea82012-05-04 14:26:56 +00002841 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002842 if (skb_cow_head(nskb, doffset + headroom)) {
2843 kfree_skb(nskb);
2844 goto err;
2845 }
2846
Alexander Duyckec47ea82012-05-04 14:26:56 +00002847 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002848 skb_release_head_state(nskb);
2849 __skb_push(nskb, doffset);
2850 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002851 nskb = __alloc_skb(hsize + doffset + headroom,
2852 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2853 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002854
2855 if (unlikely(!nskb))
2856 goto err;
2857
2858 skb_reserve(nskb, headroom);
2859 __skb_put(nskb, doffset);
2860 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002861
2862 if (segs)
2863 tail->next = nskb;
2864 else
2865 segs = nskb;
2866 tail = nskb;
2867
Herbert Xu6f85a122008-08-15 14:55:02 -07002868 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002869 nskb->mac_len = skb->mac_len;
2870
Eric Dumazet030737b2013-10-19 11:42:54 -07002871 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Pravin B Shelar68c33162013-02-14 14:02:41 +00002872
2873 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2874 nskb->data - tnl_hlen,
2875 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002876
Herbert Xu9d8506c2013-11-21 11:10:04 -08002877 if (nskb->len == len + doffset)
Simon Horman1cdbcb72013-05-19 15:46:49 +00002878 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08002879
Herbert Xuf4c50d92006-06-22 03:02:40 -07002880 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002881 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002882 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2883 skb_put(nskb, len),
2884 len, 0);
2885 continue;
2886 }
2887
2888 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002889
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002890 skb_copy_from_linear_data_offset(skb, offset,
2891 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002892
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002893 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002894
Herbert Xu9d8506c2013-11-21 11:10:04 -08002895 while (pos < offset + len) {
2896 if (i >= nfrags) {
2897 BUG_ON(skb_headlen(fskb));
2898
2899 i = 0;
2900 nfrags = skb_shinfo(fskb)->nr_frags;
2901 skb_frag = skb_shinfo(fskb)->frags;
2902
2903 BUG_ON(!nfrags);
2904
2905 fskb = fskb->next;
2906 }
2907
2908 if (unlikely(skb_shinfo(nskb)->nr_frags >=
2909 MAX_SKB_FRAGS)) {
2910 net_warn_ratelimited(
2911 "skb_segment: too many frags: %u %u\n",
2912 pos, mss);
2913 goto err;
2914 }
2915
2916 *frag = *skb_frag;
Ian Campbellea2ab692011-08-22 23:44:58 +00002917 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002918 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002919
2920 if (pos < offset) {
2921 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002922 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002923 }
2924
Herbert Xu89319d382008-12-15 23:26:06 -08002925 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002926
2927 if (pos + size <= offset + len) {
2928 i++;
Herbert Xu9d8506c2013-11-21 11:10:04 -08002929 skb_frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002930 pos += size;
2931 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002932 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002933 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002934 }
2935
2936 frag++;
2937 }
2938
Herbert Xu89319d382008-12-15 23:26:06 -08002939skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002940 nskb->data_len = len - hsize;
2941 nskb->len += nskb->data_len;
2942 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002943
Simon Horman1cdbcb72013-05-19 15:46:49 +00002944perform_csum_check:
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002945 if (!csum) {
2946 nskb->csum = skb_checksum(nskb, doffset,
2947 nskb->len - doffset, 0);
2948 nskb->ip_summed = CHECKSUM_NONE;
2949 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002950 } while ((offset += len) < skb->len);
2951
2952 return segs;
2953
2954err:
2955 while ((skb = segs)) {
2956 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002957 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002958 }
2959 return ERR_PTR(err);
2960}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002961EXPORT_SYMBOL_GPL(skb_segment);
2962
Herbert Xu71d93b32008-12-15 23:42:33 -08002963int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2964{
Eric Dumazet8a291112013-10-08 09:02:23 -07002965 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002966 unsigned int offset = skb_gro_offset(skb);
2967 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07002968 struct sk_buff *nskb, *lp, *p = *head;
2969 unsigned int len = skb_gro_len(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002970 unsigned int delta_truesize;
Eric Dumazet8a291112013-10-08 09:02:23 -07002971 unsigned int headroom;
Herbert Xu71d93b32008-12-15 23:42:33 -08002972
Eric Dumazet8a291112013-10-08 09:02:23 -07002973 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08002974 return -E2BIG;
2975
Eric Dumazet8a291112013-10-08 09:02:23 -07002976 lp = NAPI_GRO_CB(p)->last ?: p;
2977 pinfo = skb_shinfo(lp);
2978
2979 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002980 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002981 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002982 int i = skbinfo->nr_frags;
2983 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002984
Herbert Xu66e92fc2009-05-26 18:50:32 +00002985 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07002986 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00002987
Eric Dumazet8a291112013-10-08 09:02:23 -07002988 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002989 pinfo->nr_frags = nr_frags;
2990 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002991
Herbert Xu9aaa1562009-05-26 18:50:33 +00002992 frag = pinfo->frags + nr_frags;
2993 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002994 do {
2995 *--frag = *--frag2;
2996 } while (--i);
2997
2998 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002999 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00003000
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003001 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00003002 delta_truesize = skb->truesize -
3003 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003004
Herbert Xuf5572062009-01-14 20:40:03 -08003005 skb->truesize -= skb->data_len;
3006 skb->len -= skb->data_len;
3007 skb->data_len = 0;
3008
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003009 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08003010 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003011 } else if (skb->head_frag) {
3012 int nr_frags = pinfo->nr_frags;
3013 skb_frag_t *frag = pinfo->frags + nr_frags;
3014 struct page *page = virt_to_head_page(skb->head);
3015 unsigned int first_size = headlen - offset;
3016 unsigned int first_offset;
3017
3018 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003019 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003020
3021 first_offset = skb->data -
3022 (unsigned char *)page_address(page) +
3023 offset;
3024
3025 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3026
3027 frag->page.p = page;
3028 frag->page_offset = first_offset;
3029 skb_frag_size_set(frag, first_size);
3030
3031 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3032 /* We dont need to clear skbinfo->nr_frags here */
3033
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003034 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003035 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3036 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003037 }
3038 if (pinfo->frag_list)
3039 goto merge;
3040 if (skb_gro_len(p) != pinfo->gso_size)
Herbert Xu69c0cab2009-11-17 05:18:18 -08003041 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08003042
3043 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00003044 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08003045 if (unlikely(!nskb))
3046 return -ENOMEM;
3047
3048 __copy_skb_header(nskb, p);
3049 nskb->mac_len = p->mac_len;
3050
3051 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00003052 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003053
Herbert Xu86911732009-01-29 14:19:50 +00003054 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003055 skb_set_network_header(nskb, skb_network_offset(p));
3056 skb_set_transport_header(nskb, skb_transport_offset(p));
3057
Herbert Xu86911732009-01-29 14:19:50 +00003058 __skb_pull(p, skb_gro_offset(p));
3059 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3060 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003061
Herbert Xu71d93b32008-12-15 23:42:33 -08003062 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003063 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003064 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003065 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003066 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003067
3068 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003069 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003070 nskb->len += p->len;
3071
3072 *head = nskb;
3073 nskb->next = p->next;
3074 p->next = NULL;
3075
3076 p = nskb;
3077
3078merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003079 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003080 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003081 unsigned int eat = offset - headlen;
3082
3083 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003084 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003085 skb->data_len -= eat;
3086 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003087 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003088 }
3089
Herbert Xu67147ba2009-05-26 18:50:22 +00003090 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003091
Eric Dumazet8a291112013-10-08 09:02:23 -07003092 if (!NAPI_GRO_CB(p)->last)
3093 skb_shinfo(p)->frag_list = skb;
3094 else
3095 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003096 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003097 skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003098 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003099
Herbert Xu5d38a072009-01-04 16:13:40 -08003100done:
3101 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003102 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003103 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003104 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003105 if (lp != p) {
3106 lp->data_len += len;
3107 lp->truesize += delta_truesize;
3108 lp->len += len;
3109 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003110 NAPI_GRO_CB(skb)->same_flow = 1;
3111 return 0;
3112}
3113EXPORT_SYMBOL_GPL(skb_gro_receive);
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115void __init skb_init(void)
3116{
3117 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3118 sizeof(struct sk_buff),
3119 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003120 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003121 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003122 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3123 (2*sizeof(struct sk_buff)) +
3124 sizeof(atomic_t),
3125 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003126 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003127 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128}
3129
David Howells716ea3a2007-04-02 20:19:53 -07003130/**
3131 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3132 * @skb: Socket buffer containing the buffers to be mapped
3133 * @sg: The scatter-gather list to map into
3134 * @offset: The offset into the buffer's contents to start mapping
3135 * @len: Length of buffer space to be mapped
3136 *
3137 * Fill the specified scatter-gather list with mappings/pointers into a
3138 * region of the buffer space attached to a socket buffer.
3139 */
David S. Miller51c739d2007-10-30 21:29:29 -07003140static int
3141__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003142{
David S. Miller1a028e52007-04-27 15:21:23 -07003143 int start = skb_headlen(skb);
3144 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003145 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003146 int elt = 0;
3147
3148 if (copy > 0) {
3149 if (copy > len)
3150 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003151 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003152 elt++;
3153 if ((len -= copy) == 0)
3154 return elt;
3155 offset += copy;
3156 }
3157
3158 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003159 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003160
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003161 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003162
Eric Dumazet9e903e02011-10-18 21:00:24 +00003163 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003164 if ((copy = end - offset) > 0) {
3165 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3166
3167 if (copy > len)
3168 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003169 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003170 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003171 elt++;
3172 if (!(len -= copy))
3173 return elt;
3174 offset += copy;
3175 }
David S. Miller1a028e52007-04-27 15:21:23 -07003176 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003177 }
3178
David S. Millerfbb398a2009-06-09 00:18:59 -07003179 skb_walk_frags(skb, frag_iter) {
3180 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003181
David S. Millerfbb398a2009-06-09 00:18:59 -07003182 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003183
David S. Millerfbb398a2009-06-09 00:18:59 -07003184 end = start + frag_iter->len;
3185 if ((copy = end - offset) > 0) {
3186 if (copy > len)
3187 copy = len;
3188 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3189 copy);
3190 if ((len -= copy) == 0)
3191 return elt;
3192 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003193 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003194 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003195 }
3196 BUG_ON(len);
3197 return elt;
3198}
3199
David S. Miller51c739d2007-10-30 21:29:29 -07003200int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3201{
3202 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3203
Jens Axboec46f2332007-10-31 12:06:37 +01003204 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003205
3206 return nsg;
3207}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003208EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003209
David Howells716ea3a2007-04-02 20:19:53 -07003210/**
3211 * skb_cow_data - Check that a socket buffer's data buffers are writable
3212 * @skb: The socket buffer to check.
3213 * @tailbits: Amount of trailing space to be added
3214 * @trailer: Returned pointer to the skb where the @tailbits space begins
3215 *
3216 * Make sure that the data buffers attached to a socket buffer are
3217 * writable. If they are not, private copies are made of the data buffers
3218 * and the socket buffer is set to use these instead.
3219 *
3220 * If @tailbits is given, make sure that there is space to write @tailbits
3221 * bytes of data beyond current end of socket buffer. @trailer will be
3222 * set to point to the skb in which this space begins.
3223 *
3224 * The number of scatterlist elements required to completely map the
3225 * COW'd and extended socket buffer will be returned.
3226 */
3227int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3228{
3229 int copyflag;
3230 int elt;
3231 struct sk_buff *skb1, **skb_p;
3232
3233 /* If skb is cloned or its head is paged, reallocate
3234 * head pulling out all the pages (pages are considered not writable
3235 * at the moment even if they are anonymous).
3236 */
3237 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3238 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3239 return -ENOMEM;
3240
3241 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003242 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003243 /* A little of trouble, not enough of space for trailer.
3244 * This should not happen, when stack is tuned to generate
3245 * good frames. OK, on miss we reallocate and reserve even more
3246 * space, 128 bytes is fair. */
3247
3248 if (skb_tailroom(skb) < tailbits &&
3249 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3250 return -ENOMEM;
3251
3252 /* Voila! */
3253 *trailer = skb;
3254 return 1;
3255 }
3256
3257 /* Misery. We are in troubles, going to mincer fragments... */
3258
3259 elt = 1;
3260 skb_p = &skb_shinfo(skb)->frag_list;
3261 copyflag = 0;
3262
3263 while ((skb1 = *skb_p) != NULL) {
3264 int ntail = 0;
3265
3266 /* The fragment is partially pulled by someone,
3267 * this can happen on input. Copy it and everything
3268 * after it. */
3269
3270 if (skb_shared(skb1))
3271 copyflag = 1;
3272
3273 /* If the skb is the last, worry about trailer. */
3274
3275 if (skb1->next == NULL && tailbits) {
3276 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003277 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003278 skb_tailroom(skb1) < tailbits)
3279 ntail = tailbits + 128;
3280 }
3281
3282 if (copyflag ||
3283 skb_cloned(skb1) ||
3284 ntail ||
3285 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003286 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003287 struct sk_buff *skb2;
3288
3289 /* Fuck, we are miserable poor guys... */
3290 if (ntail == 0)
3291 skb2 = skb_copy(skb1, GFP_ATOMIC);
3292 else
3293 skb2 = skb_copy_expand(skb1,
3294 skb_headroom(skb1),
3295 ntail,
3296 GFP_ATOMIC);
3297 if (unlikely(skb2 == NULL))
3298 return -ENOMEM;
3299
3300 if (skb1->sk)
3301 skb_set_owner_w(skb2, skb1->sk);
3302
3303 /* Looking around. Are we still alive?
3304 * OK, link new skb, drop old one */
3305
3306 skb2->next = skb1->next;
3307 *skb_p = skb2;
3308 kfree_skb(skb1);
3309 skb1 = skb2;
3310 }
3311 elt++;
3312 *trailer = skb1;
3313 skb_p = &skb1->next;
3314 }
3315
3316 return elt;
3317}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003318EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003319
Eric Dumazetb1faf562010-05-31 23:44:05 -07003320static void sock_rmem_free(struct sk_buff *skb)
3321{
3322 struct sock *sk = skb->sk;
3323
3324 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3325}
3326
3327/*
3328 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3329 */
3330int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3331{
Eric Dumazet110c4332012-04-06 10:49:10 +02003332 int len = skb->len;
3333
Eric Dumazetb1faf562010-05-31 23:44:05 -07003334 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003335 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003336 return -ENOMEM;
3337
3338 skb_orphan(skb);
3339 skb->sk = sk;
3340 skb->destructor = sock_rmem_free;
3341 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3342
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003343 /* before exiting rcu section, make sure dst is refcounted */
3344 skb_dst_force(skb);
3345
Eric Dumazetb1faf562010-05-31 23:44:05 -07003346 skb_queue_tail(&sk->sk_error_queue, skb);
3347 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003348 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003349 return 0;
3350}
3351EXPORT_SYMBOL(sock_queue_err_skb);
3352
Patrick Ohlyac45f602009-02-12 05:03:37 +00003353void skb_tstamp_tx(struct sk_buff *orig_skb,
3354 struct skb_shared_hwtstamps *hwtstamps)
3355{
3356 struct sock *sk = orig_skb->sk;
3357 struct sock_exterr_skb *serr;
3358 struct sk_buff *skb;
3359 int err;
3360
3361 if (!sk)
3362 return;
3363
Patrick Ohlyac45f602009-02-12 05:03:37 +00003364 if (hwtstamps) {
Willem de Bruijn2e313962013-04-23 00:39:28 +00003365 *skb_hwtstamps(orig_skb) =
Patrick Ohlyac45f602009-02-12 05:03:37 +00003366 *hwtstamps;
3367 } else {
3368 /*
3369 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003370 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003371 * store software time stamp
3372 */
Willem de Bruijn2e313962013-04-23 00:39:28 +00003373 orig_skb->tstamp = ktime_get_real();
Patrick Ohlyac45f602009-02-12 05:03:37 +00003374 }
3375
Willem de Bruijn2e313962013-04-23 00:39:28 +00003376 skb = skb_clone(orig_skb, GFP_ATOMIC);
3377 if (!skb)
3378 return;
3379
Patrick Ohlyac45f602009-02-12 05:03:37 +00003380 serr = SKB_EXT_ERR(skb);
3381 memset(serr, 0, sizeof(*serr));
3382 serr->ee.ee_errno = ENOMSG;
3383 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003384
Patrick Ohlyac45f602009-02-12 05:03:37 +00003385 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003386
Patrick Ohlyac45f602009-02-12 05:03:37 +00003387 if (err)
3388 kfree_skb(skb);
3389}
3390EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3391
Johannes Berg6e3e9392011-11-09 10:15:42 +01003392void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3393{
3394 struct sock *sk = skb->sk;
3395 struct sock_exterr_skb *serr;
3396 int err;
3397
3398 skb->wifi_acked_valid = 1;
3399 skb->wifi_acked = acked;
3400
3401 serr = SKB_EXT_ERR(skb);
3402 memset(serr, 0, sizeof(*serr));
3403 serr->ee.ee_errno = ENOMSG;
3404 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3405
3406 err = sock_queue_err_skb(sk, skb);
3407 if (err)
3408 kfree_skb(skb);
3409}
3410EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3411
Patrick Ohlyac45f602009-02-12 05:03:37 +00003412
Rusty Russellf35d9d82008-02-04 23:49:54 -05003413/**
3414 * skb_partial_csum_set - set up and verify partial csum values for packet
3415 * @skb: the skb to set
3416 * @start: the number of bytes after skb->data to start checksumming.
3417 * @off: the offset from start to place the checksum.
3418 *
3419 * For untrusted partially-checksummed packets, we need to make sure the values
3420 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3421 *
3422 * This function checks and sets those values and skb->ip_summed: if this
3423 * returns false you should drop the packet.
3424 */
3425bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3426{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003427 if (unlikely(start > skb_headlen(skb)) ||
3428 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003429 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3430 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003431 return false;
3432 }
3433 skb->ip_summed = CHECKSUM_PARTIAL;
3434 skb->csum_start = skb_headroom(skb) + start;
3435 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003436 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003437 return true;
3438}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003439EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003440
Ben Hutchings4497b072008-06-19 16:22:28 -07003441void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3442{
Joe Perchese87cc472012-05-13 21:56:26 +00003443 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3444 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003445}
Ben Hutchings4497b072008-06-19 16:22:28 -07003446EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003447
3448void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3449{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003450 if (head_stolen) {
3451 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003452 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003453 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003454 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003455 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003456}
3457EXPORT_SYMBOL(kfree_skb_partial);
3458
3459/**
3460 * skb_try_coalesce - try to merge skb to prior one
3461 * @to: prior buffer
3462 * @from: buffer to add
3463 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003464 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003465 */
3466bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3467 bool *fragstolen, int *delta_truesize)
3468{
3469 int i, delta, len = from->len;
3470
3471 *fragstolen = false;
3472
3473 if (skb_cloned(to))
3474 return false;
3475
3476 if (len <= skb_tailroom(to)) {
3477 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3478 *delta_truesize = 0;
3479 return true;
3480 }
3481
3482 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3483 return false;
3484
3485 if (skb_headlen(from) != 0) {
3486 struct page *page;
3487 unsigned int offset;
3488
3489 if (skb_shinfo(to)->nr_frags +
3490 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3491 return false;
3492
3493 if (skb_head_is_locked(from))
3494 return false;
3495
3496 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3497
3498 page = virt_to_head_page(from->head);
3499 offset = from->data - (unsigned char *)page_address(page);
3500
3501 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3502 page, offset, skb_headlen(from));
3503 *fragstolen = true;
3504 } else {
3505 if (skb_shinfo(to)->nr_frags +
3506 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3507 return false;
3508
Weiping Panf4b549a2012-09-28 20:15:30 +00003509 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003510 }
3511
3512 WARN_ON_ONCE(delta < len);
3513
3514 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3515 skb_shinfo(from)->frags,
3516 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3517 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3518
3519 if (!skb_cloned(from))
3520 skb_shinfo(from)->nr_frags = 0;
3521
Li RongQing8ea853f2012-09-18 16:53:21 +00003522 /* if the skb is not cloned this does nothing
3523 * since we set nr_frags to 0.
3524 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003525 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3526 skb_frag_ref(from, i);
3527
3528 to->truesize += delta;
3529 to->len += len;
3530 to->data_len += len;
3531
3532 *delta_truesize = delta;
3533 return true;
3534}
3535EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003536
3537/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003538 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003539 *
3540 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003541 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003542 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003543 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
3544 * into/from a tunnel. Some information have to be cleared during these
3545 * operations.
3546 * skb_scrub_packet can also be used to clean a skb before injecting it in
3547 * another namespace (@xnet == true). We have to clear all information in the
3548 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003549 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003550void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003551{
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003552 if (xnet)
3553 skb_orphan(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003554 skb->tstamp.tv64 = 0;
3555 skb->pkt_type = PACKET_HOST;
3556 skb->skb_iif = 0;
Hannes Frederic Sowa239c78d2013-12-05 23:29:19 +01003557 skb->local_df = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003558 skb_dst_drop(skb);
3559 skb->mark = 0;
3560 secpath_reset(skb);
3561 nf_reset(skb);
3562 nf_reset_trace(skb);
3563}
3564EXPORT_SYMBOL_GPL(skb_scrub_packet);