blob: 47c32413d5b94c4911939f98772a8ab1d98c3740 [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>
Willem de Bruijnb245be12015-01-30 13:29:32 -050077#include <linux/capability.h>
78#include <linux/user_namespace.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040079
Eric Dumazetd7e88832012-04-30 08:10:34 +000080struct kmem_cache *skbuff_head_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080081static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/**
Jean Sacrenf05de732013-02-11 13:30:38 +000084 * skb_panic - private function for out-of-line support
85 * @skb: buffer
86 * @sz: size
87 * @addr: address
James Hogan99d58512013-02-13 11:20:27 +000088 * @msg: skb_over_panic or skb_under_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *
Jean Sacrenf05de732013-02-11 13:30:38 +000090 * Out-of-line support for skb_put() and skb_push().
91 * Called via the wrapper skb_over_panic() or skb_under_panic().
92 * Keep out of line to prevent kernel bloat.
93 * __builtin_return_address is not used because it is not always reliable.
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 */
Jean Sacrenf05de732013-02-11 13:30:38 +000095static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
James Hogan99d58512013-02-13 11:20:27 +000096 const char msg[])
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Joe Perchese005d192012-05-16 19:58:40 +000098 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 +000099 msg, addr, skb->len, sz, skb->head, skb->data,
Joe Perchese005d192012-05-16 19:58:40 +0000100 (unsigned long)skb->tail, (unsigned long)skb->end,
101 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 BUG();
103}
104
Jean Sacrenf05de732013-02-11 13:30:38 +0000105static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Jean Sacrenf05de732013-02-11 13:30:38 +0000107 skb_panic(skb, sz, addr, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Jean Sacrenf05de732013-02-11 13:30:38 +0000110static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
111{
112 skb_panic(skb, sz, addr, __func__);
113}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700114
115/*
116 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
117 * the caller if emergency pfmemalloc reserves are being used. If it is and
118 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
119 * may be used. Otherwise, the packet data may be discarded until enough
120 * memory is free
121 */
122#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
123 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
stephen hemminger61c5e882012-12-28 18:24:28 +0000124
125static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
126 unsigned long ip, bool *pfmemalloc)
Mel Gormanc93bdd02012-07-31 16:44:19 -0700127{
128 void *obj;
129 bool ret_pfmemalloc = false;
130
131 /*
132 * Try a regular allocation, when that fails and we're not entitled
133 * to the reserves, fail.
134 */
135 obj = kmalloc_node_track_caller(size,
136 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
137 node);
138 if (obj || !(gfp_pfmemalloc_allowed(flags)))
139 goto out;
140
141 /* Try again but now we are using pfmemalloc reserves */
142 ret_pfmemalloc = true;
143 obj = kmalloc_node_track_caller(size, flags, node);
144
145out:
146 if (pfmemalloc)
147 *pfmemalloc = ret_pfmemalloc;
148
149 return obj;
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* Allocate a new skbuff. We do this ourselves so we can fill in a few
153 * 'private' fields and also do memory statistics to find all the
154 * [BEEP] leaks.
155 *
156 */
157
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000158struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
159{
160 struct sk_buff *skb;
161
162 /* Get the HEAD */
163 skb = kmem_cache_alloc_node(skbuff_head_cache,
164 gfp_mask & ~__GFP_DMA, node);
165 if (!skb)
166 goto out;
167
168 /*
169 * Only clear those fields we need to clear, not those that we will
170 * actually initialise below. Hence, don't put any more fields after
171 * the tail pointer in struct sk_buff!
172 */
173 memset(skb, 0, offsetof(struct sk_buff, tail));
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000174 skb->head = NULL;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000175 skb->truesize = sizeof(struct sk_buff);
176 atomic_set(&skb->users, 1);
177
Cong Wang35d04612013-05-29 15:16:05 +0800178 skb->mac_header = (typeof(skb->mac_header))~0U;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000179out:
180 return skb;
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/**
David S. Millerd179cd12005-08-17 14:57:30 -0700184 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * @size: size to allocate
186 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700187 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
188 * instead of head cache and allocate a cloned (child) skb.
189 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
190 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800191 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
193 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000194 * tail room of at least size bytes. The object has a reference count
195 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
197 * Buffers may only be allocated from interrupts using a @gfp_mask of
198 * %GFP_ATOMIC.
199 */
Al Virodd0fc662005-10-07 07:46:04 +0100200struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700201 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Christoph Lametere18b8902006-12-06 20:33:20 -0800203 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800204 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct sk_buff *skb;
206 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700207 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Mel Gormanc93bdd02012-07-31 16:44:19 -0700209 cache = (flags & SKB_ALLOC_FCLONE)
210 ? skbuff_fclone_cache : skbuff_head_cache;
211
212 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
213 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800216 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (!skb)
218 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700219 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000221 /* We do our best to align skb_shared_info on a separate cache
222 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
223 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
224 * Both skb->head and skb_shared_info are cache line aligned.
225 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000226 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000227 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700228 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!data)
230 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000231 /* kmalloc(size) might give us more room than requested.
232 * Put skb_shared_info exactly at the end of allocated zone,
233 * to allow max possible filling before reallocation.
234 */
235 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700236 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300238 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700239 * Only clear those fields we need to clear, not those that we will
240 * actually initialise below. Hence, don't put any more fields after
241 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300242 */
243 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000244 /* Account for allocated memory : skb + skb->head */
245 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700246 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 atomic_set(&skb->users, 1);
248 skb->head = data;
249 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700250 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700251 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800252 skb->mac_header = (typeof(skb->mac_header))~0U;
253 skb->transport_header = (typeof(skb->transport_header))~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000254
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800255 /* make sure we initialize shinfo sequentially */
256 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700257 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800258 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000259 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800260
Mel Gormanc93bdd02012-07-31 16:44:19 -0700261 if (flags & SKB_ALLOC_FCLONE) {
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700262 struct sk_buff_fclones *fclones;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700264 fclones = container_of(skb, struct sk_buff_fclones, skb1);
265
266 kmemcheck_annotate_bitfield(&fclones->skb2, flags1);
David S. Millerd179cd12005-08-17 14:57:30 -0700267 skb->fclone = SKB_FCLONE_ORIG;
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700268 atomic_set(&fclones->fclone_ref, 1);
David S. Millerd179cd12005-08-17 14:57:30 -0700269
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800270 fclones->skb2.fclone = SKB_FCLONE_CLONE;
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700271 fclones->skb2.pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273out:
274 return skb;
275nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800276 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 skb = NULL;
278 goto out;
279}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800280EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000283 * build_skb - build a network buffer
284 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000285 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000286 *
287 * Allocate a new &sk_buff. Caller provides space holding head and
Florian Fainellideceb4c2013-07-23 20:22:39 +0100288 * skb_shared_info. @data must have been allocated by kmalloc() only if
289 * @frag_size is 0, otherwise data should come from the page allocator.
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000290 * The return is the new skb buffer.
291 * On a failure the return is %NULL, and @data is not freed.
292 * Notes :
293 * Before IO, driver allocates only data buffer where NIC put incoming frame
294 * Driver should add room at head (NET_SKB_PAD) and
295 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
296 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
297 * before giving packet to stack.
298 * RX rings only contains data buffers, not full skbs.
299 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000300struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000301{
302 struct skb_shared_info *shinfo;
303 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000304 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000305
306 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
307 if (!skb)
308 return NULL;
309
Eric Dumazetd3836f22012-04-27 00:33:38 +0000310 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000311
312 memset(skb, 0, offsetof(struct sk_buff, tail));
313 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000314 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000315 atomic_set(&skb->users, 1);
316 skb->head = data;
317 skb->data = data;
318 skb_reset_tail_pointer(skb);
319 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800320 skb->mac_header = (typeof(skb->mac_header))~0U;
321 skb->transport_header = (typeof(skb->transport_header))~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000322
323 /* make sure we initialize shinfo sequentially */
324 shinfo = skb_shinfo(skb);
325 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
326 atomic_set(&shinfo->dataref, 1);
327 kmemcheck_annotate_variable(shinfo->destructor_arg);
328
329 return skb;
330}
331EXPORT_SYMBOL(build_skb);
332
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000333struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000334 struct page_frag frag;
335 /* we maintain a pagecount bias, so that we dont dirty cache line
336 * containing page->_count every time we allocate a fragment.
337 */
338 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000339};
340static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
Alexander Duyckffde7322014-12-09 19:40:42 -0800341static DEFINE_PER_CPU(struct netdev_alloc_cache, napi_alloc_cache);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000342
Alexander Duyckffde7322014-12-09 19:40:42 -0800343static struct page *__page_frag_refill(struct netdev_alloc_cache *nc,
344 gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000345{
Alexander Duyckffde7322014-12-09 19:40:42 -0800346 const unsigned int order = NETDEV_FRAG_PAGE_MAX_ORDER;
347 struct page *page = NULL;
348 gfp_t gfp = gfp_mask;
Eric Dumazet6f532612012-05-18 05:12:12 +0000349
Alexander Duyckffde7322014-12-09 19:40:42 -0800350 if (order) {
351 gfp_mask |= __GFP_COMP | __GFP_NOWARN | __GFP_NORETRY;
352 page = alloc_pages_node(NUMA_NO_NODE, gfp_mask, order);
353 nc->frag.size = PAGE_SIZE << (page ? order : 0);
354 }
355
356 if (unlikely(!page))
357 page = alloc_pages_node(NUMA_NO_NODE, gfp, 0);
358
359 nc->frag.page = page;
360
361 return page;
362}
363
364static void *__alloc_page_frag(struct netdev_alloc_cache __percpu *cache,
365 unsigned int fragsz, gfp_t gfp_mask)
366{
367 struct netdev_alloc_cache *nc = this_cpu_ptr(cache);
368 struct page *page = nc->frag.page;
369 unsigned int size;
370 int offset;
371
372 if (unlikely(!page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000373refill:
Alexander Duyckffde7322014-12-09 19:40:42 -0800374 page = __page_frag_refill(nc, gfp_mask);
375 if (!page)
376 return NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000377
Alexander Duyckffde7322014-12-09 19:40:42 -0800378 /* if size can vary use frag.size else just use PAGE_SIZE */
379 size = NETDEV_FRAG_PAGE_MAX_ORDER ? nc->frag.size : PAGE_SIZE;
380
Eric Dumazet4c450582014-10-10 04:48:18 -0700381 /* Even if we own the page, we do not use atomic_set().
382 * This would break get_page_unless_zero() users.
383 */
Alexander Duyckffde7322014-12-09 19:40:42 -0800384 atomic_add(size - 1, &page->_count);
385
386 /* reset page count bias and offset to start of new frag */
387 nc->pagecnt_bias = size;
388 nc->frag.offset = size;
Eric Dumazet6f532612012-05-18 05:12:12 +0000389 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000390
Alexander Duyckffde7322014-12-09 19:40:42 -0800391 offset = nc->frag.offset - fragsz;
392 if (unlikely(offset < 0)) {
393 if (!atomic_sub_and_test(nc->pagecnt_bias, &page->_count))
394 goto refill;
395
396 /* if size can vary use frag.size else just use PAGE_SIZE */
397 size = NETDEV_FRAG_PAGE_MAX_ORDER ? nc->frag.size : PAGE_SIZE;
398
399 /* OK, page count is 0, we can safely set it */
400 atomic_set(&page->_count, size);
401
402 /* reset page count bias and offset to start of new frag */
403 nc->pagecnt_bias = size;
404 offset = size - fragsz;
Eric Dumazet6f532612012-05-18 05:12:12 +0000405 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000406
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000407 nc->pagecnt_bias--;
Alexander Duyckffde7322014-12-09 19:40:42 -0800408 nc->frag.offset = offset;
409
410 return page_address(page) + offset;
411}
412
413static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
414{
415 unsigned long flags;
416 void *data;
417
418 local_irq_save(flags);
419 data = __alloc_page_frag(&netdev_alloc_cache, fragsz, gfp_mask);
Eric Dumazet6f532612012-05-18 05:12:12 +0000420 local_irq_restore(flags);
421 return data;
422}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700423
424/**
425 * netdev_alloc_frag - allocate a page fragment
426 * @fragsz: fragment size
427 *
428 * Allocates a frag from a page for receive buffer.
429 * Uses GFP_ATOMIC allocations.
430 */
431void *netdev_alloc_frag(unsigned int fragsz)
432{
433 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
434}
Eric Dumazet6f532612012-05-18 05:12:12 +0000435EXPORT_SYMBOL(netdev_alloc_frag);
436
Alexander Duyckffde7322014-12-09 19:40:42 -0800437static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
438{
439 return __alloc_page_frag(&napi_alloc_cache, fragsz, gfp_mask);
440}
441
442void *napi_alloc_frag(unsigned int fragsz)
443{
444 return __napi_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
445}
446EXPORT_SYMBOL(napi_alloc_frag);
447
Eric Dumazet6f532612012-05-18 05:12:12 +0000448/**
Alexander Duyckfd11a832014-12-09 19:40:49 -0800449 * __alloc_rx_skb - allocate an skbuff for rx
Christoph Hellwig8af27452006-07-31 22:35:23 -0700450 * @length: length to allocate
451 * @gfp_mask: get_free_pages mask, passed to alloc_skb
Alexander Duyckfd11a832014-12-09 19:40:49 -0800452 * @flags: If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
453 * allocations in case we have to fallback to __alloc_skb()
454 * If SKB_ALLOC_NAPI is set, page fragment will be allocated
455 * from napi_cache instead of netdev_cache.
Christoph Hellwig8af27452006-07-31 22:35:23 -0700456 *
457 * Allocate a new &sk_buff and assign it a usage count of one. The
458 * buffer has unspecified headroom built in. Users should allocate
459 * the headroom they think they need without accounting for the
460 * built in space. The built in space is used for optimisations.
461 *
462 * %NULL is returned if there is no free memory.
463 */
Alexander Duyckfd11a832014-12-09 19:40:49 -0800464static struct sk_buff *__alloc_rx_skb(unsigned int length, gfp_t gfp_mask,
465 int flags)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700466{
Eric Dumazet6f532612012-05-18 05:12:12 +0000467 struct sk_buff *skb = NULL;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800468 unsigned int fragsz = SKB_DATA_ALIGN(length) +
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000469 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700470
Eric Dumazet310e1582012-07-16 13:15:52 +0200471 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700472 void *data;
473
474 if (sk_memalloc_socks())
475 gfp_mask |= __GFP_MEMALLOC;
476
Alexander Duyckfd11a832014-12-09 19:40:49 -0800477 data = (flags & SKB_ALLOC_NAPI) ?
478 __napi_alloc_frag(fragsz, gfp_mask) :
479 __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000480
Eric Dumazet6f532612012-05-18 05:12:12 +0000481 if (likely(data)) {
482 skb = build_skb(data, fragsz);
483 if (unlikely(!skb))
484 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000485 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000486 } else {
Alexander Duyckfd11a832014-12-09 19:40:49 -0800487 skb = __alloc_skb(length, gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700488 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000489 }
Alexander Duyckfd11a832014-12-09 19:40:49 -0800490 return skb;
491}
492
493/**
494 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
495 * @dev: network device to receive on
496 * @length: length to allocate
497 * @gfp_mask: get_free_pages mask, passed to alloc_skb
498 *
499 * Allocate a new &sk_buff and assign it a usage count of one. The
500 * buffer has NET_SKB_PAD headroom built in. Users should allocate
501 * the headroom they think they need without accounting for the
502 * built in space. The built in space is used for optimisations.
503 *
504 * %NULL is returned if there is no free memory.
505 */
506struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
507 unsigned int length, gfp_t gfp_mask)
508{
509 struct sk_buff *skb;
510
511 length += NET_SKB_PAD;
512 skb = __alloc_rx_skb(length, gfp_mask, 0);
513
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700514 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700515 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700516 skb->dev = dev;
517 }
Alexander Duyckfd11a832014-12-09 19:40:49 -0800518
Christoph Hellwig8af27452006-07-31 22:35:23 -0700519 return skb;
520}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800521EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Alexander Duyckfd11a832014-12-09 19:40:49 -0800523/**
524 * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
525 * @napi: napi instance this buffer was allocated for
526 * @length: length to allocate
527 * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
528 *
529 * Allocate a new sk_buff for use in NAPI receive. This buffer will
530 * attempt to allocate the head from a special reserved region used
531 * only for NAPI Rx allocation. By doing this we can save several
532 * CPU cycles by avoiding having to disable and re-enable IRQs.
533 *
534 * %NULL is returned if there is no free memory.
535 */
536struct sk_buff *__napi_alloc_skb(struct napi_struct *napi,
537 unsigned int length, gfp_t gfp_mask)
538{
539 struct sk_buff *skb;
540
541 length += NET_SKB_PAD + NET_IP_ALIGN;
542 skb = __alloc_rx_skb(length, gfp_mask, SKB_ALLOC_NAPI);
543
544 if (likely(skb)) {
545 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
546 skb->dev = napi->dev;
547 }
548
549 return skb;
550}
551EXPORT_SYMBOL(__napi_alloc_skb);
552
Peter Zijlstra654bed12008-10-07 14:22:33 -0700553void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000554 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700555{
556 skb_fill_page_desc(skb, i, page, off, size);
557 skb->len += size;
558 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000559 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700560}
561EXPORT_SYMBOL(skb_add_rx_frag);
562
Jason Wangf8e617e2013-11-01 14:07:47 +0800563void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
564 unsigned int truesize)
565{
566 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
567
568 skb_frag_size_add(frag, size);
569 skb->len += size;
570 skb->data_len += size;
571 skb->truesize += truesize;
572}
573EXPORT_SYMBOL(skb_coalesce_rx_frag);
574
Herbert Xu27b437c2006-07-13 19:26:39 -0700575static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700577 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700578 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Herbert Xu27b437c2006-07-13 19:26:39 -0700581static inline void skb_drop_fraglist(struct sk_buff *skb)
582{
583 skb_drop_list(&skb_shinfo(skb)->frag_list);
584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586static void skb_clone_fraglist(struct sk_buff *skb)
587{
588 struct sk_buff *list;
589
David S. Millerfbb398a2009-06-09 00:18:59 -0700590 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 skb_get(list);
592}
593
Eric Dumazetd3836f22012-04-27 00:33:38 +0000594static void skb_free_head(struct sk_buff *skb)
595{
596 if (skb->head_frag)
597 put_page(virt_to_head_page(skb->head));
598 else
599 kfree(skb->head);
600}
601
Adrian Bunk5bba1712006-06-29 13:02:35 -0700602static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Eric Dumazetff04a772014-09-23 18:39:30 -0700604 struct skb_shared_info *shinfo = skb_shinfo(skb);
605 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Eric Dumazetff04a772014-09-23 18:39:30 -0700607 if (skb->cloned &&
608 atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
609 &shinfo->dataref))
610 return;
Shirley Maa6686f22011-07-06 12:22:12 +0000611
Eric Dumazetff04a772014-09-23 18:39:30 -0700612 for (i = 0; i < shinfo->nr_frags; i++)
613 __skb_frag_unref(&shinfo->frags[i]);
Shirley Maa6686f22011-07-06 12:22:12 +0000614
Eric Dumazetff04a772014-09-23 18:39:30 -0700615 /*
616 * If skb buf is from userspace, we need to notify the caller
617 * the lower device DMA has done;
618 */
619 if (shinfo->tx_flags & SKBTX_DEV_ZEROCOPY) {
620 struct ubuf_info *uarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Eric Dumazetff04a772014-09-23 18:39:30 -0700622 uarg = shinfo->destructor_arg;
623 if (uarg->callback)
624 uarg->callback(uarg, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Eric Dumazetff04a772014-09-23 18:39:30 -0700626
627 if (shinfo->frag_list)
628 kfree_skb_list(shinfo->frag_list);
629
630 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633/*
634 * Free an skbuff by memory without cleaning the state.
635 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800636static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700638 struct sk_buff_fclones *fclones;
David S. Millerd179cd12005-08-17 14:57:30 -0700639
David S. Millerd179cd12005-08-17 14:57:30 -0700640 switch (skb->fclone) {
641 case SKB_FCLONE_UNAVAILABLE:
642 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800643 return;
David S. Millerd179cd12005-08-17 14:57:30 -0700644
645 case SKB_FCLONE_ORIG:
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700646 fclones = container_of(skb, struct sk_buff_fclones, skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800647
648 /* We usually free the clone (TX completion) before original skb
649 * This test would have no chance to be true for the clone,
650 * while here, branch prediction will be good.
651 */
652 if (atomic_read(&fclones->fclone_ref) == 1)
653 goto fastpath;
David S. Millerd179cd12005-08-17 14:57:30 -0700654 break;
655
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800656 default: /* SKB_FCLONE_CLONE */
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700657 fclones = container_of(skb, struct sk_buff_fclones, skb2);
David S. Millerd179cd12005-08-17 14:57:30 -0700658 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700659 }
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800660 if (!atomic_dec_and_test(&fclones->fclone_ref))
661 return;
662fastpath:
663 kmem_cache_free(skbuff_fclone_cache, fclones);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700666static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Eric Dumazetadf30902009-06-02 05:19:30 +0000668 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669#ifdef CONFIG_XFRM
670 secpath_put(skb->sp);
671#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700672 if (skb->destructor) {
673 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 skb->destructor(skb);
675 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000676#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700677 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100678#endif
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200679#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 nf_bridge_put(skb->nf_bridge);
681#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700682}
683
684/* Free everything but the sk_buff shell. */
685static void skb_release_all(struct sk_buff *skb)
686{
687 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000688 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000689 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800690}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Herbert Xu2d4baff2007-11-26 23:11:19 +0800692/**
693 * __kfree_skb - private function
694 * @skb: buffer
695 *
696 * Free an sk_buff. Release anything attached to the buffer.
697 * Clean the state. This is an internal helper function. Users should
698 * always call kfree_skb
699 */
700
701void __kfree_skb(struct sk_buff *skb)
702{
703 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 kfree_skbmem(skb);
705}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800706EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800709 * kfree_skb - free an sk_buff
710 * @skb: buffer to free
711 *
712 * Drop a reference to the buffer and free it if the usage count has
713 * hit zero.
714 */
715void kfree_skb(struct sk_buff *skb)
716{
717 if (unlikely(!skb))
718 return;
719 if (likely(atomic_read(&skb->users) == 1))
720 smp_rmb();
721 else if (likely(!atomic_dec_and_test(&skb->users)))
722 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000723 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800724 __kfree_skb(skb);
725}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800726EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800727
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700728void kfree_skb_list(struct sk_buff *segs)
729{
730 while (segs) {
731 struct sk_buff *next = segs->next;
732
733 kfree_skb(segs);
734 segs = next;
735 }
736}
737EXPORT_SYMBOL(kfree_skb_list);
738
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700739/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000740 * skb_tx_error - report an sk_buff xmit error
741 * @skb: buffer that triggered an error
742 *
743 * Report xmit error if a device callback is tracking this skb.
744 * skb must be freed afterwards.
745 */
746void skb_tx_error(struct sk_buff *skb)
747{
748 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
749 struct ubuf_info *uarg;
750
751 uarg = skb_shinfo(skb)->destructor_arg;
752 if (uarg->callback)
753 uarg->callback(uarg, false);
754 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
755 }
756}
757EXPORT_SYMBOL(skb_tx_error);
758
759/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000760 * consume_skb - free an skbuff
761 * @skb: buffer to free
762 *
763 * Drop a ref to the buffer and free it if the usage count has hit zero
764 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
765 * is being dropped after a failure and notes that
766 */
767void consume_skb(struct sk_buff *skb)
768{
769 if (unlikely(!skb))
770 return;
771 if (likely(atomic_read(&skb->users) == 1))
772 smp_rmb();
773 else if (likely(!atomic_dec_and_test(&skb->users)))
774 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900775 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000776 __kfree_skb(skb);
777}
778EXPORT_SYMBOL(consume_skb);
779
Eric Dumazetb1937222014-09-28 22:18:47 -0700780/* Make sure a field is enclosed inside headers_start/headers_end section */
781#define CHECK_SKB_FIELD(field) \
782 BUILD_BUG_ON(offsetof(struct sk_buff, field) < \
783 offsetof(struct sk_buff, headers_start)); \
784 BUILD_BUG_ON(offsetof(struct sk_buff, field) > \
785 offsetof(struct sk_buff, headers_end)); \
786
Herbert Xudec18812007-10-14 00:37:30 -0700787static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
788{
789 new->tstamp = old->tstamp;
Eric Dumazetb1937222014-09-28 22:18:47 -0700790 /* We do not copy old->sk */
Herbert Xudec18812007-10-14 00:37:30 -0700791 new->dev = old->dev;
Eric Dumazetb1937222014-09-28 22:18:47 -0700792 memcpy(new->cb, old->cb, sizeof(old->cb));
Eric Dumazet7fee2262010-05-11 23:19:48 +0000793 skb_dst_copy(new, old);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700794#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700795 new->sp = secpath_get(old->sp);
796#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700797 __nf_copy(new, old, false);
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700798
Eric Dumazetb1937222014-09-28 22:18:47 -0700799 /* Note : this field could be in headers_start/headers_end section
800 * It is not yet because we do not want to have a 16 bit hole
801 */
802 new->queue_mapping = old->queue_mapping;
Eliezer Tamir06021292013-06-10 11:39:50 +0300803
Eric Dumazetb1937222014-09-28 22:18:47 -0700804 memcpy(&new->headers_start, &old->headers_start,
805 offsetof(struct sk_buff, headers_end) -
806 offsetof(struct sk_buff, headers_start));
807 CHECK_SKB_FIELD(protocol);
808 CHECK_SKB_FIELD(csum);
809 CHECK_SKB_FIELD(hash);
810 CHECK_SKB_FIELD(priority);
811 CHECK_SKB_FIELD(skb_iif);
812 CHECK_SKB_FIELD(vlan_proto);
813 CHECK_SKB_FIELD(vlan_tci);
814 CHECK_SKB_FIELD(transport_header);
815 CHECK_SKB_FIELD(network_header);
816 CHECK_SKB_FIELD(mac_header);
817 CHECK_SKB_FIELD(inner_protocol);
818 CHECK_SKB_FIELD(inner_transport_header);
819 CHECK_SKB_FIELD(inner_network_header);
820 CHECK_SKB_FIELD(inner_mac_header);
821 CHECK_SKB_FIELD(mark);
822#ifdef CONFIG_NETWORK_SECMARK
823 CHECK_SKB_FIELD(secmark);
824#endif
Cong Wange0d10952013-08-01 11:10:25 +0800825#ifdef CONFIG_NET_RX_BUSY_POLL
Eric Dumazetb1937222014-09-28 22:18:47 -0700826 CHECK_SKB_FIELD(napi_id);
Eliezer Tamir06021292013-06-10 11:39:50 +0300827#endif
Eric Dumazet2bd82482015-02-03 23:48:24 -0800828#ifdef CONFIG_XPS
829 CHECK_SKB_FIELD(sender_cpu);
830#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700831#ifdef CONFIG_NET_SCHED
832 CHECK_SKB_FIELD(tc_index);
833#ifdef CONFIG_NET_CLS_ACT
834 CHECK_SKB_FIELD(tc_verd);
835#endif
836#endif
837
Herbert Xudec18812007-10-14 00:37:30 -0700838}
839
Herbert Xu82c49a32009-05-22 22:11:37 +0000840/*
841 * You should not add any new code to this function. Add it to
842 * __copy_skb_header above instead.
843 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700844static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846#define C(x) n->x = skb->x
847
848 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700850 __copy_skb_header(n, skb);
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 C(len);
853 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700854 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700855 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800856 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 C(tail);
860 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800861 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000862 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800863 C(data);
864 C(truesize);
865 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 atomic_inc(&(skb_shinfo(skb)->dataref));
868 skb->cloned = 1;
869
870 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700871#undef C
872}
873
874/**
875 * skb_morph - morph one skb into another
876 * @dst: the skb to receive the contents
877 * @src: the skb to supply the contents
878 *
879 * This is identical to skb_clone except that the target skb is
880 * supplied by the user.
881 *
882 * The target skb is returned upon exit.
883 */
884struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
885{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800886 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700887 return __skb_clone(dst, src);
888}
889EXPORT_SYMBOL_GPL(skb_morph);
890
Ben Hutchings2c530402012-07-10 10:55:09 +0000891/**
892 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000893 * @skb: the skb to modify
894 * @gfp_mask: allocation priority
895 *
896 * This must be called on SKBTX_DEV_ZEROCOPY skb.
897 * It will copy all frags into kernel and drop the reference
898 * to userspace pages.
899 *
900 * If this function is called from an interrupt gfp_mask() must be
901 * %GFP_ATOMIC.
902 *
903 * Returns 0 on success or a negative error code on failure
904 * to allocate kernel memory to copy to.
905 */
906int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000907{
908 int i;
909 int num_frags = skb_shinfo(skb)->nr_frags;
910 struct page *page, *head = NULL;
911 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
912
913 for (i = 0; i < num_frags; i++) {
914 u8 *vaddr;
915 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
916
Krishna Kumar02756ed2012-07-17 02:05:29 +0000917 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000918 if (!page) {
919 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900920 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000921 put_page(head);
922 head = next;
923 }
924 return -ENOMEM;
925 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200926 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000927 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000928 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200929 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900930 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000931 head = page;
932 }
933
934 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000935 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000936 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000937
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000938 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000939
940 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000941 for (i = num_frags - 1; i >= 0; i--) {
942 __skb_fill_page_desc(skb, i, head, 0,
943 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900944 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000945 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000946
947 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000948 return 0;
949}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000950EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000951
Herbert Xue0053ec2007-10-14 00:37:52 -0700952/**
953 * skb_clone - duplicate an sk_buff
954 * @skb: buffer to clone
955 * @gfp_mask: allocation priority
956 *
957 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
958 * copies share the same packet data but not structure. The new
959 * buffer has a reference count of 1. If the allocation fails the
960 * function returns %NULL otherwise the new buffer is returned.
961 *
962 * If this function is called from an interrupt gfp_mask() must be
963 * %GFP_ATOMIC.
964 */
965
966struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
967{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700968 struct sk_buff_fclones *fclones = container_of(skb,
969 struct sk_buff_fclones,
970 skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800971 struct sk_buff *n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700972
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000973 if (skb_orphan_frags(skb, gfp_mask))
974 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000975
Herbert Xue0053ec2007-10-14 00:37:52 -0700976 if (skb->fclone == SKB_FCLONE_ORIG &&
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800977 atomic_read(&fclones->fclone_ref) == 1) {
978 n = &fclones->skb2;
979 atomic_set(&fclones->fclone_ref, 2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700980 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700981 if (skb_pfmemalloc(skb))
982 gfp_mask |= __GFP_MEMALLOC;
983
Herbert Xue0053ec2007-10-14 00:37:52 -0700984 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
985 if (!n)
986 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200987
988 kmemcheck_annotate_bitfield(n, flags1);
Herbert Xue0053ec2007-10-14 00:37:52 -0700989 n->fclone = SKB_FCLONE_UNAVAILABLE;
990 }
991
992 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800994EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000996static void skb_headers_offset_update(struct sk_buff *skb, int off)
997{
Eric Dumazet030737b2013-10-19 11:42:54 -0700998 /* Only adjust this if it actually is csum_start rather than csum */
999 if (skb->ip_summed == CHECKSUM_PARTIAL)
1000 skb->csum_start += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001001 /* {transport,network,mac}_header and tail are relative to skb->head */
1002 skb->transport_header += off;
1003 skb->network_header += off;
1004 if (skb_mac_header_was_set(skb))
1005 skb->mac_header += off;
1006 skb->inner_transport_header += off;
1007 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +00001008 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1012{
Herbert Xudec18812007-10-14 00:37:30 -07001013 __copy_skb_header(new, old);
1014
Herbert Xu79671682006-06-22 02:40:14 -07001015 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1016 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1017 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Mel Gormanc93bdd02012-07-31 16:44:19 -07001020static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1021{
1022 if (skb_pfmemalloc(skb))
1023 return SKB_ALLOC_RX;
1024 return 0;
1025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027/**
1028 * skb_copy - create private copy of an sk_buff
1029 * @skb: buffer to copy
1030 * @gfp_mask: allocation priority
1031 *
1032 * Make a copy of both an &sk_buff and its data. This is used when the
1033 * caller wishes to modify the data and needs a private copy of the
1034 * data to alter. Returns %NULL on failure or the pointer to the buffer
1035 * on success. The returned buffer has a reference count of 1.
1036 *
1037 * As by-product this function converts non-linear &sk_buff to linear
1038 * one, so that &sk_buff becomes completely private and caller is allowed
1039 * to modify all the data of returned buffer. This means that this
1040 * function is not recommended for use in circumstances when only
1041 * header is going to be modified. Use pskb_copy() instead.
1042 */
1043
Al Virodd0fc662005-10-07 07:46:04 +01001044struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001046 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +00001047 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -07001048 struct sk_buff *n = __alloc_skb(size, gfp_mask,
1049 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (!n)
1052 return NULL;
1053
1054 /* Set the data pointer */
1055 skb_reserve(n, headerlen);
1056 /* Set the tail pointer and length */
1057 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
1060 BUG();
1061
1062 copy_skb_header(n, skb);
1063 return n;
1064}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001065EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067/**
Octavian Purdilabad93e92014-06-12 01:36:26 +03001068 * __pskb_copy_fclone - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +00001070 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 * @gfp_mask: allocation priority
Octavian Purdilabad93e92014-06-12 01:36:26 +03001072 * @fclone: if true allocate the copy of the skb from the fclone
1073 * cache instead of the head cache; it is recommended to set this
1074 * to true for the cases where the copy will likely be cloned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 *
1076 * Make a copy of both an &sk_buff and part of its data, located
1077 * in header. Fragmented data remain shared. This is used when
1078 * the caller wishes to modify only header of &sk_buff and needs
1079 * private copy of the header to alter. Returns %NULL on failure
1080 * or the pointer to the buffer on success.
1081 * The returned buffer has a reference count of 1.
1082 */
1083
Octavian Purdilabad93e92014-06-12 01:36:26 +03001084struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1085 gfp_t gfp_mask, bool fclone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Eric Dumazet117632e2011-12-03 21:39:53 +00001087 unsigned int size = skb_headlen(skb) + headroom;
Octavian Purdilabad93e92014-06-12 01:36:26 +03001088 int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1089 struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!n)
1092 goto out;
1093
1094 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +00001095 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* Set the tail pointer and length */
1097 skb_put(n, skb_headlen(skb));
1098 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001099 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Herbert Xu25f484a2006-11-07 14:57:15 -08001101 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 n->data_len = skb->data_len;
1103 n->len = skb->len;
1104
1105 if (skb_shinfo(skb)->nr_frags) {
1106 int i;
1107
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001108 if (skb_orphan_frags(skb, gfp_mask)) {
1109 kfree_skb(n);
1110 n = NULL;
1111 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1114 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001115 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117 skb_shinfo(n)->nr_frags = i;
1118 }
1119
David S. Miller21dc3302010-08-23 00:13:46 -07001120 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1122 skb_clone_fraglist(n);
1123 }
1124
1125 copy_skb_header(n, skb);
1126out:
1127 return n;
1128}
Octavian Purdilabad93e92014-06-12 01:36:26 +03001129EXPORT_SYMBOL(__pskb_copy_fclone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131/**
1132 * pskb_expand_head - reallocate header of &sk_buff
1133 * @skb: buffer to reallocate
1134 * @nhead: room to add at head
1135 * @ntail: room to add at tail
1136 * @gfp_mask: allocation priority
1137 *
Mathias Krausebc323832013-11-07 14:18:26 +01001138 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1139 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 * reference count of 1. Returns zero in the case of success or error,
1141 * if expansion failed. In the last case, &sk_buff is not changed.
1142 *
1143 * All the pointers pointing into skb header may change and must be
1144 * reloaded after call to this function.
1145 */
1146
Victor Fusco86a76ca2005-07-08 14:57:47 -07001147int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001148 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 int i;
1151 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001152 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 long off;
1154
Herbert Xu4edd87a2008-10-01 07:09:38 -07001155 BUG_ON(nhead < 0);
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (skb_shared(skb))
1158 BUG();
1159
1160 size = SKB_DATA_ALIGN(size);
1161
Mel Gormanc93bdd02012-07-31 16:44:19 -07001162 if (skb_pfmemalloc(skb))
1163 gfp_mask |= __GFP_MEMALLOC;
1164 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1165 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (!data)
1167 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001168 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001171 * optimized for the cases when header is void.
1172 */
1173 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1174
1175 memcpy((struct skb_shared_info *)(data + size),
1176 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001177 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Alexander Duyck3e245912012-05-04 14:26:51 +00001179 /*
1180 * if shinfo is shared we must drop the old head gracefully, but if it
1181 * is not we can just drop the old head and let the existing refcount
1182 * be since all we did is relocate the values
1183 */
1184 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001185 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001186 if (skb_orphan_frags(skb, gfp_mask))
1187 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001188 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001189 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Eric Dumazet1fd63042010-09-02 23:09:32 +00001191 if (skb_has_frag_list(skb))
1192 skb_clone_fraglist(skb);
1193
1194 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001195 } else {
1196 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 off = (data + nhead) - skb->head;
1199
1200 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001201 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001203#ifdef NET_SKBUFF_DATA_USES_OFFSET
1204 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001205 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001206#else
1207 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001208#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001209 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001210 skb_headers_offset_update(skb, nhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001212 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 skb->nohdr = 0;
1214 atomic_set(&skb_shinfo(skb)->dataref, 1);
1215 return 0;
1216
Shirley Maa6686f22011-07-06 12:22:12 +00001217nofrags:
1218 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219nodata:
1220 return -ENOMEM;
1221}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001222EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224/* Make private copy of skb with writable head and some headroom */
1225
1226struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1227{
1228 struct sk_buff *skb2;
1229 int delta = headroom - skb_headroom(skb);
1230
1231 if (delta <= 0)
1232 skb2 = pskb_copy(skb, GFP_ATOMIC);
1233 else {
1234 skb2 = skb_clone(skb, GFP_ATOMIC);
1235 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1236 GFP_ATOMIC)) {
1237 kfree_skb(skb2);
1238 skb2 = NULL;
1239 }
1240 }
1241 return skb2;
1242}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001243EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245/**
1246 * skb_copy_expand - copy and expand sk_buff
1247 * @skb: buffer to copy
1248 * @newheadroom: new free bytes at head
1249 * @newtailroom: new free bytes at tail
1250 * @gfp_mask: allocation priority
1251 *
1252 * Make a copy of both an &sk_buff and its data and while doing so
1253 * allocate additional space.
1254 *
1255 * This is used when the caller wishes to modify the data and needs a
1256 * private copy of the data to alter as well as more space for new fields.
1257 * Returns %NULL on failure or the pointer to the buffer
1258 * on success. The returned buffer has a reference count of 1.
1259 *
1260 * You must pass %GFP_ATOMIC as the allocation priority if this function
1261 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 */
1263struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001264 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001265 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
1267 /*
1268 * Allocate the copy buffer
1269 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001270 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1271 gfp_mask, skb_alloc_rx_flag(skb),
1272 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001273 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 int head_copy_len, head_copy_off;
1275
1276 if (!n)
1277 return NULL;
1278
1279 skb_reserve(n, newheadroom);
1280
1281 /* Set the tail pointer and length */
1282 skb_put(n, skb->len);
1283
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001284 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 head_copy_off = 0;
1286 if (newheadroom <= head_copy_len)
1287 head_copy_len = newheadroom;
1288 else
1289 head_copy_off = newheadroom - head_copy_len;
1290
1291 /* Copy the linear header and data. */
1292 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1293 skb->len + head_copy_len))
1294 BUG();
1295
1296 copy_skb_header(n, skb);
1297
Eric Dumazet030737b2013-10-19 11:42:54 -07001298 skb_headers_offset_update(n, newheadroom - oldheadroom);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return n;
1301}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001302EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304/**
1305 * skb_pad - zero pad the tail of an skb
1306 * @skb: buffer to pad
1307 * @pad: space to pad
1308 *
1309 * Ensure that a buffer is followed by a padding area that is zero
1310 * filled. Used by network drivers which may DMA or transfer data
1311 * beyond the buffer end onto the wire.
1312 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001313 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001315
Herbert Xu5b057c62006-06-23 02:06:41 -07001316int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Herbert Xu5b057c62006-06-23 02:06:41 -07001318 int err;
1319 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001322 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001326
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001327 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001328 if (likely(skb_cloned(skb) || ntail > 0)) {
1329 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1330 if (unlikely(err))
1331 goto free_skb;
1332 }
1333
1334 /* FIXME: The use of this function with non-linear skb's really needs
1335 * to be audited.
1336 */
1337 err = skb_linearize(skb);
1338 if (unlikely(err))
1339 goto free_skb;
1340
1341 memset(skb->data + skb->len, 0, pad);
1342 return 0;
1343
1344free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001346 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001347}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001348EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001349
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001350/**
Mathias Krause0c7ddf32013-11-07 14:18:24 +01001351 * pskb_put - add data to the tail of a potentially fragmented buffer
1352 * @skb: start of the buffer to use
1353 * @tail: tail fragment of the buffer to use
1354 * @len: amount of data to add
1355 *
1356 * This function extends the used data area of the potentially
1357 * fragmented buffer. @tail must be the last fragment of @skb -- or
1358 * @skb itself. If this would exceed the total buffer size the kernel
1359 * will panic. A pointer to the first byte of the extra data is
1360 * returned.
1361 */
1362
1363unsigned char *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1364{
1365 if (tail != skb) {
1366 skb->data_len += len;
1367 skb->len += len;
1368 }
1369 return skb_put(tail, len);
1370}
1371EXPORT_SYMBOL_GPL(pskb_put);
1372
1373/**
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001374 * skb_put - add data to a buffer
1375 * @skb: buffer to use
1376 * @len: amount of data to add
1377 *
1378 * This function extends the used data area of the buffer. If this would
1379 * exceed the total buffer size the kernel will panic. A pointer to the
1380 * first byte of the extra data is returned.
1381 */
1382unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1383{
1384 unsigned char *tmp = skb_tail_pointer(skb);
1385 SKB_LINEAR_ASSERT(skb);
1386 skb->tail += len;
1387 skb->len += len;
1388 if (unlikely(skb->tail > skb->end))
1389 skb_over_panic(skb, len, __builtin_return_address(0));
1390 return tmp;
1391}
1392EXPORT_SYMBOL(skb_put);
1393
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001394/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001395 * skb_push - add data to the start of a buffer
1396 * @skb: buffer to use
1397 * @len: amount of data to add
1398 *
1399 * This function extends the used data area of the buffer at the buffer
1400 * start. If this would exceed the total buffer headroom the kernel will
1401 * panic. A pointer to the first byte of the extra data is returned.
1402 */
1403unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1404{
1405 skb->data -= len;
1406 skb->len += len;
1407 if (unlikely(skb->data<skb->head))
1408 skb_under_panic(skb, len, __builtin_return_address(0));
1409 return skb->data;
1410}
1411EXPORT_SYMBOL(skb_push);
1412
1413/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001414 * skb_pull - remove data from the start of a buffer
1415 * @skb: buffer to use
1416 * @len: amount of data to remove
1417 *
1418 * This function removes data from the start of a buffer, returning
1419 * the memory to the headroom. A pointer to the next data in the buffer
1420 * is returned. Once the data has been pulled future pushes will overwrite
1421 * the old data.
1422 */
1423unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1424{
David S. Miller47d29642010-05-02 02:21:44 -07001425 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001426}
1427EXPORT_SYMBOL(skb_pull);
1428
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001429/**
1430 * skb_trim - remove end from a buffer
1431 * @skb: buffer to alter
1432 * @len: new length
1433 *
1434 * Cut the length of a buffer down by removing data from the tail. If
1435 * the buffer is already under the length specified it is not modified.
1436 * The skb must be linear.
1437 */
1438void skb_trim(struct sk_buff *skb, unsigned int len)
1439{
1440 if (skb->len > len)
1441 __skb_trim(skb, len);
1442}
1443EXPORT_SYMBOL(skb_trim);
1444
Herbert Xu3cc0e872006-06-09 16:13:38 -07001445/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 */
1447
Herbert Xu3cc0e872006-06-09 16:13:38 -07001448int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Herbert Xu27b437c2006-07-13 19:26:39 -07001450 struct sk_buff **fragp;
1451 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 int offset = skb_headlen(skb);
1453 int nfrags = skb_shinfo(skb)->nr_frags;
1454 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001455 int err;
1456
1457 if (skb_cloned(skb) &&
1458 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1459 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001461 i = 0;
1462 if (offset >= len)
1463 goto drop_pages;
1464
1465 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001466 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001467
1468 if (end < len) {
1469 offset = end;
1470 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001472
Eric Dumazet9e903e02011-10-18 21:00:24 +00001473 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001474
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001475drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001476 skb_shinfo(skb)->nr_frags = i;
1477
1478 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001479 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001480
David S. Miller21dc3302010-08-23 00:13:46 -07001481 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001482 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001483 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485
Herbert Xu27b437c2006-07-13 19:26:39 -07001486 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1487 fragp = &frag->next) {
1488 int end = offset + frag->len;
1489
1490 if (skb_shared(frag)) {
1491 struct sk_buff *nfrag;
1492
1493 nfrag = skb_clone(frag, GFP_ATOMIC);
1494 if (unlikely(!nfrag))
1495 return -ENOMEM;
1496
1497 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001498 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001499 frag = nfrag;
1500 *fragp = frag;
1501 }
1502
1503 if (end < len) {
1504 offset = end;
1505 continue;
1506 }
1507
1508 if (end > len &&
1509 unlikely((err = pskb_trim(frag, len - offset))))
1510 return err;
1511
1512 if (frag->next)
1513 skb_drop_list(&frag->next);
1514 break;
1515 }
1516
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001517done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001518 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 skb->data_len -= skb->len - len;
1520 skb->len = len;
1521 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001522 skb->len = len;
1523 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001524 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526
1527 return 0;
1528}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001529EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531/**
1532 * __pskb_pull_tail - advance tail of skb header
1533 * @skb: buffer to reallocate
1534 * @delta: number of bytes to advance tail
1535 *
1536 * The function makes a sense only on a fragmented &sk_buff,
1537 * it expands header moving its tail forward and copying necessary
1538 * data from fragmented part.
1539 *
1540 * &sk_buff MUST have reference count of 1.
1541 *
1542 * Returns %NULL (and &sk_buff does not change) if pull failed
1543 * or value of new tail of skb in the case of success.
1544 *
1545 * All the pointers pointing into skb header may change and must be
1546 * reloaded after call to this function.
1547 */
1548
1549/* Moves tail of skb head forward, copying data from fragmented part,
1550 * when it is necessary.
1551 * 1. It may fail due to malloc failure.
1552 * 2. It may change skb pointers.
1553 *
1554 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1555 */
1556unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1557{
1558 /* If skb has not enough free space at tail, get new one
1559 * plus 128 bytes for future expansions. If we have enough
1560 * room at tail, reallocate without expansion only if skb is cloned.
1561 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001562 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 if (eat > 0 || skb_cloned(skb)) {
1565 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1566 GFP_ATOMIC))
1567 return NULL;
1568 }
1569
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001570 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 BUG();
1572
1573 /* Optimization: no fragments, no reasons to preestimate
1574 * size of pulled pages. Superb.
1575 */
David S. Miller21dc3302010-08-23 00:13:46 -07001576 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 goto pull_pages;
1578
1579 /* Estimate size of pulled pages. */
1580 eat = delta;
1581 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001582 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1583
1584 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001586 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588
1589 /* If we need update frag list, we are in troubles.
1590 * Certainly, it possible to add an offset to skb data,
1591 * but taking into account that pulling is expected to
1592 * be very rare operation, it is worth to fight against
1593 * further bloating skb head and crucify ourselves here instead.
1594 * Pure masohism, indeed. 8)8)
1595 */
1596 if (eat) {
1597 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1598 struct sk_buff *clone = NULL;
1599 struct sk_buff *insp = NULL;
1600
1601 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001602 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 if (list->len <= eat) {
1605 /* Eaten as whole. */
1606 eat -= list->len;
1607 list = list->next;
1608 insp = list;
1609 } else {
1610 /* Eaten partially. */
1611
1612 if (skb_shared(list)) {
1613 /* Sucks! We need to fork list. :-( */
1614 clone = skb_clone(list, GFP_ATOMIC);
1615 if (!clone)
1616 return NULL;
1617 insp = list->next;
1618 list = clone;
1619 } else {
1620 /* This may be pulled without
1621 * problems. */
1622 insp = list;
1623 }
1624 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001625 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 return NULL;
1627 }
1628 break;
1629 }
1630 } while (eat);
1631
1632 /* Free pulled out fragments. */
1633 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1634 skb_shinfo(skb)->frag_list = list->next;
1635 kfree_skb(list);
1636 }
1637 /* And insert new clone at head. */
1638 if (clone) {
1639 clone->next = list;
1640 skb_shinfo(skb)->frag_list = clone;
1641 }
1642 }
1643 /* Success! Now we may commit changes to skb data. */
1644
1645pull_pages:
1646 eat = delta;
1647 k = 0;
1648 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001649 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1650
1651 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001652 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001653 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 } else {
1655 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1656 if (eat) {
1657 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001658 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 eat = 0;
1660 }
1661 k++;
1662 }
1663 }
1664 skb_shinfo(skb)->nr_frags = k;
1665
1666 skb->tail += delta;
1667 skb->data_len -= delta;
1668
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001669 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001671EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Eric Dumazet22019b12011-07-29 18:37:31 +00001673/**
1674 * skb_copy_bits - copy bits from skb to kernel buffer
1675 * @skb: source skb
1676 * @offset: offset in source
1677 * @to: destination buffer
1678 * @len: number of bytes to copy
1679 *
1680 * Copy the specified number of bytes from the source skb to the
1681 * destination buffer.
1682 *
1683 * CAUTION ! :
1684 * If its prototype is ever changed,
1685 * check arch/{*}/net/{*}.S files,
1686 * since it is called from BPF assembly code.
1687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1689{
David S. Miller1a028e52007-04-27 15:21:23 -07001690 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001691 struct sk_buff *frag_iter;
1692 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 if (offset > (int)skb->len - len)
1695 goto fault;
1696
1697 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001698 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (copy > len)
1700 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001701 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 if ((len -= copy) == 0)
1703 return 0;
1704 offset += copy;
1705 to += copy;
1706 }
1707
1708 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001709 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001710 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001712 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001713
Eric Dumazet51c56b02012-04-05 11:35:15 +02001714 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 if ((copy = end - offset) > 0) {
1716 u8 *vaddr;
1717
1718 if (copy > len)
1719 copy = len;
1720
Eric Dumazet51c56b02012-04-05 11:35:15 +02001721 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001723 vaddr + f->page_offset + offset - start,
1724 copy);
1725 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 if ((len -= copy) == 0)
1728 return 0;
1729 offset += copy;
1730 to += copy;
1731 }
David S. Miller1a028e52007-04-27 15:21:23 -07001732 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734
David S. Millerfbb398a2009-06-09 00:18:59 -07001735 skb_walk_frags(skb, frag_iter) {
1736 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
David S. Millerfbb398a2009-06-09 00:18:59 -07001738 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
David S. Millerfbb398a2009-06-09 00:18:59 -07001740 end = start + frag_iter->len;
1741 if ((copy = end - offset) > 0) {
1742 if (copy > len)
1743 copy = len;
1744 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1745 goto fault;
1746 if ((len -= copy) == 0)
1747 return 0;
1748 offset += copy;
1749 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001751 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
Shirley Maa6686f22011-07-06 12:22:12 +00001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (!len)
1755 return 0;
1756
1757fault:
1758 return -EFAULT;
1759}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001760EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Jens Axboe9c55e012007-11-06 23:30:13 -08001762/*
1763 * Callback from splice_to_pipe(), if we need to release some pages
1764 * at the end of the spd in case we error'ed out in filling the pipe.
1765 */
1766static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1767{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001768 put_page(spd->pages[i]);
1769}
Jens Axboe9c55e012007-11-06 23:30:13 -08001770
David S. Millera108d5f2012-04-23 23:06:11 -04001771static struct page *linear_to_page(struct page *page, unsigned int *len,
1772 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001773 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001774{
Eric Dumazet5640f762012-09-23 23:04:42 +00001775 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001776
Eric Dumazet5640f762012-09-23 23:04:42 +00001777 if (!sk_page_frag_refill(sk, pfrag))
1778 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001779
Eric Dumazet5640f762012-09-23 23:04:42 +00001780 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001781
Eric Dumazet5640f762012-09-23 23:04:42 +00001782 memcpy(page_address(pfrag->page) + pfrag->offset,
1783 page_address(page) + *offset, *len);
1784 *offset = pfrag->offset;
1785 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001786
Eric Dumazet5640f762012-09-23 23:04:42 +00001787 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001788}
1789
Eric Dumazet41c73a02012-04-22 12:26:16 +00001790static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1791 struct page *page,
1792 unsigned int offset)
1793{
1794 return spd->nr_pages &&
1795 spd->pages[spd->nr_pages - 1] == page &&
1796 (spd->partial[spd->nr_pages - 1].offset +
1797 spd->partial[spd->nr_pages - 1].len == offset);
1798}
1799
Jens Axboe9c55e012007-11-06 23:30:13 -08001800/*
1801 * Fill page/offset/length into spd, if it can hold more pages.
1802 */
David S. Millera108d5f2012-04-23 23:06:11 -04001803static bool spd_fill_page(struct splice_pipe_desc *spd,
1804 struct pipe_inode_info *pipe, struct page *page,
1805 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001806 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001807 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001808{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001809 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001810 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001811
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001812 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001813 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001814 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001815 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001816 }
1817 if (spd_can_coalesce(spd, page, offset)) {
1818 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001819 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001820 }
1821 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001822 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001823 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001824 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001825 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001826
David S. Millera108d5f2012-04-23 23:06:11 -04001827 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001828}
1829
David S. Millera108d5f2012-04-23 23:06:11 -04001830static bool __splice_segment(struct page *page, unsigned int poff,
1831 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001832 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001833 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001834 struct sock *sk,
1835 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001836{
1837 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001838 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001839
1840 /* skip this segment if already processed */
1841 if (*off >= plen) {
1842 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001843 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001844 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001845
Octavian Purdila2870c432008-07-15 00:49:11 -07001846 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001847 poff += *off;
1848 plen -= *off;
1849 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001850
Eric Dumazet18aafc62013-01-11 14:46:37 +00001851 do {
1852 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001853
Eric Dumazet18aafc62013-01-11 14:46:37 +00001854 if (spd_fill_page(spd, pipe, page, &flen, poff,
1855 linear, sk))
1856 return true;
1857 poff += flen;
1858 plen -= flen;
1859 *len -= flen;
1860 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001861
David S. Millera108d5f2012-04-23 23:06:11 -04001862 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001863}
1864
1865/*
David S. Millera108d5f2012-04-23 23:06:11 -04001866 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001867 * pipe is full or if we already spliced the requested length.
1868 */
David S. Millera108d5f2012-04-23 23:06:11 -04001869static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1870 unsigned int *offset, unsigned int *len,
1871 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001872{
1873 int seg;
1874
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001875 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001876 * If skb->head_frag is set, this 'linear' part is backed by a
1877 * fragment, and if the head is not shared with any clones then
1878 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001879 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001880 if (__splice_segment(virt_to_page(skb->data),
1881 (unsigned long) skb->data & (PAGE_SIZE - 1),
1882 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001883 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001884 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001885 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001886 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001887
1888 /*
1889 * then map the fragments
1890 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001891 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1892 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1893
Ian Campbellea2ab692011-08-22 23:44:58 +00001894 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001895 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001896 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001897 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001898 }
1899
David S. Millera108d5f2012-04-23 23:06:11 -04001900 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001901}
1902
1903/*
1904 * Map data from the skb to a pipe. Should handle both the linear part,
1905 * the fragments, and the frag list. It does NOT handle frag lists within
1906 * the frag list, if such a thing exists. We'd probably need to recurse to
1907 * handle that cleanly.
1908 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001909int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001910 struct pipe_inode_info *pipe, unsigned int tlen,
1911 unsigned int flags)
1912{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001913 struct partial_page partial[MAX_SKB_FRAGS];
1914 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001915 struct splice_pipe_desc spd = {
1916 .pages = pages,
1917 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001918 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001919 .flags = flags,
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001920 .ops = &nosteal_pipe_buf_ops,
Jens Axboe9c55e012007-11-06 23:30:13 -08001921 .spd_release = sock_spd_release,
1922 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001923 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001924 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001925 int ret = 0;
1926
Jens Axboe9c55e012007-11-06 23:30:13 -08001927 /*
1928 * __skb_splice_bits() only fails if the output has no room left,
1929 * so no point in going over the frag_list for the error case.
1930 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001931 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001932 goto done;
1933 else if (!tlen)
1934 goto done;
1935
1936 /*
1937 * now see if we have a frag_list to map
1938 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001939 skb_walk_frags(skb, frag_iter) {
1940 if (!tlen)
1941 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001942 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001943 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001944 }
1945
1946done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001947 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001948 /*
1949 * Drop the socket lock, otherwise we have reverse
1950 * locking dependencies between sk_lock and i_mutex
1951 * here as compared to sendfile(). We enter here
1952 * with the socket lock held, and splice_to_pipe() will
1953 * grab the pipe inode lock. For sendfile() emulation,
1954 * we call into ->sendpage() with the i_mutex lock held
1955 * and networking will grab the socket lock.
1956 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001957 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001958 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001959 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001960 }
1961
Jens Axboe35f3d142010-05-20 10:43:18 +02001962 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001963}
1964
Herbert Xu357b40a2005-04-19 22:30:14 -07001965/**
1966 * skb_store_bits - store bits from kernel buffer to skb
1967 * @skb: destination buffer
1968 * @offset: offset in destination
1969 * @from: source buffer
1970 * @len: number of bytes to copy
1971 *
1972 * Copy the specified number of bytes from the source buffer to the
1973 * destination skb. This function handles all the messy bits of
1974 * traversing fragment lists and such.
1975 */
1976
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001977int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001978{
David S. Miller1a028e52007-04-27 15:21:23 -07001979 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001980 struct sk_buff *frag_iter;
1981 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001982
1983 if (offset > (int)skb->len - len)
1984 goto fault;
1985
David S. Miller1a028e52007-04-27 15:21:23 -07001986 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001987 if (copy > len)
1988 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001989 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001990 if ((len -= copy) == 0)
1991 return 0;
1992 offset += copy;
1993 from += copy;
1994 }
1995
1996 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1997 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001998 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001999
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002000 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002001
Eric Dumazet9e903e02011-10-18 21:00:24 +00002002 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07002003 if ((copy = end - offset) > 0) {
2004 u8 *vaddr;
2005
2006 if (copy > len)
2007 copy = len;
2008
Eric Dumazet51c56b02012-04-05 11:35:15 +02002009 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07002010 memcpy(vaddr + frag->page_offset + offset - start,
2011 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002012 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07002013
2014 if ((len -= copy) == 0)
2015 return 0;
2016 offset += copy;
2017 from += copy;
2018 }
David S. Miller1a028e52007-04-27 15:21:23 -07002019 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002020 }
2021
David S. Millerfbb398a2009-06-09 00:18:59 -07002022 skb_walk_frags(skb, frag_iter) {
2023 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002024
David S. Millerfbb398a2009-06-09 00:18:59 -07002025 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07002026
David S. Millerfbb398a2009-06-09 00:18:59 -07002027 end = start + frag_iter->len;
2028 if ((copy = end - offset) > 0) {
2029 if (copy > len)
2030 copy = len;
2031 if (skb_store_bits(frag_iter, offset - start,
2032 from, copy))
2033 goto fault;
2034 if ((len -= copy) == 0)
2035 return 0;
2036 offset += copy;
2037 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002038 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002039 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002040 }
2041 if (!len)
2042 return 0;
2043
2044fault:
2045 return -EFAULT;
2046}
Herbert Xu357b40a2005-04-19 22:30:14 -07002047EXPORT_SYMBOL(skb_store_bits);
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01002050__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2051 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
David S. Miller1a028e52007-04-27 15:21:23 -07002053 int start = skb_headlen(skb);
2054 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002055 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 int pos = 0;
2057
2058 /* Checksum header. */
2059 if (copy > 0) {
2060 if (copy > len)
2061 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002062 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if ((len -= copy) == 0)
2064 return csum;
2065 offset += copy;
2066 pos = copy;
2067 }
2068
2069 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002070 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002071 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002073 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002074
Eric Dumazet51c56b02012-04-05 11:35:15 +02002075 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08002077 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 if (copy > len)
2081 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002082 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01002083 csum2 = ops->update(vaddr + frag->page_offset +
2084 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002085 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01002086 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (!(len -= copy))
2088 return csum;
2089 offset += copy;
2090 pos += copy;
2091 }
David S. Miller1a028e52007-04-27 15:21:23 -07002092 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
2094
David S. Millerfbb398a2009-06-09 00:18:59 -07002095 skb_walk_frags(skb, frag_iter) {
2096 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
David S. Millerfbb398a2009-06-09 00:18:59 -07002098 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
David S. Millerfbb398a2009-06-09 00:18:59 -07002100 end = start + frag_iter->len;
2101 if ((copy = end - offset) > 0) {
2102 __wsum csum2;
2103 if (copy > len)
2104 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002105 csum2 = __skb_checksum(frag_iter, offset - start,
2106 copy, 0, ops);
2107 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07002108 if ((len -= copy) == 0)
2109 return csum;
2110 offset += copy;
2111 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002113 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002115 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 return csum;
2118}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002119EXPORT_SYMBOL(__skb_checksum);
2120
2121__wsum skb_checksum(const struct sk_buff *skb, int offset,
2122 int len, __wsum csum)
2123{
2124 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002125 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002126 .combine = csum_block_add_ext,
2127 };
2128
2129 return __skb_checksum(skb, offset, len, csum, &ops);
2130}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002131EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133/* Both of above in one bottle. */
2134
Al Viro81d77662006-11-14 21:37:33 -08002135__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2136 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
David S. Miller1a028e52007-04-27 15:21:23 -07002138 int start = skb_headlen(skb);
2139 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002140 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 int pos = 0;
2142
2143 /* Copy header. */
2144 if (copy > 0) {
2145 if (copy > len)
2146 copy = len;
2147 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2148 copy, csum);
2149 if ((len -= copy) == 0)
2150 return csum;
2151 offset += copy;
2152 to += copy;
2153 pos = copy;
2154 }
2155
2156 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002157 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002159 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002160
Eric Dumazet9e903e02011-10-18 21:00:24 +00002161 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002163 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 u8 *vaddr;
2165 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2166
2167 if (copy > len)
2168 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002169 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002171 frag->page_offset +
2172 offset - start, to,
2173 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002174 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 csum = csum_block_add(csum, csum2, pos);
2176 if (!(len -= copy))
2177 return csum;
2178 offset += copy;
2179 to += copy;
2180 pos += copy;
2181 }
David S. Miller1a028e52007-04-27 15:21:23 -07002182 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
David S. Millerfbb398a2009-06-09 00:18:59 -07002185 skb_walk_frags(skb, frag_iter) {
2186 __wsum csum2;
2187 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
David S. Millerfbb398a2009-06-09 00:18:59 -07002189 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
David S. Millerfbb398a2009-06-09 00:18:59 -07002191 end = start + frag_iter->len;
2192 if ((copy = end - offset) > 0) {
2193 if (copy > len)
2194 copy = len;
2195 csum2 = skb_copy_and_csum_bits(frag_iter,
2196 offset - start,
2197 to, copy, 0);
2198 csum = csum_block_add(csum, csum2, pos);
2199 if ((len -= copy) == 0)
2200 return csum;
2201 offset += copy;
2202 to += copy;
2203 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002205 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002207 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return csum;
2209}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002210EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Thomas Grafaf2806f2013-12-13 15:22:17 +01002212 /**
2213 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2214 * @from: source buffer
2215 *
2216 * Calculates the amount of linear headroom needed in the 'to' skb passed
2217 * into skb_zerocopy().
2218 */
2219unsigned int
2220skb_zerocopy_headlen(const struct sk_buff *from)
2221{
2222 unsigned int hlen = 0;
2223
2224 if (!from->head_frag ||
2225 skb_headlen(from) < L1_CACHE_BYTES ||
2226 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2227 hlen = skb_headlen(from);
2228
2229 if (skb_has_frag_list(from))
2230 hlen = from->len;
2231
2232 return hlen;
2233}
2234EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2235
2236/**
2237 * skb_zerocopy - Zero copy skb to skb
2238 * @to: destination buffer
Masanari Iida7fceb4d2014-01-29 01:05:28 +09002239 * @from: source buffer
Thomas Grafaf2806f2013-12-13 15:22:17 +01002240 * @len: number of bytes to copy from source buffer
2241 * @hlen: size of linear headroom in destination buffer
2242 *
2243 * Copies up to `len` bytes from `from` to `to` by creating references
2244 * to the frags in the source buffer.
2245 *
2246 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2247 * headroom in the `to` buffer.
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002248 *
2249 * Return value:
2250 * 0: everything is OK
2251 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
2252 * -EFAULT: skb_copy_bits() found some problem with skb geometry
Thomas Grafaf2806f2013-12-13 15:22:17 +01002253 */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002254int
2255skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
Thomas Grafaf2806f2013-12-13 15:22:17 +01002256{
2257 int i, j = 0;
2258 int plen = 0; /* length of skb->head fragment */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002259 int ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002260 struct page *page;
2261 unsigned int offset;
2262
2263 BUG_ON(!from->head_frag && !hlen);
2264
2265 /* dont bother with small payloads */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002266 if (len <= skb_tailroom(to))
2267 return skb_copy_bits(from, 0, skb_put(to, len), len);
Thomas Grafaf2806f2013-12-13 15:22:17 +01002268
2269 if (hlen) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002270 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2271 if (unlikely(ret))
2272 return ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002273 len -= hlen;
2274 } else {
2275 plen = min_t(int, skb_headlen(from), len);
2276 if (plen) {
2277 page = virt_to_head_page(from->head);
2278 offset = from->data - (unsigned char *)page_address(page);
2279 __skb_fill_page_desc(to, 0, page, offset, plen);
2280 get_page(page);
2281 j = 1;
2282 len -= plen;
2283 }
2284 }
2285
2286 to->truesize += len + plen;
2287 to->len += len + plen;
2288 to->data_len += len + plen;
2289
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002290 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2291 skb_tx_error(from);
2292 return -ENOMEM;
2293 }
2294
Thomas Grafaf2806f2013-12-13 15:22:17 +01002295 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2296 if (!len)
2297 break;
2298 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2299 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2300 len -= skb_shinfo(to)->frags[j].size;
2301 skb_frag_ref(to, j);
2302 j++;
2303 }
2304 skb_shinfo(to)->nr_frags = j;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002305
2306 return 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002307}
2308EXPORT_SYMBOL_GPL(skb_zerocopy);
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2311{
Al Virod3bc23e2006-11-14 21:24:49 -08002312 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 long csstart;
2314
Patrick McHardy84fa7932006-08-29 16:44:56 -07002315 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002316 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 else
2318 csstart = skb_headlen(skb);
2319
Kris Katterjohn09a62662006-01-08 22:24:28 -08002320 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002322 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 csum = 0;
2325 if (csstart != skb->len)
2326 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2327 skb->len - csstart, 0);
2328
Patrick McHardy84fa7932006-08-29 16:44:56 -07002329 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002330 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Al Virod3bc23e2006-11-14 21:24:49 -08002332 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002335EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337/**
2338 * skb_dequeue - remove from the head of the queue
2339 * @list: list to dequeue from
2340 *
2341 * Remove the head of the list. The list lock is taken so the function
2342 * may be used safely with other locking list functions. The head item is
2343 * returned or %NULL if the list is empty.
2344 */
2345
2346struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2347{
2348 unsigned long flags;
2349 struct sk_buff *result;
2350
2351 spin_lock_irqsave(&list->lock, flags);
2352 result = __skb_dequeue(list);
2353 spin_unlock_irqrestore(&list->lock, flags);
2354 return result;
2355}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002356EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358/**
2359 * skb_dequeue_tail - remove from the tail of the queue
2360 * @list: list to dequeue from
2361 *
2362 * Remove the tail of the list. The list lock is taken so the function
2363 * may be used safely with other locking list functions. The tail item is
2364 * returned or %NULL if the list is empty.
2365 */
2366struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2367{
2368 unsigned long flags;
2369 struct sk_buff *result;
2370
2371 spin_lock_irqsave(&list->lock, flags);
2372 result = __skb_dequeue_tail(list);
2373 spin_unlock_irqrestore(&list->lock, flags);
2374 return result;
2375}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002376EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
2378/**
2379 * skb_queue_purge - empty a list
2380 * @list: list to empty
2381 *
2382 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2383 * the list and one reference dropped. This function takes the list
2384 * lock and is atomic with respect to other list locking functions.
2385 */
2386void skb_queue_purge(struct sk_buff_head *list)
2387{
2388 struct sk_buff *skb;
2389 while ((skb = skb_dequeue(list)) != NULL)
2390 kfree_skb(skb);
2391}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002392EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394/**
2395 * skb_queue_head - queue a buffer at the list head
2396 * @list: list to use
2397 * @newsk: buffer to queue
2398 *
2399 * Queue a buffer at the start of the list. This function takes the
2400 * list lock and can be used safely with other locking &sk_buff functions
2401 * safely.
2402 *
2403 * A buffer cannot be placed on two lists at the same time.
2404 */
2405void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2406{
2407 unsigned long flags;
2408
2409 spin_lock_irqsave(&list->lock, flags);
2410 __skb_queue_head(list, newsk);
2411 spin_unlock_irqrestore(&list->lock, flags);
2412}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002413EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415/**
2416 * skb_queue_tail - queue a buffer at the list tail
2417 * @list: list to use
2418 * @newsk: buffer to queue
2419 *
2420 * Queue a buffer at the tail of the list. This function takes the
2421 * list lock and can be used safely with other locking &sk_buff functions
2422 * safely.
2423 *
2424 * A buffer cannot be placed on two lists at the same time.
2425 */
2426void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2427{
2428 unsigned long flags;
2429
2430 spin_lock_irqsave(&list->lock, flags);
2431 __skb_queue_tail(list, newsk);
2432 spin_unlock_irqrestore(&list->lock, flags);
2433}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002434EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436/**
2437 * skb_unlink - remove a buffer from a list
2438 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002439 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 *
David S. Miller8728b832005-08-09 19:25:21 -07002441 * Remove a packet from a list. The list locks are taken and this
2442 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 *
David S. Miller8728b832005-08-09 19:25:21 -07002444 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 */
David S. Miller8728b832005-08-09 19:25:21 -07002446void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
David S. Miller8728b832005-08-09 19:25:21 -07002448 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
David S. Miller8728b832005-08-09 19:25:21 -07002450 spin_lock_irqsave(&list->lock, flags);
2451 __skb_unlink(skb, list);
2452 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002454EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456/**
2457 * skb_append - append a buffer
2458 * @old: buffer to insert after
2459 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002460 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 *
2462 * Place a packet after a given packet in a list. The list locks are taken
2463 * and this function is atomic with respect to other list locked calls.
2464 * A buffer cannot be placed on two lists at the same time.
2465 */
David S. Miller8728b832005-08-09 19:25:21 -07002466void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
2468 unsigned long flags;
2469
David S. Miller8728b832005-08-09 19:25:21 -07002470 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002471 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002472 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002474EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
2476/**
2477 * skb_insert - insert a buffer
2478 * @old: buffer to insert before
2479 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002480 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 *
David S. Miller8728b832005-08-09 19:25:21 -07002482 * Place a packet before a given packet in a list. The list locks are
2483 * taken and this function is atomic with respect to other list locked
2484 * calls.
2485 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 * A buffer cannot be placed on two lists at the same time.
2487 */
David S. Miller8728b832005-08-09 19:25:21 -07002488void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
2490 unsigned long flags;
2491
David S. Miller8728b832005-08-09 19:25:21 -07002492 spin_lock_irqsave(&list->lock, flags);
2493 __skb_insert(newsk, old->prev, old, list);
2494 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002496EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498static inline void skb_split_inside_header(struct sk_buff *skb,
2499 struct sk_buff* skb1,
2500 const u32 len, const int pos)
2501{
2502 int i;
2503
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002504 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2505 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 /* And move data appendix as is. */
2507 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2508 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2509
2510 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2511 skb_shinfo(skb)->nr_frags = 0;
2512 skb1->data_len = skb->data_len;
2513 skb1->len += skb1->data_len;
2514 skb->data_len = 0;
2515 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002516 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
2518
2519static inline void skb_split_no_header(struct sk_buff *skb,
2520 struct sk_buff* skb1,
2521 const u32 len, int pos)
2522{
2523 int i, k = 0;
2524 const int nfrags = skb_shinfo(skb)->nr_frags;
2525
2526 skb_shinfo(skb)->nr_frags = 0;
2527 skb1->len = skb1->data_len = skb->len - len;
2528 skb->len = len;
2529 skb->data_len = len - pos;
2530
2531 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002532 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 if (pos + size > len) {
2535 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2536
2537 if (pos < len) {
2538 /* Split frag.
2539 * We have two variants in this case:
2540 * 1. Move all the frag to the second
2541 * part, if it is possible. F.e.
2542 * this approach is mandatory for TUX,
2543 * where splitting is expensive.
2544 * 2. Split is accurately. We make this.
2545 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002546 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002548 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2549 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 skb_shinfo(skb)->nr_frags++;
2551 }
2552 k++;
2553 } else
2554 skb_shinfo(skb)->nr_frags++;
2555 pos += size;
2556 }
2557 skb_shinfo(skb1)->nr_frags = k;
2558}
2559
2560/**
2561 * skb_split - Split fragmented skb to two parts at length len.
2562 * @skb: the buffer to split
2563 * @skb1: the buffer to receive the second part
2564 * @len: new length for skb
2565 */
2566void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2567{
2568 int pos = skb_headlen(skb);
2569
Amerigo Wang68534c62013-02-19 22:51:30 +00002570 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (len < pos) /* Split line is inside header. */
2572 skb_split_inside_header(skb, skb1, len, pos);
2573 else /* Second chunk has no header, nothing to copy. */
2574 skb_split_no_header(skb, skb1, len, pos);
2575}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002576EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002578/* Shifting from/to a cloned skb is a no-go.
2579 *
2580 * Caller cannot keep skb_shinfo related pointers past calling here!
2581 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002582static int skb_prepare_for_shift(struct sk_buff *skb)
2583{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002584 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002585}
2586
2587/**
2588 * skb_shift - Shifts paged data partially from skb to another
2589 * @tgt: buffer into which tail data gets added
2590 * @skb: buffer from which the paged data comes from
2591 * @shiftlen: shift up to this many bytes
2592 *
2593 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002594 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002595 * It's up to caller to free skb if everything was shifted.
2596 *
2597 * If @tgt runs out of frags, the whole operation is aborted.
2598 *
2599 * Skb cannot include anything else but paged data while tgt is allowed
2600 * to have non-paged data as well.
2601 *
2602 * TODO: full sized shift could be optimized but that would need
2603 * specialized skb free'er to handle frags without up-to-date nr_frags.
2604 */
2605int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2606{
2607 int from, to, merge, todo;
2608 struct skb_frag_struct *fragfrom, *fragto;
2609
2610 BUG_ON(shiftlen > skb->len);
2611 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2612
2613 todo = shiftlen;
2614 from = 0;
2615 to = skb_shinfo(tgt)->nr_frags;
2616 fragfrom = &skb_shinfo(skb)->frags[from];
2617
2618 /* Actual merge is delayed until the point when we know we can
2619 * commit all, so that we don't have to undo partial changes
2620 */
2621 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002622 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2623 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002624 merge = -1;
2625 } else {
2626 merge = to - 1;
2627
Eric Dumazet9e903e02011-10-18 21:00:24 +00002628 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002629 if (todo < 0) {
2630 if (skb_prepare_for_shift(skb) ||
2631 skb_prepare_for_shift(tgt))
2632 return 0;
2633
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002634 /* All previous frag pointers might be stale! */
2635 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002636 fragto = &skb_shinfo(tgt)->frags[merge];
2637
Eric Dumazet9e903e02011-10-18 21:00:24 +00002638 skb_frag_size_add(fragto, shiftlen);
2639 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002640 fragfrom->page_offset += shiftlen;
2641
2642 goto onlymerged;
2643 }
2644
2645 from++;
2646 }
2647
2648 /* Skip full, not-fitting skb to avoid expensive operations */
2649 if ((shiftlen == skb->len) &&
2650 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2651 return 0;
2652
2653 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2654 return 0;
2655
2656 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2657 if (to == MAX_SKB_FRAGS)
2658 return 0;
2659
2660 fragfrom = &skb_shinfo(skb)->frags[from];
2661 fragto = &skb_shinfo(tgt)->frags[to];
2662
Eric Dumazet9e903e02011-10-18 21:00:24 +00002663 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002664 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002665 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002666 from++;
2667 to++;
2668
2669 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002670 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002671 fragto->page = fragfrom->page;
2672 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002673 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002674
2675 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002676 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002677 todo = 0;
2678
2679 to++;
2680 break;
2681 }
2682 }
2683
2684 /* Ready to "commit" this state change to tgt */
2685 skb_shinfo(tgt)->nr_frags = to;
2686
2687 if (merge >= 0) {
2688 fragfrom = &skb_shinfo(skb)->frags[0];
2689 fragto = &skb_shinfo(tgt)->frags[merge];
2690
Eric Dumazet9e903e02011-10-18 21:00:24 +00002691 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002692 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002693 }
2694
2695 /* Reposition in the original skb */
2696 to = 0;
2697 while (from < skb_shinfo(skb)->nr_frags)
2698 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2699 skb_shinfo(skb)->nr_frags = to;
2700
2701 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2702
2703onlymerged:
2704 /* Most likely the tgt won't ever need its checksum anymore, skb on
2705 * the other hand might need it if it needs to be resent
2706 */
2707 tgt->ip_summed = CHECKSUM_PARTIAL;
2708 skb->ip_summed = CHECKSUM_PARTIAL;
2709
2710 /* Yak, is it really working this way? Some helper please? */
2711 skb->len -= shiftlen;
2712 skb->data_len -= shiftlen;
2713 skb->truesize -= shiftlen;
2714 tgt->len += shiftlen;
2715 tgt->data_len += shiftlen;
2716 tgt->truesize += shiftlen;
2717
2718 return shiftlen;
2719}
2720
Thomas Graf677e90e2005-06-23 20:59:51 -07002721/**
2722 * skb_prepare_seq_read - Prepare a sequential read of skb data
2723 * @skb: the buffer to read
2724 * @from: lower offset of data to be read
2725 * @to: upper offset of data to be read
2726 * @st: state variable
2727 *
2728 * Initializes the specified state variable. Must be called before
2729 * invoking skb_seq_read() for the first time.
2730 */
2731void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2732 unsigned int to, struct skb_seq_state *st)
2733{
2734 st->lower_offset = from;
2735 st->upper_offset = to;
2736 st->root_skb = st->cur_skb = skb;
2737 st->frag_idx = st->stepped_offset = 0;
2738 st->frag_data = NULL;
2739}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002740EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002741
2742/**
2743 * skb_seq_read - Sequentially read skb data
2744 * @consumed: number of bytes consumed by the caller so far
2745 * @data: destination pointer for data to be returned
2746 * @st: state variable
2747 *
Mathias Krausebc323832013-11-07 14:18:26 +01002748 * Reads a block of skb data at @consumed relative to the
Thomas Graf677e90e2005-06-23 20:59:51 -07002749 * lower offset specified to skb_prepare_seq_read(). Assigns
Mathias Krausebc323832013-11-07 14:18:26 +01002750 * the head of the data block to @data and returns the length
Thomas Graf677e90e2005-06-23 20:59:51 -07002751 * of the block or 0 if the end of the skb data or the upper
2752 * offset has been reached.
2753 *
2754 * The caller is not required to consume all of the data
Mathias Krausebc323832013-11-07 14:18:26 +01002755 * returned, i.e. @consumed is typically set to the number
Thomas Graf677e90e2005-06-23 20:59:51 -07002756 * of bytes already consumed and the next call to
2757 * skb_seq_read() will return the remaining part of the block.
2758 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002759 * Note 1: The size of each block of data returned can be arbitrary,
Masanari Iidae793c0f2014-09-04 23:44:36 +09002760 * this limitation is the cost for zerocopy sequential
Thomas Graf677e90e2005-06-23 20:59:51 -07002761 * reads of potentially non linear data.
2762 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002763 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002764 * at the moment, state->root_skb could be replaced with
2765 * a stack for this purpose.
2766 */
2767unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2768 struct skb_seq_state *st)
2769{
2770 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2771 skb_frag_t *frag;
2772
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002773 if (unlikely(abs_offset >= st->upper_offset)) {
2774 if (st->frag_data) {
2775 kunmap_atomic(st->frag_data);
2776 st->frag_data = NULL;
2777 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002778 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002779 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002780
2781next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002782 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002783
Thomas Chenault995b3372009-05-18 21:43:27 -07002784 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002785 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002786 return block_limit - abs_offset;
2787 }
2788
2789 if (st->frag_idx == 0 && !st->frag_data)
2790 st->stepped_offset += skb_headlen(st->cur_skb);
2791
2792 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2793 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002794 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002795
2796 if (abs_offset < block_limit) {
2797 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002798 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002799
2800 *data = (u8 *) st->frag_data + frag->page_offset +
2801 (abs_offset - st->stepped_offset);
2802
2803 return block_limit - abs_offset;
2804 }
2805
2806 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002807 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002808 st->frag_data = NULL;
2809 }
2810
2811 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002812 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002813 }
2814
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002815 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002816 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002817 st->frag_data = NULL;
2818 }
2819
David S. Miller21dc3302010-08-23 00:13:46 -07002820 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002821 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002822 st->frag_idx = 0;
2823 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002824 } else if (st->cur_skb->next) {
2825 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002826 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002827 goto next_skb;
2828 }
2829
2830 return 0;
2831}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002832EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002833
2834/**
2835 * skb_abort_seq_read - Abort a sequential read of skb data
2836 * @st: state variable
2837 *
2838 * Must be called if skb_seq_read() was not called until it
2839 * returned 0.
2840 */
2841void skb_abort_seq_read(struct skb_seq_state *st)
2842{
2843 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002844 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002845}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002846EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002847
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002848#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2849
2850static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2851 struct ts_config *conf,
2852 struct ts_state *state)
2853{
2854 return skb_seq_read(offset, text, TS_SKB_CB(state));
2855}
2856
2857static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2858{
2859 skb_abort_seq_read(TS_SKB_CB(state));
2860}
2861
2862/**
2863 * skb_find_text - Find a text pattern in skb data
2864 * @skb: the buffer to look in
2865 * @from: search offset
2866 * @to: search limit
2867 * @config: textsearch configuration
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002868 *
2869 * Finds a pattern in the skb data according to the specified
2870 * textsearch configuration. Use textsearch_next() to retrieve
2871 * subsequent occurrences of the pattern. Returns the offset
2872 * to the first occurrence or UINT_MAX if no match was found.
2873 */
2874unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
Bojan Prtvar059a2442015-02-22 11:46:35 +01002875 unsigned int to, struct ts_config *config)
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002876{
Bojan Prtvar059a2442015-02-22 11:46:35 +01002877 struct ts_state state;
Phil Oesterf72b9482006-06-26 00:00:57 -07002878 unsigned int ret;
2879
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002880 config->get_next_block = skb_ts_get_next_block;
2881 config->finish = skb_ts_finish;
2882
Bojan Prtvar059a2442015-02-22 11:46:35 +01002883 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002884
Bojan Prtvar059a2442015-02-22 11:46:35 +01002885 ret = textsearch_find(config, &state);
Phil Oesterf72b9482006-06-26 00:00:57 -07002886 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002887}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002888EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002889
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002890/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002891 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002892 * @sk: sock structure
Masanari Iidae793c0f2014-09-04 23:44:36 +09002893 * @skb: skb structure to be appended with user data.
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002894 * @getfrag: call back function to be used for getting the user data
2895 * @from: pointer to user message iov
2896 * @length: length of the iov message
2897 *
2898 * Description: This procedure append the user data in the fragment part
2899 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2900 */
2901int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002902 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002903 int len, int odd, struct sk_buff *skb),
2904 void *from, int length)
2905{
Eric Dumazetb2111722012-12-28 06:06:37 +00002906 int frg_cnt = skb_shinfo(skb)->nr_frags;
2907 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002908 int offset = 0;
2909 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002910 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002911
2912 do {
2913 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002914 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002915 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002916
Eric Dumazetb2111722012-12-28 06:06:37 +00002917 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002918 return -ENOMEM;
2919
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002920 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002921 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002922
Eric Dumazetb2111722012-12-28 06:06:37 +00002923 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2924 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002925 if (ret < 0)
2926 return -EFAULT;
2927
2928 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002929 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2930 copy);
2931 frg_cnt++;
2932 pfrag->offset += copy;
2933 get_page(pfrag->page);
2934
2935 skb->truesize += copy;
2936 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002937 skb->len += copy;
2938 skb->data_len += copy;
2939 offset += copy;
2940 length -= copy;
2941
2942 } while (length > 0);
2943
2944 return 0;
2945}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002946EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002947
Herbert Xucbb042f2006-03-20 22:43:56 -08002948/**
2949 * skb_pull_rcsum - pull skb and update receive checksum
2950 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002951 * @len: length of data pulled
2952 *
2953 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002954 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002955 * receive path processing instead of skb_pull unless you know
2956 * that the checksum difference is zero (e.g., a valid IP header)
2957 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002958 */
2959unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2960{
2961 BUG_ON(len > skb->len);
2962 skb->len -= len;
2963 BUG_ON(skb->len < skb->data_len);
2964 skb_postpull_rcsum(skb, skb->data, len);
2965 return skb->data += len;
2966}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002967EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2968
Herbert Xuf4c50d92006-06-22 03:02:40 -07002969/**
2970 * skb_segment - Perform protocol segmentation on skb.
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002971 * @head_skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002972 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002973 *
2974 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002975 * a pointer to the first in a list of new skbs for the segments.
2976 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002977 */
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002978struct sk_buff *skb_segment(struct sk_buff *head_skb,
2979 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002980{
2981 struct sk_buff *segs = NULL;
2982 struct sk_buff *tail = NULL;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02002983 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002984 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
2985 unsigned int mss = skb_shinfo(head_skb)->gso_size;
2986 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02002987 struct sk_buff *frag_skb = head_skb;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002988 unsigned int offset = doffset;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002989 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002990 unsigned int headroom;
2991 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002992 __be16 proto;
2993 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002994 int sg = !!(features & NETIF_F_SG);
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02002995 int nfrags = skb_shinfo(head_skb)->nr_frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002996 int err = -ENOMEM;
2997 int i = 0;
2998 int pos;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002999 int dummy;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003000
Wei-Chun Chao5882a072014-06-08 23:48:54 -07003001 __skb_push(head_skb, doffset);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003002 proto = skb_network_protocol(head_skb, &dummy);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003003 if (unlikely(!proto))
3004 return ERR_PTR(-EINVAL);
3005
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003006 csum = !head_skb->encap_hdr_csum &&
3007 !!can_checksum_protocol(features, proto);
3008
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003009 headroom = skb_headroom(head_skb);
3010 pos = skb_headlen(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003011
3012 do {
3013 struct sk_buff *nskb;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003014 skb_frag_t *nskb_frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003015 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003016 int size;
3017
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003018 len = head_skb->len - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003019 if (len > mss)
3020 len = mss;
3021
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003022 hsize = skb_headlen(head_skb) - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003023 if (hsize < 0)
3024 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003025 if (hsize > len || !sg)
3026 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003027
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003028 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3029 (skb_headlen(list_skb) == len || sg)) {
3030 BUG_ON(skb_headlen(list_skb) > len);
Herbert Xu89319d382008-12-15 23:26:06 -08003031
Herbert Xu9d8506c2013-11-21 11:10:04 -08003032 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003033 nfrags = skb_shinfo(list_skb)->nr_frags;
3034 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003035 frag_skb = list_skb;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003036 pos += skb_headlen(list_skb);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003037
3038 while (pos < offset + len) {
3039 BUG_ON(i >= nfrags);
3040
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003041 size = skb_frag_size(frag);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003042 if (pos + size > offset + len)
3043 break;
3044
3045 i++;
3046 pos += size;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003047 frag++;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003048 }
3049
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003050 nskb = skb_clone(list_skb, GFP_ATOMIC);
3051 list_skb = list_skb->next;
Herbert Xu89319d382008-12-15 23:26:06 -08003052
3053 if (unlikely(!nskb))
3054 goto err;
3055
Herbert Xu9d8506c2013-11-21 11:10:04 -08003056 if (unlikely(pskb_trim(nskb, len))) {
3057 kfree_skb(nskb);
3058 goto err;
3059 }
3060
Alexander Duyckec47ea82012-05-04 14:26:56 +00003061 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08003062 if (skb_cow_head(nskb, doffset + headroom)) {
3063 kfree_skb(nskb);
3064 goto err;
3065 }
3066
Alexander Duyckec47ea82012-05-04 14:26:56 +00003067 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08003068 skb_release_head_state(nskb);
3069 __skb_push(nskb, doffset);
3070 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07003071 nskb = __alloc_skb(hsize + doffset + headroom,
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003072 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
Mel Gormanc93bdd02012-07-31 16:44:19 -07003073 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08003074
3075 if (unlikely(!nskb))
3076 goto err;
3077
3078 skb_reserve(nskb, headroom);
3079 __skb_put(nskb, doffset);
3080 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003081
3082 if (segs)
3083 tail->next = nskb;
3084 else
3085 segs = nskb;
3086 tail = nskb;
3087
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003088 __copy_skb_header(nskb, head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003089
Eric Dumazet030737b2013-10-19 11:42:54 -07003090 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Vlad Yasevichfcdfe3a2014-07-31 10:33:06 -04003091 skb_reset_mac_len(nskb);
Pravin B Shelar68c33162013-02-14 14:02:41 +00003092
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003093 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
Pravin B Shelar68c33162013-02-14 14:02:41 +00003094 nskb->data - tnl_hlen,
3095 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08003096
Herbert Xu9d8506c2013-11-21 11:10:04 -08003097 if (nskb->len == len + doffset)
Simon Horman1cdbcb72013-05-19 15:46:49 +00003098 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08003099
Tom Herberte585f232014-11-04 09:06:54 -08003100 if (!sg && !nskb->remcsum_offload) {
Herbert Xu6f85a122008-08-15 14:55:02 -07003101 nskb->ip_summed = CHECKSUM_NONE;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003102 nskb->csum = skb_copy_and_csum_bits(head_skb, offset,
Herbert Xuf4c50d92006-06-22 03:02:40 -07003103 skb_put(nskb, len),
3104 len, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003105 SKB_GSO_CB(nskb)->csum_start =
Tom Herbertde843722014-06-25 12:51:01 -07003106 skb_headroom(nskb) + doffset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003107 continue;
3108 }
3109
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003110 nskb_frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003111
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003112 skb_copy_from_linear_data_offset(head_skb, offset,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003113 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003114
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003115 skb_shinfo(nskb)->tx_flags = skb_shinfo(head_skb)->tx_flags &
3116 SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00003117
Herbert Xu9d8506c2013-11-21 11:10:04 -08003118 while (pos < offset + len) {
3119 if (i >= nfrags) {
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003120 BUG_ON(skb_headlen(list_skb));
Herbert Xu9d8506c2013-11-21 11:10:04 -08003121
3122 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003123 nfrags = skb_shinfo(list_skb)->nr_frags;
3124 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003125 frag_skb = list_skb;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003126
3127 BUG_ON(!nfrags);
3128
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003129 list_skb = list_skb->next;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003130 }
3131
3132 if (unlikely(skb_shinfo(nskb)->nr_frags >=
3133 MAX_SKB_FRAGS)) {
3134 net_warn_ratelimited(
3135 "skb_segment: too many frags: %u %u\n",
3136 pos, mss);
3137 goto err;
3138 }
3139
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003140 if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
3141 goto err;
3142
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003143 *nskb_frag = *frag;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003144 __skb_frag_ref(nskb_frag);
3145 size = skb_frag_size(nskb_frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003146
3147 if (pos < offset) {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003148 nskb_frag->page_offset += offset - pos;
3149 skb_frag_size_sub(nskb_frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003150 }
3151
Herbert Xu89319d382008-12-15 23:26:06 -08003152 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003153
3154 if (pos + size <= offset + len) {
3155 i++;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003156 frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003157 pos += size;
3158 } else {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003159 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08003160 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003161 }
3162
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003163 nskb_frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003164 }
3165
Herbert Xu89319d382008-12-15 23:26:06 -08003166skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07003167 nskb->data_len = len - hsize;
3168 nskb->len += nskb->data_len;
3169 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003170
Simon Horman1cdbcb72013-05-19 15:46:49 +00003171perform_csum_check:
Tom Herberte585f232014-11-04 09:06:54 -08003172 if (!csum && !nskb->remcsum_offload) {
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003173 nskb->csum = skb_checksum(nskb, doffset,
3174 nskb->len - doffset, 0);
3175 nskb->ip_summed = CHECKSUM_NONE;
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003176 SKB_GSO_CB(nskb)->csum_start =
3177 skb_headroom(nskb) + doffset;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003178 }
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003179 } while ((offset += len) < head_skb->len);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003180
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003181 /* Some callers want to get the end of the list.
3182 * Put it in segs->prev to avoid walking the list.
3183 * (see validate_xmit_skb_list() for example)
3184 */
3185 segs->prev = tail;
Toshiaki Makita432c8562014-10-27 10:30:51 -07003186
3187 /* Following permits correct backpressure, for protocols
3188 * using skb_set_owner_w().
3189 * Idea is to tranfert ownership from head_skb to last segment.
3190 */
3191 if (head_skb->destructor == sock_wfree) {
3192 swap(tail->truesize, head_skb->truesize);
3193 swap(tail->destructor, head_skb->destructor);
3194 swap(tail->sk, head_skb->sk);
3195 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003196 return segs;
3197
3198err:
Eric Dumazet289dccb2013-12-20 14:29:08 -08003199 kfree_skb_list(segs);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003200 return ERR_PTR(err);
3201}
Herbert Xuf4c50d92006-06-22 03:02:40 -07003202EXPORT_SYMBOL_GPL(skb_segment);
3203
Herbert Xu71d93b32008-12-15 23:42:33 -08003204int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
3205{
Eric Dumazet8a291112013-10-08 09:02:23 -07003206 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00003207 unsigned int offset = skb_gro_offset(skb);
3208 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003209 unsigned int len = skb_gro_len(skb);
Eric Dumazet58025e42015-03-05 13:47:48 -08003210 struct sk_buff *lp, *p = *head;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003211 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003212
Eric Dumazet8a291112013-10-08 09:02:23 -07003213 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08003214 return -E2BIG;
3215
Eric Dumazet29e98242014-05-16 11:34:37 -07003216 lp = NAPI_GRO_CB(p)->last;
Eric Dumazet8a291112013-10-08 09:02:23 -07003217 pinfo = skb_shinfo(lp);
3218
3219 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00003220 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003221 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003222 int i = skbinfo->nr_frags;
3223 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00003224
Herbert Xu66e92fc2009-05-26 18:50:32 +00003225 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003226 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00003227
Eric Dumazet8a291112013-10-08 09:02:23 -07003228 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003229 pinfo->nr_frags = nr_frags;
3230 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08003231
Herbert Xu9aaa1562009-05-26 18:50:33 +00003232 frag = pinfo->frags + nr_frags;
3233 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003234 do {
3235 *--frag = *--frag2;
3236 } while (--i);
3237
3238 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003239 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00003240
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003241 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00003242 delta_truesize = skb->truesize -
3243 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003244
Herbert Xuf5572062009-01-14 20:40:03 -08003245 skb->truesize -= skb->data_len;
3246 skb->len -= skb->data_len;
3247 skb->data_len = 0;
3248
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003249 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08003250 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003251 } else if (skb->head_frag) {
3252 int nr_frags = pinfo->nr_frags;
3253 skb_frag_t *frag = pinfo->frags + nr_frags;
3254 struct page *page = virt_to_head_page(skb->head);
3255 unsigned int first_size = headlen - offset;
3256 unsigned int first_offset;
3257
3258 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003259 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003260
3261 first_offset = skb->data -
3262 (unsigned char *)page_address(page) +
3263 offset;
3264
3265 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3266
3267 frag->page.p = page;
3268 frag->page_offset = first_offset;
3269 skb_frag_size_set(frag, first_size);
3270
3271 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3272 /* We dont need to clear skbinfo->nr_frags here */
3273
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003274 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003275 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3276 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003277 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003278
3279merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003280 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003281 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003282 unsigned int eat = offset - headlen;
3283
3284 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003285 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003286 skb->data_len -= eat;
3287 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003288 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003289 }
3290
Herbert Xu67147ba2009-05-26 18:50:22 +00003291 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003292
Eric Dumazet29e98242014-05-16 11:34:37 -07003293 if (NAPI_GRO_CB(p)->last == p)
Eric Dumazet8a291112013-10-08 09:02:23 -07003294 skb_shinfo(p)->frag_list = skb;
3295 else
3296 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003297 NAPI_GRO_CB(p)->last = skb;
Eric Dumazetf4a775d2014-09-22 16:29:32 -07003298 __skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003299 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003300
Herbert Xu5d38a072009-01-04 16:13:40 -08003301done:
3302 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003303 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003304 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003305 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003306 if (lp != p) {
3307 lp->data_len += len;
3308 lp->truesize += delta_truesize;
3309 lp->len += len;
3310 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003311 NAPI_GRO_CB(skb)->same_flow = 1;
3312 return 0;
3313}
Herbert Xu71d93b32008-12-15 23:42:33 -08003314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315void __init skb_init(void)
3316{
3317 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3318 sizeof(struct sk_buff),
3319 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003320 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003321 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003322 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07003323 sizeof(struct sk_buff_fclones),
David S. Millerd179cd12005-08-17 14:57:30 -07003324 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003325 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003326 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327}
3328
David Howells716ea3a2007-04-02 20:19:53 -07003329/**
3330 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3331 * @skb: Socket buffer containing the buffers to be mapped
3332 * @sg: The scatter-gather list to map into
3333 * @offset: The offset into the buffer's contents to start mapping
3334 * @len: Length of buffer space to be mapped
3335 *
3336 * Fill the specified scatter-gather list with mappings/pointers into a
3337 * region of the buffer space attached to a socket buffer.
3338 */
David S. Miller51c739d2007-10-30 21:29:29 -07003339static int
3340__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003341{
David S. Miller1a028e52007-04-27 15:21:23 -07003342 int start = skb_headlen(skb);
3343 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003344 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003345 int elt = 0;
3346
3347 if (copy > 0) {
3348 if (copy > len)
3349 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003350 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003351 elt++;
3352 if ((len -= copy) == 0)
3353 return elt;
3354 offset += copy;
3355 }
3356
3357 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003358 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003359
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003360 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003361
Eric Dumazet9e903e02011-10-18 21:00:24 +00003362 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003363 if ((copy = end - offset) > 0) {
3364 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3365
3366 if (copy > len)
3367 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003368 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003369 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003370 elt++;
3371 if (!(len -= copy))
3372 return elt;
3373 offset += copy;
3374 }
David S. Miller1a028e52007-04-27 15:21:23 -07003375 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003376 }
3377
David S. Millerfbb398a2009-06-09 00:18:59 -07003378 skb_walk_frags(skb, frag_iter) {
3379 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003380
David S. Millerfbb398a2009-06-09 00:18:59 -07003381 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003382
David S. Millerfbb398a2009-06-09 00:18:59 -07003383 end = start + frag_iter->len;
3384 if ((copy = end - offset) > 0) {
3385 if (copy > len)
3386 copy = len;
3387 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3388 copy);
3389 if ((len -= copy) == 0)
3390 return elt;
3391 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003392 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003393 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003394 }
3395 BUG_ON(len);
3396 return elt;
3397}
3398
Fan Du25a91d82014-01-18 09:54:23 +08003399/* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
3400 * sglist without mark the sg which contain last skb data as the end.
3401 * So the caller can mannipulate sg list as will when padding new data after
3402 * the first call without calling sg_unmark_end to expend sg list.
3403 *
3404 * Scenario to use skb_to_sgvec_nomark:
3405 * 1. sg_init_table
3406 * 2. skb_to_sgvec_nomark(payload1)
3407 * 3. skb_to_sgvec_nomark(payload2)
3408 *
3409 * This is equivalent to:
3410 * 1. sg_init_table
3411 * 2. skb_to_sgvec(payload1)
3412 * 3. sg_unmark_end
3413 * 4. skb_to_sgvec(payload2)
3414 *
3415 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
3416 * is more preferable.
3417 */
3418int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
3419 int offset, int len)
3420{
3421 return __skb_to_sgvec(skb, sg, offset, len);
3422}
3423EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
3424
David S. Miller51c739d2007-10-30 21:29:29 -07003425int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3426{
3427 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3428
Jens Axboec46f2332007-10-31 12:06:37 +01003429 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003430
3431 return nsg;
3432}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003433EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003434
David Howells716ea3a2007-04-02 20:19:53 -07003435/**
3436 * skb_cow_data - Check that a socket buffer's data buffers are writable
3437 * @skb: The socket buffer to check.
3438 * @tailbits: Amount of trailing space to be added
3439 * @trailer: Returned pointer to the skb where the @tailbits space begins
3440 *
3441 * Make sure that the data buffers attached to a socket buffer are
3442 * writable. If they are not, private copies are made of the data buffers
3443 * and the socket buffer is set to use these instead.
3444 *
3445 * If @tailbits is given, make sure that there is space to write @tailbits
3446 * bytes of data beyond current end of socket buffer. @trailer will be
3447 * set to point to the skb in which this space begins.
3448 *
3449 * The number of scatterlist elements required to completely map the
3450 * COW'd and extended socket buffer will be returned.
3451 */
3452int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3453{
3454 int copyflag;
3455 int elt;
3456 struct sk_buff *skb1, **skb_p;
3457
3458 /* If skb is cloned or its head is paged, reallocate
3459 * head pulling out all the pages (pages are considered not writable
3460 * at the moment even if they are anonymous).
3461 */
3462 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3463 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3464 return -ENOMEM;
3465
3466 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003467 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003468 /* A little of trouble, not enough of space for trailer.
3469 * This should not happen, when stack is tuned to generate
3470 * good frames. OK, on miss we reallocate and reserve even more
3471 * space, 128 bytes is fair. */
3472
3473 if (skb_tailroom(skb) < tailbits &&
3474 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3475 return -ENOMEM;
3476
3477 /* Voila! */
3478 *trailer = skb;
3479 return 1;
3480 }
3481
3482 /* Misery. We are in troubles, going to mincer fragments... */
3483
3484 elt = 1;
3485 skb_p = &skb_shinfo(skb)->frag_list;
3486 copyflag = 0;
3487
3488 while ((skb1 = *skb_p) != NULL) {
3489 int ntail = 0;
3490
3491 /* The fragment is partially pulled by someone,
3492 * this can happen on input. Copy it and everything
3493 * after it. */
3494
3495 if (skb_shared(skb1))
3496 copyflag = 1;
3497
3498 /* If the skb is the last, worry about trailer. */
3499
3500 if (skb1->next == NULL && tailbits) {
3501 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003502 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003503 skb_tailroom(skb1) < tailbits)
3504 ntail = tailbits + 128;
3505 }
3506
3507 if (copyflag ||
3508 skb_cloned(skb1) ||
3509 ntail ||
3510 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003511 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003512 struct sk_buff *skb2;
3513
3514 /* Fuck, we are miserable poor guys... */
3515 if (ntail == 0)
3516 skb2 = skb_copy(skb1, GFP_ATOMIC);
3517 else
3518 skb2 = skb_copy_expand(skb1,
3519 skb_headroom(skb1),
3520 ntail,
3521 GFP_ATOMIC);
3522 if (unlikely(skb2 == NULL))
3523 return -ENOMEM;
3524
3525 if (skb1->sk)
3526 skb_set_owner_w(skb2, skb1->sk);
3527
3528 /* Looking around. Are we still alive?
3529 * OK, link new skb, drop old one */
3530
3531 skb2->next = skb1->next;
3532 *skb_p = skb2;
3533 kfree_skb(skb1);
3534 skb1 = skb2;
3535 }
3536 elt++;
3537 *trailer = skb1;
3538 skb_p = &skb1->next;
3539 }
3540
3541 return elt;
3542}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003543EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003544
Eric Dumazetb1faf562010-05-31 23:44:05 -07003545static void sock_rmem_free(struct sk_buff *skb)
3546{
3547 struct sock *sk = skb->sk;
3548
3549 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3550}
3551
3552/*
3553 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3554 */
3555int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3556{
3557 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003558 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003559 return -ENOMEM;
3560
3561 skb_orphan(skb);
3562 skb->sk = sk;
3563 skb->destructor = sock_rmem_free;
3564 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3565
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003566 /* before exiting rcu section, make sure dst is refcounted */
3567 skb_dst_force(skb);
3568
Eric Dumazetb1faf562010-05-31 23:44:05 -07003569 skb_queue_tail(&sk->sk_error_queue, skb);
3570 if (!sock_flag(sk, SOCK_DEAD))
David S. Miller676d2362014-04-11 16:15:36 -04003571 sk->sk_data_ready(sk);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003572 return 0;
3573}
3574EXPORT_SYMBOL(sock_queue_err_skb);
3575
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003576struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
3577{
3578 struct sk_buff_head *q = &sk->sk_error_queue;
3579 struct sk_buff *skb, *skb_next;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003580 unsigned long flags;
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003581 int err = 0;
3582
Eric Dumazet997d5c32015-02-18 05:47:55 -08003583 spin_lock_irqsave(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003584 skb = __skb_dequeue(q);
3585 if (skb && (skb_next = skb_peek(q)))
3586 err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003587 spin_unlock_irqrestore(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003588
3589 sk->sk_err = err;
3590 if (err)
3591 sk->sk_error_report(sk);
3592
3593 return skb;
3594}
3595EXPORT_SYMBOL(sock_dequeue_err_skb);
3596
Alexander Duyckcab41c42014-09-10 18:05:26 -04003597/**
3598 * skb_clone_sk - create clone of skb, and take reference to socket
3599 * @skb: the skb to clone
3600 *
3601 * This function creates a clone of a buffer that holds a reference on
3602 * sk_refcnt. Buffers created via this function are meant to be
3603 * returned using sock_queue_err_skb, or free via kfree_skb.
3604 *
3605 * When passing buffers allocated with this function to sock_queue_err_skb
3606 * it is necessary to wrap the call with sock_hold/sock_put in order to
3607 * prevent the socket from being released prior to being enqueued on
3608 * the sk_error_queue.
3609 */
Alexander Duyck62bccb82014-09-04 13:31:35 -04003610struct sk_buff *skb_clone_sk(struct sk_buff *skb)
3611{
3612 struct sock *sk = skb->sk;
3613 struct sk_buff *clone;
3614
3615 if (!sk || !atomic_inc_not_zero(&sk->sk_refcnt))
3616 return NULL;
3617
3618 clone = skb_clone(skb, GFP_ATOMIC);
3619 if (!clone) {
3620 sock_put(sk);
3621 return NULL;
3622 }
3623
3624 clone->sk = sk;
3625 clone->destructor = sock_efree;
3626
3627 return clone;
3628}
3629EXPORT_SYMBOL(skb_clone_sk);
3630
Alexander Duyck37846ef2014-09-04 13:31:10 -04003631static void __skb_complete_tx_timestamp(struct sk_buff *skb,
3632 struct sock *sk,
3633 int tstype)
Patrick Ohlyac45f602009-02-12 05:03:37 +00003634{
Patrick Ohlyac45f602009-02-12 05:03:37 +00003635 struct sock_exterr_skb *serr;
Patrick Ohlyac45f602009-02-12 05:03:37 +00003636 int err;
3637
Patrick Ohlyac45f602009-02-12 05:03:37 +00003638 serr = SKB_EXT_ERR(skb);
3639 memset(serr, 0, sizeof(*serr));
3640 serr->ee.ee_errno = ENOMSG;
3641 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003642 serr->ee.ee_info = tstype;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003643 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
Willem de Bruijn09c2d252014-08-04 22:11:47 -04003644 serr->ee.ee_data = skb_shinfo(skb)->tskey;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003645 if (sk->sk_protocol == IPPROTO_TCP)
3646 serr->ee.ee_data -= sk->sk_tskey;
3647 }
Eric Dumazet29030372010-05-29 00:20:48 -07003648
Patrick Ohlyac45f602009-02-12 05:03:37 +00003649 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003650
Patrick Ohlyac45f602009-02-12 05:03:37 +00003651 if (err)
3652 kfree_skb(skb);
3653}
Alexander Duyck37846ef2014-09-04 13:31:10 -04003654
Willem de Bruijnb245be12015-01-30 13:29:32 -05003655static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
3656{
3657 bool ret;
3658
3659 if (likely(sysctl_tstamp_allow_data || tsonly))
3660 return true;
3661
3662 read_lock_bh(&sk->sk_callback_lock);
3663 ret = sk->sk_socket && sk->sk_socket->file &&
3664 file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
3665 read_unlock_bh(&sk->sk_callback_lock);
3666 return ret;
3667}
3668
Alexander Duyck37846ef2014-09-04 13:31:10 -04003669void skb_complete_tx_timestamp(struct sk_buff *skb,
3670 struct skb_shared_hwtstamps *hwtstamps)
3671{
3672 struct sock *sk = skb->sk;
3673
Willem de Bruijnb245be12015-01-30 13:29:32 -05003674 if (!skb_may_tx_timestamp(sk, false))
3675 return;
3676
Alexander Duyck62bccb82014-09-04 13:31:35 -04003677 /* take a reference to prevent skb_orphan() from freeing the socket */
3678 sock_hold(sk);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003679
Alexander Duyck62bccb82014-09-04 13:31:35 -04003680 *skb_hwtstamps(skb) = *hwtstamps;
3681 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003682
3683 sock_put(sk);
3684}
3685EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
3686
3687void __skb_tstamp_tx(struct sk_buff *orig_skb,
3688 struct skb_shared_hwtstamps *hwtstamps,
3689 struct sock *sk, int tstype)
3690{
3691 struct sk_buff *skb;
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003692 bool tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
Alexander Duyck37846ef2014-09-04 13:31:10 -04003693
Willem de Bruijnb245be12015-01-30 13:29:32 -05003694 if (!sk || !skb_may_tx_timestamp(sk, tsonly))
Alexander Duyck37846ef2014-09-04 13:31:10 -04003695 return;
3696
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003697 if (tsonly)
3698 skb = alloc_skb(0, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003699 else
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003700 skb = skb_clone(orig_skb, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003701 if (!skb)
3702 return;
3703
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003704 if (tsonly) {
3705 skb_shinfo(skb)->tx_flags = skb_shinfo(orig_skb)->tx_flags;
3706 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
3707 }
3708
3709 if (hwtstamps)
3710 *skb_hwtstamps(skb) = *hwtstamps;
3711 else
3712 skb->tstamp = ktime_get_real();
3713
Alexander Duyck37846ef2014-09-04 13:31:10 -04003714 __skb_complete_tx_timestamp(skb, sk, tstype);
3715}
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003716EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
3717
3718void skb_tstamp_tx(struct sk_buff *orig_skb,
3719 struct skb_shared_hwtstamps *hwtstamps)
3720{
3721 return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
3722 SCM_TSTAMP_SND);
3723}
Patrick Ohlyac45f602009-02-12 05:03:37 +00003724EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3725
Johannes Berg6e3e9392011-11-09 10:15:42 +01003726void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3727{
3728 struct sock *sk = skb->sk;
3729 struct sock_exterr_skb *serr;
3730 int err;
3731
3732 skb->wifi_acked_valid = 1;
3733 skb->wifi_acked = acked;
3734
3735 serr = SKB_EXT_ERR(skb);
3736 memset(serr, 0, sizeof(*serr));
3737 serr->ee.ee_errno = ENOMSG;
3738 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3739
Alexander Duyckbf7fa552014-09-10 18:05:42 -04003740 /* take a reference to prevent skb_orphan() from freeing the socket */
3741 sock_hold(sk);
3742
Johannes Berg6e3e9392011-11-09 10:15:42 +01003743 err = sock_queue_err_skb(sk, skb);
3744 if (err)
3745 kfree_skb(skb);
Alexander Duyckbf7fa552014-09-10 18:05:42 -04003746
3747 sock_put(sk);
Johannes Berg6e3e9392011-11-09 10:15:42 +01003748}
3749EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3750
Patrick Ohlyac45f602009-02-12 05:03:37 +00003751
Rusty Russellf35d9d82008-02-04 23:49:54 -05003752/**
3753 * skb_partial_csum_set - set up and verify partial csum values for packet
3754 * @skb: the skb to set
3755 * @start: the number of bytes after skb->data to start checksumming.
3756 * @off: the offset from start to place the checksum.
3757 *
3758 * For untrusted partially-checksummed packets, we need to make sure the values
3759 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3760 *
3761 * This function checks and sets those values and skb->ip_summed: if this
3762 * returns false you should drop the packet.
3763 */
3764bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3765{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003766 if (unlikely(start > skb_headlen(skb)) ||
3767 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003768 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3769 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003770 return false;
3771 }
3772 skb->ip_summed = CHECKSUM_PARTIAL;
3773 skb->csum_start = skb_headroom(skb) + start;
3774 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003775 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003776 return true;
3777}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003778EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003779
Paul Durranted1f50c2014-01-09 10:02:46 +00003780static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
3781 unsigned int max)
3782{
3783 if (skb_headlen(skb) >= len)
3784 return 0;
3785
3786 /* If we need to pullup then pullup to the max, so we
3787 * won't need to do it again.
3788 */
3789 if (max > skb->len)
3790 max = skb->len;
3791
3792 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
3793 return -ENOMEM;
3794
3795 if (skb_headlen(skb) < len)
3796 return -EPROTO;
3797
3798 return 0;
3799}
3800
Jan Beulichf9708b42014-03-11 13:56:05 +00003801#define MAX_TCP_HDR_LEN (15 * 4)
3802
3803static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
3804 typeof(IPPROTO_IP) proto,
3805 unsigned int off)
3806{
3807 switch (proto) {
3808 int err;
3809
3810 case IPPROTO_TCP:
3811 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
3812 off + MAX_TCP_HDR_LEN);
3813 if (!err && !skb_partial_csum_set(skb, off,
3814 offsetof(struct tcphdr,
3815 check)))
3816 err = -EPROTO;
3817 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
3818
3819 case IPPROTO_UDP:
3820 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
3821 off + sizeof(struct udphdr));
3822 if (!err && !skb_partial_csum_set(skb, off,
3823 offsetof(struct udphdr,
3824 check)))
3825 err = -EPROTO;
3826 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
3827 }
3828
3829 return ERR_PTR(-EPROTO);
3830}
3831
Paul Durranted1f50c2014-01-09 10:02:46 +00003832/* This value should be large enough to cover a tagged ethernet header plus
3833 * maximally sized IP and TCP or UDP headers.
3834 */
3835#define MAX_IP_HDR_LEN 128
3836
Jan Beulichf9708b42014-03-11 13:56:05 +00003837static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
Paul Durranted1f50c2014-01-09 10:02:46 +00003838{
3839 unsigned int off;
3840 bool fragment;
Jan Beulichf9708b42014-03-11 13:56:05 +00003841 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00003842 int err;
3843
3844 fragment = false;
3845
3846 err = skb_maybe_pull_tail(skb,
3847 sizeof(struct iphdr),
3848 MAX_IP_HDR_LEN);
3849 if (err < 0)
3850 goto out;
3851
3852 if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
3853 fragment = true;
3854
3855 off = ip_hdrlen(skb);
3856
3857 err = -EPROTO;
3858
3859 if (fragment)
3860 goto out;
3861
Jan Beulichf9708b42014-03-11 13:56:05 +00003862 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
3863 if (IS_ERR(csum))
3864 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00003865
Jan Beulichf9708b42014-03-11 13:56:05 +00003866 if (recalculate)
3867 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
3868 ip_hdr(skb)->daddr,
3869 skb->len - off,
3870 ip_hdr(skb)->protocol, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00003871 err = 0;
3872
3873out:
3874 return err;
3875}
3876
3877/* This value should be large enough to cover a tagged ethernet header plus
3878 * an IPv6 header, all options, and a maximal TCP or UDP header.
3879 */
3880#define MAX_IPV6_HDR_LEN 256
3881
3882#define OPT_HDR(type, skb, off) \
3883 (type *)(skb_network_header(skb) + (off))
3884
3885static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
3886{
3887 int err;
3888 u8 nexthdr;
3889 unsigned int off;
3890 unsigned int len;
3891 bool fragment;
3892 bool done;
Jan Beulichf9708b42014-03-11 13:56:05 +00003893 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00003894
3895 fragment = false;
3896 done = false;
3897
3898 off = sizeof(struct ipv6hdr);
3899
3900 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
3901 if (err < 0)
3902 goto out;
3903
3904 nexthdr = ipv6_hdr(skb)->nexthdr;
3905
3906 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
3907 while (off <= len && !done) {
3908 switch (nexthdr) {
3909 case IPPROTO_DSTOPTS:
3910 case IPPROTO_HOPOPTS:
3911 case IPPROTO_ROUTING: {
3912 struct ipv6_opt_hdr *hp;
3913
3914 err = skb_maybe_pull_tail(skb,
3915 off +
3916 sizeof(struct ipv6_opt_hdr),
3917 MAX_IPV6_HDR_LEN);
3918 if (err < 0)
3919 goto out;
3920
3921 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
3922 nexthdr = hp->nexthdr;
3923 off += ipv6_optlen(hp);
3924 break;
3925 }
3926 case IPPROTO_AH: {
3927 struct ip_auth_hdr *hp;
3928
3929 err = skb_maybe_pull_tail(skb,
3930 off +
3931 sizeof(struct ip_auth_hdr),
3932 MAX_IPV6_HDR_LEN);
3933 if (err < 0)
3934 goto out;
3935
3936 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
3937 nexthdr = hp->nexthdr;
3938 off += ipv6_authlen(hp);
3939 break;
3940 }
3941 case IPPROTO_FRAGMENT: {
3942 struct frag_hdr *hp;
3943
3944 err = skb_maybe_pull_tail(skb,
3945 off +
3946 sizeof(struct frag_hdr),
3947 MAX_IPV6_HDR_LEN);
3948 if (err < 0)
3949 goto out;
3950
3951 hp = OPT_HDR(struct frag_hdr, skb, off);
3952
3953 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
3954 fragment = true;
3955
3956 nexthdr = hp->nexthdr;
3957 off += sizeof(struct frag_hdr);
3958 break;
3959 }
3960 default:
3961 done = true;
3962 break;
3963 }
3964 }
3965
3966 err = -EPROTO;
3967
3968 if (!done || fragment)
3969 goto out;
3970
Jan Beulichf9708b42014-03-11 13:56:05 +00003971 csum = skb_checksum_setup_ip(skb, nexthdr, off);
3972 if (IS_ERR(csum))
3973 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00003974
Jan Beulichf9708b42014-03-11 13:56:05 +00003975 if (recalculate)
3976 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
3977 &ipv6_hdr(skb)->daddr,
3978 skb->len - off, nexthdr, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00003979 err = 0;
3980
3981out:
3982 return err;
3983}
3984
3985/**
3986 * skb_checksum_setup - set up partial checksum offset
3987 * @skb: the skb to set up
3988 * @recalculate: if true the pseudo-header checksum will be recalculated
3989 */
3990int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
3991{
3992 int err;
3993
3994 switch (skb->protocol) {
3995 case htons(ETH_P_IP):
Jan Beulichf9708b42014-03-11 13:56:05 +00003996 err = skb_checksum_setup_ipv4(skb, recalculate);
Paul Durranted1f50c2014-01-09 10:02:46 +00003997 break;
3998
3999 case htons(ETH_P_IPV6):
4000 err = skb_checksum_setup_ipv6(skb, recalculate);
4001 break;
4002
4003 default:
4004 err = -EPROTO;
4005 break;
4006 }
4007
4008 return err;
4009}
4010EXPORT_SYMBOL(skb_checksum_setup);
4011
Ben Hutchings4497b072008-06-19 16:22:28 -07004012void __skb_warn_lro_forwarding(const struct sk_buff *skb)
4013{
Joe Perchese87cc472012-05-13 21:56:26 +00004014 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4015 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07004016}
Ben Hutchings4497b072008-06-19 16:22:28 -07004017EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004018
4019void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4020{
Eric Dumazet3d861f62012-10-22 09:03:40 +00004021 if (head_stolen) {
4022 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004023 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004024 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004025 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004026 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004027}
4028EXPORT_SYMBOL(kfree_skb_partial);
4029
4030/**
4031 * skb_try_coalesce - try to merge skb to prior one
4032 * @to: prior buffer
4033 * @from: buffer to add
4034 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00004035 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004036 */
4037bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4038 bool *fragstolen, int *delta_truesize)
4039{
4040 int i, delta, len = from->len;
4041
4042 *fragstolen = false;
4043
4044 if (skb_cloned(to))
4045 return false;
4046
4047 if (len <= skb_tailroom(to)) {
Eric Dumazete93a0432014-09-15 04:19:52 -07004048 if (len)
4049 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004050 *delta_truesize = 0;
4051 return true;
4052 }
4053
4054 if (skb_has_frag_list(to) || skb_has_frag_list(from))
4055 return false;
4056
4057 if (skb_headlen(from) != 0) {
4058 struct page *page;
4059 unsigned int offset;
4060
4061 if (skb_shinfo(to)->nr_frags +
4062 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4063 return false;
4064
4065 if (skb_head_is_locked(from))
4066 return false;
4067
4068 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4069
4070 page = virt_to_head_page(from->head);
4071 offset = from->data - (unsigned char *)page_address(page);
4072
4073 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4074 page, offset, skb_headlen(from));
4075 *fragstolen = true;
4076 } else {
4077 if (skb_shinfo(to)->nr_frags +
4078 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4079 return false;
4080
Weiping Panf4b549a2012-09-28 20:15:30 +00004081 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004082 }
4083
4084 WARN_ON_ONCE(delta < len);
4085
4086 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4087 skb_shinfo(from)->frags,
4088 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4089 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4090
4091 if (!skb_cloned(from))
4092 skb_shinfo(from)->nr_frags = 0;
4093
Li RongQing8ea853f2012-09-18 16:53:21 +00004094 /* if the skb is not cloned this does nothing
4095 * since we set nr_frags to 0.
4096 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004097 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4098 skb_frag_ref(from, i);
4099
4100 to->truesize += delta;
4101 to->len += len;
4102 to->data_len += len;
4103
4104 *delta_truesize = delta;
4105 return true;
4106}
4107EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004108
4109/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004110 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004111 *
4112 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004113 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004114 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004115 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
4116 * into/from a tunnel. Some information have to be cleared during these
4117 * operations.
4118 * skb_scrub_packet can also be used to clean a skb before injecting it in
4119 * another namespace (@xnet == true). We have to clear all information in the
4120 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004121 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004122void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004123{
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004124 if (xnet)
4125 skb_orphan(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004126 skb->tstamp.tv64 = 0;
4127 skb->pkt_type = PACKET_HOST;
4128 skb->skb_iif = 0;
WANG Cong60ff7462014-05-04 16:39:18 -07004129 skb->ignore_df = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004130 skb_dst_drop(skb);
4131 skb->mark = 0;
Eric Dumazet2bd82482015-02-03 23:48:24 -08004132 skb->sender_cpu = 0;
Thomas Grafb8fb4e02014-12-23 01:13:18 +01004133 skb_init_secmark(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004134 secpath_reset(skb);
4135 nf_reset(skb);
4136 nf_reset_trace(skb);
4137}
4138EXPORT_SYMBOL_GPL(skb_scrub_packet);
Florian Westphalde960aa2014-01-26 10:58:16 +01004139
4140/**
4141 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4142 *
4143 * @skb: GSO skb
4144 *
4145 * skb_gso_transport_seglen is used to determine the real size of the
4146 * individual segments, including Layer4 headers (TCP/UDP).
4147 *
4148 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4149 */
4150unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4151{
4152 const struct skb_shared_info *shinfo = skb_shinfo(skb);
Florian Westphalf993bc22014-10-20 13:49:18 +02004153 unsigned int thlen = 0;
Florian Westphalde960aa2014-01-26 10:58:16 +01004154
Florian Westphalf993bc22014-10-20 13:49:18 +02004155 if (skb->encapsulation) {
4156 thlen = skb_inner_transport_header(skb) -
4157 skb_transport_header(skb);
Florian Westphal6d39d582014-04-09 10:28:50 +02004158
Florian Westphalf993bc22014-10-20 13:49:18 +02004159 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4160 thlen += inner_tcp_hdrlen(skb);
4161 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4162 thlen = tcp_hdrlen(skb);
4163 }
Florian Westphal6d39d582014-04-09 10:28:50 +02004164 /* UFO sets gso_size to the size of the fragmentation
4165 * payload, i.e. the size of the L4 (UDP) header is already
4166 * accounted for.
4167 */
Florian Westphalf993bc22014-10-20 13:49:18 +02004168 return thlen + shinfo->gso_size;
Florian Westphalde960aa2014-01-26 10:58:16 +01004169}
4170EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004171
4172static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
4173{
4174 if (skb_cow(skb, skb_headroom(skb)) < 0) {
4175 kfree_skb(skb);
4176 return NULL;
4177 }
4178
4179 memmove(skb->data - ETH_HLEN, skb->data - VLAN_ETH_HLEN, 2 * ETH_ALEN);
4180 skb->mac_header += VLAN_HLEN;
4181 return skb;
4182}
4183
4184struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
4185{
4186 struct vlan_hdr *vhdr;
4187 u16 vlan_tci;
4188
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004189 if (unlikely(skb_vlan_tag_present(skb))) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004190 /* vlan_tci is already set-up so leave this for another time */
4191 return skb;
4192 }
4193
4194 skb = skb_share_check(skb, GFP_ATOMIC);
4195 if (unlikely(!skb))
4196 goto err_free;
4197
4198 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
4199 goto err_free;
4200
4201 vhdr = (struct vlan_hdr *)skb->data;
4202 vlan_tci = ntohs(vhdr->h_vlan_TCI);
4203 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
4204
4205 skb_pull_rcsum(skb, VLAN_HLEN);
4206 vlan_set_encap_proto(skb, vhdr);
4207
4208 skb = skb_reorder_vlan_header(skb);
4209 if (unlikely(!skb))
4210 goto err_free;
4211
4212 skb_reset_network_header(skb);
4213 skb_reset_transport_header(skb);
4214 skb_reset_mac_len(skb);
4215
4216 return skb;
4217
4218err_free:
4219 kfree_skb(skb);
4220 return NULL;
4221}
4222EXPORT_SYMBOL(skb_vlan_untag);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004223
Jiri Pirkoe2195122014-11-19 14:05:01 +01004224int skb_ensure_writable(struct sk_buff *skb, int write_len)
4225{
4226 if (!pskb_may_pull(skb, write_len))
4227 return -ENOMEM;
4228
4229 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
4230 return 0;
4231
4232 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4233}
4234EXPORT_SYMBOL(skb_ensure_writable);
4235
Jiri Pirko93515d52014-11-19 14:05:02 +01004236/* remove VLAN header from packet and update csum accordingly. */
4237static int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
4238{
4239 struct vlan_hdr *vhdr;
4240 unsigned int offset = skb->data - skb_mac_header(skb);
4241 int err;
4242
4243 __skb_push(skb, offset);
4244 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
4245 if (unlikely(err))
4246 goto pull;
4247
4248 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
4249
4250 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
4251 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
4252
4253 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
4254 __skb_pull(skb, VLAN_HLEN);
4255
4256 vlan_set_encap_proto(skb, vhdr);
4257 skb->mac_header += VLAN_HLEN;
4258
4259 if (skb_network_offset(skb) < ETH_HLEN)
4260 skb_set_network_header(skb, ETH_HLEN);
4261
4262 skb_reset_mac_len(skb);
4263pull:
4264 __skb_pull(skb, offset);
4265
4266 return err;
4267}
4268
4269int skb_vlan_pop(struct sk_buff *skb)
4270{
4271 u16 vlan_tci;
4272 __be16 vlan_proto;
4273 int err;
4274
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004275 if (likely(skb_vlan_tag_present(skb))) {
Jiri Pirko93515d52014-11-19 14:05:02 +01004276 skb->vlan_tci = 0;
4277 } else {
4278 if (unlikely((skb->protocol != htons(ETH_P_8021Q) &&
4279 skb->protocol != htons(ETH_P_8021AD)) ||
4280 skb->len < VLAN_ETH_HLEN))
4281 return 0;
4282
4283 err = __skb_vlan_pop(skb, &vlan_tci);
4284 if (err)
4285 return err;
4286 }
4287 /* move next vlan tag to hw accel tag */
4288 if (likely((skb->protocol != htons(ETH_P_8021Q) &&
4289 skb->protocol != htons(ETH_P_8021AD)) ||
4290 skb->len < VLAN_ETH_HLEN))
4291 return 0;
4292
4293 vlan_proto = skb->protocol;
4294 err = __skb_vlan_pop(skb, &vlan_tci);
4295 if (unlikely(err))
4296 return err;
4297
4298 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4299 return 0;
4300}
4301EXPORT_SYMBOL(skb_vlan_pop);
4302
4303int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
4304{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004305 if (skb_vlan_tag_present(skb)) {
Jiri Pirko93515d52014-11-19 14:05:02 +01004306 unsigned int offset = skb->data - skb_mac_header(skb);
4307 int err;
4308
4309 /* __vlan_insert_tag expect skb->data pointing to mac header.
4310 * So change skb->data before calling it and change back to
4311 * original position later
4312 */
4313 __skb_push(skb, offset);
4314 err = __vlan_insert_tag(skb, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004315 skb_vlan_tag_get(skb));
Jiri Pirko93515d52014-11-19 14:05:02 +01004316 if (err)
4317 return err;
4318 skb->protocol = skb->vlan_proto;
4319 skb->mac_len += VLAN_HLEN;
4320 __skb_pull(skb, offset);
4321
4322 if (skb->ip_summed == CHECKSUM_COMPLETE)
4323 skb->csum = csum_add(skb->csum, csum_partial(skb->data
4324 + (2 * ETH_ALEN), VLAN_HLEN, 0));
4325 }
4326 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4327 return 0;
4328}
4329EXPORT_SYMBOL(skb_vlan_push);
4330
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004331/**
4332 * alloc_skb_with_frags - allocate skb with page frags
4333 *
Masanari Iidade3f0d02014-10-09 12:58:08 +09004334 * @header_len: size of linear part
4335 * @data_len: needed length in frags
4336 * @max_page_order: max page order desired.
4337 * @errcode: pointer to error code if any
4338 * @gfp_mask: allocation mask
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004339 *
4340 * This can be used to allocate a paged skb, given a maximal order for frags.
4341 */
4342struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
4343 unsigned long data_len,
4344 int max_page_order,
4345 int *errcode,
4346 gfp_t gfp_mask)
4347{
4348 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
4349 unsigned long chunk;
4350 struct sk_buff *skb;
4351 struct page *page;
4352 gfp_t gfp_head;
4353 int i;
4354
4355 *errcode = -EMSGSIZE;
4356 /* Note this test could be relaxed, if we succeed to allocate
4357 * high order pages...
4358 */
4359 if (npages > MAX_SKB_FRAGS)
4360 return NULL;
4361
4362 gfp_head = gfp_mask;
4363 if (gfp_head & __GFP_WAIT)
4364 gfp_head |= __GFP_REPEAT;
4365
4366 *errcode = -ENOBUFS;
4367 skb = alloc_skb(header_len, gfp_head);
4368 if (!skb)
4369 return NULL;
4370
4371 skb->truesize += npages << PAGE_SHIFT;
4372
4373 for (i = 0; npages > 0; i++) {
4374 int order = max_page_order;
4375
4376 while (order) {
4377 if (npages >= 1 << order) {
4378 page = alloc_pages(gfp_mask |
4379 __GFP_COMP |
4380 __GFP_NOWARN |
4381 __GFP_NORETRY,
4382 order);
4383 if (page)
4384 goto fill_page;
4385 /* Do not retry other high order allocations */
4386 order = 1;
4387 max_page_order = 0;
4388 }
4389 order--;
4390 }
4391 page = alloc_page(gfp_mask);
4392 if (!page)
4393 goto failure;
4394fill_page:
4395 chunk = min_t(unsigned long, data_len,
4396 PAGE_SIZE << order);
4397 skb_fill_page_desc(skb, i, page, 0, chunk);
4398 data_len -= chunk;
4399 npages -= 1 << order;
4400 }
4401 return skb;
4402
4403failure:
4404 kfree_skb(skb);
4405 return NULL;
4406}
4407EXPORT_SYMBOL(alloc_skb_with_frags);