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