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