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