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