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