1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Routines having to do with the 'struct sk_buff' memory handlers.
4 *
5 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
6 * Florian La Roche <rzsfl@rz.uni-sb.de>
7 *
8 * Fixes:
9 * Alan Cox : Fixed the worst of the load
10 * balancer bugs.
11 * Dave Platt : Interrupt stacking fix.
12 * Richard Kooijman : Timestamp fixes.
13 * Alan Cox : Changed buffer format.
14 * Alan Cox : destructor hook for AF_UNIX etc.
15 * Linus Torvalds : Better skb_clone.
16 * Alan Cox : Added skb_copy.
17 * Alan Cox : Added all the changed routines Linus
18 * only put in the headers
19 * Ray VanTassle : Fixed --skb->lock in free
20 * Alan Cox : skb_copy copy arp field
21 * Andi Kleen : slabified it.
22 * Robert Olsson : Removed skb_head_pool
23 *
24 * NOTE:
25 * The __skb_ routines should be called with interrupts
26 * disabled, or you better be *real* sure that the operation is atomic
27 * with respect to whatever list is being frobbed (e.g. via lock_sock()
28 * or via disabling bottom half handlers, etc).
29 */
30
31 /*
32 * The functions in this file will not compile correctly with gcc 2.4.x
33 */
34
35 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
36
37 #include <linux/module.h>
38 #include <linux/types.h>
39 #include <linux/kernel.h>
40 #include <linux/mm.h>
41 #include <linux/interrupt.h>
42 #include <linux/in.h>
43 #include <linux/inet.h>
44 #include <linux/slab.h>
45 #include <linux/tcp.h>
46 #include <linux/udp.h>
47 #include <linux/sctp.h>
48 #include <linux/netdevice.h>
49 #ifdef CONFIG_NET_CLS_ACT
50 #include <net/pkt_sched.h>
51 #endif
52 #include <linux/string.h>
53 #include <linux/skbuff.h>
54 #include <linux/splice.h>
55 #include <linux/cache.h>
56 #include <linux/rtnetlink.h>
57 #include <linux/init.h>
58 #include <linux/scatterlist.h>
59 #include <linux/errqueue.h>
60 #include <linux/prefetch.h>
61 #include <linux/if_vlan.h>
62 #include <linux/mpls.h>
63
64 #include <net/protocol.h>
65 #include <net/dst.h>
66 #include <net/sock.h>
67 #include <net/checksum.h>
68 #include <net/ip6_checksum.h>
69 #include <net/xfrm.h>
70 #include <net/mpls.h>
71 #include <net/mptcp.h>
72
73 #include <linux/uaccess.h>
74 #include <trace/events/skb.h>
75 #include <linux/highmem.h>
76 #include <linux/capability.h>
77 #include <linux/user_namespace.h>
78 #include <linux/indirect_call_wrapper.h>
79
80 #include "datagram.h"
81
82 struct kmem_cache *skbuff_head_cache __ro_after_init;
83 static struct kmem_cache *skbuff_fclone_cache __ro_after_init;
84 #ifdef CONFIG_SKB_EXTENSIONS
85 static struct kmem_cache *skbuff_ext_cache __ro_after_init;
86 #endif
87 int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
88 EXPORT_SYMBOL(sysctl_max_skb_frags);
89
90 /**
91 * skb_panic - private function for out-of-line support
92 * @skb: buffer
93 * @sz: size
94 * @addr: address
95 * @msg: skb_over_panic or skb_under_panic
96 *
97 * Out-of-line support for skb_put() and skb_push().
98 * Called via the wrapper skb_over_panic() or skb_under_panic().
99 * Keep out of line to prevent kernel bloat.
100 * __builtin_return_address is not used because it is not always reliable.
101 */
skb_panic(struct sk_buff * skb,unsigned int sz,void * addr,const char msg[])102 static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
103 const char msg[])
104 {
105 pr_emerg("%s: text:%px len:%d put:%d head:%px data:%px tail:%#lx end:%#lx dev:%s\n",
106 msg, addr, skb->len, sz, skb->head, skb->data,
107 (unsigned long)skb->tail, (unsigned long)skb->end,
108 skb->dev ? skb->dev->name : "<NULL>");
109 BUG();
110 }
111
skb_over_panic(struct sk_buff * skb,unsigned int sz,void * addr)112 static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
113 {
114 skb_panic(skb, sz, addr, __func__);
115 }
116
skb_under_panic(struct sk_buff * skb,unsigned int sz,void * addr)117 static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
118 {
119 skb_panic(skb, sz, addr, __func__);
120 }
121
122 /*
123 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
124 * the caller if emergency pfmemalloc reserves are being used. If it is and
125 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
126 * may be used. Otherwise, the packet data may be discarded until enough
127 * memory is free
128 */
129 #define kmalloc_reserve(size, gfp, node, pfmemalloc) \
130 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
131
__kmalloc_reserve(size_t size,gfp_t flags,int node,unsigned long ip,bool * pfmemalloc)132 static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
133 unsigned long ip, bool *pfmemalloc)
134 {
135 void *obj;
136 bool ret_pfmemalloc = false;
137
138 /*
139 * Try a regular allocation, when that fails and we're not entitled
140 * to the reserves, fail.
141 */
142 obj = kmalloc_node_track_caller(size,
143 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
144 node);
145 if (obj || !(gfp_pfmemalloc_allowed(flags)))
146 goto out;
147
148 /* Try again but now we are using pfmemalloc reserves */
149 ret_pfmemalloc = true;
150 obj = kmalloc_node_track_caller(size, flags, node);
151
152 out:
153 if (pfmemalloc)
154 *pfmemalloc = ret_pfmemalloc;
155
156 return obj;
157 }
158
159 /* Allocate a new skbuff. We do this ourselves so we can fill in a few
160 * 'private' fields and also do memory statistics to find all the
161 * [BEEP] leaks.
162 *
163 */
164
165 /**
166 * __alloc_skb - allocate a network buffer
167 * @size: size to allocate
168 * @gfp_mask: allocation mask
169 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
170 * instead of head cache and allocate a cloned (child) skb.
171 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
172 * allocations in case the data is required for writeback
173 * @node: numa node to allocate memory on
174 *
175 * Allocate a new &sk_buff. The returned buffer has no headroom and a
176 * tail room of at least size bytes. The object has a reference count
177 * of one. The return is the buffer. On a failure the return is %NULL.
178 *
179 * Buffers may only be allocated from interrupts using a @gfp_mask of
180 * %GFP_ATOMIC.
181 */
__alloc_skb(unsigned int size,gfp_t gfp_mask,int flags,int node)182 struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
183 int flags, int node)
184 {
185 struct kmem_cache *cache;
186 struct skb_shared_info *shinfo;
187 struct sk_buff *skb;
188 u8 *data;
189 bool pfmemalloc;
190
191 cache = (flags & SKB_ALLOC_FCLONE)
192 ? skbuff_fclone_cache : skbuff_head_cache;
193
194 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
195 gfp_mask |= __GFP_MEMALLOC;
196
197 /* Get the HEAD */
198 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
199 if (!skb)
200 goto out;
201 prefetchw(skb);
202
203 /* We do our best to align skb_shared_info on a separate cache
204 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
205 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
206 * Both skb->head and skb_shared_info are cache line aligned.
207 */
208 size = SKB_DATA_ALIGN(size);
209 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
210 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
211 if (!data)
212 goto nodata;
213 /* kmalloc(size) might give us more room than requested.
214 * Put skb_shared_info exactly at the end of allocated zone,
215 * to allow max possible filling before reallocation.
216 */
217 size = SKB_WITH_OVERHEAD(ksize(data));
218 prefetchw(data + size);
219
220 /*
221 * Only clear those fields we need to clear, not those that we will
222 * actually initialise below. Hence, don't put any more fields after
223 * the tail pointer in struct sk_buff!
224 */
225 memset(skb, 0, offsetof(struct sk_buff, tail));
226 /* Account for allocated memory : skb + skb->head */
227 skb->truesize = SKB_TRUESIZE(size);
228 skb->pfmemalloc = pfmemalloc;
229 refcount_set(&skb->users, 1);
230 skb->head = data;
231 skb->data = data;
232 skb_reset_tail_pointer(skb);
233 skb->end = skb->tail + size;
234 skb->mac_header = (typeof(skb->mac_header))~0U;
235 skb->transport_header = (typeof(skb->transport_header))~0U;
236
237 /* make sure we initialize shinfo sequentially */
238 shinfo = skb_shinfo(skb);
239 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
240 atomic_set(&shinfo->dataref, 1);
241
242 if (flags & SKB_ALLOC_FCLONE) {
243 struct sk_buff_fclones *fclones;
244
245 fclones = container_of(skb, struct sk_buff_fclones, skb1);
246
247 skb->fclone = SKB_FCLONE_ORIG;
248 refcount_set(&fclones->fclone_ref, 1);
249
250 fclones->skb2.fclone = SKB_FCLONE_CLONE;
251 }
252
253 skb_set_kcov_handle(skb, kcov_common_handle());
254
255 out:
256 return skb;
257 nodata:
258 kmem_cache_free(cache, skb);
259 skb = NULL;
260 goto out;
261 }
262 EXPORT_SYMBOL(__alloc_skb);
263
264 /* Caller must provide SKB that is memset cleared */
__build_skb_around(struct sk_buff * skb,void * data,unsigned int frag_size)265 static struct sk_buff *__build_skb_around(struct sk_buff *skb,
266 void *data, unsigned int frag_size)
267 {
268 struct skb_shared_info *shinfo;
269 unsigned int size = frag_size ? : ksize(data);
270
271 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
272
273 /* Assumes caller memset cleared SKB */
274 skb->truesize = SKB_TRUESIZE(size);
275 refcount_set(&skb->users, 1);
276 skb->head = data;
277 skb->data = data;
278 skb_reset_tail_pointer(skb);
279 skb->end = skb->tail + size;
280 skb->mac_header = (typeof(skb->mac_header))~0U;
281 skb->transport_header = (typeof(skb->transport_header))~0U;
282
283 /* make sure we initialize shinfo sequentially */
284 shinfo = skb_shinfo(skb);
285 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
286 atomic_set(&shinfo->dataref, 1);
287
288 skb_set_kcov_handle(skb, kcov_common_handle());
289
290 return skb;
291 }
292
293 /**
294 * __build_skb - build a network buffer
295 * @data: data buffer provided by caller
296 * @frag_size: size of data, or 0 if head was kmalloced
297 *
298 * Allocate a new &sk_buff. Caller provides space holding head and
299 * skb_shared_info. @data must have been allocated by kmalloc() only if
300 * @frag_size is 0, otherwise data should come from the page allocator
301 * or vmalloc()
302 * The return is the new skb buffer.
303 * On a failure the return is %NULL, and @data is not freed.
304 * Notes :
305 * Before IO, driver allocates only data buffer where NIC put incoming frame
306 * Driver should add room at head (NET_SKB_PAD) and
307 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
308 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
309 * before giving packet to stack.
310 * RX rings only contains data buffers, not full skbs.
311 */
__build_skb(void * data,unsigned int frag_size)312 struct sk_buff *__build_skb(void *data, unsigned int frag_size)
313 {
314 struct sk_buff *skb;
315
316 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
317 if (unlikely(!skb))
318 return NULL;
319
320 memset(skb, 0, offsetof(struct sk_buff, tail));
321
322 return __build_skb_around(skb, data, frag_size);
323 }
324
325 /* build_skb() is wrapper over __build_skb(), that specifically
326 * takes care of skb->head and skb->pfmemalloc
327 * This means that if @frag_size is not zero, then @data must be backed
328 * by a page fragment, not kmalloc() or vmalloc()
329 */
build_skb(void * data,unsigned int frag_size)330 struct sk_buff *build_skb(void *data, unsigned int frag_size)
331 {
332 struct sk_buff *skb = __build_skb(data, frag_size);
333
334 if (skb && frag_size) {
335 skb->head_frag = 1;
336 if (page_is_pfmemalloc(virt_to_head_page(data)))
337 skb->pfmemalloc = 1;
338 }
339 return skb;
340 }
341 EXPORT_SYMBOL(build_skb);
342
343 /**
344 * build_skb_around - build a network buffer around provided skb
345 * @skb: sk_buff provide by caller, must be memset cleared
346 * @data: data buffer provided by caller
347 * @frag_size: size of data, or 0 if head was kmalloced
348 */
build_skb_around(struct sk_buff * skb,void * data,unsigned int frag_size)349 struct sk_buff *build_skb_around(struct sk_buff *skb,
350 void *data, unsigned int frag_size)
351 {
352 if (unlikely(!skb))
353 return NULL;
354
355 skb = __build_skb_around(skb, data, frag_size);
356
357 if (skb && frag_size) {
358 skb->head_frag = 1;
359 if (page_is_pfmemalloc(virt_to_head_page(data)))
360 skb->pfmemalloc = 1;
361 }
362 return skb;
363 }
364 EXPORT_SYMBOL(build_skb_around);
365
366 #define NAPI_SKB_CACHE_SIZE 64
367
368 struct napi_alloc_cache {
369 struct page_frag_cache page;
370 unsigned int skb_count;
371 void *skb_cache[NAPI_SKB_CACHE_SIZE];
372 };
373
374 static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
375 static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
376
__napi_alloc_frag(unsigned int fragsz,gfp_t gfp_mask)377 static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
378 {
379 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
380
381 return page_frag_alloc(&nc->page, fragsz, gfp_mask);
382 }
383
napi_alloc_frag(unsigned int fragsz)384 void *napi_alloc_frag(unsigned int fragsz)
385 {
386 fragsz = SKB_DATA_ALIGN(fragsz);
387
388 return __napi_alloc_frag(fragsz, GFP_ATOMIC);
389 }
390 EXPORT_SYMBOL(napi_alloc_frag);
391
392 /**
393 * netdev_alloc_frag - allocate a page fragment
394 * @fragsz: fragment size
395 *
396 * Allocates a frag from a page for receive buffer.
397 * Uses GFP_ATOMIC allocations.
398 */
netdev_alloc_frag(unsigned int fragsz)399 void *netdev_alloc_frag(unsigned int fragsz)
400 {
401 struct page_frag_cache *nc;
402 void *data;
403
404 fragsz = SKB_DATA_ALIGN(fragsz);
405 if (in_irq() || irqs_disabled()) {
406 nc = this_cpu_ptr(&netdev_alloc_cache);
407 data = page_frag_alloc(nc, fragsz, GFP_ATOMIC);
408 } else {
409 local_bh_disable();
410 data = __napi_alloc_frag(fragsz, GFP_ATOMIC);
411 local_bh_enable();
412 }
413 return data;
414 }
415 EXPORT_SYMBOL(netdev_alloc_frag);
416
417 /**
418 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
419 * @dev: network device to receive on
420 * @len: length to allocate
421 * @gfp_mask: get_free_pages mask, passed to alloc_skb
422 *
423 * Allocate a new &sk_buff and assign it a usage count of one. The
424 * buffer has NET_SKB_PAD headroom built in. Users should allocate
425 * the headroom they think they need without accounting for the
426 * built in space. The built in space is used for optimisations.
427 *
428 * %NULL is returned if there is no free memory.
429 */
__netdev_alloc_skb(struct net_device * dev,unsigned int len,gfp_t gfp_mask)430 struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
431 gfp_t gfp_mask)
432 {
433 struct page_frag_cache *nc;
434 struct sk_buff *skb;
435 bool pfmemalloc;
436 void *data;
437
438 len += NET_SKB_PAD;
439
440 /* If requested length is either too small or too big,
441 * we use kmalloc() for skb->head allocation.
442 */
443 if (len <= SKB_WITH_OVERHEAD(1024) ||
444 len > SKB_WITH_OVERHEAD(PAGE_SIZE) ||
445 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
446 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
447 if (!skb)
448 goto skb_fail;
449 goto skb_success;
450 }
451
452 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
453 len = SKB_DATA_ALIGN(len);
454
455 if (sk_memalloc_socks())
456 gfp_mask |= __GFP_MEMALLOC;
457
458 if (in_irq() || irqs_disabled()) {
459 nc = this_cpu_ptr(&netdev_alloc_cache);
460 data = page_frag_alloc(nc, len, gfp_mask);
461 pfmemalloc = nc->pfmemalloc;
462 } else {
463 local_bh_disable();
464 nc = this_cpu_ptr(&napi_alloc_cache.page);
465 data = page_frag_alloc(nc, len, gfp_mask);
466 pfmemalloc = nc->pfmemalloc;
467 local_bh_enable();
468 }
469
470 if (unlikely(!data))
471 return NULL;
472
473 skb = __build_skb(data, len);
474 if (unlikely(!skb)) {
475 skb_free_frag(data);
476 return NULL;
477 }
478
479 if (pfmemalloc)
480 skb->pfmemalloc = 1;
481 skb->head_frag = 1;
482
483 skb_success:
484 skb_reserve(skb, NET_SKB_PAD);
485 skb->dev = dev;
486
487 skb_fail:
488 return skb;
489 }
490 EXPORT_SYMBOL(__netdev_alloc_skb);
491
492 /**
493 * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
494 * @napi: napi instance this buffer was allocated for
495 * @len: length to allocate
496 * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
497 *
498 * Allocate a new sk_buff for use in NAPI receive. This buffer will
499 * attempt to allocate the head from a special reserved region used
500 * only for NAPI Rx allocation. By doing this we can save several
501 * CPU cycles by avoiding having to disable and re-enable IRQs.
502 *
503 * %NULL is returned if there is no free memory.
504 */
__napi_alloc_skb(struct napi_struct * napi,unsigned int len,gfp_t gfp_mask)505 struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
506 gfp_t gfp_mask)
507 {
508 struct napi_alloc_cache *nc;
509 struct sk_buff *skb;
510 void *data;
511
512 len += NET_SKB_PAD + NET_IP_ALIGN;
513
514 /* If requested length is either too small or too big,
515 * we use kmalloc() for skb->head allocation.
516 */
517 if (len <= SKB_WITH_OVERHEAD(1024) ||
518 len > SKB_WITH_OVERHEAD(PAGE_SIZE) ||
519 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
520 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
521 if (!skb)
522 goto skb_fail;
523 goto skb_success;
524 }
525
526 nc = this_cpu_ptr(&napi_alloc_cache);
527 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
528 len = SKB_DATA_ALIGN(len);
529
530 if (sk_memalloc_socks())
531 gfp_mask |= __GFP_MEMALLOC;
532
533 data = page_frag_alloc(&nc->page, len, gfp_mask);
534 if (unlikely(!data))
535 return NULL;
536
537 skb = __build_skb(data, len);
538 if (unlikely(!skb)) {
539 skb_free_frag(data);
540 return NULL;
541 }
542
543 if (nc->page.pfmemalloc)
544 skb->pfmemalloc = 1;
545 skb->head_frag = 1;
546
547 skb_success:
548 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
549 skb->dev = napi->dev;
550
551 skb_fail:
552 return skb;
553 }
554 EXPORT_SYMBOL(__napi_alloc_skb);
555
skb_add_rx_frag(struct sk_buff * skb,int i,struct page * page,int off,int size,unsigned int truesize)556 void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
557 int size, unsigned int truesize)
558 {
559 skb_fill_page_desc(skb, i, page, off, size);
560 skb->len += size;
561 skb->data_len += size;
562 skb->truesize += truesize;
563 }
564 EXPORT_SYMBOL(skb_add_rx_frag);
565
skb_coalesce_rx_frag(struct sk_buff * skb,int i,int size,unsigned int truesize)566 void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
567 unsigned int truesize)
568 {
569 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
570
571 skb_frag_size_add(frag, size);
572 skb->len += size;
573 skb->data_len += size;
574 skb->truesize += truesize;
575 }
576 EXPORT_SYMBOL(skb_coalesce_rx_frag);
577
skb_drop_list(struct sk_buff ** listp)578 static void skb_drop_list(struct sk_buff **listp)
579 {
580 kfree_skb_list(*listp);
581 *listp = NULL;
582 }
583
skb_drop_fraglist(struct sk_buff * skb)584 static inline void skb_drop_fraglist(struct sk_buff *skb)
585 {
586 skb_drop_list(&skb_shinfo(skb)->frag_list);
587 }
588
skb_clone_fraglist(struct sk_buff * skb)589 static void skb_clone_fraglist(struct sk_buff *skb)
590 {
591 struct sk_buff *list;
592
593 skb_walk_frags(skb, list)
594 skb_get(list);
595 }
596
skb_free_head(struct sk_buff * skb)597 static void skb_free_head(struct sk_buff *skb)
598 {
599 unsigned char *head = skb->head;
600
601 if (skb->head_frag)
602 skb_free_frag(head);
603 else
604 kfree(head);
605 }
606
skb_release_data(struct sk_buff * skb)607 static void skb_release_data(struct sk_buff *skb)
608 {
609 struct skb_shared_info *shinfo = skb_shinfo(skb);
610 int i;
611
612 if (skb->cloned &&
613 atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
614 &shinfo->dataref))
615 return;
616
617 for (i = 0; i < shinfo->nr_frags; i++)
618 __skb_frag_unref(&shinfo->frags[i]);
619
620 if (shinfo->frag_list)
621 kfree_skb_list(shinfo->frag_list);
622
623 skb_zcopy_clear(skb, true);
624 skb_free_head(skb);
625 }
626
627 /*
628 * Free an skbuff by memory without cleaning the state.
629 */
kfree_skbmem(struct sk_buff * skb)630 static void kfree_skbmem(struct sk_buff *skb)
631 {
632 struct sk_buff_fclones *fclones;
633
634 switch (skb->fclone) {
635 case SKB_FCLONE_UNAVAILABLE:
636 kmem_cache_free(skbuff_head_cache, skb);
637 return;
638
639 case SKB_FCLONE_ORIG:
640 fclones = container_of(skb, struct sk_buff_fclones, skb1);
641
642 /* We usually free the clone (TX completion) before original skb
643 * This test would have no chance to be true for the clone,
644 * while here, branch prediction will be good.
645 */
646 if (refcount_read(&fclones->fclone_ref) == 1)
647 goto fastpath;
648 break;
649
650 default: /* SKB_FCLONE_CLONE */
651 fclones = container_of(skb, struct sk_buff_fclones, skb2);
652 break;
653 }
654 if (!refcount_dec_and_test(&fclones->fclone_ref))
655 return;
656 fastpath:
657 kmem_cache_free(skbuff_fclone_cache, fclones);
658 }
659
skb_release_head_state(struct sk_buff * skb)660 void skb_release_head_state(struct sk_buff *skb)
661 {
662 nf_reset_ct(skb);
663 skb_dst_drop(skb);
664 if (skb->destructor) {
665 WARN_ON(in_irq());
666 skb->destructor(skb);
667 }
668 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
669 nf_conntrack_put(skb_nfct(skb));
670 #endif
671 skb_ext_put(skb);
672 }
673
674 /* Free everything but the sk_buff shell. */
skb_release_all(struct sk_buff * skb)675 static void skb_release_all(struct sk_buff *skb)
676 {
677 skb_release_head_state(skb);
678 if (likely(skb->head))
679 skb_release_data(skb);
680 }
681
682 /**
683 * __kfree_skb - private function
684 * @skb: buffer
685 *
686 * Free an sk_buff. Release anything attached to the buffer.
687 * Clean the state. This is an internal helper function. Users should
688 * always call kfree_skb
689 */
690
__kfree_skb(struct sk_buff * skb)691 void __kfree_skb(struct sk_buff *skb)
692 {
693 skb_release_all(skb);
694 kfree_skbmem(skb);
695 }
696 EXPORT_SYMBOL(__kfree_skb);
697
698 /**
699 * kfree_skb - free an sk_buff
700 * @skb: buffer to free
701 *
702 * Drop a reference to the buffer and free it if the usage count has
703 * hit zero.
704 */
kfree_skb(struct sk_buff * skb)705 void kfree_skb(struct sk_buff *skb)
706 {
707 if (!skb_unref(skb))
708 return;
709
710 trace_kfree_skb(skb, __builtin_return_address(0));
711 __kfree_skb(skb);
712 }
713 EXPORT_SYMBOL(kfree_skb);
714
kfree_skb_list(struct sk_buff * segs)715 void kfree_skb_list(struct sk_buff *segs)
716 {
717 while (segs) {
718 struct sk_buff *next = segs->next;
719
720 kfree_skb(segs);
721 segs = next;
722 }
723 }
724 EXPORT_SYMBOL(kfree_skb_list);
725
726 /* Dump skb information and contents.
727 *
728 * Must only be called from net_ratelimit()-ed paths.
729 *
730 * Dumps whole packets if full_pkt, only headers otherwise.
731 */
skb_dump(const char * level,const struct sk_buff * skb,bool full_pkt)732 void skb_dump(const char *level, const struct sk_buff *skb, bool full_pkt)
733 {
734 struct skb_shared_info *sh = skb_shinfo(skb);
735 struct net_device *dev = skb->dev;
736 struct sock *sk = skb->sk;
737 struct sk_buff *list_skb;
738 bool has_mac, has_trans;
739 int headroom, tailroom;
740 int i, len, seg_len;
741
742 if (full_pkt)
743 len = skb->len;
744 else
745 len = min_t(int, skb->len, MAX_HEADER + 128);
746
747 headroom = skb_headroom(skb);
748 tailroom = skb_tailroom(skb);
749
750 has_mac = skb_mac_header_was_set(skb);
751 has_trans = skb_transport_header_was_set(skb);
752
753 printk("%sskb len=%u headroom=%u headlen=%u tailroom=%u\n"
754 "mac=(%d,%d) net=(%d,%d) trans=%d\n"
755 "shinfo(txflags=%u nr_frags=%u gso(size=%hu type=%u segs=%hu))\n"
756 "csum(0x%x ip_summed=%u complete_sw=%u valid=%u level=%u)\n"
757 "hash(0x%x sw=%u l4=%u) proto=0x%04x pkttype=%u iif=%d\n",
758 level, skb->len, headroom, skb_headlen(skb), tailroom,
759 has_mac ? skb->mac_header : -1,
760 has_mac ? skb_mac_header_len(skb) : -1,
761 skb->network_header,
762 has_trans ? skb_network_header_len(skb) : -1,
763 has_trans ? skb->transport_header : -1,
764 sh->tx_flags, sh->nr_frags,
765 sh->gso_size, sh->gso_type, sh->gso_segs,
766 skb->csum, skb->ip_summed, skb->csum_complete_sw,
767 skb->csum_valid, skb->csum_level,
768 skb->hash, skb->sw_hash, skb->l4_hash,
769 ntohs(skb->protocol), skb->pkt_type, skb->skb_iif);
770
771 if (dev)
772 printk("%sdev name=%s feat=%pNF\n",
773 level, dev->name, &dev->features);
774 if (sk)
775 printk("%ssk family=%hu type=%u proto=%u\n",
776 level, sk->sk_family, sk->sk_type, sk->sk_protocol);
777
778 if (full_pkt && headroom)
779 print_hex_dump(level, "skb headroom: ", DUMP_PREFIX_OFFSET,
780 16, 1, skb->head, headroom, false);
781
782 seg_len = min_t(int, skb_headlen(skb), len);
783 if (seg_len)
784 print_hex_dump(level, "skb linear: ", DUMP_PREFIX_OFFSET,
785 16, 1, skb->data, seg_len, false);
786 len -= seg_len;
787
788 if (full_pkt && tailroom)
789 print_hex_dump(level, "skb tailroom: ", DUMP_PREFIX_OFFSET,
790 16, 1, skb_tail_pointer(skb), tailroom, false);
791
792 for (i = 0; len && i < skb_shinfo(skb)->nr_frags; i++) {
793 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
794 u32 p_off, p_len, copied;
795 struct page *p;
796 u8 *vaddr;
797
798 skb_frag_foreach_page(frag, skb_frag_off(frag),
799 skb_frag_size(frag), p, p_off, p_len,
800 copied) {
801 seg_len = min_t(int, p_len, len);
802 vaddr = kmap_atomic(p);
803 print_hex_dump(level, "skb frag: ",
804 DUMP_PREFIX_OFFSET,
805 16, 1, vaddr + p_off, seg_len, false);
806 kunmap_atomic(vaddr);
807 len -= seg_len;
808 if (!len)
809 break;
810 }
811 }
812
813 if (full_pkt && skb_has_frag_list(skb)) {
814 printk("skb fraglist:\n");
815 skb_walk_frags(skb, list_skb)
816 skb_dump(level, list_skb, true);
817 }
818 }
819 EXPORT_SYMBOL(skb_dump);
820
821 /**
822 * skb_tx_error - report an sk_buff xmit error
823 * @skb: buffer that triggered an error
824 *
825 * Report xmit error if a device callback is tracking this skb.
826 * skb must be freed afterwards.
827 */
skb_tx_error(struct sk_buff * skb)828 void skb_tx_error(struct sk_buff *skb)
829 {
830 skb_zcopy_clear(skb, true);
831 }
832 EXPORT_SYMBOL(skb_tx_error);
833
834 #ifdef CONFIG_TRACEPOINTS
835 /**
836 * consume_skb - free an skbuff
837 * @skb: buffer to free
838 *
839 * Drop a ref to the buffer and free it if the usage count has hit zero
840 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
841 * is being dropped after a failure and notes that
842 */
consume_skb(struct sk_buff * skb)843 void consume_skb(struct sk_buff *skb)
844 {
845 if (!skb_unref(skb))
846 return;
847
848 trace_consume_skb(skb);
849 __kfree_skb(skb);
850 }
851 EXPORT_SYMBOL(consume_skb);
852 #endif
853
854 /**
855 * consume_stateless_skb - free an skbuff, assuming it is stateless
856 * @skb: buffer to free
857 *
858 * Alike consume_skb(), but this variant assumes that this is the last
859 * skb reference and all the head states have been already dropped
860 */
__consume_stateless_skb(struct sk_buff * skb)861 void __consume_stateless_skb(struct sk_buff *skb)
862 {
863 trace_consume_skb(skb);
864 skb_release_data(skb);
865 kfree_skbmem(skb);
866 }
867
__kfree_skb_flush(void)868 void __kfree_skb_flush(void)
869 {
870 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
871
872 /* flush skb_cache if containing objects */
873 if (nc->skb_count) {
874 kmem_cache_free_bulk(skbuff_head_cache, nc->skb_count,
875 nc->skb_cache);
876 nc->skb_count = 0;
877 }
878 }
879
_kfree_skb_defer(struct sk_buff * skb)880 static inline void _kfree_skb_defer(struct sk_buff *skb)
881 {
882 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
883
884 /* drop skb->head and call any destructors for packet */
885 skb_release_all(skb);
886
887 /* record skb to CPU local list */
888 nc->skb_cache[nc->skb_count++] = skb;
889
890 #ifdef CONFIG_SLUB
891 /* SLUB writes into objects when freeing */
892 prefetchw(skb);
893 #endif
894
895 /* flush skb_cache if it is filled */
896 if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
897 kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_SIZE,
898 nc->skb_cache);
899 nc->skb_count = 0;
900 }
901 }
__kfree_skb_defer(struct sk_buff * skb)902 void __kfree_skb_defer(struct sk_buff *skb)
903 {
904 _kfree_skb_defer(skb);
905 }
906
napi_consume_skb(struct sk_buff * skb,int budget)907 void napi_consume_skb(struct sk_buff *skb, int budget)
908 {
909 /* Zero budget indicate non-NAPI context called us, like netpoll */
910 if (unlikely(!budget)) {
911 dev_consume_skb_any(skb);
912 return;
913 }
914
915 if (!skb_unref(skb))
916 return;
917
918 /* if reaching here SKB is ready to free */
919 trace_consume_skb(skb);
920
921 /* if SKB is a clone, don't handle this case */
922 if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
923 __kfree_skb(skb);
924 return;
925 }
926
927 _kfree_skb_defer(skb);
928 }
929 EXPORT_SYMBOL(napi_consume_skb);
930
931 /* Make sure a field is enclosed inside headers_start/headers_end section */
932 #define CHECK_SKB_FIELD(field) \
933 BUILD_BUG_ON(offsetof(struct sk_buff, field) < \
934 offsetof(struct sk_buff, headers_start)); \
935 BUILD_BUG_ON(offsetof(struct sk_buff, field) > \
936 offsetof(struct sk_buff, headers_end)); \
937
__copy_skb_header(struct sk_buff * new,const struct sk_buff * old)938 static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
939 {
940 new->tstamp = old->tstamp;
941 /* We do not copy old->sk */
942 new->dev = old->dev;
943 memcpy(new->cb, old->cb, sizeof(old->cb));
944 skb_dst_copy(new, old);
945 __skb_ext_copy(new, old);
946 __nf_copy(new, old, false);
947
948 /* Note : this field could be in headers_start/headers_end section
949 * It is not yet because we do not want to have a 16 bit hole
950 */
951 new->queue_mapping = old->queue_mapping;
952
953 memcpy(&new->headers_start, &old->headers_start,
954 offsetof(struct sk_buff, headers_end) -
955 offsetof(struct sk_buff, headers_start));
956 CHECK_SKB_FIELD(protocol);
957 CHECK_SKB_FIELD(csum);
958 CHECK_SKB_FIELD(hash);
959 CHECK_SKB_FIELD(priority);
960 CHECK_SKB_FIELD(skb_iif);
961 CHECK_SKB_FIELD(vlan_proto);
962 CHECK_SKB_FIELD(vlan_tci);
963 CHECK_SKB_FIELD(transport_header);
964 CHECK_SKB_FIELD(network_header);
965 CHECK_SKB_FIELD(mac_header);
966 CHECK_SKB_FIELD(inner_protocol);
967 CHECK_SKB_FIELD(inner_transport_header);
968 CHECK_SKB_FIELD(inner_network_header);
969 CHECK_SKB_FIELD(inner_mac_header);
970 CHECK_SKB_FIELD(mark);
971 #ifdef CONFIG_NETWORK_SECMARK
972 CHECK_SKB_FIELD(secmark);
973 #endif
974 #ifdef CONFIG_NET_RX_BUSY_POLL
975 CHECK_SKB_FIELD(napi_id);
976 #endif
977 #ifdef CONFIG_XPS
978 CHECK_SKB_FIELD(sender_cpu);
979 #endif
980 #ifdef CONFIG_NET_SCHED
981 CHECK_SKB_FIELD(tc_index);
982 #endif
983
984 }
985
986 /*
987 * You should not add any new code to this function. Add it to
988 * __copy_skb_header above instead.
989 */
__skb_clone(struct sk_buff * n,struct sk_buff * skb)990 static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
991 {
992 #define C(x) n->x = skb->x
993
994 n->next = n->prev = NULL;
995 n->sk = NULL;
996 __copy_skb_header(n, skb);
997
998 C(len);
999 C(data_len);
1000 C(mac_len);
1001 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
1002 n->cloned = 1;
1003 n->nohdr = 0;
1004 n->peeked = 0;
1005 C(pfmemalloc);
1006 n->destructor = NULL;
1007 C(tail);
1008 C(end);
1009 C(head);
1010 C(head_frag);
1011 C(data);
1012 C(truesize);
1013 refcount_set(&n->users, 1);
1014
1015 atomic_inc(&(skb_shinfo(skb)->dataref));
1016 skb->cloned = 1;
1017
1018 return n;
1019 #undef C
1020 }
1021
1022 /**
1023 * alloc_skb_for_msg() - allocate sk_buff to wrap frag list forming a msg
1024 * @first: first sk_buff of the msg
1025 */
alloc_skb_for_msg(struct sk_buff * first)1026 struct sk_buff *alloc_skb_for_msg(struct sk_buff *first)
1027 {
1028 struct sk_buff *n;
1029
1030 n = alloc_skb(0, GFP_ATOMIC);
1031 if (!n)
1032 return NULL;
1033
1034 n->len = first->len;
1035 n->data_len = first->len;
1036 n->truesize = first->truesize;
1037
1038 skb_shinfo(n)->frag_list = first;
1039
1040 __copy_skb_header(n, first);
1041 n->destructor = NULL;
1042
1043 return n;
1044 }
1045 EXPORT_SYMBOL_GPL(alloc_skb_for_msg);
1046
1047 /**
1048 * skb_morph - morph one skb into another
1049 * @dst: the skb to receive the contents
1050 * @src: the skb to supply the contents
1051 *
1052 * This is identical to skb_clone except that the target skb is
1053 * supplied by the user.
1054 *
1055 * The target skb is returned upon exit.
1056 */
skb_morph(struct sk_buff * dst,struct sk_buff * src)1057 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
1058 {
1059 skb_release_all(dst);
1060 return __skb_clone(dst, src);
1061 }
1062 EXPORT_SYMBOL_GPL(skb_morph);
1063
mm_account_pinned_pages(struct mmpin * mmp,size_t size)1064 int mm_account_pinned_pages(struct mmpin *mmp, size_t size)
1065 {
1066 unsigned long max_pg, num_pg, new_pg, old_pg;
1067 struct user_struct *user;
1068
1069 if (capable(CAP_IPC_LOCK) || !size)
1070 return 0;
1071
1072 num_pg = (size >> PAGE_SHIFT) + 2; /* worst case */
1073 max_pg = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1074 user = mmp->user ? : current_user();
1075
1076 do {
1077 old_pg = atomic_long_read(&user->locked_vm);
1078 new_pg = old_pg + num_pg;
1079 if (new_pg > max_pg)
1080 return -ENOBUFS;
1081 } while (atomic_long_cmpxchg(&user->locked_vm, old_pg, new_pg) !=
1082 old_pg);
1083
1084 if (!mmp->user) {
1085 mmp->user = get_uid(user);
1086 mmp->num_pg = num_pg;
1087 } else {
1088 mmp->num_pg += num_pg;
1089 }
1090
1091 return 0;
1092 }
1093 EXPORT_SYMBOL_GPL(mm_account_pinned_pages);
1094
mm_unaccount_pinned_pages(struct mmpin * mmp)1095 void mm_unaccount_pinned_pages(struct mmpin *mmp)
1096 {
1097 if (mmp->user) {
1098 atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm);
1099 free_uid(mmp->user);
1100 }
1101 }
1102 EXPORT_SYMBOL_GPL(mm_unaccount_pinned_pages);
1103
sock_zerocopy_alloc(struct sock * sk,size_t size)1104 struct ubuf_info *sock_zerocopy_alloc(struct sock *sk, size_t size)
1105 {
1106 struct ubuf_info *uarg;
1107 struct sk_buff *skb;
1108
1109 WARN_ON_ONCE(!in_task());
1110
1111 skb = sock_omalloc(sk, 0, GFP_KERNEL);
1112 if (!skb)
1113 return NULL;
1114
1115 BUILD_BUG_ON(sizeof(*uarg) > sizeof(skb->cb));
1116 uarg = (void *)skb->cb;
1117 uarg->mmp.user = NULL;
1118
1119 if (mm_account_pinned_pages(&uarg->mmp, size)) {
1120 kfree_skb(skb);
1121 return NULL;
1122 }
1123
1124 uarg->callback = sock_zerocopy_callback;
1125 uarg->id = ((u32)atomic_inc_return(&sk->sk_zckey)) - 1;
1126 uarg->len = 1;
1127 uarg->bytelen = size;
1128 uarg->zerocopy = 1;
1129 refcount_set(&uarg->refcnt, 1);
1130 sock_hold(sk);
1131
1132 return uarg;
1133 }
1134 EXPORT_SYMBOL_GPL(sock_zerocopy_alloc);
1135
skb_from_uarg(struct ubuf_info * uarg)1136 static inline struct sk_buff *skb_from_uarg(struct ubuf_info *uarg)
1137 {
1138 return container_of((void *)uarg, struct sk_buff, cb);
1139 }
1140
sock_zerocopy_realloc(struct sock * sk,size_t size,struct ubuf_info * uarg)1141 struct ubuf_info *sock_zerocopy_realloc(struct sock *sk, size_t size,
1142 struct ubuf_info *uarg)
1143 {
1144 if (uarg) {
1145 const u32 byte_limit = 1 << 19; /* limit to a few TSO */
1146 u32 bytelen, next;
1147
1148 /* realloc only when socket is locked (TCP, UDP cork),
1149 * so uarg->len and sk_zckey access is serialized
1150 */
1151 if (!sock_owned_by_user(sk)) {
1152 WARN_ON_ONCE(1);
1153 return NULL;
1154 }
1155
1156 bytelen = uarg->bytelen + size;
1157 if (uarg->len == USHRT_MAX - 1 || bytelen > byte_limit) {
1158 /* TCP can create new skb to attach new uarg */
1159 if (sk->sk_type == SOCK_STREAM)
1160 goto new_alloc;
1161 return NULL;
1162 }
1163
1164 next = (u32)atomic_read(&sk->sk_zckey);
1165 if ((u32)(uarg->id + uarg->len) == next) {
1166 if (mm_account_pinned_pages(&uarg->mmp, size))
1167 return NULL;
1168 uarg->len++;
1169 uarg->bytelen = bytelen;
1170 atomic_set(&sk->sk_zckey, ++next);
1171
1172 /* no extra ref when appending to datagram (MSG_MORE) */
1173 if (sk->sk_type == SOCK_STREAM)
1174 sock_zerocopy_get(uarg);
1175
1176 return uarg;
1177 }
1178 }
1179
1180 new_alloc:
1181 return sock_zerocopy_alloc(sk, size);
1182 }
1183 EXPORT_SYMBOL_GPL(sock_zerocopy_realloc);
1184
skb_zerocopy_notify_extend(struct sk_buff * skb,u32 lo,u16 len)1185 static bool skb_zerocopy_notify_extend(struct sk_buff *skb, u32 lo, u16 len)
1186 {
1187 struct sock_exterr_skb *serr = SKB_EXT_ERR(skb);
1188 u32 old_lo, old_hi;
1189 u64 sum_len;
1190
1191 old_lo = serr->ee.ee_info;
1192 old_hi = serr->ee.ee_data;
1193 sum_len = old_hi - old_lo + 1ULL + len;
1194
1195 if (sum_len >= (1ULL << 32))
1196 return false;
1197
1198 if (lo != old_hi + 1)
1199 return false;
1200
1201 serr->ee.ee_data += len;
1202 return true;
1203 }
1204
sock_zerocopy_callback(struct ubuf_info * uarg,bool success)1205 void sock_zerocopy_callback(struct ubuf_info *uarg, bool success)
1206 {
1207 struct sk_buff *tail, *skb = skb_from_uarg(uarg);
1208 struct sock_exterr_skb *serr;
1209 struct sock *sk = skb->sk;
1210 struct sk_buff_head *q;
1211 unsigned long flags;
1212 u32 lo, hi;
1213 u16 len;
1214
1215 mm_unaccount_pinned_pages(&uarg->mmp);
1216
1217 /* if !len, there was only 1 call, and it was aborted
1218 * so do not queue a completion notification
1219 */
1220 if (!uarg->len || sock_flag(sk, SOCK_DEAD))
1221 goto release;
1222
1223 len = uarg->len;
1224 lo = uarg->id;
1225 hi = uarg->id + len - 1;
1226
1227 serr = SKB_EXT_ERR(skb);
1228 memset(serr, 0, sizeof(*serr));
1229 serr->ee.ee_errno = 0;
1230 serr->ee.ee_origin = SO_EE_ORIGIN_ZEROCOPY;
1231 serr->ee.ee_data = hi;
1232 serr->ee.ee_info = lo;
1233 if (!success)
1234 serr->ee.ee_code |= SO_EE_CODE_ZEROCOPY_COPIED;
1235
1236 q = &sk->sk_error_queue;
1237 spin_lock_irqsave(&q->lock, flags);
1238 tail = skb_peek_tail(q);
1239 if (!tail || SKB_EXT_ERR(tail)->ee.ee_origin != SO_EE_ORIGIN_ZEROCOPY ||
1240 !skb_zerocopy_notify_extend(tail, lo, len)) {
1241 __skb_queue_tail(q, skb);
1242 skb = NULL;
1243 }
1244 spin_unlock_irqrestore(&q->lock, flags);
1245
1246 sk->sk_error_report(sk);
1247
1248 release:
1249 consume_skb(skb);
1250 sock_put(sk);
1251 }
1252 EXPORT_SYMBOL_GPL(sock_zerocopy_callback);
1253
sock_zerocopy_put(struct ubuf_info * uarg)1254 void sock_zerocopy_put(struct ubuf_info *uarg)
1255 {
1256 if (uarg && refcount_dec_and_test(&uarg->refcnt)) {
1257 if (uarg->callback)
1258 uarg->callback(uarg, uarg->zerocopy);
1259 else
1260 consume_skb(skb_from_uarg(uarg));
1261 }
1262 }
1263 EXPORT_SYMBOL_GPL(sock_zerocopy_put);
1264
sock_zerocopy_put_abort(struct ubuf_info * uarg,bool have_uref)1265 void sock_zerocopy_put_abort(struct ubuf_info *uarg, bool have_uref)
1266 {
1267 if (uarg) {
1268 struct sock *sk = skb_from_uarg(uarg)->sk;
1269
1270 atomic_dec(&sk->sk_zckey);
1271 uarg->len--;
1272
1273 if (have_uref)
1274 sock_zerocopy_put(uarg);
1275 }
1276 }
1277 EXPORT_SYMBOL_GPL(sock_zerocopy_put_abort);
1278
skb_zerocopy_iter_dgram(struct sk_buff * skb,struct msghdr * msg,int len)1279 int skb_zerocopy_iter_dgram(struct sk_buff *skb, struct msghdr *msg, int len)
1280 {
1281 return __zerocopy_sg_from_iter(skb->sk, skb, &msg->msg_iter, len);
1282 }
1283 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_dgram);
1284
skb_zerocopy_iter_stream(struct sock * sk,struct sk_buff * skb,struct msghdr * msg,int len,struct ubuf_info * uarg)1285 int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
1286 struct msghdr *msg, int len,
1287 struct ubuf_info *uarg)
1288 {
1289 struct ubuf_info *orig_uarg = skb_zcopy(skb);
1290 struct iov_iter orig_iter = msg->msg_iter;
1291 int err, orig_len = skb->len;
1292
1293 /* An skb can only point to one uarg. This edge case happens when
1294 * TCP appends to an skb, but zerocopy_realloc triggered a new alloc.
1295 */
1296 if (orig_uarg && uarg != orig_uarg)
1297 return -EEXIST;
1298
1299 err = __zerocopy_sg_from_iter(sk, skb, &msg->msg_iter, len);
1300 if (err == -EFAULT || (err == -EMSGSIZE && skb->len == orig_len)) {
1301 struct sock *save_sk = skb->sk;
1302
1303 /* Streams do not free skb on error. Reset to prev state. */
1304 msg->msg_iter = orig_iter;
1305 skb->sk = sk;
1306 ___pskb_trim(skb, orig_len);
1307 skb->sk = save_sk;
1308 return err;
1309 }
1310
1311 skb_zcopy_set(skb, uarg, NULL);
1312 return skb->len - orig_len;
1313 }
1314 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_stream);
1315
skb_zerocopy_clone(struct sk_buff * nskb,struct sk_buff * orig,gfp_t gfp_mask)1316 static int skb_zerocopy_clone(struct sk_buff *nskb, struct sk_buff *orig,
1317 gfp_t gfp_mask)
1318 {
1319 if (skb_zcopy(orig)) {
1320 if (skb_zcopy(nskb)) {
1321 /* !gfp_mask callers are verified to !skb_zcopy(nskb) */
1322 if (!gfp_mask) {
1323 WARN_ON_ONCE(1);
1324 return -ENOMEM;
1325 }
1326 if (skb_uarg(nskb) == skb_uarg(orig))
1327 return 0;
1328 if (skb_copy_ubufs(nskb, GFP_ATOMIC))
1329 return -EIO;
1330 }
1331 skb_zcopy_set(nskb, skb_uarg(orig), NULL);
1332 }
1333 return 0;
1334 }
1335
1336 /**
1337 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
1338 * @skb: the skb to modify
1339 * @gfp_mask: allocation priority
1340 *
1341 * This must be called on SKBTX_DEV_ZEROCOPY skb.
1342 * It will copy all frags into kernel and drop the reference
1343 * to userspace pages.
1344 *
1345 * If this function is called from an interrupt gfp_mask() must be
1346 * %GFP_ATOMIC.
1347 *
1348 * Returns 0 on success or a negative error code on failure
1349 * to allocate kernel memory to copy to.
1350 */
skb_copy_ubufs(struct sk_buff * skb,gfp_t gfp_mask)1351 int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
1352 {
1353 int num_frags = skb_shinfo(skb)->nr_frags;
1354 struct page *page, *head = NULL;
1355 int i, new_frags;
1356 u32 d_off;
1357
1358 if (skb_shared(skb) || skb_unclone(skb, gfp_mask))
1359 return -EINVAL;
1360
1361 if (!num_frags)
1362 goto release;
1363
1364 new_frags = (__skb_pagelen(skb) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1365 for (i = 0; i < new_frags; i++) {
1366 page = alloc_page(gfp_mask);
1367 if (!page) {
1368 while (head) {
1369 struct page *next = (struct page *)page_private(head);
1370 put_page(head);
1371 head = next;
1372 }
1373 return -ENOMEM;
1374 }
1375 set_page_private(page, (unsigned long)head);
1376 head = page;
1377 }
1378
1379 page = head;
1380 d_off = 0;
1381 for (i = 0; i < num_frags; i++) {
1382 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
1383 u32 p_off, p_len, copied;
1384 struct page *p;
1385 u8 *vaddr;
1386
1387 skb_frag_foreach_page(f, skb_frag_off(f), skb_frag_size(f),
1388 p, p_off, p_len, copied) {
1389 u32 copy, done = 0;
1390 vaddr = kmap_atomic(p);
1391
1392 while (done < p_len) {
1393 if (d_off == PAGE_SIZE) {
1394 d_off = 0;
1395 page = (struct page *)page_private(page);
1396 }
1397 copy = min_t(u32, PAGE_SIZE - d_off, p_len - done);
1398 memcpy(page_address(page) + d_off,
1399 vaddr + p_off + done, copy);
1400 done += copy;
1401 d_off += copy;
1402 }
1403 kunmap_atomic(vaddr);
1404 }
1405 }
1406
1407 /* skb frags release userspace buffers */
1408 for (i = 0; i < num_frags; i++)
1409 skb_frag_unref(skb, i);
1410
1411 /* skb frags point to kernel buffers */
1412 for (i = 0; i < new_frags - 1; i++) {
1413 __skb_fill_page_desc(skb, i, head, 0, PAGE_SIZE);
1414 head = (struct page *)page_private(head);
1415 }
1416 __skb_fill_page_desc(skb, new_frags - 1, head, 0, d_off);
1417 skb_shinfo(skb)->nr_frags = new_frags;
1418
1419 release:
1420 skb_zcopy_clear(skb, false);
1421 return 0;
1422 }
1423 EXPORT_SYMBOL_GPL(skb_copy_ubufs);
1424
1425 /**
1426 * skb_clone - duplicate an sk_buff
1427 * @skb: buffer to clone
1428 * @gfp_mask: allocation priority
1429 *
1430 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
1431 * copies share the same packet data but not structure. The new
1432 * buffer has a reference count of 1. If the allocation fails the
1433 * function returns %NULL otherwise the new buffer is returned.
1434 *
1435 * If this function is called from an interrupt gfp_mask() must be
1436 * %GFP_ATOMIC.
1437 */
1438
skb_clone(struct sk_buff * skb,gfp_t gfp_mask)1439 struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1440 {
1441 struct sk_buff_fclones *fclones = container_of(skb,
1442 struct sk_buff_fclones,
1443 skb1);
1444 struct sk_buff *n;
1445
1446 if (skb_orphan_frags(skb, gfp_mask))
1447 return NULL;
1448
1449 if (skb->fclone == SKB_FCLONE_ORIG &&
1450 refcount_read(&fclones->fclone_ref) == 1) {
1451 n = &fclones->skb2;
1452 refcount_set(&fclones->fclone_ref, 2);
1453 } else {
1454 if (skb_pfmemalloc(skb))
1455 gfp_mask |= __GFP_MEMALLOC;
1456
1457 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1458 if (!n)
1459 return NULL;
1460
1461 n->fclone = SKB_FCLONE_UNAVAILABLE;
1462 }
1463
1464 return __skb_clone(n, skb);
1465 }
1466 EXPORT_SYMBOL(skb_clone);
1467
skb_headers_offset_update(struct sk_buff * skb,int off)1468 void skb_headers_offset_update(struct sk_buff *skb, int off)
1469 {
1470 /* Only adjust this if it actually is csum_start rather than csum */
1471 if (skb->ip_summed == CHECKSUM_PARTIAL)
1472 skb->csum_start += off;
1473 /* {transport,network,mac}_header and tail are relative to skb->head */
1474 skb->transport_header += off;
1475 skb->network_header += off;
1476 if (skb_mac_header_was_set(skb))
1477 skb->mac_header += off;
1478 skb->inner_transport_header += off;
1479 skb->inner_network_header += off;
1480 skb->inner_mac_header += off;
1481 }
1482 EXPORT_SYMBOL(skb_headers_offset_update);
1483
skb_copy_header(struct sk_buff * new,const struct sk_buff * old)1484 void skb_copy_header(struct sk_buff *new, const struct sk_buff *old)
1485 {
1486 __copy_skb_header(new, old);
1487
1488 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1489 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1490 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
1491 }
1492 EXPORT_SYMBOL(skb_copy_header);
1493
skb_alloc_rx_flag(const struct sk_buff * skb)1494 static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1495 {
1496 if (skb_pfmemalloc(skb))
1497 return SKB_ALLOC_RX;
1498 return 0;
1499 }
1500
1501 /**
1502 * skb_copy - create private copy of an sk_buff
1503 * @skb: buffer to copy
1504 * @gfp_mask: allocation priority
1505 *
1506 * Make a copy of both an &sk_buff and its data. This is used when the
1507 * caller wishes to modify the data and needs a private copy of the
1508 * data to alter. Returns %NULL on failure or the pointer to the buffer
1509 * on success. The returned buffer has a reference count of 1.
1510 *
1511 * As by-product this function converts non-linear &sk_buff to linear
1512 * one, so that &sk_buff becomes completely private and caller is allowed
1513 * to modify all the data of returned buffer. This means that this
1514 * function is not recommended for use in circumstances when only
1515 * header is going to be modified. Use pskb_copy() instead.
1516 */
1517
skb_copy(const struct sk_buff * skb,gfp_t gfp_mask)1518 struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
1519 {
1520 int headerlen = skb_headroom(skb);
1521 unsigned int size = skb_end_offset(skb) + skb->data_len;
1522 struct sk_buff *n = __alloc_skb(size, gfp_mask,
1523 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
1524
1525 if (!n)
1526 return NULL;
1527
1528 /* Set the data pointer */
1529 skb_reserve(n, headerlen);
1530 /* Set the tail pointer and length */
1531 skb_put(n, skb->len);
1532
1533 BUG_ON(skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len));
1534
1535 skb_copy_header(n, skb);
1536 return n;
1537 }
1538 EXPORT_SYMBOL(skb_copy);
1539
1540 /**
1541 * __pskb_copy_fclone - create copy of an sk_buff with private head.
1542 * @skb: buffer to copy
1543 * @headroom: headroom of new skb
1544 * @gfp_mask: allocation priority
1545 * @fclone: if true allocate the copy of the skb from the fclone
1546 * cache instead of the head cache; it is recommended to set this
1547 * to true for the cases where the copy will likely be cloned
1548 *
1549 * Make a copy of both an &sk_buff and part of its data, located
1550 * in header. Fragmented data remain shared. This is used when
1551 * the caller wishes to modify only header of &sk_buff and needs
1552 * private copy of the header to alter. Returns %NULL on failure
1553 * or the pointer to the buffer on success.
1554 * The returned buffer has a reference count of 1.
1555 */
1556
__pskb_copy_fclone(struct sk_buff * skb,int headroom,gfp_t gfp_mask,bool fclone)1557 struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1558 gfp_t gfp_mask, bool fclone)
1559 {
1560 unsigned int size = skb_headlen(skb) + headroom;
1561 int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1562 struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
1563
1564 if (!n)
1565 goto out;
1566
1567 /* Set the data pointer */
1568 skb_reserve(n, headroom);
1569 /* Set the tail pointer and length */
1570 skb_put(n, skb_headlen(skb));
1571 /* Copy the bytes */
1572 skb_copy_from_linear_data(skb, n->data, n->len);
1573
1574 n->truesize += skb->data_len;
1575 n->data_len = skb->data_len;
1576 n->len = skb->len;
1577
1578 if (skb_shinfo(skb)->nr_frags) {
1579 int i;
1580
1581 if (skb_orphan_frags(skb, gfp_mask) ||
1582 skb_zerocopy_clone(n, skb, gfp_mask)) {
1583 kfree_skb(n);
1584 n = NULL;
1585 goto out;
1586 }
1587 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1588 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
1589 skb_frag_ref(skb, i);
1590 }
1591 skb_shinfo(n)->nr_frags = i;
1592 }
1593
1594 if (skb_has_frag_list(skb)) {
1595 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1596 skb_clone_fraglist(n);
1597 }
1598
1599 skb_copy_header(n, skb);
1600 out:
1601 return n;
1602 }
1603 EXPORT_SYMBOL(__pskb_copy_fclone);
1604
1605 /**
1606 * pskb_expand_head - reallocate header of &sk_buff
1607 * @skb: buffer to reallocate
1608 * @nhead: room to add at head
1609 * @ntail: room to add at tail
1610 * @gfp_mask: allocation priority
1611 *
1612 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1613 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
1614 * reference count of 1. Returns zero in the case of success or error,
1615 * if expansion failed. In the last case, &sk_buff is not changed.
1616 *
1617 * All the pointers pointing into skb header may change and must be
1618 * reloaded after call to this function.
1619 */
1620
pskb_expand_head(struct sk_buff * skb,int nhead,int ntail,gfp_t gfp_mask)1621 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
1622 gfp_t gfp_mask)
1623 {
1624 int i, osize = skb_end_offset(skb);
1625 int size = osize + nhead + ntail;
1626 long off;
1627 u8 *data;
1628
1629 BUG_ON(nhead < 0);
1630
1631 BUG_ON(skb_shared(skb));
1632
1633 size = SKB_DATA_ALIGN(size);
1634
1635 if (skb_pfmemalloc(skb))
1636 gfp_mask |= __GFP_MEMALLOC;
1637 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1638 gfp_mask, NUMA_NO_NODE, NULL);
1639 if (!data)
1640 goto nodata;
1641 size = SKB_WITH_OVERHEAD(ksize(data));
1642
1643 /* Copy only real data... and, alas, header. This should be
1644 * optimized for the cases when header is void.
1645 */
1646 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1647
1648 memcpy((struct skb_shared_info *)(data + size),
1649 skb_shinfo(skb),
1650 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
1651
1652 /*
1653 * if shinfo is shared we must drop the old head gracefully, but if it
1654 * is not we can just drop the old head and let the existing refcount
1655 * be since all we did is relocate the values
1656 */
1657 if (skb_cloned(skb)) {
1658 if (skb_orphan_frags(skb, gfp_mask))
1659 goto nofrags;
1660 if (skb_zcopy(skb))
1661 refcount_inc(&skb_uarg(skb)->refcnt);
1662 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1663 skb_frag_ref(skb, i);
1664
1665 if (skb_has_frag_list(skb))
1666 skb_clone_fraglist(skb);
1667
1668 skb_release_data(skb);
1669 } else {
1670 skb_free_head(skb);
1671 }
1672 off = (data + nhead) - skb->head;
1673
1674 skb->head = data;
1675 skb->head_frag = 0;
1676 skb->data += off;
1677 #ifdef NET_SKBUFF_DATA_USES_OFFSET
1678 skb->end = size;
1679 off = nhead;
1680 #else
1681 skb->end = skb->head + size;
1682 #endif
1683 skb->tail += off;
1684 skb_headers_offset_update(skb, nhead);
1685 skb->cloned = 0;
1686 skb->hdr_len = 0;
1687 skb->nohdr = 0;
1688 atomic_set(&skb_shinfo(skb)->dataref, 1);
1689
1690 skb_metadata_clear(skb);
1691
1692 /* It is not generally safe to change skb->truesize.
1693 * For the moment, we really care of rx path, or
1694 * when skb is orphaned (not attached to a socket).
1695 */
1696 if (!skb->sk || skb->destructor == sock_edemux)
1697 skb->truesize += size - osize;
1698
1699 return 0;
1700
1701 nofrags:
1702 kfree(data);
1703 nodata:
1704 return -ENOMEM;
1705 }
1706 EXPORT_SYMBOL(pskb_expand_head);
1707
1708 /* Make private copy of skb with writable head and some headroom */
1709
skb_realloc_headroom(struct sk_buff * skb,unsigned int headroom)1710 struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1711 {
1712 struct sk_buff *skb2;
1713 int delta = headroom - skb_headroom(skb);
1714
1715 if (delta <= 0)
1716 skb2 = pskb_copy(skb, GFP_ATOMIC);
1717 else {
1718 skb2 = skb_clone(skb, GFP_ATOMIC);
1719 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1720 GFP_ATOMIC)) {
1721 kfree_skb(skb2);
1722 skb2 = NULL;
1723 }
1724 }
1725 return skb2;
1726 }
1727 EXPORT_SYMBOL(skb_realloc_headroom);
1728
1729 /**
1730 * skb_copy_expand - copy and expand sk_buff
1731 * @skb: buffer to copy
1732 * @newheadroom: new free bytes at head
1733 * @newtailroom: new free bytes at tail
1734 * @gfp_mask: allocation priority
1735 *
1736 * Make a copy of both an &sk_buff and its data and while doing so
1737 * allocate additional space.
1738 *
1739 * This is used when the caller wishes to modify the data and needs a
1740 * private copy of the data to alter as well as more space for new fields.
1741 * Returns %NULL on failure or the pointer to the buffer
1742 * on success. The returned buffer has a reference count of 1.
1743 *
1744 * You must pass %GFP_ATOMIC as the allocation priority if this function
1745 * is called from an interrupt.
1746 */
skb_copy_expand(const struct sk_buff * skb,int newheadroom,int newtailroom,gfp_t gfp_mask)1747 struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
1748 int newheadroom, int newtailroom,
1749 gfp_t gfp_mask)
1750 {
1751 /*
1752 * Allocate the copy buffer
1753 */
1754 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1755 gfp_mask, skb_alloc_rx_flag(skb),
1756 NUMA_NO_NODE);
1757 int oldheadroom = skb_headroom(skb);
1758 int head_copy_len, head_copy_off;
1759
1760 if (!n)
1761 return NULL;
1762
1763 skb_reserve(n, newheadroom);
1764
1765 /* Set the tail pointer and length */
1766 skb_put(n, skb->len);
1767
1768 head_copy_len = oldheadroom;
1769 head_copy_off = 0;
1770 if (newheadroom <= head_copy_len)
1771 head_copy_len = newheadroom;
1772 else
1773 head_copy_off = newheadroom - head_copy_len;
1774
1775 /* Copy the linear header and data. */
1776 BUG_ON(skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1777 skb->len + head_copy_len));
1778
1779 skb_copy_header(n, skb);
1780
1781 skb_headers_offset_update(n, newheadroom - oldheadroom);
1782
1783 return n;
1784 }
1785 EXPORT_SYMBOL(skb_copy_expand);
1786
1787 /**
1788 * __skb_pad - zero pad the tail of an skb
1789 * @skb: buffer to pad
1790 * @pad: space to pad
1791 * @free_on_error: free buffer on error
1792 *
1793 * Ensure that a buffer is followed by a padding area that is zero
1794 * filled. Used by network drivers which may DMA or transfer data
1795 * beyond the buffer end onto the wire.
1796 *
1797 * May return error in out of memory cases. The skb is freed on error
1798 * if @free_on_error is true.
1799 */
1800
__skb_pad(struct sk_buff * skb,int pad,bool free_on_error)1801 int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error)
1802 {
1803 int err;
1804 int ntail;
1805
1806 /* If the skbuff is non linear tailroom is always zero.. */
1807 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
1808 memset(skb->data+skb->len, 0, pad);
1809 return 0;
1810 }
1811
1812 ntail = skb->data_len + pad - (skb->end - skb->tail);
1813 if (likely(skb_cloned(skb) || ntail > 0)) {
1814 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1815 if (unlikely(err))
1816 goto free_skb;
1817 }
1818
1819 /* FIXME: The use of this function with non-linear skb's really needs
1820 * to be audited.
1821 */
1822 err = skb_linearize(skb);
1823 if (unlikely(err))
1824 goto free_skb;
1825
1826 memset(skb->data + skb->len, 0, pad);
1827 return 0;
1828
1829 free_skb:
1830 if (free_on_error)
1831 kfree_skb(skb);
1832 return err;
1833 }
1834 EXPORT_SYMBOL(__skb_pad);
1835
1836 /**
1837 * pskb_put - add data to the tail of a potentially fragmented buffer
1838 * @skb: start of the buffer to use
1839 * @tail: tail fragment of the buffer to use
1840 * @len: amount of data to add
1841 *
1842 * This function extends the used data area of the potentially
1843 * fragmented buffer. @tail must be the last fragment of @skb -- or
1844 * @skb itself. If this would exceed the total buffer size the kernel
1845 * will panic. A pointer to the first byte of the extra data is
1846 * returned.
1847 */
1848
pskb_put(struct sk_buff * skb,struct sk_buff * tail,int len)1849 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1850 {
1851 if (tail != skb) {
1852 skb->data_len += len;
1853 skb->len += len;
1854 }
1855 return skb_put(tail, len);
1856 }
1857 EXPORT_SYMBOL_GPL(pskb_put);
1858
1859 /**
1860 * skb_put - add data to a buffer
1861 * @skb: buffer to use
1862 * @len: amount of data to add
1863 *
1864 * This function extends the used data area of the buffer. If this would
1865 * exceed the total buffer size the kernel will panic. A pointer to the
1866 * first byte of the extra data is returned.
1867 */
skb_put(struct sk_buff * skb,unsigned int len)1868 void *skb_put(struct sk_buff *skb, unsigned int len)
1869 {
1870 void *tmp = skb_tail_pointer(skb);
1871 SKB_LINEAR_ASSERT(skb);
1872 skb->tail += len;
1873 skb->len += len;
1874 if (unlikely(skb->tail > skb->end))
1875 skb_over_panic(skb, len, __builtin_return_address(0));
1876 return tmp;
1877 }
1878 EXPORT_SYMBOL(skb_put);
1879
1880 /**
1881 * skb_push - add data to the start of a buffer
1882 * @skb: buffer to use
1883 * @len: amount of data to add
1884 *
1885 * This function extends the used data area of the buffer at the buffer
1886 * start. If this would exceed the total buffer headroom the kernel will
1887 * panic. A pointer to the first byte of the extra data is returned.
1888 */
skb_push(struct sk_buff * skb,unsigned int len)1889 void *skb_push(struct sk_buff *skb, unsigned int len)
1890 {
1891 skb->data -= len;
1892 skb->len += len;
1893 if (unlikely(skb->data < skb->head))
1894 skb_under_panic(skb, len, __builtin_return_address(0));
1895 return skb->data;
1896 }
1897 EXPORT_SYMBOL(skb_push);
1898
1899 /**
1900 * skb_pull - remove data from the start of a buffer
1901 * @skb: buffer to use
1902 * @len: amount of data to remove
1903 *
1904 * This function removes data from the start of a buffer, returning
1905 * the memory to the headroom. A pointer to the next data in the buffer
1906 * is returned. Once the data has been pulled future pushes will overwrite
1907 * the old data.
1908 */
skb_pull(struct sk_buff * skb,unsigned int len)1909 void *skb_pull(struct sk_buff *skb, unsigned int len)
1910 {
1911 return skb_pull_inline(skb, len);
1912 }
1913 EXPORT_SYMBOL(skb_pull);
1914
1915 /**
1916 * skb_trim - remove end from a buffer
1917 * @skb: buffer to alter
1918 * @len: new length
1919 *
1920 * Cut the length of a buffer down by removing data from the tail. If
1921 * the buffer is already under the length specified it is not modified.
1922 * The skb must be linear.
1923 */
skb_trim(struct sk_buff * skb,unsigned int len)1924 void skb_trim(struct sk_buff *skb, unsigned int len)
1925 {
1926 if (skb->len > len)
1927 __skb_trim(skb, len);
1928 }
1929 EXPORT_SYMBOL(skb_trim);
1930
1931 /* Trims skb to length len. It can change skb pointers.
1932 */
1933
___pskb_trim(struct sk_buff * skb,unsigned int len)1934 int ___pskb_trim(struct sk_buff *skb, unsigned int len)
1935 {
1936 struct sk_buff **fragp;
1937 struct sk_buff *frag;
1938 int offset = skb_headlen(skb);
1939 int nfrags = skb_shinfo(skb)->nr_frags;
1940 int i;
1941 int err;
1942
1943 if (skb_cloned(skb) &&
1944 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1945 return err;
1946
1947 i = 0;
1948 if (offset >= len)
1949 goto drop_pages;
1950
1951 for (; i < nfrags; i++) {
1952 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
1953
1954 if (end < len) {
1955 offset = end;
1956 continue;
1957 }
1958
1959 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
1960
1961 drop_pages:
1962 skb_shinfo(skb)->nr_frags = i;
1963
1964 for (; i < nfrags; i++)
1965 skb_frag_unref(skb, i);
1966
1967 if (skb_has_frag_list(skb))
1968 skb_drop_fraglist(skb);
1969 goto done;
1970 }
1971
1972 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1973 fragp = &frag->next) {
1974 int end = offset + frag->len;
1975
1976 if (skb_shared(frag)) {
1977 struct sk_buff *nfrag;
1978
1979 nfrag = skb_clone(frag, GFP_ATOMIC);
1980 if (unlikely(!nfrag))
1981 return -ENOMEM;
1982
1983 nfrag->next = frag->next;
1984 consume_skb(frag);
1985 frag = nfrag;
1986 *fragp = frag;
1987 }
1988
1989 if (end < len) {
1990 offset = end;
1991 continue;
1992 }
1993
1994 if (end > len &&
1995 unlikely((err = pskb_trim(frag, len - offset))))
1996 return err;
1997
1998 if (frag->next)
1999 skb_drop_list(&frag->next);
2000 break;
2001 }
2002
2003 done:
2004 if (len > skb_headlen(skb)) {
2005 skb->data_len -= skb->len - len;
2006 skb->len = len;
2007 } else {
2008 skb->len = len;
2009 skb->data_len = 0;
2010 skb_set_tail_pointer(skb, len);
2011 }
2012
2013 if (!skb->sk || skb->destructor == sock_edemux)
2014 skb_condense(skb);
2015 return 0;
2016 }
2017 EXPORT_SYMBOL(___pskb_trim);
2018
2019 /* Note : use pskb_trim_rcsum() instead of calling this directly
2020 */
pskb_trim_rcsum_slow(struct sk_buff * skb,unsigned int len)2021 int pskb_trim_rcsum_slow(struct sk_buff *skb, unsigned int len)
2022 {
2023 if (skb->ip_summed == CHECKSUM_COMPLETE) {
2024 int delta = skb->len - len;
2025
2026 skb->csum = csum_block_sub(skb->csum,
2027 skb_checksum(skb, len, delta, 0),
2028 len);
2029 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
2030 int hdlen = (len > skb_headlen(skb)) ? skb_headlen(skb) : len;
2031 int offset = skb_checksum_start_offset(skb) + skb->csum_offset;
2032
2033 if (offset + sizeof(__sum16) > hdlen)
2034 return -EINVAL;
2035 }
2036 return __pskb_trim(skb, len);
2037 }
2038 EXPORT_SYMBOL(pskb_trim_rcsum_slow);
2039
2040 /**
2041 * __pskb_pull_tail - advance tail of skb header
2042 * @skb: buffer to reallocate
2043 * @delta: number of bytes to advance tail
2044 *
2045 * The function makes a sense only on a fragmented &sk_buff,
2046 * it expands header moving its tail forward and copying necessary
2047 * data from fragmented part.
2048 *
2049 * &sk_buff MUST have reference count of 1.
2050 *
2051 * Returns %NULL (and &sk_buff does not change) if pull failed
2052 * or value of new tail of skb in the case of success.
2053 *
2054 * All the pointers pointing into skb header may change and must be
2055 * reloaded after call to this function.
2056 */
2057
2058 /* Moves tail of skb head forward, copying data from fragmented part,
2059 * when it is necessary.
2060 * 1. It may fail due to malloc failure.
2061 * 2. It may change skb pointers.
2062 *
2063 * It is pretty complicated. Luckily, it is called only in exceptional cases.
2064 */
__pskb_pull_tail(struct sk_buff * skb,int delta)2065 void *__pskb_pull_tail(struct sk_buff *skb, int delta)
2066 {
2067 /* If skb has not enough free space at tail, get new one
2068 * plus 128 bytes for future expansions. If we have enough
2069 * room at tail, reallocate without expansion only if skb is cloned.
2070 */
2071 int i, k, eat = (skb->tail + delta) - skb->end;
2072
2073 if (eat > 0 || skb_cloned(skb)) {
2074 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
2075 GFP_ATOMIC))
2076 return NULL;
2077 }
2078
2079 BUG_ON(skb_copy_bits(skb, skb_headlen(skb),
2080 skb_tail_pointer(skb), delta));
2081
2082 /* Optimization: no fragments, no reasons to preestimate
2083 * size of pulled pages. Superb.
2084 */
2085 if (!skb_has_frag_list(skb))
2086 goto pull_pages;
2087
2088 /* Estimate size of pulled pages. */
2089 eat = delta;
2090 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2091 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
2092
2093 if (size >= eat)
2094 goto pull_pages;
2095 eat -= size;
2096 }
2097
2098 /* If we need update frag list, we are in troubles.
2099 * Certainly, it is possible to add an offset to skb data,
2100 * but taking into account that pulling is expected to
2101 * be very rare operation, it is worth to fight against
2102 * further bloating skb head and crucify ourselves here instead.
2103 * Pure masohism, indeed. 8)8)
2104 */
2105 if (eat) {
2106 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2107 struct sk_buff *clone = NULL;
2108 struct sk_buff *insp = NULL;
2109
2110 do {
2111 if (list->len <= eat) {
2112 /* Eaten as whole. */
2113 eat -= list->len;
2114 list = list->next;
2115 insp = list;
2116 } else {
2117 /* Eaten partially. */
2118 if (skb_is_gso(skb) && !list->head_frag &&
2119 skb_headlen(list))
2120 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
2121
2122 if (skb_shared(list)) {
2123 /* Sucks! We need to fork list. :-( */
2124 clone = skb_clone(list, GFP_ATOMIC);
2125 if (!clone)
2126 return NULL;
2127 insp = list->next;
2128 list = clone;
2129 } else {
2130 /* This may be pulled without
2131 * problems. */
2132 insp = list;
2133 }
2134 if (!pskb_pull(list, eat)) {
2135 kfree_skb(clone);
2136 return NULL;
2137 }
2138 break;
2139 }
2140 } while (eat);
2141
2142 /* Free pulled out fragments. */
2143 while ((list = skb_shinfo(skb)->frag_list) != insp) {
2144 skb_shinfo(skb)->frag_list = list->next;
2145 consume_skb(list);
2146 }
2147 /* And insert new clone at head. */
2148 if (clone) {
2149 clone->next = list;
2150 skb_shinfo(skb)->frag_list = clone;
2151 }
2152 }
2153 /* Success! Now we may commit changes to skb data. */
2154
2155 pull_pages:
2156 eat = delta;
2157 k = 0;
2158 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2159 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
2160
2161 if (size <= eat) {
2162 skb_frag_unref(skb, i);
2163 eat -= size;
2164 } else {
2165 skb_frag_t *frag = &skb_shinfo(skb)->frags[k];
2166
2167 *frag = skb_shinfo(skb)->frags[i];
2168 if (eat) {
2169 skb_frag_off_add(frag, eat);
2170 skb_frag_size_sub(frag, eat);
2171 if (!i)
2172 goto end;
2173 eat = 0;
2174 }
2175 k++;
2176 }
2177 }
2178 skb_shinfo(skb)->nr_frags = k;
2179
2180 end:
2181 skb->tail += delta;
2182 skb->data_len -= delta;
2183
2184 if (!skb->data_len)
2185 skb_zcopy_clear(skb, false);
2186
2187 return skb_tail_pointer(skb);
2188 }
2189 EXPORT_SYMBOL(__pskb_pull_tail);
2190
2191 /**
2192 * skb_copy_bits - copy bits from skb to kernel buffer
2193 * @skb: source skb
2194 * @offset: offset in source
2195 * @to: destination buffer
2196 * @len: number of bytes to copy
2197 *
2198 * Copy the specified number of bytes from the source skb to the
2199 * destination buffer.
2200 *
2201 * CAUTION ! :
2202 * If its prototype is ever changed,
2203 * check arch/{*}/net/{*}.S files,
2204 * since it is called from BPF assembly code.
2205 */
skb_copy_bits(const struct sk_buff * skb,int offset,void * to,int len)2206 int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
2207 {
2208 int start = skb_headlen(skb);
2209 struct sk_buff *frag_iter;
2210 int i, copy;
2211
2212 if (offset > (int)skb->len - len)
2213 goto fault;
2214
2215 /* Copy header. */
2216 if ((copy = start - offset) > 0) {
2217 if (copy > len)
2218 copy = len;
2219 skb_copy_from_linear_data_offset(skb, offset, to, copy);
2220 if ((len -= copy) == 0)
2221 return 0;
2222 offset += copy;
2223 to += copy;
2224 }
2225
2226 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2227 int end;
2228 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
2229
2230 WARN_ON(start > offset + len);
2231
2232 end = start + skb_frag_size(f);
2233 if ((copy = end - offset) > 0) {
2234 u32 p_off, p_len, copied;
2235 struct page *p;
2236 u8 *vaddr;
2237
2238 if (copy > len)
2239 copy = len;
2240
2241 skb_frag_foreach_page(f,
2242 skb_frag_off(f) + offset - start,
2243 copy, p, p_off, p_len, copied) {
2244 vaddr = kmap_atomic(p);
2245 memcpy(to + copied, vaddr + p_off, p_len);
2246 kunmap_atomic(vaddr);
2247 }
2248
2249 if ((len -= copy) == 0)
2250 return 0;
2251 offset += copy;
2252 to += copy;
2253 }
2254 start = end;
2255 }
2256
2257 skb_walk_frags(skb, frag_iter) {
2258 int end;
2259
2260 WARN_ON(start > offset + len);
2261
2262 end = start + frag_iter->len;
2263 if ((copy = end - offset) > 0) {
2264 if (copy > len)
2265 copy = len;
2266 if (skb_copy_bits(frag_iter, offset - start, to, copy))
2267 goto fault;
2268 if ((len -= copy) == 0)
2269 return 0;
2270 offset += copy;
2271 to += copy;
2272 }
2273 start = end;
2274 }
2275
2276 if (!len)
2277 return 0;
2278
2279 fault:
2280 return -EFAULT;
2281 }
2282 EXPORT_SYMBOL(skb_copy_bits);
2283
2284 /*
2285 * Callback from splice_to_pipe(), if we need to release some pages
2286 * at the end of the spd in case we error'ed out in filling the pipe.
2287 */
sock_spd_release(struct splice_pipe_desc * spd,unsigned int i)2288 static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
2289 {
2290 put_page(spd->pages[i]);
2291 }
2292
linear_to_page(struct page * page,unsigned int * len,unsigned int * offset,struct sock * sk)2293 static struct page *linear_to_page(struct page *page, unsigned int *len,
2294 unsigned int *offset,
2295 struct sock *sk)
2296 {
2297 struct page_frag *pfrag = sk_page_frag(sk);
2298
2299 if (!sk_page_frag_refill(sk, pfrag))
2300 return NULL;
2301
2302 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
2303
2304 memcpy(page_address(pfrag->page) + pfrag->offset,
2305 page_address(page) + *offset, *len);
2306 *offset = pfrag->offset;
2307 pfrag->offset += *len;
2308
2309 return pfrag->page;
2310 }
2311
spd_can_coalesce(const struct splice_pipe_desc * spd,struct page * page,unsigned int offset)2312 static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
2313 struct page *page,
2314 unsigned int offset)
2315 {
2316 return spd->nr_pages &&
2317 spd->pages[spd->nr_pages - 1] == page &&
2318 (spd->partial[spd->nr_pages - 1].offset +
2319 spd->partial[spd->nr_pages - 1].len == offset);
2320 }
2321
2322 /*
2323 * Fill page/offset/length into spd, if it can hold more pages.
2324 */
spd_fill_page(struct splice_pipe_desc * spd,struct pipe_inode_info * pipe,struct page * page,unsigned int * len,unsigned int offset,bool linear,struct sock * sk)2325 static bool spd_fill_page(struct splice_pipe_desc *spd,
2326 struct pipe_inode_info *pipe, struct page *page,
2327 unsigned int *len, unsigned int offset,
2328 bool linear,
2329 struct sock *sk)
2330 {
2331 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
2332 return true;
2333
2334 if (linear) {
2335 page = linear_to_page(page, len, &offset, sk);
2336 if (!page)
2337 return true;
2338 }
2339 if (spd_can_coalesce(spd, page, offset)) {
2340 spd->partial[spd->nr_pages - 1].len += *len;
2341 return false;
2342 }
2343 get_page(page);
2344 spd->pages[spd->nr_pages] = page;
2345 spd->partial[spd->nr_pages].len = *len;
2346 spd->partial[spd->nr_pages].offset = offset;
2347 spd->nr_pages++;
2348
2349 return false;
2350 }
2351
__splice_segment(struct page * page,unsigned int poff,unsigned int plen,unsigned int * off,unsigned int * len,struct splice_pipe_desc * spd,bool linear,struct sock * sk,struct pipe_inode_info * pipe)2352 static bool __splice_segment(struct page *page, unsigned int poff,
2353 unsigned int plen, unsigned int *off,
2354 unsigned int *len,
2355 struct splice_pipe_desc *spd, bool linear,
2356 struct sock *sk,
2357 struct pipe_inode_info *pipe)
2358 {
2359 if (!*len)
2360 return true;
2361
2362 /* skip this segment if already processed */
2363 if (*off >= plen) {
2364 *off -= plen;
2365 return false;
2366 }
2367
2368 /* ignore any bits we already processed */
2369 poff += *off;
2370 plen -= *off;
2371 *off = 0;
2372
2373 do {
2374 unsigned int flen = min(*len, plen);
2375
2376 if (spd_fill_page(spd, pipe, page, &flen, poff,
2377 linear, sk))
2378 return true;
2379 poff += flen;
2380 plen -= flen;
2381 *len -= flen;
2382 } while (*len && plen);
2383
2384 return false;
2385 }
2386
2387 /*
2388 * Map linear and fragment data from the skb to spd. It reports true if the
2389 * pipe is full or if we already spliced the requested length.
2390 */
__skb_splice_bits(struct sk_buff * skb,struct pipe_inode_info * pipe,unsigned int * offset,unsigned int * len,struct splice_pipe_desc * spd,struct sock * sk)2391 static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
2392 unsigned int *offset, unsigned int *len,
2393 struct splice_pipe_desc *spd, struct sock *sk)
2394 {
2395 int seg;
2396 struct sk_buff *iter;
2397
2398 /* map the linear part :
2399 * If skb->head_frag is set, this 'linear' part is backed by a
2400 * fragment, and if the head is not shared with any clones then
2401 * we can avoid a copy since we own the head portion of this page.
2402 */
2403 if (__splice_segment(virt_to_page(skb->data),
2404 (unsigned long) skb->data & (PAGE_SIZE - 1),
2405 skb_headlen(skb),
2406 offset, len, spd,
2407 skb_head_is_locked(skb),
2408 sk, pipe))
2409 return true;
2410
2411 /*
2412 * then map the fragments
2413 */
2414 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
2415 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
2416
2417 if (__splice_segment(skb_frag_page(f),
2418 skb_frag_off(f), skb_frag_size(f),
2419 offset, len, spd, false, sk, pipe))
2420 return true;
2421 }
2422
2423 skb_walk_frags(skb, iter) {
2424 if (*offset >= iter->len) {
2425 *offset -= iter->len;
2426 continue;
2427 }
2428 /* __skb_splice_bits() only fails if the output has no room
2429 * left, so no point in going over the frag_list for the error
2430 * case.
2431 */
2432 if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
2433 return true;
2434 }
2435
2436 return false;
2437 }
2438
2439 /*
2440 * Map data from the skb to a pipe. Should handle both the linear part,
2441 * the fragments, and the frag list.
2442 */
skb_splice_bits(struct sk_buff * skb,struct sock * sk,unsigned int offset,struct pipe_inode_info * pipe,unsigned int tlen,unsigned int flags)2443 int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
2444 struct pipe_inode_info *pipe, unsigned int tlen,
2445 unsigned int flags)
2446 {
2447 struct partial_page partial[MAX_SKB_FRAGS];
2448 struct page *pages[MAX_SKB_FRAGS];
2449 struct splice_pipe_desc spd = {
2450 .pages = pages,
2451 .partial = partial,
2452 .nr_pages_max = MAX_SKB_FRAGS,
2453 .ops = &nosteal_pipe_buf_ops,
2454 .spd_release = sock_spd_release,
2455 };
2456 int ret = 0;
2457
2458 __skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
2459
2460 if (spd.nr_pages)
2461 ret = splice_to_pipe(pipe, &spd);
2462
2463 return ret;
2464 }
2465 EXPORT_SYMBOL_GPL(skb_splice_bits);
2466
2467 /* Send skb data on a socket. Socket must be locked. */
skb_send_sock_locked(struct sock * sk,struct sk_buff * skb,int offset,int len)2468 int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
2469 int len)
2470 {
2471 unsigned int orig_len = len;
2472 struct sk_buff *head = skb;
2473 unsigned short fragidx;
2474 int slen, ret;
2475
2476 do_frag_list:
2477
2478 /* Deal with head data */
2479 while (offset < skb_headlen(skb) && len) {
2480 struct kvec kv;
2481 struct msghdr msg;
2482
2483 slen = min_t(int, len, skb_headlen(skb) - offset);
2484 kv.iov_base = skb->data + offset;
2485 kv.iov_len = slen;
2486 memset(&msg, 0, sizeof(msg));
2487 msg.msg_flags = MSG_DONTWAIT;
2488
2489 ret = kernel_sendmsg_locked(sk, &msg, &kv, 1, slen);
2490 if (ret <= 0)
2491 goto error;
2492
2493 offset += ret;
2494 len -= ret;
2495 }
2496
2497 /* All the data was skb head? */
2498 if (!len)
2499 goto out;
2500
2501 /* Make offset relative to start of frags */
2502 offset -= skb_headlen(skb);
2503
2504 /* Find where we are in frag list */
2505 for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2506 skb_frag_t *frag = &skb_shinfo(skb)->frags[fragidx];
2507
2508 if (offset < skb_frag_size(frag))
2509 break;
2510
2511 offset -= skb_frag_size(frag);
2512 }
2513
2514 for (; len && fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2515 skb_frag_t *frag = &skb_shinfo(skb)->frags[fragidx];
2516
2517 slen = min_t(size_t, len, skb_frag_size(frag) - offset);
2518
2519 while (slen) {
2520 ret = kernel_sendpage_locked(sk, skb_frag_page(frag),
2521 skb_frag_off(frag) + offset,
2522 slen, MSG_DONTWAIT);
2523 if (ret <= 0)
2524 goto error;
2525
2526 len -= ret;
2527 offset += ret;
2528 slen -= ret;
2529 }
2530
2531 offset = 0;
2532 }
2533
2534 if (len) {
2535 /* Process any frag lists */
2536
2537 if (skb == head) {
2538 if (skb_has_frag_list(skb)) {
2539 skb = skb_shinfo(skb)->frag_list;
2540 goto do_frag_list;
2541 }
2542 } else if (skb->next) {
2543 skb = skb->next;
2544 goto do_frag_list;
2545 }
2546 }
2547
2548 out:
2549 return orig_len - len;
2550
2551 error:
2552 return orig_len == len ? ret : orig_len - len;
2553 }
2554 EXPORT_SYMBOL_GPL(skb_send_sock_locked);
2555
2556 /**
2557 * skb_store_bits - store bits from kernel buffer to skb
2558 * @skb: destination buffer
2559 * @offset: offset in destination
2560 * @from: source buffer
2561 * @len: number of bytes to copy
2562 *
2563 * Copy the specified number of bytes from the source buffer to the
2564 * destination skb. This function handles all the messy bits of
2565 * traversing fragment lists and such.
2566 */
2567
skb_store_bits(struct sk_buff * skb,int offset,const void * from,int len)2568 int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
2569 {
2570 int start = skb_headlen(skb);
2571 struct sk_buff *frag_iter;
2572 int i, copy;
2573
2574 if (offset > (int)skb->len - len)
2575 goto fault;
2576
2577 if ((copy = start - offset) > 0) {
2578 if (copy > len)
2579 copy = len;
2580 skb_copy_to_linear_data_offset(skb, offset, from, copy);
2581 if ((len -= copy) == 0)
2582 return 0;
2583 offset += copy;
2584 from += copy;
2585 }
2586
2587 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2588 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2589 int end;
2590
2591 WARN_ON(start > offset + len);
2592
2593 end = start + skb_frag_size(frag);
2594 if ((copy = end - offset) > 0) {
2595 u32 p_off, p_len, copied;
2596 struct page *p;
2597 u8 *vaddr;
2598
2599 if (copy > len)
2600 copy = len;
2601
2602 skb_frag_foreach_page(frag,
2603 skb_frag_off(frag) + offset - start,
2604 copy, p, p_off, p_len, copied) {
2605 vaddr = kmap_atomic(p);
2606 memcpy(vaddr + p_off, from + copied, p_len);
2607 kunmap_atomic(vaddr);
2608 }
2609
2610 if ((len -= copy) == 0)
2611 return 0;
2612 offset += copy;
2613 from += copy;
2614 }
2615 start = end;
2616 }
2617
2618 skb_walk_frags(skb, frag_iter) {
2619 int end;
2620
2621 WARN_ON(start > offset + len);
2622
2623 end = start + frag_iter->len;
2624 if ((copy = end - offset) > 0) {
2625 if (copy > len)
2626 copy = len;
2627 if (skb_store_bits(frag_iter, offset - start,
2628 from, copy))
2629 goto fault;
2630 if ((len -= copy) == 0)
2631 return 0;
2632 offset += copy;
2633 from += copy;
2634 }
2635 start = end;
2636 }
2637 if (!len)
2638 return 0;
2639
2640 fault:
2641 return -EFAULT;
2642 }
2643 EXPORT_SYMBOL(skb_store_bits);
2644
2645 /* Checksum skb data. */
__skb_checksum(const struct sk_buff * skb,int offset,int len,__wsum csum,const struct skb_checksum_ops * ops)2646 __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2647 __wsum csum, const struct skb_checksum_ops *ops)
2648 {
2649 int start = skb_headlen(skb);
2650 int i, copy = start - offset;
2651 struct sk_buff *frag_iter;
2652 int pos = 0;
2653
2654 /* Checksum header. */
2655 if (copy > 0) {
2656 if (copy > len)
2657 copy = len;
2658 csum = INDIRECT_CALL_1(ops->update, csum_partial_ext,
2659 skb->data + offset, copy, csum);
2660 if ((len -= copy) == 0)
2661 return csum;
2662 offset += copy;
2663 pos = copy;
2664 }
2665
2666 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2667 int end;
2668 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2669
2670 WARN_ON(start > offset + len);
2671
2672 end = start + skb_frag_size(frag);
2673 if ((copy = end - offset) > 0) {
2674 u32 p_off, p_len, copied;
2675 struct page *p;
2676 __wsum csum2;
2677 u8 *vaddr;
2678
2679 if (copy > len)
2680 copy = len;
2681
2682 skb_frag_foreach_page(frag,
2683 skb_frag_off(frag) + offset - start,
2684 copy, p, p_off, p_len, copied) {
2685 vaddr = kmap_atomic(p);
2686 csum2 = INDIRECT_CALL_1(ops->update,
2687 csum_partial_ext,
2688 vaddr + p_off, p_len, 0);
2689 kunmap_atomic(vaddr);
2690 csum = INDIRECT_CALL_1(ops->combine,
2691 csum_block_add_ext, csum,
2692 csum2, pos, p_len);
2693 pos += p_len;
2694 }
2695
2696 if (!(len -= copy))
2697 return csum;
2698 offset += copy;
2699 }
2700 start = end;
2701 }
2702
2703 skb_walk_frags(skb, frag_iter) {
2704 int end;
2705
2706 WARN_ON(start > offset + len);
2707
2708 end = start + frag_iter->len;
2709 if ((copy = end - offset) > 0) {
2710 __wsum csum2;
2711 if (copy > len)
2712 copy = len;
2713 csum2 = __skb_checksum(frag_iter, offset - start,
2714 copy, 0, ops);
2715 csum = INDIRECT_CALL_1(ops->combine, csum_block_add_ext,
2716 csum, csum2, pos, copy);
2717 if ((len -= copy) == 0)
2718 return csum;
2719 offset += copy;
2720 pos += copy;
2721 }
2722 start = end;
2723 }
2724 BUG_ON(len);
2725
2726 return csum;
2727 }
2728 EXPORT_SYMBOL(__skb_checksum);
2729
skb_checksum(const struct sk_buff * skb,int offset,int len,__wsum csum)2730 __wsum skb_checksum(const struct sk_buff *skb, int offset,
2731 int len, __wsum csum)
2732 {
2733 const struct skb_checksum_ops ops = {
2734 .update = csum_partial_ext,
2735 .combine = csum_block_add_ext,
2736 };
2737
2738 return __skb_checksum(skb, offset, len, csum, &ops);
2739 }
2740 EXPORT_SYMBOL(skb_checksum);
2741
2742 /* Both of above in one bottle. */
2743
skb_copy_and_csum_bits(const struct sk_buff * skb,int offset,u8 * to,int len)2744 __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2745 u8 *to, int len)
2746 {
2747 int start = skb_headlen(skb);
2748 int i, copy = start - offset;
2749 struct sk_buff *frag_iter;
2750 int pos = 0;
2751 __wsum csum = 0;
2752
2753 /* Copy header. */
2754 if (copy > 0) {
2755 if (copy > len)
2756 copy = len;
2757 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2758 copy);
2759 if ((len -= copy) == 0)
2760 return csum;
2761 offset += copy;
2762 to += copy;
2763 pos = copy;
2764 }
2765
2766 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2767 int end;
2768
2769 WARN_ON(start > offset + len);
2770
2771 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
2772 if ((copy = end - offset) > 0) {
2773 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2774 u32 p_off, p_len, copied;
2775 struct page *p;
2776 __wsum csum2;
2777 u8 *vaddr;
2778
2779 if (copy > len)
2780 copy = len;
2781
2782 skb_frag_foreach_page(frag,
2783 skb_frag_off(frag) + offset - start,
2784 copy, p, p_off, p_len, copied) {
2785 vaddr = kmap_atomic(p);
2786 csum2 = csum_partial_copy_nocheck(vaddr + p_off,
2787 to + copied,
2788 p_len);
2789 kunmap_atomic(vaddr);
2790 csum = csum_block_add(csum, csum2, pos);
2791 pos += p_len;
2792 }
2793
2794 if (!(len -= copy))
2795 return csum;
2796 offset += copy;
2797 to += copy;
2798 }
2799 start = end;
2800 }
2801
2802 skb_walk_frags(skb, frag_iter) {
2803 __wsum csum2;
2804 int end;
2805
2806 WARN_ON(start > offset + len);
2807
2808 end = start + frag_iter->len;
2809 if ((copy = end - offset) > 0) {
2810 if (copy > len)
2811 copy = len;
2812 csum2 = skb_copy_and_csum_bits(frag_iter,
2813 offset - start,
2814 to, copy);
2815 csum = csum_block_add(csum, csum2, pos);
2816 if ((len -= copy) == 0)
2817 return csum;
2818 offset += copy;
2819 to += copy;
2820 pos += copy;
2821 }
2822 start = end;
2823 }
2824 BUG_ON(len);
2825 return csum;
2826 }
2827 EXPORT_SYMBOL(skb_copy_and_csum_bits);
2828
__skb_checksum_complete_head(struct sk_buff * skb,int len)2829 __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
2830 {
2831 __sum16 sum;
2832
2833 sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
2834 /* See comments in __skb_checksum_complete(). */
2835 if (likely(!sum)) {
2836 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
2837 !skb->csum_complete_sw)
2838 netdev_rx_csum_fault(skb->dev, skb);
2839 }
2840 if (!skb_shared(skb))
2841 skb->csum_valid = !sum;
2842 return sum;
2843 }
2844 EXPORT_SYMBOL(__skb_checksum_complete_head);
2845
2846 /* This function assumes skb->csum already holds pseudo header's checksum,
2847 * which has been changed from the hardware checksum, for example, by
2848 * __skb_checksum_validate_complete(). And, the original skb->csum must
2849 * have been validated unsuccessfully for CHECKSUM_COMPLETE case.
2850 *
2851 * It returns non-zero if the recomputed checksum is still invalid, otherwise
2852 * zero. The new checksum is stored back into skb->csum unless the skb is
2853 * shared.
2854 */
__skb_checksum_complete(struct sk_buff * skb)2855 __sum16 __skb_checksum_complete(struct sk_buff *skb)
2856 {
2857 __wsum csum;
2858 __sum16 sum;
2859
2860 csum = skb_checksum(skb, 0, skb->len, 0);
2861
2862 sum = csum_fold(csum_add(skb->csum, csum));
2863 /* This check is inverted, because we already knew the hardware
2864 * checksum is invalid before calling this function. So, if the
2865 * re-computed checksum is valid instead, then we have a mismatch
2866 * between the original skb->csum and skb_checksum(). This means either
2867 * the original hardware checksum is incorrect or we screw up skb->csum
2868 * when moving skb->data around.
2869 */
2870 if (likely(!sum)) {
2871 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
2872 !skb->csum_complete_sw)
2873 netdev_rx_csum_fault(skb->dev, skb);
2874 }
2875
2876 if (!skb_shared(skb)) {
2877 /* Save full packet checksum */
2878 skb->csum = csum;
2879 skb->ip_summed = CHECKSUM_COMPLETE;
2880 skb->csum_complete_sw = 1;
2881 skb->csum_valid = !sum;
2882 }
2883
2884 return sum;
2885 }
2886 EXPORT_SYMBOL(__skb_checksum_complete);
2887
warn_crc32c_csum_update(const void * buff,int len,__wsum sum)2888 static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum)
2889 {
2890 net_warn_ratelimited(
2891 "%s: attempt to compute crc32c without libcrc32c.ko\n",
2892 __func__);
2893 return 0;
2894 }
2895
warn_crc32c_csum_combine(__wsum csum,__wsum csum2,int offset,int len)2896 static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2,
2897 int offset, int len)
2898 {
2899 net_warn_ratelimited(
2900 "%s: attempt to compute crc32c without libcrc32c.ko\n",
2901 __func__);
2902 return 0;
2903 }
2904
2905 static const struct skb_checksum_ops default_crc32c_ops = {
2906 .update = warn_crc32c_csum_update,
2907 .combine = warn_crc32c_csum_combine,
2908 };
2909
2910 const struct skb_checksum_ops *crc32c_csum_stub __read_mostly =
2911 &default_crc32c_ops;
2912 EXPORT_SYMBOL(crc32c_csum_stub);
2913
2914 /**
2915 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2916 * @from: source buffer
2917 *
2918 * Calculates the amount of linear headroom needed in the 'to' skb passed
2919 * into skb_zerocopy().
2920 */
2921 unsigned int
skb_zerocopy_headlen(const struct sk_buff * from)2922 skb_zerocopy_headlen(const struct sk_buff *from)
2923 {
2924 unsigned int hlen = 0;
2925
2926 if (!from->head_frag ||
2927 skb_headlen(from) < L1_CACHE_BYTES ||
2928 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS) {
2929 hlen = skb_headlen(from);
2930 if (!hlen)
2931 hlen = from->len;
2932 }
2933
2934 if (skb_has_frag_list(from))
2935 hlen = from->len;
2936
2937 return hlen;
2938 }
2939 EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2940
2941 /**
2942 * skb_zerocopy - Zero copy skb to skb
2943 * @to: destination buffer
2944 * @from: source buffer
2945 * @len: number of bytes to copy from source buffer
2946 * @hlen: size of linear headroom in destination buffer
2947 *
2948 * Copies up to `len` bytes from `from` to `to` by creating references
2949 * to the frags in the source buffer.
2950 *
2951 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2952 * headroom in the `to` buffer.
2953 *
2954 * Return value:
2955 * 0: everything is OK
2956 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
2957 * -EFAULT: skb_copy_bits() found some problem with skb geometry
2958 */
2959 int
skb_zerocopy(struct sk_buff * to,struct sk_buff * from,int len,int hlen)2960 skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
2961 {
2962 int i, j = 0;
2963 int plen = 0; /* length of skb->head fragment */
2964 int ret;
2965 struct page *page;
2966 unsigned int offset;
2967
2968 BUG_ON(!from->head_frag && !hlen);
2969
2970 /* dont bother with small payloads */
2971 if (len <= skb_tailroom(to))
2972 return skb_copy_bits(from, 0, skb_put(to, len), len);
2973
2974 if (hlen) {
2975 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2976 if (unlikely(ret))
2977 return ret;
2978 len -= hlen;
2979 } else {
2980 plen = min_t(int, skb_headlen(from), len);
2981 if (plen) {
2982 page = virt_to_head_page(from->head);
2983 offset = from->data - (unsigned char *)page_address(page);
2984 __skb_fill_page_desc(to, 0, page, offset, plen);
2985 get_page(page);
2986 j = 1;
2987 len -= plen;
2988 }
2989 }
2990
2991 to->truesize += len + plen;
2992 to->len += len + plen;
2993 to->data_len += len + plen;
2994
2995 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2996 skb_tx_error(from);
2997 return -ENOMEM;
2998 }
2999 skb_zerocopy_clone(to, from, GFP_ATOMIC);
3000
3001 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
3002 int size;
3003
3004 if (!len)
3005 break;
3006 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
3007 size = min_t(int, skb_frag_size(&skb_shinfo(to)->frags[j]),
3008 len);
3009 skb_frag_size_set(&skb_shinfo(to)->frags[j], size);
3010 len -= size;
3011 skb_frag_ref(to, j);
3012 j++;
3013 }
3014 skb_shinfo(to)->nr_frags = j;
3015
3016 return 0;
3017 }
3018 EXPORT_SYMBOL_GPL(skb_zerocopy);
3019
skb_copy_and_csum_dev(const struct sk_buff * skb,u8 * to)3020 void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
3021 {
3022 __wsum csum;
3023 long csstart;
3024
3025 if (skb->ip_summed == CHECKSUM_PARTIAL)
3026 csstart = skb_checksum_start_offset(skb);
3027 else
3028 csstart = skb_headlen(skb);
3029
3030 BUG_ON(csstart > skb_headlen(skb));
3031
3032 skb_copy_from_linear_data(skb, to, csstart);
3033
3034 csum = 0;
3035 if (csstart != skb->len)
3036 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
3037 skb->len - csstart);
3038
3039 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3040 long csstuff = csstart + skb->csum_offset;
3041
3042 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
3043 }
3044 }
3045 EXPORT_SYMBOL(skb_copy_and_csum_dev);
3046
3047 /**
3048 * skb_dequeue - remove from the head of the queue
3049 * @list: list to dequeue from
3050 *
3051 * Remove the head of the list. The list lock is taken so the function
3052 * may be used safely with other locking list functions. The head item is
3053 * returned or %NULL if the list is empty.
3054 */
3055
skb_dequeue(struct sk_buff_head * list)3056 struct sk_buff *skb_dequeue(struct sk_buff_head *list)
3057 {
3058 unsigned long flags;
3059 struct sk_buff *result;
3060
3061 spin_lock_irqsave(&list->lock, flags);
3062 result = __skb_dequeue(list);
3063 spin_unlock_irqrestore(&list->lock, flags);
3064 return result;
3065 }
3066 EXPORT_SYMBOL(skb_dequeue);
3067
3068 /**
3069 * skb_dequeue_tail - remove from the tail of the queue
3070 * @list: list to dequeue from
3071 *
3072 * Remove the tail of the list. The list lock is taken so the function
3073 * may be used safely with other locking list functions. The tail item is
3074 * returned or %NULL if the list is empty.
3075 */
skb_dequeue_tail(struct sk_buff_head * list)3076 struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
3077 {
3078 unsigned long flags;
3079 struct sk_buff *result;
3080
3081 spin_lock_irqsave(&list->lock, flags);
3082 result = __skb_dequeue_tail(list);
3083 spin_unlock_irqrestore(&list->lock, flags);
3084 return result;
3085 }
3086 EXPORT_SYMBOL(skb_dequeue_tail);
3087
3088 /**
3089 * skb_queue_purge - empty a list
3090 * @list: list to empty
3091 *
3092 * Delete all buffers on an &sk_buff list. Each buffer is removed from
3093 * the list and one reference dropped. This function takes the list
3094 * lock and is atomic with respect to other list locking functions.
3095 */
skb_queue_purge(struct sk_buff_head * list)3096 void skb_queue_purge(struct sk_buff_head *list)
3097 {
3098 struct sk_buff *skb;
3099 while ((skb = skb_dequeue(list)) != NULL)
3100 kfree_skb(skb);
3101 }
3102 EXPORT_SYMBOL(skb_queue_purge);
3103
3104 /**
3105 * skb_rbtree_purge - empty a skb rbtree
3106 * @root: root of the rbtree to empty
3107 * Return value: the sum of truesizes of all purged skbs.
3108 *
3109 * Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
3110 * the list and one reference dropped. This function does not take
3111 * any lock. Synchronization should be handled by the caller (e.g., TCP
3112 * out-of-order queue is protected by the socket lock).
3113 */
skb_rbtree_purge(struct rb_root * root)3114 unsigned int skb_rbtree_purge(struct rb_root *root)
3115 {
3116 struct rb_node *p = rb_first(root);
3117 unsigned int sum = 0;
3118
3119 while (p) {
3120 struct sk_buff *skb = rb_entry(p, struct sk_buff, rbnode);
3121
3122 p = rb_next(p);
3123 rb_erase(&skb->rbnode, root);
3124 sum += skb->truesize;
3125 kfree_skb(skb);
3126 }
3127 return sum;
3128 }
3129
3130 /**
3131 * skb_queue_head - queue a buffer at the list head
3132 * @list: list to use
3133 * @newsk: buffer to queue
3134 *
3135 * Queue a buffer at the start of the list. This function takes the
3136 * list lock and can be used safely with other locking &sk_buff functions
3137 * safely.
3138 *
3139 * A buffer cannot be placed on two lists at the same time.
3140 */
skb_queue_head(struct sk_buff_head * list,struct sk_buff * newsk)3141 void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
3142 {
3143 unsigned long flags;
3144
3145 spin_lock_irqsave(&list->lock, flags);
3146 __skb_queue_head(list, newsk);
3147 spin_unlock_irqrestore(&list->lock, flags);
3148 }
3149 EXPORT_SYMBOL(skb_queue_head);
3150
3151 /**
3152 * skb_queue_tail - queue a buffer at the list tail
3153 * @list: list to use
3154 * @newsk: buffer to queue
3155 *
3156 * Queue a buffer at the tail of the list. This function takes the
3157 * list lock and can be used safely with other locking &sk_buff functions
3158 * safely.
3159 *
3160 * A buffer cannot be placed on two lists at the same time.
3161 */
skb_queue_tail(struct sk_buff_head * list,struct sk_buff * newsk)3162 void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
3163 {
3164 unsigned long flags;
3165
3166 spin_lock_irqsave(&list->lock, flags);
3167 __skb_queue_tail(list, newsk);
3168 spin_unlock_irqrestore(&list->lock, flags);
3169 }
3170 EXPORT_SYMBOL(skb_queue_tail);
3171
3172 /**
3173 * skb_unlink - remove a buffer from a list
3174 * @skb: buffer to remove
3175 * @list: list to use
3176 *
3177 * Remove a packet from a list. The list locks are taken and this
3178 * function is atomic with respect to other list locked calls
3179 *
3180 * You must know what list the SKB is on.
3181 */
skb_unlink(struct sk_buff * skb,struct sk_buff_head * list)3182 void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
3183 {
3184 unsigned long flags;
3185
3186 spin_lock_irqsave(&list->lock, flags);
3187 __skb_unlink(skb, list);
3188 spin_unlock_irqrestore(&list->lock, flags);
3189 }
3190 EXPORT_SYMBOL(skb_unlink);
3191
3192 /**
3193 * skb_append - append a buffer
3194 * @old: buffer to insert after
3195 * @newsk: buffer to insert
3196 * @list: list to use
3197 *
3198 * Place a packet after a given packet in a list. The list locks are taken
3199 * and this function is atomic with respect to other list locked calls.
3200 * A buffer cannot be placed on two lists at the same time.
3201 */
skb_append(struct sk_buff * old,struct sk_buff * newsk,struct sk_buff_head * list)3202 void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
3203 {
3204 unsigned long flags;
3205
3206 spin_lock_irqsave(&list->lock, flags);
3207 __skb_queue_after(list, old, newsk);
3208 spin_unlock_irqrestore(&list->lock, flags);
3209 }
3210 EXPORT_SYMBOL(skb_append);
3211
skb_split_inside_header(struct sk_buff * skb,struct sk_buff * skb1,const u32 len,const int pos)3212 static inline void skb_split_inside_header(struct sk_buff *skb,
3213 struct sk_buff* skb1,
3214 const u32 len, const int pos)
3215 {
3216 int i;
3217
3218 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
3219 pos - len);
3220 /* And move data appendix as is. */
3221 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
3222 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
3223
3224 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
3225 skb_shinfo(skb)->nr_frags = 0;
3226 skb1->data_len = skb->data_len;
3227 skb1->len += skb1->data_len;
3228 skb->data_len = 0;
3229 skb->len = len;
3230 skb_set_tail_pointer(skb, len);
3231 }
3232
skb_split_no_header(struct sk_buff * skb,struct sk_buff * skb1,const u32 len,int pos)3233 static inline void skb_split_no_header(struct sk_buff *skb,
3234 struct sk_buff* skb1,
3235 const u32 len, int pos)
3236 {
3237 int i, k = 0;
3238 const int nfrags = skb_shinfo(skb)->nr_frags;
3239
3240 skb_shinfo(skb)->nr_frags = 0;
3241 skb1->len = skb1->data_len = skb->len - len;
3242 skb->len = len;
3243 skb->data_len = len - pos;
3244
3245 for (i = 0; i < nfrags; i++) {
3246 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
3247
3248 if (pos + size > len) {
3249 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
3250
3251 if (pos < len) {
3252 /* Split frag.
3253 * We have two variants in this case:
3254 * 1. Move all the frag to the second
3255 * part, if it is possible. F.e.
3256 * this approach is mandatory for TUX,
3257 * where splitting is expensive.
3258 * 2. Split is accurately. We make this.
3259 */
3260 skb_frag_ref(skb, i);
3261 skb_frag_off_add(&skb_shinfo(skb1)->frags[0], len - pos);
3262 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
3263 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
3264 skb_shinfo(skb)->nr_frags++;
3265 }
3266 k++;
3267 } else
3268 skb_shinfo(skb)->nr_frags++;
3269 pos += size;
3270 }
3271 skb_shinfo(skb1)->nr_frags = k;
3272 }
3273
3274 /**
3275 * skb_split - Split fragmented skb to two parts at length len.
3276 * @skb: the buffer to split
3277 * @skb1: the buffer to receive the second part
3278 * @len: new length for skb
3279 */
skb_split(struct sk_buff * skb,struct sk_buff * skb1,const u32 len)3280 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
3281 {
3282 int pos = skb_headlen(skb);
3283
3284 skb_shinfo(skb1)->tx_flags |= skb_shinfo(skb)->tx_flags &
3285 SKBTX_SHARED_FRAG;
3286 skb_zerocopy_clone(skb1, skb, 0);
3287 if (len < pos) /* Split line is inside header. */
3288 skb_split_inside_header(skb, skb1, len, pos);
3289 else /* Second chunk has no header, nothing to copy. */
3290 skb_split_no_header(skb, skb1, len, pos);
3291 }
3292 EXPORT_SYMBOL(skb_split);
3293
3294 /* Shifting from/to a cloned skb is a no-go.
3295 *
3296 * Caller cannot keep skb_shinfo related pointers past calling here!
3297 */
skb_prepare_for_shift(struct sk_buff * skb)3298 static int skb_prepare_for_shift(struct sk_buff *skb)
3299 {
3300 int ret = 0;
3301
3302 if (skb_cloned(skb)) {
3303 /* Save and restore truesize: pskb_expand_head() may reallocate
3304 * memory where ksize(kmalloc(S)) != ksize(kmalloc(S)), but we
3305 * cannot change truesize at this point.
3306 */
3307 unsigned int save_truesize = skb->truesize;
3308
3309 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3310 skb->truesize = save_truesize;
3311 }
3312 return ret;
3313 }
3314
3315 /**
3316 * skb_shift - Shifts paged data partially from skb to another
3317 * @tgt: buffer into which tail data gets added
3318 * @skb: buffer from which the paged data comes from
3319 * @shiftlen: shift up to this many bytes
3320 *
3321 * Attempts to shift up to shiftlen worth of bytes, which may be less than
3322 * the length of the skb, from skb to tgt. Returns number bytes shifted.
3323 * It's up to caller to free skb if everything was shifted.
3324 *
3325 * If @tgt runs out of frags, the whole operation is aborted.
3326 *
3327 * Skb cannot include anything else but paged data while tgt is allowed
3328 * to have non-paged data as well.
3329 *
3330 * TODO: full sized shift could be optimized but that would need
3331 * specialized skb free'er to handle frags without up-to-date nr_frags.
3332 */
skb_shift(struct sk_buff * tgt,struct sk_buff * skb,int shiftlen)3333 int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
3334 {
3335 int from, to, merge, todo;
3336 skb_frag_t *fragfrom, *fragto;
3337
3338 BUG_ON(shiftlen > skb->len);
3339
3340 if (skb_headlen(skb))
3341 return 0;
3342 if (skb_zcopy(tgt) || skb_zcopy(skb))
3343 return 0;
3344
3345 todo = shiftlen;
3346 from = 0;
3347 to = skb_shinfo(tgt)->nr_frags;
3348 fragfrom = &skb_shinfo(skb)->frags[from];
3349
3350 /* Actual merge is delayed until the point when we know we can
3351 * commit all, so that we don't have to undo partial changes
3352 */
3353 if (!to ||
3354 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
3355 skb_frag_off(fragfrom))) {
3356 merge = -1;
3357 } else {
3358 merge = to - 1;
3359
3360 todo -= skb_frag_size(fragfrom);
3361 if (todo < 0) {
3362 if (skb_prepare_for_shift(skb) ||
3363 skb_prepare_for_shift(tgt))
3364 return 0;
3365
3366 /* All previous frag pointers might be stale! */
3367 fragfrom = &skb_shinfo(skb)->frags[from];
3368 fragto = &skb_shinfo(tgt)->frags[merge];
3369
3370 skb_frag_size_add(fragto, shiftlen);
3371 skb_frag_size_sub(fragfrom, shiftlen);
3372 skb_frag_off_add(fragfrom, shiftlen);
3373
3374 goto onlymerged;
3375 }
3376
3377 from++;
3378 }
3379
3380 /* Skip full, not-fitting skb to avoid expensive operations */
3381 if ((shiftlen == skb->len) &&
3382 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
3383 return 0;
3384
3385 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
3386 return 0;
3387
3388 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
3389 if (to == MAX_SKB_FRAGS)
3390 return 0;
3391
3392 fragfrom = &skb_shinfo(skb)->frags[from];
3393 fragto = &skb_shinfo(tgt)->frags[to];
3394
3395 if (todo >= skb_frag_size(fragfrom)) {
3396 *fragto = *fragfrom;
3397 todo -= skb_frag_size(fragfrom);
3398 from++;
3399 to++;
3400
3401 } else {
3402 __skb_frag_ref(fragfrom);
3403 skb_frag_page_copy(fragto, fragfrom);
3404 skb_frag_off_copy(fragto, fragfrom);
3405 skb_frag_size_set(fragto, todo);
3406
3407 skb_frag_off_add(fragfrom, todo);
3408 skb_frag_size_sub(fragfrom, todo);
3409 todo = 0;
3410
3411 to++;
3412 break;
3413 }
3414 }
3415
3416 /* Ready to "commit" this state change to tgt */
3417 skb_shinfo(tgt)->nr_frags = to;
3418
3419 if (merge >= 0) {
3420 fragfrom = &skb_shinfo(skb)->frags[0];
3421 fragto = &skb_shinfo(tgt)->frags[merge];
3422
3423 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
3424 __skb_frag_unref(fragfrom);
3425 }
3426
3427 /* Reposition in the original skb */
3428 to = 0;
3429 while (from < skb_shinfo(skb)->nr_frags)
3430 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
3431 skb_shinfo(skb)->nr_frags = to;
3432
3433 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
3434
3435 onlymerged:
3436 /* Most likely the tgt won't ever need its checksum anymore, skb on
3437 * the other hand might need it if it needs to be resent
3438 */
3439 tgt->ip_summed = CHECKSUM_PARTIAL;
3440 skb->ip_summed = CHECKSUM_PARTIAL;
3441
3442 /* Yak, is it really working this way? Some helper please? */
3443 skb->len -= shiftlen;
3444 skb->data_len -= shiftlen;
3445 skb->truesize -= shiftlen;
3446 tgt->len += shiftlen;
3447 tgt->data_len += shiftlen;
3448 tgt->truesize += shiftlen;
3449
3450 return shiftlen;
3451 }
3452
3453 /**
3454 * skb_prepare_seq_read - Prepare a sequential read of skb data
3455 * @skb: the buffer to read
3456 * @from: lower offset of data to be read
3457 * @to: upper offset of data to be read
3458 * @st: state variable
3459 *
3460 * Initializes the specified state variable. Must be called before
3461 * invoking skb_seq_read() for the first time.
3462 */
skb_prepare_seq_read(struct sk_buff * skb,unsigned int from,unsigned int to,struct skb_seq_state * st)3463 void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
3464 unsigned int to, struct skb_seq_state *st)
3465 {
3466 st->lower_offset = from;
3467 st->upper_offset = to;
3468 st->root_skb = st->cur_skb = skb;
3469 st->frag_idx = st->stepped_offset = 0;
3470 st->frag_data = NULL;
3471 }
3472 EXPORT_SYMBOL(skb_prepare_seq_read);
3473
3474 /**
3475 * skb_seq_read - Sequentially read skb data
3476 * @consumed: number of bytes consumed by the caller so far
3477 * @data: destination pointer for data to be returned
3478 * @st: state variable
3479 *
3480 * Reads a block of skb data at @consumed relative to the
3481 * lower offset specified to skb_prepare_seq_read(). Assigns
3482 * the head of the data block to @data and returns the length
3483 * of the block or 0 if the end of the skb data or the upper
3484 * offset has been reached.
3485 *
3486 * The caller is not required to consume all of the data
3487 * returned, i.e. @consumed is typically set to the number
3488 * of bytes already consumed and the next call to
3489 * skb_seq_read() will return the remaining part of the block.
3490 *
3491 * Note 1: The size of each block of data returned can be arbitrary,
3492 * this limitation is the cost for zerocopy sequential
3493 * reads of potentially non linear data.
3494 *
3495 * Note 2: Fragment lists within fragments are not implemented
3496 * at the moment, state->root_skb could be replaced with
3497 * a stack for this purpose.
3498 */
skb_seq_read(unsigned int consumed,const u8 ** data,struct skb_seq_state * st)3499 unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
3500 struct skb_seq_state *st)
3501 {
3502 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
3503 skb_frag_t *frag;
3504
3505 if (unlikely(abs_offset >= st->upper_offset)) {
3506 if (st->frag_data) {
3507 kunmap_atomic(st->frag_data);
3508 st->frag_data = NULL;
3509 }
3510 return 0;
3511 }
3512
3513 next_skb:
3514 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
3515
3516 if (abs_offset < block_limit && !st->frag_data) {
3517 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
3518 return block_limit - abs_offset;
3519 }
3520
3521 if (st->frag_idx == 0 && !st->frag_data)
3522 st->stepped_offset += skb_headlen(st->cur_skb);
3523
3524 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
3525 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
3526 block_limit = skb_frag_size(frag) + st->stepped_offset;
3527
3528 if (abs_offset < block_limit) {
3529 if (!st->frag_data)
3530 st->frag_data = kmap_atomic(skb_frag_page(frag));
3531
3532 *data = (u8 *) st->frag_data + skb_frag_off(frag) +
3533 (abs_offset - st->stepped_offset);
3534
3535 return block_limit - abs_offset;
3536 }
3537
3538 if (st->frag_data) {
3539 kunmap_atomic(st->frag_data);
3540 st->frag_data = NULL;
3541 }
3542
3543 st->frag_idx++;
3544 st->stepped_offset += skb_frag_size(frag);
3545 }
3546
3547 if (st->frag_data) {
3548 kunmap_atomic(st->frag_data);
3549 st->frag_data = NULL;
3550 }
3551
3552 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
3553 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
3554 st->frag_idx = 0;
3555 goto next_skb;
3556 } else if (st->cur_skb->next) {
3557 st->cur_skb = st->cur_skb->next;
3558 st->frag_idx = 0;
3559 goto next_skb;
3560 }
3561
3562 return 0;
3563 }
3564 EXPORT_SYMBOL(skb_seq_read);
3565
3566 /**
3567 * skb_abort_seq_read - Abort a sequential read of skb data
3568 * @st: state variable
3569 *
3570 * Must be called if skb_seq_read() was not called until it
3571 * returned 0.
3572 */
skb_abort_seq_read(struct skb_seq_state * st)3573 void skb_abort_seq_read(struct skb_seq_state *st)
3574 {
3575 if (st->frag_data)
3576 kunmap_atomic(st->frag_data);
3577 }
3578 EXPORT_SYMBOL(skb_abort_seq_read);
3579
3580 #define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
3581
skb_ts_get_next_block(unsigned int offset,const u8 ** text,struct ts_config * conf,struct ts_state * state)3582 static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
3583 struct ts_config *conf,
3584 struct ts_state *state)
3585 {
3586 return skb_seq_read(offset, text, TS_SKB_CB(state));
3587 }
3588
skb_ts_finish(struct ts_config * conf,struct ts_state * state)3589 static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
3590 {
3591 skb_abort_seq_read(TS_SKB_CB(state));
3592 }
3593
3594 /**
3595 * skb_find_text - Find a text pattern in skb data
3596 * @skb: the buffer to look in
3597 * @from: search offset
3598 * @to: search limit
3599 * @config: textsearch configuration
3600 *
3601 * Finds a pattern in the skb data according to the specified
3602 * textsearch configuration. Use textsearch_next() to retrieve
3603 * subsequent occurrences of the pattern. Returns the offset
3604 * to the first occurrence or UINT_MAX if no match was found.
3605 */
skb_find_text(struct sk_buff * skb,unsigned int from,unsigned int to,struct ts_config * config)3606 unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
3607 unsigned int to, struct ts_config *config)
3608 {
3609 struct ts_state state;
3610 unsigned int ret;
3611
3612 config->get_next_block = skb_ts_get_next_block;
3613 config->finish = skb_ts_finish;
3614
3615 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
3616
3617 ret = textsearch_find(config, &state);
3618 return (ret <= to - from ? ret : UINT_MAX);
3619 }
3620 EXPORT_SYMBOL(skb_find_text);
3621
skb_append_pagefrags(struct sk_buff * skb,struct page * page,int offset,size_t size)3622 int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3623 int offset, size_t size)
3624 {
3625 int i = skb_shinfo(skb)->nr_frags;
3626
3627 if (skb_can_coalesce(skb, i, page, offset)) {
3628 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3629 } else if (i < MAX_SKB_FRAGS) {
3630 get_page(page);
3631 skb_fill_page_desc(skb, i, page, offset, size);
3632 } else {
3633 return -EMSGSIZE;
3634 }
3635
3636 return 0;
3637 }
3638 EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3639
3640 /**
3641 * skb_pull_rcsum - pull skb and update receive checksum
3642 * @skb: buffer to update
3643 * @len: length of data pulled
3644 *
3645 * This function performs an skb_pull on the packet and updates
3646 * the CHECKSUM_COMPLETE checksum. It should be used on
3647 * receive path processing instead of skb_pull unless you know
3648 * that the checksum difference is zero (e.g., a valid IP header)
3649 * or you are setting ip_summed to CHECKSUM_NONE.
3650 */
skb_pull_rcsum(struct sk_buff * skb,unsigned int len)3651 void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3652 {
3653 unsigned char *data = skb->data;
3654
3655 BUG_ON(len > skb->len);
3656 __skb_pull(skb, len);
3657 skb_postpull_rcsum(skb, data, len);
3658 return skb->data;
3659 }
3660 EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3661
skb_head_frag_to_page_desc(struct sk_buff * frag_skb)3662 static inline skb_frag_t skb_head_frag_to_page_desc(struct sk_buff *frag_skb)
3663 {
3664 skb_frag_t head_frag;
3665 struct page *page;
3666
3667 page = virt_to_head_page(frag_skb->head);
3668 __skb_frag_set_page(&head_frag, page);
3669 skb_frag_off_set(&head_frag, frag_skb->data -
3670 (unsigned char *)page_address(page));
3671 skb_frag_size_set(&head_frag, skb_headlen(frag_skb));
3672 return head_frag;
3673 }
3674
skb_segment_list(struct sk_buff * skb,netdev_features_t features,unsigned int offset)3675 struct sk_buff *skb_segment_list(struct sk_buff *skb,
3676 netdev_features_t features,
3677 unsigned int offset)
3678 {
3679 struct sk_buff *list_skb = skb_shinfo(skb)->frag_list;
3680 unsigned int tnl_hlen = skb_tnl_header_len(skb);
3681 unsigned int delta_truesize = 0;
3682 unsigned int delta_len = 0;
3683 struct sk_buff *tail = NULL;
3684 struct sk_buff *nskb, *tmp;
3685 int err;
3686
3687 skb_push(skb, -skb_network_offset(skb) + offset);
3688
3689 skb_shinfo(skb)->frag_list = NULL;
3690
3691 do {
3692 nskb = list_skb;
3693 list_skb = list_skb->next;
3694
3695 err = 0;
3696 delta_truesize += nskb->truesize;
3697 if (skb_shared(nskb)) {
3698 tmp = skb_clone(nskb, GFP_ATOMIC);
3699 if (tmp) {
3700 consume_skb(nskb);
3701 nskb = tmp;
3702 err = skb_unclone(nskb, GFP_ATOMIC);
3703 } else {
3704 err = -ENOMEM;
3705 }
3706 }
3707
3708 if (!tail)
3709 skb->next = nskb;
3710 else
3711 tail->next = nskb;
3712
3713 if (unlikely(err)) {
3714 nskb->next = list_skb;
3715 goto err_linearize;
3716 }
3717
3718 tail = nskb;
3719
3720 delta_len += nskb->len;
3721
3722 skb_push(nskb, -skb_network_offset(nskb) + offset);
3723
3724 skb_release_head_state(nskb);
3725 __copy_skb_header(nskb, skb);
3726
3727 skb_headers_offset_update(nskb, skb_headroom(nskb) - skb_headroom(skb));
3728 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
3729 nskb->data - tnl_hlen,
3730 offset + tnl_hlen);
3731
3732 if (skb_needs_linearize(nskb, features) &&
3733 __skb_linearize(nskb))
3734 goto err_linearize;
3735
3736 } while (list_skb);
3737
3738 skb->truesize = skb->truesize - delta_truesize;
3739 skb->data_len = skb->data_len - delta_len;
3740 skb->len = skb->len - delta_len;
3741
3742 skb_gso_reset(skb);
3743
3744 skb->prev = tail;
3745
3746 if (skb_needs_linearize(skb, features) &&
3747 __skb_linearize(skb))
3748 goto err_linearize;
3749
3750 skb_get(skb);
3751
3752 return skb;
3753
3754 err_linearize:
3755 kfree_skb_list(skb->next);
3756 skb->next = NULL;
3757 return ERR_PTR(-ENOMEM);
3758 }
3759 EXPORT_SYMBOL_GPL(skb_segment_list);
3760
skb_gro_receive_list(struct sk_buff * p,struct sk_buff * skb)3761 int skb_gro_receive_list(struct sk_buff *p, struct sk_buff *skb)
3762 {
3763 if (unlikely(p->len + skb->len >= 65536))
3764 return -E2BIG;
3765
3766 if (NAPI_GRO_CB(p)->last == p)
3767 skb_shinfo(p)->frag_list = skb;
3768 else
3769 NAPI_GRO_CB(p)->last->next = skb;
3770
3771 skb_pull(skb, skb_gro_offset(skb));
3772
3773 NAPI_GRO_CB(p)->last = skb;
3774 NAPI_GRO_CB(p)->count++;
3775 p->data_len += skb->len;
3776 p->truesize += skb->truesize;
3777 p->len += skb->len;
3778
3779 NAPI_GRO_CB(skb)->same_flow = 1;
3780
3781 return 0;
3782 }
3783
3784 /**
3785 * skb_segment - Perform protocol segmentation on skb.
3786 * @head_skb: buffer to segment
3787 * @features: features for the output path (see dev->features)
3788 *
3789 * This function performs segmentation on the given skb. It returns
3790 * a pointer to the first in a list of new skbs for the segments.
3791 * In case of error it returns ERR_PTR(err).
3792 */
skb_segment(struct sk_buff * head_skb,netdev_features_t features)3793 struct sk_buff *skb_segment(struct sk_buff *head_skb,
3794 netdev_features_t features)
3795 {
3796 struct sk_buff *segs = NULL;
3797 struct sk_buff *tail = NULL;
3798 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
3799 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3800 unsigned int mss = skb_shinfo(head_skb)->gso_size;
3801 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
3802 struct sk_buff *frag_skb = head_skb;
3803 unsigned int offset = doffset;
3804 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
3805 unsigned int partial_segs = 0;
3806 unsigned int headroom;
3807 unsigned int len = head_skb->len;
3808 __be16 proto;
3809 bool csum, sg;
3810 int nfrags = skb_shinfo(head_skb)->nr_frags;
3811 int err = -ENOMEM;
3812 int i = 0;
3813 int pos;
3814
3815 if ((skb_shinfo(head_skb)->gso_type & SKB_GSO_DODGY) &&
3816 mss != GSO_BY_FRAGS && mss != skb_headlen(head_skb)) {
3817 struct sk_buff *check_skb;
3818
3819 for (check_skb = list_skb; check_skb; check_skb = check_skb->next) {
3820 if (skb_headlen(check_skb) && !check_skb->head_frag) {
3821 /* gso_size is untrusted, and we have a frag_list with
3822 * a linear non head_frag item.
3823 *
3824 * If head_skb's headlen does not fit requested gso_size,
3825 * it means that the frag_list members do NOT terminate
3826 * on exact gso_size boundaries. Hence we cannot perform
3827 * skb_frag_t page sharing. Therefore we must fallback to
3828 * copying the frag_list skbs; we do so by disabling SG.
3829 */
3830 features &= ~NETIF_F_SG;
3831 break;
3832 }
3833 }
3834 }
3835
3836 __skb_push(head_skb, doffset);
3837 proto = skb_network_protocol(head_skb, NULL);
3838 if (unlikely(!proto))
3839 return ERR_PTR(-EINVAL);
3840
3841 sg = !!(features & NETIF_F_SG);
3842 csum = !!can_checksum_protocol(features, proto);
3843
3844 if (sg && csum && (mss != GSO_BY_FRAGS)) {
3845 if (!(features & NETIF_F_GSO_PARTIAL)) {
3846 struct sk_buff *iter;
3847 unsigned int frag_len;
3848
3849 if (!list_skb ||
3850 !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
3851 goto normal;
3852
3853 /* If we get here then all the required
3854 * GSO features except frag_list are supported.
3855 * Try to split the SKB to multiple GSO SKBs
3856 * with no frag_list.
3857 * Currently we can do that only when the buffers don't
3858 * have a linear part and all the buffers except
3859 * the last are of the same length.
3860 */
3861 frag_len = list_skb->len;
3862 skb_walk_frags(head_skb, iter) {
3863 if (frag_len != iter->len && iter->next)
3864 goto normal;
3865 if (skb_headlen(iter) && !iter->head_frag)
3866 goto normal;
3867
3868 len -= iter->len;
3869 }
3870
3871 if (len != frag_len)
3872 goto normal;
3873 }
3874
3875 /* GSO partial only requires that we trim off any excess that
3876 * doesn't fit into an MSS sized block, so take care of that
3877 * now.
3878 * Cap len to not accidentally hit GSO_BY_FRAGS.
3879 */
3880 partial_segs = min(len, GSO_BY_FRAGS - 1U) / mss;
3881 if (partial_segs > 1)
3882 mss *= partial_segs;
3883 else
3884 partial_segs = 0;
3885 }
3886
3887 normal:
3888 headroom = skb_headroom(head_skb);
3889 pos = skb_headlen(head_skb);
3890
3891 do {
3892 struct sk_buff *nskb;
3893 skb_frag_t *nskb_frag;
3894 int hsize;
3895 int size;
3896
3897 if (unlikely(mss == GSO_BY_FRAGS)) {
3898 len = list_skb->len;
3899 } else {
3900 len = head_skb->len - offset;
3901 if (len > mss)
3902 len = mss;
3903 }
3904
3905 hsize = skb_headlen(head_skb) - offset;
3906 if (hsize < 0)
3907 hsize = 0;
3908 if (hsize > len || !sg)
3909 hsize = len;
3910
3911 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3912 (skb_headlen(list_skb) == len || sg)) {
3913 BUG_ON(skb_headlen(list_skb) > len);
3914
3915 i = 0;
3916 nfrags = skb_shinfo(list_skb)->nr_frags;
3917 frag = skb_shinfo(list_skb)->frags;
3918 frag_skb = list_skb;
3919 pos += skb_headlen(list_skb);
3920
3921 while (pos < offset + len) {
3922 BUG_ON(i >= nfrags);
3923
3924 size = skb_frag_size(frag);
3925 if (pos + size > offset + len)
3926 break;
3927
3928 i++;
3929 pos += size;
3930 frag++;
3931 }
3932
3933 nskb = skb_clone(list_skb, GFP_ATOMIC);
3934 list_skb = list_skb->next;
3935
3936 if (unlikely(!nskb))
3937 goto err;
3938
3939 if (unlikely(pskb_trim(nskb, len))) {
3940 kfree_skb(nskb);
3941 goto err;
3942 }
3943
3944 hsize = skb_end_offset(nskb);
3945 if (skb_cow_head(nskb, doffset + headroom)) {
3946 kfree_skb(nskb);
3947 goto err;
3948 }
3949
3950 nskb->truesize += skb_end_offset(nskb) - hsize;
3951 skb_release_head_state(nskb);
3952 __skb_push(nskb, doffset);
3953 } else {
3954 nskb = __alloc_skb(hsize + doffset + headroom,
3955 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
3956 NUMA_NO_NODE);
3957
3958 if (unlikely(!nskb))
3959 goto err;
3960
3961 skb_reserve(nskb, headroom);
3962 __skb_put(nskb, doffset);
3963 }
3964
3965 if (segs)
3966 tail->next = nskb;
3967 else
3968 segs = nskb;
3969 tail = nskb;
3970
3971 __copy_skb_header(nskb, head_skb);
3972
3973 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
3974 skb_reset_mac_len(nskb);
3975
3976 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
3977 nskb->data - tnl_hlen,
3978 doffset + tnl_hlen);
3979
3980 if (nskb->len == len + doffset)
3981 goto perform_csum_check;
3982
3983 if (!sg) {
3984 if (!csum) {
3985 if (!nskb->remcsum_offload)
3986 nskb->ip_summed = CHECKSUM_NONE;
3987 SKB_GSO_CB(nskb)->csum =
3988 skb_copy_and_csum_bits(head_skb, offset,
3989 skb_put(nskb,
3990 len),
3991 len);
3992 SKB_GSO_CB(nskb)->csum_start =
3993 skb_headroom(nskb) + doffset;
3994 } else {
3995 if (skb_copy_bits(head_skb, offset, skb_put(nskb, len), len))
3996 goto err;
3997 }
3998 continue;
3999 }
4000
4001 nskb_frag = skb_shinfo(nskb)->frags;
4002
4003 skb_copy_from_linear_data_offset(head_skb, offset,
4004 skb_put(nskb, hsize), hsize);
4005
4006 skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
4007 SKBTX_SHARED_FRAG;
4008
4009 if (skb_orphan_frags(frag_skb, GFP_ATOMIC) ||
4010 skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC))
4011 goto err;
4012
4013 while (pos < offset + len) {
4014 if (i >= nfrags) {
4015 i = 0;
4016 nfrags = skb_shinfo(list_skb)->nr_frags;
4017 frag = skb_shinfo(list_skb)->frags;
4018 frag_skb = list_skb;
4019 if (!skb_headlen(list_skb)) {
4020 BUG_ON(!nfrags);
4021 } else {
4022 BUG_ON(!list_skb->head_frag);
4023
4024 /* to make room for head_frag. */
4025 i--;
4026 frag--;
4027 }
4028 if (skb_orphan_frags(frag_skb, GFP_ATOMIC) ||
4029 skb_zerocopy_clone(nskb, frag_skb,
4030 GFP_ATOMIC))
4031 goto err;
4032
4033 list_skb = list_skb->next;
4034 }
4035
4036 if (unlikely(skb_shinfo(nskb)->nr_frags >=
4037 MAX_SKB_FRAGS)) {
4038 net_warn_ratelimited(
4039 "skb_segment: too many frags: %u %u\n",
4040 pos, mss);
4041 err = -EINVAL;
4042 goto err;
4043 }
4044
4045 *nskb_frag = (i < 0) ? skb_head_frag_to_page_desc(frag_skb) : *frag;
4046 __skb_frag_ref(nskb_frag);
4047 size = skb_frag_size(nskb_frag);
4048
4049 if (pos < offset) {
4050 skb_frag_off_add(nskb_frag, offset - pos);
4051 skb_frag_size_sub(nskb_frag, offset - pos);
4052 }
4053
4054 skb_shinfo(nskb)->nr_frags++;
4055
4056 if (pos + size <= offset + len) {
4057 i++;
4058 frag++;
4059 pos += size;
4060 } else {
4061 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
4062 goto skip_fraglist;
4063 }
4064
4065 nskb_frag++;
4066 }
4067
4068 skip_fraglist:
4069 nskb->data_len = len - hsize;
4070 nskb->len += nskb->data_len;
4071 nskb->truesize += nskb->data_len;
4072
4073 perform_csum_check:
4074 if (!csum) {
4075 if (skb_has_shared_frag(nskb) &&
4076 __skb_linearize(nskb))
4077 goto err;
4078
4079 if (!nskb->remcsum_offload)
4080 nskb->ip_summed = CHECKSUM_NONE;
4081 SKB_GSO_CB(nskb)->csum =
4082 skb_checksum(nskb, doffset,
4083 nskb->len - doffset, 0);
4084 SKB_GSO_CB(nskb)->csum_start =
4085 skb_headroom(nskb) + doffset;
4086 }
4087 } while ((offset += len) < head_skb->len);
4088
4089 /* Some callers want to get the end of the list.
4090 * Put it in segs->prev to avoid walking the list.
4091 * (see validate_xmit_skb_list() for example)
4092 */
4093 segs->prev = tail;
4094
4095 if (partial_segs) {
4096 struct sk_buff *iter;
4097 int type = skb_shinfo(head_skb)->gso_type;
4098 unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
4099
4100 /* Update type to add partial and then remove dodgy if set */
4101 type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
4102 type &= ~SKB_GSO_DODGY;
4103
4104 /* Update GSO info and prepare to start updating headers on
4105 * our way back down the stack of protocols.
4106 */
4107 for (iter = segs; iter; iter = iter->next) {
4108 skb_shinfo(iter)->gso_size = gso_size;
4109 skb_shinfo(iter)->gso_segs = partial_segs;
4110 skb_shinfo(iter)->gso_type = type;
4111 SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
4112 }
4113
4114 if (tail->len - doffset <= gso_size)
4115 skb_shinfo(tail)->gso_size = 0;
4116 else if (tail != segs)
4117 skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
4118 }
4119
4120 /* Following permits correct backpressure, for protocols
4121 * using skb_set_owner_w().
4122 * Idea is to tranfert ownership from head_skb to last segment.
4123 */
4124 if (head_skb->destructor == sock_wfree) {
4125 swap(tail->truesize, head_skb->truesize);
4126 swap(tail->destructor, head_skb->destructor);
4127 swap(tail->sk, head_skb->sk);
4128 }
4129 return segs;
4130
4131 err:
4132 kfree_skb_list(segs);
4133 return ERR_PTR(err);
4134 }
4135 EXPORT_SYMBOL_GPL(skb_segment);
4136
skb_gro_receive(struct sk_buff * p,struct sk_buff * skb)4137 int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb)
4138 {
4139 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
4140 unsigned int offset = skb_gro_offset(skb);
4141 unsigned int headlen = skb_headlen(skb);
4142 unsigned int len = skb_gro_len(skb);
4143 unsigned int delta_truesize;
4144 struct sk_buff *lp;
4145
4146 if (unlikely(p->len + len >= 65536 || NAPI_GRO_CB(skb)->flush))
4147 return -E2BIG;
4148
4149 lp = NAPI_GRO_CB(p)->last;
4150 pinfo = skb_shinfo(lp);
4151
4152 if (headlen <= offset) {
4153 skb_frag_t *frag;
4154 skb_frag_t *frag2;
4155 int i = skbinfo->nr_frags;
4156 int nr_frags = pinfo->nr_frags + i;
4157
4158 if (nr_frags > MAX_SKB_FRAGS)
4159 goto merge;
4160
4161 offset -= headlen;
4162 pinfo->nr_frags = nr_frags;
4163 skbinfo->nr_frags = 0;
4164
4165 frag = pinfo->frags + nr_frags;
4166 frag2 = skbinfo->frags + i;
4167 do {
4168 *--frag = *--frag2;
4169 } while (--i);
4170
4171 skb_frag_off_add(frag, offset);
4172 skb_frag_size_sub(frag, offset);
4173
4174 /* all fragments truesize : remove (head size + sk_buff) */
4175 delta_truesize = skb->truesize -
4176 SKB_TRUESIZE(skb_end_offset(skb));
4177
4178 skb->truesize -= skb->data_len;
4179 skb->len -= skb->data_len;
4180 skb->data_len = 0;
4181
4182 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
4183 goto done;
4184 } else if (skb->head_frag) {
4185 int nr_frags = pinfo->nr_frags;
4186 skb_frag_t *frag = pinfo->frags + nr_frags;
4187 struct page *page = virt_to_head_page(skb->head);
4188 unsigned int first_size = headlen - offset;
4189 unsigned int first_offset;
4190
4191 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
4192 goto merge;
4193
4194 first_offset = skb->data -
4195 (unsigned char *)page_address(page) +
4196 offset;
4197
4198 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
4199
4200 __skb_frag_set_page(frag, page);
4201 skb_frag_off_set(frag, first_offset);
4202 skb_frag_size_set(frag, first_size);
4203
4204 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
4205 /* We dont need to clear skbinfo->nr_frags here */
4206
4207 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4208 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
4209 goto done;
4210 }
4211
4212 merge:
4213 delta_truesize = skb->truesize;
4214 if (offset > headlen) {
4215 unsigned int eat = offset - headlen;
4216
4217 skb_frag_off_add(&skbinfo->frags[0], eat);
4218 skb_frag_size_sub(&skbinfo->frags[0], eat);
4219 skb->data_len -= eat;
4220 skb->len -= eat;
4221 offset = headlen;
4222 }
4223
4224 __skb_pull(skb, offset);
4225
4226 if (NAPI_GRO_CB(p)->last == p)
4227 skb_shinfo(p)->frag_list = skb;
4228 else
4229 NAPI_GRO_CB(p)->last->next = skb;
4230 NAPI_GRO_CB(p)->last = skb;
4231 __skb_header_release(skb);
4232 lp = p;
4233
4234 done:
4235 NAPI_GRO_CB(p)->count++;
4236 p->data_len += len;
4237 p->truesize += delta_truesize;
4238 p->len += len;
4239 if (lp != p) {
4240 lp->data_len += len;
4241 lp->truesize += delta_truesize;
4242 lp->len += len;
4243 }
4244 NAPI_GRO_CB(skb)->same_flow = 1;
4245 return 0;
4246 }
4247
4248 #ifdef CONFIG_SKB_EXTENSIONS
4249 #define SKB_EXT_ALIGN_VALUE 8
4250 #define SKB_EXT_CHUNKSIZEOF(x) (ALIGN((sizeof(x)), SKB_EXT_ALIGN_VALUE) / SKB_EXT_ALIGN_VALUE)
4251
4252 static const u8 skb_ext_type_len[] = {
4253 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4254 [SKB_EXT_BRIDGE_NF] = SKB_EXT_CHUNKSIZEOF(struct nf_bridge_info),
4255 #endif
4256 #ifdef CONFIG_XFRM
4257 [SKB_EXT_SEC_PATH] = SKB_EXT_CHUNKSIZEOF(struct sec_path),
4258 #endif
4259 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4260 [TC_SKB_EXT] = SKB_EXT_CHUNKSIZEOF(struct tc_skb_ext),
4261 #endif
4262 #if IS_ENABLED(CONFIG_MPTCP)
4263 [SKB_EXT_MPTCP] = SKB_EXT_CHUNKSIZEOF(struct mptcp_ext),
4264 #endif
4265 };
4266
skb_ext_total_length(void)4267 static __always_inline unsigned int skb_ext_total_length(void)
4268 {
4269 return SKB_EXT_CHUNKSIZEOF(struct skb_ext) +
4270 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4271 skb_ext_type_len[SKB_EXT_BRIDGE_NF] +
4272 #endif
4273 #ifdef CONFIG_XFRM
4274 skb_ext_type_len[SKB_EXT_SEC_PATH] +
4275 #endif
4276 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4277 skb_ext_type_len[TC_SKB_EXT] +
4278 #endif
4279 #if IS_ENABLED(CONFIG_MPTCP)
4280 skb_ext_type_len[SKB_EXT_MPTCP] +
4281 #endif
4282 0;
4283 }
4284
skb_extensions_init(void)4285 static void skb_extensions_init(void)
4286 {
4287 BUILD_BUG_ON(SKB_EXT_NUM >= 8);
4288 BUILD_BUG_ON(skb_ext_total_length() > 255);
4289
4290 skbuff_ext_cache = kmem_cache_create("skbuff_ext_cache",
4291 SKB_EXT_ALIGN_VALUE * skb_ext_total_length(),
4292 0,
4293 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4294 NULL);
4295 }
4296 #else
skb_extensions_init(void)4297 static void skb_extensions_init(void) {}
4298 #endif
4299
skb_init(void)4300 void __init skb_init(void)
4301 {
4302 skbuff_head_cache = kmem_cache_create_usercopy("skbuff_head_cache",
4303 sizeof(struct sk_buff),
4304 0,
4305 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4306 offsetof(struct sk_buff, cb),
4307 sizeof_field(struct sk_buff, cb),
4308 NULL);
4309 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
4310 sizeof(struct sk_buff_fclones),
4311 0,
4312 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4313 NULL);
4314 skb_extensions_init();
4315 }
4316
4317 static int
__skb_to_sgvec(struct sk_buff * skb,struct scatterlist * sg,int offset,int len,unsigned int recursion_level)4318 __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
4319 unsigned int recursion_level)
4320 {
4321 int start = skb_headlen(skb);
4322 int i, copy = start - offset;
4323 struct sk_buff *frag_iter;
4324 int elt = 0;
4325
4326 if (unlikely(recursion_level >= 24))
4327 return -EMSGSIZE;
4328
4329 if (copy > 0) {
4330 if (copy > len)
4331 copy = len;
4332 sg_set_buf(sg, skb->data + offset, copy);
4333 elt++;
4334 if ((len -= copy) == 0)
4335 return elt;
4336 offset += copy;
4337 }
4338
4339 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
4340 int end;
4341
4342 WARN_ON(start > offset + len);
4343
4344 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
4345 if ((copy = end - offset) > 0) {
4346 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4347 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
4348 return -EMSGSIZE;
4349
4350 if (copy > len)
4351 copy = len;
4352 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
4353 skb_frag_off(frag) + offset - start);
4354 elt++;
4355 if (!(len -= copy))
4356 return elt;
4357 offset += copy;
4358 }
4359 start = end;
4360 }
4361
4362 skb_walk_frags(skb, frag_iter) {
4363 int end, ret;
4364
4365 WARN_ON(start > offset + len);
4366
4367 end = start + frag_iter->len;
4368 if ((copy = end - offset) > 0) {
4369 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
4370 return -EMSGSIZE;
4371
4372 if (copy > len)
4373 copy = len;
4374 ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
4375 copy, recursion_level + 1);
4376 if (unlikely(ret < 0))
4377 return ret;
4378 elt += ret;
4379 if ((len -= copy) == 0)
4380 return elt;
4381 offset += copy;
4382 }
4383 start = end;
4384 }
4385 BUG_ON(len);
4386 return elt;
4387 }
4388
4389 /**
4390 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
4391 * @skb: Socket buffer containing the buffers to be mapped
4392 * @sg: The scatter-gather list to map into
4393 * @offset: The offset into the buffer's contents to start mapping
4394 * @len: Length of buffer space to be mapped
4395 *
4396 * Fill the specified scatter-gather list with mappings/pointers into a
4397 * region of the buffer space attached to a socket buffer. Returns either
4398 * the number of scatterlist items used, or -EMSGSIZE if the contents
4399 * could not fit.
4400 */
skb_to_sgvec(struct sk_buff * skb,struct scatterlist * sg,int offset,int len)4401 int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
4402 {
4403 int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
4404
4405 if (nsg <= 0)
4406 return nsg;
4407
4408 sg_mark_end(&sg[nsg - 1]);
4409
4410 return nsg;
4411 }
4412 EXPORT_SYMBOL_GPL(skb_to_sgvec);
4413
4414 /* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
4415 * sglist without mark the sg which contain last skb data as the end.
4416 * So the caller can mannipulate sg list as will when padding new data after
4417 * the first call without calling sg_unmark_end to expend sg list.
4418 *
4419 * Scenario to use skb_to_sgvec_nomark:
4420 * 1. sg_init_table
4421 * 2. skb_to_sgvec_nomark(payload1)
4422 * 3. skb_to_sgvec_nomark(payload2)
4423 *
4424 * This is equivalent to:
4425 * 1. sg_init_table
4426 * 2. skb_to_sgvec(payload1)
4427 * 3. sg_unmark_end
4428 * 4. skb_to_sgvec(payload2)
4429 *
4430 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
4431 * is more preferable.
4432 */
skb_to_sgvec_nomark(struct sk_buff * skb,struct scatterlist * sg,int offset,int len)4433 int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
4434 int offset, int len)
4435 {
4436 return __skb_to_sgvec(skb, sg, offset, len, 0);
4437 }
4438 EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
4439
4440
4441
4442 /**
4443 * skb_cow_data - Check that a socket buffer's data buffers are writable
4444 * @skb: The socket buffer to check.
4445 * @tailbits: Amount of trailing space to be added
4446 * @trailer: Returned pointer to the skb where the @tailbits space begins
4447 *
4448 * Make sure that the data buffers attached to a socket buffer are
4449 * writable. If they are not, private copies are made of the data buffers
4450 * and the socket buffer is set to use these instead.
4451 *
4452 * If @tailbits is given, make sure that there is space to write @tailbits
4453 * bytes of data beyond current end of socket buffer. @trailer will be
4454 * set to point to the skb in which this space begins.
4455 *
4456 * The number of scatterlist elements required to completely map the
4457 * COW'd and extended socket buffer will be returned.
4458 */
skb_cow_data(struct sk_buff * skb,int tailbits,struct sk_buff ** trailer)4459 int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
4460 {
4461 int copyflag;
4462 int elt;
4463 struct sk_buff *skb1, **skb_p;
4464
4465 /* If skb is cloned or its head is paged, reallocate
4466 * head pulling out all the pages (pages are considered not writable
4467 * at the moment even if they are anonymous).
4468 */
4469 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
4470 !__pskb_pull_tail(skb, __skb_pagelen(skb)))
4471 return -ENOMEM;
4472
4473 /* Easy case. Most of packets will go this way. */
4474 if (!skb_has_frag_list(skb)) {
4475 /* A little of trouble, not enough of space for trailer.
4476 * This should not happen, when stack is tuned to generate
4477 * good frames. OK, on miss we reallocate and reserve even more
4478 * space, 128 bytes is fair. */
4479
4480 if (skb_tailroom(skb) < tailbits &&
4481 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
4482 return -ENOMEM;
4483
4484 /* Voila! */
4485 *trailer = skb;
4486 return 1;
4487 }
4488
4489 /* Misery. We are in troubles, going to mincer fragments... */
4490
4491 elt = 1;
4492 skb_p = &skb_shinfo(skb)->frag_list;
4493 copyflag = 0;
4494
4495 while ((skb1 = *skb_p) != NULL) {
4496 int ntail = 0;
4497
4498 /* The fragment is partially pulled by someone,
4499 * this can happen on input. Copy it and everything
4500 * after it. */
4501
4502 if (skb_shared(skb1))
4503 copyflag = 1;
4504
4505 /* If the skb is the last, worry about trailer. */
4506
4507 if (skb1->next == NULL && tailbits) {
4508 if (skb_shinfo(skb1)->nr_frags ||
4509 skb_has_frag_list(skb1) ||
4510 skb_tailroom(skb1) < tailbits)
4511 ntail = tailbits + 128;
4512 }
4513
4514 if (copyflag ||
4515 skb_cloned(skb1) ||
4516 ntail ||
4517 skb_shinfo(skb1)->nr_frags ||
4518 skb_has_frag_list(skb1)) {
4519 struct sk_buff *skb2;
4520
4521 /* Fuck, we are miserable poor guys... */
4522 if (ntail == 0)
4523 skb2 = skb_copy(skb1, GFP_ATOMIC);
4524 else
4525 skb2 = skb_copy_expand(skb1,
4526 skb_headroom(skb1),
4527 ntail,
4528 GFP_ATOMIC);
4529 if (unlikely(skb2 == NULL))
4530 return -ENOMEM;
4531
4532 if (skb1->sk)
4533 skb_set_owner_w(skb2, skb1->sk);
4534
4535 /* Looking around. Are we still alive?
4536 * OK, link new skb, drop old one */
4537
4538 skb2->next = skb1->next;
4539 *skb_p = skb2;
4540 kfree_skb(skb1);
4541 skb1 = skb2;
4542 }
4543 elt++;
4544 *trailer = skb1;
4545 skb_p = &skb1->next;
4546 }
4547
4548 return elt;
4549 }
4550 EXPORT_SYMBOL_GPL(skb_cow_data);
4551
sock_rmem_free(struct sk_buff * skb)4552 static void sock_rmem_free(struct sk_buff *skb)
4553 {
4554 struct sock *sk = skb->sk;
4555
4556 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
4557 }
4558
skb_set_err_queue(struct sk_buff * skb)4559 static void skb_set_err_queue(struct sk_buff *skb)
4560 {
4561 /* pkt_type of skbs received on local sockets is never PACKET_OUTGOING.
4562 * So, it is safe to (mis)use it to mark skbs on the error queue.
4563 */
4564 skb->pkt_type = PACKET_OUTGOING;
4565 BUILD_BUG_ON(PACKET_OUTGOING == 0);
4566 }
4567
4568 /*
4569 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
4570 */
sock_queue_err_skb(struct sock * sk,struct sk_buff * skb)4571 int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
4572 {
4573 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
4574 (unsigned int)READ_ONCE(sk->sk_rcvbuf))
4575 return -ENOMEM;
4576
4577 skb_orphan(skb);
4578 skb->sk = sk;
4579 skb->destructor = sock_rmem_free;
4580 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
4581 skb_set_err_queue(skb);
4582
4583 /* before exiting rcu section, make sure dst is refcounted */
4584 skb_dst_force(skb);
4585
4586 skb_queue_tail(&sk->sk_error_queue, skb);
4587 if (!sock_flag(sk, SOCK_DEAD))
4588 sk->sk_error_report(sk);
4589 return 0;
4590 }
4591 EXPORT_SYMBOL(sock_queue_err_skb);
4592
is_icmp_err_skb(const struct sk_buff * skb)4593 static bool is_icmp_err_skb(const struct sk_buff *skb)
4594 {
4595 return skb && (SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
4596 SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP6);
4597 }
4598
sock_dequeue_err_skb(struct sock * sk)4599 struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
4600 {
4601 struct sk_buff_head *q = &sk->sk_error_queue;
4602 struct sk_buff *skb, *skb_next = NULL;
4603 bool icmp_next = false;
4604 unsigned long flags;
4605
4606 spin_lock_irqsave(&q->lock, flags);
4607 skb = __skb_dequeue(q);
4608 if (skb && (skb_next = skb_peek(q))) {
4609 icmp_next = is_icmp_err_skb(skb_next);
4610 if (icmp_next)
4611 sk->sk_err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
4612 }
4613 spin_unlock_irqrestore(&q->lock, flags);
4614
4615 if (is_icmp_err_skb(skb) && !icmp_next)
4616 sk->sk_err = 0;
4617
4618 if (skb_next)
4619 sk->sk_error_report(sk);
4620
4621 return skb;
4622 }
4623 EXPORT_SYMBOL(sock_dequeue_err_skb);
4624
4625 /**
4626 * skb_clone_sk - create clone of skb, and take reference to socket
4627 * @skb: the skb to clone
4628 *
4629 * This function creates a clone of a buffer that holds a reference on
4630 * sk_refcnt. Buffers created via this function are meant to be
4631 * returned using sock_queue_err_skb, or free via kfree_skb.
4632 *
4633 * When passing buffers allocated with this function to sock_queue_err_skb
4634 * it is necessary to wrap the call with sock_hold/sock_put in order to
4635 * prevent the socket from being released prior to being enqueued on
4636 * the sk_error_queue.
4637 */
skb_clone_sk(struct sk_buff * skb)4638 struct sk_buff *skb_clone_sk(struct sk_buff *skb)
4639 {
4640 struct sock *sk = skb->sk;
4641 struct sk_buff *clone;
4642
4643 if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
4644 return NULL;
4645
4646 clone = skb_clone(skb, GFP_ATOMIC);
4647 if (!clone) {
4648 sock_put(sk);
4649 return NULL;
4650 }
4651
4652 clone->sk = sk;
4653 clone->destructor = sock_efree;
4654
4655 return clone;
4656 }
4657 EXPORT_SYMBOL(skb_clone_sk);
4658
__skb_complete_tx_timestamp(struct sk_buff * skb,struct sock * sk,int tstype,bool opt_stats)4659 static void __skb_complete_tx_timestamp(struct sk_buff *skb,
4660 struct sock *sk,
4661 int tstype,
4662 bool opt_stats)
4663 {
4664 struct sock_exterr_skb *serr;
4665 int err;
4666
4667 BUILD_BUG_ON(sizeof(struct sock_exterr_skb) > sizeof(skb->cb));
4668
4669 serr = SKB_EXT_ERR(skb);
4670 memset(serr, 0, sizeof(*serr));
4671 serr->ee.ee_errno = ENOMSG;
4672 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
4673 serr->ee.ee_info = tstype;
4674 serr->opt_stats = opt_stats;
4675 serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
4676 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
4677 serr->ee.ee_data = skb_shinfo(skb)->tskey;
4678 if (sk->sk_protocol == IPPROTO_TCP &&
4679 sk->sk_type == SOCK_STREAM)
4680 serr->ee.ee_data -= sk->sk_tskey;
4681 }
4682
4683 err = sock_queue_err_skb(sk, skb);
4684
4685 if (err)
4686 kfree_skb(skb);
4687 }
4688
skb_may_tx_timestamp(struct sock * sk,bool tsonly)4689 static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
4690 {
4691 bool ret;
4692
4693 if (likely(READ_ONCE(sysctl_tstamp_allow_data) || tsonly))
4694 return true;
4695
4696 read_lock_bh(&sk->sk_callback_lock);
4697 ret = sk->sk_socket && sk->sk_socket->file &&
4698 file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
4699 read_unlock_bh(&sk->sk_callback_lock);
4700 return ret;
4701 }
4702
skb_complete_tx_timestamp(struct sk_buff * skb,struct skb_shared_hwtstamps * hwtstamps)4703 void skb_complete_tx_timestamp(struct sk_buff *skb,
4704 struct skb_shared_hwtstamps *hwtstamps)
4705 {
4706 struct sock *sk = skb->sk;
4707
4708 if (!skb_may_tx_timestamp(sk, false))
4709 goto err;
4710
4711 /* Take a reference to prevent skb_orphan() from freeing the socket,
4712 * but only if the socket refcount is not zero.
4713 */
4714 if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4715 *skb_hwtstamps(skb) = *hwtstamps;
4716 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND, false);
4717 sock_put(sk);
4718 return;
4719 }
4720
4721 err:
4722 kfree_skb(skb);
4723 }
4724 EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
4725
__skb_tstamp_tx(struct sk_buff * orig_skb,struct skb_shared_hwtstamps * hwtstamps,struct sock * sk,int tstype)4726 void __skb_tstamp_tx(struct sk_buff *orig_skb,
4727 struct skb_shared_hwtstamps *hwtstamps,
4728 struct sock *sk, int tstype)
4729 {
4730 struct sk_buff *skb;
4731 bool tsonly, opt_stats = false;
4732
4733 if (!sk)
4734 return;
4735
4736 if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) &&
4737 skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS)
4738 return;
4739
4740 tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
4741 if (!skb_may_tx_timestamp(sk, tsonly))
4742 return;
4743
4744 if (tsonly) {
4745 #ifdef CONFIG_INET
4746 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) &&
4747 sk->sk_protocol == IPPROTO_TCP &&
4748 sk->sk_type == SOCK_STREAM) {
4749 skb = tcp_get_timestamping_opt_stats(sk, orig_skb);
4750 opt_stats = true;
4751 } else
4752 #endif
4753 skb = alloc_skb(0, GFP_ATOMIC);
4754 } else {
4755 skb = skb_clone(orig_skb, GFP_ATOMIC);
4756 }
4757 if (!skb)
4758 return;
4759
4760 if (tsonly) {
4761 skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
4762 SKBTX_ANY_TSTAMP;
4763 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
4764 }
4765
4766 if (hwtstamps)
4767 *skb_hwtstamps(skb) = *hwtstamps;
4768 else
4769 skb->tstamp = ktime_get_real();
4770
4771 __skb_complete_tx_timestamp(skb, sk, tstype, opt_stats);
4772 }
4773 EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
4774
skb_tstamp_tx(struct sk_buff * orig_skb,struct skb_shared_hwtstamps * hwtstamps)4775 void skb_tstamp_tx(struct sk_buff *orig_skb,
4776 struct skb_shared_hwtstamps *hwtstamps)
4777 {
4778 return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
4779 SCM_TSTAMP_SND);
4780 }
4781 EXPORT_SYMBOL_GPL(skb_tstamp_tx);
4782
skb_complete_wifi_ack(struct sk_buff * skb,bool acked)4783 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
4784 {
4785 struct sock *sk = skb->sk;
4786 struct sock_exterr_skb *serr;
4787 int err = 1;
4788
4789 skb->wifi_acked_valid = 1;
4790 skb->wifi_acked = acked;
4791
4792 serr = SKB_EXT_ERR(skb);
4793 memset(serr, 0, sizeof(*serr));
4794 serr->ee.ee_errno = ENOMSG;
4795 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
4796
4797 /* Take a reference to prevent skb_orphan() from freeing the socket,
4798 * but only if the socket refcount is not zero.
4799 */
4800 if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4801 err = sock_queue_err_skb(sk, skb);
4802 sock_put(sk);
4803 }
4804 if (err)
4805 kfree_skb(skb);
4806 }
4807 EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
4808
4809 /**
4810 * skb_partial_csum_set - set up and verify partial csum values for packet
4811 * @skb: the skb to set
4812 * @start: the number of bytes after skb->data to start checksumming.
4813 * @off: the offset from start to place the checksum.
4814 *
4815 * For untrusted partially-checksummed packets, we need to make sure the values
4816 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
4817 *
4818 * This function checks and sets those values and skb->ip_summed: if this
4819 * returns false you should drop the packet.
4820 */
skb_partial_csum_set(struct sk_buff * skb,u16 start,u16 off)4821 bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
4822 {
4823 u32 csum_end = (u32)start + (u32)off + sizeof(__sum16);
4824 u32 csum_start = skb_headroom(skb) + (u32)start;
4825
4826 if (unlikely(csum_start > U16_MAX || csum_end > skb_headlen(skb))) {
4827 net_warn_ratelimited("bad partial csum: csum=%u/%u headroom=%u headlen=%u\n",
4828 start, off, skb_headroom(skb), skb_headlen(skb));
4829 return false;
4830 }
4831 skb->ip_summed = CHECKSUM_PARTIAL;
4832 skb->csum_start = csum_start;
4833 skb->csum_offset = off;
4834 skb_set_transport_header(skb, start);
4835 return true;
4836 }
4837 EXPORT_SYMBOL_GPL(skb_partial_csum_set);
4838
skb_maybe_pull_tail(struct sk_buff * skb,unsigned int len,unsigned int max)4839 static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
4840 unsigned int max)
4841 {
4842 if (skb_headlen(skb) >= len)
4843 return 0;
4844
4845 /* If we need to pullup then pullup to the max, so we
4846 * won't need to do it again.
4847 */
4848 if (max > skb->len)
4849 max = skb->len;
4850
4851 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
4852 return -ENOMEM;
4853
4854 if (skb_headlen(skb) < len)
4855 return -EPROTO;
4856
4857 return 0;
4858 }
4859
4860 #define MAX_TCP_HDR_LEN (15 * 4)
4861
skb_checksum_setup_ip(struct sk_buff * skb,typeof(IPPROTO_IP) proto,unsigned int off)4862 static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
4863 typeof(IPPROTO_IP) proto,
4864 unsigned int off)
4865 {
4866 int err;
4867
4868 switch (proto) {
4869 case IPPROTO_TCP:
4870 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
4871 off + MAX_TCP_HDR_LEN);
4872 if (!err && !skb_partial_csum_set(skb, off,
4873 offsetof(struct tcphdr,
4874 check)))
4875 err = -EPROTO;
4876 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4877
4878 case IPPROTO_UDP:
4879 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4880 off + sizeof(struct udphdr));
4881 if (!err && !skb_partial_csum_set(skb, off,
4882 offsetof(struct udphdr,
4883 check)))
4884 err = -EPROTO;
4885 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4886 }
4887
4888 return ERR_PTR(-EPROTO);
4889 }
4890
4891 /* This value should be large enough to cover a tagged ethernet header plus
4892 * maximally sized IP and TCP or UDP headers.
4893 */
4894 #define MAX_IP_HDR_LEN 128
4895
skb_checksum_setup_ipv4(struct sk_buff * skb,bool recalculate)4896 static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
4897 {
4898 unsigned int off;
4899 bool fragment;
4900 __sum16 *csum;
4901 int err;
4902
4903 fragment = false;
4904
4905 err = skb_maybe_pull_tail(skb,
4906 sizeof(struct iphdr),
4907 MAX_IP_HDR_LEN);
4908 if (err < 0)
4909 goto out;
4910
4911 if (ip_is_fragment(ip_hdr(skb)))
4912 fragment = true;
4913
4914 off = ip_hdrlen(skb);
4915
4916 err = -EPROTO;
4917
4918 if (fragment)
4919 goto out;
4920
4921 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4922 if (IS_ERR(csum))
4923 return PTR_ERR(csum);
4924
4925 if (recalculate)
4926 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4927 ip_hdr(skb)->daddr,
4928 skb->len - off,
4929 ip_hdr(skb)->protocol, 0);
4930 err = 0;
4931
4932 out:
4933 return err;
4934 }
4935
4936 /* This value should be large enough to cover a tagged ethernet header plus
4937 * an IPv6 header, all options, and a maximal TCP or UDP header.
4938 */
4939 #define MAX_IPV6_HDR_LEN 256
4940
4941 #define OPT_HDR(type, skb, off) \
4942 (type *)(skb_network_header(skb) + (off))
4943
skb_checksum_setup_ipv6(struct sk_buff * skb,bool recalculate)4944 static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4945 {
4946 int err;
4947 u8 nexthdr;
4948 unsigned int off;
4949 unsigned int len;
4950 bool fragment;
4951 bool done;
4952 __sum16 *csum;
4953
4954 fragment = false;
4955 done = false;
4956
4957 off = sizeof(struct ipv6hdr);
4958
4959 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4960 if (err < 0)
4961 goto out;
4962
4963 nexthdr = ipv6_hdr(skb)->nexthdr;
4964
4965 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4966 while (off <= len && !done) {
4967 switch (nexthdr) {
4968 case IPPROTO_DSTOPTS:
4969 case IPPROTO_HOPOPTS:
4970 case IPPROTO_ROUTING: {
4971 struct ipv6_opt_hdr *hp;
4972
4973 err = skb_maybe_pull_tail(skb,
4974 off +
4975 sizeof(struct ipv6_opt_hdr),
4976 MAX_IPV6_HDR_LEN);
4977 if (err < 0)
4978 goto out;
4979
4980 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4981 nexthdr = hp->nexthdr;
4982 off += ipv6_optlen(hp);
4983 break;
4984 }
4985 case IPPROTO_AH: {
4986 struct ip_auth_hdr *hp;
4987
4988 err = skb_maybe_pull_tail(skb,
4989 off +
4990 sizeof(struct ip_auth_hdr),
4991 MAX_IPV6_HDR_LEN);
4992 if (err < 0)
4993 goto out;
4994
4995 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4996 nexthdr = hp->nexthdr;
4997 off += ipv6_authlen(hp);
4998 break;
4999 }
5000 case IPPROTO_FRAGMENT: {
5001 struct frag_hdr *hp;
5002
5003 err = skb_maybe_pull_tail(skb,
5004 off +
5005 sizeof(struct frag_hdr),
5006 MAX_IPV6_HDR_LEN);
5007 if (err < 0)
5008 goto out;
5009
5010 hp = OPT_HDR(struct frag_hdr, skb, off);
5011
5012 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
5013 fragment = true;
5014
5015 nexthdr = hp->nexthdr;
5016 off += sizeof(struct frag_hdr);
5017 break;
5018 }
5019 default:
5020 done = true;
5021 break;
5022 }
5023 }
5024
5025 err = -EPROTO;
5026
5027 if (!done || fragment)
5028 goto out;
5029
5030 csum = skb_checksum_setup_ip(skb, nexthdr, off);
5031 if (IS_ERR(csum))
5032 return PTR_ERR(csum);
5033
5034 if (recalculate)
5035 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5036 &ipv6_hdr(skb)->daddr,
5037 skb->len - off, nexthdr, 0);
5038 err = 0;
5039
5040 out:
5041 return err;
5042 }
5043
5044 /**
5045 * skb_checksum_setup - set up partial checksum offset
5046 * @skb: the skb to set up
5047 * @recalculate: if true the pseudo-header checksum will be recalculated
5048 */
skb_checksum_setup(struct sk_buff * skb,bool recalculate)5049 int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
5050 {
5051 int err;
5052
5053 switch (skb->protocol) {
5054 case htons(ETH_P_IP):
5055 err = skb_checksum_setup_ipv4(skb, recalculate);
5056 break;
5057
5058 case htons(ETH_P_IPV6):
5059 err = skb_checksum_setup_ipv6(skb, recalculate);
5060 break;
5061
5062 default:
5063 err = -EPROTO;
5064 break;
5065 }
5066
5067 return err;
5068 }
5069 EXPORT_SYMBOL(skb_checksum_setup);
5070
5071 /**
5072 * skb_checksum_maybe_trim - maybe trims the given skb
5073 * @skb: the skb to check
5074 * @transport_len: the data length beyond the network header
5075 *
5076 * Checks whether the given skb has data beyond the given transport length.
5077 * If so, returns a cloned skb trimmed to this transport length.
5078 * Otherwise returns the provided skb. Returns NULL in error cases
5079 * (e.g. transport_len exceeds skb length or out-of-memory).
5080 *
5081 * Caller needs to set the skb transport header and free any returned skb if it
5082 * differs from the provided skb.
5083 */
skb_checksum_maybe_trim(struct sk_buff * skb,unsigned int transport_len)5084 static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
5085 unsigned int transport_len)
5086 {
5087 struct sk_buff *skb_chk;
5088 unsigned int len = skb_transport_offset(skb) + transport_len;
5089 int ret;
5090
5091 if (skb->len < len)
5092 return NULL;
5093 else if (skb->len == len)
5094 return skb;
5095
5096 skb_chk = skb_clone(skb, GFP_ATOMIC);
5097 if (!skb_chk)
5098 return NULL;
5099
5100 ret = pskb_trim_rcsum(skb_chk, len);
5101 if (ret) {
5102 kfree_skb(skb_chk);
5103 return NULL;
5104 }
5105
5106 return skb_chk;
5107 }
5108
5109 /**
5110 * skb_checksum_trimmed - validate checksum of an skb
5111 * @skb: the skb to check
5112 * @transport_len: the data length beyond the network header
5113 * @skb_chkf: checksum function to use
5114 *
5115 * Applies the given checksum function skb_chkf to the provided skb.
5116 * Returns a checked and maybe trimmed skb. Returns NULL on error.
5117 *
5118 * If the skb has data beyond the given transport length, then a
5119 * trimmed & cloned skb is checked and returned.
5120 *
5121 * Caller needs to set the skb transport header and free any returned skb if it
5122 * differs from the provided skb.
5123 */
skb_checksum_trimmed(struct sk_buff * skb,unsigned int transport_len,__sum16 (* skb_chkf)(struct sk_buff * skb))5124 struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
5125 unsigned int transport_len,
5126 __sum16(*skb_chkf)(struct sk_buff *skb))
5127 {
5128 struct sk_buff *skb_chk;
5129 unsigned int offset = skb_transport_offset(skb);
5130 __sum16 ret;
5131
5132 skb_chk = skb_checksum_maybe_trim(skb, transport_len);
5133 if (!skb_chk)
5134 goto err;
5135
5136 if (!pskb_may_pull(skb_chk, offset))
5137 goto err;
5138
5139 skb_pull_rcsum(skb_chk, offset);
5140 ret = skb_chkf(skb_chk);
5141 skb_push_rcsum(skb_chk, offset);
5142
5143 if (ret)
5144 goto err;
5145
5146 return skb_chk;
5147
5148 err:
5149 if (skb_chk && skb_chk != skb)
5150 kfree_skb(skb_chk);
5151
5152 return NULL;
5153
5154 }
5155 EXPORT_SYMBOL(skb_checksum_trimmed);
5156
__skb_warn_lro_forwarding(const struct sk_buff * skb)5157 void __skb_warn_lro_forwarding(const struct sk_buff *skb)
5158 {
5159 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
5160 skb->dev->name);
5161 }
5162 EXPORT_SYMBOL(__skb_warn_lro_forwarding);
5163
kfree_skb_partial(struct sk_buff * skb,bool head_stolen)5164 void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
5165 {
5166 if (head_stolen) {
5167 skb_release_head_state(skb);
5168 kmem_cache_free(skbuff_head_cache, skb);
5169 } else {
5170 __kfree_skb(skb);
5171 }
5172 }
5173 EXPORT_SYMBOL(kfree_skb_partial);
5174
5175 /**
5176 * skb_try_coalesce - try to merge skb to prior one
5177 * @to: prior buffer
5178 * @from: buffer to add
5179 * @fragstolen: pointer to boolean
5180 * @delta_truesize: how much more was allocated than was requested
5181 */
skb_try_coalesce(struct sk_buff * to,struct sk_buff * from,bool * fragstolen,int * delta_truesize)5182 bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
5183 bool *fragstolen, int *delta_truesize)
5184 {
5185 struct skb_shared_info *to_shinfo, *from_shinfo;
5186 int i, delta, len = from->len;
5187
5188 *fragstolen = false;
5189
5190 if (skb_cloned(to))
5191 return false;
5192
5193 if (len <= skb_tailroom(to)) {
5194 if (len)
5195 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
5196 *delta_truesize = 0;
5197 return true;
5198 }
5199
5200 to_shinfo = skb_shinfo(to);
5201 from_shinfo = skb_shinfo(from);
5202 if (to_shinfo->frag_list || from_shinfo->frag_list)
5203 return false;
5204 if (skb_zcopy(to) || skb_zcopy(from))
5205 return false;
5206
5207 if (skb_headlen(from) != 0) {
5208 struct page *page;
5209 unsigned int offset;
5210
5211 if (to_shinfo->nr_frags +
5212 from_shinfo->nr_frags >= MAX_SKB_FRAGS)
5213 return false;
5214
5215 if (skb_head_is_locked(from))
5216 return false;
5217
5218 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
5219
5220 page = virt_to_head_page(from->head);
5221 offset = from->data - (unsigned char *)page_address(page);
5222
5223 skb_fill_page_desc(to, to_shinfo->nr_frags,
5224 page, offset, skb_headlen(from));
5225 *fragstolen = true;
5226 } else {
5227 if (to_shinfo->nr_frags +
5228 from_shinfo->nr_frags > MAX_SKB_FRAGS)
5229 return false;
5230
5231 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
5232 }
5233
5234 WARN_ON_ONCE(delta < len);
5235
5236 memcpy(to_shinfo->frags + to_shinfo->nr_frags,
5237 from_shinfo->frags,
5238 from_shinfo->nr_frags * sizeof(skb_frag_t));
5239 to_shinfo->nr_frags += from_shinfo->nr_frags;
5240
5241 if (!skb_cloned(from))
5242 from_shinfo->nr_frags = 0;
5243
5244 /* if the skb is not cloned this does nothing
5245 * since we set nr_frags to 0.
5246 */
5247 for (i = 0; i < from_shinfo->nr_frags; i++)
5248 __skb_frag_ref(&from_shinfo->frags[i]);
5249
5250 to->truesize += delta;
5251 to->len += len;
5252 to->data_len += len;
5253
5254 *delta_truesize = delta;
5255 return true;
5256 }
5257 EXPORT_SYMBOL(skb_try_coalesce);
5258
5259 /**
5260 * skb_scrub_packet - scrub an skb
5261 *
5262 * @skb: buffer to clean
5263 * @xnet: packet is crossing netns
5264 *
5265 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
5266 * into/from a tunnel. Some information have to be cleared during these
5267 * operations.
5268 * skb_scrub_packet can also be used to clean a skb before injecting it in
5269 * another namespace (@xnet == true). We have to clear all information in the
5270 * skb that could impact namespace isolation.
5271 */
skb_scrub_packet(struct sk_buff * skb,bool xnet)5272 void skb_scrub_packet(struct sk_buff *skb, bool xnet)
5273 {
5274 skb->pkt_type = PACKET_HOST;
5275 skb->skb_iif = 0;
5276 skb->ignore_df = 0;
5277 skb_dst_drop(skb);
5278 skb_ext_reset(skb);
5279 nf_reset_ct(skb);
5280 nf_reset_trace(skb);
5281
5282 #ifdef CONFIG_NET_SWITCHDEV
5283 skb->offload_fwd_mark = 0;
5284 skb->offload_l3_fwd_mark = 0;
5285 #endif
5286
5287 if (!xnet)
5288 return;
5289
5290 ipvs_reset(skb);
5291 skb->mark = 0;
5292 skb->tstamp = 0;
5293 }
5294 EXPORT_SYMBOL_GPL(skb_scrub_packet);
5295
5296 /**
5297 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
5298 *
5299 * @skb: GSO skb
5300 *
5301 * skb_gso_transport_seglen is used to determine the real size of the
5302 * individual segments, including Layer4 headers (TCP/UDP).
5303 *
5304 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
5305 */
skb_gso_transport_seglen(const struct sk_buff * skb)5306 static unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
5307 {
5308 const struct skb_shared_info *shinfo = skb_shinfo(skb);
5309 unsigned int thlen = 0;
5310
5311 if (skb->encapsulation) {
5312 thlen = skb_inner_transport_header(skb) -
5313 skb_transport_header(skb);
5314
5315 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
5316 thlen += inner_tcp_hdrlen(skb);
5317 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
5318 thlen = tcp_hdrlen(skb);
5319 } else if (unlikely(skb_is_gso_sctp(skb))) {
5320 thlen = sizeof(struct sctphdr);
5321 } else if (shinfo->gso_type & SKB_GSO_UDP_L4) {
5322 thlen = sizeof(struct udphdr);
5323 }
5324 /* UFO sets gso_size to the size of the fragmentation
5325 * payload, i.e. the size of the L4 (UDP) header is already
5326 * accounted for.
5327 */
5328 return thlen + shinfo->gso_size;
5329 }
5330
5331 /**
5332 * skb_gso_network_seglen - Return length of individual segments of a gso packet
5333 *
5334 * @skb: GSO skb
5335 *
5336 * skb_gso_network_seglen is used to determine the real size of the
5337 * individual segments, including Layer3 (IP, IPv6) and L4 headers (TCP/UDP).
5338 *
5339 * The MAC/L2 header is not accounted for.
5340 */
skb_gso_network_seglen(const struct sk_buff * skb)5341 static unsigned int skb_gso_network_seglen(const struct sk_buff *skb)
5342 {
5343 unsigned int hdr_len = skb_transport_header(skb) -
5344 skb_network_header(skb);
5345
5346 return hdr_len + skb_gso_transport_seglen(skb);
5347 }
5348
5349 /**
5350 * skb_gso_mac_seglen - Return length of individual segments of a gso packet
5351 *
5352 * @skb: GSO skb
5353 *
5354 * skb_gso_mac_seglen is used to determine the real size of the
5355 * individual segments, including MAC/L2, Layer3 (IP, IPv6) and L4
5356 * headers (TCP/UDP).
5357 */
skb_gso_mac_seglen(const struct sk_buff * skb)5358 static unsigned int skb_gso_mac_seglen(const struct sk_buff *skb)
5359 {
5360 unsigned int hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
5361
5362 return hdr_len + skb_gso_transport_seglen(skb);
5363 }
5364
5365 /**
5366 * skb_gso_size_check - check the skb size, considering GSO_BY_FRAGS
5367 *
5368 * There are a couple of instances where we have a GSO skb, and we
5369 * want to determine what size it would be after it is segmented.
5370 *
5371 * We might want to check:
5372 * - L3+L4+payload size (e.g. IP forwarding)
5373 * - L2+L3+L4+payload size (e.g. sanity check before passing to driver)
5374 *
5375 * This is a helper to do that correctly considering GSO_BY_FRAGS.
5376 *
5377 * @skb: GSO skb
5378 *
5379 * @seg_len: The segmented length (from skb_gso_*_seglen). In the
5380 * GSO_BY_FRAGS case this will be [header sizes + GSO_BY_FRAGS].
5381 *
5382 * @max_len: The maximum permissible length.
5383 *
5384 * Returns true if the segmented length <= max length.
5385 */
skb_gso_size_check(const struct sk_buff * skb,unsigned int seg_len,unsigned int max_len)5386 static inline bool skb_gso_size_check(const struct sk_buff *skb,
5387 unsigned int seg_len,
5388 unsigned int max_len) {
5389 const struct skb_shared_info *shinfo = skb_shinfo(skb);
5390 const struct sk_buff *iter;
5391
5392 if (shinfo->gso_size != GSO_BY_FRAGS)
5393 return seg_len <= max_len;
5394
5395 /* Undo this so we can re-use header sizes */
5396 seg_len -= GSO_BY_FRAGS;
5397
5398 skb_walk_frags(skb, iter) {
5399 if (seg_len + skb_headlen(iter) > max_len)
5400 return false;
5401 }
5402
5403 return true;
5404 }
5405
5406 /**
5407 * skb_gso_validate_network_len - Will a split GSO skb fit into a given MTU?
5408 *
5409 * @skb: GSO skb
5410 * @mtu: MTU to validate against
5411 *
5412 * skb_gso_validate_network_len validates if a given skb will fit a
5413 * wanted MTU once split. It considers L3 headers, L4 headers, and the
5414 * payload.
5415 */
skb_gso_validate_network_len(const struct sk_buff * skb,unsigned int mtu)5416 bool skb_gso_validate_network_len(const struct sk_buff *skb, unsigned int mtu)
5417 {
5418 return skb_gso_size_check(skb, skb_gso_network_seglen(skb), mtu);
5419 }
5420 EXPORT_SYMBOL_GPL(skb_gso_validate_network_len);
5421
5422 /**
5423 * skb_gso_validate_mac_len - Will a split GSO skb fit in a given length?
5424 *
5425 * @skb: GSO skb
5426 * @len: length to validate against
5427 *
5428 * skb_gso_validate_mac_len validates if a given skb will fit a wanted
5429 * length once split, including L2, L3 and L4 headers and the payload.
5430 */
skb_gso_validate_mac_len(const struct sk_buff * skb,unsigned int len)5431 bool skb_gso_validate_mac_len(const struct sk_buff *skb, unsigned int len)
5432 {
5433 return skb_gso_size_check(skb, skb_gso_mac_seglen(skb), len);
5434 }
5435 EXPORT_SYMBOL_GPL(skb_gso_validate_mac_len);
5436
skb_reorder_vlan_header(struct sk_buff * skb)5437 static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
5438 {
5439 int mac_len, meta_len;
5440 void *meta;
5441
5442 if (skb_cow(skb, skb_headroom(skb)) < 0) {
5443 kfree_skb(skb);
5444 return NULL;
5445 }
5446
5447 mac_len = skb->data - skb_mac_header(skb);
5448 if (likely(mac_len > VLAN_HLEN + ETH_TLEN)) {
5449 memmove(skb_mac_header(skb) + VLAN_HLEN, skb_mac_header(skb),
5450 mac_len - VLAN_HLEN - ETH_TLEN);
5451 }
5452
5453 meta_len = skb_metadata_len(skb);
5454 if (meta_len) {
5455 meta = skb_metadata_end(skb) - meta_len;
5456 memmove(meta + VLAN_HLEN, meta, meta_len);
5457 }
5458
5459 skb->mac_header += VLAN_HLEN;
5460 return skb;
5461 }
5462
skb_vlan_untag(struct sk_buff * skb)5463 struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
5464 {
5465 struct vlan_hdr *vhdr;
5466 u16 vlan_tci;
5467
5468 if (unlikely(skb_vlan_tag_present(skb))) {
5469 /* vlan_tci is already set-up so leave this for another time */
5470 return skb;
5471 }
5472
5473 skb = skb_share_check(skb, GFP_ATOMIC);
5474 if (unlikely(!skb))
5475 goto err_free;
5476 /* We may access the two bytes after vlan_hdr in vlan_set_encap_proto(). */
5477 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN + sizeof(unsigned short))))
5478 goto err_free;
5479
5480 vhdr = (struct vlan_hdr *)skb->data;
5481 vlan_tci = ntohs(vhdr->h_vlan_TCI);
5482 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
5483
5484 skb_pull_rcsum(skb, VLAN_HLEN);
5485 vlan_set_encap_proto(skb, vhdr);
5486
5487 skb = skb_reorder_vlan_header(skb);
5488 if (unlikely(!skb))
5489 goto err_free;
5490
5491 skb_reset_network_header(skb);
5492 skb_reset_transport_header(skb);
5493 skb_reset_mac_len(skb);
5494
5495 return skb;
5496
5497 err_free:
5498 kfree_skb(skb);
5499 return NULL;
5500 }
5501 EXPORT_SYMBOL(skb_vlan_untag);
5502
skb_ensure_writable(struct sk_buff * skb,int write_len)5503 int skb_ensure_writable(struct sk_buff *skb, int write_len)
5504 {
5505 if (!pskb_may_pull(skb, write_len))
5506 return -ENOMEM;
5507
5508 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
5509 return 0;
5510
5511 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5512 }
5513 EXPORT_SYMBOL(skb_ensure_writable);
5514
5515 /* remove VLAN header from packet and update csum accordingly.
5516 * expects a non skb_vlan_tag_present skb with a vlan tag payload
5517 */
__skb_vlan_pop(struct sk_buff * skb,u16 * vlan_tci)5518 int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
5519 {
5520 struct vlan_hdr *vhdr;
5521 int offset = skb->data - skb_mac_header(skb);
5522 int err;
5523
5524 if (WARN_ONCE(offset,
5525 "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
5526 offset)) {
5527 return -EINVAL;
5528 }
5529
5530 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
5531 if (unlikely(err))
5532 return err;
5533
5534 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5535
5536 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
5537 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
5538
5539 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
5540 __skb_pull(skb, VLAN_HLEN);
5541
5542 vlan_set_encap_proto(skb, vhdr);
5543 skb->mac_header += VLAN_HLEN;
5544
5545 if (skb_network_offset(skb) < ETH_HLEN)
5546 skb_set_network_header(skb, ETH_HLEN);
5547
5548 skb_reset_mac_len(skb);
5549
5550 return err;
5551 }
5552 EXPORT_SYMBOL(__skb_vlan_pop);
5553
5554 /* Pop a vlan tag either from hwaccel or from payload.
5555 * Expects skb->data at mac header.
5556 */
skb_vlan_pop(struct sk_buff * skb)5557 int skb_vlan_pop(struct sk_buff *skb)
5558 {
5559 u16 vlan_tci;
5560 __be16 vlan_proto;
5561 int err;
5562
5563 if (likely(skb_vlan_tag_present(skb))) {
5564 __vlan_hwaccel_clear_tag(skb);
5565 } else {
5566 if (unlikely(!eth_type_vlan(skb->protocol)))
5567 return 0;
5568
5569 err = __skb_vlan_pop(skb, &vlan_tci);
5570 if (err)
5571 return err;
5572 }
5573 /* move next vlan tag to hw accel tag */
5574 if (likely(!eth_type_vlan(skb->protocol)))
5575 return 0;
5576
5577 vlan_proto = skb->protocol;
5578 err = __skb_vlan_pop(skb, &vlan_tci);
5579 if (unlikely(err))
5580 return err;
5581
5582 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5583 return 0;
5584 }
5585 EXPORT_SYMBOL(skb_vlan_pop);
5586
5587 /* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
5588 * Expects skb->data at mac header.
5589 */
skb_vlan_push(struct sk_buff * skb,__be16 vlan_proto,u16 vlan_tci)5590 int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
5591 {
5592 if (skb_vlan_tag_present(skb)) {
5593 int offset = skb->data - skb_mac_header(skb);
5594 int err;
5595
5596 if (WARN_ONCE(offset,
5597 "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
5598 offset)) {
5599 return -EINVAL;
5600 }
5601
5602 err = __vlan_insert_tag(skb, skb->vlan_proto,
5603 skb_vlan_tag_get(skb));
5604 if (err)
5605 return err;
5606
5607 skb->protocol = skb->vlan_proto;
5608 skb->mac_len += VLAN_HLEN;
5609
5610 skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5611 }
5612 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5613 return 0;
5614 }
5615 EXPORT_SYMBOL(skb_vlan_push);
5616
5617 /**
5618 * skb_eth_pop() - Drop the Ethernet header at the head of a packet
5619 *
5620 * @skb: Socket buffer to modify
5621 *
5622 * Drop the Ethernet header of @skb.
5623 *
5624 * Expects that skb->data points to the mac header and that no VLAN tags are
5625 * present.
5626 *
5627 * Returns 0 on success, -errno otherwise.
5628 */
skb_eth_pop(struct sk_buff * skb)5629 int skb_eth_pop(struct sk_buff *skb)
5630 {
5631 if (!pskb_may_pull(skb, ETH_HLEN) || skb_vlan_tagged(skb) ||
5632 skb_network_offset(skb) < ETH_HLEN)
5633 return -EPROTO;
5634
5635 skb_pull_rcsum(skb, ETH_HLEN);
5636 skb_reset_mac_header(skb);
5637 skb_reset_mac_len(skb);
5638
5639 return 0;
5640 }
5641 EXPORT_SYMBOL(skb_eth_pop);
5642
5643 /**
5644 * skb_eth_push() - Add a new Ethernet header at the head of a packet
5645 *
5646 * @skb: Socket buffer to modify
5647 * @dst: Destination MAC address of the new header
5648 * @src: Source MAC address of the new header
5649 *
5650 * Prepend @skb with a new Ethernet header.
5651 *
5652 * Expects that skb->data points to the mac header, which must be empty.
5653 *
5654 * Returns 0 on success, -errno otherwise.
5655 */
skb_eth_push(struct sk_buff * skb,const unsigned char * dst,const unsigned char * src)5656 int skb_eth_push(struct sk_buff *skb, const unsigned char *dst,
5657 const unsigned char *src)
5658 {
5659 struct ethhdr *eth;
5660 int err;
5661
5662 if (skb_network_offset(skb) || skb_vlan_tag_present(skb))
5663 return -EPROTO;
5664
5665 err = skb_cow_head(skb, sizeof(*eth));
5666 if (err < 0)
5667 return err;
5668
5669 skb_push(skb, sizeof(*eth));
5670 skb_reset_mac_header(skb);
5671 skb_reset_mac_len(skb);
5672
5673 eth = eth_hdr(skb);
5674 ether_addr_copy(eth->h_dest, dst);
5675 ether_addr_copy(eth->h_source, src);
5676 eth->h_proto = skb->protocol;
5677
5678 skb_postpush_rcsum(skb, eth, sizeof(*eth));
5679
5680 return 0;
5681 }
5682 EXPORT_SYMBOL(skb_eth_push);
5683
5684 /* Update the ethertype of hdr and the skb csum value if required. */
skb_mod_eth_type(struct sk_buff * skb,struct ethhdr * hdr,__be16 ethertype)5685 static void skb_mod_eth_type(struct sk_buff *skb, struct ethhdr *hdr,
5686 __be16 ethertype)
5687 {
5688 if (skb->ip_summed == CHECKSUM_COMPLETE) {
5689 __be16 diff[] = { ~hdr->h_proto, ethertype };
5690
5691 skb->csum = csum_partial((char *)diff, sizeof(diff), skb->csum);
5692 }
5693
5694 hdr->h_proto = ethertype;
5695 }
5696
5697 /**
5698 * skb_mpls_push() - push a new MPLS header after mac_len bytes from start of
5699 * the packet
5700 *
5701 * @skb: buffer
5702 * @mpls_lse: MPLS label stack entry to push
5703 * @mpls_proto: ethertype of the new MPLS header (expects 0x8847 or 0x8848)
5704 * @mac_len: length of the MAC header
5705 * @ethernet: flag to indicate if the resulting packet after skb_mpls_push is
5706 * ethernet
5707 *
5708 * Expects skb->data at mac header.
5709 *
5710 * Returns 0 on success, -errno otherwise.
5711 */
skb_mpls_push(struct sk_buff * skb,__be32 mpls_lse,__be16 mpls_proto,int mac_len,bool ethernet)5712 int skb_mpls_push(struct sk_buff *skb, __be32 mpls_lse, __be16 mpls_proto,
5713 int mac_len, bool ethernet)
5714 {
5715 struct mpls_shim_hdr *lse;
5716 int err;
5717
5718 if (unlikely(!eth_p_mpls(mpls_proto)))
5719 return -EINVAL;
5720
5721 /* Networking stack does not allow simultaneous Tunnel and MPLS GSO. */
5722 if (skb->encapsulation)
5723 return -EINVAL;
5724
5725 err = skb_cow_head(skb, MPLS_HLEN);
5726 if (unlikely(err))
5727 return err;
5728
5729 if (!skb->inner_protocol) {
5730 skb_set_inner_network_header(skb, skb_network_offset(skb));
5731 skb_set_inner_protocol(skb, skb->protocol);
5732 }
5733
5734 skb_push(skb, MPLS_HLEN);
5735 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
5736 mac_len);
5737 skb_reset_mac_header(skb);
5738 skb_set_network_header(skb, mac_len);
5739 skb_reset_mac_len(skb);
5740
5741 lse = mpls_hdr(skb);
5742 lse->label_stack_entry = mpls_lse;
5743 skb_postpush_rcsum(skb, lse, MPLS_HLEN);
5744
5745 if (ethernet && mac_len >= ETH_HLEN)
5746 skb_mod_eth_type(skb, eth_hdr(skb), mpls_proto);
5747 skb->protocol = mpls_proto;
5748
5749 return 0;
5750 }
5751 EXPORT_SYMBOL_GPL(skb_mpls_push);
5752
5753 /**
5754 * skb_mpls_pop() - pop the outermost MPLS header
5755 *
5756 * @skb: buffer
5757 * @next_proto: ethertype of header after popped MPLS header
5758 * @mac_len: length of the MAC header
5759 * @ethernet: flag to indicate if the packet is ethernet
5760 *
5761 * Expects skb->data at mac header.
5762 *
5763 * Returns 0 on success, -errno otherwise.
5764 */
skb_mpls_pop(struct sk_buff * skb,__be16 next_proto,int mac_len,bool ethernet)5765 int skb_mpls_pop(struct sk_buff *skb, __be16 next_proto, int mac_len,
5766 bool ethernet)
5767 {
5768 int err;
5769
5770 if (unlikely(!eth_p_mpls(skb->protocol)))
5771 return 0;
5772
5773 err = skb_ensure_writable(skb, mac_len + MPLS_HLEN);
5774 if (unlikely(err))
5775 return err;
5776
5777 skb_postpull_rcsum(skb, mpls_hdr(skb), MPLS_HLEN);
5778 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
5779 mac_len);
5780
5781 __skb_pull(skb, MPLS_HLEN);
5782 skb_reset_mac_header(skb);
5783 skb_set_network_header(skb, mac_len);
5784
5785 if (ethernet && mac_len >= ETH_HLEN) {
5786 struct ethhdr *hdr;
5787
5788 /* use mpls_hdr() to get ethertype to account for VLANs. */
5789 hdr = (struct ethhdr *)((void *)mpls_hdr(skb) - ETH_HLEN);
5790 skb_mod_eth_type(skb, hdr, next_proto);
5791 }
5792 skb->protocol = next_proto;
5793
5794 return 0;
5795 }
5796 EXPORT_SYMBOL_GPL(skb_mpls_pop);
5797
5798 /**
5799 * skb_mpls_update_lse() - modify outermost MPLS header and update csum
5800 *
5801 * @skb: buffer
5802 * @mpls_lse: new MPLS label stack entry to update to
5803 *
5804 * Expects skb->data at mac header.
5805 *
5806 * Returns 0 on success, -errno otherwise.
5807 */
skb_mpls_update_lse(struct sk_buff * skb,__be32 mpls_lse)5808 int skb_mpls_update_lse(struct sk_buff *skb, __be32 mpls_lse)
5809 {
5810 int err;
5811
5812 if (unlikely(!eth_p_mpls(skb->protocol)))
5813 return -EINVAL;
5814
5815 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
5816 if (unlikely(err))
5817 return err;
5818
5819 if (skb->ip_summed == CHECKSUM_COMPLETE) {
5820 __be32 diff[] = { ~mpls_hdr(skb)->label_stack_entry, mpls_lse };
5821
5822 skb->csum = csum_partial((char *)diff, sizeof(diff), skb->csum);
5823 }
5824
5825 mpls_hdr(skb)->label_stack_entry = mpls_lse;
5826
5827 return 0;
5828 }
5829 EXPORT_SYMBOL_GPL(skb_mpls_update_lse);
5830
5831 /**
5832 * skb_mpls_dec_ttl() - decrement the TTL of the outermost MPLS header
5833 *
5834 * @skb: buffer
5835 *
5836 * Expects skb->data at mac header.
5837 *
5838 * Returns 0 on success, -errno otherwise.
5839 */
skb_mpls_dec_ttl(struct sk_buff * skb)5840 int skb_mpls_dec_ttl(struct sk_buff *skb)
5841 {
5842 u32 lse;
5843 u8 ttl;
5844
5845 if (unlikely(!eth_p_mpls(skb->protocol)))
5846 return -EINVAL;
5847
5848 if (!pskb_may_pull(skb, skb_network_offset(skb) + MPLS_HLEN))
5849 return -ENOMEM;
5850
5851 lse = be32_to_cpu(mpls_hdr(skb)->label_stack_entry);
5852 ttl = (lse & MPLS_LS_TTL_MASK) >> MPLS_LS_TTL_SHIFT;
5853 if (!--ttl)
5854 return -EINVAL;
5855
5856 lse &= ~MPLS_LS_TTL_MASK;
5857 lse |= ttl << MPLS_LS_TTL_SHIFT;
5858
5859 return skb_mpls_update_lse(skb, cpu_to_be32(lse));
5860 }
5861 EXPORT_SYMBOL_GPL(skb_mpls_dec_ttl);
5862
5863 /**
5864 * alloc_skb_with_frags - allocate skb with page frags
5865 *
5866 * @header_len: size of linear part
5867 * @data_len: needed length in frags
5868 * @max_page_order: max page order desired.
5869 * @errcode: pointer to error code if any
5870 * @gfp_mask: allocation mask
5871 *
5872 * This can be used to allocate a paged skb, given a maximal order for frags.
5873 */
alloc_skb_with_frags(unsigned long header_len,unsigned long data_len,int max_page_order,int * errcode,gfp_t gfp_mask)5874 struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
5875 unsigned long data_len,
5876 int max_page_order,
5877 int *errcode,
5878 gfp_t gfp_mask)
5879 {
5880 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
5881 unsigned long chunk;
5882 struct sk_buff *skb;
5883 struct page *page;
5884 int i;
5885
5886 *errcode = -EMSGSIZE;
5887 /* Note this test could be relaxed, if we succeed to allocate
5888 * high order pages...
5889 */
5890 if (npages > MAX_SKB_FRAGS)
5891 return NULL;
5892
5893 *errcode = -ENOBUFS;
5894 skb = alloc_skb(header_len, gfp_mask);
5895 if (!skb)
5896 return NULL;
5897
5898 skb->truesize += npages << PAGE_SHIFT;
5899
5900 for (i = 0; npages > 0; i++) {
5901 int order = max_page_order;
5902
5903 while (order) {
5904 if (npages >= 1 << order) {
5905 page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
5906 __GFP_COMP |
5907 __GFP_NOWARN,
5908 order);
5909 if (page)
5910 goto fill_page;
5911 /* Do not retry other high order allocations */
5912 order = 1;
5913 max_page_order = 0;
5914 }
5915 order--;
5916 }
5917 page = alloc_page(gfp_mask);
5918 if (!page)
5919 goto failure;
5920 fill_page:
5921 chunk = min_t(unsigned long, data_len,
5922 PAGE_SIZE << order);
5923 skb_fill_page_desc(skb, i, page, 0, chunk);
5924 data_len -= chunk;
5925 npages -= 1 << order;
5926 }
5927 return skb;
5928
5929 failure:
5930 kfree_skb(skb);
5931 return NULL;
5932 }
5933 EXPORT_SYMBOL(alloc_skb_with_frags);
5934
5935 /* carve out the first off bytes from skb when off < headlen */
pskb_carve_inside_header(struct sk_buff * skb,const u32 off,const int headlen,gfp_t gfp_mask)5936 static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
5937 const int headlen, gfp_t gfp_mask)
5938 {
5939 int i;
5940 int size = skb_end_offset(skb);
5941 int new_hlen = headlen - off;
5942 u8 *data;
5943
5944 size = SKB_DATA_ALIGN(size);
5945
5946 if (skb_pfmemalloc(skb))
5947 gfp_mask |= __GFP_MEMALLOC;
5948 data = kmalloc_reserve(size +
5949 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
5950 gfp_mask, NUMA_NO_NODE, NULL);
5951 if (!data)
5952 return -ENOMEM;
5953
5954 size = SKB_WITH_OVERHEAD(ksize(data));
5955
5956 /* Copy real data, and all frags */
5957 skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
5958 skb->len -= off;
5959
5960 memcpy((struct skb_shared_info *)(data + size),
5961 skb_shinfo(skb),
5962 offsetof(struct skb_shared_info,
5963 frags[skb_shinfo(skb)->nr_frags]));
5964 if (skb_cloned(skb)) {
5965 /* drop the old head gracefully */
5966 if (skb_orphan_frags(skb, gfp_mask)) {
5967 kfree(data);
5968 return -ENOMEM;
5969 }
5970 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
5971 skb_frag_ref(skb, i);
5972 if (skb_has_frag_list(skb))
5973 skb_clone_fraglist(skb);
5974 skb_release_data(skb);
5975 } else {
5976 /* we can reuse existing recount- all we did was
5977 * relocate values
5978 */
5979 skb_free_head(skb);
5980 }
5981
5982 skb->head = data;
5983 skb->data = data;
5984 skb->head_frag = 0;
5985 #ifdef NET_SKBUFF_DATA_USES_OFFSET
5986 skb->end = size;
5987 #else
5988 skb->end = skb->head + size;
5989 #endif
5990 skb_set_tail_pointer(skb, skb_headlen(skb));
5991 skb_headers_offset_update(skb, 0);
5992 skb->cloned = 0;
5993 skb->hdr_len = 0;
5994 skb->nohdr = 0;
5995 atomic_set(&skb_shinfo(skb)->dataref, 1);
5996
5997 return 0;
5998 }
5999
6000 static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
6001
6002 /* carve out the first eat bytes from skb's frag_list. May recurse into
6003 * pskb_carve()
6004 */
pskb_carve_frag_list(struct sk_buff * skb,struct skb_shared_info * shinfo,int eat,gfp_t gfp_mask)6005 static int pskb_carve_frag_list(struct sk_buff *skb,
6006 struct skb_shared_info *shinfo, int eat,
6007 gfp_t gfp_mask)
6008 {
6009 struct sk_buff *list = shinfo->frag_list;
6010 struct sk_buff *clone = NULL;
6011 struct sk_buff *insp = NULL;
6012
6013 do {
6014 if (!list) {
6015 pr_err("Not enough bytes to eat. Want %d\n", eat);
6016 return -EFAULT;
6017 }
6018 if (list->len <= eat) {
6019 /* Eaten as whole. */
6020 eat -= list->len;
6021 list = list->next;
6022 insp = list;
6023 } else {
6024 /* Eaten partially. */
6025 if (skb_shared(list)) {
6026 clone = skb_clone(list, gfp_mask);
6027 if (!clone)
6028 return -ENOMEM;
6029 insp = list->next;
6030 list = clone;
6031 } else {
6032 /* This may be pulled without problems. */
6033 insp = list;
6034 }
6035 if (pskb_carve(list, eat, gfp_mask) < 0) {
6036 kfree_skb(clone);
6037 return -ENOMEM;
6038 }
6039 break;
6040 }
6041 } while (eat);
6042
6043 /* Free pulled out fragments. */
6044 while ((list = shinfo->frag_list) != insp) {
6045 shinfo->frag_list = list->next;
6046 consume_skb(list);
6047 }
6048 /* And insert new clone at head. */
6049 if (clone) {
6050 clone->next = list;
6051 shinfo->frag_list = clone;
6052 }
6053 return 0;
6054 }
6055
6056 /* carve off first len bytes from skb. Split line (off) is in the
6057 * non-linear part of skb
6058 */
pskb_carve_inside_nonlinear(struct sk_buff * skb,const u32 off,int pos,gfp_t gfp_mask)6059 static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
6060 int pos, gfp_t gfp_mask)
6061 {
6062 int i, k = 0;
6063 int size = skb_end_offset(skb);
6064 u8 *data;
6065 const int nfrags = skb_shinfo(skb)->nr_frags;
6066 struct skb_shared_info *shinfo;
6067
6068 size = SKB_DATA_ALIGN(size);
6069
6070 if (skb_pfmemalloc(skb))
6071 gfp_mask |= __GFP_MEMALLOC;
6072 data = kmalloc_reserve(size +
6073 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
6074 gfp_mask, NUMA_NO_NODE, NULL);
6075 if (!data)
6076 return -ENOMEM;
6077
6078 size = SKB_WITH_OVERHEAD(ksize(data));
6079
6080 memcpy((struct skb_shared_info *)(data + size),
6081 skb_shinfo(skb), offsetof(struct skb_shared_info, frags[0]));
6082 if (skb_orphan_frags(skb, gfp_mask)) {
6083 kfree(data);
6084 return -ENOMEM;
6085 }
6086 shinfo = (struct skb_shared_info *)(data + size);
6087 for (i = 0; i < nfrags; i++) {
6088 int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
6089
6090 if (pos + fsize > off) {
6091 shinfo->frags[k] = skb_shinfo(skb)->frags[i];
6092
6093 if (pos < off) {
6094 /* Split frag.
6095 * We have two variants in this case:
6096 * 1. Move all the frag to the second
6097 * part, if it is possible. F.e.
6098 * this approach is mandatory for TUX,
6099 * where splitting is expensive.
6100 * 2. Split is accurately. We make this.
6101 */
6102 skb_frag_off_add(&shinfo->frags[0], off - pos);
6103 skb_frag_size_sub(&shinfo->frags[0], off - pos);
6104 }
6105 skb_frag_ref(skb, i);
6106 k++;
6107 }
6108 pos += fsize;
6109 }
6110 shinfo->nr_frags = k;
6111 if (skb_has_frag_list(skb))
6112 skb_clone_fraglist(skb);
6113
6114 /* split line is in frag list */
6115 if (k == 0 && pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask)) {
6116 /* skb_frag_unref() is not needed here as shinfo->nr_frags = 0. */
6117 if (skb_has_frag_list(skb))
6118 kfree_skb_list(skb_shinfo(skb)->frag_list);
6119 kfree(data);
6120 return -ENOMEM;
6121 }
6122 skb_release_data(skb);
6123
6124 skb->head = data;
6125 skb->head_frag = 0;
6126 skb->data = data;
6127 #ifdef NET_SKBUFF_DATA_USES_OFFSET
6128 skb->end = size;
6129 #else
6130 skb->end = skb->head + size;
6131 #endif
6132 skb_reset_tail_pointer(skb);
6133 skb_headers_offset_update(skb, 0);
6134 skb->cloned = 0;
6135 skb->hdr_len = 0;
6136 skb->nohdr = 0;
6137 skb->len -= off;
6138 skb->data_len = skb->len;
6139 atomic_set(&skb_shinfo(skb)->dataref, 1);
6140 return 0;
6141 }
6142
6143 /* remove len bytes from the beginning of the skb */
pskb_carve(struct sk_buff * skb,const u32 len,gfp_t gfp)6144 static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
6145 {
6146 int headlen = skb_headlen(skb);
6147
6148 if (len < headlen)
6149 return pskb_carve_inside_header(skb, len, headlen, gfp);
6150 else
6151 return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
6152 }
6153
6154 /* Extract to_copy bytes starting at off from skb, and return this in
6155 * a new skb
6156 */
pskb_extract(struct sk_buff * skb,int off,int to_copy,gfp_t gfp)6157 struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
6158 int to_copy, gfp_t gfp)
6159 {
6160 struct sk_buff *clone = skb_clone(skb, gfp);
6161
6162 if (!clone)
6163 return NULL;
6164
6165 if (pskb_carve(clone, off, gfp) < 0 ||
6166 pskb_trim(clone, to_copy)) {
6167 kfree_skb(clone);
6168 return NULL;
6169 }
6170 return clone;
6171 }
6172 EXPORT_SYMBOL(pskb_extract);
6173
6174 /**
6175 * skb_condense - try to get rid of fragments/frag_list if possible
6176 * @skb: buffer
6177 *
6178 * Can be used to save memory before skb is added to a busy queue.
6179 * If packet has bytes in frags and enough tail room in skb->head,
6180 * pull all of them, so that we can free the frags right now and adjust
6181 * truesize.
6182 * Notes:
6183 * We do not reallocate skb->head thus can not fail.
6184 * Caller must re-evaluate skb->truesize if needed.
6185 */
skb_condense(struct sk_buff * skb)6186 void skb_condense(struct sk_buff *skb)
6187 {
6188 if (skb->data_len) {
6189 if (skb->data_len > skb->end - skb->tail ||
6190 skb_cloned(skb))
6191 return;
6192
6193 /* Nice, we can free page frag(s) right now */
6194 __pskb_pull_tail(skb, skb->data_len);
6195 }
6196 /* At this point, skb->truesize might be over estimated,
6197 * because skb had a fragment, and fragments do not tell
6198 * their truesize.
6199 * When we pulled its content into skb->head, fragment
6200 * was freed, but __pskb_pull_tail() could not possibly
6201 * adjust skb->truesize, not knowing the frag truesize.
6202 */
6203 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
6204 }
6205
6206 #ifdef CONFIG_SKB_EXTENSIONS
skb_ext_get_ptr(struct skb_ext * ext,enum skb_ext_id id)6207 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id)
6208 {
6209 return (void *)ext + (ext->offset[id] * SKB_EXT_ALIGN_VALUE);
6210 }
6211
6212 /**
6213 * __skb_ext_alloc - allocate a new skb extensions storage
6214 *
6215 * @flags: See kmalloc().
6216 *
6217 * Returns the newly allocated pointer. The pointer can later attached to a
6218 * skb via __skb_ext_set().
6219 * Note: caller must handle the skb_ext as an opaque data.
6220 */
__skb_ext_alloc(gfp_t flags)6221 struct skb_ext *__skb_ext_alloc(gfp_t flags)
6222 {
6223 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags);
6224
6225 if (new) {
6226 memset(new->offset, 0, sizeof(new->offset));
6227 refcount_set(&new->refcnt, 1);
6228 }
6229
6230 return new;
6231 }
6232
skb_ext_maybe_cow(struct skb_ext * old,unsigned int old_active)6233 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old,
6234 unsigned int old_active)
6235 {
6236 struct skb_ext *new;
6237
6238 if (refcount_read(&old->refcnt) == 1)
6239 return old;
6240
6241 new = kmem_cache_alloc(skbuff_ext_cache, GFP_ATOMIC);
6242 if (!new)
6243 return NULL;
6244
6245 memcpy(new, old, old->chunks * SKB_EXT_ALIGN_VALUE);
6246 refcount_set(&new->refcnt, 1);
6247
6248 #ifdef CONFIG_XFRM
6249 if (old_active & (1 << SKB_EXT_SEC_PATH)) {
6250 struct sec_path *sp = skb_ext_get_ptr(old, SKB_EXT_SEC_PATH);
6251 unsigned int i;
6252
6253 for (i = 0; i < sp->len; i++)
6254 xfrm_state_hold(sp->xvec[i]);
6255 }
6256 #endif
6257 __skb_ext_put(old);
6258 return new;
6259 }
6260
6261 /**
6262 * __skb_ext_set - attach the specified extension storage to this skb
6263 * @skb: buffer
6264 * @id: extension id
6265 * @ext: extension storage previously allocated via __skb_ext_alloc()
6266 *
6267 * Existing extensions, if any, are cleared.
6268 *
6269 * Returns the pointer to the extension.
6270 */
__skb_ext_set(struct sk_buff * skb,enum skb_ext_id id,struct skb_ext * ext)6271 void *__skb_ext_set(struct sk_buff *skb, enum skb_ext_id id,
6272 struct skb_ext *ext)
6273 {
6274 unsigned int newlen, newoff = SKB_EXT_CHUNKSIZEOF(*ext);
6275
6276 skb_ext_put(skb);
6277 newlen = newoff + skb_ext_type_len[id];
6278 ext->chunks = newlen;
6279 ext->offset[id] = newoff;
6280 skb->extensions = ext;
6281 skb->active_extensions = 1 << id;
6282 return skb_ext_get_ptr(ext, id);
6283 }
6284
6285 /**
6286 * skb_ext_add - allocate space for given extension, COW if needed
6287 * @skb: buffer
6288 * @id: extension to allocate space for
6289 *
6290 * Allocates enough space for the given extension.
6291 * If the extension is already present, a pointer to that extension
6292 * is returned.
6293 *
6294 * If the skb was cloned, COW applies and the returned memory can be
6295 * modified without changing the extension space of clones buffers.
6296 *
6297 * Returns pointer to the extension or NULL on allocation failure.
6298 */
skb_ext_add(struct sk_buff * skb,enum skb_ext_id id)6299 void *skb_ext_add(struct sk_buff *skb, enum skb_ext_id id)
6300 {
6301 struct skb_ext *new, *old = NULL;
6302 unsigned int newlen, newoff;
6303
6304 if (skb->active_extensions) {
6305 old = skb->extensions;
6306
6307 new = skb_ext_maybe_cow(old, skb->active_extensions);
6308 if (!new)
6309 return NULL;
6310
6311 if (__skb_ext_exist(new, id))
6312 goto set_active;
6313
6314 newoff = new->chunks;
6315 } else {
6316 newoff = SKB_EXT_CHUNKSIZEOF(*new);
6317
6318 new = __skb_ext_alloc(GFP_ATOMIC);
6319 if (!new)
6320 return NULL;
6321 }
6322
6323 newlen = newoff + skb_ext_type_len[id];
6324 new->chunks = newlen;
6325 new->offset[id] = newoff;
6326 set_active:
6327 skb->extensions = new;
6328 skb->active_extensions |= 1 << id;
6329 return skb_ext_get_ptr(new, id);
6330 }
6331 EXPORT_SYMBOL(skb_ext_add);
6332
6333 #ifdef CONFIG_XFRM
skb_ext_put_sp(struct sec_path * sp)6334 static void skb_ext_put_sp(struct sec_path *sp)
6335 {
6336 unsigned int i;
6337
6338 for (i = 0; i < sp->len; i++)
6339 xfrm_state_put(sp->xvec[i]);
6340 }
6341 #endif
6342
__skb_ext_del(struct sk_buff * skb,enum skb_ext_id id)6343 void __skb_ext_del(struct sk_buff *skb, enum skb_ext_id id)
6344 {
6345 struct skb_ext *ext = skb->extensions;
6346
6347 skb->active_extensions &= ~(1 << id);
6348 if (skb->active_extensions == 0) {
6349 skb->extensions = NULL;
6350 __skb_ext_put(ext);
6351 #ifdef CONFIG_XFRM
6352 } else if (id == SKB_EXT_SEC_PATH &&
6353 refcount_read(&ext->refcnt) == 1) {
6354 struct sec_path *sp = skb_ext_get_ptr(ext, SKB_EXT_SEC_PATH);
6355
6356 skb_ext_put_sp(sp);
6357 sp->len = 0;
6358 #endif
6359 }
6360 }
6361 EXPORT_SYMBOL(__skb_ext_del);
6362
__skb_ext_put(struct skb_ext * ext)6363 void __skb_ext_put(struct skb_ext *ext)
6364 {
6365 /* If this is last clone, nothing can increment
6366 * it after check passes. Avoids one atomic op.
6367 */
6368 if (refcount_read(&ext->refcnt) == 1)
6369 goto free_now;
6370
6371 if (!refcount_dec_and_test(&ext->refcnt))
6372 return;
6373 free_now:
6374 #ifdef CONFIG_XFRM
6375 if (__skb_ext_exist(ext, SKB_EXT_SEC_PATH))
6376 skb_ext_put_sp(skb_ext_get_ptr(ext, SKB_EXT_SEC_PATH));
6377 #endif
6378
6379 kmem_cache_free(skbuff_ext_cache, ext);
6380 }
6381 EXPORT_SYMBOL(__skb_ext_put);
6382 #endif /* CONFIG_SKB_EXTENSIONS */
6383