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