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