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