blob: a5bd067ec1a3b85b59249129e8e4d9813e16ca7a [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 Dumazet2ea2f622015-04-24 16:05:01 -0700283 * __build_skb - build a network buffer
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000284 * @data: data buffer provided by caller
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700285 * @frag_size: size of data, 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
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700289 * @frag_size is 0, otherwise data should come from the page allocator
290 * or vmalloc()
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000291 * The return is the new skb buffer.
292 * On a failure the return is %NULL, and @data is not freed.
293 * Notes :
294 * Before IO, driver allocates only data buffer where NIC put incoming frame
295 * Driver should add room at head (NET_SKB_PAD) and
296 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
297 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
298 * before giving packet to stack.
299 * RX rings only contains data buffers, not full skbs.
300 */
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700301struct sk_buff *__build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000302{
303 struct skb_shared_info *shinfo;
304 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000305 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000306
307 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
308 if (!skb)
309 return NULL;
310
Eric Dumazetd3836f22012-04-27 00:33:38 +0000311 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000312
313 memset(skb, 0, offsetof(struct sk_buff, tail));
314 skb->truesize = SKB_TRUESIZE(size);
315 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}
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700331
332/* build_skb() is wrapper over __build_skb(), that specifically
333 * takes care of skb->head and skb->pfmemalloc
334 * This means that if @frag_size is not zero, then @data must be backed
335 * by a page fragment, not kmalloc() or vmalloc()
336 */
337struct sk_buff *build_skb(void *data, unsigned int frag_size)
338{
339 struct sk_buff *skb = __build_skb(data, frag_size);
340
341 if (skb && frag_size) {
342 skb->head_frag = 1;
Michal Hocko2f064f32015-08-21 14:11:51 -0700343 if (page_is_pfmemalloc(virt_to_head_page(data)))
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700344 skb->pfmemalloc = 1;
345 }
346 return skb;
347}
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000348EXPORT_SYMBOL(build_skb);
349
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100350#define NAPI_SKB_CACHE_SIZE 64
351
352struct napi_alloc_cache {
353 struct page_frag_cache page;
354 size_t skb_count;
355 void *skb_cache[NAPI_SKB_CACHE_SIZE];
356};
357
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700358static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100359static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
Alexander Duyckffde7322014-12-09 19:40:42 -0800360
361static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
362{
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700363 struct page_frag_cache *nc;
Alexander Duyckffde7322014-12-09 19:40:42 -0800364 unsigned long flags;
365 void *data;
366
367 local_irq_save(flags);
Alexander Duyck94519802015-05-06 21:11:40 -0700368 nc = this_cpu_ptr(&netdev_alloc_cache);
369 data = __alloc_page_frag(nc, fragsz, gfp_mask);
Eric Dumazet6f532612012-05-18 05:12:12 +0000370 local_irq_restore(flags);
371 return data;
372}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700373
374/**
375 * netdev_alloc_frag - allocate a page fragment
376 * @fragsz: fragment size
377 *
378 * Allocates a frag from a page for receive buffer.
379 * Uses GFP_ATOMIC allocations.
380 */
381void *netdev_alloc_frag(unsigned int fragsz)
382{
383 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
384}
Eric Dumazet6f532612012-05-18 05:12:12 +0000385EXPORT_SYMBOL(netdev_alloc_frag);
386
Alexander Duyckffde7322014-12-09 19:40:42 -0800387static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
388{
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100389 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
Alexander Duyck94519802015-05-06 21:11:40 -0700390
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100391 return __alloc_page_frag(&nc->page, fragsz, gfp_mask);
Alexander Duyckffde7322014-12-09 19:40:42 -0800392}
393
394void *napi_alloc_frag(unsigned int fragsz)
395{
396 return __napi_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
397}
398EXPORT_SYMBOL(napi_alloc_frag);
399
Eric Dumazet6f532612012-05-18 05:12:12 +0000400/**
Alexander Duyckfd11a832014-12-09 19:40:49 -0800401 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
402 * @dev: network device to receive on
Masanari Iidad7499162015-08-24 22:56:54 +0900403 * @len: length to allocate
Alexander Duyckfd11a832014-12-09 19:40:49 -0800404 * @gfp_mask: get_free_pages mask, passed to alloc_skb
405 *
406 * Allocate a new &sk_buff and assign it a usage count of one. The
407 * buffer has NET_SKB_PAD headroom built in. Users should allocate
408 * the headroom they think they need without accounting for the
409 * built in space. The built in space is used for optimisations.
410 *
411 * %NULL is returned if there is no free memory.
412 */
Alexander Duyck94519802015-05-06 21:11:40 -0700413struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
414 gfp_t gfp_mask)
Alexander Duyckfd11a832014-12-09 19:40:49 -0800415{
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700416 struct page_frag_cache *nc;
Alexander Duyck94519802015-05-06 21:11:40 -0700417 unsigned long flags;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800418 struct sk_buff *skb;
Alexander Duyck94519802015-05-06 21:11:40 -0700419 bool pfmemalloc;
420 void *data;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800421
Alexander Duyck94519802015-05-06 21:11:40 -0700422 len += NET_SKB_PAD;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800423
Alexander Duyck94519802015-05-06 21:11:40 -0700424 if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
Mel Gormand0164ad2015-11-06 16:28:21 -0800425 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
Alexander Duycka080e7b2015-05-13 13:34:13 -0700426 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
427 if (!skb)
428 goto skb_fail;
429 goto skb_success;
430 }
Alexander Duyck94519802015-05-06 21:11:40 -0700431
432 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
433 len = SKB_DATA_ALIGN(len);
434
435 if (sk_memalloc_socks())
436 gfp_mask |= __GFP_MEMALLOC;
437
438 local_irq_save(flags);
439
440 nc = this_cpu_ptr(&netdev_alloc_cache);
441 data = __alloc_page_frag(nc, len, gfp_mask);
442 pfmemalloc = nc->pfmemalloc;
443
444 local_irq_restore(flags);
445
446 if (unlikely(!data))
447 return NULL;
448
449 skb = __build_skb(data, len);
450 if (unlikely(!skb)) {
Alexander Duyck181edb22015-05-06 21:12:03 -0700451 skb_free_frag(data);
Alexander Duyck94519802015-05-06 21:11:40 -0700452 return NULL;
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700453 }
Alexander Duyckfd11a832014-12-09 19:40:49 -0800454
Alexander Duyck94519802015-05-06 21:11:40 -0700455 /* use OR instead of assignment to avoid clearing of bits in mask */
456 if (pfmemalloc)
457 skb->pfmemalloc = 1;
458 skb->head_frag = 1;
459
Alexander Duycka080e7b2015-05-13 13:34:13 -0700460skb_success:
Alexander Duyck94519802015-05-06 21:11:40 -0700461 skb_reserve(skb, NET_SKB_PAD);
462 skb->dev = dev;
463
Alexander Duycka080e7b2015-05-13 13:34:13 -0700464skb_fail:
Christoph Hellwig8af27452006-07-31 22:35:23 -0700465 return skb;
466}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800467EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alexander Duyckfd11a832014-12-09 19:40:49 -0800469/**
470 * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
471 * @napi: napi instance this buffer was allocated for
Masanari Iidad7499162015-08-24 22:56:54 +0900472 * @len: length to allocate
Alexander Duyckfd11a832014-12-09 19:40:49 -0800473 * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
474 *
475 * Allocate a new sk_buff for use in NAPI receive. This buffer will
476 * attempt to allocate the head from a special reserved region used
477 * only for NAPI Rx allocation. By doing this we can save several
478 * CPU cycles by avoiding having to disable and re-enable IRQs.
479 *
480 * %NULL is returned if there is no free memory.
481 */
Alexander Duyck94519802015-05-06 21:11:40 -0700482struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
483 gfp_t gfp_mask)
Alexander Duyckfd11a832014-12-09 19:40:49 -0800484{
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100485 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
Alexander Duyckfd11a832014-12-09 19:40:49 -0800486 struct sk_buff *skb;
Alexander Duyck94519802015-05-06 21:11:40 -0700487 void *data;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800488
Alexander Duyck94519802015-05-06 21:11:40 -0700489 len += NET_SKB_PAD + NET_IP_ALIGN;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800490
Alexander Duyck94519802015-05-06 21:11:40 -0700491 if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
Mel Gormand0164ad2015-11-06 16:28:21 -0800492 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
Alexander Duycka080e7b2015-05-13 13:34:13 -0700493 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
494 if (!skb)
495 goto skb_fail;
496 goto skb_success;
497 }
Alexander Duyck94519802015-05-06 21:11:40 -0700498
499 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
500 len = SKB_DATA_ALIGN(len);
501
502 if (sk_memalloc_socks())
503 gfp_mask |= __GFP_MEMALLOC;
504
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100505 data = __alloc_page_frag(&nc->page, len, gfp_mask);
Alexander Duyck94519802015-05-06 21:11:40 -0700506 if (unlikely(!data))
507 return NULL;
508
509 skb = __build_skb(data, len);
510 if (unlikely(!skb)) {
Alexander Duyck181edb22015-05-06 21:12:03 -0700511 skb_free_frag(data);
Alexander Duyck94519802015-05-06 21:11:40 -0700512 return NULL;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800513 }
514
Alexander Duyck94519802015-05-06 21:11:40 -0700515 /* use OR instead of assignment to avoid clearing of bits in mask */
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100516 if (nc->page.pfmemalloc)
Alexander Duyck94519802015-05-06 21:11:40 -0700517 skb->pfmemalloc = 1;
518 skb->head_frag = 1;
519
Alexander Duycka080e7b2015-05-13 13:34:13 -0700520skb_success:
Alexander Duyck94519802015-05-06 21:11:40 -0700521 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
522 skb->dev = napi->dev;
523
Alexander Duycka080e7b2015-05-13 13:34:13 -0700524skb_fail:
Alexander Duyckfd11a832014-12-09 19:40:49 -0800525 return skb;
526}
527EXPORT_SYMBOL(__napi_alloc_skb);
528
Peter Zijlstra654bed12008-10-07 14:22:33 -0700529void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000530 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700531{
532 skb_fill_page_desc(skb, i, page, off, size);
533 skb->len += size;
534 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000535 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700536}
537EXPORT_SYMBOL(skb_add_rx_frag);
538
Jason Wangf8e617e2013-11-01 14:07:47 +0800539void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
540 unsigned int truesize)
541{
542 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
543
544 skb_frag_size_add(frag, size);
545 skb->len += size;
546 skb->data_len += size;
547 skb->truesize += truesize;
548}
549EXPORT_SYMBOL(skb_coalesce_rx_frag);
550
Herbert Xu27b437c2006-07-13 19:26:39 -0700551static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700553 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700554 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Herbert Xu27b437c2006-07-13 19:26:39 -0700557static inline void skb_drop_fraglist(struct sk_buff *skb)
558{
559 skb_drop_list(&skb_shinfo(skb)->frag_list);
560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static void skb_clone_fraglist(struct sk_buff *skb)
563{
564 struct sk_buff *list;
565
David S. Millerfbb398a2009-06-09 00:18:59 -0700566 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 skb_get(list);
568}
569
Eric Dumazetd3836f22012-04-27 00:33:38 +0000570static void skb_free_head(struct sk_buff *skb)
571{
Alexander Duyck181edb22015-05-06 21:12:03 -0700572 unsigned char *head = skb->head;
573
Eric Dumazetd3836f22012-04-27 00:33:38 +0000574 if (skb->head_frag)
Alexander Duyck181edb22015-05-06 21:12:03 -0700575 skb_free_frag(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000576 else
Alexander Duyck181edb22015-05-06 21:12:03 -0700577 kfree(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000578}
579
Adrian Bunk5bba1712006-06-29 13:02:35 -0700580static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Eric Dumazetff04a772014-09-23 18:39:30 -0700582 struct skb_shared_info *shinfo = skb_shinfo(skb);
583 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric Dumazetff04a772014-09-23 18:39:30 -0700585 if (skb->cloned &&
586 atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
587 &shinfo->dataref))
588 return;
Shirley Maa6686f22011-07-06 12:22:12 +0000589
Eric Dumazetff04a772014-09-23 18:39:30 -0700590 for (i = 0; i < shinfo->nr_frags; i++)
591 __skb_frag_unref(&shinfo->frags[i]);
Shirley Maa6686f22011-07-06 12:22:12 +0000592
Eric Dumazetff04a772014-09-23 18:39:30 -0700593 /*
594 * If skb buf is from userspace, we need to notify the caller
595 * the lower device DMA has done;
596 */
597 if (shinfo->tx_flags & SKBTX_DEV_ZEROCOPY) {
598 struct ubuf_info *uarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Eric Dumazetff04a772014-09-23 18:39:30 -0700600 uarg = shinfo->destructor_arg;
601 if (uarg->callback)
602 uarg->callback(uarg, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Eric Dumazetff04a772014-09-23 18:39:30 -0700604
605 if (shinfo->frag_list)
606 kfree_skb_list(shinfo->frag_list);
607
608 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/*
612 * Free an skbuff by memory without cleaning the state.
613 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800614static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700616 struct sk_buff_fclones *fclones;
David S. Millerd179cd12005-08-17 14:57:30 -0700617
David S. Millerd179cd12005-08-17 14:57:30 -0700618 switch (skb->fclone) {
619 case SKB_FCLONE_UNAVAILABLE:
620 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800621 return;
David S. Millerd179cd12005-08-17 14:57:30 -0700622
623 case SKB_FCLONE_ORIG:
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700624 fclones = container_of(skb, struct sk_buff_fclones, skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800625
626 /* We usually free the clone (TX completion) before original skb
627 * This test would have no chance to be true for the clone,
628 * while here, branch prediction will be good.
629 */
630 if (atomic_read(&fclones->fclone_ref) == 1)
631 goto fastpath;
David S. Millerd179cd12005-08-17 14:57:30 -0700632 break;
633
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800634 default: /* SKB_FCLONE_CLONE */
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700635 fclones = container_of(skb, struct sk_buff_fclones, skb2);
David S. Millerd179cd12005-08-17 14:57:30 -0700636 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700637 }
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800638 if (!atomic_dec_and_test(&fclones->fclone_ref))
639 return;
640fastpath:
641 kmem_cache_free(skbuff_fclone_cache, fclones);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700644static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Eric Dumazetadf30902009-06-02 05:19:30 +0000646 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#ifdef CONFIG_XFRM
648 secpath_put(skb->sp);
649#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700650 if (skb->destructor) {
651 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 skb->destructor(skb);
653 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000654#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700655 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100656#endif
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200657#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 nf_bridge_put(skb->nf_bridge);
659#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700660}
661
662/* Free everything but the sk_buff shell. */
663static void skb_release_all(struct sk_buff *skb)
664{
665 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000666 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000667 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800668}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Herbert Xu2d4baff2007-11-26 23:11:19 +0800670/**
671 * __kfree_skb - private function
672 * @skb: buffer
673 *
674 * Free an sk_buff. Release anything attached to the buffer.
675 * Clean the state. This is an internal helper function. Users should
676 * always call kfree_skb
677 */
678
679void __kfree_skb(struct sk_buff *skb)
680{
681 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 kfree_skbmem(skb);
683}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800684EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800687 * kfree_skb - free an sk_buff
688 * @skb: buffer to free
689 *
690 * Drop a reference to the buffer and free it if the usage count has
691 * hit zero.
692 */
693void kfree_skb(struct sk_buff *skb)
694{
695 if (unlikely(!skb))
696 return;
697 if (likely(atomic_read(&skb->users) == 1))
698 smp_rmb();
699 else if (likely(!atomic_dec_and_test(&skb->users)))
700 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000701 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800702 __kfree_skb(skb);
703}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800704EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800705
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700706void kfree_skb_list(struct sk_buff *segs)
707{
708 while (segs) {
709 struct sk_buff *next = segs->next;
710
711 kfree_skb(segs);
712 segs = next;
713 }
714}
715EXPORT_SYMBOL(kfree_skb_list);
716
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700717/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000718 * skb_tx_error - report an sk_buff xmit error
719 * @skb: buffer that triggered an error
720 *
721 * Report xmit error if a device callback is tracking this skb.
722 * skb must be freed afterwards.
723 */
724void skb_tx_error(struct sk_buff *skb)
725{
726 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
727 struct ubuf_info *uarg;
728
729 uarg = skb_shinfo(skb)->destructor_arg;
730 if (uarg->callback)
731 uarg->callback(uarg, false);
732 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
733 }
734}
735EXPORT_SYMBOL(skb_tx_error);
736
737/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000738 * consume_skb - free an skbuff
739 * @skb: buffer to free
740 *
741 * Drop a ref to the buffer and free it if the usage count has hit zero
742 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
743 * is being dropped after a failure and notes that
744 */
745void consume_skb(struct sk_buff *skb)
746{
747 if (unlikely(!skb))
748 return;
749 if (likely(atomic_read(&skb->users) == 1))
750 smp_rmb();
751 else if (likely(!atomic_dec_and_test(&skb->users)))
752 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900753 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000754 __kfree_skb(skb);
755}
756EXPORT_SYMBOL(consume_skb);
757
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100758void __kfree_skb_flush(void)
759{
760 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
761
762 /* flush skb_cache if containing objects */
763 if (nc->skb_count) {
764 kmem_cache_free_bulk(skbuff_head_cache, nc->skb_count,
765 nc->skb_cache);
766 nc->skb_count = 0;
767 }
768}
769
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +0100770static inline void _kfree_skb_defer(struct sk_buff *skb)
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100771{
772 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
773
774 /* drop skb->head and call any destructors for packet */
775 skb_release_all(skb);
776
777 /* record skb to CPU local list */
778 nc->skb_cache[nc->skb_count++] = skb;
779
780#ifdef CONFIG_SLUB
781 /* SLUB writes into objects when freeing */
782 prefetchw(skb);
783#endif
784
785 /* flush skb_cache if it is filled */
786 if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
787 kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_SIZE,
788 nc->skb_cache);
789 nc->skb_count = 0;
790 }
791}
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +0100792void __kfree_skb_defer(struct sk_buff *skb)
793{
794 _kfree_skb_defer(skb);
795}
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100796
797void napi_consume_skb(struct sk_buff *skb, int budget)
798{
799 if (unlikely(!skb))
800 return;
801
802 /* if budget is 0 assume netpoll w/ IRQs disabled */
803 if (unlikely(!budget)) {
804 dev_consume_skb_irq(skb);
805 return;
806 }
807
808 if (likely(atomic_read(&skb->users) == 1))
809 smp_rmb();
810 else if (likely(!atomic_dec_and_test(&skb->users)))
811 return;
812 /* if reaching here SKB is ready to free */
813 trace_consume_skb(skb);
814
815 /* if SKB is a clone, don't handle this case */
816 if (unlikely(skb->fclone != SKB_FCLONE_UNAVAILABLE)) {
817 __kfree_skb(skb);
818 return;
819 }
820
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +0100821 _kfree_skb_defer(skb);
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100822}
823EXPORT_SYMBOL(napi_consume_skb);
824
Eric Dumazetb1937222014-09-28 22:18:47 -0700825/* Make sure a field is enclosed inside headers_start/headers_end section */
826#define CHECK_SKB_FIELD(field) \
827 BUILD_BUG_ON(offsetof(struct sk_buff, field) < \
828 offsetof(struct sk_buff, headers_start)); \
829 BUILD_BUG_ON(offsetof(struct sk_buff, field) > \
830 offsetof(struct sk_buff, headers_end)); \
831
Herbert Xudec18812007-10-14 00:37:30 -0700832static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
833{
834 new->tstamp = old->tstamp;
Eric Dumazetb1937222014-09-28 22:18:47 -0700835 /* We do not copy old->sk */
Herbert Xudec18812007-10-14 00:37:30 -0700836 new->dev = old->dev;
Eric Dumazetb1937222014-09-28 22:18:47 -0700837 memcpy(new->cb, old->cb, sizeof(old->cb));
Eric Dumazet7fee2262010-05-11 23:19:48 +0000838 skb_dst_copy(new, old);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700839#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700840 new->sp = secpath_get(old->sp);
841#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700842 __nf_copy(new, old, false);
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700843
Eric Dumazetb1937222014-09-28 22:18:47 -0700844 /* Note : this field could be in headers_start/headers_end section
845 * It is not yet because we do not want to have a 16 bit hole
846 */
847 new->queue_mapping = old->queue_mapping;
Eliezer Tamir06021292013-06-10 11:39:50 +0300848
Eric Dumazetb1937222014-09-28 22:18:47 -0700849 memcpy(&new->headers_start, &old->headers_start,
850 offsetof(struct sk_buff, headers_end) -
851 offsetof(struct sk_buff, headers_start));
852 CHECK_SKB_FIELD(protocol);
853 CHECK_SKB_FIELD(csum);
854 CHECK_SKB_FIELD(hash);
855 CHECK_SKB_FIELD(priority);
856 CHECK_SKB_FIELD(skb_iif);
857 CHECK_SKB_FIELD(vlan_proto);
858 CHECK_SKB_FIELD(vlan_tci);
859 CHECK_SKB_FIELD(transport_header);
860 CHECK_SKB_FIELD(network_header);
861 CHECK_SKB_FIELD(mac_header);
862 CHECK_SKB_FIELD(inner_protocol);
863 CHECK_SKB_FIELD(inner_transport_header);
864 CHECK_SKB_FIELD(inner_network_header);
865 CHECK_SKB_FIELD(inner_mac_header);
866 CHECK_SKB_FIELD(mark);
867#ifdef CONFIG_NETWORK_SECMARK
868 CHECK_SKB_FIELD(secmark);
869#endif
Cong Wange0d10952013-08-01 11:10:25 +0800870#ifdef CONFIG_NET_RX_BUSY_POLL
Eric Dumazetb1937222014-09-28 22:18:47 -0700871 CHECK_SKB_FIELD(napi_id);
Eliezer Tamir06021292013-06-10 11:39:50 +0300872#endif
Eric Dumazet2bd82482015-02-03 23:48:24 -0800873#ifdef CONFIG_XPS
874 CHECK_SKB_FIELD(sender_cpu);
875#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700876#ifdef CONFIG_NET_SCHED
877 CHECK_SKB_FIELD(tc_index);
878#ifdef CONFIG_NET_CLS_ACT
879 CHECK_SKB_FIELD(tc_verd);
880#endif
881#endif
882
Herbert Xudec18812007-10-14 00:37:30 -0700883}
884
Herbert Xu82c49a32009-05-22 22:11:37 +0000885/*
886 * You should not add any new code to this function. Add it to
887 * __copy_skb_header above instead.
888 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700889static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891#define C(x) n->x = skb->x
892
893 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700895 __copy_skb_header(n, skb);
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 C(len);
898 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700899 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700900 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800901 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 C(tail);
905 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800906 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000907 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800908 C(data);
909 C(truesize);
910 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 atomic_inc(&(skb_shinfo(skb)->dataref));
913 skb->cloned = 1;
914
915 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700916#undef C
917}
918
919/**
920 * skb_morph - morph one skb into another
921 * @dst: the skb to receive the contents
922 * @src: the skb to supply the contents
923 *
924 * This is identical to skb_clone except that the target skb is
925 * supplied by the user.
926 *
927 * The target skb is returned upon exit.
928 */
929struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
930{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800931 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700932 return __skb_clone(dst, src);
933}
934EXPORT_SYMBOL_GPL(skb_morph);
935
Ben Hutchings2c530402012-07-10 10:55:09 +0000936/**
937 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000938 * @skb: the skb to modify
939 * @gfp_mask: allocation priority
940 *
941 * This must be called on SKBTX_DEV_ZEROCOPY skb.
942 * It will copy all frags into kernel and drop the reference
943 * to userspace pages.
944 *
945 * If this function is called from an interrupt gfp_mask() must be
946 * %GFP_ATOMIC.
947 *
948 * Returns 0 on success or a negative error code on failure
949 * to allocate kernel memory to copy to.
950 */
951int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000952{
953 int i;
954 int num_frags = skb_shinfo(skb)->nr_frags;
955 struct page *page, *head = NULL;
956 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
957
958 for (i = 0; i < num_frags; i++) {
959 u8 *vaddr;
960 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
961
Krishna Kumar02756ed2012-07-17 02:05:29 +0000962 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000963 if (!page) {
964 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900965 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000966 put_page(head);
967 head = next;
968 }
969 return -ENOMEM;
970 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200971 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000972 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000973 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200974 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900975 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000976 head = page;
977 }
978
979 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000980 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000981 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000982
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000983 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000984
985 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000986 for (i = num_frags - 1; i >= 0; i--) {
987 __skb_fill_page_desc(skb, i, head, 0,
988 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900989 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000990 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000991
992 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000993 return 0;
994}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000995EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000996
Herbert Xue0053ec2007-10-14 00:37:52 -0700997/**
998 * skb_clone - duplicate an sk_buff
999 * @skb: buffer to clone
1000 * @gfp_mask: allocation priority
1001 *
1002 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
1003 * copies share the same packet data but not structure. The new
1004 * buffer has a reference count of 1. If the allocation fails the
1005 * function returns %NULL otherwise the new buffer is returned.
1006 *
1007 * If this function is called from an interrupt gfp_mask() must be
1008 * %GFP_ATOMIC.
1009 */
1010
1011struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1012{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07001013 struct sk_buff_fclones *fclones = container_of(skb,
1014 struct sk_buff_fclones,
1015 skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -08001016 struct sk_buff *n;
Herbert Xue0053ec2007-10-14 00:37:52 -07001017
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001018 if (skb_orphan_frags(skb, gfp_mask))
1019 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +00001020
Herbert Xue0053ec2007-10-14 00:37:52 -07001021 if (skb->fclone == SKB_FCLONE_ORIG &&
Eric Dumazet6ffe75e2014-12-03 17:04:39 -08001022 atomic_read(&fclones->fclone_ref) == 1) {
1023 n = &fclones->skb2;
1024 atomic_set(&fclones->fclone_ref, 2);
Herbert Xue0053ec2007-10-14 00:37:52 -07001025 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07001026 if (skb_pfmemalloc(skb))
1027 gfp_mask |= __GFP_MEMALLOC;
1028
Herbert Xue0053ec2007-10-14 00:37:52 -07001029 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1030 if (!n)
1031 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +02001032
1033 kmemcheck_annotate_bitfield(n, flags1);
Herbert Xue0053ec2007-10-14 00:37:52 -07001034 n->fclone = SKB_FCLONE_UNAVAILABLE;
1035 }
1036
1037 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001039EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001041static void skb_headers_offset_update(struct sk_buff *skb, int off)
1042{
Eric Dumazet030737b2013-10-19 11:42:54 -07001043 /* Only adjust this if it actually is csum_start rather than csum */
1044 if (skb->ip_summed == CHECKSUM_PARTIAL)
1045 skb->csum_start += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001046 /* {transport,network,mac}_header and tail are relative to skb->head */
1047 skb->transport_header += off;
1048 skb->network_header += off;
1049 if (skb_mac_header_was_set(skb))
1050 skb->mac_header += off;
1051 skb->inner_transport_header += off;
1052 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +00001053 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001054}
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1057{
Herbert Xudec18812007-10-14 00:37:30 -07001058 __copy_skb_header(new, old);
1059
Herbert Xu79671682006-06-22 02:40:14 -07001060 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1061 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1062 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
Mel Gormanc93bdd02012-07-31 16:44:19 -07001065static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1066{
1067 if (skb_pfmemalloc(skb))
1068 return SKB_ALLOC_RX;
1069 return 0;
1070}
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072/**
1073 * skb_copy - create private copy of an sk_buff
1074 * @skb: buffer to copy
1075 * @gfp_mask: allocation priority
1076 *
1077 * Make a copy of both an &sk_buff and its data. This is used when the
1078 * caller wishes to modify the data and needs a private copy of the
1079 * data to alter. Returns %NULL on failure or the pointer to the buffer
1080 * on success. The returned buffer has a reference count of 1.
1081 *
1082 * As by-product this function converts non-linear &sk_buff to linear
1083 * one, so that &sk_buff becomes completely private and caller is allowed
1084 * to modify all the data of returned buffer. This means that this
1085 * function is not recommended for use in circumstances when only
1086 * header is going to be modified. Use pskb_copy() instead.
1087 */
1088
Al Virodd0fc662005-10-07 07:46:04 +01001089struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001091 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +00001092 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -07001093 struct sk_buff *n = __alloc_skb(size, gfp_mask,
1094 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!n)
1097 return NULL;
1098
1099 /* Set the data pointer */
1100 skb_reserve(n, headerlen);
1101 /* Set the tail pointer and length */
1102 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
1105 BUG();
1106
1107 copy_skb_header(n, skb);
1108 return n;
1109}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001110EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112/**
Octavian Purdilabad93e92014-06-12 01:36:26 +03001113 * __pskb_copy_fclone - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +00001115 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 * @gfp_mask: allocation priority
Octavian Purdilabad93e92014-06-12 01:36:26 +03001117 * @fclone: if true allocate the copy of the skb from the fclone
1118 * cache instead of the head cache; it is recommended to set this
1119 * to true for the cases where the copy will likely be cloned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 *
1121 * Make a copy of both an &sk_buff and part of its data, located
1122 * in header. Fragmented data remain shared. This is used when
1123 * the caller wishes to modify only header of &sk_buff and needs
1124 * private copy of the header to alter. Returns %NULL on failure
1125 * or the pointer to the buffer on success.
1126 * The returned buffer has a reference count of 1.
1127 */
1128
Octavian Purdilabad93e92014-06-12 01:36:26 +03001129struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1130 gfp_t gfp_mask, bool fclone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Eric Dumazet117632e2011-12-03 21:39:53 +00001132 unsigned int size = skb_headlen(skb) + headroom;
Octavian Purdilabad93e92014-06-12 01:36:26 +03001133 int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1134 struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (!n)
1137 goto out;
1138
1139 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +00001140 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /* Set the tail pointer and length */
1142 skb_put(n, skb_headlen(skb));
1143 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001144 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Herbert Xu25f484a2006-11-07 14:57:15 -08001146 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 n->data_len = skb->data_len;
1148 n->len = skb->len;
1149
1150 if (skb_shinfo(skb)->nr_frags) {
1151 int i;
1152
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001153 if (skb_orphan_frags(skb, gfp_mask)) {
1154 kfree_skb(n);
1155 n = NULL;
1156 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1159 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001160 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 skb_shinfo(n)->nr_frags = i;
1163 }
1164
David S. Miller21dc3302010-08-23 00:13:46 -07001165 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1167 skb_clone_fraglist(n);
1168 }
1169
1170 copy_skb_header(n, skb);
1171out:
1172 return n;
1173}
Octavian Purdilabad93e92014-06-12 01:36:26 +03001174EXPORT_SYMBOL(__pskb_copy_fclone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176/**
1177 * pskb_expand_head - reallocate header of &sk_buff
1178 * @skb: buffer to reallocate
1179 * @nhead: room to add at head
1180 * @ntail: room to add at tail
1181 * @gfp_mask: allocation priority
1182 *
Mathias Krausebc323832013-11-07 14:18:26 +01001183 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1184 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * reference count of 1. Returns zero in the case of success or error,
1186 * if expansion failed. In the last case, &sk_buff is not changed.
1187 *
1188 * All the pointers pointing into skb header may change and must be
1189 * reloaded after call to this function.
1190 */
1191
Victor Fusco86a76ca2005-07-08 14:57:47 -07001192int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001193 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 int i;
1196 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001197 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 long off;
1199
Herbert Xu4edd87a2008-10-01 07:09:38 -07001200 BUG_ON(nhead < 0);
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (skb_shared(skb))
1203 BUG();
1204
1205 size = SKB_DATA_ALIGN(size);
1206
Mel Gormanc93bdd02012-07-31 16:44:19 -07001207 if (skb_pfmemalloc(skb))
1208 gfp_mask |= __GFP_MEMALLOC;
1209 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1210 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (!data)
1212 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001213 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001216 * optimized for the cases when header is void.
1217 */
1218 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1219
1220 memcpy((struct skb_shared_info *)(data + size),
1221 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001222 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Alexander Duyck3e245912012-05-04 14:26:51 +00001224 /*
1225 * if shinfo is shared we must drop the old head gracefully, but if it
1226 * is not we can just drop the old head and let the existing refcount
1227 * be since all we did is relocate the values
1228 */
1229 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001230 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001231 if (skb_orphan_frags(skb, gfp_mask))
1232 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001233 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001234 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Eric Dumazet1fd63042010-09-02 23:09:32 +00001236 if (skb_has_frag_list(skb))
1237 skb_clone_fraglist(skb);
1238
1239 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001240 } else {
1241 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 off = (data + nhead) - skb->head;
1244
1245 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001246 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001248#ifdef NET_SKBUFF_DATA_USES_OFFSET
1249 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001250 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001251#else
1252 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001253#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001254 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001255 skb_headers_offset_update(skb, nhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001257 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 skb->nohdr = 0;
1259 atomic_set(&skb_shinfo(skb)->dataref, 1);
1260 return 0;
1261
Shirley Maa6686f22011-07-06 12:22:12 +00001262nofrags:
1263 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264nodata:
1265 return -ENOMEM;
1266}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001267EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269/* Make private copy of skb with writable head and some headroom */
1270
1271struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1272{
1273 struct sk_buff *skb2;
1274 int delta = headroom - skb_headroom(skb);
1275
1276 if (delta <= 0)
1277 skb2 = pskb_copy(skb, GFP_ATOMIC);
1278 else {
1279 skb2 = skb_clone(skb, GFP_ATOMIC);
1280 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1281 GFP_ATOMIC)) {
1282 kfree_skb(skb2);
1283 skb2 = NULL;
1284 }
1285 }
1286 return skb2;
1287}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001288EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290/**
1291 * skb_copy_expand - copy and expand sk_buff
1292 * @skb: buffer to copy
1293 * @newheadroom: new free bytes at head
1294 * @newtailroom: new free bytes at tail
1295 * @gfp_mask: allocation priority
1296 *
1297 * Make a copy of both an &sk_buff and its data and while doing so
1298 * allocate additional space.
1299 *
1300 * This is used when the caller wishes to modify the data and needs a
1301 * private copy of the data to alter as well as more space for new fields.
1302 * Returns %NULL on failure or the pointer to the buffer
1303 * on success. The returned buffer has a reference count of 1.
1304 *
1305 * You must pass %GFP_ATOMIC as the allocation priority if this function
1306 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 */
1308struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001309 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001310 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 /*
1313 * Allocate the copy buffer
1314 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001315 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1316 gfp_mask, skb_alloc_rx_flag(skb),
1317 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001318 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 int head_copy_len, head_copy_off;
1320
1321 if (!n)
1322 return NULL;
1323
1324 skb_reserve(n, newheadroom);
1325
1326 /* Set the tail pointer and length */
1327 skb_put(n, skb->len);
1328
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001329 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 head_copy_off = 0;
1331 if (newheadroom <= head_copy_len)
1332 head_copy_len = newheadroom;
1333 else
1334 head_copy_off = newheadroom - head_copy_len;
1335
1336 /* Copy the linear header and data. */
1337 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1338 skb->len + head_copy_len))
1339 BUG();
1340
1341 copy_skb_header(n, skb);
1342
Eric Dumazet030737b2013-10-19 11:42:54 -07001343 skb_headers_offset_update(n, newheadroom - oldheadroom);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return n;
1346}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001347EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349/**
1350 * skb_pad - zero pad the tail of an skb
1351 * @skb: buffer to pad
1352 * @pad: space to pad
1353 *
1354 * Ensure that a buffer is followed by a padding area that is zero
1355 * filled. Used by network drivers which may DMA or transfer data
1356 * beyond the buffer end onto the wire.
1357 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001358 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001360
Herbert Xu5b057c62006-06-23 02:06:41 -07001361int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Herbert Xu5b057c62006-06-23 02:06:41 -07001363 int err;
1364 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001367 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001371
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001372 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001373 if (likely(skb_cloned(skb) || ntail > 0)) {
1374 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1375 if (unlikely(err))
1376 goto free_skb;
1377 }
1378
1379 /* FIXME: The use of this function with non-linear skb's really needs
1380 * to be audited.
1381 */
1382 err = skb_linearize(skb);
1383 if (unlikely(err))
1384 goto free_skb;
1385
1386 memset(skb->data + skb->len, 0, pad);
1387 return 0;
1388
1389free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001391 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001392}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001393EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001394
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001395/**
Mathias Krause0c7ddf32013-11-07 14:18:24 +01001396 * pskb_put - add data to the tail of a potentially fragmented buffer
1397 * @skb: start of the buffer to use
1398 * @tail: tail fragment of the buffer to use
1399 * @len: amount of data to add
1400 *
1401 * This function extends the used data area of the potentially
1402 * fragmented buffer. @tail must be the last fragment of @skb -- or
1403 * @skb itself. If this would exceed the total buffer size the kernel
1404 * will panic. A pointer to the first byte of the extra data is
1405 * returned.
1406 */
1407
1408unsigned char *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1409{
1410 if (tail != skb) {
1411 skb->data_len += len;
1412 skb->len += len;
1413 }
1414 return skb_put(tail, len);
1415}
1416EXPORT_SYMBOL_GPL(pskb_put);
1417
1418/**
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001419 * skb_put - add data to a buffer
1420 * @skb: buffer to use
1421 * @len: amount of data to add
1422 *
1423 * This function extends the used data area of the buffer. If this would
1424 * exceed the total buffer size the kernel will panic. A pointer to the
1425 * first byte of the extra data is returned.
1426 */
1427unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1428{
1429 unsigned char *tmp = skb_tail_pointer(skb);
1430 SKB_LINEAR_ASSERT(skb);
1431 skb->tail += len;
1432 skb->len += len;
1433 if (unlikely(skb->tail > skb->end))
1434 skb_over_panic(skb, len, __builtin_return_address(0));
1435 return tmp;
1436}
1437EXPORT_SYMBOL(skb_put);
1438
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001439/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001440 * skb_push - add data to the start of a buffer
1441 * @skb: buffer to use
1442 * @len: amount of data to add
1443 *
1444 * This function extends the used data area of the buffer at the buffer
1445 * start. If this would exceed the total buffer headroom the kernel will
1446 * panic. A pointer to the first byte of the extra data is returned.
1447 */
1448unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1449{
1450 skb->data -= len;
1451 skb->len += len;
1452 if (unlikely(skb->data<skb->head))
1453 skb_under_panic(skb, len, __builtin_return_address(0));
1454 return skb->data;
1455}
1456EXPORT_SYMBOL(skb_push);
1457
1458/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001459 * skb_pull - remove data from the start of a buffer
1460 * @skb: buffer to use
1461 * @len: amount of data to remove
1462 *
1463 * This function removes data from the start of a buffer, returning
1464 * the memory to the headroom. A pointer to the next data in the buffer
1465 * is returned. Once the data has been pulled future pushes will overwrite
1466 * the old data.
1467 */
1468unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1469{
David S. Miller47d29642010-05-02 02:21:44 -07001470 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001471}
1472EXPORT_SYMBOL(skb_pull);
1473
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001474/**
1475 * skb_trim - remove end from a buffer
1476 * @skb: buffer to alter
1477 * @len: new length
1478 *
1479 * Cut the length of a buffer down by removing data from the tail. If
1480 * the buffer is already under the length specified it is not modified.
1481 * The skb must be linear.
1482 */
1483void skb_trim(struct sk_buff *skb, unsigned int len)
1484{
1485 if (skb->len > len)
1486 __skb_trim(skb, len);
1487}
1488EXPORT_SYMBOL(skb_trim);
1489
Herbert Xu3cc0e872006-06-09 16:13:38 -07001490/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 */
1492
Herbert Xu3cc0e872006-06-09 16:13:38 -07001493int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Herbert Xu27b437c2006-07-13 19:26:39 -07001495 struct sk_buff **fragp;
1496 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 int offset = skb_headlen(skb);
1498 int nfrags = skb_shinfo(skb)->nr_frags;
1499 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001500 int err;
1501
1502 if (skb_cloned(skb) &&
1503 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1504 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001506 i = 0;
1507 if (offset >= len)
1508 goto drop_pages;
1509
1510 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001511 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001512
1513 if (end < len) {
1514 offset = end;
1515 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001517
Eric Dumazet9e903e02011-10-18 21:00:24 +00001518 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001519
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001520drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001521 skb_shinfo(skb)->nr_frags = i;
1522
1523 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001524 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001525
David S. Miller21dc3302010-08-23 00:13:46 -07001526 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001527 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001528 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530
Herbert Xu27b437c2006-07-13 19:26:39 -07001531 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1532 fragp = &frag->next) {
1533 int end = offset + frag->len;
1534
1535 if (skb_shared(frag)) {
1536 struct sk_buff *nfrag;
1537
1538 nfrag = skb_clone(frag, GFP_ATOMIC);
1539 if (unlikely(!nfrag))
1540 return -ENOMEM;
1541
1542 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001543 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001544 frag = nfrag;
1545 *fragp = frag;
1546 }
1547
1548 if (end < len) {
1549 offset = end;
1550 continue;
1551 }
1552
1553 if (end > len &&
1554 unlikely((err = pskb_trim(frag, len - offset))))
1555 return err;
1556
1557 if (frag->next)
1558 skb_drop_list(&frag->next);
1559 break;
1560 }
1561
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001562done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001563 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 skb->data_len -= skb->len - len;
1565 skb->len = len;
1566 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001567 skb->len = len;
1568 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001569 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
1572 return 0;
1573}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001574EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576/**
1577 * __pskb_pull_tail - advance tail of skb header
1578 * @skb: buffer to reallocate
1579 * @delta: number of bytes to advance tail
1580 *
1581 * The function makes a sense only on a fragmented &sk_buff,
1582 * it expands header moving its tail forward and copying necessary
1583 * data from fragmented part.
1584 *
1585 * &sk_buff MUST have reference count of 1.
1586 *
1587 * Returns %NULL (and &sk_buff does not change) if pull failed
1588 * or value of new tail of skb in the case of success.
1589 *
1590 * All the pointers pointing into skb header may change and must be
1591 * reloaded after call to this function.
1592 */
1593
1594/* Moves tail of skb head forward, copying data from fragmented part,
1595 * when it is necessary.
1596 * 1. It may fail due to malloc failure.
1597 * 2. It may change skb pointers.
1598 *
1599 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1600 */
1601unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1602{
1603 /* If skb has not enough free space at tail, get new one
1604 * plus 128 bytes for future expansions. If we have enough
1605 * room at tail, reallocate without expansion only if skb is cloned.
1606 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001607 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 if (eat > 0 || skb_cloned(skb)) {
1610 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1611 GFP_ATOMIC))
1612 return NULL;
1613 }
1614
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001615 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 BUG();
1617
1618 /* Optimization: no fragments, no reasons to preestimate
1619 * size of pulled pages. Superb.
1620 */
David S. Miller21dc3302010-08-23 00:13:46 -07001621 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 goto pull_pages;
1623
1624 /* Estimate size of pulled pages. */
1625 eat = delta;
1626 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001627 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1628
1629 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001631 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
1633
1634 /* If we need update frag list, we are in troubles.
1635 * Certainly, it possible to add an offset to skb data,
1636 * but taking into account that pulling is expected to
1637 * be very rare operation, it is worth to fight against
1638 * further bloating skb head and crucify ourselves here instead.
1639 * Pure masohism, indeed. 8)8)
1640 */
1641 if (eat) {
1642 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1643 struct sk_buff *clone = NULL;
1644 struct sk_buff *insp = NULL;
1645
1646 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001647 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 if (list->len <= eat) {
1650 /* Eaten as whole. */
1651 eat -= list->len;
1652 list = list->next;
1653 insp = list;
1654 } else {
1655 /* Eaten partially. */
1656
1657 if (skb_shared(list)) {
1658 /* Sucks! We need to fork list. :-( */
1659 clone = skb_clone(list, GFP_ATOMIC);
1660 if (!clone)
1661 return NULL;
1662 insp = list->next;
1663 list = clone;
1664 } else {
1665 /* This may be pulled without
1666 * problems. */
1667 insp = list;
1668 }
1669 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001670 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 return NULL;
1672 }
1673 break;
1674 }
1675 } while (eat);
1676
1677 /* Free pulled out fragments. */
1678 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1679 skb_shinfo(skb)->frag_list = list->next;
1680 kfree_skb(list);
1681 }
1682 /* And insert new clone at head. */
1683 if (clone) {
1684 clone->next = list;
1685 skb_shinfo(skb)->frag_list = clone;
1686 }
1687 }
1688 /* Success! Now we may commit changes to skb data. */
1689
1690pull_pages:
1691 eat = delta;
1692 k = 0;
1693 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001694 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1695
1696 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001697 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001698 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 } else {
1700 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1701 if (eat) {
1702 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001703 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 eat = 0;
1705 }
1706 k++;
1707 }
1708 }
1709 skb_shinfo(skb)->nr_frags = k;
1710
1711 skb->tail += delta;
1712 skb->data_len -= delta;
1713
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001714 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001716EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Eric Dumazet22019b12011-07-29 18:37:31 +00001718/**
1719 * skb_copy_bits - copy bits from skb to kernel buffer
1720 * @skb: source skb
1721 * @offset: offset in source
1722 * @to: destination buffer
1723 * @len: number of bytes to copy
1724 *
1725 * Copy the specified number of bytes from the source skb to the
1726 * destination buffer.
1727 *
1728 * CAUTION ! :
1729 * If its prototype is ever changed,
1730 * check arch/{*}/net/{*}.S files,
1731 * since it is called from BPF assembly code.
1732 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1734{
David S. Miller1a028e52007-04-27 15:21:23 -07001735 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001736 struct sk_buff *frag_iter;
1737 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 if (offset > (int)skb->len - len)
1740 goto fault;
1741
1742 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001743 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (copy > len)
1745 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001746 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if ((len -= copy) == 0)
1748 return 0;
1749 offset += copy;
1750 to += copy;
1751 }
1752
1753 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001754 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001755 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001757 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001758
Eric Dumazet51c56b02012-04-05 11:35:15 +02001759 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if ((copy = end - offset) > 0) {
1761 u8 *vaddr;
1762
1763 if (copy > len)
1764 copy = len;
1765
Eric Dumazet51c56b02012-04-05 11:35:15 +02001766 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001768 vaddr + f->page_offset + offset - start,
1769 copy);
1770 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 if ((len -= copy) == 0)
1773 return 0;
1774 offset += copy;
1775 to += copy;
1776 }
David S. Miller1a028e52007-04-27 15:21:23 -07001777 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
1779
David S. Millerfbb398a2009-06-09 00:18:59 -07001780 skb_walk_frags(skb, frag_iter) {
1781 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
David S. Millerfbb398a2009-06-09 00:18:59 -07001783 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
David S. Millerfbb398a2009-06-09 00:18:59 -07001785 end = start + frag_iter->len;
1786 if ((copy = end - offset) > 0) {
1787 if (copy > len)
1788 copy = len;
1789 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1790 goto fault;
1791 if ((len -= copy) == 0)
1792 return 0;
1793 offset += copy;
1794 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001796 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
Shirley Maa6686f22011-07-06 12:22:12 +00001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (!len)
1800 return 0;
1801
1802fault:
1803 return -EFAULT;
1804}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001805EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Jens Axboe9c55e012007-11-06 23:30:13 -08001807/*
1808 * Callback from splice_to_pipe(), if we need to release some pages
1809 * at the end of the spd in case we error'ed out in filling the pipe.
1810 */
1811static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1812{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001813 put_page(spd->pages[i]);
1814}
Jens Axboe9c55e012007-11-06 23:30:13 -08001815
David S. Millera108d5f2012-04-23 23:06:11 -04001816static struct page *linear_to_page(struct page *page, unsigned int *len,
1817 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001818 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001819{
Eric Dumazet5640f762012-09-23 23:04:42 +00001820 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001821
Eric Dumazet5640f762012-09-23 23:04:42 +00001822 if (!sk_page_frag_refill(sk, pfrag))
1823 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001824
Eric Dumazet5640f762012-09-23 23:04:42 +00001825 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001826
Eric Dumazet5640f762012-09-23 23:04:42 +00001827 memcpy(page_address(pfrag->page) + pfrag->offset,
1828 page_address(page) + *offset, *len);
1829 *offset = pfrag->offset;
1830 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001831
Eric Dumazet5640f762012-09-23 23:04:42 +00001832 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001833}
1834
Eric Dumazet41c73a02012-04-22 12:26:16 +00001835static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1836 struct page *page,
1837 unsigned int offset)
1838{
1839 return spd->nr_pages &&
1840 spd->pages[spd->nr_pages - 1] == page &&
1841 (spd->partial[spd->nr_pages - 1].offset +
1842 spd->partial[spd->nr_pages - 1].len == offset);
1843}
1844
Jens Axboe9c55e012007-11-06 23:30:13 -08001845/*
1846 * Fill page/offset/length into spd, if it can hold more pages.
1847 */
David S. Millera108d5f2012-04-23 23:06:11 -04001848static bool spd_fill_page(struct splice_pipe_desc *spd,
1849 struct pipe_inode_info *pipe, struct page *page,
1850 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001851 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001852 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001853{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001854 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001855 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001856
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001857 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001858 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001859 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001860 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001861 }
1862 if (spd_can_coalesce(spd, page, offset)) {
1863 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001864 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001865 }
1866 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001867 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001868 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001869 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001870 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001871
David S. Millera108d5f2012-04-23 23:06:11 -04001872 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001873}
1874
David S. Millera108d5f2012-04-23 23:06:11 -04001875static bool __splice_segment(struct page *page, unsigned int poff,
1876 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001877 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001878 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001879 struct sock *sk,
1880 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001881{
1882 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001883 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001884
1885 /* skip this segment if already processed */
1886 if (*off >= plen) {
1887 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001888 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001889 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001890
Octavian Purdila2870c432008-07-15 00:49:11 -07001891 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001892 poff += *off;
1893 plen -= *off;
1894 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001895
Eric Dumazet18aafc62013-01-11 14:46:37 +00001896 do {
1897 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001898
Eric Dumazet18aafc62013-01-11 14:46:37 +00001899 if (spd_fill_page(spd, pipe, page, &flen, poff,
1900 linear, sk))
1901 return true;
1902 poff += flen;
1903 plen -= flen;
1904 *len -= flen;
1905 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001906
David S. Millera108d5f2012-04-23 23:06:11 -04001907 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001908}
1909
1910/*
David S. Millera108d5f2012-04-23 23:06:11 -04001911 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001912 * pipe is full or if we already spliced the requested length.
1913 */
David S. Millera108d5f2012-04-23 23:06:11 -04001914static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1915 unsigned int *offset, unsigned int *len,
1916 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001917{
1918 int seg;
1919
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001920 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001921 * If skb->head_frag is set, this 'linear' part is backed by a
1922 * fragment, and if the head is not shared with any clones then
1923 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001924 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001925 if (__splice_segment(virt_to_page(skb->data),
1926 (unsigned long) skb->data & (PAGE_SIZE - 1),
1927 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001928 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001929 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001930 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001931 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001932
1933 /*
1934 * then map the fragments
1935 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001936 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1937 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1938
Ian Campbellea2ab692011-08-22 23:44:58 +00001939 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001940 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001941 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001942 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001943 }
1944
David S. Millera108d5f2012-04-23 23:06:11 -04001945 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001946}
1947
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02001948ssize_t skb_socket_splice(struct sock *sk,
1949 struct pipe_inode_info *pipe,
1950 struct splice_pipe_desc *spd)
1951{
1952 int ret;
1953
1954 /* Drop the socket lock, otherwise we have reverse
1955 * locking dependencies between sk_lock and i_mutex
1956 * here as compared to sendfile(). We enter here
1957 * with the socket lock held, and splice_to_pipe() will
1958 * grab the pipe inode lock. For sendfile() emulation,
1959 * we call into ->sendpage() with the i_mutex lock held
1960 * and networking will grab the socket lock.
1961 */
1962 release_sock(sk);
1963 ret = splice_to_pipe(pipe, spd);
1964 lock_sock(sk);
1965
1966 return ret;
1967}
1968
Jens Axboe9c55e012007-11-06 23:30:13 -08001969/*
1970 * Map data from the skb to a pipe. Should handle both the linear part,
1971 * the fragments, and the frag list. It does NOT handle frag lists within
1972 * the frag list, if such a thing exists. We'd probably need to recurse to
1973 * handle that cleanly.
1974 */
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02001975int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001976 struct pipe_inode_info *pipe, unsigned int tlen,
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02001977 unsigned int flags,
1978 ssize_t (*splice_cb)(struct sock *,
1979 struct pipe_inode_info *,
1980 struct splice_pipe_desc *))
Jens Axboe9c55e012007-11-06 23:30:13 -08001981{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001982 struct partial_page partial[MAX_SKB_FRAGS];
1983 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001984 struct splice_pipe_desc spd = {
1985 .pages = pages,
1986 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001987 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001988 .flags = flags,
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001989 .ops = &nosteal_pipe_buf_ops,
Jens Axboe9c55e012007-11-06 23:30:13 -08001990 .spd_release = sock_spd_release,
1991 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001992 struct sk_buff *frag_iter;
Jens Axboe35f3d142010-05-20 10:43:18 +02001993 int ret = 0;
1994
Jens Axboe9c55e012007-11-06 23:30:13 -08001995 /*
1996 * __skb_splice_bits() only fails if the output has no room left,
1997 * so no point in going over the frag_list for the error case.
1998 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001999 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08002000 goto done;
2001 else if (!tlen)
2002 goto done;
2003
2004 /*
2005 * now see if we have a frag_list to map
2006 */
David S. Millerfbb398a2009-06-09 00:18:59 -07002007 skb_walk_frags(skb, frag_iter) {
2008 if (!tlen)
2009 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02002010 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07002011 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08002012 }
2013
2014done:
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02002015 if (spd.nr_pages)
2016 ret = splice_cb(sk, pipe, &spd);
Jens Axboe9c55e012007-11-06 23:30:13 -08002017
Jens Axboe35f3d142010-05-20 10:43:18 +02002018 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08002019}
Hannes Frederic Sowa2b514572015-05-21 17:00:01 +02002020EXPORT_SYMBOL_GPL(skb_splice_bits);
Jens Axboe9c55e012007-11-06 23:30:13 -08002021
Herbert Xu357b40a2005-04-19 22:30:14 -07002022/**
2023 * skb_store_bits - store bits from kernel buffer to skb
2024 * @skb: destination buffer
2025 * @offset: offset in destination
2026 * @from: source buffer
2027 * @len: number of bytes to copy
2028 *
2029 * Copy the specified number of bytes from the source buffer to the
2030 * destination skb. This function handles all the messy bits of
2031 * traversing fragment lists and such.
2032 */
2033
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07002034int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07002035{
David S. Miller1a028e52007-04-27 15:21:23 -07002036 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07002037 struct sk_buff *frag_iter;
2038 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002039
2040 if (offset > (int)skb->len - len)
2041 goto fault;
2042
David S. Miller1a028e52007-04-27 15:21:23 -07002043 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07002044 if (copy > len)
2045 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002046 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07002047 if ((len -= copy) == 0)
2048 return 0;
2049 offset += copy;
2050 from += copy;
2051 }
2052
2053 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2054 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07002055 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002056
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002057 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002058
Eric Dumazet9e903e02011-10-18 21:00:24 +00002059 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07002060 if ((copy = end - offset) > 0) {
2061 u8 *vaddr;
2062
2063 if (copy > len)
2064 copy = len;
2065
Eric Dumazet51c56b02012-04-05 11:35:15 +02002066 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07002067 memcpy(vaddr + frag->page_offset + offset - start,
2068 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002069 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07002070
2071 if ((len -= copy) == 0)
2072 return 0;
2073 offset += copy;
2074 from += copy;
2075 }
David S. Miller1a028e52007-04-27 15:21:23 -07002076 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002077 }
2078
David S. Millerfbb398a2009-06-09 00:18:59 -07002079 skb_walk_frags(skb, frag_iter) {
2080 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002081
David S. Millerfbb398a2009-06-09 00:18:59 -07002082 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07002083
David S. Millerfbb398a2009-06-09 00:18:59 -07002084 end = start + frag_iter->len;
2085 if ((copy = end - offset) > 0) {
2086 if (copy > len)
2087 copy = len;
2088 if (skb_store_bits(frag_iter, offset - start,
2089 from, copy))
2090 goto fault;
2091 if ((len -= copy) == 0)
2092 return 0;
2093 offset += copy;
2094 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002095 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002096 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002097 }
2098 if (!len)
2099 return 0;
2100
2101fault:
2102 return -EFAULT;
2103}
Herbert Xu357b40a2005-04-19 22:30:14 -07002104EXPORT_SYMBOL(skb_store_bits);
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01002107__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2108 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
David S. Miller1a028e52007-04-27 15:21:23 -07002110 int start = skb_headlen(skb);
2111 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002112 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 int pos = 0;
2114
2115 /* Checksum header. */
2116 if (copy > 0) {
2117 if (copy > len)
2118 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002119 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if ((len -= copy) == 0)
2121 return csum;
2122 offset += copy;
2123 pos = copy;
2124 }
2125
2126 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002127 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002128 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002130 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002131
Eric Dumazet51c56b02012-04-05 11:35:15 +02002132 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08002134 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 if (copy > len)
2138 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002139 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01002140 csum2 = ops->update(vaddr + frag->page_offset +
2141 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002142 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01002143 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (!(len -= copy))
2145 return csum;
2146 offset += copy;
2147 pos += copy;
2148 }
David S. Miller1a028e52007-04-27 15:21:23 -07002149 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
2151
David S. Millerfbb398a2009-06-09 00:18:59 -07002152 skb_walk_frags(skb, frag_iter) {
2153 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
David S. Millerfbb398a2009-06-09 00:18:59 -07002155 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
David S. Millerfbb398a2009-06-09 00:18:59 -07002157 end = start + frag_iter->len;
2158 if ((copy = end - offset) > 0) {
2159 __wsum csum2;
2160 if (copy > len)
2161 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002162 csum2 = __skb_checksum(frag_iter, offset - start,
2163 copy, 0, ops);
2164 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07002165 if ((len -= copy) == 0)
2166 return csum;
2167 offset += copy;
2168 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002170 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002172 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174 return csum;
2175}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002176EXPORT_SYMBOL(__skb_checksum);
2177
2178__wsum skb_checksum(const struct sk_buff *skb, int offset,
2179 int len, __wsum csum)
2180{
2181 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002182 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002183 .combine = csum_block_add_ext,
2184 };
2185
2186 return __skb_checksum(skb, offset, len, csum, &ops);
2187}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002188EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190/* Both of above in one bottle. */
2191
Al Viro81d77662006-11-14 21:37:33 -08002192__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2193 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
David S. Miller1a028e52007-04-27 15:21:23 -07002195 int start = skb_headlen(skb);
2196 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002197 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 int pos = 0;
2199
2200 /* Copy header. */
2201 if (copy > 0) {
2202 if (copy > len)
2203 copy = len;
2204 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2205 copy, csum);
2206 if ((len -= copy) == 0)
2207 return csum;
2208 offset += copy;
2209 to += copy;
2210 pos = copy;
2211 }
2212
2213 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002214 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002216 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002217
Eric Dumazet9e903e02011-10-18 21:00:24 +00002218 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002220 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 u8 *vaddr;
2222 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2223
2224 if (copy > len)
2225 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002226 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002228 frag->page_offset +
2229 offset - start, to,
2230 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002231 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 csum = csum_block_add(csum, csum2, pos);
2233 if (!(len -= copy))
2234 return csum;
2235 offset += copy;
2236 to += copy;
2237 pos += copy;
2238 }
David S. Miller1a028e52007-04-27 15:21:23 -07002239 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241
David S. Millerfbb398a2009-06-09 00:18:59 -07002242 skb_walk_frags(skb, frag_iter) {
2243 __wsum csum2;
2244 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
David S. Millerfbb398a2009-06-09 00:18:59 -07002246 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
David S. Millerfbb398a2009-06-09 00:18:59 -07002248 end = start + frag_iter->len;
2249 if ((copy = end - offset) > 0) {
2250 if (copy > len)
2251 copy = len;
2252 csum2 = skb_copy_and_csum_bits(frag_iter,
2253 offset - start,
2254 to, copy, 0);
2255 csum = csum_block_add(csum, csum2, pos);
2256 if ((len -= copy) == 0)
2257 return csum;
2258 offset += copy;
2259 to += copy;
2260 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002262 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002264 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return csum;
2266}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002267EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Thomas Grafaf2806f2013-12-13 15:22:17 +01002269 /**
2270 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2271 * @from: source buffer
2272 *
2273 * Calculates the amount of linear headroom needed in the 'to' skb passed
2274 * into skb_zerocopy().
2275 */
2276unsigned int
2277skb_zerocopy_headlen(const struct sk_buff *from)
2278{
2279 unsigned int hlen = 0;
2280
2281 if (!from->head_frag ||
2282 skb_headlen(from) < L1_CACHE_BYTES ||
2283 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2284 hlen = skb_headlen(from);
2285
2286 if (skb_has_frag_list(from))
2287 hlen = from->len;
2288
2289 return hlen;
2290}
2291EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2292
2293/**
2294 * skb_zerocopy - Zero copy skb to skb
2295 * @to: destination buffer
Masanari Iida7fceb4d2014-01-29 01:05:28 +09002296 * @from: source buffer
Thomas Grafaf2806f2013-12-13 15:22:17 +01002297 * @len: number of bytes to copy from source buffer
2298 * @hlen: size of linear headroom in destination buffer
2299 *
2300 * Copies up to `len` bytes from `from` to `to` by creating references
2301 * to the frags in the source buffer.
2302 *
2303 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2304 * headroom in the `to` buffer.
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002305 *
2306 * Return value:
2307 * 0: everything is OK
2308 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
2309 * -EFAULT: skb_copy_bits() found some problem with skb geometry
Thomas Grafaf2806f2013-12-13 15:22:17 +01002310 */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002311int
2312skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
Thomas Grafaf2806f2013-12-13 15:22:17 +01002313{
2314 int i, j = 0;
2315 int plen = 0; /* length of skb->head fragment */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002316 int ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002317 struct page *page;
2318 unsigned int offset;
2319
2320 BUG_ON(!from->head_frag && !hlen);
2321
2322 /* dont bother with small payloads */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002323 if (len <= skb_tailroom(to))
2324 return skb_copy_bits(from, 0, skb_put(to, len), len);
Thomas Grafaf2806f2013-12-13 15:22:17 +01002325
2326 if (hlen) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002327 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2328 if (unlikely(ret))
2329 return ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002330 len -= hlen;
2331 } else {
2332 plen = min_t(int, skb_headlen(from), len);
2333 if (plen) {
2334 page = virt_to_head_page(from->head);
2335 offset = from->data - (unsigned char *)page_address(page);
2336 __skb_fill_page_desc(to, 0, page, offset, plen);
2337 get_page(page);
2338 j = 1;
2339 len -= plen;
2340 }
2341 }
2342
2343 to->truesize += len + plen;
2344 to->len += len + plen;
2345 to->data_len += len + plen;
2346
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002347 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2348 skb_tx_error(from);
2349 return -ENOMEM;
2350 }
2351
Thomas Grafaf2806f2013-12-13 15:22:17 +01002352 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2353 if (!len)
2354 break;
2355 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2356 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2357 len -= skb_shinfo(to)->frags[j].size;
2358 skb_frag_ref(to, j);
2359 j++;
2360 }
2361 skb_shinfo(to)->nr_frags = j;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002362
2363 return 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002364}
2365EXPORT_SYMBOL_GPL(skb_zerocopy);
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2368{
Al Virod3bc23e2006-11-14 21:24:49 -08002369 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 long csstart;
2371
Patrick McHardy84fa7932006-08-29 16:44:56 -07002372 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002373 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 else
2375 csstart = skb_headlen(skb);
2376
Kris Katterjohn09a62662006-01-08 22:24:28 -08002377 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002379 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
2381 csum = 0;
2382 if (csstart != skb->len)
2383 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2384 skb->len - csstart, 0);
2385
Patrick McHardy84fa7932006-08-29 16:44:56 -07002386 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002387 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Al Virod3bc23e2006-11-14 21:24:49 -08002389 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 }
2391}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002392EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394/**
2395 * skb_dequeue - remove from the head of the queue
2396 * @list: list to dequeue from
2397 *
2398 * Remove the head of the list. The list lock is taken so the function
2399 * may be used safely with other locking list functions. The head item is
2400 * returned or %NULL if the list is empty.
2401 */
2402
2403struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2404{
2405 unsigned long flags;
2406 struct sk_buff *result;
2407
2408 spin_lock_irqsave(&list->lock, flags);
2409 result = __skb_dequeue(list);
2410 spin_unlock_irqrestore(&list->lock, flags);
2411 return result;
2412}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002413EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415/**
2416 * skb_dequeue_tail - remove from the tail of the queue
2417 * @list: list to dequeue from
2418 *
2419 * Remove the tail of the list. The list lock is taken so the function
2420 * may be used safely with other locking list functions. The tail item is
2421 * returned or %NULL if the list is empty.
2422 */
2423struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2424{
2425 unsigned long flags;
2426 struct sk_buff *result;
2427
2428 spin_lock_irqsave(&list->lock, flags);
2429 result = __skb_dequeue_tail(list);
2430 spin_unlock_irqrestore(&list->lock, flags);
2431 return result;
2432}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002433EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435/**
2436 * skb_queue_purge - empty a list
2437 * @list: list to empty
2438 *
2439 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2440 * the list and one reference dropped. This function takes the list
2441 * lock and is atomic with respect to other list locking functions.
2442 */
2443void skb_queue_purge(struct sk_buff_head *list)
2444{
2445 struct sk_buff *skb;
2446 while ((skb = skb_dequeue(list)) != NULL)
2447 kfree_skb(skb);
2448}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002449EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451/**
2452 * skb_queue_head - queue a buffer at the list head
2453 * @list: list to use
2454 * @newsk: buffer to queue
2455 *
2456 * Queue a buffer at the start of the list. This function takes the
2457 * list lock and can be used safely with other locking &sk_buff functions
2458 * safely.
2459 *
2460 * A buffer cannot be placed on two lists at the same time.
2461 */
2462void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2463{
2464 unsigned long flags;
2465
2466 spin_lock_irqsave(&list->lock, flags);
2467 __skb_queue_head(list, newsk);
2468 spin_unlock_irqrestore(&list->lock, flags);
2469}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002470EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472/**
2473 * skb_queue_tail - queue a buffer at the list tail
2474 * @list: list to use
2475 * @newsk: buffer to queue
2476 *
2477 * Queue a buffer at the tail of the list. This function takes the
2478 * list lock and can be used safely with other locking &sk_buff functions
2479 * safely.
2480 *
2481 * A buffer cannot be placed on two lists at the same time.
2482 */
2483void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2484{
2485 unsigned long flags;
2486
2487 spin_lock_irqsave(&list->lock, flags);
2488 __skb_queue_tail(list, newsk);
2489 spin_unlock_irqrestore(&list->lock, flags);
2490}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002491EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493/**
2494 * skb_unlink - remove a buffer from a list
2495 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002496 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 *
David S. Miller8728b832005-08-09 19:25:21 -07002498 * Remove a packet from a list. The list locks are taken and this
2499 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 *
David S. Miller8728b832005-08-09 19:25:21 -07002501 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 */
David S. Miller8728b832005-08-09 19:25:21 -07002503void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
David S. Miller8728b832005-08-09 19:25:21 -07002505 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
David S. Miller8728b832005-08-09 19:25:21 -07002507 spin_lock_irqsave(&list->lock, flags);
2508 __skb_unlink(skb, list);
2509 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002511EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513/**
2514 * skb_append - append a buffer
2515 * @old: buffer to insert after
2516 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002517 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 *
2519 * Place a packet after a given packet in a list. The list locks are taken
2520 * and this function is atomic with respect to other list locked calls.
2521 * A buffer cannot be placed on two lists at the same time.
2522 */
David S. Miller8728b832005-08-09 19:25:21 -07002523void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
2525 unsigned long flags;
2526
David S. Miller8728b832005-08-09 19:25:21 -07002527 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002528 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002529 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002531EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533/**
2534 * skb_insert - insert a buffer
2535 * @old: buffer to insert before
2536 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002537 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 *
David S. Miller8728b832005-08-09 19:25:21 -07002539 * Place a packet before a given packet in a list. The list locks are
2540 * taken and this function is atomic with respect to other list locked
2541 * calls.
2542 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 * A buffer cannot be placed on two lists at the same time.
2544 */
David S. Miller8728b832005-08-09 19:25:21 -07002545void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
2547 unsigned long flags;
2548
David S. Miller8728b832005-08-09 19:25:21 -07002549 spin_lock_irqsave(&list->lock, flags);
2550 __skb_insert(newsk, old->prev, old, list);
2551 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002553EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555static inline void skb_split_inside_header(struct sk_buff *skb,
2556 struct sk_buff* skb1,
2557 const u32 len, const int pos)
2558{
2559 int i;
2560
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002561 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2562 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 /* And move data appendix as is. */
2564 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2565 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2566
2567 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2568 skb_shinfo(skb)->nr_frags = 0;
2569 skb1->data_len = skb->data_len;
2570 skb1->len += skb1->data_len;
2571 skb->data_len = 0;
2572 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002573 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
2576static inline void skb_split_no_header(struct sk_buff *skb,
2577 struct sk_buff* skb1,
2578 const u32 len, int pos)
2579{
2580 int i, k = 0;
2581 const int nfrags = skb_shinfo(skb)->nr_frags;
2582
2583 skb_shinfo(skb)->nr_frags = 0;
2584 skb1->len = skb1->data_len = skb->len - len;
2585 skb->len = len;
2586 skb->data_len = len - pos;
2587
2588 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002589 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
2591 if (pos + size > len) {
2592 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2593
2594 if (pos < len) {
2595 /* Split frag.
2596 * We have two variants in this case:
2597 * 1. Move all the frag to the second
2598 * part, if it is possible. F.e.
2599 * this approach is mandatory for TUX,
2600 * where splitting is expensive.
2601 * 2. Split is accurately. We make this.
2602 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002603 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002605 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2606 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 skb_shinfo(skb)->nr_frags++;
2608 }
2609 k++;
2610 } else
2611 skb_shinfo(skb)->nr_frags++;
2612 pos += size;
2613 }
2614 skb_shinfo(skb1)->nr_frags = k;
2615}
2616
2617/**
2618 * skb_split - Split fragmented skb to two parts at length len.
2619 * @skb: the buffer to split
2620 * @skb1: the buffer to receive the second part
2621 * @len: new length for skb
2622 */
2623void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2624{
2625 int pos = skb_headlen(skb);
2626
Amerigo Wang68534c62013-02-19 22:51:30 +00002627 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (len < pos) /* Split line is inside header. */
2629 skb_split_inside_header(skb, skb1, len, pos);
2630 else /* Second chunk has no header, nothing to copy. */
2631 skb_split_no_header(skb, skb1, len, pos);
2632}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002633EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002635/* Shifting from/to a cloned skb is a no-go.
2636 *
2637 * Caller cannot keep skb_shinfo related pointers past calling here!
2638 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002639static int skb_prepare_for_shift(struct sk_buff *skb)
2640{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002641 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002642}
2643
2644/**
2645 * skb_shift - Shifts paged data partially from skb to another
2646 * @tgt: buffer into which tail data gets added
2647 * @skb: buffer from which the paged data comes from
2648 * @shiftlen: shift up to this many bytes
2649 *
2650 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002651 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002652 * It's up to caller to free skb if everything was shifted.
2653 *
2654 * If @tgt runs out of frags, the whole operation is aborted.
2655 *
2656 * Skb cannot include anything else but paged data while tgt is allowed
2657 * to have non-paged data as well.
2658 *
2659 * TODO: full sized shift could be optimized but that would need
2660 * specialized skb free'er to handle frags without up-to-date nr_frags.
2661 */
2662int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2663{
2664 int from, to, merge, todo;
2665 struct skb_frag_struct *fragfrom, *fragto;
2666
2667 BUG_ON(shiftlen > skb->len);
2668 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2669
2670 todo = shiftlen;
2671 from = 0;
2672 to = skb_shinfo(tgt)->nr_frags;
2673 fragfrom = &skb_shinfo(skb)->frags[from];
2674
2675 /* Actual merge is delayed until the point when we know we can
2676 * commit all, so that we don't have to undo partial changes
2677 */
2678 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002679 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2680 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002681 merge = -1;
2682 } else {
2683 merge = to - 1;
2684
Eric Dumazet9e903e02011-10-18 21:00:24 +00002685 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002686 if (todo < 0) {
2687 if (skb_prepare_for_shift(skb) ||
2688 skb_prepare_for_shift(tgt))
2689 return 0;
2690
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002691 /* All previous frag pointers might be stale! */
2692 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002693 fragto = &skb_shinfo(tgt)->frags[merge];
2694
Eric Dumazet9e903e02011-10-18 21:00:24 +00002695 skb_frag_size_add(fragto, shiftlen);
2696 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002697 fragfrom->page_offset += shiftlen;
2698
2699 goto onlymerged;
2700 }
2701
2702 from++;
2703 }
2704
2705 /* Skip full, not-fitting skb to avoid expensive operations */
2706 if ((shiftlen == skb->len) &&
2707 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2708 return 0;
2709
2710 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2711 return 0;
2712
2713 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2714 if (to == MAX_SKB_FRAGS)
2715 return 0;
2716
2717 fragfrom = &skb_shinfo(skb)->frags[from];
2718 fragto = &skb_shinfo(tgt)->frags[to];
2719
Eric Dumazet9e903e02011-10-18 21:00:24 +00002720 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002721 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002722 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002723 from++;
2724 to++;
2725
2726 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002727 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002728 fragto->page = fragfrom->page;
2729 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002730 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002731
2732 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002733 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002734 todo = 0;
2735
2736 to++;
2737 break;
2738 }
2739 }
2740
2741 /* Ready to "commit" this state change to tgt */
2742 skb_shinfo(tgt)->nr_frags = to;
2743
2744 if (merge >= 0) {
2745 fragfrom = &skb_shinfo(skb)->frags[0];
2746 fragto = &skb_shinfo(tgt)->frags[merge];
2747
Eric Dumazet9e903e02011-10-18 21:00:24 +00002748 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002749 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002750 }
2751
2752 /* Reposition in the original skb */
2753 to = 0;
2754 while (from < skb_shinfo(skb)->nr_frags)
2755 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2756 skb_shinfo(skb)->nr_frags = to;
2757
2758 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2759
2760onlymerged:
2761 /* Most likely the tgt won't ever need its checksum anymore, skb on
2762 * the other hand might need it if it needs to be resent
2763 */
2764 tgt->ip_summed = CHECKSUM_PARTIAL;
2765 skb->ip_summed = CHECKSUM_PARTIAL;
2766
2767 /* Yak, is it really working this way? Some helper please? */
2768 skb->len -= shiftlen;
2769 skb->data_len -= shiftlen;
2770 skb->truesize -= shiftlen;
2771 tgt->len += shiftlen;
2772 tgt->data_len += shiftlen;
2773 tgt->truesize += shiftlen;
2774
2775 return shiftlen;
2776}
2777
Thomas Graf677e90e2005-06-23 20:59:51 -07002778/**
2779 * skb_prepare_seq_read - Prepare a sequential read of skb data
2780 * @skb: the buffer to read
2781 * @from: lower offset of data to be read
2782 * @to: upper offset of data to be read
2783 * @st: state variable
2784 *
2785 * Initializes the specified state variable. Must be called before
2786 * invoking skb_seq_read() for the first time.
2787 */
2788void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2789 unsigned int to, struct skb_seq_state *st)
2790{
2791 st->lower_offset = from;
2792 st->upper_offset = to;
2793 st->root_skb = st->cur_skb = skb;
2794 st->frag_idx = st->stepped_offset = 0;
2795 st->frag_data = NULL;
2796}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002797EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002798
2799/**
2800 * skb_seq_read - Sequentially read skb data
2801 * @consumed: number of bytes consumed by the caller so far
2802 * @data: destination pointer for data to be returned
2803 * @st: state variable
2804 *
Mathias Krausebc323832013-11-07 14:18:26 +01002805 * Reads a block of skb data at @consumed relative to the
Thomas Graf677e90e2005-06-23 20:59:51 -07002806 * lower offset specified to skb_prepare_seq_read(). Assigns
Mathias Krausebc323832013-11-07 14:18:26 +01002807 * the head of the data block to @data and returns the length
Thomas Graf677e90e2005-06-23 20:59:51 -07002808 * of the block or 0 if the end of the skb data or the upper
2809 * offset has been reached.
2810 *
2811 * The caller is not required to consume all of the data
Mathias Krausebc323832013-11-07 14:18:26 +01002812 * returned, i.e. @consumed is typically set to the number
Thomas Graf677e90e2005-06-23 20:59:51 -07002813 * of bytes already consumed and the next call to
2814 * skb_seq_read() will return the remaining part of the block.
2815 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002816 * Note 1: The size of each block of data returned can be arbitrary,
Masanari Iidae793c0f2014-09-04 23:44:36 +09002817 * this limitation is the cost for zerocopy sequential
Thomas Graf677e90e2005-06-23 20:59:51 -07002818 * reads of potentially non linear data.
2819 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002820 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002821 * at the moment, state->root_skb could be replaced with
2822 * a stack for this purpose.
2823 */
2824unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2825 struct skb_seq_state *st)
2826{
2827 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2828 skb_frag_t *frag;
2829
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002830 if (unlikely(abs_offset >= st->upper_offset)) {
2831 if (st->frag_data) {
2832 kunmap_atomic(st->frag_data);
2833 st->frag_data = NULL;
2834 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002835 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002836 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002837
2838next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002839 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002840
Thomas Chenault995b3372009-05-18 21:43:27 -07002841 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002842 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002843 return block_limit - abs_offset;
2844 }
2845
2846 if (st->frag_idx == 0 && !st->frag_data)
2847 st->stepped_offset += skb_headlen(st->cur_skb);
2848
2849 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2850 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002851 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002852
2853 if (abs_offset < block_limit) {
2854 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002855 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002856
2857 *data = (u8 *) st->frag_data + frag->page_offset +
2858 (abs_offset - st->stepped_offset);
2859
2860 return block_limit - abs_offset;
2861 }
2862
2863 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002864 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002865 st->frag_data = NULL;
2866 }
2867
2868 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002869 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002870 }
2871
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002872 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002873 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002874 st->frag_data = NULL;
2875 }
2876
David S. Miller21dc3302010-08-23 00:13:46 -07002877 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002878 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002879 st->frag_idx = 0;
2880 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002881 } else if (st->cur_skb->next) {
2882 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002883 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002884 goto next_skb;
2885 }
2886
2887 return 0;
2888}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002889EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002890
2891/**
2892 * skb_abort_seq_read - Abort a sequential read of skb data
2893 * @st: state variable
2894 *
2895 * Must be called if skb_seq_read() was not called until it
2896 * returned 0.
2897 */
2898void skb_abort_seq_read(struct skb_seq_state *st)
2899{
2900 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002901 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002902}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002903EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002904
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002905#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2906
2907static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2908 struct ts_config *conf,
2909 struct ts_state *state)
2910{
2911 return skb_seq_read(offset, text, TS_SKB_CB(state));
2912}
2913
2914static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2915{
2916 skb_abort_seq_read(TS_SKB_CB(state));
2917}
2918
2919/**
2920 * skb_find_text - Find a text pattern in skb data
2921 * @skb: the buffer to look in
2922 * @from: search offset
2923 * @to: search limit
2924 * @config: textsearch configuration
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002925 *
2926 * Finds a pattern in the skb data according to the specified
2927 * textsearch configuration. Use textsearch_next() to retrieve
2928 * subsequent occurrences of the pattern. Returns the offset
2929 * to the first occurrence or UINT_MAX if no match was found.
2930 */
2931unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
Bojan Prtvar059a2442015-02-22 11:46:35 +01002932 unsigned int to, struct ts_config *config)
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002933{
Bojan Prtvar059a2442015-02-22 11:46:35 +01002934 struct ts_state state;
Phil Oesterf72b9482006-06-26 00:00:57 -07002935 unsigned int ret;
2936
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002937 config->get_next_block = skb_ts_get_next_block;
2938 config->finish = skb_ts_finish;
2939
Bojan Prtvar059a2442015-02-22 11:46:35 +01002940 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002941
Bojan Prtvar059a2442015-02-22 11:46:35 +01002942 ret = textsearch_find(config, &state);
Phil Oesterf72b9482006-06-26 00:00:57 -07002943 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002944}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002945EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002946
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002947/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002948 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002949 * @sk: sock structure
Masanari Iidae793c0f2014-09-04 23:44:36 +09002950 * @skb: skb structure to be appended with user data.
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002951 * @getfrag: call back function to be used for getting the user data
2952 * @from: pointer to user message iov
2953 * @length: length of the iov message
2954 *
2955 * Description: This procedure append the user data in the fragment part
2956 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2957 */
2958int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002959 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002960 int len, int odd, struct sk_buff *skb),
2961 void *from, int length)
2962{
Eric Dumazetb2111722012-12-28 06:06:37 +00002963 int frg_cnt = skb_shinfo(skb)->nr_frags;
2964 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002965 int offset = 0;
2966 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002967 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002968
2969 do {
2970 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002971 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002972 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002973
Eric Dumazetb2111722012-12-28 06:06:37 +00002974 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002975 return -ENOMEM;
2976
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002977 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002978 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002979
Eric Dumazetb2111722012-12-28 06:06:37 +00002980 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2981 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002982 if (ret < 0)
2983 return -EFAULT;
2984
2985 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002986 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2987 copy);
2988 frg_cnt++;
2989 pfrag->offset += copy;
2990 get_page(pfrag->page);
2991
2992 skb->truesize += copy;
2993 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002994 skb->len += copy;
2995 skb->data_len += copy;
2996 offset += copy;
2997 length -= copy;
2998
2999 } while (length > 0);
3000
3001 return 0;
3002}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003003EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07003004
Hannes Frederic Sowabe12a1f2015-05-21 16:59:58 +02003005int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3006 int offset, size_t size)
3007{
3008 int i = skb_shinfo(skb)->nr_frags;
3009
3010 if (skb_can_coalesce(skb, i, page, offset)) {
3011 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3012 } else if (i < MAX_SKB_FRAGS) {
3013 get_page(page);
3014 skb_fill_page_desc(skb, i, page, offset, size);
3015 } else {
3016 return -EMSGSIZE;
3017 }
3018
3019 return 0;
3020}
3021EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3022
Herbert Xucbb042f2006-03-20 22:43:56 -08003023/**
3024 * skb_pull_rcsum - pull skb and update receive checksum
3025 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08003026 * @len: length of data pulled
3027 *
3028 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08003029 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07003030 * receive path processing instead of skb_pull unless you know
3031 * that the checksum difference is zero (e.g., a valid IP header)
3032 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08003033 */
3034unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3035{
Pravin B Shelar31b33df2015-09-28 17:24:25 -07003036 unsigned char *data = skb->data;
3037
Herbert Xucbb042f2006-03-20 22:43:56 -08003038 BUG_ON(len > skb->len);
Pravin B Shelar31b33df2015-09-28 17:24:25 -07003039 __skb_pull(skb, len);
3040 skb_postpull_rcsum(skb, data, len);
3041 return skb->data;
Herbert Xucbb042f2006-03-20 22:43:56 -08003042}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08003043EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3044
Herbert Xuf4c50d92006-06-22 03:02:40 -07003045/**
3046 * skb_segment - Perform protocol segmentation on skb.
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003047 * @head_skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003048 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07003049 *
3050 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07003051 * a pointer to the first in a list of new skbs for the segments.
3052 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07003053 */
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003054struct sk_buff *skb_segment(struct sk_buff *head_skb,
3055 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07003056{
3057 struct sk_buff *segs = NULL;
3058 struct sk_buff *tail = NULL;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003059 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003060 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3061 unsigned int mss = skb_shinfo(head_skb)->gso_size;
3062 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003063 struct sk_buff *frag_skb = head_skb;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003064 unsigned int offset = doffset;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003065 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003066 unsigned int headroom;
3067 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003068 __be16 proto;
3069 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08003070 int sg = !!(features & NETIF_F_SG);
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003071 int nfrags = skb_shinfo(head_skb)->nr_frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003072 int err = -ENOMEM;
3073 int i = 0;
3074 int pos;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003075 int dummy;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003076
Wei-Chun Chao5882a072014-06-08 23:48:54 -07003077 __skb_push(head_skb, doffset);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003078 proto = skb_network_protocol(head_skb, &dummy);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003079 if (unlikely(!proto))
3080 return ERR_PTR(-EINVAL);
3081
Alexander Duyckf245d072016-02-05 15:28:26 -08003082 csum = !!can_checksum_protocol(features, proto);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003083
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003084 headroom = skb_headroom(head_skb);
3085 pos = skb_headlen(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003086
3087 do {
3088 struct sk_buff *nskb;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003089 skb_frag_t *nskb_frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003090 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003091 int size;
3092
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003093 len = head_skb->len - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003094 if (len > mss)
3095 len = mss;
3096
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003097 hsize = skb_headlen(head_skb) - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003098 if (hsize < 0)
3099 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003100 if (hsize > len || !sg)
3101 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003102
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003103 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3104 (skb_headlen(list_skb) == len || sg)) {
3105 BUG_ON(skb_headlen(list_skb) > len);
Herbert Xu89319d382008-12-15 23:26:06 -08003106
Herbert Xu9d8506c2013-11-21 11:10:04 -08003107 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003108 nfrags = skb_shinfo(list_skb)->nr_frags;
3109 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003110 frag_skb = list_skb;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003111 pos += skb_headlen(list_skb);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003112
3113 while (pos < offset + len) {
3114 BUG_ON(i >= nfrags);
3115
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003116 size = skb_frag_size(frag);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003117 if (pos + size > offset + len)
3118 break;
3119
3120 i++;
3121 pos += size;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003122 frag++;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003123 }
3124
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003125 nskb = skb_clone(list_skb, GFP_ATOMIC);
3126 list_skb = list_skb->next;
Herbert Xu89319d382008-12-15 23:26:06 -08003127
3128 if (unlikely(!nskb))
3129 goto err;
3130
Herbert Xu9d8506c2013-11-21 11:10:04 -08003131 if (unlikely(pskb_trim(nskb, len))) {
3132 kfree_skb(nskb);
3133 goto err;
3134 }
3135
Alexander Duyckec47ea82012-05-04 14:26:56 +00003136 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08003137 if (skb_cow_head(nskb, doffset + headroom)) {
3138 kfree_skb(nskb);
3139 goto err;
3140 }
3141
Alexander Duyckec47ea82012-05-04 14:26:56 +00003142 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08003143 skb_release_head_state(nskb);
3144 __skb_push(nskb, doffset);
3145 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07003146 nskb = __alloc_skb(hsize + doffset + headroom,
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003147 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
Mel Gormanc93bdd02012-07-31 16:44:19 -07003148 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08003149
3150 if (unlikely(!nskb))
3151 goto err;
3152
3153 skb_reserve(nskb, headroom);
3154 __skb_put(nskb, doffset);
3155 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003156
3157 if (segs)
3158 tail->next = nskb;
3159 else
3160 segs = nskb;
3161 tail = nskb;
3162
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003163 __copy_skb_header(nskb, head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003164
Eric Dumazet030737b2013-10-19 11:42:54 -07003165 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Vlad Yasevichfcdfe3a2014-07-31 10:33:06 -04003166 skb_reset_mac_len(nskb);
Pravin B Shelar68c33162013-02-14 14:02:41 +00003167
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003168 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
Pravin B Shelar68c33162013-02-14 14:02:41 +00003169 nskb->data - tnl_hlen,
3170 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08003171
Herbert Xu9d8506c2013-11-21 11:10:04 -08003172 if (nskb->len == len + doffset)
Simon Horman1cdbcb72013-05-19 15:46:49 +00003173 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08003174
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003175 if (!sg) {
3176 if (!nskb->remcsum_offload)
3177 nskb->ip_summed = CHECKSUM_NONE;
Alexander Duyck76443452016-02-05 15:27:37 -08003178 SKB_GSO_CB(nskb)->csum =
3179 skb_copy_and_csum_bits(head_skb, offset,
3180 skb_put(nskb, len),
3181 len, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003182 SKB_GSO_CB(nskb)->csum_start =
Alexander Duyck76443452016-02-05 15:27:37 -08003183 skb_headroom(nskb) + doffset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003184 continue;
3185 }
3186
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003187 nskb_frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003188
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003189 skb_copy_from_linear_data_offset(head_skb, offset,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003190 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003191
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003192 skb_shinfo(nskb)->tx_flags = skb_shinfo(head_skb)->tx_flags &
3193 SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00003194
Herbert Xu9d8506c2013-11-21 11:10:04 -08003195 while (pos < offset + len) {
3196 if (i >= nfrags) {
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003197 BUG_ON(skb_headlen(list_skb));
Herbert Xu9d8506c2013-11-21 11:10:04 -08003198
3199 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003200 nfrags = skb_shinfo(list_skb)->nr_frags;
3201 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003202 frag_skb = list_skb;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003203
3204 BUG_ON(!nfrags);
3205
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003206 list_skb = list_skb->next;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003207 }
3208
3209 if (unlikely(skb_shinfo(nskb)->nr_frags >=
3210 MAX_SKB_FRAGS)) {
3211 net_warn_ratelimited(
3212 "skb_segment: too many frags: %u %u\n",
3213 pos, mss);
3214 goto err;
3215 }
3216
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003217 if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
3218 goto err;
3219
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003220 *nskb_frag = *frag;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003221 __skb_frag_ref(nskb_frag);
3222 size = skb_frag_size(nskb_frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003223
3224 if (pos < offset) {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003225 nskb_frag->page_offset += offset - pos;
3226 skb_frag_size_sub(nskb_frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003227 }
3228
Herbert Xu89319d382008-12-15 23:26:06 -08003229 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003230
3231 if (pos + size <= offset + len) {
3232 i++;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003233 frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003234 pos += size;
3235 } else {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003236 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08003237 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003238 }
3239
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003240 nskb_frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003241 }
3242
Herbert Xu89319d382008-12-15 23:26:06 -08003243skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07003244 nskb->data_len = len - hsize;
3245 nskb->len += nskb->data_len;
3246 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003247
Simon Horman1cdbcb72013-05-19 15:46:49 +00003248perform_csum_check:
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003249 if (!csum) {
Alexander Duyckddff00d2016-02-05 15:27:55 -08003250 if (skb_has_shared_frag(nskb)) {
3251 err = __skb_linearize(nskb);
3252 if (err)
3253 goto err;
3254 }
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003255 if (!nskb->remcsum_offload)
3256 nskb->ip_summed = CHECKSUM_NONE;
Alexander Duyck76443452016-02-05 15:27:37 -08003257 SKB_GSO_CB(nskb)->csum =
3258 skb_checksum(nskb, doffset,
3259 nskb->len - doffset, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003260 SKB_GSO_CB(nskb)->csum_start =
Alexander Duyck76443452016-02-05 15:27:37 -08003261 skb_headroom(nskb) + doffset;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003262 }
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003263 } while ((offset += len) < head_skb->len);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003264
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003265 /* Some callers want to get the end of the list.
3266 * Put it in segs->prev to avoid walking the list.
3267 * (see validate_xmit_skb_list() for example)
3268 */
3269 segs->prev = tail;
Toshiaki Makita432c8562014-10-27 10:30:51 -07003270
3271 /* Following permits correct backpressure, for protocols
3272 * using skb_set_owner_w().
3273 * Idea is to tranfert ownership from head_skb to last segment.
3274 */
3275 if (head_skb->destructor == sock_wfree) {
3276 swap(tail->truesize, head_skb->truesize);
3277 swap(tail->destructor, head_skb->destructor);
3278 swap(tail->sk, head_skb->sk);
3279 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003280 return segs;
3281
3282err:
Eric Dumazet289dccb2013-12-20 14:29:08 -08003283 kfree_skb_list(segs);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003284 return ERR_PTR(err);
3285}
Herbert Xuf4c50d92006-06-22 03:02:40 -07003286EXPORT_SYMBOL_GPL(skb_segment);
3287
Herbert Xu71d93b32008-12-15 23:42:33 -08003288int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
3289{
Eric Dumazet8a291112013-10-08 09:02:23 -07003290 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00003291 unsigned int offset = skb_gro_offset(skb);
3292 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003293 unsigned int len = skb_gro_len(skb);
Eric Dumazet58025e42015-03-05 13:47:48 -08003294 struct sk_buff *lp, *p = *head;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003295 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003296
Eric Dumazet8a291112013-10-08 09:02:23 -07003297 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08003298 return -E2BIG;
3299
Eric Dumazet29e98242014-05-16 11:34:37 -07003300 lp = NAPI_GRO_CB(p)->last;
Eric Dumazet8a291112013-10-08 09:02:23 -07003301 pinfo = skb_shinfo(lp);
3302
3303 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00003304 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003305 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003306 int i = skbinfo->nr_frags;
3307 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00003308
Herbert Xu66e92fc2009-05-26 18:50:32 +00003309 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003310 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00003311
Eric Dumazet8a291112013-10-08 09:02:23 -07003312 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003313 pinfo->nr_frags = nr_frags;
3314 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08003315
Herbert Xu9aaa1562009-05-26 18:50:33 +00003316 frag = pinfo->frags + nr_frags;
3317 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003318 do {
3319 *--frag = *--frag2;
3320 } while (--i);
3321
3322 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003323 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00003324
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003325 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00003326 delta_truesize = skb->truesize -
3327 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003328
Herbert Xuf5572062009-01-14 20:40:03 -08003329 skb->truesize -= skb->data_len;
3330 skb->len -= skb->data_len;
3331 skb->data_len = 0;
3332
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003333 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08003334 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003335 } else if (skb->head_frag) {
3336 int nr_frags = pinfo->nr_frags;
3337 skb_frag_t *frag = pinfo->frags + nr_frags;
3338 struct page *page = virt_to_head_page(skb->head);
3339 unsigned int first_size = headlen - offset;
3340 unsigned int first_offset;
3341
3342 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003343 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003344
3345 first_offset = skb->data -
3346 (unsigned char *)page_address(page) +
3347 offset;
3348
3349 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3350
3351 frag->page.p = page;
3352 frag->page_offset = first_offset;
3353 skb_frag_size_set(frag, first_size);
3354
3355 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3356 /* We dont need to clear skbinfo->nr_frags here */
3357
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003358 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003359 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3360 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003361 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003362
3363merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003364 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003365 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003366 unsigned int eat = offset - headlen;
3367
3368 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003369 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003370 skb->data_len -= eat;
3371 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003372 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003373 }
3374
Herbert Xu67147ba2009-05-26 18:50:22 +00003375 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003376
Eric Dumazet29e98242014-05-16 11:34:37 -07003377 if (NAPI_GRO_CB(p)->last == p)
Eric Dumazet8a291112013-10-08 09:02:23 -07003378 skb_shinfo(p)->frag_list = skb;
3379 else
3380 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003381 NAPI_GRO_CB(p)->last = skb;
Eric Dumazetf4a775d2014-09-22 16:29:32 -07003382 __skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003383 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003384
Herbert Xu5d38a072009-01-04 16:13:40 -08003385done:
3386 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003387 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003388 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003389 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003390 if (lp != p) {
3391 lp->data_len += len;
3392 lp->truesize += delta_truesize;
3393 lp->len += len;
3394 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003395 NAPI_GRO_CB(skb)->same_flow = 1;
3396 return 0;
3397}
Herbert Xu71d93b32008-12-15 23:42:33 -08003398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399void __init skb_init(void)
3400{
3401 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3402 sizeof(struct sk_buff),
3403 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003404 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003405 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003406 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07003407 sizeof(struct sk_buff_fclones),
David S. Millerd179cd12005-08-17 14:57:30 -07003408 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003409 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003410 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411}
3412
David Howells716ea3a2007-04-02 20:19:53 -07003413/**
3414 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3415 * @skb: Socket buffer containing the buffers to be mapped
3416 * @sg: The scatter-gather list to map into
3417 * @offset: The offset into the buffer's contents to start mapping
3418 * @len: Length of buffer space to be mapped
3419 *
3420 * Fill the specified scatter-gather list with mappings/pointers into a
3421 * region of the buffer space attached to a socket buffer.
3422 */
David S. Miller51c739d2007-10-30 21:29:29 -07003423static int
3424__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003425{
David S. Miller1a028e52007-04-27 15:21:23 -07003426 int start = skb_headlen(skb);
3427 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003428 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003429 int elt = 0;
3430
3431 if (copy > 0) {
3432 if (copy > len)
3433 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003434 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003435 elt++;
3436 if ((len -= copy) == 0)
3437 return elt;
3438 offset += copy;
3439 }
3440
3441 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003442 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003443
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003444 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003445
Eric Dumazet9e903e02011-10-18 21:00:24 +00003446 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003447 if ((copy = end - offset) > 0) {
3448 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3449
3450 if (copy > len)
3451 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003452 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003453 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003454 elt++;
3455 if (!(len -= copy))
3456 return elt;
3457 offset += copy;
3458 }
David S. Miller1a028e52007-04-27 15:21:23 -07003459 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003460 }
3461
David S. Millerfbb398a2009-06-09 00:18:59 -07003462 skb_walk_frags(skb, frag_iter) {
3463 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003464
David S. Millerfbb398a2009-06-09 00:18:59 -07003465 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003466
David S. Millerfbb398a2009-06-09 00:18:59 -07003467 end = start + frag_iter->len;
3468 if ((copy = end - offset) > 0) {
3469 if (copy > len)
3470 copy = len;
3471 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3472 copy);
3473 if ((len -= copy) == 0)
3474 return elt;
3475 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003476 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003477 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003478 }
3479 BUG_ON(len);
3480 return elt;
3481}
3482
Fan Du25a91d82014-01-18 09:54:23 +08003483/* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
3484 * sglist without mark the sg which contain last skb data as the end.
3485 * So the caller can mannipulate sg list as will when padding new data after
3486 * the first call without calling sg_unmark_end to expend sg list.
3487 *
3488 * Scenario to use skb_to_sgvec_nomark:
3489 * 1. sg_init_table
3490 * 2. skb_to_sgvec_nomark(payload1)
3491 * 3. skb_to_sgvec_nomark(payload2)
3492 *
3493 * This is equivalent to:
3494 * 1. sg_init_table
3495 * 2. skb_to_sgvec(payload1)
3496 * 3. sg_unmark_end
3497 * 4. skb_to_sgvec(payload2)
3498 *
3499 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
3500 * is more preferable.
3501 */
3502int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
3503 int offset, int len)
3504{
3505 return __skb_to_sgvec(skb, sg, offset, len);
3506}
3507EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
3508
David S. Miller51c739d2007-10-30 21:29:29 -07003509int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3510{
3511 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3512
Jens Axboec46f2332007-10-31 12:06:37 +01003513 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003514
3515 return nsg;
3516}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003517EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003518
David Howells716ea3a2007-04-02 20:19:53 -07003519/**
3520 * skb_cow_data - Check that a socket buffer's data buffers are writable
3521 * @skb: The socket buffer to check.
3522 * @tailbits: Amount of trailing space to be added
3523 * @trailer: Returned pointer to the skb where the @tailbits space begins
3524 *
3525 * Make sure that the data buffers attached to a socket buffer are
3526 * writable. If they are not, private copies are made of the data buffers
3527 * and the socket buffer is set to use these instead.
3528 *
3529 * If @tailbits is given, make sure that there is space to write @tailbits
3530 * bytes of data beyond current end of socket buffer. @trailer will be
3531 * set to point to the skb in which this space begins.
3532 *
3533 * The number of scatterlist elements required to completely map the
3534 * COW'd and extended socket buffer will be returned.
3535 */
3536int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3537{
3538 int copyflag;
3539 int elt;
3540 struct sk_buff *skb1, **skb_p;
3541
3542 /* If skb is cloned or its head is paged, reallocate
3543 * head pulling out all the pages (pages are considered not writable
3544 * at the moment even if they are anonymous).
3545 */
3546 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3547 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3548 return -ENOMEM;
3549
3550 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003551 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003552 /* A little of trouble, not enough of space for trailer.
3553 * This should not happen, when stack is tuned to generate
3554 * good frames. OK, on miss we reallocate and reserve even more
3555 * space, 128 bytes is fair. */
3556
3557 if (skb_tailroom(skb) < tailbits &&
3558 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3559 return -ENOMEM;
3560
3561 /* Voila! */
3562 *trailer = skb;
3563 return 1;
3564 }
3565
3566 /* Misery. We are in troubles, going to mincer fragments... */
3567
3568 elt = 1;
3569 skb_p = &skb_shinfo(skb)->frag_list;
3570 copyflag = 0;
3571
3572 while ((skb1 = *skb_p) != NULL) {
3573 int ntail = 0;
3574
3575 /* The fragment is partially pulled by someone,
3576 * this can happen on input. Copy it and everything
3577 * after it. */
3578
3579 if (skb_shared(skb1))
3580 copyflag = 1;
3581
3582 /* If the skb is the last, worry about trailer. */
3583
3584 if (skb1->next == NULL && tailbits) {
3585 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003586 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003587 skb_tailroom(skb1) < tailbits)
3588 ntail = tailbits + 128;
3589 }
3590
3591 if (copyflag ||
3592 skb_cloned(skb1) ||
3593 ntail ||
3594 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003595 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003596 struct sk_buff *skb2;
3597
3598 /* Fuck, we are miserable poor guys... */
3599 if (ntail == 0)
3600 skb2 = skb_copy(skb1, GFP_ATOMIC);
3601 else
3602 skb2 = skb_copy_expand(skb1,
3603 skb_headroom(skb1),
3604 ntail,
3605 GFP_ATOMIC);
3606 if (unlikely(skb2 == NULL))
3607 return -ENOMEM;
3608
3609 if (skb1->sk)
3610 skb_set_owner_w(skb2, skb1->sk);
3611
3612 /* Looking around. Are we still alive?
3613 * OK, link new skb, drop old one */
3614
3615 skb2->next = skb1->next;
3616 *skb_p = skb2;
3617 kfree_skb(skb1);
3618 skb1 = skb2;
3619 }
3620 elt++;
3621 *trailer = skb1;
3622 skb_p = &skb1->next;
3623 }
3624
3625 return elt;
3626}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003627EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003628
Eric Dumazetb1faf562010-05-31 23:44:05 -07003629static void sock_rmem_free(struct sk_buff *skb)
3630{
3631 struct sock *sk = skb->sk;
3632
3633 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3634}
3635
3636/*
3637 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3638 */
3639int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3640{
3641 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003642 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003643 return -ENOMEM;
3644
3645 skb_orphan(skb);
3646 skb->sk = sk;
3647 skb->destructor = sock_rmem_free;
3648 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3649
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003650 /* before exiting rcu section, make sure dst is refcounted */
3651 skb_dst_force(skb);
3652
Eric Dumazetb1faf562010-05-31 23:44:05 -07003653 skb_queue_tail(&sk->sk_error_queue, skb);
3654 if (!sock_flag(sk, SOCK_DEAD))
David S. Miller676d2362014-04-11 16:15:36 -04003655 sk->sk_data_ready(sk);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003656 return 0;
3657}
3658EXPORT_SYMBOL(sock_queue_err_skb);
3659
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003660struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
3661{
3662 struct sk_buff_head *q = &sk->sk_error_queue;
3663 struct sk_buff *skb, *skb_next;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003664 unsigned long flags;
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003665 int err = 0;
3666
Eric Dumazet997d5c32015-02-18 05:47:55 -08003667 spin_lock_irqsave(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003668 skb = __skb_dequeue(q);
3669 if (skb && (skb_next = skb_peek(q)))
3670 err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003671 spin_unlock_irqrestore(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003672
3673 sk->sk_err = err;
3674 if (err)
3675 sk->sk_error_report(sk);
3676
3677 return skb;
3678}
3679EXPORT_SYMBOL(sock_dequeue_err_skb);
3680
Alexander Duyckcab41c42014-09-10 18:05:26 -04003681/**
3682 * skb_clone_sk - create clone of skb, and take reference to socket
3683 * @skb: the skb to clone
3684 *
3685 * This function creates a clone of a buffer that holds a reference on
3686 * sk_refcnt. Buffers created via this function are meant to be
3687 * returned using sock_queue_err_skb, or free via kfree_skb.
3688 *
3689 * When passing buffers allocated with this function to sock_queue_err_skb
3690 * it is necessary to wrap the call with sock_hold/sock_put in order to
3691 * prevent the socket from being released prior to being enqueued on
3692 * the sk_error_queue.
3693 */
Alexander Duyck62bccb82014-09-04 13:31:35 -04003694struct sk_buff *skb_clone_sk(struct sk_buff *skb)
3695{
3696 struct sock *sk = skb->sk;
3697 struct sk_buff *clone;
3698
3699 if (!sk || !atomic_inc_not_zero(&sk->sk_refcnt))
3700 return NULL;
3701
3702 clone = skb_clone(skb, GFP_ATOMIC);
3703 if (!clone) {
3704 sock_put(sk);
3705 return NULL;
3706 }
3707
3708 clone->sk = sk;
3709 clone->destructor = sock_efree;
3710
3711 return clone;
3712}
3713EXPORT_SYMBOL(skb_clone_sk);
3714
Alexander Duyck37846ef2014-09-04 13:31:10 -04003715static void __skb_complete_tx_timestamp(struct sk_buff *skb,
3716 struct sock *sk,
3717 int tstype)
Patrick Ohlyac45f602009-02-12 05:03:37 +00003718{
Patrick Ohlyac45f602009-02-12 05:03:37 +00003719 struct sock_exterr_skb *serr;
Patrick Ohlyac45f602009-02-12 05:03:37 +00003720 int err;
3721
Patrick Ohlyac45f602009-02-12 05:03:37 +00003722 serr = SKB_EXT_ERR(skb);
3723 memset(serr, 0, sizeof(*serr));
3724 serr->ee.ee_errno = ENOMSG;
3725 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003726 serr->ee.ee_info = tstype;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003727 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
Willem de Bruijn09c2d252014-08-04 22:11:47 -04003728 serr->ee.ee_data = skb_shinfo(skb)->tskey;
WANG Congac5cc972015-12-16 23:39:04 -08003729 if (sk->sk_protocol == IPPROTO_TCP &&
3730 sk->sk_type == SOCK_STREAM)
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003731 serr->ee.ee_data -= sk->sk_tskey;
3732 }
Eric Dumazet29030372010-05-29 00:20:48 -07003733
Patrick Ohlyac45f602009-02-12 05:03:37 +00003734 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003735
Patrick Ohlyac45f602009-02-12 05:03:37 +00003736 if (err)
3737 kfree_skb(skb);
3738}
Alexander Duyck37846ef2014-09-04 13:31:10 -04003739
Willem de Bruijnb245be12015-01-30 13:29:32 -05003740static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
3741{
3742 bool ret;
3743
3744 if (likely(sysctl_tstamp_allow_data || tsonly))
3745 return true;
3746
3747 read_lock_bh(&sk->sk_callback_lock);
3748 ret = sk->sk_socket && sk->sk_socket->file &&
3749 file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
3750 read_unlock_bh(&sk->sk_callback_lock);
3751 return ret;
3752}
3753
Alexander Duyck37846ef2014-09-04 13:31:10 -04003754void skb_complete_tx_timestamp(struct sk_buff *skb,
3755 struct skb_shared_hwtstamps *hwtstamps)
3756{
3757 struct sock *sk = skb->sk;
3758
Willem de Bruijnb245be12015-01-30 13:29:32 -05003759 if (!skb_may_tx_timestamp(sk, false))
3760 return;
3761
Alexander Duyck62bccb82014-09-04 13:31:35 -04003762 /* take a reference to prevent skb_orphan() from freeing the socket */
3763 sock_hold(sk);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003764
Alexander Duyck62bccb82014-09-04 13:31:35 -04003765 *skb_hwtstamps(skb) = *hwtstamps;
3766 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003767
3768 sock_put(sk);
3769}
3770EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
3771
3772void __skb_tstamp_tx(struct sk_buff *orig_skb,
3773 struct skb_shared_hwtstamps *hwtstamps,
3774 struct sock *sk, int tstype)
3775{
3776 struct sk_buff *skb;
Willem de Bruijn3a8dd972015-03-11 15:43:55 -04003777 bool tsonly;
Alexander Duyck37846ef2014-09-04 13:31:10 -04003778
Willem de Bruijn3a8dd972015-03-11 15:43:55 -04003779 if (!sk)
3780 return;
3781
3782 tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
3783 if (!skb_may_tx_timestamp(sk, tsonly))
Alexander Duyck37846ef2014-09-04 13:31:10 -04003784 return;
3785
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003786 if (tsonly)
3787 skb = alloc_skb(0, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003788 else
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003789 skb = skb_clone(orig_skb, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003790 if (!skb)
3791 return;
3792
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003793 if (tsonly) {
3794 skb_shinfo(skb)->tx_flags = skb_shinfo(orig_skb)->tx_flags;
3795 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
3796 }
3797
3798 if (hwtstamps)
3799 *skb_hwtstamps(skb) = *hwtstamps;
3800 else
3801 skb->tstamp = ktime_get_real();
3802
Alexander Duyck37846ef2014-09-04 13:31:10 -04003803 __skb_complete_tx_timestamp(skb, sk, tstype);
3804}
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003805EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
3806
3807void skb_tstamp_tx(struct sk_buff *orig_skb,
3808 struct skb_shared_hwtstamps *hwtstamps)
3809{
3810 return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
3811 SCM_TSTAMP_SND);
3812}
Patrick Ohlyac45f602009-02-12 05:03:37 +00003813EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3814
Johannes Berg6e3e9392011-11-09 10:15:42 +01003815void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3816{
3817 struct sock *sk = skb->sk;
3818 struct sock_exterr_skb *serr;
3819 int err;
3820
3821 skb->wifi_acked_valid = 1;
3822 skb->wifi_acked = acked;
3823
3824 serr = SKB_EXT_ERR(skb);
3825 memset(serr, 0, sizeof(*serr));
3826 serr->ee.ee_errno = ENOMSG;
3827 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3828
Alexander Duyckbf7fa552014-09-10 18:05:42 -04003829 /* take a reference to prevent skb_orphan() from freeing the socket */
3830 sock_hold(sk);
3831
Johannes Berg6e3e9392011-11-09 10:15:42 +01003832 err = sock_queue_err_skb(sk, skb);
3833 if (err)
3834 kfree_skb(skb);
Alexander Duyckbf7fa552014-09-10 18:05:42 -04003835
3836 sock_put(sk);
Johannes Berg6e3e9392011-11-09 10:15:42 +01003837}
3838EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3839
Rusty Russellf35d9d82008-02-04 23:49:54 -05003840/**
3841 * skb_partial_csum_set - set up and verify partial csum values for packet
3842 * @skb: the skb to set
3843 * @start: the number of bytes after skb->data to start checksumming.
3844 * @off: the offset from start to place the checksum.
3845 *
3846 * For untrusted partially-checksummed packets, we need to make sure the values
3847 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3848 *
3849 * This function checks and sets those values and skb->ip_summed: if this
3850 * returns false you should drop the packet.
3851 */
3852bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3853{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003854 if (unlikely(start > skb_headlen(skb)) ||
3855 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003856 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3857 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003858 return false;
3859 }
3860 skb->ip_summed = CHECKSUM_PARTIAL;
3861 skb->csum_start = skb_headroom(skb) + start;
3862 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003863 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003864 return true;
3865}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003866EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003867
Paul Durranted1f50c2014-01-09 10:02:46 +00003868static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
3869 unsigned int max)
3870{
3871 if (skb_headlen(skb) >= len)
3872 return 0;
3873
3874 /* If we need to pullup then pullup to the max, so we
3875 * won't need to do it again.
3876 */
3877 if (max > skb->len)
3878 max = skb->len;
3879
3880 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
3881 return -ENOMEM;
3882
3883 if (skb_headlen(skb) < len)
3884 return -EPROTO;
3885
3886 return 0;
3887}
3888
Jan Beulichf9708b42014-03-11 13:56:05 +00003889#define MAX_TCP_HDR_LEN (15 * 4)
3890
3891static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
3892 typeof(IPPROTO_IP) proto,
3893 unsigned int off)
3894{
3895 switch (proto) {
3896 int err;
3897
3898 case IPPROTO_TCP:
3899 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
3900 off + MAX_TCP_HDR_LEN);
3901 if (!err && !skb_partial_csum_set(skb, off,
3902 offsetof(struct tcphdr,
3903 check)))
3904 err = -EPROTO;
3905 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
3906
3907 case IPPROTO_UDP:
3908 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
3909 off + sizeof(struct udphdr));
3910 if (!err && !skb_partial_csum_set(skb, off,
3911 offsetof(struct udphdr,
3912 check)))
3913 err = -EPROTO;
3914 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
3915 }
3916
3917 return ERR_PTR(-EPROTO);
3918}
3919
Paul Durranted1f50c2014-01-09 10:02:46 +00003920/* This value should be large enough to cover a tagged ethernet header plus
3921 * maximally sized IP and TCP or UDP headers.
3922 */
3923#define MAX_IP_HDR_LEN 128
3924
Jan Beulichf9708b42014-03-11 13:56:05 +00003925static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
Paul Durranted1f50c2014-01-09 10:02:46 +00003926{
3927 unsigned int off;
3928 bool fragment;
Jan Beulichf9708b42014-03-11 13:56:05 +00003929 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00003930 int err;
3931
3932 fragment = false;
3933
3934 err = skb_maybe_pull_tail(skb,
3935 sizeof(struct iphdr),
3936 MAX_IP_HDR_LEN);
3937 if (err < 0)
3938 goto out;
3939
3940 if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
3941 fragment = true;
3942
3943 off = ip_hdrlen(skb);
3944
3945 err = -EPROTO;
3946
3947 if (fragment)
3948 goto out;
3949
Jan Beulichf9708b42014-03-11 13:56:05 +00003950 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
3951 if (IS_ERR(csum))
3952 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00003953
Jan Beulichf9708b42014-03-11 13:56:05 +00003954 if (recalculate)
3955 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
3956 ip_hdr(skb)->daddr,
3957 skb->len - off,
3958 ip_hdr(skb)->protocol, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00003959 err = 0;
3960
3961out:
3962 return err;
3963}
3964
3965/* This value should be large enough to cover a tagged ethernet header plus
3966 * an IPv6 header, all options, and a maximal TCP or UDP header.
3967 */
3968#define MAX_IPV6_HDR_LEN 256
3969
3970#define OPT_HDR(type, skb, off) \
3971 (type *)(skb_network_header(skb) + (off))
3972
3973static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
3974{
3975 int err;
3976 u8 nexthdr;
3977 unsigned int off;
3978 unsigned int len;
3979 bool fragment;
3980 bool done;
Jan Beulichf9708b42014-03-11 13:56:05 +00003981 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00003982
3983 fragment = false;
3984 done = false;
3985
3986 off = sizeof(struct ipv6hdr);
3987
3988 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
3989 if (err < 0)
3990 goto out;
3991
3992 nexthdr = ipv6_hdr(skb)->nexthdr;
3993
3994 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
3995 while (off <= len && !done) {
3996 switch (nexthdr) {
3997 case IPPROTO_DSTOPTS:
3998 case IPPROTO_HOPOPTS:
3999 case IPPROTO_ROUTING: {
4000 struct ipv6_opt_hdr *hp;
4001
4002 err = skb_maybe_pull_tail(skb,
4003 off +
4004 sizeof(struct ipv6_opt_hdr),
4005 MAX_IPV6_HDR_LEN);
4006 if (err < 0)
4007 goto out;
4008
4009 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4010 nexthdr = hp->nexthdr;
4011 off += ipv6_optlen(hp);
4012 break;
4013 }
4014 case IPPROTO_AH: {
4015 struct ip_auth_hdr *hp;
4016
4017 err = skb_maybe_pull_tail(skb,
4018 off +
4019 sizeof(struct ip_auth_hdr),
4020 MAX_IPV6_HDR_LEN);
4021 if (err < 0)
4022 goto out;
4023
4024 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4025 nexthdr = hp->nexthdr;
4026 off += ipv6_authlen(hp);
4027 break;
4028 }
4029 case IPPROTO_FRAGMENT: {
4030 struct frag_hdr *hp;
4031
4032 err = skb_maybe_pull_tail(skb,
4033 off +
4034 sizeof(struct frag_hdr),
4035 MAX_IPV6_HDR_LEN);
4036 if (err < 0)
4037 goto out;
4038
4039 hp = OPT_HDR(struct frag_hdr, skb, off);
4040
4041 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
4042 fragment = true;
4043
4044 nexthdr = hp->nexthdr;
4045 off += sizeof(struct frag_hdr);
4046 break;
4047 }
4048 default:
4049 done = true;
4050 break;
4051 }
4052 }
4053
4054 err = -EPROTO;
4055
4056 if (!done || fragment)
4057 goto out;
4058
Jan Beulichf9708b42014-03-11 13:56:05 +00004059 csum = skb_checksum_setup_ip(skb, nexthdr, off);
4060 if (IS_ERR(csum))
4061 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00004062
Jan Beulichf9708b42014-03-11 13:56:05 +00004063 if (recalculate)
4064 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4065 &ipv6_hdr(skb)->daddr,
4066 skb->len - off, nexthdr, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00004067 err = 0;
4068
4069out:
4070 return err;
4071}
4072
4073/**
4074 * skb_checksum_setup - set up partial checksum offset
4075 * @skb: the skb to set up
4076 * @recalculate: if true the pseudo-header checksum will be recalculated
4077 */
4078int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4079{
4080 int err;
4081
4082 switch (skb->protocol) {
4083 case htons(ETH_P_IP):
Jan Beulichf9708b42014-03-11 13:56:05 +00004084 err = skb_checksum_setup_ipv4(skb, recalculate);
Paul Durranted1f50c2014-01-09 10:02:46 +00004085 break;
4086
4087 case htons(ETH_P_IPV6):
4088 err = skb_checksum_setup_ipv6(skb, recalculate);
4089 break;
4090
4091 default:
4092 err = -EPROTO;
4093 break;
4094 }
4095
4096 return err;
4097}
4098EXPORT_SYMBOL(skb_checksum_setup);
4099
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004100/**
4101 * skb_checksum_maybe_trim - maybe trims the given skb
4102 * @skb: the skb to check
4103 * @transport_len: the data length beyond the network header
4104 *
4105 * Checks whether the given skb has data beyond the given transport length.
4106 * If so, returns a cloned skb trimmed to this transport length.
4107 * Otherwise returns the provided skb. Returns NULL in error cases
4108 * (e.g. transport_len exceeds skb length or out-of-memory).
4109 *
Linus Lüssinga5169932015-08-13 05:54:07 +02004110 * Caller needs to set the skb transport header and free any returned skb if it
4111 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004112 */
4113static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
4114 unsigned int transport_len)
4115{
4116 struct sk_buff *skb_chk;
4117 unsigned int len = skb_transport_offset(skb) + transport_len;
4118 int ret;
4119
Linus Lüssinga5169932015-08-13 05:54:07 +02004120 if (skb->len < len)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004121 return NULL;
Linus Lüssinga5169932015-08-13 05:54:07 +02004122 else if (skb->len == len)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004123 return skb;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004124
4125 skb_chk = skb_clone(skb, GFP_ATOMIC);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004126 if (!skb_chk)
4127 return NULL;
4128
4129 ret = pskb_trim_rcsum(skb_chk, len);
4130 if (ret) {
4131 kfree_skb(skb_chk);
4132 return NULL;
4133 }
4134
4135 return skb_chk;
4136}
4137
4138/**
4139 * skb_checksum_trimmed - validate checksum of an skb
4140 * @skb: the skb to check
4141 * @transport_len: the data length beyond the network header
4142 * @skb_chkf: checksum function to use
4143 *
4144 * Applies the given checksum function skb_chkf to the provided skb.
4145 * Returns a checked and maybe trimmed skb. Returns NULL on error.
4146 *
4147 * If the skb has data beyond the given transport length, then a
4148 * trimmed & cloned skb is checked and returned.
4149 *
Linus Lüssinga5169932015-08-13 05:54:07 +02004150 * Caller needs to set the skb transport header and free any returned skb if it
4151 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004152 */
4153struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
4154 unsigned int transport_len,
4155 __sum16(*skb_chkf)(struct sk_buff *skb))
4156{
4157 struct sk_buff *skb_chk;
4158 unsigned int offset = skb_transport_offset(skb);
Linus Lüssingfcba67c2015-05-05 00:19:35 +02004159 __sum16 ret;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004160
4161 skb_chk = skb_checksum_maybe_trim(skb, transport_len);
4162 if (!skb_chk)
Linus Lüssinga5169932015-08-13 05:54:07 +02004163 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004164
Linus Lüssinga5169932015-08-13 05:54:07 +02004165 if (!pskb_may_pull(skb_chk, offset))
4166 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004167
4168 __skb_pull(skb_chk, offset);
4169 ret = skb_chkf(skb_chk);
4170 __skb_push(skb_chk, offset);
4171
Linus Lüssinga5169932015-08-13 05:54:07 +02004172 if (ret)
4173 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004174
4175 return skb_chk;
Linus Lüssinga5169932015-08-13 05:54:07 +02004176
4177err:
4178 if (skb_chk && skb_chk != skb)
4179 kfree_skb(skb_chk);
4180
4181 return NULL;
4182
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004183}
4184EXPORT_SYMBOL(skb_checksum_trimmed);
4185
Ben Hutchings4497b072008-06-19 16:22:28 -07004186void __skb_warn_lro_forwarding(const struct sk_buff *skb)
4187{
Joe Perchese87cc472012-05-13 21:56:26 +00004188 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4189 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07004190}
Ben Hutchings4497b072008-06-19 16:22:28 -07004191EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004192
4193void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4194{
Eric Dumazet3d861f62012-10-22 09:03:40 +00004195 if (head_stolen) {
4196 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004197 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004198 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004199 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004200 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004201}
4202EXPORT_SYMBOL(kfree_skb_partial);
4203
4204/**
4205 * skb_try_coalesce - try to merge skb to prior one
4206 * @to: prior buffer
4207 * @from: buffer to add
4208 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00004209 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004210 */
4211bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4212 bool *fragstolen, int *delta_truesize)
4213{
4214 int i, delta, len = from->len;
4215
4216 *fragstolen = false;
4217
4218 if (skb_cloned(to))
4219 return false;
4220
4221 if (len <= skb_tailroom(to)) {
Eric Dumazete93a0432014-09-15 04:19:52 -07004222 if (len)
4223 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004224 *delta_truesize = 0;
4225 return true;
4226 }
4227
4228 if (skb_has_frag_list(to) || skb_has_frag_list(from))
4229 return false;
4230
4231 if (skb_headlen(from) != 0) {
4232 struct page *page;
4233 unsigned int offset;
4234
4235 if (skb_shinfo(to)->nr_frags +
4236 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4237 return false;
4238
4239 if (skb_head_is_locked(from))
4240 return false;
4241
4242 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4243
4244 page = virt_to_head_page(from->head);
4245 offset = from->data - (unsigned char *)page_address(page);
4246
4247 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4248 page, offset, skb_headlen(from));
4249 *fragstolen = true;
4250 } else {
4251 if (skb_shinfo(to)->nr_frags +
4252 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4253 return false;
4254
Weiping Panf4b549a2012-09-28 20:15:30 +00004255 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004256 }
4257
4258 WARN_ON_ONCE(delta < len);
4259
4260 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4261 skb_shinfo(from)->frags,
4262 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4263 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4264
4265 if (!skb_cloned(from))
4266 skb_shinfo(from)->nr_frags = 0;
4267
Li RongQing8ea853f2012-09-18 16:53:21 +00004268 /* if the skb is not cloned this does nothing
4269 * since we set nr_frags to 0.
4270 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004271 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4272 skb_frag_ref(from, i);
4273
4274 to->truesize += delta;
4275 to->len += len;
4276 to->data_len += len;
4277
4278 *delta_truesize = delta;
4279 return true;
4280}
4281EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004282
4283/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004284 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004285 *
4286 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004287 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004288 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004289 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
4290 * into/from a tunnel. Some information have to be cleared during these
4291 * operations.
4292 * skb_scrub_packet can also be used to clean a skb before injecting it in
4293 * another namespace (@xnet == true). We have to clear all information in the
4294 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004295 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004296void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004297{
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004298 skb->tstamp.tv64 = 0;
4299 skb->pkt_type = PACKET_HOST;
4300 skb->skb_iif = 0;
WANG Cong60ff7462014-05-04 16:39:18 -07004301 skb->ignore_df = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004302 skb_dst_drop(skb);
Eric Dumazetc29390c2015-03-11 18:42:02 -07004303 skb_sender_cpu_clear(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004304 secpath_reset(skb);
4305 nf_reset(skb);
4306 nf_reset_trace(skb);
Herbert Xu213dd742015-04-16 09:03:27 +08004307
4308 if (!xnet)
4309 return;
4310
4311 skb_orphan(skb);
4312 skb->mark = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004313}
4314EXPORT_SYMBOL_GPL(skb_scrub_packet);
Florian Westphalde960aa2014-01-26 10:58:16 +01004315
4316/**
4317 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4318 *
4319 * @skb: GSO skb
4320 *
4321 * skb_gso_transport_seglen is used to determine the real size of the
4322 * individual segments, including Layer4 headers (TCP/UDP).
4323 *
4324 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4325 */
4326unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4327{
4328 const struct skb_shared_info *shinfo = skb_shinfo(skb);
Florian Westphalf993bc22014-10-20 13:49:18 +02004329 unsigned int thlen = 0;
Florian Westphalde960aa2014-01-26 10:58:16 +01004330
Florian Westphalf993bc22014-10-20 13:49:18 +02004331 if (skb->encapsulation) {
4332 thlen = skb_inner_transport_header(skb) -
4333 skb_transport_header(skb);
Florian Westphal6d39d582014-04-09 10:28:50 +02004334
Florian Westphalf993bc22014-10-20 13:49:18 +02004335 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4336 thlen += inner_tcp_hdrlen(skb);
4337 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4338 thlen = tcp_hdrlen(skb);
4339 }
Florian Westphal6d39d582014-04-09 10:28:50 +02004340 /* UFO sets gso_size to the size of the fragmentation
4341 * payload, i.e. the size of the L4 (UDP) header is already
4342 * accounted for.
4343 */
Florian Westphalf993bc22014-10-20 13:49:18 +02004344 return thlen + shinfo->gso_size;
Florian Westphalde960aa2014-01-26 10:58:16 +01004345}
4346EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004347
4348static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
4349{
4350 if (skb_cow(skb, skb_headroom(skb)) < 0) {
4351 kfree_skb(skb);
4352 return NULL;
4353 }
4354
Vlad Yasevichf6548612015-12-14 17:44:10 -05004355 memmove(skb->data - ETH_HLEN, skb->data - skb->mac_len - VLAN_HLEN,
Vlad Yasevicha6e18ff2015-11-16 15:43:44 -05004356 2 * ETH_ALEN);
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004357 skb->mac_header += VLAN_HLEN;
4358 return skb;
4359}
4360
4361struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
4362{
4363 struct vlan_hdr *vhdr;
4364 u16 vlan_tci;
4365
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004366 if (unlikely(skb_vlan_tag_present(skb))) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004367 /* vlan_tci is already set-up so leave this for another time */
4368 return skb;
4369 }
4370
4371 skb = skb_share_check(skb, GFP_ATOMIC);
4372 if (unlikely(!skb))
4373 goto err_free;
4374
4375 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
4376 goto err_free;
4377
4378 vhdr = (struct vlan_hdr *)skb->data;
4379 vlan_tci = ntohs(vhdr->h_vlan_TCI);
4380 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
4381
4382 skb_pull_rcsum(skb, VLAN_HLEN);
4383 vlan_set_encap_proto(skb, vhdr);
4384
4385 skb = skb_reorder_vlan_header(skb);
4386 if (unlikely(!skb))
4387 goto err_free;
4388
4389 skb_reset_network_header(skb);
4390 skb_reset_transport_header(skb);
4391 skb_reset_mac_len(skb);
4392
4393 return skb;
4394
4395err_free:
4396 kfree_skb(skb);
4397 return NULL;
4398}
4399EXPORT_SYMBOL(skb_vlan_untag);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004400
Jiri Pirkoe2195122014-11-19 14:05:01 +01004401int skb_ensure_writable(struct sk_buff *skb, int write_len)
4402{
4403 if (!pskb_may_pull(skb, write_len))
4404 return -ENOMEM;
4405
4406 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
4407 return 0;
4408
4409 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4410}
4411EXPORT_SYMBOL(skb_ensure_writable);
4412
Jiri Pirko93515d52014-11-19 14:05:02 +01004413/* remove VLAN header from packet and update csum accordingly. */
4414static int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
4415{
4416 struct vlan_hdr *vhdr;
4417 unsigned int offset = skb->data - skb_mac_header(skb);
4418 int err;
4419
4420 __skb_push(skb, offset);
4421 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
4422 if (unlikely(err))
4423 goto pull;
4424
4425 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
4426
4427 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
4428 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
4429
4430 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
4431 __skb_pull(skb, VLAN_HLEN);
4432
4433 vlan_set_encap_proto(skb, vhdr);
4434 skb->mac_header += VLAN_HLEN;
4435
4436 if (skb_network_offset(skb) < ETH_HLEN)
4437 skb_set_network_header(skb, ETH_HLEN);
4438
4439 skb_reset_mac_len(skb);
4440pull:
4441 __skb_pull(skb, offset);
4442
4443 return err;
4444}
4445
4446int skb_vlan_pop(struct sk_buff *skb)
4447{
4448 u16 vlan_tci;
4449 __be16 vlan_proto;
4450 int err;
4451
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004452 if (likely(skb_vlan_tag_present(skb))) {
Jiri Pirko93515d52014-11-19 14:05:02 +01004453 skb->vlan_tci = 0;
4454 } else {
4455 if (unlikely((skb->protocol != htons(ETH_P_8021Q) &&
4456 skb->protocol != htons(ETH_P_8021AD)) ||
4457 skb->len < VLAN_ETH_HLEN))
4458 return 0;
4459
4460 err = __skb_vlan_pop(skb, &vlan_tci);
4461 if (err)
4462 return err;
4463 }
4464 /* move next vlan tag to hw accel tag */
4465 if (likely((skb->protocol != htons(ETH_P_8021Q) &&
4466 skb->protocol != htons(ETH_P_8021AD)) ||
4467 skb->len < VLAN_ETH_HLEN))
4468 return 0;
4469
4470 vlan_proto = skb->protocol;
4471 err = __skb_vlan_pop(skb, &vlan_tci);
4472 if (unlikely(err))
4473 return err;
4474
4475 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4476 return 0;
4477}
4478EXPORT_SYMBOL(skb_vlan_pop);
4479
4480int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
4481{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004482 if (skb_vlan_tag_present(skb)) {
Jiri Pirko93515d52014-11-19 14:05:02 +01004483 unsigned int offset = skb->data - skb_mac_header(skb);
4484 int err;
4485
4486 /* __vlan_insert_tag expect skb->data pointing to mac header.
4487 * So change skb->data before calling it and change back to
4488 * original position later
4489 */
4490 __skb_push(skb, offset);
4491 err = __vlan_insert_tag(skb, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004492 skb_vlan_tag_get(skb));
Jiri Pirko93515d52014-11-19 14:05:02 +01004493 if (err)
4494 return err;
4495 skb->protocol = skb->vlan_proto;
4496 skb->mac_len += VLAN_HLEN;
4497 __skb_pull(skb, offset);
4498
4499 if (skb->ip_summed == CHECKSUM_COMPLETE)
4500 skb->csum = csum_add(skb->csum, csum_partial(skb->data
4501 + (2 * ETH_ALEN), VLAN_HLEN, 0));
4502 }
4503 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4504 return 0;
4505}
4506EXPORT_SYMBOL(skb_vlan_push);
4507
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004508/**
4509 * alloc_skb_with_frags - allocate skb with page frags
4510 *
Masanari Iidade3f0d02014-10-09 12:58:08 +09004511 * @header_len: size of linear part
4512 * @data_len: needed length in frags
4513 * @max_page_order: max page order desired.
4514 * @errcode: pointer to error code if any
4515 * @gfp_mask: allocation mask
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004516 *
4517 * This can be used to allocate a paged skb, given a maximal order for frags.
4518 */
4519struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
4520 unsigned long data_len,
4521 int max_page_order,
4522 int *errcode,
4523 gfp_t gfp_mask)
4524{
4525 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
4526 unsigned long chunk;
4527 struct sk_buff *skb;
4528 struct page *page;
4529 gfp_t gfp_head;
4530 int i;
4531
4532 *errcode = -EMSGSIZE;
4533 /* Note this test could be relaxed, if we succeed to allocate
4534 * high order pages...
4535 */
4536 if (npages > MAX_SKB_FRAGS)
4537 return NULL;
4538
4539 gfp_head = gfp_mask;
Mel Gormand0164ad2015-11-06 16:28:21 -08004540 if (gfp_head & __GFP_DIRECT_RECLAIM)
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004541 gfp_head |= __GFP_REPEAT;
4542
4543 *errcode = -ENOBUFS;
4544 skb = alloc_skb(header_len, gfp_head);
4545 if (!skb)
4546 return NULL;
4547
4548 skb->truesize += npages << PAGE_SHIFT;
4549
4550 for (i = 0; npages > 0; i++) {
4551 int order = max_page_order;
4552
4553 while (order) {
4554 if (npages >= 1 << order) {
Mel Gormand0164ad2015-11-06 16:28:21 -08004555 page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004556 __GFP_COMP |
4557 __GFP_NOWARN |
4558 __GFP_NORETRY,
4559 order);
4560 if (page)
4561 goto fill_page;
4562 /* Do not retry other high order allocations */
4563 order = 1;
4564 max_page_order = 0;
4565 }
4566 order--;
4567 }
4568 page = alloc_page(gfp_mask);
4569 if (!page)
4570 goto failure;
4571fill_page:
4572 chunk = min_t(unsigned long, data_len,
4573 PAGE_SIZE << order);
4574 skb_fill_page_desc(skb, i, page, 0, chunk);
4575 data_len -= chunk;
4576 npages -= 1 << order;
4577 }
4578 return skb;
4579
4580failure:
4581 kfree_skb(skb);
4582 return NULL;
4583}
4584EXPORT_SYMBOL(alloc_skb_with_frags);