1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Routines having to do with the 'struct sk_buff' memory handlers.
9 * Alan Cox : Fixed the worst of the load
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
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).
32 * The functions in this file will not compile correctly with gcc 2.4.x
35 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
37 #include <linux/module.h>
38 #include <linux/types.h>
39 #include <linux/kernel.h>
41 #include <linux/interrupt.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>
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 #include <linux/kcov.h>
65 #include <net/protocol.h>
68 #include <net/checksum.h>
69 #include <net/ip6_checksum.h>
72 #include <net/mptcp.h>
74 #include <net/page_pool.h>
76 #include <linux/uaccess.h>
77 #include <trace/events/skb.h>
78 #include <linux/highmem.h>
79 #include <linux/capability.h>
80 #include <linux/user_namespace.h>
81 #include <linux/indirect_call_wrapper.h>
84 #include "sock_destructor.h"
86 struct kmem_cache *skbuff_head_cache __ro_after_init;
87 static struct kmem_cache *skbuff_fclone_cache __ro_after_init;
88 #ifdef CONFIG_SKB_EXTENSIONS
89 static struct kmem_cache *skbuff_ext_cache __ro_after_init;
91 int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
92 EXPORT_SYMBOL(sysctl_max_skb_frags);
95 * skb_panic - private function for out-of-line support
99 * @msg: skb_over_panic or skb_under_panic
101 * Out-of-line support for skb_put() and skb_push().
102 * Called via the wrapper skb_over_panic() or skb_under_panic().
103 * Keep out of line to prevent kernel bloat.
104 * __builtin_return_address is not used because it is not always reliable.
106 static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
109 pr_emerg("%s: text:%px len:%d put:%d head:%px data:%px tail:%#lx end:%#lx dev:%s\n",
110 msg, addr, skb->len, sz, skb->head, skb->data,
111 (unsigned long)skb->tail, (unsigned long)skb->end,
112 skb->dev ? skb->dev->name : "<NULL>");
116 static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
118 skb_panic(skb, sz, addr, __func__);
121 static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
123 skb_panic(skb, sz, addr, __func__);
126 #define NAPI_SKB_CACHE_SIZE 64
127 #define NAPI_SKB_CACHE_BULK 16
128 #define NAPI_SKB_CACHE_HALF (NAPI_SKB_CACHE_SIZE / 2)
130 struct napi_alloc_cache {
131 struct page_frag_cache page;
132 unsigned int skb_count;
133 void *skb_cache[NAPI_SKB_CACHE_SIZE];
136 static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
137 static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
139 void *__napi_alloc_frag_align(unsigned int fragsz, unsigned int align_mask)
141 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
143 fragsz = SKB_DATA_ALIGN(fragsz);
145 return page_frag_alloc_align(&nc->page, fragsz, GFP_ATOMIC, align_mask);
147 EXPORT_SYMBOL(__napi_alloc_frag_align);
149 void *__netdev_alloc_frag_align(unsigned int fragsz, unsigned int align_mask)
153 fragsz = SKB_DATA_ALIGN(fragsz);
154 if (in_hardirq() || irqs_disabled()) {
155 struct page_frag_cache *nc = this_cpu_ptr(&netdev_alloc_cache);
157 data = page_frag_alloc_align(nc, fragsz, GFP_ATOMIC, align_mask);
159 struct napi_alloc_cache *nc;
162 nc = this_cpu_ptr(&napi_alloc_cache);
163 data = page_frag_alloc_align(&nc->page, fragsz, GFP_ATOMIC, align_mask);
168 EXPORT_SYMBOL(__netdev_alloc_frag_align);
170 static struct sk_buff *napi_skb_cache_get(void)
172 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
175 if (unlikely(!nc->skb_count))
176 nc->skb_count = kmem_cache_alloc_bulk(skbuff_head_cache,
180 if (unlikely(!nc->skb_count))
183 skb = nc->skb_cache[--nc->skb_count];
184 kasan_unpoison_object_data(skbuff_head_cache, skb);
189 /* Caller must provide SKB that is memset cleared */
190 static void __build_skb_around(struct sk_buff *skb, void *data,
191 unsigned int frag_size)
193 struct skb_shared_info *shinfo;
194 unsigned int size = frag_size ? : ksize(data);
196 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
198 /* Assumes caller memset cleared SKB */
199 skb->truesize = SKB_TRUESIZE(size);
200 refcount_set(&skb->users, 1);
203 skb_reset_tail_pointer(skb);
204 skb->end = skb->tail + size;
205 skb->mac_header = (typeof(skb->mac_header))~0U;
206 skb->transport_header = (typeof(skb->transport_header))~0U;
208 /* make sure we initialize shinfo sequentially */
209 shinfo = skb_shinfo(skb);
210 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
211 atomic_set(&shinfo->dataref, 1);
213 skb_set_kcov_handle(skb, kcov_common_handle());
217 * __build_skb - build a network buffer
218 * @data: data buffer provided by caller
219 * @frag_size: size of data, or 0 if head was kmalloced
221 * Allocate a new &sk_buff. Caller provides space holding head and
222 * skb_shared_info. @data must have been allocated by kmalloc() only if
223 * @frag_size is 0, otherwise data should come from the page allocator
225 * The return is the new skb buffer.
226 * On a failure the return is %NULL, and @data is not freed.
228 * Before IO, driver allocates only data buffer where NIC put incoming frame
229 * Driver should add room at head (NET_SKB_PAD) and
230 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
231 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
232 * before giving packet to stack.
233 * RX rings only contains data buffers, not full skbs.
235 struct sk_buff *__build_skb(void *data, unsigned int frag_size)
239 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
243 memset(skb, 0, offsetof(struct sk_buff, tail));
244 __build_skb_around(skb, data, frag_size);
249 /* build_skb() is wrapper over __build_skb(), that specifically
250 * takes care of skb->head and skb->pfmemalloc
251 * This means that if @frag_size is not zero, then @data must be backed
252 * by a page fragment, not kmalloc() or vmalloc()
254 struct sk_buff *build_skb(void *data, unsigned int frag_size)
256 struct sk_buff *skb = __build_skb(data, frag_size);
258 if (skb && frag_size) {
260 if (page_is_pfmemalloc(virt_to_head_page(data)))
265 EXPORT_SYMBOL(build_skb);
268 * build_skb_around - build a network buffer around provided skb
269 * @skb: sk_buff provide by caller, must be memset cleared
270 * @data: data buffer provided by caller
271 * @frag_size: size of data, or 0 if head was kmalloced
273 struct sk_buff *build_skb_around(struct sk_buff *skb,
274 void *data, unsigned int frag_size)
279 __build_skb_around(skb, data, frag_size);
283 if (page_is_pfmemalloc(virt_to_head_page(data)))
288 EXPORT_SYMBOL(build_skb_around);
291 * __napi_build_skb - build a network buffer
292 * @data: data buffer provided by caller
293 * @frag_size: size of data, or 0 if head was kmalloced
295 * Version of __build_skb() that uses NAPI percpu caches to obtain
296 * skbuff_head instead of inplace allocation.
298 * Returns a new &sk_buff on success, %NULL on allocation failure.
300 static struct sk_buff *__napi_build_skb(void *data, unsigned int frag_size)
304 skb = napi_skb_cache_get();
308 memset(skb, 0, offsetof(struct sk_buff, tail));
309 __build_skb_around(skb, data, frag_size);
315 * napi_build_skb - build a network buffer
316 * @data: data buffer provided by caller
317 * @frag_size: size of data, or 0 if head was kmalloced
319 * Version of __napi_build_skb() that takes care of skb->head_frag
320 * and skb->pfmemalloc when the data is a page or page fragment.
322 * Returns a new &sk_buff on success, %NULL on allocation failure.
324 struct sk_buff *napi_build_skb(void *data, unsigned int frag_size)
326 struct sk_buff *skb = __napi_build_skb(data, frag_size);
328 if (likely(skb) && frag_size) {
330 skb_propagate_pfmemalloc(virt_to_head_page(data), skb);
335 EXPORT_SYMBOL(napi_build_skb);
338 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
339 * the caller if emergency pfmemalloc reserves are being used. If it is and
340 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
341 * may be used. Otherwise, the packet data may be discarded until enough
344 static void *kmalloc_reserve(size_t size, gfp_t flags, int node,
348 bool ret_pfmemalloc = false;
351 * Try a regular allocation, when that fails and we're not entitled
352 * to the reserves, fail.
354 obj = kmalloc_node_track_caller(size,
355 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
357 if (obj || !(gfp_pfmemalloc_allowed(flags)))
360 /* Try again but now we are using pfmemalloc reserves */
361 ret_pfmemalloc = true;
362 obj = kmalloc_node_track_caller(size, flags, node);
366 *pfmemalloc = ret_pfmemalloc;
371 /* Allocate a new skbuff. We do this ourselves so we can fill in a few
372 * 'private' fields and also do memory statistics to find all the
378 * __alloc_skb - allocate a network buffer
379 * @size: size to allocate
380 * @gfp_mask: allocation mask
381 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
382 * instead of head cache and allocate a cloned (child) skb.
383 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
384 * allocations in case the data is required for writeback
385 * @node: numa node to allocate memory on
387 * Allocate a new &sk_buff. The returned buffer has no headroom and a
388 * tail room of at least size bytes. The object has a reference count
389 * of one. The return is the buffer. On a failure the return is %NULL.
391 * Buffers may only be allocated from interrupts using a @gfp_mask of
394 struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
397 struct kmem_cache *cache;
403 cache = (flags & SKB_ALLOC_FCLONE)
404 ? skbuff_fclone_cache : skbuff_head_cache;
406 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
407 gfp_mask |= __GFP_MEMALLOC;
410 if ((flags & (SKB_ALLOC_FCLONE | SKB_ALLOC_NAPI)) == SKB_ALLOC_NAPI &&
411 likely(node == NUMA_NO_NODE || node == numa_mem_id()))
412 skb = napi_skb_cache_get();
414 skb = kmem_cache_alloc_node(cache, gfp_mask & ~GFP_DMA, node);
419 /* We do our best to align skb_shared_info on a separate cache
420 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
421 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
422 * Both skb->head and skb_shared_info are cache line aligned.
424 size = SKB_DATA_ALIGN(size);
425 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
426 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
429 /* kmalloc(size) might give us more room than requested.
430 * Put skb_shared_info exactly at the end of allocated zone,
431 * to allow max possible filling before reallocation.
434 size = SKB_WITH_OVERHEAD(osize);
435 prefetchw(data + size);
438 * Only clear those fields we need to clear, not those that we will
439 * actually initialise below. Hence, don't put any more fields after
440 * the tail pointer in struct sk_buff!
442 memset(skb, 0, offsetof(struct sk_buff, tail));
443 __build_skb_around(skb, data, osize);
444 skb->pfmemalloc = pfmemalloc;
446 if (flags & SKB_ALLOC_FCLONE) {
447 struct sk_buff_fclones *fclones;
449 fclones = container_of(skb, struct sk_buff_fclones, skb1);
451 skb->fclone = SKB_FCLONE_ORIG;
452 refcount_set(&fclones->fclone_ref, 1);
454 fclones->skb2.fclone = SKB_FCLONE_CLONE;
460 kmem_cache_free(cache, skb);
463 EXPORT_SYMBOL(__alloc_skb);
466 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
467 * @dev: network device to receive on
468 * @len: length to allocate
469 * @gfp_mask: get_free_pages mask, passed to alloc_skb
471 * Allocate a new &sk_buff and assign it a usage count of one. The
472 * buffer has NET_SKB_PAD headroom built in. Users should allocate
473 * the headroom they think they need without accounting for the
474 * built in space. The built in space is used for optimisations.
476 * %NULL is returned if there is no free memory.
478 struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
481 struct page_frag_cache *nc;
488 /* If requested length is either too small or too big,
489 * we use kmalloc() for skb->head allocation.
491 if (len <= SKB_WITH_OVERHEAD(1024) ||
492 len > SKB_WITH_OVERHEAD(PAGE_SIZE) ||
493 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
494 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
500 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
501 len = SKB_DATA_ALIGN(len);
503 if (sk_memalloc_socks())
504 gfp_mask |= __GFP_MEMALLOC;
506 if (in_hardirq() || irqs_disabled()) {
507 nc = this_cpu_ptr(&netdev_alloc_cache);
508 data = page_frag_alloc(nc, len, gfp_mask);
509 pfmemalloc = nc->pfmemalloc;
512 nc = this_cpu_ptr(&napi_alloc_cache.page);
513 data = page_frag_alloc(nc, len, gfp_mask);
514 pfmemalloc = nc->pfmemalloc;
521 skb = __build_skb(data, len);
522 if (unlikely(!skb)) {
532 skb_reserve(skb, NET_SKB_PAD);
538 EXPORT_SYMBOL(__netdev_alloc_skb);
541 * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
542 * @napi: napi instance this buffer was allocated for
543 * @len: length to allocate
544 * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
546 * Allocate a new sk_buff for use in NAPI receive. This buffer will
547 * attempt to allocate the head from a special reserved region used
548 * only for NAPI Rx allocation. By doing this we can save several
549 * CPU cycles by avoiding having to disable and re-enable IRQs.
551 * %NULL is returned if there is no free memory.
553 struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
556 struct napi_alloc_cache *nc;
560 len += NET_SKB_PAD + NET_IP_ALIGN;
562 /* If requested length is either too small or too big,
563 * we use kmalloc() for skb->head allocation.
565 if (len <= SKB_WITH_OVERHEAD(1024) ||
566 len > SKB_WITH_OVERHEAD(PAGE_SIZE) ||
567 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
568 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX | SKB_ALLOC_NAPI,
575 nc = this_cpu_ptr(&napi_alloc_cache);
576 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
577 len = SKB_DATA_ALIGN(len);
579 if (sk_memalloc_socks())
580 gfp_mask |= __GFP_MEMALLOC;
582 data = page_frag_alloc(&nc->page, len, gfp_mask);
586 skb = __napi_build_skb(data, len);
587 if (unlikely(!skb)) {
592 if (nc->page.pfmemalloc)
597 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
598 skb->dev = napi->dev;
603 EXPORT_SYMBOL(__napi_alloc_skb);
605 void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
606 int size, unsigned int truesize)
608 skb_fill_page_desc(skb, i, page, off, size);
610 skb->data_len += size;
611 skb->truesize += truesize;
613 EXPORT_SYMBOL(skb_add_rx_frag);
615 void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
616 unsigned int truesize)
618 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
620 skb_frag_size_add(frag, size);
622 skb->data_len += size;
623 skb->truesize += truesize;
625 EXPORT_SYMBOL(skb_coalesce_rx_frag);
627 static void skb_drop_list(struct sk_buff **listp)
629 kfree_skb_list(*listp);
633 static inline void skb_drop_fraglist(struct sk_buff *skb)
635 skb_drop_list(&skb_shinfo(skb)->frag_list);
638 static void skb_clone_fraglist(struct sk_buff *skb)
640 struct sk_buff *list;
642 skb_walk_frags(skb, list)
646 static void skb_free_head(struct sk_buff *skb)
648 unsigned char *head = skb->head;
650 if (skb->head_frag) {
651 if (skb_pp_recycle(skb, head))
659 static void skb_release_data(struct sk_buff *skb)
661 struct skb_shared_info *shinfo = skb_shinfo(skb);
665 atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
669 skb_zcopy_clear(skb, true);
671 for (i = 0; i < shinfo->nr_frags; i++)
672 __skb_frag_unref(&shinfo->frags[i], skb->pp_recycle);
674 if (shinfo->frag_list)
675 kfree_skb_list(shinfo->frag_list);
679 /* When we clone an SKB we copy the reycling bit. The pp_recycle
680 * bit is only set on the head though, so in order to avoid races
681 * while trying to recycle fragments on __skb_frag_unref() we need
682 * to make one SKB responsible for triggering the recycle path.
683 * So disable the recycling bit if an SKB is cloned and we have
684 * additional references to to the fragmented part of the SKB.
685 * Eventually the last SKB will have the recycling bit set and it's
686 * dataref set to 0, which will trigger the recycling
692 * Free an skbuff by memory without cleaning the state.
694 static void kfree_skbmem(struct sk_buff *skb)
696 struct sk_buff_fclones *fclones;
698 switch (skb->fclone) {
699 case SKB_FCLONE_UNAVAILABLE:
700 kmem_cache_free(skbuff_head_cache, skb);
703 case SKB_FCLONE_ORIG:
704 fclones = container_of(skb, struct sk_buff_fclones, skb1);
706 /* We usually free the clone (TX completion) before original skb
707 * This test would have no chance to be true for the clone,
708 * while here, branch prediction will be good.
710 if (refcount_read(&fclones->fclone_ref) == 1)
714 default: /* SKB_FCLONE_CLONE */
715 fclones = container_of(skb, struct sk_buff_fclones, skb2);
718 if (!refcount_dec_and_test(&fclones->fclone_ref))
721 kmem_cache_free(skbuff_fclone_cache, fclones);
724 void skb_release_head_state(struct sk_buff *skb)
727 if (skb->destructor) {
728 WARN_ON(in_hardirq());
729 skb->destructor(skb);
731 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
732 nf_conntrack_put(skb_nfct(skb));
737 /* Free everything but the sk_buff shell. */
738 static void skb_release_all(struct sk_buff *skb)
740 skb_release_head_state(skb);
741 if (likely(skb->head))
742 skb_release_data(skb);
746 * __kfree_skb - private function
749 * Free an sk_buff. Release anything attached to the buffer.
750 * Clean the state. This is an internal helper function. Users should
751 * always call kfree_skb
754 void __kfree_skb(struct sk_buff *skb)
756 skb_release_all(skb);
759 EXPORT_SYMBOL(__kfree_skb);
762 * kfree_skb - free an sk_buff
763 * @skb: buffer to free
765 * Drop a reference to the buffer and free it if the usage count has
768 void kfree_skb(struct sk_buff *skb)
773 trace_kfree_skb(skb, __builtin_return_address(0));
776 EXPORT_SYMBOL(kfree_skb);
778 void kfree_skb_list(struct sk_buff *segs)
781 struct sk_buff *next = segs->next;
787 EXPORT_SYMBOL(kfree_skb_list);
789 /* Dump skb information and contents.
791 * Must only be called from net_ratelimit()-ed paths.
793 * Dumps whole packets if full_pkt, only headers otherwise.
795 void skb_dump(const char *level, const struct sk_buff *skb, bool full_pkt)
797 struct skb_shared_info *sh = skb_shinfo(skb);
798 struct net_device *dev = skb->dev;
799 struct sock *sk = skb->sk;
800 struct sk_buff *list_skb;
801 bool has_mac, has_trans;
802 int headroom, tailroom;
808 len = min_t(int, skb->len, MAX_HEADER + 128);
810 headroom = skb_headroom(skb);
811 tailroom = skb_tailroom(skb);
813 has_mac = skb_mac_header_was_set(skb);
814 has_trans = skb_transport_header_was_set(skb);
816 printk("%sskb len=%u headroom=%u headlen=%u tailroom=%u\n"
817 "mac=(%d,%d) net=(%d,%d) trans=%d\n"
818 "shinfo(txflags=%u nr_frags=%u gso(size=%hu type=%u segs=%hu))\n"
819 "csum(0x%x ip_summed=%u complete_sw=%u valid=%u level=%u)\n"
820 "hash(0x%x sw=%u l4=%u) proto=0x%04x pkttype=%u iif=%d\n",
821 level, skb->len, headroom, skb_headlen(skb), tailroom,
822 has_mac ? skb->mac_header : -1,
823 has_mac ? skb_mac_header_len(skb) : -1,
825 has_trans ? skb_network_header_len(skb) : -1,
826 has_trans ? skb->transport_header : -1,
827 sh->tx_flags, sh->nr_frags,
828 sh->gso_size, sh->gso_type, sh->gso_segs,
829 skb->csum, skb->ip_summed, skb->csum_complete_sw,
830 skb->csum_valid, skb->csum_level,
831 skb->hash, skb->sw_hash, skb->l4_hash,
832 ntohs(skb->protocol), skb->pkt_type, skb->skb_iif);
835 printk("%sdev name=%s feat=0x%pNF\n",
836 level, dev->name, &dev->features);
838 printk("%ssk family=%hu type=%u proto=%u\n",
839 level, sk->sk_family, sk->sk_type, sk->sk_protocol);
841 if (full_pkt && headroom)
842 print_hex_dump(level, "skb headroom: ", DUMP_PREFIX_OFFSET,
843 16, 1, skb->head, headroom, false);
845 seg_len = min_t(int, skb_headlen(skb), len);
847 print_hex_dump(level, "skb linear: ", DUMP_PREFIX_OFFSET,
848 16, 1, skb->data, seg_len, false);
851 if (full_pkt && tailroom)
852 print_hex_dump(level, "skb tailroom: ", DUMP_PREFIX_OFFSET,
853 16, 1, skb_tail_pointer(skb), tailroom, false);
855 for (i = 0; len && i < skb_shinfo(skb)->nr_frags; i++) {
856 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
857 u32 p_off, p_len, copied;
861 skb_frag_foreach_page(frag, skb_frag_off(frag),
862 skb_frag_size(frag), p, p_off, p_len,
864 seg_len = min_t(int, p_len, len);
865 vaddr = kmap_atomic(p);
866 print_hex_dump(level, "skb frag: ",
868 16, 1, vaddr + p_off, seg_len, false);
869 kunmap_atomic(vaddr);
876 if (full_pkt && skb_has_frag_list(skb)) {
877 printk("skb fraglist:\n");
878 skb_walk_frags(skb, list_skb)
879 skb_dump(level, list_skb, true);
882 EXPORT_SYMBOL(skb_dump);
885 * skb_tx_error - report an sk_buff xmit error
886 * @skb: buffer that triggered an error
888 * Report xmit error if a device callback is tracking this skb.
889 * skb must be freed afterwards.
891 void skb_tx_error(struct sk_buff *skb)
893 skb_zcopy_clear(skb, true);
895 EXPORT_SYMBOL(skb_tx_error);
897 #ifdef CONFIG_TRACEPOINTS
899 * consume_skb - free an skbuff
900 * @skb: buffer to free
902 * Drop a ref to the buffer and free it if the usage count has hit zero
903 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
904 * is being dropped after a failure and notes that
906 void consume_skb(struct sk_buff *skb)
911 trace_consume_skb(skb);
914 EXPORT_SYMBOL(consume_skb);
918 * __consume_stateless_skb - free an skbuff, assuming it is stateless
919 * @skb: buffer to free
921 * Alike consume_skb(), but this variant assumes that this is the last
922 * skb reference and all the head states have been already dropped
924 void __consume_stateless_skb(struct sk_buff *skb)
926 trace_consume_skb(skb);
927 skb_release_data(skb);
931 static void napi_skb_cache_put(struct sk_buff *skb)
933 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
936 kasan_poison_object_data(skbuff_head_cache, skb);
937 nc->skb_cache[nc->skb_count++] = skb;
939 if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
940 for (i = NAPI_SKB_CACHE_HALF; i < NAPI_SKB_CACHE_SIZE; i++)
941 kasan_unpoison_object_data(skbuff_head_cache,
944 kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_HALF,
945 nc->skb_cache + NAPI_SKB_CACHE_HALF);
946 nc->skb_count = NAPI_SKB_CACHE_HALF;
950 void __kfree_skb_defer(struct sk_buff *skb)
952 skb_release_all(skb);
953 napi_skb_cache_put(skb);
956 void napi_skb_free_stolen_head(struct sk_buff *skb)
958 if (unlikely(skb->slow_gro)) {
965 napi_skb_cache_put(skb);
968 void napi_consume_skb(struct sk_buff *skb, int budget)
970 /* Zero budget indicate non-NAPI context called us, like netpoll */
971 if (unlikely(!budget)) {
972 dev_consume_skb_any(skb);
976 lockdep_assert_in_softirq();
981 /* if reaching here SKB is ready to free */
982 trace_consume_skb(skb);
984 /* if SKB is a clone, don't handle this case */
985 if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
990 skb_release_all(skb);
991 napi_skb_cache_put(skb);
993 EXPORT_SYMBOL(napi_consume_skb);
995 /* Make sure a field is enclosed inside headers_start/headers_end section */
996 #define CHECK_SKB_FIELD(field) \
997 BUILD_BUG_ON(offsetof(struct sk_buff, field) < \
998 offsetof(struct sk_buff, headers_start)); \
999 BUILD_BUG_ON(offsetof(struct sk_buff, field) > \
1000 offsetof(struct sk_buff, headers_end)); \
1002 static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1004 new->tstamp = old->tstamp;
1005 /* We do not copy old->sk */
1006 new->dev = old->dev;
1007 memcpy(new->cb, old->cb, sizeof(old->cb));
1008 skb_dst_copy(new, old);
1009 __skb_ext_copy(new, old);
1010 __nf_copy(new, old, false);
1012 /* Note : this field could be in headers_start/headers_end section
1013 * It is not yet because we do not want to have a 16 bit hole
1015 new->queue_mapping = old->queue_mapping;
1017 memcpy(&new->headers_start, &old->headers_start,
1018 offsetof(struct sk_buff, headers_end) -
1019 offsetof(struct sk_buff, headers_start));
1020 CHECK_SKB_FIELD(protocol);
1021 CHECK_SKB_FIELD(csum);
1022 CHECK_SKB_FIELD(hash);
1023 CHECK_SKB_FIELD(priority);
1024 CHECK_SKB_FIELD(skb_iif);
1025 CHECK_SKB_FIELD(vlan_proto);
1026 CHECK_SKB_FIELD(vlan_tci);
1027 CHECK_SKB_FIELD(transport_header);
1028 CHECK_SKB_FIELD(network_header);
1029 CHECK_SKB_FIELD(mac_header);
1030 CHECK_SKB_FIELD(inner_protocol);
1031 CHECK_SKB_FIELD(inner_transport_header);
1032 CHECK_SKB_FIELD(inner_network_header);
1033 CHECK_SKB_FIELD(inner_mac_header);
1034 CHECK_SKB_FIELD(mark);
1035 #ifdef CONFIG_NETWORK_SECMARK
1036 CHECK_SKB_FIELD(secmark);
1038 #ifdef CONFIG_NET_RX_BUSY_POLL
1039 CHECK_SKB_FIELD(napi_id);
1042 CHECK_SKB_FIELD(sender_cpu);
1044 #ifdef CONFIG_NET_SCHED
1045 CHECK_SKB_FIELD(tc_index);
1051 * You should not add any new code to this function. Add it to
1052 * __copy_skb_header above instead.
1054 static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
1056 #define C(x) n->x = skb->x
1058 n->next = n->prev = NULL;
1060 __copy_skb_header(n, skb);
1065 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
1071 n->destructor = NULL;
1078 refcount_set(&n->users, 1);
1080 atomic_inc(&(skb_shinfo(skb)->dataref));
1088 * alloc_skb_for_msg() - allocate sk_buff to wrap frag list forming a msg
1089 * @first: first sk_buff of the msg
1091 struct sk_buff *alloc_skb_for_msg(struct sk_buff *first)
1095 n = alloc_skb(0, GFP_ATOMIC);
1099 n->len = first->len;
1100 n->data_len = first->len;
1101 n->truesize = first->truesize;
1103 skb_shinfo(n)->frag_list = first;
1105 __copy_skb_header(n, first);
1106 n->destructor = NULL;
1110 EXPORT_SYMBOL_GPL(alloc_skb_for_msg);
1113 * skb_morph - morph one skb into another
1114 * @dst: the skb to receive the contents
1115 * @src: the skb to supply the contents
1117 * This is identical to skb_clone except that the target skb is
1118 * supplied by the user.
1120 * The target skb is returned upon exit.
1122 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
1124 skb_release_all(dst);
1125 return __skb_clone(dst, src);
1127 EXPORT_SYMBOL_GPL(skb_morph);
1129 int mm_account_pinned_pages(struct mmpin *mmp, size_t size)
1131 unsigned long max_pg, num_pg, new_pg, old_pg;
1132 struct user_struct *user;
1134 if (capable(CAP_IPC_LOCK) || !size)
1137 num_pg = (size >> PAGE_SHIFT) + 2; /* worst case */
1138 max_pg = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1139 user = mmp->user ? : current_user();
1142 old_pg = atomic_long_read(&user->locked_vm);
1143 new_pg = old_pg + num_pg;
1144 if (new_pg > max_pg)
1146 } while (atomic_long_cmpxchg(&user->locked_vm, old_pg, new_pg) !=
1150 mmp->user = get_uid(user);
1151 mmp->num_pg = num_pg;
1153 mmp->num_pg += num_pg;
1158 EXPORT_SYMBOL_GPL(mm_account_pinned_pages);
1160 void mm_unaccount_pinned_pages(struct mmpin *mmp)
1163 atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm);
1164 free_uid(mmp->user);
1167 EXPORT_SYMBOL_GPL(mm_unaccount_pinned_pages);
1169 struct ubuf_info *msg_zerocopy_alloc(struct sock *sk, size_t size)
1171 struct ubuf_info *uarg;
1172 struct sk_buff *skb;
1174 WARN_ON_ONCE(!in_task());
1176 skb = sock_omalloc(sk, 0, GFP_KERNEL);
1180 BUILD_BUG_ON(sizeof(*uarg) > sizeof(skb->cb));
1181 uarg = (void *)skb->cb;
1182 uarg->mmp.user = NULL;
1184 if (mm_account_pinned_pages(&uarg->mmp, size)) {
1189 uarg->callback = msg_zerocopy_callback;
1190 uarg->id = ((u32)atomic_inc_return(&sk->sk_zckey)) - 1;
1192 uarg->bytelen = size;
1194 uarg->flags = SKBFL_ZEROCOPY_FRAG;
1195 refcount_set(&uarg->refcnt, 1);
1200 EXPORT_SYMBOL_GPL(msg_zerocopy_alloc);
1202 static inline struct sk_buff *skb_from_uarg(struct ubuf_info *uarg)
1204 return container_of((void *)uarg, struct sk_buff, cb);
1207 struct ubuf_info *msg_zerocopy_realloc(struct sock *sk, size_t size,
1208 struct ubuf_info *uarg)
1211 const u32 byte_limit = 1 << 19; /* limit to a few TSO */
1214 /* realloc only when socket is locked (TCP, UDP cork),
1215 * so uarg->len and sk_zckey access is serialized
1217 if (!sock_owned_by_user(sk)) {
1222 bytelen = uarg->bytelen + size;
1223 if (uarg->len == USHRT_MAX - 1 || bytelen > byte_limit) {
1224 /* TCP can create new skb to attach new uarg */
1225 if (sk->sk_type == SOCK_STREAM)
1230 next = (u32)atomic_read(&sk->sk_zckey);
1231 if ((u32)(uarg->id + uarg->len) == next) {
1232 if (mm_account_pinned_pages(&uarg->mmp, size))
1235 uarg->bytelen = bytelen;
1236 atomic_set(&sk->sk_zckey, ++next);
1238 /* no extra ref when appending to datagram (MSG_MORE) */
1239 if (sk->sk_type == SOCK_STREAM)
1240 net_zcopy_get(uarg);
1247 return msg_zerocopy_alloc(sk, size);
1249 EXPORT_SYMBOL_GPL(msg_zerocopy_realloc);
1251 static bool skb_zerocopy_notify_extend(struct sk_buff *skb, u32 lo, u16 len)
1253 struct sock_exterr_skb *serr = SKB_EXT_ERR(skb);
1257 old_lo = serr->ee.ee_info;
1258 old_hi = serr->ee.ee_data;
1259 sum_len = old_hi - old_lo + 1ULL + len;
1261 if (sum_len >= (1ULL << 32))
1264 if (lo != old_hi + 1)
1267 serr->ee.ee_data += len;
1271 static void __msg_zerocopy_callback(struct ubuf_info *uarg)
1273 struct sk_buff *tail, *skb = skb_from_uarg(uarg);
1274 struct sock_exterr_skb *serr;
1275 struct sock *sk = skb->sk;
1276 struct sk_buff_head *q;
1277 unsigned long flags;
1282 mm_unaccount_pinned_pages(&uarg->mmp);
1284 /* if !len, there was only 1 call, and it was aborted
1285 * so do not queue a completion notification
1287 if (!uarg->len || sock_flag(sk, SOCK_DEAD))
1292 hi = uarg->id + len - 1;
1293 is_zerocopy = uarg->zerocopy;
1295 serr = SKB_EXT_ERR(skb);
1296 memset(serr, 0, sizeof(*serr));
1297 serr->ee.ee_errno = 0;
1298 serr->ee.ee_origin = SO_EE_ORIGIN_ZEROCOPY;
1299 serr->ee.ee_data = hi;
1300 serr->ee.ee_info = lo;
1302 serr->ee.ee_code |= SO_EE_CODE_ZEROCOPY_COPIED;
1304 q = &sk->sk_error_queue;
1305 spin_lock_irqsave(&q->lock, flags);
1306 tail = skb_peek_tail(q);
1307 if (!tail || SKB_EXT_ERR(tail)->ee.ee_origin != SO_EE_ORIGIN_ZEROCOPY ||
1308 !skb_zerocopy_notify_extend(tail, lo, len)) {
1309 __skb_queue_tail(q, skb);
1312 spin_unlock_irqrestore(&q->lock, flags);
1314 sk_error_report(sk);
1321 void msg_zerocopy_callback(struct sk_buff *skb, struct ubuf_info *uarg,
1324 uarg->zerocopy = uarg->zerocopy & success;
1326 if (refcount_dec_and_test(&uarg->refcnt))
1327 __msg_zerocopy_callback(uarg);
1329 EXPORT_SYMBOL_GPL(msg_zerocopy_callback);
1331 void msg_zerocopy_put_abort(struct ubuf_info *uarg, bool have_uref)
1333 struct sock *sk = skb_from_uarg(uarg)->sk;
1335 atomic_dec(&sk->sk_zckey);
1339 msg_zerocopy_callback(NULL, uarg, true);
1341 EXPORT_SYMBOL_GPL(msg_zerocopy_put_abort);
1343 int skb_zerocopy_iter_dgram(struct sk_buff *skb, struct msghdr *msg, int len)
1345 return __zerocopy_sg_from_iter(skb->sk, skb, &msg->msg_iter, len);
1347 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_dgram);
1349 int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
1350 struct msghdr *msg, int len,
1351 struct ubuf_info *uarg)
1353 struct ubuf_info *orig_uarg = skb_zcopy(skb);
1354 struct iov_iter orig_iter = msg->msg_iter;
1355 int err, orig_len = skb->len;
1357 /* An skb can only point to one uarg. This edge case happens when
1358 * TCP appends to an skb, but zerocopy_realloc triggered a new alloc.
1360 if (orig_uarg && uarg != orig_uarg)
1363 err = __zerocopy_sg_from_iter(sk, skb, &msg->msg_iter, len);
1364 if (err == -EFAULT || (err == -EMSGSIZE && skb->len == orig_len)) {
1365 struct sock *save_sk = skb->sk;
1367 /* Streams do not free skb on error. Reset to prev state. */
1368 msg->msg_iter = orig_iter;
1370 ___pskb_trim(skb, orig_len);
1375 skb_zcopy_set(skb, uarg, NULL);
1376 return skb->len - orig_len;
1378 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_stream);
1380 static int skb_zerocopy_clone(struct sk_buff *nskb, struct sk_buff *orig,
1383 if (skb_zcopy(orig)) {
1384 if (skb_zcopy(nskb)) {
1385 /* !gfp_mask callers are verified to !skb_zcopy(nskb) */
1390 if (skb_uarg(nskb) == skb_uarg(orig))
1392 if (skb_copy_ubufs(nskb, GFP_ATOMIC))
1395 skb_zcopy_set(nskb, skb_uarg(orig), NULL);
1401 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
1402 * @skb: the skb to modify
1403 * @gfp_mask: allocation priority
1405 * This must be called on skb with SKBFL_ZEROCOPY_ENABLE.
1406 * It will copy all frags into kernel and drop the reference
1407 * to userspace pages.
1409 * If this function is called from an interrupt gfp_mask() must be
1412 * Returns 0 on success or a negative error code on failure
1413 * to allocate kernel memory to copy to.
1415 int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
1417 int num_frags = skb_shinfo(skb)->nr_frags;
1418 struct page *page, *head = NULL;
1422 if (skb_shared(skb) || skb_unclone(skb, gfp_mask))
1428 new_frags = (__skb_pagelen(skb) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1429 for (i = 0; i < new_frags; i++) {
1430 page = alloc_page(gfp_mask);
1433 struct page *next = (struct page *)page_private(head);
1439 set_page_private(page, (unsigned long)head);
1445 for (i = 0; i < num_frags; i++) {
1446 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
1447 u32 p_off, p_len, copied;
1451 skb_frag_foreach_page(f, skb_frag_off(f), skb_frag_size(f),
1452 p, p_off, p_len, copied) {
1454 vaddr = kmap_atomic(p);
1456 while (done < p_len) {
1457 if (d_off == PAGE_SIZE) {
1459 page = (struct page *)page_private(page);
1461 copy = min_t(u32, PAGE_SIZE - d_off, p_len - done);
1462 memcpy(page_address(page) + d_off,
1463 vaddr + p_off + done, copy);
1467 kunmap_atomic(vaddr);
1471 /* skb frags release userspace buffers */
1472 for (i = 0; i < num_frags; i++)
1473 skb_frag_unref(skb, i);
1475 /* skb frags point to kernel buffers */
1476 for (i = 0; i < new_frags - 1; i++) {
1477 __skb_fill_page_desc(skb, i, head, 0, PAGE_SIZE);
1478 head = (struct page *)page_private(head);
1480 __skb_fill_page_desc(skb, new_frags - 1, head, 0, d_off);
1481 skb_shinfo(skb)->nr_frags = new_frags;
1484 skb_zcopy_clear(skb, false);
1487 EXPORT_SYMBOL_GPL(skb_copy_ubufs);
1490 * skb_clone - duplicate an sk_buff
1491 * @skb: buffer to clone
1492 * @gfp_mask: allocation priority
1494 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
1495 * copies share the same packet data but not structure. The new
1496 * buffer has a reference count of 1. If the allocation fails the
1497 * function returns %NULL otherwise the new buffer is returned.
1499 * If this function is called from an interrupt gfp_mask() must be
1503 struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1505 struct sk_buff_fclones *fclones = container_of(skb,
1506 struct sk_buff_fclones,
1510 if (skb_orphan_frags(skb, gfp_mask))
1513 if (skb->fclone == SKB_FCLONE_ORIG &&
1514 refcount_read(&fclones->fclone_ref) == 1) {
1516 refcount_set(&fclones->fclone_ref, 2);
1518 if (skb_pfmemalloc(skb))
1519 gfp_mask |= __GFP_MEMALLOC;
1521 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1525 n->fclone = SKB_FCLONE_UNAVAILABLE;
1528 return __skb_clone(n, skb);
1530 EXPORT_SYMBOL(skb_clone);
1532 void skb_headers_offset_update(struct sk_buff *skb, int off)
1534 /* Only adjust this if it actually is csum_start rather than csum */
1535 if (skb->ip_summed == CHECKSUM_PARTIAL)
1536 skb->csum_start += off;
1537 /* {transport,network,mac}_header and tail are relative to skb->head */
1538 skb->transport_header += off;
1539 skb->network_header += off;
1540 if (skb_mac_header_was_set(skb))
1541 skb->mac_header += off;
1542 skb->inner_transport_header += off;
1543 skb->inner_network_header += off;
1544 skb->inner_mac_header += off;
1546 EXPORT_SYMBOL(skb_headers_offset_update);
1548 void skb_copy_header(struct sk_buff *new, const struct sk_buff *old)
1550 __copy_skb_header(new, old);
1552 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1553 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1554 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
1556 EXPORT_SYMBOL(skb_copy_header);
1558 static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1560 if (skb_pfmemalloc(skb))
1561 return SKB_ALLOC_RX;
1566 * skb_copy - create private copy of an sk_buff
1567 * @skb: buffer to copy
1568 * @gfp_mask: allocation priority
1570 * Make a copy of both an &sk_buff and its data. This is used when the
1571 * caller wishes to modify the data and needs a private copy of the
1572 * data to alter. Returns %NULL on failure or the pointer to the buffer
1573 * on success. The returned buffer has a reference count of 1.
1575 * As by-product this function converts non-linear &sk_buff to linear
1576 * one, so that &sk_buff becomes completely private and caller is allowed
1577 * to modify all the data of returned buffer. This means that this
1578 * function is not recommended for use in circumstances when only
1579 * header is going to be modified. Use pskb_copy() instead.
1582 struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
1584 int headerlen = skb_headroom(skb);
1585 unsigned int size = skb_end_offset(skb) + skb->data_len;
1586 struct sk_buff *n = __alloc_skb(size, gfp_mask,
1587 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
1592 /* Set the data pointer */
1593 skb_reserve(n, headerlen);
1594 /* Set the tail pointer and length */
1595 skb_put(n, skb->len);
1597 BUG_ON(skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len));
1599 skb_copy_header(n, skb);
1602 EXPORT_SYMBOL(skb_copy);
1605 * __pskb_copy_fclone - create copy of an sk_buff with private head.
1606 * @skb: buffer to copy
1607 * @headroom: headroom of new skb
1608 * @gfp_mask: allocation priority
1609 * @fclone: if true allocate the copy of the skb from the fclone
1610 * cache instead of the head cache; it is recommended to set this
1611 * to true for the cases where the copy will likely be cloned
1613 * Make a copy of both an &sk_buff and part of its data, located
1614 * in header. Fragmented data remain shared. This is used when
1615 * the caller wishes to modify only header of &sk_buff and needs
1616 * private copy of the header to alter. Returns %NULL on failure
1617 * or the pointer to the buffer on success.
1618 * The returned buffer has a reference count of 1.
1621 struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1622 gfp_t gfp_mask, bool fclone)
1624 unsigned int size = skb_headlen(skb) + headroom;
1625 int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1626 struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
1631 /* Set the data pointer */
1632 skb_reserve(n, headroom);
1633 /* Set the tail pointer and length */
1634 skb_put(n, skb_headlen(skb));
1635 /* Copy the bytes */
1636 skb_copy_from_linear_data(skb, n->data, n->len);
1638 n->truesize += skb->data_len;
1639 n->data_len = skb->data_len;
1642 if (skb_shinfo(skb)->nr_frags) {
1645 if (skb_orphan_frags(skb, gfp_mask) ||
1646 skb_zerocopy_clone(n, skb, gfp_mask)) {
1651 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1652 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
1653 skb_frag_ref(skb, i);
1655 skb_shinfo(n)->nr_frags = i;
1658 if (skb_has_frag_list(skb)) {
1659 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1660 skb_clone_fraglist(n);
1663 skb_copy_header(n, skb);
1667 EXPORT_SYMBOL(__pskb_copy_fclone);
1670 * pskb_expand_head - reallocate header of &sk_buff
1671 * @skb: buffer to reallocate
1672 * @nhead: room to add at head
1673 * @ntail: room to add at tail
1674 * @gfp_mask: allocation priority
1676 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1677 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
1678 * reference count of 1. Returns zero in the case of success or error,
1679 * if expansion failed. In the last case, &sk_buff is not changed.
1681 * All the pointers pointing into skb header may change and must be
1682 * reloaded after call to this function.
1685 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
1688 int i, osize = skb_end_offset(skb);
1689 int size = osize + nhead + ntail;
1695 BUG_ON(skb_shared(skb));
1697 size = SKB_DATA_ALIGN(size);
1699 if (skb_pfmemalloc(skb))
1700 gfp_mask |= __GFP_MEMALLOC;
1701 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1702 gfp_mask, NUMA_NO_NODE, NULL);
1705 size = SKB_WITH_OVERHEAD(ksize(data));
1707 /* Copy only real data... and, alas, header. This should be
1708 * optimized for the cases when header is void.
1710 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1712 memcpy((struct skb_shared_info *)(data + size),
1714 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
1717 * if shinfo is shared we must drop the old head gracefully, but if it
1718 * is not we can just drop the old head and let the existing refcount
1719 * be since all we did is relocate the values
1721 if (skb_cloned(skb)) {
1722 if (skb_orphan_frags(skb, gfp_mask))
1725 refcount_inc(&skb_uarg(skb)->refcnt);
1726 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1727 skb_frag_ref(skb, i);
1729 if (skb_has_frag_list(skb))
1730 skb_clone_fraglist(skb);
1732 skb_release_data(skb);
1736 off = (data + nhead) - skb->head;
1741 #ifdef NET_SKBUFF_DATA_USES_OFFSET
1745 skb->end = skb->head + size;
1748 skb_headers_offset_update(skb, nhead);
1752 atomic_set(&skb_shinfo(skb)->dataref, 1);
1754 skb_metadata_clear(skb);
1756 /* It is not generally safe to change skb->truesize.
1757 * For the moment, we really care of rx path, or
1758 * when skb is orphaned (not attached to a socket).
1760 if (!skb->sk || skb->destructor == sock_edemux)
1761 skb->truesize += size - osize;
1770 EXPORT_SYMBOL(pskb_expand_head);
1772 /* Make private copy of skb with writable head and some headroom */
1774 struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1776 struct sk_buff *skb2;
1777 int delta = headroom - skb_headroom(skb);
1780 skb2 = pskb_copy(skb, GFP_ATOMIC);
1782 skb2 = skb_clone(skb, GFP_ATOMIC);
1783 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1791 EXPORT_SYMBOL(skb_realloc_headroom);
1794 * skb_expand_head - reallocate header of &sk_buff
1795 * @skb: buffer to reallocate
1796 * @headroom: needed headroom
1798 * Unlike skb_realloc_headroom, this one does not allocate a new skb
1799 * if possible; copies skb->sk to new skb as needed
1800 * and frees original skb in case of failures.
1802 * It expect increased headroom and generates warning otherwise.
1805 struct sk_buff *skb_expand_head(struct sk_buff *skb, unsigned int headroom)
1807 int delta = headroom - skb_headroom(skb);
1808 int osize = skb_end_offset(skb);
1809 struct sock *sk = skb->sk;
1811 if (WARN_ONCE(delta <= 0,
1812 "%s is expecting an increase in the headroom", __func__))
1815 delta = SKB_DATA_ALIGN(delta);
1816 /* pskb_expand_head() might crash, if skb is shared. */
1817 if (skb_shared(skb) || !is_skb_wmem(skb)) {
1818 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1820 if (unlikely(!nskb))
1824 skb_set_owner_w(nskb, sk);
1828 if (pskb_expand_head(skb, delta, 0, GFP_ATOMIC))
1831 if (sk && is_skb_wmem(skb)) {
1832 delta = skb_end_offset(skb) - osize;
1833 refcount_add(delta, &sk->sk_wmem_alloc);
1834 skb->truesize += delta;
1842 EXPORT_SYMBOL(skb_expand_head);
1845 * skb_copy_expand - copy and expand sk_buff
1846 * @skb: buffer to copy
1847 * @newheadroom: new free bytes at head
1848 * @newtailroom: new free bytes at tail
1849 * @gfp_mask: allocation priority
1851 * Make a copy of both an &sk_buff and its data and while doing so
1852 * allocate additional space.
1854 * This is used when the caller wishes to modify the data and needs a
1855 * private copy of the data to alter as well as more space for new fields.
1856 * Returns %NULL on failure or the pointer to the buffer
1857 * on success. The returned buffer has a reference count of 1.
1859 * You must pass %GFP_ATOMIC as the allocation priority if this function
1860 * is called from an interrupt.
1862 struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
1863 int newheadroom, int newtailroom,
1867 * Allocate the copy buffer
1869 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1870 gfp_mask, skb_alloc_rx_flag(skb),
1872 int oldheadroom = skb_headroom(skb);
1873 int head_copy_len, head_copy_off;
1878 skb_reserve(n, newheadroom);
1880 /* Set the tail pointer and length */
1881 skb_put(n, skb->len);
1883 head_copy_len = oldheadroom;
1885 if (newheadroom <= head_copy_len)
1886 head_copy_len = newheadroom;
1888 head_copy_off = newheadroom - head_copy_len;
1890 /* Copy the linear header and data. */
1891 BUG_ON(skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1892 skb->len + head_copy_len));
1894 skb_copy_header(n, skb);
1896 skb_headers_offset_update(n, newheadroom - oldheadroom);
1900 EXPORT_SYMBOL(skb_copy_expand);
1903 * __skb_pad - zero pad the tail of an skb
1904 * @skb: buffer to pad
1905 * @pad: space to pad
1906 * @free_on_error: free buffer on error
1908 * Ensure that a buffer is followed by a padding area that is zero
1909 * filled. Used by network drivers which may DMA or transfer data
1910 * beyond the buffer end onto the wire.
1912 * May return error in out of memory cases. The skb is freed on error
1913 * if @free_on_error is true.
1916 int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error)
1921 /* If the skbuff is non linear tailroom is always zero.. */
1922 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
1923 memset(skb->data+skb->len, 0, pad);
1927 ntail = skb->data_len + pad - (skb->end - skb->tail);
1928 if (likely(skb_cloned(skb) || ntail > 0)) {
1929 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1934 /* FIXME: The use of this function with non-linear skb's really needs
1937 err = skb_linearize(skb);
1941 memset(skb->data + skb->len, 0, pad);
1949 EXPORT_SYMBOL(__skb_pad);
1952 * pskb_put - add data to the tail of a potentially fragmented buffer
1953 * @skb: start of the buffer to use
1954 * @tail: tail fragment of the buffer to use
1955 * @len: amount of data to add
1957 * This function extends the used data area of the potentially
1958 * fragmented buffer. @tail must be the last fragment of @skb -- or
1959 * @skb itself. If this would exceed the total buffer size the kernel
1960 * will panic. A pointer to the first byte of the extra data is
1964 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1967 skb->data_len += len;
1970 return skb_put(tail, len);
1972 EXPORT_SYMBOL_GPL(pskb_put);
1975 * skb_put - add data to a buffer
1976 * @skb: buffer to use
1977 * @len: amount of data to add
1979 * This function extends the used data area of the buffer. If this would
1980 * exceed the total buffer size the kernel will panic. A pointer to the
1981 * first byte of the extra data is returned.
1983 void *skb_put(struct sk_buff *skb, unsigned int len)
1985 void *tmp = skb_tail_pointer(skb);
1986 SKB_LINEAR_ASSERT(skb);
1989 if (unlikely(skb->tail > skb->end))
1990 skb_over_panic(skb, len, __builtin_return_address(0));
1993 EXPORT_SYMBOL(skb_put);
1996 * skb_push - add data to the start of a buffer
1997 * @skb: buffer to use
1998 * @len: amount of data to add
2000 * This function extends the used data area of the buffer at the buffer
2001 * start. If this would exceed the total buffer headroom the kernel will
2002 * panic. A pointer to the first byte of the extra data is returned.
2004 void *skb_push(struct sk_buff *skb, unsigned int len)
2008 if (unlikely(skb->data < skb->head))
2009 skb_under_panic(skb, len, __builtin_return_address(0));
2012 EXPORT_SYMBOL(skb_push);
2015 * skb_pull - remove data from the start of a buffer
2016 * @skb: buffer to use
2017 * @len: amount of data to remove
2019 * This function removes data from the start of a buffer, returning
2020 * the memory to the headroom. A pointer to the next data in the buffer
2021 * is returned. Once the data has been pulled future pushes will overwrite
2024 void *skb_pull(struct sk_buff *skb, unsigned int len)
2026 return skb_pull_inline(skb, len);
2028 EXPORT_SYMBOL(skb_pull);
2031 * skb_trim - remove end from a buffer
2032 * @skb: buffer to alter
2035 * Cut the length of a buffer down by removing data from the tail. If
2036 * the buffer is already under the length specified it is not modified.
2037 * The skb must be linear.
2039 void skb_trim(struct sk_buff *skb, unsigned int len)
2042 __skb_trim(skb, len);
2044 EXPORT_SYMBOL(skb_trim);
2046 /* Trims skb to length len. It can change skb pointers.
2049 int ___pskb_trim(struct sk_buff *skb, unsigned int len)
2051 struct sk_buff **fragp;
2052 struct sk_buff *frag;
2053 int offset = skb_headlen(skb);
2054 int nfrags = skb_shinfo(skb)->nr_frags;
2058 if (skb_cloned(skb) &&
2059 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
2066 for (; i < nfrags; i++) {
2067 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
2074 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
2077 skb_shinfo(skb)->nr_frags = i;
2079 for (; i < nfrags; i++)
2080 skb_frag_unref(skb, i);
2082 if (skb_has_frag_list(skb))
2083 skb_drop_fraglist(skb);
2087 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
2088 fragp = &frag->next) {
2089 int end = offset + frag->len;
2091 if (skb_shared(frag)) {
2092 struct sk_buff *nfrag;
2094 nfrag = skb_clone(frag, GFP_ATOMIC);
2095 if (unlikely(!nfrag))
2098 nfrag->next = frag->next;
2110 unlikely((err = pskb_trim(frag, len - offset))))
2114 skb_drop_list(&frag->next);
2119 if (len > skb_headlen(skb)) {
2120 skb->data_len -= skb->len - len;
2125 skb_set_tail_pointer(skb, len);
2128 if (!skb->sk || skb->destructor == sock_edemux)
2132 EXPORT_SYMBOL(___pskb_trim);
2134 /* Note : use pskb_trim_rcsum() instead of calling this directly
2136 int pskb_trim_rcsum_slow(struct sk_buff *skb, unsigned int len)
2138 if (skb->ip_summed == CHECKSUM_COMPLETE) {
2139 int delta = skb->len - len;
2141 skb->csum = csum_block_sub(skb->csum,
2142 skb_checksum(skb, len, delta, 0),
2144 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
2145 int hdlen = (len > skb_headlen(skb)) ? skb_headlen(skb) : len;
2146 int offset = skb_checksum_start_offset(skb) + skb->csum_offset;
2148 if (offset + sizeof(__sum16) > hdlen)
2151 return __pskb_trim(skb, len);
2153 EXPORT_SYMBOL(pskb_trim_rcsum_slow);
2156 * __pskb_pull_tail - advance tail of skb header
2157 * @skb: buffer to reallocate
2158 * @delta: number of bytes to advance tail
2160 * The function makes a sense only on a fragmented &sk_buff,
2161 * it expands header moving its tail forward and copying necessary
2162 * data from fragmented part.
2164 * &sk_buff MUST have reference count of 1.
2166 * Returns %NULL (and &sk_buff does not change) if pull failed
2167 * or value of new tail of skb in the case of success.
2169 * All the pointers pointing into skb header may change and must be
2170 * reloaded after call to this function.
2173 /* Moves tail of skb head forward, copying data from fragmented part,
2174 * when it is necessary.
2175 * 1. It may fail due to malloc failure.
2176 * 2. It may change skb pointers.
2178 * It is pretty complicated. Luckily, it is called only in exceptional cases.
2180 void *__pskb_pull_tail(struct sk_buff *skb, int delta)
2182 /* If skb has not enough free space at tail, get new one
2183 * plus 128 bytes for future expansions. If we have enough
2184 * room at tail, reallocate without expansion only if skb is cloned.
2186 int i, k, eat = (skb->tail + delta) - skb->end;
2188 if (eat > 0 || skb_cloned(skb)) {
2189 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
2194 BUG_ON(skb_copy_bits(skb, skb_headlen(skb),
2195 skb_tail_pointer(skb), delta));
2197 /* Optimization: no fragments, no reasons to preestimate
2198 * size of pulled pages. Superb.
2200 if (!skb_has_frag_list(skb))
2203 /* Estimate size of pulled pages. */
2205 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2206 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
2213 /* If we need update frag list, we are in troubles.
2214 * Certainly, it is possible to add an offset to skb data,
2215 * but taking into account that pulling is expected to
2216 * be very rare operation, it is worth to fight against
2217 * further bloating skb head and crucify ourselves here instead.
2218 * Pure masohism, indeed. 8)8)
2221 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2222 struct sk_buff *clone = NULL;
2223 struct sk_buff *insp = NULL;
2226 if (list->len <= eat) {
2227 /* Eaten as whole. */
2232 /* Eaten partially. */
2234 if (skb_shared(list)) {
2235 /* Sucks! We need to fork list. :-( */
2236 clone = skb_clone(list, GFP_ATOMIC);
2242 /* This may be pulled without
2246 if (!pskb_pull(list, eat)) {
2254 /* Free pulled out fragments. */
2255 while ((list = skb_shinfo(skb)->frag_list) != insp) {
2256 skb_shinfo(skb)->frag_list = list->next;
2259 /* And insert new clone at head. */
2262 skb_shinfo(skb)->frag_list = clone;
2265 /* Success! Now we may commit changes to skb data. */
2270 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2271 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
2274 skb_frag_unref(skb, i);
2277 skb_frag_t *frag = &skb_shinfo(skb)->frags[k];
2279 *frag = skb_shinfo(skb)->frags[i];
2281 skb_frag_off_add(frag, eat);
2282 skb_frag_size_sub(frag, eat);
2290 skb_shinfo(skb)->nr_frags = k;
2294 skb->data_len -= delta;
2297 skb_zcopy_clear(skb, false);
2299 return skb_tail_pointer(skb);
2301 EXPORT_SYMBOL(__pskb_pull_tail);
2304 * skb_copy_bits - copy bits from skb to kernel buffer
2306 * @offset: offset in source
2307 * @to: destination buffer
2308 * @len: number of bytes to copy
2310 * Copy the specified number of bytes from the source skb to the
2311 * destination buffer.
2314 * If its prototype is ever changed,
2315 * check arch/{*}/net/{*}.S files,
2316 * since it is called from BPF assembly code.
2318 int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
2320 int start = skb_headlen(skb);
2321 struct sk_buff *frag_iter;
2324 if (offset > (int)skb->len - len)
2328 if ((copy = start - offset) > 0) {
2331 skb_copy_from_linear_data_offset(skb, offset, to, copy);
2332 if ((len -= copy) == 0)
2338 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2340 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
2342 WARN_ON(start > offset + len);
2344 end = start + skb_frag_size(f);
2345 if ((copy = end - offset) > 0) {
2346 u32 p_off, p_len, copied;
2353 skb_frag_foreach_page(f,
2354 skb_frag_off(f) + offset - start,
2355 copy, p, p_off, p_len, copied) {
2356 vaddr = kmap_atomic(p);
2357 memcpy(to + copied, vaddr + p_off, p_len);
2358 kunmap_atomic(vaddr);
2361 if ((len -= copy) == 0)
2369 skb_walk_frags(skb, frag_iter) {
2372 WARN_ON(start > offset + len);
2374 end = start + frag_iter->len;
2375 if ((copy = end - offset) > 0) {
2378 if (skb_copy_bits(frag_iter, offset - start, to, copy))
2380 if ((len -= copy) == 0)
2394 EXPORT_SYMBOL(skb_copy_bits);
2397 * Callback from splice_to_pipe(), if we need to release some pages
2398 * at the end of the spd in case we error'ed out in filling the pipe.
2400 static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
2402 put_page(spd->pages[i]);
2405 static struct page *linear_to_page(struct page *page, unsigned int *len,
2406 unsigned int *offset,
2409 struct page_frag *pfrag = sk_page_frag(sk);
2411 if (!sk_page_frag_refill(sk, pfrag))
2414 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
2416 memcpy(page_address(pfrag->page) + pfrag->offset,
2417 page_address(page) + *offset, *len);
2418 *offset = pfrag->offset;
2419 pfrag->offset += *len;
2424 static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
2426 unsigned int offset)
2428 return spd->nr_pages &&
2429 spd->pages[spd->nr_pages - 1] == page &&
2430 (spd->partial[spd->nr_pages - 1].offset +
2431 spd->partial[spd->nr_pages - 1].len == offset);
2435 * Fill page/offset/length into spd, if it can hold more pages.
2437 static bool spd_fill_page(struct splice_pipe_desc *spd,
2438 struct pipe_inode_info *pipe, struct page *page,
2439 unsigned int *len, unsigned int offset,
2443 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
2447 page = linear_to_page(page, len, &offset, sk);
2451 if (spd_can_coalesce(spd, page, offset)) {
2452 spd->partial[spd->nr_pages - 1].len += *len;
2456 spd->pages[spd->nr_pages] = page;
2457 spd->partial[spd->nr_pages].len = *len;
2458 spd->partial[spd->nr_pages].offset = offset;
2464 static bool __splice_segment(struct page *page, unsigned int poff,
2465 unsigned int plen, unsigned int *off,
2467 struct splice_pipe_desc *spd, bool linear,
2469 struct pipe_inode_info *pipe)
2474 /* skip this segment if already processed */
2480 /* ignore any bits we already processed */
2486 unsigned int flen = min(*len, plen);
2488 if (spd_fill_page(spd, pipe, page, &flen, poff,
2494 } while (*len && plen);
2500 * Map linear and fragment data from the skb to spd. It reports true if the
2501 * pipe is full or if we already spliced the requested length.
2503 static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
2504 unsigned int *offset, unsigned int *len,
2505 struct splice_pipe_desc *spd, struct sock *sk)
2508 struct sk_buff *iter;
2510 /* map the linear part :
2511 * If skb->head_frag is set, this 'linear' part is backed by a
2512 * fragment, and if the head is not shared with any clones then
2513 * we can avoid a copy since we own the head portion of this page.
2515 if (__splice_segment(virt_to_page(skb->data),
2516 (unsigned long) skb->data & (PAGE_SIZE - 1),
2519 skb_head_is_locked(skb),
2524 * then map the fragments
2526 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
2527 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
2529 if (__splice_segment(skb_frag_page(f),
2530 skb_frag_off(f), skb_frag_size(f),
2531 offset, len, spd, false, sk, pipe))
2535 skb_walk_frags(skb, iter) {
2536 if (*offset >= iter->len) {
2537 *offset -= iter->len;
2540 /* __skb_splice_bits() only fails if the output has no room
2541 * left, so no point in going over the frag_list for the error
2544 if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
2552 * Map data from the skb to a pipe. Should handle both the linear part,
2553 * the fragments, and the frag list.
2555 int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
2556 struct pipe_inode_info *pipe, unsigned int tlen,
2559 struct partial_page partial[MAX_SKB_FRAGS];
2560 struct page *pages[MAX_SKB_FRAGS];
2561 struct splice_pipe_desc spd = {
2564 .nr_pages_max = MAX_SKB_FRAGS,
2565 .ops = &nosteal_pipe_buf_ops,
2566 .spd_release = sock_spd_release,
2570 __skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
2573 ret = splice_to_pipe(pipe, &spd);
2577 EXPORT_SYMBOL_GPL(skb_splice_bits);
2579 static int sendmsg_unlocked(struct sock *sk, struct msghdr *msg,
2580 struct kvec *vec, size_t num, size_t size)
2582 struct socket *sock = sk->sk_socket;
2586 return kernel_sendmsg(sock, msg, vec, num, size);
2589 static int sendpage_unlocked(struct sock *sk, struct page *page, int offset,
2590 size_t size, int flags)
2592 struct socket *sock = sk->sk_socket;
2596 return kernel_sendpage(sock, page, offset, size, flags);
2599 typedef int (*sendmsg_func)(struct sock *sk, struct msghdr *msg,
2600 struct kvec *vec, size_t num, size_t size);
2601 typedef int (*sendpage_func)(struct sock *sk, struct page *page, int offset,
2602 size_t size, int flags);
2603 static int __skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset,
2604 int len, sendmsg_func sendmsg, sendpage_func sendpage)
2606 unsigned int orig_len = len;
2607 struct sk_buff *head = skb;
2608 unsigned short fragidx;
2613 /* Deal with head data */
2614 while (offset < skb_headlen(skb) && len) {
2618 slen = min_t(int, len, skb_headlen(skb) - offset);
2619 kv.iov_base = skb->data + offset;
2621 memset(&msg, 0, sizeof(msg));
2622 msg.msg_flags = MSG_DONTWAIT;
2624 ret = INDIRECT_CALL_2(sendmsg, kernel_sendmsg_locked,
2625 sendmsg_unlocked, sk, &msg, &kv, 1, slen);
2633 /* All the data was skb head? */
2637 /* Make offset relative to start of frags */
2638 offset -= skb_headlen(skb);
2640 /* Find where we are in frag list */
2641 for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2642 skb_frag_t *frag = &skb_shinfo(skb)->frags[fragidx];
2644 if (offset < skb_frag_size(frag))
2647 offset -= skb_frag_size(frag);
2650 for (; len && fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2651 skb_frag_t *frag = &skb_shinfo(skb)->frags[fragidx];
2653 slen = min_t(size_t, len, skb_frag_size(frag) - offset);
2656 ret = INDIRECT_CALL_2(sendpage, kernel_sendpage_locked,
2657 sendpage_unlocked, sk,
2658 skb_frag_page(frag),
2659 skb_frag_off(frag) + offset,
2660 slen, MSG_DONTWAIT);
2673 /* Process any frag lists */
2676 if (skb_has_frag_list(skb)) {
2677 skb = skb_shinfo(skb)->frag_list;
2680 } else if (skb->next) {
2687 return orig_len - len;
2690 return orig_len == len ? ret : orig_len - len;
2693 /* Send skb data on a socket. Socket must be locked. */
2694 int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
2697 return __skb_send_sock(sk, skb, offset, len, kernel_sendmsg_locked,
2698 kernel_sendpage_locked);
2700 EXPORT_SYMBOL_GPL(skb_send_sock_locked);
2702 /* Send skb data on a socket. Socket must be unlocked. */
2703 int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len)
2705 return __skb_send_sock(sk, skb, offset, len, sendmsg_unlocked,
2710 * skb_store_bits - store bits from kernel buffer to skb
2711 * @skb: destination buffer
2712 * @offset: offset in destination
2713 * @from: source buffer
2714 * @len: number of bytes to copy
2716 * Copy the specified number of bytes from the source buffer to the
2717 * destination skb. This function handles all the messy bits of
2718 * traversing fragment lists and such.
2721 int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
2723 int start = skb_headlen(skb);
2724 struct sk_buff *frag_iter;
2727 if (offset > (int)skb->len - len)
2730 if ((copy = start - offset) > 0) {
2733 skb_copy_to_linear_data_offset(skb, offset, from, copy);
2734 if ((len -= copy) == 0)
2740 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2741 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2744 WARN_ON(start > offset + len);
2746 end = start + skb_frag_size(frag);
2747 if ((copy = end - offset) > 0) {
2748 u32 p_off, p_len, copied;
2755 skb_frag_foreach_page(frag,
2756 skb_frag_off(frag) + offset - start,
2757 copy, p, p_off, p_len, copied) {
2758 vaddr = kmap_atomic(p);
2759 memcpy(vaddr + p_off, from + copied, p_len);
2760 kunmap_atomic(vaddr);
2763 if ((len -= copy) == 0)
2771 skb_walk_frags(skb, frag_iter) {
2774 WARN_ON(start > offset + len);
2776 end = start + frag_iter->len;
2777 if ((copy = end - offset) > 0) {
2780 if (skb_store_bits(frag_iter, offset - start,
2783 if ((len -= copy) == 0)
2796 EXPORT_SYMBOL(skb_store_bits);
2798 /* Checksum skb data. */
2799 __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2800 __wsum csum, const struct skb_checksum_ops *ops)
2802 int start = skb_headlen(skb);
2803 int i, copy = start - offset;
2804 struct sk_buff *frag_iter;
2807 /* Checksum header. */
2811 csum = INDIRECT_CALL_1(ops->update, csum_partial_ext,
2812 skb->data + offset, copy, csum);
2813 if ((len -= copy) == 0)
2819 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2821 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2823 WARN_ON(start > offset + len);
2825 end = start + skb_frag_size(frag);
2826 if ((copy = end - offset) > 0) {
2827 u32 p_off, p_len, copied;
2835 skb_frag_foreach_page(frag,
2836 skb_frag_off(frag) + offset - start,
2837 copy, p, p_off, p_len, copied) {
2838 vaddr = kmap_atomic(p);
2839 csum2 = INDIRECT_CALL_1(ops->update,
2841 vaddr + p_off, p_len, 0);
2842 kunmap_atomic(vaddr);
2843 csum = INDIRECT_CALL_1(ops->combine,
2844 csum_block_add_ext, csum,
2856 skb_walk_frags(skb, frag_iter) {
2859 WARN_ON(start > offset + len);
2861 end = start + frag_iter->len;
2862 if ((copy = end - offset) > 0) {
2866 csum2 = __skb_checksum(frag_iter, offset - start,
2868 csum = INDIRECT_CALL_1(ops->combine, csum_block_add_ext,
2869 csum, csum2, pos, copy);
2870 if ((len -= copy) == 0)
2881 EXPORT_SYMBOL(__skb_checksum);
2883 __wsum skb_checksum(const struct sk_buff *skb, int offset,
2884 int len, __wsum csum)
2886 const struct skb_checksum_ops ops = {
2887 .update = csum_partial_ext,
2888 .combine = csum_block_add_ext,
2891 return __skb_checksum(skb, offset, len, csum, &ops);
2893 EXPORT_SYMBOL(skb_checksum);
2895 /* Both of above in one bottle. */
2897 __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2900 int start = skb_headlen(skb);
2901 int i, copy = start - offset;
2902 struct sk_buff *frag_iter;
2910 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2912 if ((len -= copy) == 0)
2919 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2922 WARN_ON(start > offset + len);
2924 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
2925 if ((copy = end - offset) > 0) {
2926 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2927 u32 p_off, p_len, copied;
2935 skb_frag_foreach_page(frag,
2936 skb_frag_off(frag) + offset - start,
2937 copy, p, p_off, p_len, copied) {
2938 vaddr = kmap_atomic(p);
2939 csum2 = csum_partial_copy_nocheck(vaddr + p_off,
2942 kunmap_atomic(vaddr);
2943 csum = csum_block_add(csum, csum2, pos);
2955 skb_walk_frags(skb, frag_iter) {
2959 WARN_ON(start > offset + len);
2961 end = start + frag_iter->len;
2962 if ((copy = end - offset) > 0) {
2965 csum2 = skb_copy_and_csum_bits(frag_iter,
2968 csum = csum_block_add(csum, csum2, pos);
2969 if ((len -= copy) == 0)
2980 EXPORT_SYMBOL(skb_copy_and_csum_bits);
2982 __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
2986 sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
2987 /* See comments in __skb_checksum_complete(). */
2989 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
2990 !skb->csum_complete_sw)
2991 netdev_rx_csum_fault(skb->dev, skb);
2993 if (!skb_shared(skb))
2994 skb->csum_valid = !sum;
2997 EXPORT_SYMBOL(__skb_checksum_complete_head);
2999 /* This function assumes skb->csum already holds pseudo header's checksum,
3000 * which has been changed from the hardware checksum, for example, by
3001 * __skb_checksum_validate_complete(). And, the original skb->csum must
3002 * have been validated unsuccessfully for CHECKSUM_COMPLETE case.
3004 * It returns non-zero if the recomputed checksum is still invalid, otherwise
3005 * zero. The new checksum is stored back into skb->csum unless the skb is
3008 __sum16 __skb_checksum_complete(struct sk_buff *skb)
3013 csum = skb_checksum(skb, 0, skb->len, 0);
3015 sum = csum_fold(csum_add(skb->csum, csum));
3016 /* This check is inverted, because we already knew the hardware
3017 * checksum is invalid before calling this function. So, if the
3018 * re-computed checksum is valid instead, then we have a mismatch
3019 * between the original skb->csum and skb_checksum(). This means either
3020 * the original hardware checksum is incorrect or we screw up skb->csum
3021 * when moving skb->data around.
3024 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
3025 !skb->csum_complete_sw)
3026 netdev_rx_csum_fault(skb->dev, skb);
3029 if (!skb_shared(skb)) {
3030 /* Save full packet checksum */
3032 skb->ip_summed = CHECKSUM_COMPLETE;
3033 skb->csum_complete_sw = 1;
3034 skb->csum_valid = !sum;
3039 EXPORT_SYMBOL(__skb_checksum_complete);
3041 static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum)
3043 net_warn_ratelimited(
3044 "%s: attempt to compute crc32c without libcrc32c.ko\n",
3049 static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2,
3050 int offset, int len)
3052 net_warn_ratelimited(
3053 "%s: attempt to compute crc32c without libcrc32c.ko\n",
3058 static const struct skb_checksum_ops default_crc32c_ops = {
3059 .update = warn_crc32c_csum_update,
3060 .combine = warn_crc32c_csum_combine,
3063 const struct skb_checksum_ops *crc32c_csum_stub __read_mostly =
3064 &default_crc32c_ops;
3065 EXPORT_SYMBOL(crc32c_csum_stub);
3068 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
3069 * @from: source buffer
3071 * Calculates the amount of linear headroom needed in the 'to' skb passed
3072 * into skb_zerocopy().
3075 skb_zerocopy_headlen(const struct sk_buff *from)
3077 unsigned int hlen = 0;
3079 if (!from->head_frag ||
3080 skb_headlen(from) < L1_CACHE_BYTES ||
3081 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS) {
3082 hlen = skb_headlen(from);
3087 if (skb_has_frag_list(from))
3092 EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
3095 * skb_zerocopy - Zero copy skb to skb
3096 * @to: destination buffer
3097 * @from: source buffer
3098 * @len: number of bytes to copy from source buffer
3099 * @hlen: size of linear headroom in destination buffer
3101 * Copies up to `len` bytes from `from` to `to` by creating references
3102 * to the frags in the source buffer.
3104 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
3105 * headroom in the `to` buffer.
3108 * 0: everything is OK
3109 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
3110 * -EFAULT: skb_copy_bits() found some problem with skb geometry
3113 skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
3116 int plen = 0; /* length of skb->head fragment */
3119 unsigned int offset;
3121 BUG_ON(!from->head_frag && !hlen);
3123 /* dont bother with small payloads */
3124 if (len <= skb_tailroom(to))
3125 return skb_copy_bits(from, 0, skb_put(to, len), len);
3128 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
3133 plen = min_t(int, skb_headlen(from), len);
3135 page = virt_to_head_page(from->head);
3136 offset = from->data - (unsigned char *)page_address(page);
3137 __skb_fill_page_desc(to, 0, page, offset, plen);
3144 to->truesize += len + plen;
3145 to->len += len + plen;
3146 to->data_len += len + plen;
3148 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
3152 skb_zerocopy_clone(to, from, GFP_ATOMIC);
3154 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
3159 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
3160 size = min_t(int, skb_frag_size(&skb_shinfo(to)->frags[j]),
3162 skb_frag_size_set(&skb_shinfo(to)->frags[j], size);
3164 skb_frag_ref(to, j);
3167 skb_shinfo(to)->nr_frags = j;
3171 EXPORT_SYMBOL_GPL(skb_zerocopy);
3173 void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
3178 if (skb->ip_summed == CHECKSUM_PARTIAL)
3179 csstart = skb_checksum_start_offset(skb);
3181 csstart = skb_headlen(skb);
3183 BUG_ON(csstart > skb_headlen(skb));
3185 skb_copy_from_linear_data(skb, to, csstart);
3188 if (csstart != skb->len)
3189 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
3190 skb->len - csstart);
3192 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3193 long csstuff = csstart + skb->csum_offset;
3195 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
3198 EXPORT_SYMBOL(skb_copy_and_csum_dev);
3201 * skb_dequeue - remove from the head of the queue
3202 * @list: list to dequeue from
3204 * Remove the head of the list. The list lock is taken so the function
3205 * may be used safely with other locking list functions. The head item is
3206 * returned or %NULL if the list is empty.
3209 struct sk_buff *skb_dequeue(struct sk_buff_head *list)
3211 unsigned long flags;
3212 struct sk_buff *result;
3214 spin_lock_irqsave(&list->lock, flags);
3215 result = __skb_dequeue(list);
3216 spin_unlock_irqrestore(&list->lock, flags);
3219 EXPORT_SYMBOL(skb_dequeue);
3222 * skb_dequeue_tail - remove from the tail of the queue
3223 * @list: list to dequeue from
3225 * Remove the tail of the list. The list lock is taken so the function
3226 * may be used safely with other locking list functions. The tail item is
3227 * returned or %NULL if the list is empty.
3229 struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
3231 unsigned long flags;
3232 struct sk_buff *result;
3234 spin_lock_irqsave(&list->lock, flags);
3235 result = __skb_dequeue_tail(list);
3236 spin_unlock_irqrestore(&list->lock, flags);
3239 EXPORT_SYMBOL(skb_dequeue_tail);
3242 * skb_queue_purge - empty a list
3243 * @list: list to empty
3245 * Delete all buffers on an &sk_buff list. Each buffer is removed from
3246 * the list and one reference dropped. This function takes the list
3247 * lock and is atomic with respect to other list locking functions.
3249 void skb_queue_purge(struct sk_buff_head *list)
3251 struct sk_buff *skb;
3252 while ((skb = skb_dequeue(list)) != NULL)
3255 EXPORT_SYMBOL(skb_queue_purge);
3258 * skb_rbtree_purge - empty a skb rbtree
3259 * @root: root of the rbtree to empty
3260 * Return value: the sum of truesizes of all purged skbs.
3262 * Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
3263 * the list and one reference dropped. This function does not take
3264 * any lock. Synchronization should be handled by the caller (e.g., TCP
3265 * out-of-order queue is protected by the socket lock).
3267 unsigned int skb_rbtree_purge(struct rb_root *root)
3269 struct rb_node *p = rb_first(root);
3270 unsigned int sum = 0;
3273 struct sk_buff *skb = rb_entry(p, struct sk_buff, rbnode);
3276 rb_erase(&skb->rbnode, root);
3277 sum += skb->truesize;
3284 * skb_queue_head - queue a buffer at the list head
3285 * @list: list to use
3286 * @newsk: buffer to queue
3288 * Queue a buffer at the start of the list. This function takes the
3289 * list lock and can be used safely with other locking &sk_buff functions
3292 * A buffer cannot be placed on two lists at the same time.
3294 void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
3296 unsigned long flags;
3298 spin_lock_irqsave(&list->lock, flags);
3299 __skb_queue_head(list, newsk);
3300 spin_unlock_irqrestore(&list->lock, flags);
3302 EXPORT_SYMBOL(skb_queue_head);
3305 * skb_queue_tail - queue a buffer at the list tail
3306 * @list: list to use
3307 * @newsk: buffer to queue
3309 * Queue a buffer at the tail of the list. This function takes the
3310 * list lock and can be used safely with other locking &sk_buff functions
3313 * A buffer cannot be placed on two lists at the same time.
3315 void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
3317 unsigned long flags;
3319 spin_lock_irqsave(&list->lock, flags);
3320 __skb_queue_tail(list, newsk);
3321 spin_unlock_irqrestore(&list->lock, flags);
3323 EXPORT_SYMBOL(skb_queue_tail);
3326 * skb_unlink - remove a buffer from a list
3327 * @skb: buffer to remove
3328 * @list: list to use
3330 * Remove a packet from a list. The list locks are taken and this
3331 * function is atomic with respect to other list locked calls
3333 * You must know what list the SKB is on.
3335 void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
3337 unsigned long flags;
3339 spin_lock_irqsave(&list->lock, flags);
3340 __skb_unlink(skb, list);
3341 spin_unlock_irqrestore(&list->lock, flags);
3343 EXPORT_SYMBOL(skb_unlink);
3346 * skb_append - append a buffer
3347 * @old: buffer to insert after
3348 * @newsk: buffer to insert
3349 * @list: list to use
3351 * Place a packet after a given packet in a list. The list locks are taken
3352 * and this function is atomic with respect to other list locked calls.
3353 * A buffer cannot be placed on two lists at the same time.
3355 void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
3357 unsigned long flags;
3359 spin_lock_irqsave(&list->lock, flags);
3360 __skb_queue_after(list, old, newsk);
3361 spin_unlock_irqrestore(&list->lock, flags);
3363 EXPORT_SYMBOL(skb_append);
3365 static inline void skb_split_inside_header(struct sk_buff *skb,
3366 struct sk_buff* skb1,
3367 const u32 len, const int pos)
3371 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
3373 /* And move data appendix as is. */
3374 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
3375 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
3377 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
3378 skb_shinfo(skb)->nr_frags = 0;
3379 skb1->data_len = skb->data_len;
3380 skb1->len += skb1->data_len;
3383 skb_set_tail_pointer(skb, len);
3386 static inline void skb_split_no_header(struct sk_buff *skb,
3387 struct sk_buff* skb1,
3388 const u32 len, int pos)
3391 const int nfrags = skb_shinfo(skb)->nr_frags;
3393 skb_shinfo(skb)->nr_frags = 0;
3394 skb1->len = skb1->data_len = skb->len - len;
3396 skb->data_len = len - pos;
3398 for (i = 0; i < nfrags; i++) {
3399 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
3401 if (pos + size > len) {
3402 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
3406 * We have two variants in this case:
3407 * 1. Move all the frag to the second
3408 * part, if it is possible. F.e.
3409 * this approach is mandatory for TUX,
3410 * where splitting is expensive.
3411 * 2. Split is accurately. We make this.
3413 skb_frag_ref(skb, i);
3414 skb_frag_off_add(&skb_shinfo(skb1)->frags[0], len - pos);
3415 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
3416 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
3417 skb_shinfo(skb)->nr_frags++;
3421 skb_shinfo(skb)->nr_frags++;
3424 skb_shinfo(skb1)->nr_frags = k;
3428 * skb_split - Split fragmented skb to two parts at length len.
3429 * @skb: the buffer to split
3430 * @skb1: the buffer to receive the second part
3431 * @len: new length for skb
3433 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
3435 int pos = skb_headlen(skb);
3436 const int zc_flags = SKBFL_SHARED_FRAG | SKBFL_PURE_ZEROCOPY;
3438 skb_shinfo(skb1)->flags |= skb_shinfo(skb)->flags & zc_flags;
3439 skb_zerocopy_clone(skb1, skb, 0);
3440 if (len < pos) /* Split line is inside header. */
3441 skb_split_inside_header(skb, skb1, len, pos);
3442 else /* Second chunk has no header, nothing to copy. */
3443 skb_split_no_header(skb, skb1, len, pos);
3445 EXPORT_SYMBOL(skb_split);
3447 /* Shifting from/to a cloned skb is a no-go.
3449 * Caller cannot keep skb_shinfo related pointers past calling here!
3451 static int skb_prepare_for_shift(struct sk_buff *skb)
3453 return skb_unclone_keeptruesize(skb, GFP_ATOMIC);
3457 * skb_shift - Shifts paged data partially from skb to another
3458 * @tgt: buffer into which tail data gets added
3459 * @skb: buffer from which the paged data comes from
3460 * @shiftlen: shift up to this many bytes
3462 * Attempts to shift up to shiftlen worth of bytes, which may be less than
3463 * the length of the skb, from skb to tgt. Returns number bytes shifted.
3464 * It's up to caller to free skb if everything was shifted.
3466 * If @tgt runs out of frags, the whole operation is aborted.
3468 * Skb cannot include anything else but paged data while tgt is allowed
3469 * to have non-paged data as well.
3471 * TODO: full sized shift could be optimized but that would need
3472 * specialized skb free'er to handle frags without up-to-date nr_frags.
3474 int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
3476 int from, to, merge, todo;
3477 skb_frag_t *fragfrom, *fragto;
3479 BUG_ON(shiftlen > skb->len);
3481 if (skb_headlen(skb))
3483 if (skb_zcopy(tgt) || skb_zcopy(skb))
3488 to = skb_shinfo(tgt)->nr_frags;
3489 fragfrom = &skb_shinfo(skb)->frags[from];
3491 /* Actual merge is delayed until the point when we know we can
3492 * commit all, so that we don't have to undo partial changes
3495 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
3496 skb_frag_off(fragfrom))) {
3501 todo -= skb_frag_size(fragfrom);
3503 if (skb_prepare_for_shift(skb) ||
3504 skb_prepare_for_shift(tgt))
3507 /* All previous frag pointers might be stale! */
3508 fragfrom = &skb_shinfo(skb)->frags[from];
3509 fragto = &skb_shinfo(tgt)->frags[merge];
3511 skb_frag_size_add(fragto, shiftlen);
3512 skb_frag_size_sub(fragfrom, shiftlen);
3513 skb_frag_off_add(fragfrom, shiftlen);
3521 /* Skip full, not-fitting skb to avoid expensive operations */
3522 if ((shiftlen == skb->len) &&
3523 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
3526 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
3529 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
3530 if (to == MAX_SKB_FRAGS)
3533 fragfrom = &skb_shinfo(skb)->frags[from];
3534 fragto = &skb_shinfo(tgt)->frags[to];
3536 if (todo >= skb_frag_size(fragfrom)) {
3537 *fragto = *fragfrom;
3538 todo -= skb_frag_size(fragfrom);
3543 __skb_frag_ref(fragfrom);
3544 skb_frag_page_copy(fragto, fragfrom);
3545 skb_frag_off_copy(fragto, fragfrom);
3546 skb_frag_size_set(fragto, todo);
3548 skb_frag_off_add(fragfrom, todo);
3549 skb_frag_size_sub(fragfrom, todo);
3557 /* Ready to "commit" this state change to tgt */
3558 skb_shinfo(tgt)->nr_frags = to;
3561 fragfrom = &skb_shinfo(skb)->frags[0];
3562 fragto = &skb_shinfo(tgt)->frags[merge];
3564 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
3565 __skb_frag_unref(fragfrom, skb->pp_recycle);
3568 /* Reposition in the original skb */
3570 while (from < skb_shinfo(skb)->nr_frags)
3571 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
3572 skb_shinfo(skb)->nr_frags = to;
3574 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
3577 /* Most likely the tgt won't ever need its checksum anymore, skb on
3578 * the other hand might need it if it needs to be resent
3580 tgt->ip_summed = CHECKSUM_PARTIAL;
3581 skb->ip_summed = CHECKSUM_PARTIAL;
3583 /* Yak, is it really working this way? Some helper please? */
3584 skb->len -= shiftlen;
3585 skb->data_len -= shiftlen;
3586 skb->truesize -= shiftlen;
3587 tgt->len += shiftlen;
3588 tgt->data_len += shiftlen;
3589 tgt->truesize += shiftlen;
3595 * skb_prepare_seq_read - Prepare a sequential read of skb data
3596 * @skb: the buffer to read
3597 * @from: lower offset of data to be read
3598 * @to: upper offset of data to be read
3599 * @st: state variable
3601 * Initializes the specified state variable. Must be called before
3602 * invoking skb_seq_read() for the first time.
3604 void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
3605 unsigned int to, struct skb_seq_state *st)
3607 st->lower_offset = from;
3608 st->upper_offset = to;
3609 st->root_skb = st->cur_skb = skb;
3610 st->frag_idx = st->stepped_offset = 0;
3611 st->frag_data = NULL;
3614 EXPORT_SYMBOL(skb_prepare_seq_read);
3617 * skb_seq_read - Sequentially read skb data
3618 * @consumed: number of bytes consumed by the caller so far
3619 * @data: destination pointer for data to be returned
3620 * @st: state variable
3622 * Reads a block of skb data at @consumed relative to the
3623 * lower offset specified to skb_prepare_seq_read(). Assigns
3624 * the head of the data block to @data and returns the length
3625 * of the block or 0 if the end of the skb data or the upper
3626 * offset has been reached.
3628 * The caller is not required to consume all of the data
3629 * returned, i.e. @consumed is typically set to the number
3630 * of bytes already consumed and the next call to
3631 * skb_seq_read() will return the remaining part of the block.
3633 * Note 1: The size of each block of data returned can be arbitrary,
3634 * this limitation is the cost for zerocopy sequential
3635 * reads of potentially non linear data.
3637 * Note 2: Fragment lists within fragments are not implemented
3638 * at the moment, state->root_skb could be replaced with
3639 * a stack for this purpose.
3641 unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
3642 struct skb_seq_state *st)
3644 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
3647 if (unlikely(abs_offset >= st->upper_offset)) {
3648 if (st->frag_data) {
3649 kunmap_atomic(st->frag_data);
3650 st->frag_data = NULL;
3656 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
3658 if (abs_offset < block_limit && !st->frag_data) {
3659 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
3660 return block_limit - abs_offset;
3663 if (st->frag_idx == 0 && !st->frag_data)
3664 st->stepped_offset += skb_headlen(st->cur_skb);
3666 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
3667 unsigned int pg_idx, pg_off, pg_sz;
3669 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
3672 pg_off = skb_frag_off(frag);
3673 pg_sz = skb_frag_size(frag);
3675 if (skb_frag_must_loop(skb_frag_page(frag))) {
3676 pg_idx = (pg_off + st->frag_off) >> PAGE_SHIFT;
3677 pg_off = offset_in_page(pg_off + st->frag_off);
3678 pg_sz = min_t(unsigned int, pg_sz - st->frag_off,
3679 PAGE_SIZE - pg_off);
3682 block_limit = pg_sz + st->stepped_offset;
3683 if (abs_offset < block_limit) {
3685 st->frag_data = kmap_atomic(skb_frag_page(frag) + pg_idx);
3687 *data = (u8 *)st->frag_data + pg_off +
3688 (abs_offset - st->stepped_offset);
3690 return block_limit - abs_offset;
3693 if (st->frag_data) {
3694 kunmap_atomic(st->frag_data);
3695 st->frag_data = NULL;
3698 st->stepped_offset += pg_sz;
3699 st->frag_off += pg_sz;
3700 if (st->frag_off == skb_frag_size(frag)) {
3706 if (st->frag_data) {
3707 kunmap_atomic(st->frag_data);
3708 st->frag_data = NULL;
3711 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
3712 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
3715 } else if (st->cur_skb->next) {
3716 st->cur_skb = st->cur_skb->next;
3723 EXPORT_SYMBOL(skb_seq_read);
3726 * skb_abort_seq_read - Abort a sequential read of skb data
3727 * @st: state variable
3729 * Must be called if skb_seq_read() was not called until it
3732 void skb_abort_seq_read(struct skb_seq_state *st)
3735 kunmap_atomic(st->frag_data);
3737 EXPORT_SYMBOL(skb_abort_seq_read);
3739 #define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
3741 static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
3742 struct ts_config *conf,
3743 struct ts_state *state)
3745 return skb_seq_read(offset, text, TS_SKB_CB(state));
3748 static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
3750 skb_abort_seq_read(TS_SKB_CB(state));
3754 * skb_find_text - Find a text pattern in skb data
3755 * @skb: the buffer to look in
3756 * @from: search offset
3758 * @config: textsearch configuration
3760 * Finds a pattern in the skb data according to the specified
3761 * textsearch configuration. Use textsearch_next() to retrieve
3762 * subsequent occurrences of the pattern. Returns the offset
3763 * to the first occurrence or UINT_MAX if no match was found.
3765 unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
3766 unsigned int to, struct ts_config *config)
3768 struct ts_state state;
3771 BUILD_BUG_ON(sizeof(struct skb_seq_state) > sizeof(state.cb));
3773 config->get_next_block = skb_ts_get_next_block;
3774 config->finish = skb_ts_finish;
3776 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
3778 ret = textsearch_find(config, &state);
3779 return (ret <= to - from ? ret : UINT_MAX);
3781 EXPORT_SYMBOL(skb_find_text);
3783 int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3784 int offset, size_t size)
3786 int i = skb_shinfo(skb)->nr_frags;
3788 if (skb_can_coalesce(skb, i, page, offset)) {
3789 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3790 } else if (i < MAX_SKB_FRAGS) {
3792 skb_fill_page_desc(skb, i, page, offset, size);
3799 EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3802 * skb_pull_rcsum - pull skb and update receive checksum
3803 * @skb: buffer to update
3804 * @len: length of data pulled
3806 * This function performs an skb_pull on the packet and updates
3807 * the CHECKSUM_COMPLETE checksum. It should be used on
3808 * receive path processing instead of skb_pull unless you know
3809 * that the checksum difference is zero (e.g., a valid IP header)
3810 * or you are setting ip_summed to CHECKSUM_NONE.
3812 void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3814 unsigned char *data = skb->data;
3816 BUG_ON(len > skb->len);
3817 __skb_pull(skb, len);
3818 skb_postpull_rcsum(skb, data, len);
3821 EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3823 static inline skb_frag_t skb_head_frag_to_page_desc(struct sk_buff *frag_skb)
3825 skb_frag_t head_frag;
3828 page = virt_to_head_page(frag_skb->head);
3829 __skb_frag_set_page(&head_frag, page);
3830 skb_frag_off_set(&head_frag, frag_skb->data -
3831 (unsigned char *)page_address(page));
3832 skb_frag_size_set(&head_frag, skb_headlen(frag_skb));
3836 struct sk_buff *skb_segment_list(struct sk_buff *skb,
3837 netdev_features_t features,
3838 unsigned int offset)
3840 struct sk_buff *list_skb = skb_shinfo(skb)->frag_list;
3841 unsigned int tnl_hlen = skb_tnl_header_len(skb);
3842 unsigned int delta_truesize = 0;
3843 unsigned int delta_len = 0;
3844 struct sk_buff *tail = NULL;
3845 struct sk_buff *nskb, *tmp;
3848 skb_push(skb, -skb_network_offset(skb) + offset);
3850 skb_shinfo(skb)->frag_list = NULL;
3854 list_skb = list_skb->next;
3857 if (skb_shared(nskb)) {
3858 tmp = skb_clone(nskb, GFP_ATOMIC);
3862 err = skb_unclone(nskb, GFP_ATOMIC);
3873 if (unlikely(err)) {
3874 nskb->next = list_skb;
3880 delta_len += nskb->len;
3881 delta_truesize += nskb->truesize;
3883 skb_push(nskb, -skb_network_offset(nskb) + offset);
3885 skb_release_head_state(nskb);
3886 __copy_skb_header(nskb, skb);
3888 skb_headers_offset_update(nskb, skb_headroom(nskb) - skb_headroom(skb));
3889 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
3890 nskb->data - tnl_hlen,
3893 if (skb_needs_linearize(nskb, features) &&
3894 __skb_linearize(nskb))
3899 skb->truesize = skb->truesize - delta_truesize;
3900 skb->data_len = skb->data_len - delta_len;
3901 skb->len = skb->len - delta_len;
3907 if (skb_needs_linearize(skb, features) &&
3908 __skb_linearize(skb))
3916 kfree_skb_list(skb->next);
3918 return ERR_PTR(-ENOMEM);
3920 EXPORT_SYMBOL_GPL(skb_segment_list);
3922 int skb_gro_receive_list(struct sk_buff *p, struct sk_buff *skb)
3924 if (unlikely(p->len + skb->len >= 65536))
3927 if (NAPI_GRO_CB(p)->last == p)
3928 skb_shinfo(p)->frag_list = skb;
3930 NAPI_GRO_CB(p)->last->next = skb;
3932 skb_pull(skb, skb_gro_offset(skb));
3934 NAPI_GRO_CB(p)->last = skb;
3935 NAPI_GRO_CB(p)->count++;
3936 p->data_len += skb->len;
3938 /* sk owenrship - if any - completely transferred to the aggregated packet */
3939 skb->destructor = NULL;
3940 p->truesize += skb->truesize;
3943 NAPI_GRO_CB(skb)->same_flow = 1;
3949 * skb_segment - Perform protocol segmentation on skb.
3950 * @head_skb: buffer to segment
3951 * @features: features for the output path (see dev->features)
3953 * This function performs segmentation on the given skb. It returns
3954 * a pointer to the first in a list of new skbs for the segments.
3955 * In case of error it returns ERR_PTR(err).
3957 struct sk_buff *skb_segment(struct sk_buff *head_skb,
3958 netdev_features_t features)
3960 struct sk_buff *segs = NULL;
3961 struct sk_buff *tail = NULL;
3962 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
3963 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3964 unsigned int mss = skb_shinfo(head_skb)->gso_size;
3965 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
3966 struct sk_buff *frag_skb = head_skb;
3967 unsigned int offset = doffset;
3968 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
3969 unsigned int partial_segs = 0;
3970 unsigned int headroom;
3971 unsigned int len = head_skb->len;
3974 int nfrags = skb_shinfo(head_skb)->nr_frags;
3979 if (list_skb && !list_skb->head_frag && skb_headlen(list_skb) &&
3980 (skb_shinfo(head_skb)->gso_type & SKB_GSO_DODGY)) {
3981 /* gso_size is untrusted, and we have a frag_list with a linear
3982 * non head_frag head.
3984 * (we assume checking the first list_skb member suffices;
3985 * i.e if either of the list_skb members have non head_frag
3986 * head, then the first one has too).
3988 * If head_skb's headlen does not fit requested gso_size, it
3989 * means that the frag_list members do NOT terminate on exact
3990 * gso_size boundaries. Hence we cannot perform skb_frag_t page
3991 * sharing. Therefore we must fallback to copying the frag_list
3992 * skbs; we do so by disabling SG.
3994 if (mss != GSO_BY_FRAGS && mss != skb_headlen(head_skb))
3995 features &= ~NETIF_F_SG;
3998 __skb_push(head_skb, doffset);
3999 proto = skb_network_protocol(head_skb, NULL);
4000 if (unlikely(!proto))
4001 return ERR_PTR(-EINVAL);
4003 sg = !!(features & NETIF_F_SG);
4004 csum = !!can_checksum_protocol(features, proto);
4006 if (sg && csum && (mss != GSO_BY_FRAGS)) {
4007 if (!(features & NETIF_F_GSO_PARTIAL)) {
4008 struct sk_buff *iter;
4009 unsigned int frag_len;
4012 !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
4015 /* If we get here then all the required
4016 * GSO features except frag_list are supported.
4017 * Try to split the SKB to multiple GSO SKBs
4018 * with no frag_list.
4019 * Currently we can do that only when the buffers don't
4020 * have a linear part and all the buffers except
4021 * the last are of the same length.
4023 frag_len = list_skb->len;
4024 skb_walk_frags(head_skb, iter) {
4025 if (frag_len != iter->len && iter->next)
4027 if (skb_headlen(iter) && !iter->head_frag)
4033 if (len != frag_len)
4037 /* GSO partial only requires that we trim off any excess that
4038 * doesn't fit into an MSS sized block, so take care of that
4041 partial_segs = len / mss;
4042 if (partial_segs > 1)
4043 mss *= partial_segs;
4049 headroom = skb_headroom(head_skb);
4050 pos = skb_headlen(head_skb);
4053 struct sk_buff *nskb;
4054 skb_frag_t *nskb_frag;
4058 if (unlikely(mss == GSO_BY_FRAGS)) {
4059 len = list_skb->len;
4061 len = head_skb->len - offset;
4066 hsize = skb_headlen(head_skb) - offset;
4068 if (hsize <= 0 && i >= nfrags && skb_headlen(list_skb) &&
4069 (skb_headlen(list_skb) == len || sg)) {
4070 BUG_ON(skb_headlen(list_skb) > len);
4073 nfrags = skb_shinfo(list_skb)->nr_frags;
4074 frag = skb_shinfo(list_skb)->frags;
4075 frag_skb = list_skb;
4076 pos += skb_headlen(list_skb);
4078 while (pos < offset + len) {
4079 BUG_ON(i >= nfrags);
4081 size = skb_frag_size(frag);
4082 if (pos + size > offset + len)
4090 nskb = skb_clone(list_skb, GFP_ATOMIC);
4091 list_skb = list_skb->next;
4093 if (unlikely(!nskb))
4096 if (unlikely(pskb_trim(nskb, len))) {
4101 hsize = skb_end_offset(nskb);
4102 if (skb_cow_head(nskb, doffset + headroom)) {
4107 nskb->truesize += skb_end_offset(nskb) - hsize;
4108 skb_release_head_state(nskb);
4109 __skb_push(nskb, doffset);
4113 if (hsize > len || !sg)
4116 nskb = __alloc_skb(hsize + doffset + headroom,
4117 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
4120 if (unlikely(!nskb))
4123 skb_reserve(nskb, headroom);
4124 __skb_put(nskb, doffset);
4133 __copy_skb_header(nskb, head_skb);
4135 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
4136 skb_reset_mac_len(nskb);
4138 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
4139 nskb->data - tnl_hlen,
4140 doffset + tnl_hlen);
4142 if (nskb->len == len + doffset)
4143 goto perform_csum_check;
4147 if (!nskb->remcsum_offload)
4148 nskb->ip_summed = CHECKSUM_NONE;
4149 SKB_GSO_CB(nskb)->csum =
4150 skb_copy_and_csum_bits(head_skb, offset,
4154 SKB_GSO_CB(nskb)->csum_start =
4155 skb_headroom(nskb) + doffset;
4157 skb_copy_bits(head_skb, offset,
4164 nskb_frag = skb_shinfo(nskb)->frags;
4166 skb_copy_from_linear_data_offset(head_skb, offset,
4167 skb_put(nskb, hsize), hsize);
4169 skb_shinfo(nskb)->flags |= skb_shinfo(head_skb)->flags &
4172 if (skb_orphan_frags(frag_skb, GFP_ATOMIC) ||
4173 skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC))
4176 while (pos < offset + len) {
4179 nfrags = skb_shinfo(list_skb)->nr_frags;
4180 frag = skb_shinfo(list_skb)->frags;
4181 frag_skb = list_skb;
4182 if (!skb_headlen(list_skb)) {
4185 BUG_ON(!list_skb->head_frag);
4187 /* to make room for head_frag. */
4191 if (skb_orphan_frags(frag_skb, GFP_ATOMIC) ||
4192 skb_zerocopy_clone(nskb, frag_skb,
4196 list_skb = list_skb->next;
4199 if (unlikely(skb_shinfo(nskb)->nr_frags >=
4201 net_warn_ratelimited(
4202 "skb_segment: too many frags: %u %u\n",
4208 *nskb_frag = (i < 0) ? skb_head_frag_to_page_desc(frag_skb) : *frag;
4209 __skb_frag_ref(nskb_frag);
4210 size = skb_frag_size(nskb_frag);
4213 skb_frag_off_add(nskb_frag, offset - pos);
4214 skb_frag_size_sub(nskb_frag, offset - pos);
4217 skb_shinfo(nskb)->nr_frags++;
4219 if (pos + size <= offset + len) {
4224 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
4232 nskb->data_len = len - hsize;
4233 nskb->len += nskb->data_len;
4234 nskb->truesize += nskb->data_len;
4238 if (skb_has_shared_frag(nskb) &&
4239 __skb_linearize(nskb))
4242 if (!nskb->remcsum_offload)
4243 nskb->ip_summed = CHECKSUM_NONE;
4244 SKB_GSO_CB(nskb)->csum =
4245 skb_checksum(nskb, doffset,
4246 nskb->len - doffset, 0);
4247 SKB_GSO_CB(nskb)->csum_start =
4248 skb_headroom(nskb) + doffset;
4250 } while ((offset += len) < head_skb->len);
4252 /* Some callers want to get the end of the list.
4253 * Put it in segs->prev to avoid walking the list.
4254 * (see validate_xmit_skb_list() for example)
4259 struct sk_buff *iter;
4260 int type = skb_shinfo(head_skb)->gso_type;
4261 unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
4263 /* Update type to add partial and then remove dodgy if set */
4264 type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
4265 type &= ~SKB_GSO_DODGY;
4267 /* Update GSO info and prepare to start updating headers on
4268 * our way back down the stack of protocols.
4270 for (iter = segs; iter; iter = iter->next) {
4271 skb_shinfo(iter)->gso_size = gso_size;
4272 skb_shinfo(iter)->gso_segs = partial_segs;
4273 skb_shinfo(iter)->gso_type = type;
4274 SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
4277 if (tail->len - doffset <= gso_size)
4278 skb_shinfo(tail)->gso_size = 0;
4279 else if (tail != segs)
4280 skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
4283 /* Following permits correct backpressure, for protocols
4284 * using skb_set_owner_w().
4285 * Idea is to tranfert ownership from head_skb to last segment.
4287 if (head_skb->destructor == sock_wfree) {
4288 swap(tail->truesize, head_skb->truesize);
4289 swap(tail->destructor, head_skb->destructor);
4290 swap(tail->sk, head_skb->sk);
4295 kfree_skb_list(segs);
4296 return ERR_PTR(err);
4298 EXPORT_SYMBOL_GPL(skb_segment);
4300 int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb)
4302 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
4303 unsigned int offset = skb_gro_offset(skb);
4304 unsigned int headlen = skb_headlen(skb);
4305 unsigned int len = skb_gro_len(skb);
4306 unsigned int delta_truesize;
4307 unsigned int new_truesize;
4310 if (unlikely(p->len + len >= 65536 || NAPI_GRO_CB(skb)->flush))
4313 lp = NAPI_GRO_CB(p)->last;
4314 pinfo = skb_shinfo(lp);
4316 if (headlen <= offset) {
4319 int i = skbinfo->nr_frags;
4320 int nr_frags = pinfo->nr_frags + i;
4322 if (nr_frags > MAX_SKB_FRAGS)
4326 pinfo->nr_frags = nr_frags;
4327 skbinfo->nr_frags = 0;
4329 frag = pinfo->frags + nr_frags;
4330 frag2 = skbinfo->frags + i;
4335 skb_frag_off_add(frag, offset);
4336 skb_frag_size_sub(frag, offset);
4338 /* all fragments truesize : remove (head size + sk_buff) */
4339 new_truesize = SKB_TRUESIZE(skb_end_offset(skb));
4340 delta_truesize = skb->truesize - new_truesize;
4342 skb->truesize = new_truesize;
4343 skb->len -= skb->data_len;
4346 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
4348 } else if (skb->head_frag) {
4349 int nr_frags = pinfo->nr_frags;
4350 skb_frag_t *frag = pinfo->frags + nr_frags;
4351 struct page *page = virt_to_head_page(skb->head);
4352 unsigned int first_size = headlen - offset;
4353 unsigned int first_offset;
4355 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
4358 first_offset = skb->data -
4359 (unsigned char *)page_address(page) +
4362 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
4364 __skb_frag_set_page(frag, page);
4365 skb_frag_off_set(frag, first_offset);
4366 skb_frag_size_set(frag, first_size);
4368 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
4369 /* We dont need to clear skbinfo->nr_frags here */
4371 new_truesize = SKB_DATA_ALIGN(sizeof(struct sk_buff));
4372 delta_truesize = skb->truesize - new_truesize;
4373 skb->truesize = new_truesize;
4374 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
4379 /* sk owenrship - if any - completely transferred to the aggregated packet */
4380 skb->destructor = NULL;
4381 delta_truesize = skb->truesize;
4382 if (offset > headlen) {
4383 unsigned int eat = offset - headlen;
4385 skb_frag_off_add(&skbinfo->frags[0], eat);
4386 skb_frag_size_sub(&skbinfo->frags[0], eat);
4387 skb->data_len -= eat;
4392 __skb_pull(skb, offset);
4394 if (NAPI_GRO_CB(p)->last == p)
4395 skb_shinfo(p)->frag_list = skb;
4397 NAPI_GRO_CB(p)->last->next = skb;
4398 NAPI_GRO_CB(p)->last = skb;
4399 __skb_header_release(skb);
4403 NAPI_GRO_CB(p)->count++;
4405 p->truesize += delta_truesize;
4408 lp->data_len += len;
4409 lp->truesize += delta_truesize;
4412 NAPI_GRO_CB(skb)->same_flow = 1;
4416 #ifdef CONFIG_SKB_EXTENSIONS
4417 #define SKB_EXT_ALIGN_VALUE 8
4418 #define SKB_EXT_CHUNKSIZEOF(x) (ALIGN((sizeof(x)), SKB_EXT_ALIGN_VALUE) / SKB_EXT_ALIGN_VALUE)
4420 static const u8 skb_ext_type_len[] = {
4421 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4422 [SKB_EXT_BRIDGE_NF] = SKB_EXT_CHUNKSIZEOF(struct nf_bridge_info),
4425 [SKB_EXT_SEC_PATH] = SKB_EXT_CHUNKSIZEOF(struct sec_path),
4427 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4428 [TC_SKB_EXT] = SKB_EXT_CHUNKSIZEOF(struct tc_skb_ext),
4430 #if IS_ENABLED(CONFIG_MPTCP)
4431 [SKB_EXT_MPTCP] = SKB_EXT_CHUNKSIZEOF(struct mptcp_ext),
4433 #if IS_ENABLED(CONFIG_MCTP_FLOWS)
4434 [SKB_EXT_MCTP] = SKB_EXT_CHUNKSIZEOF(struct mctp_flow),
4438 static __always_inline unsigned int skb_ext_total_length(void)
4440 return SKB_EXT_CHUNKSIZEOF(struct skb_ext) +
4441 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4442 skb_ext_type_len[SKB_EXT_BRIDGE_NF] +
4445 skb_ext_type_len[SKB_EXT_SEC_PATH] +
4447 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4448 skb_ext_type_len[TC_SKB_EXT] +
4450 #if IS_ENABLED(CONFIG_MPTCP)
4451 skb_ext_type_len[SKB_EXT_MPTCP] +
4453 #if IS_ENABLED(CONFIG_MCTP_FLOWS)
4454 skb_ext_type_len[SKB_EXT_MCTP] +
4459 static void skb_extensions_init(void)
4461 BUILD_BUG_ON(SKB_EXT_NUM >= 8);
4462 BUILD_BUG_ON(skb_ext_total_length() > 255);
4464 skbuff_ext_cache = kmem_cache_create("skbuff_ext_cache",
4465 SKB_EXT_ALIGN_VALUE * skb_ext_total_length(),
4467 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4471 static void skb_extensions_init(void) {}
4474 void __init skb_init(void)
4476 skbuff_head_cache = kmem_cache_create_usercopy("skbuff_head_cache",
4477 sizeof(struct sk_buff),
4479 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4480 offsetof(struct sk_buff, cb),
4481 sizeof_field(struct sk_buff, cb),
4483 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
4484 sizeof(struct sk_buff_fclones),
4486 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4488 skb_extensions_init();
4492 __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
4493 unsigned int recursion_level)
4495 int start = skb_headlen(skb);
4496 int i, copy = start - offset;
4497 struct sk_buff *frag_iter;
4500 if (unlikely(recursion_level >= 24))
4506 sg_set_buf(sg, skb->data + offset, copy);
4508 if ((len -= copy) == 0)
4513 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
4516 WARN_ON(start > offset + len);
4518 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
4519 if ((copy = end - offset) > 0) {
4520 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4521 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
4526 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
4527 skb_frag_off(frag) + offset - start);
4536 skb_walk_frags(skb, frag_iter) {
4539 WARN_ON(start > offset + len);
4541 end = start + frag_iter->len;
4542 if ((copy = end - offset) > 0) {
4543 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
4548 ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
4549 copy, recursion_level + 1);
4550 if (unlikely(ret < 0))
4553 if ((len -= copy) == 0)
4564 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
4565 * @skb: Socket buffer containing the buffers to be mapped
4566 * @sg: The scatter-gather list to map into
4567 * @offset: The offset into the buffer's contents to start mapping
4568 * @len: Length of buffer space to be mapped
4570 * Fill the specified scatter-gather list with mappings/pointers into a
4571 * region of the buffer space attached to a socket buffer. Returns either
4572 * the number of scatterlist items used, or -EMSGSIZE if the contents
4575 int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
4577 int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
4582 sg_mark_end(&sg[nsg - 1]);
4586 EXPORT_SYMBOL_GPL(skb_to_sgvec);
4588 /* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
4589 * sglist without mark the sg which contain last skb data as the end.
4590 * So the caller can mannipulate sg list as will when padding new data after
4591 * the first call without calling sg_unmark_end to expend sg list.
4593 * Scenario to use skb_to_sgvec_nomark:
4595 * 2. skb_to_sgvec_nomark(payload1)
4596 * 3. skb_to_sgvec_nomark(payload2)
4598 * This is equivalent to:
4600 * 2. skb_to_sgvec(payload1)
4602 * 4. skb_to_sgvec(payload2)
4604 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
4605 * is more preferable.
4607 int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
4608 int offset, int len)
4610 return __skb_to_sgvec(skb, sg, offset, len, 0);
4612 EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
4617 * skb_cow_data - Check that a socket buffer's data buffers are writable
4618 * @skb: The socket buffer to check.
4619 * @tailbits: Amount of trailing space to be added
4620 * @trailer: Returned pointer to the skb where the @tailbits space begins
4622 * Make sure that the data buffers attached to a socket buffer are
4623 * writable. If they are not, private copies are made of the data buffers
4624 * and the socket buffer is set to use these instead.
4626 * If @tailbits is given, make sure that there is space to write @tailbits
4627 * bytes of data beyond current end of socket buffer. @trailer will be
4628 * set to point to the skb in which this space begins.
4630 * The number of scatterlist elements required to completely map the
4631 * COW'd and extended socket buffer will be returned.
4633 int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
4637 struct sk_buff *skb1, **skb_p;
4639 /* If skb is cloned or its head is paged, reallocate
4640 * head pulling out all the pages (pages are considered not writable
4641 * at the moment even if they are anonymous).
4643 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
4644 !__pskb_pull_tail(skb, __skb_pagelen(skb)))
4647 /* Easy case. Most of packets will go this way. */
4648 if (!skb_has_frag_list(skb)) {
4649 /* A little of trouble, not enough of space for trailer.
4650 * This should not happen, when stack is tuned to generate
4651 * good frames. OK, on miss we reallocate and reserve even more
4652 * space, 128 bytes is fair. */
4654 if (skb_tailroom(skb) < tailbits &&
4655 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
4663 /* Misery. We are in troubles, going to mincer fragments... */
4666 skb_p = &skb_shinfo(skb)->frag_list;
4669 while ((skb1 = *skb_p) != NULL) {
4672 /* The fragment is partially pulled by someone,
4673 * this can happen on input. Copy it and everything
4676 if (skb_shared(skb1))
4679 /* If the skb is the last, worry about trailer. */
4681 if (skb1->next == NULL && tailbits) {
4682 if (skb_shinfo(skb1)->nr_frags ||
4683 skb_has_frag_list(skb1) ||
4684 skb_tailroom(skb1) < tailbits)
4685 ntail = tailbits + 128;
4691 skb_shinfo(skb1)->nr_frags ||
4692 skb_has_frag_list(skb1)) {
4693 struct sk_buff *skb2;
4695 /* Fuck, we are miserable poor guys... */
4697 skb2 = skb_copy(skb1, GFP_ATOMIC);
4699 skb2 = skb_copy_expand(skb1,
4703 if (unlikely(skb2 == NULL))
4707 skb_set_owner_w(skb2, skb1->sk);
4709 /* Looking around. Are we still alive?
4710 * OK, link new skb, drop old one */
4712 skb2->next = skb1->next;
4719 skb_p = &skb1->next;
4724 EXPORT_SYMBOL_GPL(skb_cow_data);
4726 static void sock_rmem_free(struct sk_buff *skb)
4728 struct sock *sk = skb->sk;
4730 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
4733 static void skb_set_err_queue(struct sk_buff *skb)
4735 /* pkt_type of skbs received on local sockets is never PACKET_OUTGOING.
4736 * So, it is safe to (mis)use it to mark skbs on the error queue.
4738 skb->pkt_type = PACKET_OUTGOING;
4739 BUILD_BUG_ON(PACKET_OUTGOING == 0);
4743 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
4745 int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
4747 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
4748 (unsigned int)READ_ONCE(sk->sk_rcvbuf))
4753 skb->destructor = sock_rmem_free;
4754 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
4755 skb_set_err_queue(skb);
4757 /* before exiting rcu section, make sure dst is refcounted */
4760 skb_queue_tail(&sk->sk_error_queue, skb);
4761 if (!sock_flag(sk, SOCK_DEAD))
4762 sk_error_report(sk);
4765 EXPORT_SYMBOL(sock_queue_err_skb);
4767 static bool is_icmp_err_skb(const struct sk_buff *skb)
4769 return skb && (SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
4770 SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP6);
4773 struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
4775 struct sk_buff_head *q = &sk->sk_error_queue;
4776 struct sk_buff *skb, *skb_next = NULL;
4777 bool icmp_next = false;
4778 unsigned long flags;
4780 spin_lock_irqsave(&q->lock, flags);
4781 skb = __skb_dequeue(q);
4782 if (skb && (skb_next = skb_peek(q))) {
4783 icmp_next = is_icmp_err_skb(skb_next);
4785 sk->sk_err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
4787 spin_unlock_irqrestore(&q->lock, flags);
4789 if (is_icmp_err_skb(skb) && !icmp_next)
4793 sk_error_report(sk);
4797 EXPORT_SYMBOL(sock_dequeue_err_skb);
4800 * skb_clone_sk - create clone of skb, and take reference to socket
4801 * @skb: the skb to clone
4803 * This function creates a clone of a buffer that holds a reference on
4804 * sk_refcnt. Buffers created via this function are meant to be
4805 * returned using sock_queue_err_skb, or free via kfree_skb.
4807 * When passing buffers allocated with this function to sock_queue_err_skb
4808 * it is necessary to wrap the call with sock_hold/sock_put in order to
4809 * prevent the socket from being released prior to being enqueued on
4810 * the sk_error_queue.
4812 struct sk_buff *skb_clone_sk(struct sk_buff *skb)
4814 struct sock *sk = skb->sk;
4815 struct sk_buff *clone;
4817 if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
4820 clone = skb_clone(skb, GFP_ATOMIC);
4827 clone->destructor = sock_efree;
4831 EXPORT_SYMBOL(skb_clone_sk);
4833 static void __skb_complete_tx_timestamp(struct sk_buff *skb,
4838 struct sock_exterr_skb *serr;
4841 BUILD_BUG_ON(sizeof(struct sock_exterr_skb) > sizeof(skb->cb));
4843 serr = SKB_EXT_ERR(skb);
4844 memset(serr, 0, sizeof(*serr));
4845 serr->ee.ee_errno = ENOMSG;
4846 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
4847 serr->ee.ee_info = tstype;
4848 serr->opt_stats = opt_stats;
4849 serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
4850 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
4851 serr->ee.ee_data = skb_shinfo(skb)->tskey;
4852 if (sk->sk_protocol == IPPROTO_TCP &&
4853 sk->sk_type == SOCK_STREAM)
4854 serr->ee.ee_data -= sk->sk_tskey;
4857 err = sock_queue_err_skb(sk, skb);
4863 static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
4867 if (likely(sysctl_tstamp_allow_data || tsonly))
4870 read_lock_bh(&sk->sk_callback_lock);
4871 ret = sk->sk_socket && sk->sk_socket->file &&
4872 file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
4873 read_unlock_bh(&sk->sk_callback_lock);
4877 void skb_complete_tx_timestamp(struct sk_buff *skb,
4878 struct skb_shared_hwtstamps *hwtstamps)
4880 struct sock *sk = skb->sk;
4882 if (!skb_may_tx_timestamp(sk, false))
4885 /* Take a reference to prevent skb_orphan() from freeing the socket,
4886 * but only if the socket refcount is not zero.
4888 if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4889 *skb_hwtstamps(skb) = *hwtstamps;
4890 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND, false);
4898 EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
4900 void __skb_tstamp_tx(struct sk_buff *orig_skb,
4901 const struct sk_buff *ack_skb,
4902 struct skb_shared_hwtstamps *hwtstamps,
4903 struct sock *sk, int tstype)
4905 struct sk_buff *skb;
4906 bool tsonly, opt_stats = false;
4911 if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) &&
4912 skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS)
4915 tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
4916 if (!skb_may_tx_timestamp(sk, tsonly))
4921 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) &&
4922 sk->sk_protocol == IPPROTO_TCP &&
4923 sk->sk_type == SOCK_STREAM) {
4924 skb = tcp_get_timestamping_opt_stats(sk, orig_skb,
4929 skb = alloc_skb(0, GFP_ATOMIC);
4931 skb = skb_clone(orig_skb, GFP_ATOMIC);
4937 skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
4939 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
4943 *skb_hwtstamps(skb) = *hwtstamps;
4945 skb->tstamp = ktime_get_real();
4947 __skb_complete_tx_timestamp(skb, sk, tstype, opt_stats);
4949 EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
4951 void skb_tstamp_tx(struct sk_buff *orig_skb,
4952 struct skb_shared_hwtstamps *hwtstamps)
4954 return __skb_tstamp_tx(orig_skb, NULL, hwtstamps, orig_skb->sk,
4957 EXPORT_SYMBOL_GPL(skb_tstamp_tx);
4959 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
4961 struct sock *sk = skb->sk;
4962 struct sock_exterr_skb *serr;
4965 skb->wifi_acked_valid = 1;
4966 skb->wifi_acked = acked;
4968 serr = SKB_EXT_ERR(skb);
4969 memset(serr, 0, sizeof(*serr));
4970 serr->ee.ee_errno = ENOMSG;
4971 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
4973 /* Take a reference to prevent skb_orphan() from freeing the socket,
4974 * but only if the socket refcount is not zero.
4976 if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4977 err = sock_queue_err_skb(sk, skb);
4983 EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
4986 * skb_partial_csum_set - set up and verify partial csum values for packet
4987 * @skb: the skb to set
4988 * @start: the number of bytes after skb->data to start checksumming.
4989 * @off: the offset from start to place the checksum.
4991 * For untrusted partially-checksummed packets, we need to make sure the values
4992 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
4994 * This function checks and sets those values and skb->ip_summed: if this
4995 * returns false you should drop the packet.
4997 bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
4999 u32 csum_end = (u32)start + (u32)off + sizeof(__sum16);
5000 u32 csum_start = skb_headroom(skb) + (u32)start;
5002 if (unlikely(csum_start > U16_MAX || csum_end > skb_headlen(skb))) {
5003 net_warn_ratelimited("bad partial csum: csum=%u/%u headroom=%u headlen=%u\n",
5004 start, off, skb_headroom(skb), skb_headlen(skb));
5007 skb->ip_summed = CHECKSUM_PARTIAL;
5008 skb->csum_start = csum_start;
5009 skb->csum_offset = off;
5010 skb_set_transport_header(skb, start);
5013 EXPORT_SYMBOL_GPL(skb_partial_csum_set);
5015 static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
5018 if (skb_headlen(skb) >= len)
5021 /* If we need to pullup then pullup to the max, so we
5022 * won't need to do it again.
5027 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
5030 if (skb_headlen(skb) < len)
5036 #define MAX_TCP_HDR_LEN (15 * 4)
5038 static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
5039 typeof(IPPROTO_IP) proto,
5046 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
5047 off + MAX_TCP_HDR_LEN);
5048 if (!err && !skb_partial_csum_set(skb, off,
5049 offsetof(struct tcphdr,
5052 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
5055 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
5056 off + sizeof(struct udphdr));
5057 if (!err && !skb_partial_csum_set(skb, off,
5058 offsetof(struct udphdr,
5061 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
5064 return ERR_PTR(-EPROTO);
5067 /* This value should be large enough to cover a tagged ethernet header plus
5068 * maximally sized IP and TCP or UDP headers.
5070 #define MAX_IP_HDR_LEN 128
5072 static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
5081 err = skb_maybe_pull_tail(skb,
5082 sizeof(struct iphdr),
5087 if (ip_is_fragment(ip_hdr(skb)))
5090 off = ip_hdrlen(skb);
5097 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
5099 return PTR_ERR(csum);
5102 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
5105 ip_hdr(skb)->protocol, 0);
5112 /* This value should be large enough to cover a tagged ethernet header plus
5113 * an IPv6 header, all options, and a maximal TCP or UDP header.
5115 #define MAX_IPV6_HDR_LEN 256
5117 #define OPT_HDR(type, skb, off) \
5118 (type *)(skb_network_header(skb) + (off))
5120 static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
5133 off = sizeof(struct ipv6hdr);
5135 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
5139 nexthdr = ipv6_hdr(skb)->nexthdr;
5141 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
5142 while (off <= len && !done) {
5144 case IPPROTO_DSTOPTS:
5145 case IPPROTO_HOPOPTS:
5146 case IPPROTO_ROUTING: {
5147 struct ipv6_opt_hdr *hp;
5149 err = skb_maybe_pull_tail(skb,
5151 sizeof(struct ipv6_opt_hdr),
5156 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
5157 nexthdr = hp->nexthdr;
5158 off += ipv6_optlen(hp);
5162 struct ip_auth_hdr *hp;
5164 err = skb_maybe_pull_tail(skb,
5166 sizeof(struct ip_auth_hdr),
5171 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
5172 nexthdr = hp->nexthdr;
5173 off += ipv6_authlen(hp);
5176 case IPPROTO_FRAGMENT: {
5177 struct frag_hdr *hp;
5179 err = skb_maybe_pull_tail(skb,
5181 sizeof(struct frag_hdr),
5186 hp = OPT_HDR(struct frag_hdr, skb, off);
5188 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
5191 nexthdr = hp->nexthdr;
5192 off += sizeof(struct frag_hdr);
5203 if (!done || fragment)
5206 csum = skb_checksum_setup_ip(skb, nexthdr, off);
5208 return PTR_ERR(csum);
5211 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5212 &ipv6_hdr(skb)->daddr,
5213 skb->len - off, nexthdr, 0);
5221 * skb_checksum_setup - set up partial checksum offset
5222 * @skb: the skb to set up
5223 * @recalculate: if true the pseudo-header checksum will be recalculated
5225 int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
5229 switch (skb->protocol) {
5230 case htons(ETH_P_IP):
5231 err = skb_checksum_setup_ipv4(skb, recalculate);
5234 case htons(ETH_P_IPV6):
5235 err = skb_checksum_setup_ipv6(skb, recalculate);
5245 EXPORT_SYMBOL(skb_checksum_setup);
5248 * skb_checksum_maybe_trim - maybe trims the given skb
5249 * @skb: the skb to check
5250 * @transport_len: the data length beyond the network header
5252 * Checks whether the given skb has data beyond the given transport length.
5253 * If so, returns a cloned skb trimmed to this transport length.
5254 * Otherwise returns the provided skb. Returns NULL in error cases
5255 * (e.g. transport_len exceeds skb length or out-of-memory).
5257 * Caller needs to set the skb transport header and free any returned skb if it
5258 * differs from the provided skb.
5260 static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
5261 unsigned int transport_len)
5263 struct sk_buff *skb_chk;
5264 unsigned int len = skb_transport_offset(skb) + transport_len;
5269 else if (skb->len == len)
5272 skb_chk = skb_clone(skb, GFP_ATOMIC);
5276 ret = pskb_trim_rcsum(skb_chk, len);
5286 * skb_checksum_trimmed - validate checksum of an skb
5287 * @skb: the skb to check
5288 * @transport_len: the data length beyond the network header
5289 * @skb_chkf: checksum function to use
5291 * Applies the given checksum function skb_chkf to the provided skb.
5292 * Returns a checked and maybe trimmed skb. Returns NULL on error.
5294 * If the skb has data beyond the given transport length, then a
5295 * trimmed & cloned skb is checked and returned.
5297 * Caller needs to set the skb transport header and free any returned skb if it
5298 * differs from the provided skb.
5300 struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
5301 unsigned int transport_len,
5302 __sum16(*skb_chkf)(struct sk_buff *skb))
5304 struct sk_buff *skb_chk;
5305 unsigned int offset = skb_transport_offset(skb);
5308 skb_chk = skb_checksum_maybe_trim(skb, transport_len);
5312 if (!pskb_may_pull(skb_chk, offset))
5315 skb_pull_rcsum(skb_chk, offset);
5316 ret = skb_chkf(skb_chk);
5317 skb_push_rcsum(skb_chk, offset);
5325 if (skb_chk && skb_chk != skb)
5331 EXPORT_SYMBOL(skb_checksum_trimmed);
5333 void __skb_warn_lro_forwarding(const struct sk_buff *skb)
5335 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
5338 EXPORT_SYMBOL(__skb_warn_lro_forwarding);
5340 void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
5343 skb_release_head_state(skb);
5344 kmem_cache_free(skbuff_head_cache, skb);
5349 EXPORT_SYMBOL(kfree_skb_partial);
5352 * skb_try_coalesce - try to merge skb to prior one
5354 * @from: buffer to add
5355 * @fragstolen: pointer to boolean
5356 * @delta_truesize: how much more was allocated than was requested
5358 bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
5359 bool *fragstolen, int *delta_truesize)
5361 struct skb_shared_info *to_shinfo, *from_shinfo;
5362 int i, delta, len = from->len;
5364 *fragstolen = false;
5369 /* The page pool signature of struct page will eventually figure out
5370 * which pages can be recycled or not but for now let's prohibit slab
5371 * allocated and page_pool allocated SKBs from being coalesced.
5373 if (to->pp_recycle != from->pp_recycle)
5376 if (len <= skb_tailroom(to)) {
5378 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
5379 *delta_truesize = 0;
5383 to_shinfo = skb_shinfo(to);
5384 from_shinfo = skb_shinfo(from);
5385 if (to_shinfo->frag_list || from_shinfo->frag_list)
5387 if (skb_zcopy(to) || skb_zcopy(from))
5390 if (skb_headlen(from) != 0) {
5392 unsigned int offset;
5394 if (to_shinfo->nr_frags +
5395 from_shinfo->nr_frags >= MAX_SKB_FRAGS)
5398 if (skb_head_is_locked(from))
5401 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
5403 page = virt_to_head_page(from->head);
5404 offset = from->data - (unsigned char *)page_address(page);
5406 skb_fill_page_desc(to, to_shinfo->nr_frags,
5407 page, offset, skb_headlen(from));
5410 if (to_shinfo->nr_frags +
5411 from_shinfo->nr_frags > MAX_SKB_FRAGS)
5414 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
5417 WARN_ON_ONCE(delta < len);
5419 memcpy(to_shinfo->frags + to_shinfo->nr_frags,
5421 from_shinfo->nr_frags * sizeof(skb_frag_t));
5422 to_shinfo->nr_frags += from_shinfo->nr_frags;
5424 if (!skb_cloned(from))
5425 from_shinfo->nr_frags = 0;
5427 /* if the skb is not cloned this does nothing
5428 * since we set nr_frags to 0.
5430 for (i = 0; i < from_shinfo->nr_frags; i++)
5431 __skb_frag_ref(&from_shinfo->frags[i]);
5433 to->truesize += delta;
5435 to->data_len += len;
5437 *delta_truesize = delta;
5440 EXPORT_SYMBOL(skb_try_coalesce);
5443 * skb_scrub_packet - scrub an skb
5445 * @skb: buffer to clean
5446 * @xnet: packet is crossing netns
5448 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
5449 * into/from a tunnel. Some information have to be cleared during these
5451 * skb_scrub_packet can also be used to clean a skb before injecting it in
5452 * another namespace (@xnet == true). We have to clear all information in the
5453 * skb that could impact namespace isolation.
5455 void skb_scrub_packet(struct sk_buff *skb, bool xnet)
5457 skb->pkt_type = PACKET_HOST;
5463 nf_reset_trace(skb);
5465 #ifdef CONFIG_NET_SWITCHDEV
5466 skb->offload_fwd_mark = 0;
5467 skb->offload_l3_fwd_mark = 0;
5477 EXPORT_SYMBOL_GPL(skb_scrub_packet);
5480 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
5484 * skb_gso_transport_seglen is used to determine the real size of the
5485 * individual segments, including Layer4 headers (TCP/UDP).
5487 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
5489 static unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
5491 const struct skb_shared_info *shinfo = skb_shinfo(skb);
5492 unsigned int thlen = 0;
5494 if (skb->encapsulation) {
5495 thlen = skb_inner_transport_header(skb) -
5496 skb_transport_header(skb);
5498 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
5499 thlen += inner_tcp_hdrlen(skb);
5500 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
5501 thlen = tcp_hdrlen(skb);
5502 } else if (unlikely(skb_is_gso_sctp(skb))) {
5503 thlen = sizeof(struct sctphdr);
5504 } else if (shinfo->gso_type & SKB_GSO_UDP_L4) {
5505 thlen = sizeof(struct udphdr);
5507 /* UFO sets gso_size to the size of the fragmentation
5508 * payload, i.e. the size of the L4 (UDP) header is already
5511 return thlen + shinfo->gso_size;
5515 * skb_gso_network_seglen - Return length of individual segments of a gso packet
5519 * skb_gso_network_seglen is used to determine the real size of the
5520 * individual segments, including Layer3 (IP, IPv6) and L4 headers (TCP/UDP).
5522 * The MAC/L2 header is not accounted for.
5524 static unsigned int skb_gso_network_seglen(const struct sk_buff *skb)
5526 unsigned int hdr_len = skb_transport_header(skb) -
5527 skb_network_header(skb);
5529 return hdr_len + skb_gso_transport_seglen(skb);
5533 * skb_gso_mac_seglen - Return length of individual segments of a gso packet
5537 * skb_gso_mac_seglen is used to determine the real size of the
5538 * individual segments, including MAC/L2, Layer3 (IP, IPv6) and L4
5539 * headers (TCP/UDP).
5541 static unsigned int skb_gso_mac_seglen(const struct sk_buff *skb)
5543 unsigned int hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
5545 return hdr_len + skb_gso_transport_seglen(skb);
5549 * skb_gso_size_check - check the skb size, considering GSO_BY_FRAGS
5551 * There are a couple of instances where we have a GSO skb, and we
5552 * want to determine what size it would be after it is segmented.
5554 * We might want to check:
5555 * - L3+L4+payload size (e.g. IP forwarding)
5556 * - L2+L3+L4+payload size (e.g. sanity check before passing to driver)
5558 * This is a helper to do that correctly considering GSO_BY_FRAGS.
5562 * @seg_len: The segmented length (from skb_gso_*_seglen). In the
5563 * GSO_BY_FRAGS case this will be [header sizes + GSO_BY_FRAGS].
5565 * @max_len: The maximum permissible length.
5567 * Returns true if the segmented length <= max length.
5569 static inline bool skb_gso_size_check(const struct sk_buff *skb,
5570 unsigned int seg_len,
5571 unsigned int max_len) {
5572 const struct skb_shared_info *shinfo = skb_shinfo(skb);
5573 const struct sk_buff *iter;
5575 if (shinfo->gso_size != GSO_BY_FRAGS)
5576 return seg_len <= max_len;
5578 /* Undo this so we can re-use header sizes */
5579 seg_len -= GSO_BY_FRAGS;
5581 skb_walk_frags(skb, iter) {
5582 if (seg_len + skb_headlen(iter) > max_len)
5590 * skb_gso_validate_network_len - Will a split GSO skb fit into a given MTU?
5593 * @mtu: MTU to validate against
5595 * skb_gso_validate_network_len validates if a given skb will fit a
5596 * wanted MTU once split. It considers L3 headers, L4 headers, and the
5599 bool skb_gso_validate_network_len(const struct sk_buff *skb, unsigned int mtu)
5601 return skb_gso_size_check(skb, skb_gso_network_seglen(skb), mtu);
5603 EXPORT_SYMBOL_GPL(skb_gso_validate_network_len);
5606 * skb_gso_validate_mac_len - Will a split GSO skb fit in a given length?
5609 * @len: length to validate against
5611 * skb_gso_validate_mac_len validates if a given skb will fit a wanted
5612 * length once split, including L2, L3 and L4 headers and the payload.
5614 bool skb_gso_validate_mac_len(const struct sk_buff *skb, unsigned int len)
5616 return skb_gso_size_check(skb, skb_gso_mac_seglen(skb), len);
5618 EXPORT_SYMBOL_GPL(skb_gso_validate_mac_len);
5620 static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
5622 int mac_len, meta_len;
5625 if (skb_cow(skb, skb_headroom(skb)) < 0) {
5630 mac_len = skb->data - skb_mac_header(skb);
5631 if (likely(mac_len > VLAN_HLEN + ETH_TLEN)) {
5632 memmove(skb_mac_header(skb) + VLAN_HLEN, skb_mac_header(skb),
5633 mac_len - VLAN_HLEN - ETH_TLEN);
5636 meta_len = skb_metadata_len(skb);
5638 meta = skb_metadata_end(skb) - meta_len;
5639 memmove(meta + VLAN_HLEN, meta, meta_len);
5642 skb->mac_header += VLAN_HLEN;
5646 struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
5648 struct vlan_hdr *vhdr;
5651 if (unlikely(skb_vlan_tag_present(skb))) {
5652 /* vlan_tci is already set-up so leave this for another time */
5656 skb = skb_share_check(skb, GFP_ATOMIC);
5659 /* We may access the two bytes after vlan_hdr in vlan_set_encap_proto(). */
5660 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN + sizeof(unsigned short))))
5663 vhdr = (struct vlan_hdr *)skb->data;
5664 vlan_tci = ntohs(vhdr->h_vlan_TCI);
5665 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
5667 skb_pull_rcsum(skb, VLAN_HLEN);
5668 vlan_set_encap_proto(skb, vhdr);
5670 skb = skb_reorder_vlan_header(skb);
5674 skb_reset_network_header(skb);
5675 if (!skb_transport_header_was_set(skb))
5676 skb_reset_transport_header(skb);
5677 skb_reset_mac_len(skb);
5685 EXPORT_SYMBOL(skb_vlan_untag);
5687 int skb_ensure_writable(struct sk_buff *skb, int write_len)
5689 if (!pskb_may_pull(skb, write_len))
5692 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
5695 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5697 EXPORT_SYMBOL(skb_ensure_writable);
5699 /* remove VLAN header from packet and update csum accordingly.
5700 * expects a non skb_vlan_tag_present skb with a vlan tag payload
5702 int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
5704 struct vlan_hdr *vhdr;
5705 int offset = skb->data - skb_mac_header(skb);
5708 if (WARN_ONCE(offset,
5709 "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
5714 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
5718 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5720 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
5721 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
5723 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
5724 __skb_pull(skb, VLAN_HLEN);
5726 vlan_set_encap_proto(skb, vhdr);
5727 skb->mac_header += VLAN_HLEN;
5729 if (skb_network_offset(skb) < ETH_HLEN)
5730 skb_set_network_header(skb, ETH_HLEN);
5732 skb_reset_mac_len(skb);
5736 EXPORT_SYMBOL(__skb_vlan_pop);
5738 /* Pop a vlan tag either from hwaccel or from payload.
5739 * Expects skb->data at mac header.
5741 int skb_vlan_pop(struct sk_buff *skb)
5747 if (likely(skb_vlan_tag_present(skb))) {
5748 __vlan_hwaccel_clear_tag(skb);
5750 if (unlikely(!eth_type_vlan(skb->protocol)))
5753 err = __skb_vlan_pop(skb, &vlan_tci);
5757 /* move next vlan tag to hw accel tag */
5758 if (likely(!eth_type_vlan(skb->protocol)))
5761 vlan_proto = skb->protocol;
5762 err = __skb_vlan_pop(skb, &vlan_tci);
5766 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5769 EXPORT_SYMBOL(skb_vlan_pop);
5771 /* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
5772 * Expects skb->data at mac header.
5774 int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
5776 if (skb_vlan_tag_present(skb)) {
5777 int offset = skb->data - skb_mac_header(skb);
5780 if (WARN_ONCE(offset,
5781 "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
5786 err = __vlan_insert_tag(skb, skb->vlan_proto,
5787 skb_vlan_tag_get(skb));
5791 skb->protocol = skb->vlan_proto;
5792 skb->mac_len += VLAN_HLEN;
5794 skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5796 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5799 EXPORT_SYMBOL(skb_vlan_push);
5802 * skb_eth_pop() - Drop the Ethernet header at the head of a packet
5804 * @skb: Socket buffer to modify
5806 * Drop the Ethernet header of @skb.
5808 * Expects that skb->data points to the mac header and that no VLAN tags are
5811 * Returns 0 on success, -errno otherwise.
5813 int skb_eth_pop(struct sk_buff *skb)
5815 if (!pskb_may_pull(skb, ETH_HLEN) || skb_vlan_tagged(skb) ||
5816 skb_network_offset(skb) < ETH_HLEN)
5819 skb_pull_rcsum(skb, ETH_HLEN);
5820 skb_reset_mac_header(skb);
5821 skb_reset_mac_len(skb);
5825 EXPORT_SYMBOL(skb_eth_pop);
5828 * skb_eth_push() - Add a new Ethernet header at the head of a packet
5830 * @skb: Socket buffer to modify
5831 * @dst: Destination MAC address of the new header
5832 * @src: Source MAC address of the new header
5834 * Prepend @skb with a new Ethernet header.
5836 * Expects that skb->data points to the mac header, which must be empty.
5838 * Returns 0 on success, -errno otherwise.
5840 int skb_eth_push(struct sk_buff *skb, const unsigned char *dst,
5841 const unsigned char *src)
5846 if (skb_network_offset(skb) || skb_vlan_tag_present(skb))
5849 err = skb_cow_head(skb, sizeof(*eth));
5853 skb_push(skb, sizeof(*eth));
5854 skb_reset_mac_header(skb);
5855 skb_reset_mac_len(skb);
5858 ether_addr_copy(eth->h_dest, dst);
5859 ether_addr_copy(eth->h_source, src);
5860 eth->h_proto = skb->protocol;
5862 skb_postpush_rcsum(skb, eth, sizeof(*eth));
5866 EXPORT_SYMBOL(skb_eth_push);
5868 /* Update the ethertype of hdr and the skb csum value if required. */
5869 static void skb_mod_eth_type(struct sk_buff *skb, struct ethhdr *hdr,
5872 if (skb->ip_summed == CHECKSUM_COMPLETE) {
5873 __be16 diff[] = { ~hdr->h_proto, ethertype };
5875 skb->csum = csum_partial((char *)diff, sizeof(diff), skb->csum);
5878 hdr->h_proto = ethertype;
5882 * skb_mpls_push() - push a new MPLS header after mac_len bytes from start of
5886 * @mpls_lse: MPLS label stack entry to push
5887 * @mpls_proto: ethertype of the new MPLS header (expects 0x8847 or 0x8848)
5888 * @mac_len: length of the MAC header
5889 * @ethernet: flag to indicate if the resulting packet after skb_mpls_push is
5892 * Expects skb->data at mac header.
5894 * Returns 0 on success, -errno otherwise.
5896 int skb_mpls_push(struct sk_buff *skb, __be32 mpls_lse, __be16 mpls_proto,
5897 int mac_len, bool ethernet)
5899 struct mpls_shim_hdr *lse;
5902 if (unlikely(!eth_p_mpls(mpls_proto)))
5905 /* Networking stack does not allow simultaneous Tunnel and MPLS GSO. */
5906 if (skb->encapsulation)
5909 err = skb_cow_head(skb, MPLS_HLEN);
5913 if (!skb->inner_protocol) {
5914 skb_set_inner_network_header(skb, skb_network_offset(skb));
5915 skb_set_inner_protocol(skb, skb->protocol);
5918 skb_push(skb, MPLS_HLEN);
5919 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
5921 skb_reset_mac_header(skb);
5922 skb_set_network_header(skb, mac_len);
5923 skb_reset_mac_len(skb);
5925 lse = mpls_hdr(skb);
5926 lse->label_stack_entry = mpls_lse;
5927 skb_postpush_rcsum(skb, lse, MPLS_HLEN);
5929 if (ethernet && mac_len >= ETH_HLEN)
5930 skb_mod_eth_type(skb, eth_hdr(skb), mpls_proto);
5931 skb->protocol = mpls_proto;
5935 EXPORT_SYMBOL_GPL(skb_mpls_push);
5938 * skb_mpls_pop() - pop the outermost MPLS header
5941 * @next_proto: ethertype of header after popped MPLS header
5942 * @mac_len: length of the MAC header
5943 * @ethernet: flag to indicate if the packet is ethernet
5945 * Expects skb->data at mac header.
5947 * Returns 0 on success, -errno otherwise.
5949 int skb_mpls_pop(struct sk_buff *skb, __be16 next_proto, int mac_len,
5954 if (unlikely(!eth_p_mpls(skb->protocol)))
5957 err = skb_ensure_writable(skb, mac_len + MPLS_HLEN);
5961 skb_postpull_rcsum(skb, mpls_hdr(skb), MPLS_HLEN);
5962 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
5965 __skb_pull(skb, MPLS_HLEN);
5966 skb_reset_mac_header(skb);
5967 skb_set_network_header(skb, mac_len);
5969 if (ethernet && mac_len >= ETH_HLEN) {
5972 /* use mpls_hdr() to get ethertype to account for VLANs. */
5973 hdr = (struct ethhdr *)((void *)mpls_hdr(skb) - ETH_HLEN);
5974 skb_mod_eth_type(skb, hdr, next_proto);
5976 skb->protocol = next_proto;
5980 EXPORT_SYMBOL_GPL(skb_mpls_pop);
5983 * skb_mpls_update_lse() - modify outermost MPLS header and update csum
5986 * @mpls_lse: new MPLS label stack entry to update to
5988 * Expects skb->data at mac header.
5990 * Returns 0 on success, -errno otherwise.
5992 int skb_mpls_update_lse(struct sk_buff *skb, __be32 mpls_lse)
5996 if (unlikely(!eth_p_mpls(skb->protocol)))
5999 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
6003 if (skb->ip_summed == CHECKSUM_COMPLETE) {
6004 __be32 diff[] = { ~mpls_hdr(skb)->label_stack_entry, mpls_lse };
6006 skb->csum = csum_partial((char *)diff, sizeof(diff), skb->csum);
6009 mpls_hdr(skb)->label_stack_entry = mpls_lse;
6013 EXPORT_SYMBOL_GPL(skb_mpls_update_lse);
6016 * skb_mpls_dec_ttl() - decrement the TTL of the outermost MPLS header
6020 * Expects skb->data at mac header.
6022 * Returns 0 on success, -errno otherwise.
6024 int skb_mpls_dec_ttl(struct sk_buff *skb)
6029 if (unlikely(!eth_p_mpls(skb->protocol)))
6032 if (!pskb_may_pull(skb, skb_network_offset(skb) + MPLS_HLEN))
6035 lse = be32_to_cpu(mpls_hdr(skb)->label_stack_entry);
6036 ttl = (lse & MPLS_LS_TTL_MASK) >> MPLS_LS_TTL_SHIFT;
6040 lse &= ~MPLS_LS_TTL_MASK;
6041 lse |= ttl << MPLS_LS_TTL_SHIFT;
6043 return skb_mpls_update_lse(skb, cpu_to_be32(lse));
6045 EXPORT_SYMBOL_GPL(skb_mpls_dec_ttl);
6048 * alloc_skb_with_frags - allocate skb with page frags
6050 * @header_len: size of linear part
6051 * @data_len: needed length in frags
6052 * @max_page_order: max page order desired.
6053 * @errcode: pointer to error code if any
6054 * @gfp_mask: allocation mask
6056 * This can be used to allocate a paged skb, given a maximal order for frags.
6058 struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
6059 unsigned long data_len,
6064 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
6065 unsigned long chunk;
6066 struct sk_buff *skb;
6070 *errcode = -EMSGSIZE;
6071 /* Note this test could be relaxed, if we succeed to allocate
6072 * high order pages...
6074 if (npages > MAX_SKB_FRAGS)
6077 *errcode = -ENOBUFS;
6078 skb = alloc_skb(header_len, gfp_mask);
6082 skb->truesize += npages << PAGE_SHIFT;
6084 for (i = 0; npages > 0; i++) {
6085 int order = max_page_order;
6088 if (npages >= 1 << order) {
6089 page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
6095 /* Do not retry other high order allocations */
6101 page = alloc_page(gfp_mask);
6105 chunk = min_t(unsigned long, data_len,
6106 PAGE_SIZE << order);
6107 skb_fill_page_desc(skb, i, page, 0, chunk);
6109 npages -= 1 << order;
6117 EXPORT_SYMBOL(alloc_skb_with_frags);
6119 /* carve out the first off bytes from skb when off < headlen */
6120 static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
6121 const int headlen, gfp_t gfp_mask)
6124 int size = skb_end_offset(skb);
6125 int new_hlen = headlen - off;
6128 size = SKB_DATA_ALIGN(size);
6130 if (skb_pfmemalloc(skb))
6131 gfp_mask |= __GFP_MEMALLOC;
6132 data = kmalloc_reserve(size +
6133 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
6134 gfp_mask, NUMA_NO_NODE, NULL);
6138 size = SKB_WITH_OVERHEAD(ksize(data));
6140 /* Copy real data, and all frags */
6141 skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
6144 memcpy((struct skb_shared_info *)(data + size),
6146 offsetof(struct skb_shared_info,
6147 frags[skb_shinfo(skb)->nr_frags]));
6148 if (skb_cloned(skb)) {
6149 /* drop the old head gracefully */
6150 if (skb_orphan_frags(skb, gfp_mask)) {
6154 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
6155 skb_frag_ref(skb, i);
6156 if (skb_has_frag_list(skb))
6157 skb_clone_fraglist(skb);
6158 skb_release_data(skb);
6160 /* we can reuse existing recount- all we did was
6169 #ifdef NET_SKBUFF_DATA_USES_OFFSET
6172 skb->end = skb->head + size;
6174 skb_set_tail_pointer(skb, skb_headlen(skb));
6175 skb_headers_offset_update(skb, 0);
6179 atomic_set(&skb_shinfo(skb)->dataref, 1);
6184 static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
6186 /* carve out the first eat bytes from skb's frag_list. May recurse into
6189 static int pskb_carve_frag_list(struct sk_buff *skb,
6190 struct skb_shared_info *shinfo, int eat,
6193 struct sk_buff *list = shinfo->frag_list;
6194 struct sk_buff *clone = NULL;
6195 struct sk_buff *insp = NULL;
6199 pr_err("Not enough bytes to eat. Want %d\n", eat);
6202 if (list->len <= eat) {
6203 /* Eaten as whole. */
6208 /* Eaten partially. */
6209 if (skb_shared(list)) {
6210 clone = skb_clone(list, gfp_mask);
6216 /* This may be pulled without problems. */
6219 if (pskb_carve(list, eat, gfp_mask) < 0) {
6227 /* Free pulled out fragments. */
6228 while ((list = shinfo->frag_list) != insp) {
6229 shinfo->frag_list = list->next;
6232 /* And insert new clone at head. */
6235 shinfo->frag_list = clone;
6240 /* carve off first len bytes from skb. Split line (off) is in the
6241 * non-linear part of skb
6243 static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
6244 int pos, gfp_t gfp_mask)
6247 int size = skb_end_offset(skb);
6249 const int nfrags = skb_shinfo(skb)->nr_frags;
6250 struct skb_shared_info *shinfo;
6252 size = SKB_DATA_ALIGN(size);
6254 if (skb_pfmemalloc(skb))
6255 gfp_mask |= __GFP_MEMALLOC;
6256 data = kmalloc_reserve(size +
6257 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
6258 gfp_mask, NUMA_NO_NODE, NULL);
6262 size = SKB_WITH_OVERHEAD(ksize(data));
6264 memcpy((struct skb_shared_info *)(data + size),
6265 skb_shinfo(skb), offsetof(struct skb_shared_info, frags[0]));
6266 if (skb_orphan_frags(skb, gfp_mask)) {
6270 shinfo = (struct skb_shared_info *)(data + size);
6271 for (i = 0; i < nfrags; i++) {
6272 int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
6274 if (pos + fsize > off) {
6275 shinfo->frags[k] = skb_shinfo(skb)->frags[i];
6279 * We have two variants in this case:
6280 * 1. Move all the frag to the second
6281 * part, if it is possible. F.e.
6282 * this approach is mandatory for TUX,
6283 * where splitting is expensive.
6284 * 2. Split is accurately. We make this.
6286 skb_frag_off_add(&shinfo->frags[0], off - pos);
6287 skb_frag_size_sub(&shinfo->frags[0], off - pos);
6289 skb_frag_ref(skb, i);
6294 shinfo->nr_frags = k;
6295 if (skb_has_frag_list(skb))
6296 skb_clone_fraglist(skb);
6298 /* split line is in frag list */
6299 if (k == 0 && pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask)) {
6300 /* skb_frag_unref() is not needed here as shinfo->nr_frags = 0. */
6301 if (skb_has_frag_list(skb))
6302 kfree_skb_list(skb_shinfo(skb)->frag_list);
6306 skb_release_data(skb);
6311 #ifdef NET_SKBUFF_DATA_USES_OFFSET
6314 skb->end = skb->head + size;
6316 skb_reset_tail_pointer(skb);
6317 skb_headers_offset_update(skb, 0);
6322 skb->data_len = skb->len;
6323 atomic_set(&skb_shinfo(skb)->dataref, 1);
6327 /* remove len bytes from the beginning of the skb */
6328 static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
6330 int headlen = skb_headlen(skb);
6333 return pskb_carve_inside_header(skb, len, headlen, gfp);
6335 return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
6338 /* Extract to_copy bytes starting at off from skb, and return this in
6341 struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
6342 int to_copy, gfp_t gfp)
6344 struct sk_buff *clone = skb_clone(skb, gfp);
6349 if (pskb_carve(clone, off, gfp) < 0 ||
6350 pskb_trim(clone, to_copy)) {
6356 EXPORT_SYMBOL(pskb_extract);
6359 * skb_condense - try to get rid of fragments/frag_list if possible
6362 * Can be used to save memory before skb is added to a busy queue.
6363 * If packet has bytes in frags and enough tail room in skb->head,
6364 * pull all of them, so that we can free the frags right now and adjust
6367 * We do not reallocate skb->head thus can not fail.
6368 * Caller must re-evaluate skb->truesize if needed.
6370 void skb_condense(struct sk_buff *skb)
6372 if (skb->data_len) {
6373 if (skb->data_len > skb->end - skb->tail ||
6377 /* Nice, we can free page frag(s) right now */
6378 __pskb_pull_tail(skb, skb->data_len);
6380 /* At this point, skb->truesize might be over estimated,
6381 * because skb had a fragment, and fragments do not tell
6383 * When we pulled its content into skb->head, fragment
6384 * was freed, but __pskb_pull_tail() could not possibly
6385 * adjust skb->truesize, not knowing the frag truesize.
6387 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
6390 #ifdef CONFIG_SKB_EXTENSIONS
6391 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id)
6393 return (void *)ext + (ext->offset[id] * SKB_EXT_ALIGN_VALUE);
6397 * __skb_ext_alloc - allocate a new skb extensions storage
6399 * @flags: See kmalloc().
6401 * Returns the newly allocated pointer. The pointer can later attached to a
6402 * skb via __skb_ext_set().
6403 * Note: caller must handle the skb_ext as an opaque data.
6405 struct skb_ext *__skb_ext_alloc(gfp_t flags)
6407 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags);
6410 memset(new->offset, 0, sizeof(new->offset));
6411 refcount_set(&new->refcnt, 1);
6417 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old,
6418 unsigned int old_active)
6420 struct skb_ext *new;
6422 if (refcount_read(&old->refcnt) == 1)
6425 new = kmem_cache_alloc(skbuff_ext_cache, GFP_ATOMIC);
6429 memcpy(new, old, old->chunks * SKB_EXT_ALIGN_VALUE);
6430 refcount_set(&new->refcnt, 1);
6433 if (old_active & (1 << SKB_EXT_SEC_PATH)) {
6434 struct sec_path *sp = skb_ext_get_ptr(old, SKB_EXT_SEC_PATH);
6437 for (i = 0; i < sp->len; i++)
6438 xfrm_state_hold(sp->xvec[i]);
6446 * __skb_ext_set - attach the specified extension storage to this skb
6449 * @ext: extension storage previously allocated via __skb_ext_alloc()
6451 * Existing extensions, if any, are cleared.
6453 * Returns the pointer to the extension.
6455 void *__skb_ext_set(struct sk_buff *skb, enum skb_ext_id id,
6456 struct skb_ext *ext)
6458 unsigned int newlen, newoff = SKB_EXT_CHUNKSIZEOF(*ext);
6461 newlen = newoff + skb_ext_type_len[id];
6462 ext->chunks = newlen;
6463 ext->offset[id] = newoff;
6464 skb->extensions = ext;
6465 skb->active_extensions = 1 << id;
6466 return skb_ext_get_ptr(ext, id);
6470 * skb_ext_add - allocate space for given extension, COW if needed
6472 * @id: extension to allocate space for
6474 * Allocates enough space for the given extension.
6475 * If the extension is already present, a pointer to that extension
6478 * If the skb was cloned, COW applies and the returned memory can be
6479 * modified without changing the extension space of clones buffers.
6481 * Returns pointer to the extension or NULL on allocation failure.
6483 void *skb_ext_add(struct sk_buff *skb, enum skb_ext_id id)
6485 struct skb_ext *new, *old = NULL;
6486 unsigned int newlen, newoff;
6488 if (skb->active_extensions) {
6489 old = skb->extensions;
6491 new = skb_ext_maybe_cow(old, skb->active_extensions);
6495 if (__skb_ext_exist(new, id))
6498 newoff = new->chunks;
6500 newoff = SKB_EXT_CHUNKSIZEOF(*new);
6502 new = __skb_ext_alloc(GFP_ATOMIC);
6507 newlen = newoff + skb_ext_type_len[id];
6508 new->chunks = newlen;
6509 new->offset[id] = newoff;
6512 skb->extensions = new;
6513 skb->active_extensions |= 1 << id;
6514 return skb_ext_get_ptr(new, id);
6516 EXPORT_SYMBOL(skb_ext_add);
6519 static void skb_ext_put_sp(struct sec_path *sp)
6523 for (i = 0; i < sp->len; i++)
6524 xfrm_state_put(sp->xvec[i]);
6528 #ifdef CONFIG_MCTP_FLOWS
6529 static void skb_ext_put_mctp(struct mctp_flow *flow)
6532 mctp_key_unref(flow->key);
6536 void __skb_ext_del(struct sk_buff *skb, enum skb_ext_id id)
6538 struct skb_ext *ext = skb->extensions;
6540 skb->active_extensions &= ~(1 << id);
6541 if (skb->active_extensions == 0) {
6542 skb->extensions = NULL;
6545 } else if (id == SKB_EXT_SEC_PATH &&
6546 refcount_read(&ext->refcnt) == 1) {
6547 struct sec_path *sp = skb_ext_get_ptr(ext, SKB_EXT_SEC_PATH);
6554 EXPORT_SYMBOL(__skb_ext_del);
6556 void __skb_ext_put(struct skb_ext *ext)
6558 /* If this is last clone, nothing can increment
6559 * it after check passes. Avoids one atomic op.
6561 if (refcount_read(&ext->refcnt) == 1)
6564 if (!refcount_dec_and_test(&ext->refcnt))
6568 if (__skb_ext_exist(ext, SKB_EXT_SEC_PATH))
6569 skb_ext_put_sp(skb_ext_get_ptr(ext, SKB_EXT_SEC_PATH));
6571 #ifdef CONFIG_MCTP_FLOWS
6572 if (__skb_ext_exist(ext, SKB_EXT_MCTP))
6573 skb_ext_put_mctp(skb_ext_get_ptr(ext, SKB_EXT_MCTP));
6576 kmem_cache_free(skbuff_ext_cache, ext);
6578 EXPORT_SYMBOL(__skb_ext_put);
6579 #endif /* CONFIG_SKB_EXTENSIONS */