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