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