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