blob: ae13ef6b3ea7f40b6843fa2d5b33fc06de0cb0b5 [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>
Florian Westphalde960aa2014-01-26 10:58:16 +010050#include <linux/tcp.h>
51#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/netdevice.h>
53#ifdef CONFIG_NET_CLS_ACT
54#include <net/pkt_sched.h>
55#endif
56#include <linux/string.h>
57#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080058#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/cache.h>
60#include <linux/rtnetlink.h>
61#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070062#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000063#include <linux/errqueue.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070064#include <linux/prefetch.h>
Vlad Yasevich0d5501c2014-08-08 14:42:13 -040065#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include <net/protocol.h>
68#include <net/dst.h>
69#include <net/sock.h>
70#include <net/checksum.h>
Paul Durranted1f50c2014-01-09 10:02:46 +000071#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <net/xfrm.h>
73
74#include <asm/uaccess.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040075#include <trace/events/skb.h>
Eric Dumazet51c56b02012-04-05 11:35:15 +020076#include <linux/highmem.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040077
Eric Dumazetd7e88832012-04-30 08:10:34 +000078struct kmem_cache *skbuff_head_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080079static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/**
Jean Sacrenf05de732013-02-11 13:30:38 +000082 * skb_panic - private function for out-of-line support
83 * @skb: buffer
84 * @sz: size
85 * @addr: address
James Hogan99d58512013-02-13 11:20:27 +000086 * @msg: skb_over_panic or skb_under_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
Jean Sacrenf05de732013-02-11 13:30:38 +000088 * Out-of-line support for skb_put() and skb_push().
89 * Called via the wrapper skb_over_panic() or skb_under_panic().
90 * Keep out of line to prevent kernel bloat.
91 * __builtin_return_address is not used because it is not always reliable.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
Jean Sacrenf05de732013-02-11 13:30:38 +000093static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
James Hogan99d58512013-02-13 11:20:27 +000094 const char msg[])
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Joe Perchese005d192012-05-16 19:58:40 +000096 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 +000097 msg, addr, skb->len, sz, skb->head, skb->data,
Joe Perchese005d192012-05-16 19:58:40 +000098 (unsigned long)skb->tail, (unsigned long)skb->end,
99 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 BUG();
101}
102
Jean Sacrenf05de732013-02-11 13:30:38 +0000103static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Jean Sacrenf05de732013-02-11 13:30:38 +0000105 skb_panic(skb, sz, addr, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Jean Sacrenf05de732013-02-11 13:30:38 +0000108static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
109{
110 skb_panic(skb, sz, addr, __func__);
111}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700112
113/*
114 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
115 * the caller if emergency pfmemalloc reserves are being used. If it is and
116 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
117 * may be used. Otherwise, the packet data may be discarded until enough
118 * memory is free
119 */
120#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
121 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
stephen hemminger61c5e882012-12-28 18:24:28 +0000122
123static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
124 unsigned long ip, bool *pfmemalloc)
Mel Gormanc93bdd02012-07-31 16:44:19 -0700125{
126 void *obj;
127 bool ret_pfmemalloc = false;
128
129 /*
130 * Try a regular allocation, when that fails and we're not entitled
131 * to the reserves, fail.
132 */
133 obj = kmalloc_node_track_caller(size,
134 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
135 node);
136 if (obj || !(gfp_pfmemalloc_allowed(flags)))
137 goto out;
138
139 /* Try again but now we are using pfmemalloc reserves */
140 ret_pfmemalloc = true;
141 obj = kmalloc_node_track_caller(size, flags, node);
142
143out:
144 if (pfmemalloc)
145 *pfmemalloc = ret_pfmemalloc;
146
147 return obj;
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* Allocate a new skbuff. We do this ourselves so we can fill in a few
151 * 'private' fields and also do memory statistics to find all the
152 * [BEEP] leaks.
153 *
154 */
155
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000156struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
157{
158 struct sk_buff *skb;
159
160 /* Get the HEAD */
161 skb = kmem_cache_alloc_node(skbuff_head_cache,
162 gfp_mask & ~__GFP_DMA, node);
163 if (!skb)
164 goto out;
165
166 /*
167 * Only clear those fields we need to clear, not those that we will
168 * actually initialise below. Hence, don't put any more fields after
169 * the tail pointer in struct sk_buff!
170 */
171 memset(skb, 0, offsetof(struct sk_buff, tail));
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000172 skb->head = NULL;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000173 skb->truesize = sizeof(struct sk_buff);
174 atomic_set(&skb->users, 1);
175
Cong Wang35d04612013-05-29 15:16:05 +0800176 skb->mac_header = (typeof(skb->mac_header))~0U;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000177out:
178 return skb;
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/**
David S. Millerd179cd12005-08-17 14:57:30 -0700182 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * @size: size to allocate
184 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700185 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
186 * instead of head cache and allocate a cloned (child) skb.
187 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
188 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800189 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000192 * tail room of at least size bytes. The object has a reference count
193 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
195 * Buffers may only be allocated from interrupts using a @gfp_mask of
196 * %GFP_ATOMIC.
197 */
Al Virodd0fc662005-10-07 07:46:04 +0100198struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700199 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Christoph Lametere18b8902006-12-06 20:33:20 -0800201 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800202 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct sk_buff *skb;
204 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700205 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Mel Gormanc93bdd02012-07-31 16:44:19 -0700207 cache = (flags & SKB_ALLOC_FCLONE)
208 ? skbuff_fclone_cache : skbuff_head_cache;
209
210 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
211 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800214 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (!skb)
216 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700217 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000219 /* We do our best to align skb_shared_info on a separate cache
220 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
221 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
222 * Both skb->head and skb_shared_info are cache line aligned.
223 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000224 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000225 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700226 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!data)
228 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000229 /* kmalloc(size) might give us more room than requested.
230 * Put skb_shared_info exactly at the end of allocated zone,
231 * to allow max possible filling before reallocation.
232 */
233 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700234 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300236 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700237 * Only clear those fields we need to clear, not those that we will
238 * actually initialise below. Hence, don't put any more fields after
239 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300240 */
241 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000242 /* Account for allocated memory : skb + skb->head */
243 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700244 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 atomic_set(&skb->users, 1);
246 skb->head = data;
247 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700248 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700249 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800250 skb->mac_header = (typeof(skb->mac_header))~0U;
251 skb->transport_header = (typeof(skb->transport_header))~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000252
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800253 /* make sure we initialize shinfo sequentially */
254 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700255 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800256 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000257 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800258
Mel Gormanc93bdd02012-07-31 16:44:19 -0700259 if (flags & SKB_ALLOC_FCLONE) {
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700260 struct sk_buff_fclones *fclones;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700262 fclones = container_of(skb, struct sk_buff_fclones, skb1);
263
264 kmemcheck_annotate_bitfield(&fclones->skb2, flags1);
David S. Millerd179cd12005-08-17 14:57:30 -0700265 skb->fclone = SKB_FCLONE_ORIG;
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700266 atomic_set(&fclones->fclone_ref, 1);
David S. Millerd179cd12005-08-17 14:57:30 -0700267
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800268 fclones->skb2.fclone = SKB_FCLONE_CLONE;
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700269 fclones->skb2.pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271out:
272 return skb;
273nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800274 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 skb = NULL;
276 goto out;
277}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800278EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000281 * build_skb - build a network buffer
282 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000283 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000284 *
285 * Allocate a new &sk_buff. Caller provides space holding head and
Florian Fainellideceb4c2013-07-23 20:22:39 +0100286 * skb_shared_info. @data must have been allocated by kmalloc() only if
287 * @frag_size is 0, otherwise data should come from the page allocator.
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000288 * The return is the new skb buffer.
289 * On a failure the return is %NULL, and @data is not freed.
290 * Notes :
291 * Before IO, driver allocates only data buffer where NIC put incoming frame
292 * Driver should add room at head (NET_SKB_PAD) and
293 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
294 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
295 * before giving packet to stack.
296 * RX rings only contains data buffers, not full skbs.
297 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000298struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000299{
300 struct skb_shared_info *shinfo;
301 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000302 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000303
304 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
305 if (!skb)
306 return NULL;
307
Eric Dumazetd3836f22012-04-27 00:33:38 +0000308 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000309
310 memset(skb, 0, offsetof(struct sk_buff, tail));
311 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000312 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000313 atomic_set(&skb->users, 1);
314 skb->head = data;
315 skb->data = data;
316 skb_reset_tail_pointer(skb);
317 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800318 skb->mac_header = (typeof(skb->mac_header))~0U;
319 skb->transport_header = (typeof(skb->transport_header))~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000320
321 /* make sure we initialize shinfo sequentially */
322 shinfo = skb_shinfo(skb);
323 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
324 atomic_set(&shinfo->dataref, 1);
325 kmemcheck_annotate_variable(shinfo->destructor_arg);
326
327 return skb;
328}
329EXPORT_SYMBOL(build_skb);
330
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000331struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000332 struct page_frag frag;
333 /* we maintain a pagecount bias, so that we dont dirty cache line
334 * containing page->_count every time we allocate a fragment.
335 */
336 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000337};
338static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
Alexander Duyckffde7322014-12-09 19:40:42 -0800339static DEFINE_PER_CPU(struct netdev_alloc_cache, napi_alloc_cache);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000340
Alexander Duyckffde7322014-12-09 19:40:42 -0800341static struct page *__page_frag_refill(struct netdev_alloc_cache *nc,
342 gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000343{
Alexander Duyckffde7322014-12-09 19:40:42 -0800344 const unsigned int order = NETDEV_FRAG_PAGE_MAX_ORDER;
345 struct page *page = NULL;
346 gfp_t gfp = gfp_mask;
Eric Dumazet6f532612012-05-18 05:12:12 +0000347
Alexander Duyckffde7322014-12-09 19:40:42 -0800348 if (order) {
349 gfp_mask |= __GFP_COMP | __GFP_NOWARN | __GFP_NORETRY;
350 page = alloc_pages_node(NUMA_NO_NODE, gfp_mask, order);
351 nc->frag.size = PAGE_SIZE << (page ? order : 0);
352 }
353
354 if (unlikely(!page))
355 page = alloc_pages_node(NUMA_NO_NODE, gfp, 0);
356
357 nc->frag.page = page;
358
359 return page;
360}
361
362static void *__alloc_page_frag(struct netdev_alloc_cache __percpu *cache,
363 unsigned int fragsz, gfp_t gfp_mask)
364{
365 struct netdev_alloc_cache *nc = this_cpu_ptr(cache);
366 struct page *page = nc->frag.page;
367 unsigned int size;
368 int offset;
369
370 if (unlikely(!page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000371refill:
Alexander Duyckffde7322014-12-09 19:40:42 -0800372 page = __page_frag_refill(nc, gfp_mask);
373 if (!page)
374 return NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000375
Alexander Duyckffde7322014-12-09 19:40:42 -0800376 /* if size can vary use frag.size else just use PAGE_SIZE */
377 size = NETDEV_FRAG_PAGE_MAX_ORDER ? nc->frag.size : PAGE_SIZE;
378
Eric Dumazet4c450582014-10-10 04:48:18 -0700379 /* Even if we own the page, we do not use atomic_set().
380 * This would break get_page_unless_zero() users.
381 */
Alexander Duyckffde7322014-12-09 19:40:42 -0800382 atomic_add(size - 1, &page->_count);
383
384 /* reset page count bias and offset to start of new frag */
385 nc->pagecnt_bias = size;
386 nc->frag.offset = size;
Eric Dumazet6f532612012-05-18 05:12:12 +0000387 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000388
Alexander Duyckffde7322014-12-09 19:40:42 -0800389 offset = nc->frag.offset - fragsz;
390 if (unlikely(offset < 0)) {
391 if (!atomic_sub_and_test(nc->pagecnt_bias, &page->_count))
392 goto refill;
393
394 /* if size can vary use frag.size else just use PAGE_SIZE */
395 size = NETDEV_FRAG_PAGE_MAX_ORDER ? nc->frag.size : PAGE_SIZE;
396
397 /* OK, page count is 0, we can safely set it */
398 atomic_set(&page->_count, size);
399
400 /* reset page count bias and offset to start of new frag */
401 nc->pagecnt_bias = size;
402 offset = size - fragsz;
Eric Dumazet6f532612012-05-18 05:12:12 +0000403 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000404
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000405 nc->pagecnt_bias--;
Alexander Duyckffde7322014-12-09 19:40:42 -0800406 nc->frag.offset = offset;
407
408 return page_address(page) + offset;
409}
410
411static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
412{
413 unsigned long flags;
414 void *data;
415
416 local_irq_save(flags);
417 data = __alloc_page_frag(&netdev_alloc_cache, fragsz, gfp_mask);
Eric Dumazet6f532612012-05-18 05:12:12 +0000418 local_irq_restore(flags);
419 return data;
420}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700421
422/**
423 * netdev_alloc_frag - allocate a page fragment
424 * @fragsz: fragment size
425 *
426 * Allocates a frag from a page for receive buffer.
427 * Uses GFP_ATOMIC allocations.
428 */
429void *netdev_alloc_frag(unsigned int fragsz)
430{
431 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
432}
Eric Dumazet6f532612012-05-18 05:12:12 +0000433EXPORT_SYMBOL(netdev_alloc_frag);
434
Alexander Duyckffde7322014-12-09 19:40:42 -0800435static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
436{
437 return __alloc_page_frag(&napi_alloc_cache, fragsz, gfp_mask);
438}
439
440void *napi_alloc_frag(unsigned int fragsz)
441{
442 return __napi_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
443}
444EXPORT_SYMBOL(napi_alloc_frag);
445
Eric Dumazet6f532612012-05-18 05:12:12 +0000446/**
Alexander Duyckfd11a832014-12-09 19:40:49 -0800447 * __alloc_rx_skb - allocate an skbuff for rx
Christoph Hellwig8af27452006-07-31 22:35:23 -0700448 * @length: length to allocate
449 * @gfp_mask: get_free_pages mask, passed to alloc_skb
Alexander Duyckfd11a832014-12-09 19:40:49 -0800450 * @flags: If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
451 * allocations in case we have to fallback to __alloc_skb()
452 * If SKB_ALLOC_NAPI is set, page fragment will be allocated
453 * from napi_cache instead of netdev_cache.
Christoph Hellwig8af27452006-07-31 22:35:23 -0700454 *
455 * Allocate a new &sk_buff and assign it a usage count of one. The
456 * buffer has unspecified headroom built in. Users should allocate
457 * the headroom they think they need without accounting for the
458 * built in space. The built in space is used for optimisations.
459 *
460 * %NULL is returned if there is no free memory.
461 */
Alexander Duyckfd11a832014-12-09 19:40:49 -0800462static struct sk_buff *__alloc_rx_skb(unsigned int length, gfp_t gfp_mask,
463 int flags)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700464{
Eric Dumazet6f532612012-05-18 05:12:12 +0000465 struct sk_buff *skb = NULL;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800466 unsigned int fragsz = SKB_DATA_ALIGN(length) +
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000467 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700468
Eric Dumazet310e1582012-07-16 13:15:52 +0200469 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700470 void *data;
471
472 if (sk_memalloc_socks())
473 gfp_mask |= __GFP_MEMALLOC;
474
Alexander Duyckfd11a832014-12-09 19:40:49 -0800475 data = (flags & SKB_ALLOC_NAPI) ?
476 __napi_alloc_frag(fragsz, gfp_mask) :
477 __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000478
Eric Dumazet6f532612012-05-18 05:12:12 +0000479 if (likely(data)) {
480 skb = build_skb(data, fragsz);
481 if (unlikely(!skb))
482 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000483 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000484 } else {
Alexander Duyckfd11a832014-12-09 19:40:49 -0800485 skb = __alloc_skb(length, gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700486 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000487 }
Alexander Duyckfd11a832014-12-09 19:40:49 -0800488 return skb;
489}
490
491/**
492 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
493 * @dev: network device to receive on
494 * @length: length to allocate
495 * @gfp_mask: get_free_pages mask, passed to alloc_skb
496 *
497 * Allocate a new &sk_buff and assign it a usage count of one. The
498 * buffer has NET_SKB_PAD headroom built in. Users should allocate
499 * the headroom they think they need without accounting for the
500 * built in space. The built in space is used for optimisations.
501 *
502 * %NULL is returned if there is no free memory.
503 */
504struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
505 unsigned int length, gfp_t gfp_mask)
506{
507 struct sk_buff *skb;
508
509 length += NET_SKB_PAD;
510 skb = __alloc_rx_skb(length, gfp_mask, 0);
511
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700512 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700513 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700514 skb->dev = dev;
515 }
Alexander Duyckfd11a832014-12-09 19:40:49 -0800516
Christoph Hellwig8af27452006-07-31 22:35:23 -0700517 return skb;
518}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800519EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Alexander Duyckfd11a832014-12-09 19:40:49 -0800521/**
522 * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
523 * @napi: napi instance this buffer was allocated for
524 * @length: length to allocate
525 * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
526 *
527 * Allocate a new sk_buff for use in NAPI receive. This buffer will
528 * attempt to allocate the head from a special reserved region used
529 * only for NAPI Rx allocation. By doing this we can save several
530 * CPU cycles by avoiding having to disable and re-enable IRQs.
531 *
532 * %NULL is returned if there is no free memory.
533 */
534struct sk_buff *__napi_alloc_skb(struct napi_struct *napi,
535 unsigned int length, gfp_t gfp_mask)
536{
537 struct sk_buff *skb;
538
539 length += NET_SKB_PAD + NET_IP_ALIGN;
540 skb = __alloc_rx_skb(length, gfp_mask, SKB_ALLOC_NAPI);
541
542 if (likely(skb)) {
543 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
544 skb->dev = napi->dev;
545 }
546
547 return skb;
548}
549EXPORT_SYMBOL(__napi_alloc_skb);
550
Peter Zijlstra654bed12008-10-07 14:22:33 -0700551void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000552 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700553{
554 skb_fill_page_desc(skb, i, page, off, size);
555 skb->len += size;
556 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000557 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700558}
559EXPORT_SYMBOL(skb_add_rx_frag);
560
Jason Wangf8e617e2013-11-01 14:07:47 +0800561void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
562 unsigned int truesize)
563{
564 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
565
566 skb_frag_size_add(frag, size);
567 skb->len += size;
568 skb->data_len += size;
569 skb->truesize += truesize;
570}
571EXPORT_SYMBOL(skb_coalesce_rx_frag);
572
Herbert Xu27b437c2006-07-13 19:26:39 -0700573static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700575 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700576 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Herbert Xu27b437c2006-07-13 19:26:39 -0700579static inline void skb_drop_fraglist(struct sk_buff *skb)
580{
581 skb_drop_list(&skb_shinfo(skb)->frag_list);
582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static void skb_clone_fraglist(struct sk_buff *skb)
585{
586 struct sk_buff *list;
587
David S. Millerfbb398a2009-06-09 00:18:59 -0700588 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 skb_get(list);
590}
591
Eric Dumazetd3836f22012-04-27 00:33:38 +0000592static void skb_free_head(struct sk_buff *skb)
593{
594 if (skb->head_frag)
595 put_page(virt_to_head_page(skb->head));
596 else
597 kfree(skb->head);
598}
599
Adrian Bunk5bba1712006-06-29 13:02:35 -0700600static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Eric Dumazetff04a772014-09-23 18:39:30 -0700602 struct skb_shared_info *shinfo = skb_shinfo(skb);
603 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Eric Dumazetff04a772014-09-23 18:39:30 -0700605 if (skb->cloned &&
606 atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
607 &shinfo->dataref))
608 return;
Shirley Maa6686f22011-07-06 12:22:12 +0000609
Eric Dumazetff04a772014-09-23 18:39:30 -0700610 for (i = 0; i < shinfo->nr_frags; i++)
611 __skb_frag_unref(&shinfo->frags[i]);
Shirley Maa6686f22011-07-06 12:22:12 +0000612
Eric Dumazetff04a772014-09-23 18:39:30 -0700613 /*
614 * If skb buf is from userspace, we need to notify the caller
615 * the lower device DMA has done;
616 */
617 if (shinfo->tx_flags & SKBTX_DEV_ZEROCOPY) {
618 struct ubuf_info *uarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Eric Dumazetff04a772014-09-23 18:39:30 -0700620 uarg = shinfo->destructor_arg;
621 if (uarg->callback)
622 uarg->callback(uarg, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Eric Dumazetff04a772014-09-23 18:39:30 -0700624
625 if (shinfo->frag_list)
626 kfree_skb_list(shinfo->frag_list);
627
628 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
632 * Free an skbuff by memory without cleaning the state.
633 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800634static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700636 struct sk_buff_fclones *fclones;
David S. Millerd179cd12005-08-17 14:57:30 -0700637
David S. Millerd179cd12005-08-17 14:57:30 -0700638 switch (skb->fclone) {
639 case SKB_FCLONE_UNAVAILABLE:
640 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800641 return;
David S. Millerd179cd12005-08-17 14:57:30 -0700642
643 case SKB_FCLONE_ORIG:
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700644 fclones = container_of(skb, struct sk_buff_fclones, skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800645
646 /* We usually free the clone (TX completion) before original skb
647 * This test would have no chance to be true for the clone,
648 * while here, branch prediction will be good.
649 */
650 if (atomic_read(&fclones->fclone_ref) == 1)
651 goto fastpath;
David S. Millerd179cd12005-08-17 14:57:30 -0700652 break;
653
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800654 default: /* SKB_FCLONE_CLONE */
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700655 fclones = container_of(skb, struct sk_buff_fclones, skb2);
David S. Millerd179cd12005-08-17 14:57:30 -0700656 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700657 }
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800658 if (!atomic_dec_and_test(&fclones->fclone_ref))
659 return;
660fastpath:
661 kmem_cache_free(skbuff_fclone_cache, fclones);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700664static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Eric Dumazetadf30902009-06-02 05:19:30 +0000666 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#ifdef CONFIG_XFRM
668 secpath_put(skb->sp);
669#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700670 if (skb->destructor) {
671 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 skb->destructor(skb);
673 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000674#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700675 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100676#endif
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200677#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 nf_bridge_put(skb->nf_bridge);
679#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/* XXX: IS this still necessary? - JHS */
681#ifdef CONFIG_NET_SCHED
682 skb->tc_index = 0;
683#ifdef CONFIG_NET_CLS_ACT
684 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#endif
686#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700687}
688
689/* Free everything but the sk_buff shell. */
690static void skb_release_all(struct sk_buff *skb)
691{
692 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000693 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000694 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800695}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Herbert Xu2d4baff2007-11-26 23:11:19 +0800697/**
698 * __kfree_skb - private function
699 * @skb: buffer
700 *
701 * Free an sk_buff. Release anything attached to the buffer.
702 * Clean the state. This is an internal helper function. Users should
703 * always call kfree_skb
704 */
705
706void __kfree_skb(struct sk_buff *skb)
707{
708 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 kfree_skbmem(skb);
710}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800711EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800714 * kfree_skb - free an sk_buff
715 * @skb: buffer to free
716 *
717 * Drop a reference to the buffer and free it if the usage count has
718 * hit zero.
719 */
720void kfree_skb(struct sk_buff *skb)
721{
722 if (unlikely(!skb))
723 return;
724 if (likely(atomic_read(&skb->users) == 1))
725 smp_rmb();
726 else if (likely(!atomic_dec_and_test(&skb->users)))
727 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000728 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800729 __kfree_skb(skb);
730}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800731EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800732
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700733void kfree_skb_list(struct sk_buff *segs)
734{
735 while (segs) {
736 struct sk_buff *next = segs->next;
737
738 kfree_skb(segs);
739 segs = next;
740 }
741}
742EXPORT_SYMBOL(kfree_skb_list);
743
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700744/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000745 * skb_tx_error - report an sk_buff xmit error
746 * @skb: buffer that triggered an error
747 *
748 * Report xmit error if a device callback is tracking this skb.
749 * skb must be freed afterwards.
750 */
751void skb_tx_error(struct sk_buff *skb)
752{
753 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
754 struct ubuf_info *uarg;
755
756 uarg = skb_shinfo(skb)->destructor_arg;
757 if (uarg->callback)
758 uarg->callback(uarg, false);
759 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
760 }
761}
762EXPORT_SYMBOL(skb_tx_error);
763
764/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000765 * consume_skb - free an skbuff
766 * @skb: buffer to free
767 *
768 * Drop a ref to the buffer and free it if the usage count has hit zero
769 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
770 * is being dropped after a failure and notes that
771 */
772void consume_skb(struct sk_buff *skb)
773{
774 if (unlikely(!skb))
775 return;
776 if (likely(atomic_read(&skb->users) == 1))
777 smp_rmb();
778 else if (likely(!atomic_dec_and_test(&skb->users)))
779 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900780 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000781 __kfree_skb(skb);
782}
783EXPORT_SYMBOL(consume_skb);
784
Eric Dumazetb1937222014-09-28 22:18:47 -0700785/* Make sure a field is enclosed inside headers_start/headers_end section */
786#define CHECK_SKB_FIELD(field) \
787 BUILD_BUG_ON(offsetof(struct sk_buff, field) < \
788 offsetof(struct sk_buff, headers_start)); \
789 BUILD_BUG_ON(offsetof(struct sk_buff, field) > \
790 offsetof(struct sk_buff, headers_end)); \
791
Herbert Xudec18812007-10-14 00:37:30 -0700792static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
793{
794 new->tstamp = old->tstamp;
Eric Dumazetb1937222014-09-28 22:18:47 -0700795 /* We do not copy old->sk */
Herbert Xudec18812007-10-14 00:37:30 -0700796 new->dev = old->dev;
Eric Dumazetb1937222014-09-28 22:18:47 -0700797 memcpy(new->cb, old->cb, sizeof(old->cb));
Eric Dumazet7fee2262010-05-11 23:19:48 +0000798 skb_dst_copy(new, old);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700799#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700800 new->sp = secpath_get(old->sp);
801#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700802 __nf_copy(new, old, false);
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700803
Eric Dumazetb1937222014-09-28 22:18:47 -0700804 /* Note : this field could be in headers_start/headers_end section
805 * It is not yet because we do not want to have a 16 bit hole
806 */
807 new->queue_mapping = old->queue_mapping;
Eliezer Tamir06021292013-06-10 11:39:50 +0300808
Eric Dumazetb1937222014-09-28 22:18:47 -0700809 memcpy(&new->headers_start, &old->headers_start,
810 offsetof(struct sk_buff, headers_end) -
811 offsetof(struct sk_buff, headers_start));
812 CHECK_SKB_FIELD(protocol);
813 CHECK_SKB_FIELD(csum);
814 CHECK_SKB_FIELD(hash);
815 CHECK_SKB_FIELD(priority);
816 CHECK_SKB_FIELD(skb_iif);
817 CHECK_SKB_FIELD(vlan_proto);
818 CHECK_SKB_FIELD(vlan_tci);
819 CHECK_SKB_FIELD(transport_header);
820 CHECK_SKB_FIELD(network_header);
821 CHECK_SKB_FIELD(mac_header);
822 CHECK_SKB_FIELD(inner_protocol);
823 CHECK_SKB_FIELD(inner_transport_header);
824 CHECK_SKB_FIELD(inner_network_header);
825 CHECK_SKB_FIELD(inner_mac_header);
826 CHECK_SKB_FIELD(mark);
827#ifdef CONFIG_NETWORK_SECMARK
828 CHECK_SKB_FIELD(secmark);
829#endif
Cong Wange0d10952013-08-01 11:10:25 +0800830#ifdef CONFIG_NET_RX_BUSY_POLL
Eric Dumazetb1937222014-09-28 22:18:47 -0700831 CHECK_SKB_FIELD(napi_id);
Eliezer Tamir06021292013-06-10 11:39:50 +0300832#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700833#ifdef CONFIG_NET_SCHED
834 CHECK_SKB_FIELD(tc_index);
835#ifdef CONFIG_NET_CLS_ACT
836 CHECK_SKB_FIELD(tc_verd);
837#endif
838#endif
839
Herbert Xudec18812007-10-14 00:37:30 -0700840}
841
Herbert Xu82c49a32009-05-22 22:11:37 +0000842/*
843 * You should not add any new code to this function. Add it to
844 * __copy_skb_header above instead.
845 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700846static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848#define C(x) n->x = skb->x
849
850 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700852 __copy_skb_header(n, skb);
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 C(len);
855 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700856 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700857 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800858 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 C(tail);
862 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800863 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000864 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800865 C(data);
866 C(truesize);
867 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 atomic_inc(&(skb_shinfo(skb)->dataref));
870 skb->cloned = 1;
871
872 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700873#undef C
874}
875
876/**
877 * skb_morph - morph one skb into another
878 * @dst: the skb to receive the contents
879 * @src: the skb to supply the contents
880 *
881 * This is identical to skb_clone except that the target skb is
882 * supplied by the user.
883 *
884 * The target skb is returned upon exit.
885 */
886struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
887{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800888 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700889 return __skb_clone(dst, src);
890}
891EXPORT_SYMBOL_GPL(skb_morph);
892
Ben Hutchings2c530402012-07-10 10:55:09 +0000893/**
894 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000895 * @skb: the skb to modify
896 * @gfp_mask: allocation priority
897 *
898 * This must be called on SKBTX_DEV_ZEROCOPY skb.
899 * It will copy all frags into kernel and drop the reference
900 * to userspace pages.
901 *
902 * If this function is called from an interrupt gfp_mask() must be
903 * %GFP_ATOMIC.
904 *
905 * Returns 0 on success or a negative error code on failure
906 * to allocate kernel memory to copy to.
907 */
908int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000909{
910 int i;
911 int num_frags = skb_shinfo(skb)->nr_frags;
912 struct page *page, *head = NULL;
913 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
914
915 for (i = 0; i < num_frags; i++) {
916 u8 *vaddr;
917 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
918
Krishna Kumar02756ed2012-07-17 02:05:29 +0000919 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000920 if (!page) {
921 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900922 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000923 put_page(head);
924 head = next;
925 }
926 return -ENOMEM;
927 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200928 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000929 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000930 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200931 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900932 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000933 head = page;
934 }
935
936 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000937 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000938 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000939
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000940 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000941
942 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000943 for (i = num_frags - 1; i >= 0; i--) {
944 __skb_fill_page_desc(skb, i, head, 0,
945 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900946 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000947 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000948
949 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000950 return 0;
951}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000952EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000953
Herbert Xue0053ec2007-10-14 00:37:52 -0700954/**
955 * skb_clone - duplicate an sk_buff
956 * @skb: buffer to clone
957 * @gfp_mask: allocation priority
958 *
959 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
960 * copies share the same packet data but not structure. The new
961 * buffer has a reference count of 1. If the allocation fails the
962 * function returns %NULL otherwise the new buffer is returned.
963 *
964 * If this function is called from an interrupt gfp_mask() must be
965 * %GFP_ATOMIC.
966 */
967
968struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
969{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700970 struct sk_buff_fclones *fclones = container_of(skb,
971 struct sk_buff_fclones,
972 skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800973 struct sk_buff *n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700974
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000975 if (skb_orphan_frags(skb, gfp_mask))
976 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000977
Herbert Xue0053ec2007-10-14 00:37:52 -0700978 if (skb->fclone == SKB_FCLONE_ORIG &&
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800979 atomic_read(&fclones->fclone_ref) == 1) {
980 n = &fclones->skb2;
981 atomic_set(&fclones->fclone_ref, 2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700982 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700983 if (skb_pfmemalloc(skb))
984 gfp_mask |= __GFP_MEMALLOC;
985
Herbert Xue0053ec2007-10-14 00:37:52 -0700986 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
987 if (!n)
988 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200989
990 kmemcheck_annotate_bitfield(n, flags1);
Herbert Xue0053ec2007-10-14 00:37:52 -0700991 n->fclone = SKB_FCLONE_UNAVAILABLE;
992 }
993
994 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800996EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000998static void skb_headers_offset_update(struct sk_buff *skb, int off)
999{
Eric Dumazet030737b2013-10-19 11:42:54 -07001000 /* Only adjust this if it actually is csum_start rather than csum */
1001 if (skb->ip_summed == CHECKSUM_PARTIAL)
1002 skb->csum_start += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001003 /* {transport,network,mac}_header and tail are relative to skb->head */
1004 skb->transport_header += off;
1005 skb->network_header += off;
1006 if (skb_mac_header_was_set(skb))
1007 skb->mac_header += off;
1008 skb->inner_transport_header += off;
1009 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +00001010 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1014{
Herbert Xudec18812007-10-14 00:37:30 -07001015 __copy_skb_header(new, old);
1016
Herbert Xu79671682006-06-22 02:40:14 -07001017 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1018 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1019 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Mel Gormanc93bdd02012-07-31 16:44:19 -07001022static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1023{
1024 if (skb_pfmemalloc(skb))
1025 return SKB_ALLOC_RX;
1026 return 0;
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/**
1030 * skb_copy - create private copy of an sk_buff
1031 * @skb: buffer to copy
1032 * @gfp_mask: allocation priority
1033 *
1034 * Make a copy of both an &sk_buff and its data. This is used when the
1035 * caller wishes to modify the data and needs a private copy of the
1036 * data to alter. Returns %NULL on failure or the pointer to the buffer
1037 * on success. The returned buffer has a reference count of 1.
1038 *
1039 * As by-product this function converts non-linear &sk_buff to linear
1040 * one, so that &sk_buff becomes completely private and caller is allowed
1041 * to modify all the data of returned buffer. This means that this
1042 * function is not recommended for use in circumstances when only
1043 * header is going to be modified. Use pskb_copy() instead.
1044 */
1045
Al Virodd0fc662005-10-07 07:46:04 +01001046struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001048 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +00001049 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -07001050 struct sk_buff *n = __alloc_skb(size, gfp_mask,
1051 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (!n)
1054 return NULL;
1055
1056 /* Set the data pointer */
1057 skb_reserve(n, headerlen);
1058 /* Set the tail pointer and length */
1059 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
1062 BUG();
1063
1064 copy_skb_header(n, skb);
1065 return n;
1066}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001067EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069/**
Octavian Purdilabad93e92014-06-12 01:36:26 +03001070 * __pskb_copy_fclone - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +00001072 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 * @gfp_mask: allocation priority
Octavian Purdilabad93e92014-06-12 01:36:26 +03001074 * @fclone: if true allocate the copy of the skb from the fclone
1075 * cache instead of the head cache; it is recommended to set this
1076 * to true for the cases where the copy will likely be cloned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 *
1078 * Make a copy of both an &sk_buff and part of its data, located
1079 * in header. Fragmented data remain shared. This is used when
1080 * the caller wishes to modify only header of &sk_buff and needs
1081 * private copy of the header to alter. Returns %NULL on failure
1082 * or the pointer to the buffer on success.
1083 * The returned buffer has a reference count of 1.
1084 */
1085
Octavian Purdilabad93e92014-06-12 01:36:26 +03001086struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1087 gfp_t gfp_mask, bool fclone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Eric Dumazet117632e2011-12-03 21:39:53 +00001089 unsigned int size = skb_headlen(skb) + headroom;
Octavian Purdilabad93e92014-06-12 01:36:26 +03001090 int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1091 struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (!n)
1094 goto out;
1095
1096 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +00001097 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /* Set the tail pointer and length */
1099 skb_put(n, skb_headlen(skb));
1100 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001101 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Herbert Xu25f484a2006-11-07 14:57:15 -08001103 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 n->data_len = skb->data_len;
1105 n->len = skb->len;
1106
1107 if (skb_shinfo(skb)->nr_frags) {
1108 int i;
1109
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001110 if (skb_orphan_frags(skb, gfp_mask)) {
1111 kfree_skb(n);
1112 n = NULL;
1113 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1116 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001117 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 skb_shinfo(n)->nr_frags = i;
1120 }
1121
David S. Miller21dc3302010-08-23 00:13:46 -07001122 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1124 skb_clone_fraglist(n);
1125 }
1126
1127 copy_skb_header(n, skb);
1128out:
1129 return n;
1130}
Octavian Purdilabad93e92014-06-12 01:36:26 +03001131EXPORT_SYMBOL(__pskb_copy_fclone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133/**
1134 * pskb_expand_head - reallocate header of &sk_buff
1135 * @skb: buffer to reallocate
1136 * @nhead: room to add at head
1137 * @ntail: room to add at tail
1138 * @gfp_mask: allocation priority
1139 *
Mathias Krausebc323832013-11-07 14:18:26 +01001140 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1141 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 * reference count of 1. Returns zero in the case of success or error,
1143 * if expansion failed. In the last case, &sk_buff is not changed.
1144 *
1145 * All the pointers pointing into skb header may change and must be
1146 * reloaded after call to this function.
1147 */
1148
Victor Fusco86a76ca2005-07-08 14:57:47 -07001149int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001150 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 int i;
1153 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001154 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 long off;
1156
Herbert Xu4edd87a2008-10-01 07:09:38 -07001157 BUG_ON(nhead < 0);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (skb_shared(skb))
1160 BUG();
1161
1162 size = SKB_DATA_ALIGN(size);
1163
Mel Gormanc93bdd02012-07-31 16:44:19 -07001164 if (skb_pfmemalloc(skb))
1165 gfp_mask |= __GFP_MEMALLOC;
1166 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1167 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (!data)
1169 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001170 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001173 * optimized for the cases when header is void.
1174 */
1175 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1176
1177 memcpy((struct skb_shared_info *)(data + size),
1178 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001179 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Alexander Duyck3e245912012-05-04 14:26:51 +00001181 /*
1182 * if shinfo is shared we must drop the old head gracefully, but if it
1183 * is not we can just drop the old head and let the existing refcount
1184 * be since all we did is relocate the values
1185 */
1186 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001187 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001188 if (skb_orphan_frags(skb, gfp_mask))
1189 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001190 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001191 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Eric Dumazet1fd63042010-09-02 23:09:32 +00001193 if (skb_has_frag_list(skb))
1194 skb_clone_fraglist(skb);
1195
1196 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001197 } else {
1198 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 off = (data + nhead) - skb->head;
1201
1202 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001203 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001205#ifdef NET_SKBUFF_DATA_USES_OFFSET
1206 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001207 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001208#else
1209 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001210#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001211 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001212 skb_headers_offset_update(skb, nhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001214 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 skb->nohdr = 0;
1216 atomic_set(&skb_shinfo(skb)->dataref, 1);
1217 return 0;
1218
Shirley Maa6686f22011-07-06 12:22:12 +00001219nofrags:
1220 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221nodata:
1222 return -ENOMEM;
1223}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001224EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226/* Make private copy of skb with writable head and some headroom */
1227
1228struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1229{
1230 struct sk_buff *skb2;
1231 int delta = headroom - skb_headroom(skb);
1232
1233 if (delta <= 0)
1234 skb2 = pskb_copy(skb, GFP_ATOMIC);
1235 else {
1236 skb2 = skb_clone(skb, GFP_ATOMIC);
1237 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1238 GFP_ATOMIC)) {
1239 kfree_skb(skb2);
1240 skb2 = NULL;
1241 }
1242 }
1243 return skb2;
1244}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001245EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247/**
1248 * skb_copy_expand - copy and expand sk_buff
1249 * @skb: buffer to copy
1250 * @newheadroom: new free bytes at head
1251 * @newtailroom: new free bytes at tail
1252 * @gfp_mask: allocation priority
1253 *
1254 * Make a copy of both an &sk_buff and its data and while doing so
1255 * allocate additional space.
1256 *
1257 * This is used when the caller wishes to modify the data and needs a
1258 * private copy of the data to alter as well as more space for new fields.
1259 * Returns %NULL on failure or the pointer to the buffer
1260 * on success. The returned buffer has a reference count of 1.
1261 *
1262 * You must pass %GFP_ATOMIC as the allocation priority if this function
1263 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 */
1265struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001266 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001267 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 /*
1270 * Allocate the copy buffer
1271 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001272 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1273 gfp_mask, skb_alloc_rx_flag(skb),
1274 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001275 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 int head_copy_len, head_copy_off;
1277
1278 if (!n)
1279 return NULL;
1280
1281 skb_reserve(n, newheadroom);
1282
1283 /* Set the tail pointer and length */
1284 skb_put(n, skb->len);
1285
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001286 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 head_copy_off = 0;
1288 if (newheadroom <= head_copy_len)
1289 head_copy_len = newheadroom;
1290 else
1291 head_copy_off = newheadroom - head_copy_len;
1292
1293 /* Copy the linear header and data. */
1294 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1295 skb->len + head_copy_len))
1296 BUG();
1297
1298 copy_skb_header(n, skb);
1299
Eric Dumazet030737b2013-10-19 11:42:54 -07001300 skb_headers_offset_update(n, newheadroom - oldheadroom);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return n;
1303}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001304EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306/**
1307 * skb_pad - zero pad the tail of an skb
1308 * @skb: buffer to pad
1309 * @pad: space to pad
1310 *
1311 * Ensure that a buffer is followed by a padding area that is zero
1312 * filled. Used by network drivers which may DMA or transfer data
1313 * beyond the buffer end onto the wire.
1314 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001315 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001317
Herbert Xu5b057c62006-06-23 02:06:41 -07001318int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Herbert Xu5b057c62006-06-23 02:06:41 -07001320 int err;
1321 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001324 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001328
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001329 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001330 if (likely(skb_cloned(skb) || ntail > 0)) {
1331 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1332 if (unlikely(err))
1333 goto free_skb;
1334 }
1335
1336 /* FIXME: The use of this function with non-linear skb's really needs
1337 * to be audited.
1338 */
1339 err = skb_linearize(skb);
1340 if (unlikely(err))
1341 goto free_skb;
1342
1343 memset(skb->data + skb->len, 0, pad);
1344 return 0;
1345
1346free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001348 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001349}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001350EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001351
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001352/**
Mathias Krause0c7ddf32013-11-07 14:18:24 +01001353 * pskb_put - add data to the tail of a potentially fragmented buffer
1354 * @skb: start of the buffer to use
1355 * @tail: tail fragment of the buffer to use
1356 * @len: amount of data to add
1357 *
1358 * This function extends the used data area of the potentially
1359 * fragmented buffer. @tail must be the last fragment of @skb -- or
1360 * @skb itself. If this would exceed the total buffer size the kernel
1361 * will panic. A pointer to the first byte of the extra data is
1362 * returned.
1363 */
1364
1365unsigned char *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1366{
1367 if (tail != skb) {
1368 skb->data_len += len;
1369 skb->len += len;
1370 }
1371 return skb_put(tail, len);
1372}
1373EXPORT_SYMBOL_GPL(pskb_put);
1374
1375/**
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001376 * skb_put - add data to a buffer
1377 * @skb: buffer to use
1378 * @len: amount of data to add
1379 *
1380 * This function extends the used data area of the buffer. If this would
1381 * exceed the total buffer size the kernel will panic. A pointer to the
1382 * first byte of the extra data is returned.
1383 */
1384unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1385{
1386 unsigned char *tmp = skb_tail_pointer(skb);
1387 SKB_LINEAR_ASSERT(skb);
1388 skb->tail += len;
1389 skb->len += len;
1390 if (unlikely(skb->tail > skb->end))
1391 skb_over_panic(skb, len, __builtin_return_address(0));
1392 return tmp;
1393}
1394EXPORT_SYMBOL(skb_put);
1395
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001396/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001397 * skb_push - add data to the start of a buffer
1398 * @skb: buffer to use
1399 * @len: amount of data to add
1400 *
1401 * This function extends the used data area of the buffer at the buffer
1402 * start. If this would exceed the total buffer headroom the kernel will
1403 * panic. A pointer to the first byte of the extra data is returned.
1404 */
1405unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1406{
1407 skb->data -= len;
1408 skb->len += len;
1409 if (unlikely(skb->data<skb->head))
1410 skb_under_panic(skb, len, __builtin_return_address(0));
1411 return skb->data;
1412}
1413EXPORT_SYMBOL(skb_push);
1414
1415/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001416 * skb_pull - remove data from the start of a buffer
1417 * @skb: buffer to use
1418 * @len: amount of data to remove
1419 *
1420 * This function removes data from the start of a buffer, returning
1421 * the memory to the headroom. A pointer to the next data in the buffer
1422 * is returned. Once the data has been pulled future pushes will overwrite
1423 * the old data.
1424 */
1425unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1426{
David S. Miller47d29642010-05-02 02:21:44 -07001427 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001428}
1429EXPORT_SYMBOL(skb_pull);
1430
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001431/**
1432 * skb_trim - remove end from a buffer
1433 * @skb: buffer to alter
1434 * @len: new length
1435 *
1436 * Cut the length of a buffer down by removing data from the tail. If
1437 * the buffer is already under the length specified it is not modified.
1438 * The skb must be linear.
1439 */
1440void skb_trim(struct sk_buff *skb, unsigned int len)
1441{
1442 if (skb->len > len)
1443 __skb_trim(skb, len);
1444}
1445EXPORT_SYMBOL(skb_trim);
1446
Herbert Xu3cc0e872006-06-09 16:13:38 -07001447/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
1449
Herbert Xu3cc0e872006-06-09 16:13:38 -07001450int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Herbert Xu27b437c2006-07-13 19:26:39 -07001452 struct sk_buff **fragp;
1453 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 int offset = skb_headlen(skb);
1455 int nfrags = skb_shinfo(skb)->nr_frags;
1456 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001457 int err;
1458
1459 if (skb_cloned(skb) &&
1460 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1461 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001463 i = 0;
1464 if (offset >= len)
1465 goto drop_pages;
1466
1467 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001468 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001469
1470 if (end < len) {
1471 offset = end;
1472 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001474
Eric Dumazet9e903e02011-10-18 21:00:24 +00001475 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001476
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001477drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001478 skb_shinfo(skb)->nr_frags = i;
1479
1480 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001481 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001482
David S. Miller21dc3302010-08-23 00:13:46 -07001483 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001484 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001485 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
1487
Herbert Xu27b437c2006-07-13 19:26:39 -07001488 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1489 fragp = &frag->next) {
1490 int end = offset + frag->len;
1491
1492 if (skb_shared(frag)) {
1493 struct sk_buff *nfrag;
1494
1495 nfrag = skb_clone(frag, GFP_ATOMIC);
1496 if (unlikely(!nfrag))
1497 return -ENOMEM;
1498
1499 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001500 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001501 frag = nfrag;
1502 *fragp = frag;
1503 }
1504
1505 if (end < len) {
1506 offset = end;
1507 continue;
1508 }
1509
1510 if (end > len &&
1511 unlikely((err = pskb_trim(frag, len - offset))))
1512 return err;
1513
1514 if (frag->next)
1515 skb_drop_list(&frag->next);
1516 break;
1517 }
1518
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001519done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001520 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 skb->data_len -= skb->len - len;
1522 skb->len = len;
1523 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001524 skb->len = len;
1525 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001526 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528
1529 return 0;
1530}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001531EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533/**
1534 * __pskb_pull_tail - advance tail of skb header
1535 * @skb: buffer to reallocate
1536 * @delta: number of bytes to advance tail
1537 *
1538 * The function makes a sense only on a fragmented &sk_buff,
1539 * it expands header moving its tail forward and copying necessary
1540 * data from fragmented part.
1541 *
1542 * &sk_buff MUST have reference count of 1.
1543 *
1544 * Returns %NULL (and &sk_buff does not change) if pull failed
1545 * or value of new tail of skb in the case of success.
1546 *
1547 * All the pointers pointing into skb header may change and must be
1548 * reloaded after call to this function.
1549 */
1550
1551/* Moves tail of skb head forward, copying data from fragmented part,
1552 * when it is necessary.
1553 * 1. It may fail due to malloc failure.
1554 * 2. It may change skb pointers.
1555 *
1556 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1557 */
1558unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1559{
1560 /* If skb has not enough free space at tail, get new one
1561 * plus 128 bytes for future expansions. If we have enough
1562 * room at tail, reallocate without expansion only if skb is cloned.
1563 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001564 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 if (eat > 0 || skb_cloned(skb)) {
1567 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1568 GFP_ATOMIC))
1569 return NULL;
1570 }
1571
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001572 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 BUG();
1574
1575 /* Optimization: no fragments, no reasons to preestimate
1576 * size of pulled pages. Superb.
1577 */
David S. Miller21dc3302010-08-23 00:13:46 -07001578 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 goto pull_pages;
1580
1581 /* Estimate size of pulled pages. */
1582 eat = delta;
1583 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001584 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1585
1586 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001588 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
1590
1591 /* If we need update frag list, we are in troubles.
1592 * Certainly, it possible to add an offset to skb data,
1593 * but taking into account that pulling is expected to
1594 * be very rare operation, it is worth to fight against
1595 * further bloating skb head and crucify ourselves here instead.
1596 * Pure masohism, indeed. 8)8)
1597 */
1598 if (eat) {
1599 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1600 struct sk_buff *clone = NULL;
1601 struct sk_buff *insp = NULL;
1602
1603 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001604 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 if (list->len <= eat) {
1607 /* Eaten as whole. */
1608 eat -= list->len;
1609 list = list->next;
1610 insp = list;
1611 } else {
1612 /* Eaten partially. */
1613
1614 if (skb_shared(list)) {
1615 /* Sucks! We need to fork list. :-( */
1616 clone = skb_clone(list, GFP_ATOMIC);
1617 if (!clone)
1618 return NULL;
1619 insp = list->next;
1620 list = clone;
1621 } else {
1622 /* This may be pulled without
1623 * problems. */
1624 insp = list;
1625 }
1626 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001627 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return NULL;
1629 }
1630 break;
1631 }
1632 } while (eat);
1633
1634 /* Free pulled out fragments. */
1635 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1636 skb_shinfo(skb)->frag_list = list->next;
1637 kfree_skb(list);
1638 }
1639 /* And insert new clone at head. */
1640 if (clone) {
1641 clone->next = list;
1642 skb_shinfo(skb)->frag_list = clone;
1643 }
1644 }
1645 /* Success! Now we may commit changes to skb data. */
1646
1647pull_pages:
1648 eat = delta;
1649 k = 0;
1650 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001651 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1652
1653 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001654 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001655 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 } else {
1657 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1658 if (eat) {
1659 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001660 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 eat = 0;
1662 }
1663 k++;
1664 }
1665 }
1666 skb_shinfo(skb)->nr_frags = k;
1667
1668 skb->tail += delta;
1669 skb->data_len -= delta;
1670
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001671 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001673EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Eric Dumazet22019b12011-07-29 18:37:31 +00001675/**
1676 * skb_copy_bits - copy bits from skb to kernel buffer
1677 * @skb: source skb
1678 * @offset: offset in source
1679 * @to: destination buffer
1680 * @len: number of bytes to copy
1681 *
1682 * Copy the specified number of bytes from the source skb to the
1683 * destination buffer.
1684 *
1685 * CAUTION ! :
1686 * If its prototype is ever changed,
1687 * check arch/{*}/net/{*}.S files,
1688 * since it is called from BPF assembly code.
1689 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1691{
David S. Miller1a028e52007-04-27 15:21:23 -07001692 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001693 struct sk_buff *frag_iter;
1694 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 if (offset > (int)skb->len - len)
1697 goto fault;
1698
1699 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001700 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (copy > len)
1702 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001703 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if ((len -= copy) == 0)
1705 return 0;
1706 offset += copy;
1707 to += copy;
1708 }
1709
1710 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001711 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001712 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001714 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001715
Eric Dumazet51c56b02012-04-05 11:35:15 +02001716 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if ((copy = end - offset) > 0) {
1718 u8 *vaddr;
1719
1720 if (copy > len)
1721 copy = len;
1722
Eric Dumazet51c56b02012-04-05 11:35:15 +02001723 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001725 vaddr + f->page_offset + offset - start,
1726 copy);
1727 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 if ((len -= copy) == 0)
1730 return 0;
1731 offset += copy;
1732 to += copy;
1733 }
David S. Miller1a028e52007-04-27 15:21:23 -07001734 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 }
1736
David S. Millerfbb398a2009-06-09 00:18:59 -07001737 skb_walk_frags(skb, frag_iter) {
1738 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
David S. Millerfbb398a2009-06-09 00:18:59 -07001740 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
David S. Millerfbb398a2009-06-09 00:18:59 -07001742 end = start + frag_iter->len;
1743 if ((copy = end - offset) > 0) {
1744 if (copy > len)
1745 copy = len;
1746 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1747 goto fault;
1748 if ((len -= copy) == 0)
1749 return 0;
1750 offset += copy;
1751 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001753 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
Shirley Maa6686f22011-07-06 12:22:12 +00001755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (!len)
1757 return 0;
1758
1759fault:
1760 return -EFAULT;
1761}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001762EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Jens Axboe9c55e012007-11-06 23:30:13 -08001764/*
1765 * Callback from splice_to_pipe(), if we need to release some pages
1766 * at the end of the spd in case we error'ed out in filling the pipe.
1767 */
1768static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1769{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001770 put_page(spd->pages[i]);
1771}
Jens Axboe9c55e012007-11-06 23:30:13 -08001772
David S. Millera108d5f2012-04-23 23:06:11 -04001773static struct page *linear_to_page(struct page *page, unsigned int *len,
1774 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001775 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001776{
Eric Dumazet5640f762012-09-23 23:04:42 +00001777 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001778
Eric Dumazet5640f762012-09-23 23:04:42 +00001779 if (!sk_page_frag_refill(sk, pfrag))
1780 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001781
Eric Dumazet5640f762012-09-23 23:04:42 +00001782 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001783
Eric Dumazet5640f762012-09-23 23:04:42 +00001784 memcpy(page_address(pfrag->page) + pfrag->offset,
1785 page_address(page) + *offset, *len);
1786 *offset = pfrag->offset;
1787 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001788
Eric Dumazet5640f762012-09-23 23:04:42 +00001789 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001790}
1791
Eric Dumazet41c73a02012-04-22 12:26:16 +00001792static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1793 struct page *page,
1794 unsigned int offset)
1795{
1796 return spd->nr_pages &&
1797 spd->pages[spd->nr_pages - 1] == page &&
1798 (spd->partial[spd->nr_pages - 1].offset +
1799 spd->partial[spd->nr_pages - 1].len == offset);
1800}
1801
Jens Axboe9c55e012007-11-06 23:30:13 -08001802/*
1803 * Fill page/offset/length into spd, if it can hold more pages.
1804 */
David S. Millera108d5f2012-04-23 23:06:11 -04001805static bool spd_fill_page(struct splice_pipe_desc *spd,
1806 struct pipe_inode_info *pipe, struct page *page,
1807 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001808 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001809 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001810{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001811 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001812 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001813
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001814 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001815 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001816 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001817 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001818 }
1819 if (spd_can_coalesce(spd, page, offset)) {
1820 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001821 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001822 }
1823 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001824 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001825 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001826 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001827 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001828
David S. Millera108d5f2012-04-23 23:06:11 -04001829 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001830}
1831
David S. Millera108d5f2012-04-23 23:06:11 -04001832static bool __splice_segment(struct page *page, unsigned int poff,
1833 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001834 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001835 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001836 struct sock *sk,
1837 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001838{
1839 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001840 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001841
1842 /* skip this segment if already processed */
1843 if (*off >= plen) {
1844 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001845 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001846 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001847
Octavian Purdila2870c432008-07-15 00:49:11 -07001848 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001849 poff += *off;
1850 plen -= *off;
1851 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001852
Eric Dumazet18aafc62013-01-11 14:46:37 +00001853 do {
1854 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001855
Eric Dumazet18aafc62013-01-11 14:46:37 +00001856 if (spd_fill_page(spd, pipe, page, &flen, poff,
1857 linear, sk))
1858 return true;
1859 poff += flen;
1860 plen -= flen;
1861 *len -= flen;
1862 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001863
David S. Millera108d5f2012-04-23 23:06:11 -04001864 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001865}
1866
1867/*
David S. Millera108d5f2012-04-23 23:06:11 -04001868 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001869 * pipe is full or if we already spliced the requested length.
1870 */
David S. Millera108d5f2012-04-23 23:06:11 -04001871static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1872 unsigned int *offset, unsigned int *len,
1873 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001874{
1875 int seg;
1876
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001877 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001878 * If skb->head_frag is set, this 'linear' part is backed by a
1879 * fragment, and if the head is not shared with any clones then
1880 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001881 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001882 if (__splice_segment(virt_to_page(skb->data),
1883 (unsigned long) skb->data & (PAGE_SIZE - 1),
1884 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001885 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001886 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001887 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001888 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001889
1890 /*
1891 * then map the fragments
1892 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001893 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1894 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1895
Ian Campbellea2ab692011-08-22 23:44:58 +00001896 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001897 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001898 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001899 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001900 }
1901
David S. Millera108d5f2012-04-23 23:06:11 -04001902 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001903}
1904
1905/*
1906 * Map data from the skb to a pipe. Should handle both the linear part,
1907 * the fragments, and the frag list. It does NOT handle frag lists within
1908 * the frag list, if such a thing exists. We'd probably need to recurse to
1909 * handle that cleanly.
1910 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001911int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001912 struct pipe_inode_info *pipe, unsigned int tlen,
1913 unsigned int flags)
1914{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001915 struct partial_page partial[MAX_SKB_FRAGS];
1916 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001917 struct splice_pipe_desc spd = {
1918 .pages = pages,
1919 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001920 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001921 .flags = flags,
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001922 .ops = &nosteal_pipe_buf_ops,
Jens Axboe9c55e012007-11-06 23:30:13 -08001923 .spd_release = sock_spd_release,
1924 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001925 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001926 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001927 int ret = 0;
1928
Jens Axboe9c55e012007-11-06 23:30:13 -08001929 /*
1930 * __skb_splice_bits() only fails if the output has no room left,
1931 * so no point in going over the frag_list for the error case.
1932 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001933 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001934 goto done;
1935 else if (!tlen)
1936 goto done;
1937
1938 /*
1939 * now see if we have a frag_list to map
1940 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001941 skb_walk_frags(skb, frag_iter) {
1942 if (!tlen)
1943 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001944 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001945 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001946 }
1947
1948done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001949 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001950 /*
1951 * Drop the socket lock, otherwise we have reverse
1952 * locking dependencies between sk_lock and i_mutex
1953 * here as compared to sendfile(). We enter here
1954 * with the socket lock held, and splice_to_pipe() will
1955 * grab the pipe inode lock. For sendfile() emulation,
1956 * we call into ->sendpage() with the i_mutex lock held
1957 * and networking will grab the socket lock.
1958 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001959 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001960 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001961 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001962 }
1963
Jens Axboe35f3d142010-05-20 10:43:18 +02001964 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001965}
1966
Herbert Xu357b40a2005-04-19 22:30:14 -07001967/**
1968 * skb_store_bits - store bits from kernel buffer to skb
1969 * @skb: destination buffer
1970 * @offset: offset in destination
1971 * @from: source buffer
1972 * @len: number of bytes to copy
1973 *
1974 * Copy the specified number of bytes from the source buffer to the
1975 * destination skb. This function handles all the messy bits of
1976 * traversing fragment lists and such.
1977 */
1978
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001979int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001980{
David S. Miller1a028e52007-04-27 15:21:23 -07001981 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001982 struct sk_buff *frag_iter;
1983 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001984
1985 if (offset > (int)skb->len - len)
1986 goto fault;
1987
David S. Miller1a028e52007-04-27 15:21:23 -07001988 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001989 if (copy > len)
1990 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001991 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001992 if ((len -= copy) == 0)
1993 return 0;
1994 offset += copy;
1995 from += copy;
1996 }
1997
1998 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1999 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07002000 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002001
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002002 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002003
Eric Dumazet9e903e02011-10-18 21:00:24 +00002004 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07002005 if ((copy = end - offset) > 0) {
2006 u8 *vaddr;
2007
2008 if (copy > len)
2009 copy = len;
2010
Eric Dumazet51c56b02012-04-05 11:35:15 +02002011 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07002012 memcpy(vaddr + frag->page_offset + offset - start,
2013 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002014 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07002015
2016 if ((len -= copy) == 0)
2017 return 0;
2018 offset += copy;
2019 from += copy;
2020 }
David S. Miller1a028e52007-04-27 15:21:23 -07002021 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002022 }
2023
David S. Millerfbb398a2009-06-09 00:18:59 -07002024 skb_walk_frags(skb, frag_iter) {
2025 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002026
David S. Millerfbb398a2009-06-09 00:18:59 -07002027 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07002028
David S. Millerfbb398a2009-06-09 00:18:59 -07002029 end = start + frag_iter->len;
2030 if ((copy = end - offset) > 0) {
2031 if (copy > len)
2032 copy = len;
2033 if (skb_store_bits(frag_iter, offset - start,
2034 from, copy))
2035 goto fault;
2036 if ((len -= copy) == 0)
2037 return 0;
2038 offset += copy;
2039 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002040 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002041 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002042 }
2043 if (!len)
2044 return 0;
2045
2046fault:
2047 return -EFAULT;
2048}
Herbert Xu357b40a2005-04-19 22:30:14 -07002049EXPORT_SYMBOL(skb_store_bits);
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01002052__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2053 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
David S. Miller1a028e52007-04-27 15:21:23 -07002055 int start = skb_headlen(skb);
2056 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002057 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 int pos = 0;
2059
2060 /* Checksum header. */
2061 if (copy > 0) {
2062 if (copy > len)
2063 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002064 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if ((len -= copy) == 0)
2066 return csum;
2067 offset += copy;
2068 pos = copy;
2069 }
2070
2071 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002072 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002073 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002075 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002076
Eric Dumazet51c56b02012-04-05 11:35:15 +02002077 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08002079 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 if (copy > len)
2083 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002084 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01002085 csum2 = ops->update(vaddr + frag->page_offset +
2086 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002087 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01002088 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (!(len -= copy))
2090 return csum;
2091 offset += copy;
2092 pos += copy;
2093 }
David S. Miller1a028e52007-04-27 15:21:23 -07002094 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
2096
David S. Millerfbb398a2009-06-09 00:18:59 -07002097 skb_walk_frags(skb, frag_iter) {
2098 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
David S. Millerfbb398a2009-06-09 00:18:59 -07002100 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
David S. Millerfbb398a2009-06-09 00:18:59 -07002102 end = start + frag_iter->len;
2103 if ((copy = end - offset) > 0) {
2104 __wsum csum2;
2105 if (copy > len)
2106 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002107 csum2 = __skb_checksum(frag_iter, offset - start,
2108 copy, 0, ops);
2109 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07002110 if ((len -= copy) == 0)
2111 return csum;
2112 offset += copy;
2113 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002115 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002117 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 return csum;
2120}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002121EXPORT_SYMBOL(__skb_checksum);
2122
2123__wsum skb_checksum(const struct sk_buff *skb, int offset,
2124 int len, __wsum csum)
2125{
2126 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002127 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002128 .combine = csum_block_add_ext,
2129 };
2130
2131 return __skb_checksum(skb, offset, len, csum, &ops);
2132}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002133EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135/* Both of above in one bottle. */
2136
Al Viro81d77662006-11-14 21:37:33 -08002137__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2138 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
David S. Miller1a028e52007-04-27 15:21:23 -07002140 int start = skb_headlen(skb);
2141 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002142 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 int pos = 0;
2144
2145 /* Copy header. */
2146 if (copy > 0) {
2147 if (copy > len)
2148 copy = len;
2149 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2150 copy, csum);
2151 if ((len -= copy) == 0)
2152 return csum;
2153 offset += copy;
2154 to += copy;
2155 pos = copy;
2156 }
2157
2158 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002159 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002161 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002162
Eric Dumazet9e903e02011-10-18 21:00:24 +00002163 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002165 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 u8 *vaddr;
2167 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2168
2169 if (copy > len)
2170 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002171 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002173 frag->page_offset +
2174 offset - start, to,
2175 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002176 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 csum = csum_block_add(csum, csum2, pos);
2178 if (!(len -= copy))
2179 return csum;
2180 offset += copy;
2181 to += copy;
2182 pos += copy;
2183 }
David S. Miller1a028e52007-04-27 15:21:23 -07002184 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186
David S. Millerfbb398a2009-06-09 00:18:59 -07002187 skb_walk_frags(skb, frag_iter) {
2188 __wsum csum2;
2189 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
David S. Millerfbb398a2009-06-09 00:18:59 -07002191 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
David S. Millerfbb398a2009-06-09 00:18:59 -07002193 end = start + frag_iter->len;
2194 if ((copy = end - offset) > 0) {
2195 if (copy > len)
2196 copy = len;
2197 csum2 = skb_copy_and_csum_bits(frag_iter,
2198 offset - start,
2199 to, copy, 0);
2200 csum = csum_block_add(csum, csum2, pos);
2201 if ((len -= copy) == 0)
2202 return csum;
2203 offset += copy;
2204 to += copy;
2205 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002207 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002209 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 return csum;
2211}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002212EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Thomas Grafaf2806f2013-12-13 15:22:17 +01002214 /**
2215 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2216 * @from: source buffer
2217 *
2218 * Calculates the amount of linear headroom needed in the 'to' skb passed
2219 * into skb_zerocopy().
2220 */
2221unsigned int
2222skb_zerocopy_headlen(const struct sk_buff *from)
2223{
2224 unsigned int hlen = 0;
2225
2226 if (!from->head_frag ||
2227 skb_headlen(from) < L1_CACHE_BYTES ||
2228 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2229 hlen = skb_headlen(from);
2230
2231 if (skb_has_frag_list(from))
2232 hlen = from->len;
2233
2234 return hlen;
2235}
2236EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2237
2238/**
2239 * skb_zerocopy - Zero copy skb to skb
2240 * @to: destination buffer
Masanari Iida7fceb4d2014-01-29 01:05:28 +09002241 * @from: source buffer
Thomas Grafaf2806f2013-12-13 15:22:17 +01002242 * @len: number of bytes to copy from source buffer
2243 * @hlen: size of linear headroom in destination buffer
2244 *
2245 * Copies up to `len` bytes from `from` to `to` by creating references
2246 * to the frags in the source buffer.
2247 *
2248 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2249 * headroom in the `to` buffer.
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002250 *
2251 * Return value:
2252 * 0: everything is OK
2253 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
2254 * -EFAULT: skb_copy_bits() found some problem with skb geometry
Thomas Grafaf2806f2013-12-13 15:22:17 +01002255 */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002256int
2257skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
Thomas Grafaf2806f2013-12-13 15:22:17 +01002258{
2259 int i, j = 0;
2260 int plen = 0; /* length of skb->head fragment */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002261 int ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002262 struct page *page;
2263 unsigned int offset;
2264
2265 BUG_ON(!from->head_frag && !hlen);
2266
2267 /* dont bother with small payloads */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002268 if (len <= skb_tailroom(to))
2269 return skb_copy_bits(from, 0, skb_put(to, len), len);
Thomas Grafaf2806f2013-12-13 15:22:17 +01002270
2271 if (hlen) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002272 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2273 if (unlikely(ret))
2274 return ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002275 len -= hlen;
2276 } else {
2277 plen = min_t(int, skb_headlen(from), len);
2278 if (plen) {
2279 page = virt_to_head_page(from->head);
2280 offset = from->data - (unsigned char *)page_address(page);
2281 __skb_fill_page_desc(to, 0, page, offset, plen);
2282 get_page(page);
2283 j = 1;
2284 len -= plen;
2285 }
2286 }
2287
2288 to->truesize += len + plen;
2289 to->len += len + plen;
2290 to->data_len += len + plen;
2291
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002292 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2293 skb_tx_error(from);
2294 return -ENOMEM;
2295 }
2296
Thomas Grafaf2806f2013-12-13 15:22:17 +01002297 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2298 if (!len)
2299 break;
2300 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2301 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2302 len -= skb_shinfo(to)->frags[j].size;
2303 skb_frag_ref(to, j);
2304 j++;
2305 }
2306 skb_shinfo(to)->nr_frags = j;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002307
2308 return 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002309}
2310EXPORT_SYMBOL_GPL(skb_zerocopy);
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2313{
Al Virod3bc23e2006-11-14 21:24:49 -08002314 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 long csstart;
2316
Patrick McHardy84fa7932006-08-29 16:44:56 -07002317 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002318 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 else
2320 csstart = skb_headlen(skb);
2321
Kris Katterjohn09a62662006-01-08 22:24:28 -08002322 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002324 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
2326 csum = 0;
2327 if (csstart != skb->len)
2328 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2329 skb->len - csstart, 0);
2330
Patrick McHardy84fa7932006-08-29 16:44:56 -07002331 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002332 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Al Virod3bc23e2006-11-14 21:24:49 -08002334 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
2336}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002337EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339/**
2340 * skb_dequeue - remove from the head of the queue
2341 * @list: list to dequeue from
2342 *
2343 * Remove the head of the list. The list lock is taken so the function
2344 * may be used safely with other locking list functions. The head item is
2345 * returned or %NULL if the list is empty.
2346 */
2347
2348struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2349{
2350 unsigned long flags;
2351 struct sk_buff *result;
2352
2353 spin_lock_irqsave(&list->lock, flags);
2354 result = __skb_dequeue(list);
2355 spin_unlock_irqrestore(&list->lock, flags);
2356 return result;
2357}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002358EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360/**
2361 * skb_dequeue_tail - remove from the tail of the queue
2362 * @list: list to dequeue from
2363 *
2364 * Remove the tail of the list. The list lock is taken so the function
2365 * may be used safely with other locking list functions. The tail item is
2366 * returned or %NULL if the list is empty.
2367 */
2368struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2369{
2370 unsigned long flags;
2371 struct sk_buff *result;
2372
2373 spin_lock_irqsave(&list->lock, flags);
2374 result = __skb_dequeue_tail(list);
2375 spin_unlock_irqrestore(&list->lock, flags);
2376 return result;
2377}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002378EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380/**
2381 * skb_queue_purge - empty a list
2382 * @list: list to empty
2383 *
2384 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2385 * the list and one reference dropped. This function takes the list
2386 * lock and is atomic with respect to other list locking functions.
2387 */
2388void skb_queue_purge(struct sk_buff_head *list)
2389{
2390 struct sk_buff *skb;
2391 while ((skb = skb_dequeue(list)) != NULL)
2392 kfree_skb(skb);
2393}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002394EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396/**
2397 * skb_queue_head - queue a buffer at the list head
2398 * @list: list to use
2399 * @newsk: buffer to queue
2400 *
2401 * Queue a buffer at the start of the list. This function takes the
2402 * list lock and can be used safely with other locking &sk_buff functions
2403 * safely.
2404 *
2405 * A buffer cannot be placed on two lists at the same time.
2406 */
2407void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2408{
2409 unsigned long flags;
2410
2411 spin_lock_irqsave(&list->lock, flags);
2412 __skb_queue_head(list, newsk);
2413 spin_unlock_irqrestore(&list->lock, flags);
2414}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002415EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417/**
2418 * skb_queue_tail - queue a buffer at the list tail
2419 * @list: list to use
2420 * @newsk: buffer to queue
2421 *
2422 * Queue a buffer at the tail of the list. This function takes the
2423 * list lock and can be used safely with other locking &sk_buff functions
2424 * safely.
2425 *
2426 * A buffer cannot be placed on two lists at the same time.
2427 */
2428void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2429{
2430 unsigned long flags;
2431
2432 spin_lock_irqsave(&list->lock, flags);
2433 __skb_queue_tail(list, newsk);
2434 spin_unlock_irqrestore(&list->lock, flags);
2435}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002436EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438/**
2439 * skb_unlink - remove a buffer from a list
2440 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002441 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 *
David S. Miller8728b832005-08-09 19:25:21 -07002443 * Remove a packet from a list. The list locks are taken and this
2444 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 *
David S. Miller8728b832005-08-09 19:25:21 -07002446 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 */
David S. Miller8728b832005-08-09 19:25:21 -07002448void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
David S. Miller8728b832005-08-09 19:25:21 -07002450 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
David S. Miller8728b832005-08-09 19:25:21 -07002452 spin_lock_irqsave(&list->lock, flags);
2453 __skb_unlink(skb, list);
2454 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002456EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458/**
2459 * skb_append - append a buffer
2460 * @old: buffer to insert after
2461 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002462 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 *
2464 * Place a packet after a given packet in a list. The list locks are taken
2465 * and this function is atomic with respect to other list locked calls.
2466 * A buffer cannot be placed on two lists at the same time.
2467 */
David S. Miller8728b832005-08-09 19:25:21 -07002468void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
2470 unsigned long flags;
2471
David S. Miller8728b832005-08-09 19:25:21 -07002472 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002473 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002474 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002476EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478/**
2479 * skb_insert - insert a buffer
2480 * @old: buffer to insert before
2481 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002482 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 *
David S. Miller8728b832005-08-09 19:25:21 -07002484 * Place a packet before a given packet in a list. The list locks are
2485 * taken and this function is atomic with respect to other list locked
2486 * calls.
2487 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 * A buffer cannot be placed on two lists at the same time.
2489 */
David S. Miller8728b832005-08-09 19:25:21 -07002490void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
2492 unsigned long flags;
2493
David S. Miller8728b832005-08-09 19:25:21 -07002494 spin_lock_irqsave(&list->lock, flags);
2495 __skb_insert(newsk, old->prev, old, list);
2496 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002498EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500static inline void skb_split_inside_header(struct sk_buff *skb,
2501 struct sk_buff* skb1,
2502 const u32 len, const int pos)
2503{
2504 int i;
2505
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002506 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2507 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 /* And move data appendix as is. */
2509 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2510 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2511
2512 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2513 skb_shinfo(skb)->nr_frags = 0;
2514 skb1->data_len = skb->data_len;
2515 skb1->len += skb1->data_len;
2516 skb->data_len = 0;
2517 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002518 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519}
2520
2521static inline void skb_split_no_header(struct sk_buff *skb,
2522 struct sk_buff* skb1,
2523 const u32 len, int pos)
2524{
2525 int i, k = 0;
2526 const int nfrags = skb_shinfo(skb)->nr_frags;
2527
2528 skb_shinfo(skb)->nr_frags = 0;
2529 skb1->len = skb1->data_len = skb->len - len;
2530 skb->len = len;
2531 skb->data_len = len - pos;
2532
2533 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002534 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
2536 if (pos + size > len) {
2537 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2538
2539 if (pos < len) {
2540 /* Split frag.
2541 * We have two variants in this case:
2542 * 1. Move all the frag to the second
2543 * part, if it is possible. F.e.
2544 * this approach is mandatory for TUX,
2545 * where splitting is expensive.
2546 * 2. Split is accurately. We make this.
2547 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002548 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002550 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2551 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 skb_shinfo(skb)->nr_frags++;
2553 }
2554 k++;
2555 } else
2556 skb_shinfo(skb)->nr_frags++;
2557 pos += size;
2558 }
2559 skb_shinfo(skb1)->nr_frags = k;
2560}
2561
2562/**
2563 * skb_split - Split fragmented skb to two parts at length len.
2564 * @skb: the buffer to split
2565 * @skb1: the buffer to receive the second part
2566 * @len: new length for skb
2567 */
2568void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2569{
2570 int pos = skb_headlen(skb);
2571
Amerigo Wang68534c62013-02-19 22:51:30 +00002572 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 if (len < pos) /* Split line is inside header. */
2574 skb_split_inside_header(skb, skb1, len, pos);
2575 else /* Second chunk has no header, nothing to copy. */
2576 skb_split_no_header(skb, skb1, len, pos);
2577}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002578EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002580/* Shifting from/to a cloned skb is a no-go.
2581 *
2582 * Caller cannot keep skb_shinfo related pointers past calling here!
2583 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002584static int skb_prepare_for_shift(struct sk_buff *skb)
2585{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002586 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002587}
2588
2589/**
2590 * skb_shift - Shifts paged data partially from skb to another
2591 * @tgt: buffer into which tail data gets added
2592 * @skb: buffer from which the paged data comes from
2593 * @shiftlen: shift up to this many bytes
2594 *
2595 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002596 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002597 * It's up to caller to free skb if everything was shifted.
2598 *
2599 * If @tgt runs out of frags, the whole operation is aborted.
2600 *
2601 * Skb cannot include anything else but paged data while tgt is allowed
2602 * to have non-paged data as well.
2603 *
2604 * TODO: full sized shift could be optimized but that would need
2605 * specialized skb free'er to handle frags without up-to-date nr_frags.
2606 */
2607int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2608{
2609 int from, to, merge, todo;
2610 struct skb_frag_struct *fragfrom, *fragto;
2611
2612 BUG_ON(shiftlen > skb->len);
2613 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2614
2615 todo = shiftlen;
2616 from = 0;
2617 to = skb_shinfo(tgt)->nr_frags;
2618 fragfrom = &skb_shinfo(skb)->frags[from];
2619
2620 /* Actual merge is delayed until the point when we know we can
2621 * commit all, so that we don't have to undo partial changes
2622 */
2623 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002624 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2625 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002626 merge = -1;
2627 } else {
2628 merge = to - 1;
2629
Eric Dumazet9e903e02011-10-18 21:00:24 +00002630 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002631 if (todo < 0) {
2632 if (skb_prepare_for_shift(skb) ||
2633 skb_prepare_for_shift(tgt))
2634 return 0;
2635
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002636 /* All previous frag pointers might be stale! */
2637 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002638 fragto = &skb_shinfo(tgt)->frags[merge];
2639
Eric Dumazet9e903e02011-10-18 21:00:24 +00002640 skb_frag_size_add(fragto, shiftlen);
2641 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002642 fragfrom->page_offset += shiftlen;
2643
2644 goto onlymerged;
2645 }
2646
2647 from++;
2648 }
2649
2650 /* Skip full, not-fitting skb to avoid expensive operations */
2651 if ((shiftlen == skb->len) &&
2652 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2653 return 0;
2654
2655 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2656 return 0;
2657
2658 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2659 if (to == MAX_SKB_FRAGS)
2660 return 0;
2661
2662 fragfrom = &skb_shinfo(skb)->frags[from];
2663 fragto = &skb_shinfo(tgt)->frags[to];
2664
Eric Dumazet9e903e02011-10-18 21:00:24 +00002665 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002666 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002667 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002668 from++;
2669 to++;
2670
2671 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002672 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002673 fragto->page = fragfrom->page;
2674 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002675 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002676
2677 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002678 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002679 todo = 0;
2680
2681 to++;
2682 break;
2683 }
2684 }
2685
2686 /* Ready to "commit" this state change to tgt */
2687 skb_shinfo(tgt)->nr_frags = to;
2688
2689 if (merge >= 0) {
2690 fragfrom = &skb_shinfo(skb)->frags[0];
2691 fragto = &skb_shinfo(tgt)->frags[merge];
2692
Eric Dumazet9e903e02011-10-18 21:00:24 +00002693 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002694 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002695 }
2696
2697 /* Reposition in the original skb */
2698 to = 0;
2699 while (from < skb_shinfo(skb)->nr_frags)
2700 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2701 skb_shinfo(skb)->nr_frags = to;
2702
2703 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2704
2705onlymerged:
2706 /* Most likely the tgt won't ever need its checksum anymore, skb on
2707 * the other hand might need it if it needs to be resent
2708 */
2709 tgt->ip_summed = CHECKSUM_PARTIAL;
2710 skb->ip_summed = CHECKSUM_PARTIAL;
2711
2712 /* Yak, is it really working this way? Some helper please? */
2713 skb->len -= shiftlen;
2714 skb->data_len -= shiftlen;
2715 skb->truesize -= shiftlen;
2716 tgt->len += shiftlen;
2717 tgt->data_len += shiftlen;
2718 tgt->truesize += shiftlen;
2719
2720 return shiftlen;
2721}
2722
Thomas Graf677e90e2005-06-23 20:59:51 -07002723/**
2724 * skb_prepare_seq_read - Prepare a sequential read of skb data
2725 * @skb: the buffer to read
2726 * @from: lower offset of data to be read
2727 * @to: upper offset of data to be read
2728 * @st: state variable
2729 *
2730 * Initializes the specified state variable. Must be called before
2731 * invoking skb_seq_read() for the first time.
2732 */
2733void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2734 unsigned int to, struct skb_seq_state *st)
2735{
2736 st->lower_offset = from;
2737 st->upper_offset = to;
2738 st->root_skb = st->cur_skb = skb;
2739 st->frag_idx = st->stepped_offset = 0;
2740 st->frag_data = NULL;
2741}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002742EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002743
2744/**
2745 * skb_seq_read - Sequentially read skb data
2746 * @consumed: number of bytes consumed by the caller so far
2747 * @data: destination pointer for data to be returned
2748 * @st: state variable
2749 *
Mathias Krausebc323832013-11-07 14:18:26 +01002750 * Reads a block of skb data at @consumed relative to the
Thomas Graf677e90e2005-06-23 20:59:51 -07002751 * lower offset specified to skb_prepare_seq_read(). Assigns
Mathias Krausebc323832013-11-07 14:18:26 +01002752 * the head of the data block to @data and returns the length
Thomas Graf677e90e2005-06-23 20:59:51 -07002753 * of the block or 0 if the end of the skb data or the upper
2754 * offset has been reached.
2755 *
2756 * The caller is not required to consume all of the data
Mathias Krausebc323832013-11-07 14:18:26 +01002757 * returned, i.e. @consumed is typically set to the number
Thomas Graf677e90e2005-06-23 20:59:51 -07002758 * of bytes already consumed and the next call to
2759 * skb_seq_read() will return the remaining part of the block.
2760 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002761 * Note 1: The size of each block of data returned can be arbitrary,
Masanari Iidae793c0f2014-09-04 23:44:36 +09002762 * this limitation is the cost for zerocopy sequential
Thomas Graf677e90e2005-06-23 20:59:51 -07002763 * reads of potentially non linear data.
2764 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002765 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002766 * at the moment, state->root_skb could be replaced with
2767 * a stack for this purpose.
2768 */
2769unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2770 struct skb_seq_state *st)
2771{
2772 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2773 skb_frag_t *frag;
2774
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002775 if (unlikely(abs_offset >= st->upper_offset)) {
2776 if (st->frag_data) {
2777 kunmap_atomic(st->frag_data);
2778 st->frag_data = NULL;
2779 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002780 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002781 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002782
2783next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002784 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002785
Thomas Chenault995b3372009-05-18 21:43:27 -07002786 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002787 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002788 return block_limit - abs_offset;
2789 }
2790
2791 if (st->frag_idx == 0 && !st->frag_data)
2792 st->stepped_offset += skb_headlen(st->cur_skb);
2793
2794 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2795 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002796 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002797
2798 if (abs_offset < block_limit) {
2799 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002800 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002801
2802 *data = (u8 *) st->frag_data + frag->page_offset +
2803 (abs_offset - st->stepped_offset);
2804
2805 return block_limit - abs_offset;
2806 }
2807
2808 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002809 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002810 st->frag_data = NULL;
2811 }
2812
2813 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002814 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002815 }
2816
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002817 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002818 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002819 st->frag_data = NULL;
2820 }
2821
David S. Miller21dc3302010-08-23 00:13:46 -07002822 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002823 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002824 st->frag_idx = 0;
2825 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002826 } else if (st->cur_skb->next) {
2827 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002828 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002829 goto next_skb;
2830 }
2831
2832 return 0;
2833}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002834EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002835
2836/**
2837 * skb_abort_seq_read - Abort a sequential read of skb data
2838 * @st: state variable
2839 *
2840 * Must be called if skb_seq_read() was not called until it
2841 * returned 0.
2842 */
2843void skb_abort_seq_read(struct skb_seq_state *st)
2844{
2845 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002846 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002847}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002848EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002849
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002850#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2851
2852static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2853 struct ts_config *conf,
2854 struct ts_state *state)
2855{
2856 return skb_seq_read(offset, text, TS_SKB_CB(state));
2857}
2858
2859static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2860{
2861 skb_abort_seq_read(TS_SKB_CB(state));
2862}
2863
2864/**
2865 * skb_find_text - Find a text pattern in skb data
2866 * @skb: the buffer to look in
2867 * @from: search offset
2868 * @to: search limit
2869 * @config: textsearch configuration
2870 * @state: uninitialized textsearch state variable
2871 *
2872 * Finds a pattern in the skb data according to the specified
2873 * textsearch configuration. Use textsearch_next() to retrieve
2874 * subsequent occurrences of the pattern. Returns the offset
2875 * to the first occurrence or UINT_MAX if no match was found.
2876 */
2877unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2878 unsigned int to, struct ts_config *config,
2879 struct ts_state *state)
2880{
Phil Oesterf72b9482006-06-26 00:00:57 -07002881 unsigned int ret;
2882
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002883 config->get_next_block = skb_ts_get_next_block;
2884 config->finish = skb_ts_finish;
2885
2886 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2887
Phil Oesterf72b9482006-06-26 00:00:57 -07002888 ret = textsearch_find(config, state);
2889 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002890}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002891EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002892
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002893/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002894 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002895 * @sk: sock structure
Masanari Iidae793c0f2014-09-04 23:44:36 +09002896 * @skb: skb structure to be appended with user data.
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002897 * @getfrag: call back function to be used for getting the user data
2898 * @from: pointer to user message iov
2899 * @length: length of the iov message
2900 *
2901 * Description: This procedure append the user data in the fragment part
2902 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2903 */
2904int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002905 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002906 int len, int odd, struct sk_buff *skb),
2907 void *from, int length)
2908{
Eric Dumazetb2111722012-12-28 06:06:37 +00002909 int frg_cnt = skb_shinfo(skb)->nr_frags;
2910 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002911 int offset = 0;
2912 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002913 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002914
2915 do {
2916 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002917 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002918 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002919
Eric Dumazetb2111722012-12-28 06:06:37 +00002920 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002921 return -ENOMEM;
2922
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002923 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002924 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002925
Eric Dumazetb2111722012-12-28 06:06:37 +00002926 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2927 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002928 if (ret < 0)
2929 return -EFAULT;
2930
2931 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002932 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2933 copy);
2934 frg_cnt++;
2935 pfrag->offset += copy;
2936 get_page(pfrag->page);
2937
2938 skb->truesize += copy;
2939 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002940 skb->len += copy;
2941 skb->data_len += copy;
2942 offset += copy;
2943 length -= copy;
2944
2945 } while (length > 0);
2946
2947 return 0;
2948}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002949EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002950
Herbert Xucbb042f2006-03-20 22:43:56 -08002951/**
2952 * skb_pull_rcsum - pull skb and update receive checksum
2953 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002954 * @len: length of data pulled
2955 *
2956 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002957 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002958 * receive path processing instead of skb_pull unless you know
2959 * that the checksum difference is zero (e.g., a valid IP header)
2960 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002961 */
2962unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2963{
2964 BUG_ON(len > skb->len);
2965 skb->len -= len;
2966 BUG_ON(skb->len < skb->data_len);
2967 skb_postpull_rcsum(skb, skb->data, len);
2968 return skb->data += len;
2969}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002970EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2971
Herbert Xuf4c50d92006-06-22 03:02:40 -07002972/**
2973 * skb_segment - Perform protocol segmentation on skb.
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002974 * @head_skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002975 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002976 *
2977 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002978 * a pointer to the first in a list of new skbs for the segments.
2979 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002980 */
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002981struct sk_buff *skb_segment(struct sk_buff *head_skb,
2982 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002983{
2984 struct sk_buff *segs = NULL;
2985 struct sk_buff *tail = NULL;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02002986 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002987 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
2988 unsigned int mss = skb_shinfo(head_skb)->gso_size;
2989 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02002990 struct sk_buff *frag_skb = head_skb;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002991 unsigned int offset = doffset;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002992 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002993 unsigned int headroom;
2994 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002995 __be16 proto;
2996 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002997 int sg = !!(features & NETIF_F_SG);
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002998 int nfrags = skb_shinfo(head_skb)->nr_frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002999 int err = -ENOMEM;
3000 int i = 0;
3001 int pos;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003002 int dummy;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003003
Wei-Chun Chao5882a072014-06-08 23:48:54 -07003004 __skb_push(head_skb, doffset);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003005 proto = skb_network_protocol(head_skb, &dummy);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003006 if (unlikely(!proto))
3007 return ERR_PTR(-EINVAL);
3008
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003009 csum = !head_skb->encap_hdr_csum &&
3010 !!can_checksum_protocol(features, proto);
3011
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003012 headroom = skb_headroom(head_skb);
3013 pos = skb_headlen(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003014
3015 do {
3016 struct sk_buff *nskb;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003017 skb_frag_t *nskb_frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003018 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003019 int size;
3020
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003021 len = head_skb->len - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003022 if (len > mss)
3023 len = mss;
3024
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003025 hsize = skb_headlen(head_skb) - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003026 if (hsize < 0)
3027 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003028 if (hsize > len || !sg)
3029 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003030
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003031 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3032 (skb_headlen(list_skb) == len || sg)) {
3033 BUG_ON(skb_headlen(list_skb) > len);
Herbert Xu89319d382008-12-15 23:26:06 -08003034
Herbert Xu9d8506c2013-11-21 11:10:04 -08003035 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003036 nfrags = skb_shinfo(list_skb)->nr_frags;
3037 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003038 frag_skb = list_skb;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003039 pos += skb_headlen(list_skb);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003040
3041 while (pos < offset + len) {
3042 BUG_ON(i >= nfrags);
3043
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003044 size = skb_frag_size(frag);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003045 if (pos + size > offset + len)
3046 break;
3047
3048 i++;
3049 pos += size;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003050 frag++;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003051 }
3052
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003053 nskb = skb_clone(list_skb, GFP_ATOMIC);
3054 list_skb = list_skb->next;
Herbert Xu89319d382008-12-15 23:26:06 -08003055
3056 if (unlikely(!nskb))
3057 goto err;
3058
Herbert Xu9d8506c2013-11-21 11:10:04 -08003059 if (unlikely(pskb_trim(nskb, len))) {
3060 kfree_skb(nskb);
3061 goto err;
3062 }
3063
Alexander Duyckec47ea82012-05-04 14:26:56 +00003064 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08003065 if (skb_cow_head(nskb, doffset + headroom)) {
3066 kfree_skb(nskb);
3067 goto err;
3068 }
3069
Alexander Duyckec47ea82012-05-04 14:26:56 +00003070 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08003071 skb_release_head_state(nskb);
3072 __skb_push(nskb, doffset);
3073 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07003074 nskb = __alloc_skb(hsize + doffset + headroom,
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003075 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
Mel Gormanc93bdd02012-07-31 16:44:19 -07003076 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08003077
3078 if (unlikely(!nskb))
3079 goto err;
3080
3081 skb_reserve(nskb, headroom);
3082 __skb_put(nskb, doffset);
3083 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003084
3085 if (segs)
3086 tail->next = nskb;
3087 else
3088 segs = nskb;
3089 tail = nskb;
3090
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003091 __copy_skb_header(nskb, head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003092
Eric Dumazet030737b2013-10-19 11:42:54 -07003093 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Vlad Yasevichfcdfe3a2014-07-31 10:33:06 -04003094 skb_reset_mac_len(nskb);
Pravin B Shelar68c33162013-02-14 14:02:41 +00003095
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003096 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
Pravin B Shelar68c33162013-02-14 14:02:41 +00003097 nskb->data - tnl_hlen,
3098 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08003099
Herbert Xu9d8506c2013-11-21 11:10:04 -08003100 if (nskb->len == len + doffset)
Simon Horman1cdbcb72013-05-19 15:46:49 +00003101 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08003102
Tom Herberte585f232014-11-04 09:06:54 -08003103 if (!sg && !nskb->remcsum_offload) {
Herbert Xu6f85a122008-08-15 14:55:02 -07003104 nskb->ip_summed = CHECKSUM_NONE;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003105 nskb->csum = skb_copy_and_csum_bits(head_skb, offset,
Herbert Xuf4c50d92006-06-22 03:02:40 -07003106 skb_put(nskb, len),
3107 len, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003108 SKB_GSO_CB(nskb)->csum_start =
Tom Herbertde843722014-06-25 12:51:01 -07003109 skb_headroom(nskb) + doffset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003110 continue;
3111 }
3112
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003113 nskb_frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003114
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003115 skb_copy_from_linear_data_offset(head_skb, offset,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003116 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003117
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003118 skb_shinfo(nskb)->tx_flags = skb_shinfo(head_skb)->tx_flags &
3119 SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00003120
Herbert Xu9d8506c2013-11-21 11:10:04 -08003121 while (pos < offset + len) {
3122 if (i >= nfrags) {
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003123 BUG_ON(skb_headlen(list_skb));
Herbert Xu9d8506c2013-11-21 11:10:04 -08003124
3125 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003126 nfrags = skb_shinfo(list_skb)->nr_frags;
3127 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003128 frag_skb = list_skb;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003129
3130 BUG_ON(!nfrags);
3131
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003132 list_skb = list_skb->next;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003133 }
3134
3135 if (unlikely(skb_shinfo(nskb)->nr_frags >=
3136 MAX_SKB_FRAGS)) {
3137 net_warn_ratelimited(
3138 "skb_segment: too many frags: %u %u\n",
3139 pos, mss);
3140 goto err;
3141 }
3142
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003143 if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
3144 goto err;
3145
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003146 *nskb_frag = *frag;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003147 __skb_frag_ref(nskb_frag);
3148 size = skb_frag_size(nskb_frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003149
3150 if (pos < offset) {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003151 nskb_frag->page_offset += offset - pos;
3152 skb_frag_size_sub(nskb_frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003153 }
3154
Herbert Xu89319d382008-12-15 23:26:06 -08003155 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003156
3157 if (pos + size <= offset + len) {
3158 i++;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003159 frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003160 pos += size;
3161 } else {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003162 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08003163 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003164 }
3165
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003166 nskb_frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003167 }
3168
Herbert Xu89319d382008-12-15 23:26:06 -08003169skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07003170 nskb->data_len = len - hsize;
3171 nskb->len += nskb->data_len;
3172 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003173
Simon Horman1cdbcb72013-05-19 15:46:49 +00003174perform_csum_check:
Tom Herberte585f232014-11-04 09:06:54 -08003175 if (!csum && !nskb->remcsum_offload) {
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003176 nskb->csum = skb_checksum(nskb, doffset,
3177 nskb->len - doffset, 0);
3178 nskb->ip_summed = CHECKSUM_NONE;
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003179 SKB_GSO_CB(nskb)->csum_start =
3180 skb_headroom(nskb) + doffset;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003181 }
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003182 } while ((offset += len) < head_skb->len);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003183
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003184 /* Some callers want to get the end of the list.
3185 * Put it in segs->prev to avoid walking the list.
3186 * (see validate_xmit_skb_list() for example)
3187 */
3188 segs->prev = tail;
Toshiaki Makita432c8562014-10-27 10:30:51 -07003189
3190 /* Following permits correct backpressure, for protocols
3191 * using skb_set_owner_w().
3192 * Idea is to tranfert ownership from head_skb to last segment.
3193 */
3194 if (head_skb->destructor == sock_wfree) {
3195 swap(tail->truesize, head_skb->truesize);
3196 swap(tail->destructor, head_skb->destructor);
3197 swap(tail->sk, head_skb->sk);
3198 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003199 return segs;
3200
3201err:
Eric Dumazet289dccb2013-12-20 14:29:08 -08003202 kfree_skb_list(segs);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003203 return ERR_PTR(err);
3204}
Herbert Xuf4c50d92006-06-22 03:02:40 -07003205EXPORT_SYMBOL_GPL(skb_segment);
3206
Herbert Xu71d93b32008-12-15 23:42:33 -08003207int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
3208{
Eric Dumazet8a291112013-10-08 09:02:23 -07003209 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00003210 unsigned int offset = skb_gro_offset(skb);
3211 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003212 struct sk_buff *nskb, *lp, *p = *head;
3213 unsigned int len = skb_gro_len(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003214 unsigned int delta_truesize;
Eric Dumazet8a291112013-10-08 09:02:23 -07003215 unsigned int headroom;
Herbert Xu71d93b32008-12-15 23:42:33 -08003216
Eric Dumazet8a291112013-10-08 09:02:23 -07003217 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08003218 return -E2BIG;
3219
Eric Dumazet29e98242014-05-16 11:34:37 -07003220 lp = NAPI_GRO_CB(p)->last;
Eric Dumazet8a291112013-10-08 09:02:23 -07003221 pinfo = skb_shinfo(lp);
3222
3223 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00003224 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003225 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003226 int i = skbinfo->nr_frags;
3227 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00003228
Herbert Xu66e92fc2009-05-26 18:50:32 +00003229 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003230 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00003231
Eric Dumazet8a291112013-10-08 09:02:23 -07003232 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003233 pinfo->nr_frags = nr_frags;
3234 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08003235
Herbert Xu9aaa1562009-05-26 18:50:33 +00003236 frag = pinfo->frags + nr_frags;
3237 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003238 do {
3239 *--frag = *--frag2;
3240 } while (--i);
3241
3242 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003243 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00003244
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003245 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00003246 delta_truesize = skb->truesize -
3247 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003248
Herbert Xuf5572062009-01-14 20:40:03 -08003249 skb->truesize -= skb->data_len;
3250 skb->len -= skb->data_len;
3251 skb->data_len = 0;
3252
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003253 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08003254 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003255 } else if (skb->head_frag) {
3256 int nr_frags = pinfo->nr_frags;
3257 skb_frag_t *frag = pinfo->frags + nr_frags;
3258 struct page *page = virt_to_head_page(skb->head);
3259 unsigned int first_size = headlen - offset;
3260 unsigned int first_offset;
3261
3262 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003263 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003264
3265 first_offset = skb->data -
3266 (unsigned char *)page_address(page) +
3267 offset;
3268
3269 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3270
3271 frag->page.p = page;
3272 frag->page_offset = first_offset;
3273 skb_frag_size_set(frag, first_size);
3274
3275 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3276 /* We dont need to clear skbinfo->nr_frags here */
3277
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003278 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003279 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3280 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003281 }
Eric Dumazet73d3fe62014-09-29 10:34:29 -07003282 /* switch back to head shinfo */
3283 pinfo = skb_shinfo(p);
3284
Eric Dumazet8a291112013-10-08 09:02:23 -07003285 if (pinfo->frag_list)
3286 goto merge;
3287 if (skb_gro_len(p) != pinfo->gso_size)
Herbert Xu69c0cab2009-11-17 05:18:18 -08003288 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08003289
3290 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00003291 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08003292 if (unlikely(!nskb))
3293 return -ENOMEM;
3294
3295 __copy_skb_header(nskb, p);
3296 nskb->mac_len = p->mac_len;
3297
3298 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00003299 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003300
Herbert Xu86911732009-01-29 14:19:50 +00003301 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003302 skb_set_network_header(nskb, skb_network_offset(p));
3303 skb_set_transport_header(nskb, skb_transport_offset(p));
3304
Herbert Xu86911732009-01-29 14:19:50 +00003305 __skb_pull(p, skb_gro_offset(p));
3306 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3307 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003308
Herbert Xu71d93b32008-12-15 23:42:33 -08003309 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003310 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003311 pinfo->gso_size = 0;
Eric Dumazetf4a775d2014-09-22 16:29:32 -07003312 __skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003313 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003314
3315 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003316 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003317 nskb->len += p->len;
3318
3319 *head = nskb;
3320 nskb->next = p->next;
3321 p->next = NULL;
3322
3323 p = nskb;
3324
3325merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003326 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003327 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003328 unsigned int eat = offset - headlen;
3329
3330 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003331 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003332 skb->data_len -= eat;
3333 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003334 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003335 }
3336
Herbert Xu67147ba2009-05-26 18:50:22 +00003337 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003338
Eric Dumazet29e98242014-05-16 11:34:37 -07003339 if (NAPI_GRO_CB(p)->last == p)
Eric Dumazet8a291112013-10-08 09:02:23 -07003340 skb_shinfo(p)->frag_list = skb;
3341 else
3342 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003343 NAPI_GRO_CB(p)->last = skb;
Eric Dumazetf4a775d2014-09-22 16:29:32 -07003344 __skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003345 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003346
Herbert Xu5d38a072009-01-04 16:13:40 -08003347done:
3348 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003349 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003350 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003351 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003352 if (lp != p) {
3353 lp->data_len += len;
3354 lp->truesize += delta_truesize;
3355 lp->len += len;
3356 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003357 NAPI_GRO_CB(skb)->same_flow = 1;
3358 return 0;
3359}
Herbert Xu71d93b32008-12-15 23:42:33 -08003360
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361void __init skb_init(void)
3362{
3363 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3364 sizeof(struct sk_buff),
3365 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003366 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003367 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003368 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07003369 sizeof(struct sk_buff_fclones),
David S. Millerd179cd12005-08-17 14:57:30 -07003370 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003371 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003372 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373}
3374
David Howells716ea3a2007-04-02 20:19:53 -07003375/**
3376 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3377 * @skb: Socket buffer containing the buffers to be mapped
3378 * @sg: The scatter-gather list to map into
3379 * @offset: The offset into the buffer's contents to start mapping
3380 * @len: Length of buffer space to be mapped
3381 *
3382 * Fill the specified scatter-gather list with mappings/pointers into a
3383 * region of the buffer space attached to a socket buffer.
3384 */
David S. Miller51c739d2007-10-30 21:29:29 -07003385static int
3386__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003387{
David S. Miller1a028e52007-04-27 15:21:23 -07003388 int start = skb_headlen(skb);
3389 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003390 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003391 int elt = 0;
3392
3393 if (copy > 0) {
3394 if (copy > len)
3395 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003396 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003397 elt++;
3398 if ((len -= copy) == 0)
3399 return elt;
3400 offset += copy;
3401 }
3402
3403 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003404 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003405
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003406 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003407
Eric Dumazet9e903e02011-10-18 21:00:24 +00003408 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003409 if ((copy = end - offset) > 0) {
3410 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3411
3412 if (copy > len)
3413 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003414 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003415 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003416 elt++;
3417 if (!(len -= copy))
3418 return elt;
3419 offset += copy;
3420 }
David S. Miller1a028e52007-04-27 15:21:23 -07003421 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003422 }
3423
David S. Millerfbb398a2009-06-09 00:18:59 -07003424 skb_walk_frags(skb, frag_iter) {
3425 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003426
David S. Millerfbb398a2009-06-09 00:18:59 -07003427 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003428
David S. Millerfbb398a2009-06-09 00:18:59 -07003429 end = start + frag_iter->len;
3430 if ((copy = end - offset) > 0) {
3431 if (copy > len)
3432 copy = len;
3433 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3434 copy);
3435 if ((len -= copy) == 0)
3436 return elt;
3437 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003438 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003439 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003440 }
3441 BUG_ON(len);
3442 return elt;
3443}
3444
Fan Du25a91d82014-01-18 09:54:23 +08003445/* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
3446 * sglist without mark the sg which contain last skb data as the end.
3447 * So the caller can mannipulate sg list as will when padding new data after
3448 * the first call without calling sg_unmark_end to expend sg list.
3449 *
3450 * Scenario to use skb_to_sgvec_nomark:
3451 * 1. sg_init_table
3452 * 2. skb_to_sgvec_nomark(payload1)
3453 * 3. skb_to_sgvec_nomark(payload2)
3454 *
3455 * This is equivalent to:
3456 * 1. sg_init_table
3457 * 2. skb_to_sgvec(payload1)
3458 * 3. sg_unmark_end
3459 * 4. skb_to_sgvec(payload2)
3460 *
3461 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
3462 * is more preferable.
3463 */
3464int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
3465 int offset, int len)
3466{
3467 return __skb_to_sgvec(skb, sg, offset, len);
3468}
3469EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
3470
David S. Miller51c739d2007-10-30 21:29:29 -07003471int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3472{
3473 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3474
Jens Axboec46f2332007-10-31 12:06:37 +01003475 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003476
3477 return nsg;
3478}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003479EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003480
David Howells716ea3a2007-04-02 20:19:53 -07003481/**
3482 * skb_cow_data - Check that a socket buffer's data buffers are writable
3483 * @skb: The socket buffer to check.
3484 * @tailbits: Amount of trailing space to be added
3485 * @trailer: Returned pointer to the skb where the @tailbits space begins
3486 *
3487 * Make sure that the data buffers attached to a socket buffer are
3488 * writable. If they are not, private copies are made of the data buffers
3489 * and the socket buffer is set to use these instead.
3490 *
3491 * If @tailbits is given, make sure that there is space to write @tailbits
3492 * bytes of data beyond current end of socket buffer. @trailer will be
3493 * set to point to the skb in which this space begins.
3494 *
3495 * The number of scatterlist elements required to completely map the
3496 * COW'd and extended socket buffer will be returned.
3497 */
3498int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3499{
3500 int copyflag;
3501 int elt;
3502 struct sk_buff *skb1, **skb_p;
3503
3504 /* If skb is cloned or its head is paged, reallocate
3505 * head pulling out all the pages (pages are considered not writable
3506 * at the moment even if they are anonymous).
3507 */
3508 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3509 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3510 return -ENOMEM;
3511
3512 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003513 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003514 /* A little of trouble, not enough of space for trailer.
3515 * This should not happen, when stack is tuned to generate
3516 * good frames. OK, on miss we reallocate and reserve even more
3517 * space, 128 bytes is fair. */
3518
3519 if (skb_tailroom(skb) < tailbits &&
3520 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3521 return -ENOMEM;
3522
3523 /* Voila! */
3524 *trailer = skb;
3525 return 1;
3526 }
3527
3528 /* Misery. We are in troubles, going to mincer fragments... */
3529
3530 elt = 1;
3531 skb_p = &skb_shinfo(skb)->frag_list;
3532 copyflag = 0;
3533
3534 while ((skb1 = *skb_p) != NULL) {
3535 int ntail = 0;
3536
3537 /* The fragment is partially pulled by someone,
3538 * this can happen on input. Copy it and everything
3539 * after it. */
3540
3541 if (skb_shared(skb1))
3542 copyflag = 1;
3543
3544 /* If the skb is the last, worry about trailer. */
3545
3546 if (skb1->next == NULL && tailbits) {
3547 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003548 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003549 skb_tailroom(skb1) < tailbits)
3550 ntail = tailbits + 128;
3551 }
3552
3553 if (copyflag ||
3554 skb_cloned(skb1) ||
3555 ntail ||
3556 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003557 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003558 struct sk_buff *skb2;
3559
3560 /* Fuck, we are miserable poor guys... */
3561 if (ntail == 0)
3562 skb2 = skb_copy(skb1, GFP_ATOMIC);
3563 else
3564 skb2 = skb_copy_expand(skb1,
3565 skb_headroom(skb1),
3566 ntail,
3567 GFP_ATOMIC);
3568 if (unlikely(skb2 == NULL))
3569 return -ENOMEM;
3570
3571 if (skb1->sk)
3572 skb_set_owner_w(skb2, skb1->sk);
3573
3574 /* Looking around. Are we still alive?
3575 * OK, link new skb, drop old one */
3576
3577 skb2->next = skb1->next;
3578 *skb_p = skb2;
3579 kfree_skb(skb1);
3580 skb1 = skb2;
3581 }
3582 elt++;
3583 *trailer = skb1;
3584 skb_p = &skb1->next;
3585 }
3586
3587 return elt;
3588}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003589EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003590
Eric Dumazetb1faf562010-05-31 23:44:05 -07003591static void sock_rmem_free(struct sk_buff *skb)
3592{
3593 struct sock *sk = skb->sk;
3594
3595 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3596}
3597
3598/*
3599 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3600 */
3601int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3602{
3603 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003604 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003605 return -ENOMEM;
3606
3607 skb_orphan(skb);
3608 skb->sk = sk;
3609 skb->destructor = sock_rmem_free;
3610 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3611
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003612 /* before exiting rcu section, make sure dst is refcounted */
3613 skb_dst_force(skb);
3614
Eric Dumazetb1faf562010-05-31 23:44:05 -07003615 skb_queue_tail(&sk->sk_error_queue, skb);
3616 if (!sock_flag(sk, SOCK_DEAD))
David S. Miller676d2362014-04-11 16:15:36 -04003617 sk->sk_data_ready(sk);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003618 return 0;
3619}
3620EXPORT_SYMBOL(sock_queue_err_skb);
3621
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003622struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
3623{
3624 struct sk_buff_head *q = &sk->sk_error_queue;
3625 struct sk_buff *skb, *skb_next;
3626 int err = 0;
3627
3628 spin_lock_bh(&q->lock);
3629 skb = __skb_dequeue(q);
3630 if (skb && (skb_next = skb_peek(q)))
3631 err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
3632 spin_unlock_bh(&q->lock);
3633
3634 sk->sk_err = err;
3635 if (err)
3636 sk->sk_error_report(sk);
3637
3638 return skb;
3639}
3640EXPORT_SYMBOL(sock_dequeue_err_skb);
3641
Alexander Duyckcab41c42014-09-10 18:05:26 -04003642/**
3643 * skb_clone_sk - create clone of skb, and take reference to socket
3644 * @skb: the skb to clone
3645 *
3646 * This function creates a clone of a buffer that holds a reference on
3647 * sk_refcnt. Buffers created via this function are meant to be
3648 * returned using sock_queue_err_skb, or free via kfree_skb.
3649 *
3650 * When passing buffers allocated with this function to sock_queue_err_skb
3651 * it is necessary to wrap the call with sock_hold/sock_put in order to
3652 * prevent the socket from being released prior to being enqueued on
3653 * the sk_error_queue.
3654 */
Alexander Duyck62bccb82014-09-04 13:31:35 -04003655struct sk_buff *skb_clone_sk(struct sk_buff *skb)
3656{
3657 struct sock *sk = skb->sk;
3658 struct sk_buff *clone;
3659
3660 if (!sk || !atomic_inc_not_zero(&sk->sk_refcnt))
3661 return NULL;
3662
3663 clone = skb_clone(skb, GFP_ATOMIC);
3664 if (!clone) {
3665 sock_put(sk);
3666 return NULL;
3667 }
3668
3669 clone->sk = sk;
3670 clone->destructor = sock_efree;
3671
3672 return clone;
3673}
3674EXPORT_SYMBOL(skb_clone_sk);
3675
Alexander Duyck37846ef2014-09-04 13:31:10 -04003676static void __skb_complete_tx_timestamp(struct sk_buff *skb,
3677 struct sock *sk,
3678 int tstype)
Patrick Ohlyac45f602009-02-12 05:03:37 +00003679{
Patrick Ohlyac45f602009-02-12 05:03:37 +00003680 struct sock_exterr_skb *serr;
Patrick Ohlyac45f602009-02-12 05:03:37 +00003681 int err;
3682
Patrick Ohlyac45f602009-02-12 05:03:37 +00003683 serr = SKB_EXT_ERR(skb);
3684 memset(serr, 0, sizeof(*serr));
3685 serr->ee.ee_errno = ENOMSG;
3686 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003687 serr->ee.ee_info = tstype;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003688 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
Willem de Bruijn09c2d252014-08-04 22:11:47 -04003689 serr->ee.ee_data = skb_shinfo(skb)->tskey;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003690 if (sk->sk_protocol == IPPROTO_TCP)
3691 serr->ee.ee_data -= sk->sk_tskey;
3692 }
Eric Dumazet29030372010-05-29 00:20:48 -07003693
Patrick Ohlyac45f602009-02-12 05:03:37 +00003694 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003695
Patrick Ohlyac45f602009-02-12 05:03:37 +00003696 if (err)
3697 kfree_skb(skb);
3698}
Alexander Duyck37846ef2014-09-04 13:31:10 -04003699
3700void skb_complete_tx_timestamp(struct sk_buff *skb,
3701 struct skb_shared_hwtstamps *hwtstamps)
3702{
3703 struct sock *sk = skb->sk;
3704
Alexander Duyck62bccb82014-09-04 13:31:35 -04003705 /* take a reference to prevent skb_orphan() from freeing the socket */
3706 sock_hold(sk);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003707
Alexander Duyck62bccb82014-09-04 13:31:35 -04003708 *skb_hwtstamps(skb) = *hwtstamps;
3709 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003710
3711 sock_put(sk);
3712}
3713EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
3714
3715void __skb_tstamp_tx(struct sk_buff *orig_skb,
3716 struct skb_shared_hwtstamps *hwtstamps,
3717 struct sock *sk, int tstype)
3718{
3719 struct sk_buff *skb;
3720
3721 if (!sk)
3722 return;
3723
3724 if (hwtstamps)
3725 *skb_hwtstamps(orig_skb) = *hwtstamps;
3726 else
3727 orig_skb->tstamp = ktime_get_real();
3728
3729 skb = skb_clone(orig_skb, GFP_ATOMIC);
3730 if (!skb)
3731 return;
3732
3733 __skb_complete_tx_timestamp(skb, sk, tstype);
3734}
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003735EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
3736
3737void skb_tstamp_tx(struct sk_buff *orig_skb,
3738 struct skb_shared_hwtstamps *hwtstamps)
3739{
3740 return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
3741 SCM_TSTAMP_SND);
3742}
Patrick Ohlyac45f602009-02-12 05:03:37 +00003743EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3744
Johannes Berg6e3e9392011-11-09 10:15:42 +01003745void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3746{
3747 struct sock *sk = skb->sk;
3748 struct sock_exterr_skb *serr;
3749 int err;
3750
3751 skb->wifi_acked_valid = 1;
3752 skb->wifi_acked = acked;
3753
3754 serr = SKB_EXT_ERR(skb);
3755 memset(serr, 0, sizeof(*serr));
3756 serr->ee.ee_errno = ENOMSG;
3757 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3758
Alexander Duyckbf7fa552014-09-10 18:05:42 -04003759 /* take a reference to prevent skb_orphan() from freeing the socket */
3760 sock_hold(sk);
3761
Johannes Berg6e3e9392011-11-09 10:15:42 +01003762 err = sock_queue_err_skb(sk, skb);
3763 if (err)
3764 kfree_skb(skb);
Alexander Duyckbf7fa552014-09-10 18:05:42 -04003765
3766 sock_put(sk);
Johannes Berg6e3e9392011-11-09 10:15:42 +01003767}
3768EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3769
Patrick Ohlyac45f602009-02-12 05:03:37 +00003770
Rusty Russellf35d9d82008-02-04 23:49:54 -05003771/**
3772 * skb_partial_csum_set - set up and verify partial csum values for packet
3773 * @skb: the skb to set
3774 * @start: the number of bytes after skb->data to start checksumming.
3775 * @off: the offset from start to place the checksum.
3776 *
3777 * For untrusted partially-checksummed packets, we need to make sure the values
3778 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3779 *
3780 * This function checks and sets those values and skb->ip_summed: if this
3781 * returns false you should drop the packet.
3782 */
3783bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3784{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003785 if (unlikely(start > skb_headlen(skb)) ||
3786 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003787 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3788 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003789 return false;
3790 }
3791 skb->ip_summed = CHECKSUM_PARTIAL;
3792 skb->csum_start = skb_headroom(skb) + start;
3793 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003794 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003795 return true;
3796}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003797EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003798
Paul Durranted1f50c2014-01-09 10:02:46 +00003799static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
3800 unsigned int max)
3801{
3802 if (skb_headlen(skb) >= len)
3803 return 0;
3804
3805 /* If we need to pullup then pullup to the max, so we
3806 * won't need to do it again.
3807 */
3808 if (max > skb->len)
3809 max = skb->len;
3810
3811 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
3812 return -ENOMEM;
3813
3814 if (skb_headlen(skb) < len)
3815 return -EPROTO;
3816
3817 return 0;
3818}
3819
Jan Beulichf9708b42014-03-11 13:56:05 +00003820#define MAX_TCP_HDR_LEN (15 * 4)
3821
3822static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
3823 typeof(IPPROTO_IP) proto,
3824 unsigned int off)
3825{
3826 switch (proto) {
3827 int err;
3828
3829 case IPPROTO_TCP:
3830 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
3831 off + MAX_TCP_HDR_LEN);
3832 if (!err && !skb_partial_csum_set(skb, off,
3833 offsetof(struct tcphdr,
3834 check)))
3835 err = -EPROTO;
3836 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
3837
3838 case IPPROTO_UDP:
3839 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
3840 off + sizeof(struct udphdr));
3841 if (!err && !skb_partial_csum_set(skb, off,
3842 offsetof(struct udphdr,
3843 check)))
3844 err = -EPROTO;
3845 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
3846 }
3847
3848 return ERR_PTR(-EPROTO);
3849}
3850
Paul Durranted1f50c2014-01-09 10:02:46 +00003851/* This value should be large enough to cover a tagged ethernet header plus
3852 * maximally sized IP and TCP or UDP headers.
3853 */
3854#define MAX_IP_HDR_LEN 128
3855
Jan Beulichf9708b42014-03-11 13:56:05 +00003856static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
Paul Durranted1f50c2014-01-09 10:02:46 +00003857{
3858 unsigned int off;
3859 bool fragment;
Jan Beulichf9708b42014-03-11 13:56:05 +00003860 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00003861 int err;
3862
3863 fragment = false;
3864
3865 err = skb_maybe_pull_tail(skb,
3866 sizeof(struct iphdr),
3867 MAX_IP_HDR_LEN);
3868 if (err < 0)
3869 goto out;
3870
3871 if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
3872 fragment = true;
3873
3874 off = ip_hdrlen(skb);
3875
3876 err = -EPROTO;
3877
3878 if (fragment)
3879 goto out;
3880
Jan Beulichf9708b42014-03-11 13:56:05 +00003881 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
3882 if (IS_ERR(csum))
3883 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00003884
Jan Beulichf9708b42014-03-11 13:56:05 +00003885 if (recalculate)
3886 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
3887 ip_hdr(skb)->daddr,
3888 skb->len - off,
3889 ip_hdr(skb)->protocol, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00003890 err = 0;
3891
3892out:
3893 return err;
3894}
3895
3896/* This value should be large enough to cover a tagged ethernet header plus
3897 * an IPv6 header, all options, and a maximal TCP or UDP header.
3898 */
3899#define MAX_IPV6_HDR_LEN 256
3900
3901#define OPT_HDR(type, skb, off) \
3902 (type *)(skb_network_header(skb) + (off))
3903
3904static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
3905{
3906 int err;
3907 u8 nexthdr;
3908 unsigned int off;
3909 unsigned int len;
3910 bool fragment;
3911 bool done;
Jan Beulichf9708b42014-03-11 13:56:05 +00003912 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00003913
3914 fragment = false;
3915 done = false;
3916
3917 off = sizeof(struct ipv6hdr);
3918
3919 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
3920 if (err < 0)
3921 goto out;
3922
3923 nexthdr = ipv6_hdr(skb)->nexthdr;
3924
3925 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
3926 while (off <= len && !done) {
3927 switch (nexthdr) {
3928 case IPPROTO_DSTOPTS:
3929 case IPPROTO_HOPOPTS:
3930 case IPPROTO_ROUTING: {
3931 struct ipv6_opt_hdr *hp;
3932
3933 err = skb_maybe_pull_tail(skb,
3934 off +
3935 sizeof(struct ipv6_opt_hdr),
3936 MAX_IPV6_HDR_LEN);
3937 if (err < 0)
3938 goto out;
3939
3940 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
3941 nexthdr = hp->nexthdr;
3942 off += ipv6_optlen(hp);
3943 break;
3944 }
3945 case IPPROTO_AH: {
3946 struct ip_auth_hdr *hp;
3947
3948 err = skb_maybe_pull_tail(skb,
3949 off +
3950 sizeof(struct ip_auth_hdr),
3951 MAX_IPV6_HDR_LEN);
3952 if (err < 0)
3953 goto out;
3954
3955 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
3956 nexthdr = hp->nexthdr;
3957 off += ipv6_authlen(hp);
3958 break;
3959 }
3960 case IPPROTO_FRAGMENT: {
3961 struct frag_hdr *hp;
3962
3963 err = skb_maybe_pull_tail(skb,
3964 off +
3965 sizeof(struct frag_hdr),
3966 MAX_IPV6_HDR_LEN);
3967 if (err < 0)
3968 goto out;
3969
3970 hp = OPT_HDR(struct frag_hdr, skb, off);
3971
3972 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
3973 fragment = true;
3974
3975 nexthdr = hp->nexthdr;
3976 off += sizeof(struct frag_hdr);
3977 break;
3978 }
3979 default:
3980 done = true;
3981 break;
3982 }
3983 }
3984
3985 err = -EPROTO;
3986
3987 if (!done || fragment)
3988 goto out;
3989
Jan Beulichf9708b42014-03-11 13:56:05 +00003990 csum = skb_checksum_setup_ip(skb, nexthdr, off);
3991 if (IS_ERR(csum))
3992 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00003993
Jan Beulichf9708b42014-03-11 13:56:05 +00003994 if (recalculate)
3995 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
3996 &ipv6_hdr(skb)->daddr,
3997 skb->len - off, nexthdr, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00003998 err = 0;
3999
4000out:
4001 return err;
4002}
4003
4004/**
4005 * skb_checksum_setup - set up partial checksum offset
4006 * @skb: the skb to set up
4007 * @recalculate: if true the pseudo-header checksum will be recalculated
4008 */
4009int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4010{
4011 int err;
4012
4013 switch (skb->protocol) {
4014 case htons(ETH_P_IP):
Jan Beulichf9708b42014-03-11 13:56:05 +00004015 err = skb_checksum_setup_ipv4(skb, recalculate);
Paul Durranted1f50c2014-01-09 10:02:46 +00004016 break;
4017
4018 case htons(ETH_P_IPV6):
4019 err = skb_checksum_setup_ipv6(skb, recalculate);
4020 break;
4021
4022 default:
4023 err = -EPROTO;
4024 break;
4025 }
4026
4027 return err;
4028}
4029EXPORT_SYMBOL(skb_checksum_setup);
4030
Ben Hutchings4497b072008-06-19 16:22:28 -07004031void __skb_warn_lro_forwarding(const struct sk_buff *skb)
4032{
Joe Perchese87cc472012-05-13 21:56:26 +00004033 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4034 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07004035}
Ben Hutchings4497b072008-06-19 16:22:28 -07004036EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004037
4038void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4039{
Eric Dumazet3d861f62012-10-22 09:03:40 +00004040 if (head_stolen) {
4041 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004042 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004043 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004044 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004045 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004046}
4047EXPORT_SYMBOL(kfree_skb_partial);
4048
4049/**
4050 * skb_try_coalesce - try to merge skb to prior one
4051 * @to: prior buffer
4052 * @from: buffer to add
4053 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00004054 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004055 */
4056bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4057 bool *fragstolen, int *delta_truesize)
4058{
4059 int i, delta, len = from->len;
4060
4061 *fragstolen = false;
4062
4063 if (skb_cloned(to))
4064 return false;
4065
4066 if (len <= skb_tailroom(to)) {
Eric Dumazete93a0432014-09-15 04:19:52 -07004067 if (len)
4068 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004069 *delta_truesize = 0;
4070 return true;
4071 }
4072
4073 if (skb_has_frag_list(to) || skb_has_frag_list(from))
4074 return false;
4075
4076 if (skb_headlen(from) != 0) {
4077 struct page *page;
4078 unsigned int offset;
4079
4080 if (skb_shinfo(to)->nr_frags +
4081 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4082 return false;
4083
4084 if (skb_head_is_locked(from))
4085 return false;
4086
4087 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4088
4089 page = virt_to_head_page(from->head);
4090 offset = from->data - (unsigned char *)page_address(page);
4091
4092 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4093 page, offset, skb_headlen(from));
4094 *fragstolen = true;
4095 } else {
4096 if (skb_shinfo(to)->nr_frags +
4097 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4098 return false;
4099
Weiping Panf4b549a2012-09-28 20:15:30 +00004100 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004101 }
4102
4103 WARN_ON_ONCE(delta < len);
4104
4105 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4106 skb_shinfo(from)->frags,
4107 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4108 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4109
4110 if (!skb_cloned(from))
4111 skb_shinfo(from)->nr_frags = 0;
4112
Li RongQing8ea853f2012-09-18 16:53:21 +00004113 /* if the skb is not cloned this does nothing
4114 * since we set nr_frags to 0.
4115 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004116 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4117 skb_frag_ref(from, i);
4118
4119 to->truesize += delta;
4120 to->len += len;
4121 to->data_len += len;
4122
4123 *delta_truesize = delta;
4124 return true;
4125}
4126EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004127
4128/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004129 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004130 *
4131 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004132 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004133 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004134 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
4135 * into/from a tunnel. Some information have to be cleared during these
4136 * operations.
4137 * skb_scrub_packet can also be used to clean a skb before injecting it in
4138 * another namespace (@xnet == true). We have to clear all information in the
4139 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004140 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004141void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004142{
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004143 if (xnet)
4144 skb_orphan(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004145 skb->tstamp.tv64 = 0;
4146 skb->pkt_type = PACKET_HOST;
4147 skb->skb_iif = 0;
WANG Cong60ff7462014-05-04 16:39:18 -07004148 skb->ignore_df = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004149 skb_dst_drop(skb);
4150 skb->mark = 0;
4151 secpath_reset(skb);
4152 nf_reset(skb);
4153 nf_reset_trace(skb);
4154}
4155EXPORT_SYMBOL_GPL(skb_scrub_packet);
Florian Westphalde960aa2014-01-26 10:58:16 +01004156
4157/**
4158 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4159 *
4160 * @skb: GSO skb
4161 *
4162 * skb_gso_transport_seglen is used to determine the real size of the
4163 * individual segments, including Layer4 headers (TCP/UDP).
4164 *
4165 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4166 */
4167unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4168{
4169 const struct skb_shared_info *shinfo = skb_shinfo(skb);
Florian Westphalf993bc22014-10-20 13:49:18 +02004170 unsigned int thlen = 0;
Florian Westphalde960aa2014-01-26 10:58:16 +01004171
Florian Westphalf993bc22014-10-20 13:49:18 +02004172 if (skb->encapsulation) {
4173 thlen = skb_inner_transport_header(skb) -
4174 skb_transport_header(skb);
Florian Westphal6d39d582014-04-09 10:28:50 +02004175
Florian Westphalf993bc22014-10-20 13:49:18 +02004176 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4177 thlen += inner_tcp_hdrlen(skb);
4178 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4179 thlen = tcp_hdrlen(skb);
4180 }
Florian Westphal6d39d582014-04-09 10:28:50 +02004181 /* UFO sets gso_size to the size of the fragmentation
4182 * payload, i.e. the size of the L4 (UDP) header is already
4183 * accounted for.
4184 */
Florian Westphalf993bc22014-10-20 13:49:18 +02004185 return thlen + shinfo->gso_size;
Florian Westphalde960aa2014-01-26 10:58:16 +01004186}
4187EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004188
4189static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
4190{
4191 if (skb_cow(skb, skb_headroom(skb)) < 0) {
4192 kfree_skb(skb);
4193 return NULL;
4194 }
4195
4196 memmove(skb->data - ETH_HLEN, skb->data - VLAN_ETH_HLEN, 2 * ETH_ALEN);
4197 skb->mac_header += VLAN_HLEN;
4198 return skb;
4199}
4200
4201struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
4202{
4203 struct vlan_hdr *vhdr;
4204 u16 vlan_tci;
4205
4206 if (unlikely(vlan_tx_tag_present(skb))) {
4207 /* vlan_tci is already set-up so leave this for another time */
4208 return skb;
4209 }
4210
4211 skb = skb_share_check(skb, GFP_ATOMIC);
4212 if (unlikely(!skb))
4213 goto err_free;
4214
4215 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
4216 goto err_free;
4217
4218 vhdr = (struct vlan_hdr *)skb->data;
4219 vlan_tci = ntohs(vhdr->h_vlan_TCI);
4220 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
4221
4222 skb_pull_rcsum(skb, VLAN_HLEN);
4223 vlan_set_encap_proto(skb, vhdr);
4224
4225 skb = skb_reorder_vlan_header(skb);
4226 if (unlikely(!skb))
4227 goto err_free;
4228
4229 skb_reset_network_header(skb);
4230 skb_reset_transport_header(skb);
4231 skb_reset_mac_len(skb);
4232
4233 return skb;
4234
4235err_free:
4236 kfree_skb(skb);
4237 return NULL;
4238}
4239EXPORT_SYMBOL(skb_vlan_untag);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004240
Jiri Pirkoe2195122014-11-19 14:05:01 +01004241int skb_ensure_writable(struct sk_buff *skb, int write_len)
4242{
4243 if (!pskb_may_pull(skb, write_len))
4244 return -ENOMEM;
4245
4246 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
4247 return 0;
4248
4249 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4250}
4251EXPORT_SYMBOL(skb_ensure_writable);
4252
Jiri Pirko93515d52014-11-19 14:05:02 +01004253/* remove VLAN header from packet and update csum accordingly. */
4254static int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
4255{
4256 struct vlan_hdr *vhdr;
4257 unsigned int offset = skb->data - skb_mac_header(skb);
4258 int err;
4259
4260 __skb_push(skb, offset);
4261 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
4262 if (unlikely(err))
4263 goto pull;
4264
4265 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
4266
4267 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
4268 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
4269
4270 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
4271 __skb_pull(skb, VLAN_HLEN);
4272
4273 vlan_set_encap_proto(skb, vhdr);
4274 skb->mac_header += VLAN_HLEN;
4275
4276 if (skb_network_offset(skb) < ETH_HLEN)
4277 skb_set_network_header(skb, ETH_HLEN);
4278
4279 skb_reset_mac_len(skb);
4280pull:
4281 __skb_pull(skb, offset);
4282
4283 return err;
4284}
4285
4286int skb_vlan_pop(struct sk_buff *skb)
4287{
4288 u16 vlan_tci;
4289 __be16 vlan_proto;
4290 int err;
4291
4292 if (likely(vlan_tx_tag_present(skb))) {
4293 skb->vlan_tci = 0;
4294 } else {
4295 if (unlikely((skb->protocol != htons(ETH_P_8021Q) &&
4296 skb->protocol != htons(ETH_P_8021AD)) ||
4297 skb->len < VLAN_ETH_HLEN))
4298 return 0;
4299
4300 err = __skb_vlan_pop(skb, &vlan_tci);
4301 if (err)
4302 return err;
4303 }
4304 /* move next vlan tag to hw accel tag */
4305 if (likely((skb->protocol != htons(ETH_P_8021Q) &&
4306 skb->protocol != htons(ETH_P_8021AD)) ||
4307 skb->len < VLAN_ETH_HLEN))
4308 return 0;
4309
4310 vlan_proto = skb->protocol;
4311 err = __skb_vlan_pop(skb, &vlan_tci);
4312 if (unlikely(err))
4313 return err;
4314
4315 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4316 return 0;
4317}
4318EXPORT_SYMBOL(skb_vlan_pop);
4319
4320int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
4321{
4322 if (vlan_tx_tag_present(skb)) {
4323 unsigned int offset = skb->data - skb_mac_header(skb);
4324 int err;
4325
4326 /* __vlan_insert_tag expect skb->data pointing to mac header.
4327 * So change skb->data before calling it and change back to
4328 * original position later
4329 */
4330 __skb_push(skb, offset);
4331 err = __vlan_insert_tag(skb, skb->vlan_proto,
4332 vlan_tx_tag_get(skb));
4333 if (err)
4334 return err;
4335 skb->protocol = skb->vlan_proto;
4336 skb->mac_len += VLAN_HLEN;
4337 __skb_pull(skb, offset);
4338
4339 if (skb->ip_summed == CHECKSUM_COMPLETE)
4340 skb->csum = csum_add(skb->csum, csum_partial(skb->data
4341 + (2 * ETH_ALEN), VLAN_HLEN, 0));
4342 }
4343 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4344 return 0;
4345}
4346EXPORT_SYMBOL(skb_vlan_push);
4347
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004348/**
4349 * alloc_skb_with_frags - allocate skb with page frags
4350 *
Masanari Iidade3f0d02014-10-09 12:58:08 +09004351 * @header_len: size of linear part
4352 * @data_len: needed length in frags
4353 * @max_page_order: max page order desired.
4354 * @errcode: pointer to error code if any
4355 * @gfp_mask: allocation mask
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004356 *
4357 * This can be used to allocate a paged skb, given a maximal order for frags.
4358 */
4359struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
4360 unsigned long data_len,
4361 int max_page_order,
4362 int *errcode,
4363 gfp_t gfp_mask)
4364{
4365 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
4366 unsigned long chunk;
4367 struct sk_buff *skb;
4368 struct page *page;
4369 gfp_t gfp_head;
4370 int i;
4371
4372 *errcode = -EMSGSIZE;
4373 /* Note this test could be relaxed, if we succeed to allocate
4374 * high order pages...
4375 */
4376 if (npages > MAX_SKB_FRAGS)
4377 return NULL;
4378
4379 gfp_head = gfp_mask;
4380 if (gfp_head & __GFP_WAIT)
4381 gfp_head |= __GFP_REPEAT;
4382
4383 *errcode = -ENOBUFS;
4384 skb = alloc_skb(header_len, gfp_head);
4385 if (!skb)
4386 return NULL;
4387
4388 skb->truesize += npages << PAGE_SHIFT;
4389
4390 for (i = 0; npages > 0; i++) {
4391 int order = max_page_order;
4392
4393 while (order) {
4394 if (npages >= 1 << order) {
4395 page = alloc_pages(gfp_mask |
4396 __GFP_COMP |
4397 __GFP_NOWARN |
4398 __GFP_NORETRY,
4399 order);
4400 if (page)
4401 goto fill_page;
4402 /* Do not retry other high order allocations */
4403 order = 1;
4404 max_page_order = 0;
4405 }
4406 order--;
4407 }
4408 page = alloc_page(gfp_mask);
4409 if (!page)
4410 goto failure;
4411fill_page:
4412 chunk = min_t(unsigned long, data_len,
4413 PAGE_SIZE << order);
4414 skb_fill_page_desc(skb, i, page, 0, chunk);
4415 data_len -= chunk;
4416 npages -= 1 << order;
4417 }
4418 return skb;
4419
4420failure:
4421 kfree_skb(skb);
4422 return NULL;
4423}
4424EXPORT_SYMBOL(alloc_skb_with_frags);