]> asedeno.scripts.mit.edu Git - linux.git/blob - net/core/skbuff.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[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/tcp.h>
51 #include <linux/udp.h>
52 #include <linux/sctp.h>
53 #include <linux/netdevice.h>
54 #ifdef CONFIG_NET_CLS_ACT
55 #include <net/pkt_sched.h>
56 #endif
57 #include <linux/string.h>
58 #include <linux/skbuff.h>
59 #include <linux/splice.h>
60 #include <linux/cache.h>
61 #include <linux/rtnetlink.h>
62 #include <linux/init.h>
63 #include <linux/scatterlist.h>
64 #include <linux/errqueue.h>
65 #include <linux/prefetch.h>
66 #include <linux/if_vlan.h>
67
68 #include <net/protocol.h>
69 #include <net/dst.h>
70 #include <net/sock.h>
71 #include <net/checksum.h>
72 #include <net/ip6_checksum.h>
73 #include <net/xfrm.h>
74
75 #include <linux/uaccess.h>
76 #include <trace/events/skb.h>
77 #include <linux/highmem.h>
78 #include <linux/capability.h>
79 #include <linux/user_namespace.h>
80
81 struct kmem_cache *skbuff_head_cache __read_mostly;
82 static struct kmem_cache *skbuff_fclone_cache __read_mostly;
83 int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
84 EXPORT_SYMBOL(sysctl_max_skb_frags);
85
86 /**
87  *      skb_panic - private function for out-of-line support
88  *      @skb:   buffer
89  *      @sz:    size
90  *      @addr:  address
91  *      @msg:   skb_over_panic or skb_under_panic
92  *
93  *      Out-of-line support for skb_put() and skb_push().
94  *      Called via the wrapper skb_over_panic() or skb_under_panic().
95  *      Keep out of line to prevent kernel bloat.
96  *      __builtin_return_address is not used because it is not always reliable.
97  */
98 static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
99                       const char msg[])
100 {
101         pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
102                  msg, addr, skb->len, sz, skb->head, skb->data,
103                  (unsigned long)skb->tail, (unsigned long)skb->end,
104                  skb->dev ? skb->dev->name : "<NULL>");
105         BUG();
106 }
107
108 static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
109 {
110         skb_panic(skb, sz, addr, __func__);
111 }
112
113 static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
114 {
115         skb_panic(skb, sz, addr, __func__);
116 }
117
118 /*
119  * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
120  * the caller if emergency pfmemalloc reserves are being used. If it is and
121  * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
122  * may be used. Otherwise, the packet data may be discarded until enough
123  * memory is free
124  */
125 #define kmalloc_reserve(size, gfp, node, pfmemalloc) \
126          __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
127
128 static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
129                                unsigned long ip, bool *pfmemalloc)
130 {
131         void *obj;
132         bool ret_pfmemalloc = false;
133
134         /*
135          * Try a regular allocation, when that fails and we're not entitled
136          * to the reserves, fail.
137          */
138         obj = kmalloc_node_track_caller(size,
139                                         flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
140                                         node);
141         if (obj || !(gfp_pfmemalloc_allowed(flags)))
142                 goto out;
143
144         /* Try again but now we are using pfmemalloc reserves */
145         ret_pfmemalloc = true;
146         obj = kmalloc_node_track_caller(size, flags, node);
147
148 out:
149         if (pfmemalloc)
150                 *pfmemalloc = ret_pfmemalloc;
151
152         return obj;
153 }
154
155 /*      Allocate a new skbuff. We do this ourselves so we can fill in a few
156  *      'private' fields and also do memory statistics to find all the
157  *      [BEEP] leaks.
158  *
159  */
160
161 /**
162  *      __alloc_skb     -       allocate a network buffer
163  *      @size: size to allocate
164  *      @gfp_mask: allocation mask
165  *      @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
166  *              instead of head cache and allocate a cloned (child) skb.
167  *              If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
168  *              allocations in case the data is required for writeback
169  *      @node: numa node to allocate memory on
170  *
171  *      Allocate a new &sk_buff. The returned buffer has no headroom and a
172  *      tail room of at least size bytes. The object has a reference count
173  *      of one. The return is the buffer. On a failure the return is %NULL.
174  *
175  *      Buffers may only be allocated from interrupts using a @gfp_mask of
176  *      %GFP_ATOMIC.
177  */
178 struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
179                             int flags, int node)
180 {
181         struct kmem_cache *cache;
182         struct skb_shared_info *shinfo;
183         struct sk_buff *skb;
184         u8 *data;
185         bool pfmemalloc;
186
187         cache = (flags & SKB_ALLOC_FCLONE)
188                 ? skbuff_fclone_cache : skbuff_head_cache;
189
190         if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
191                 gfp_mask |= __GFP_MEMALLOC;
192
193         /* Get the HEAD */
194         skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
195         if (!skb)
196                 goto out;
197         prefetchw(skb);
198
199         /* We do our best to align skb_shared_info on a separate cache
200          * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
201          * aligned memory blocks, unless SLUB/SLAB debug is enabled.
202          * Both skb->head and skb_shared_info are cache line aligned.
203          */
204         size = SKB_DATA_ALIGN(size);
205         size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
206         data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
207         if (!data)
208                 goto nodata;
209         /* kmalloc(size) might give us more room than requested.
210          * Put skb_shared_info exactly at the end of allocated zone,
211          * to allow max possible filling before reallocation.
212          */
213         size = SKB_WITH_OVERHEAD(ksize(data));
214         prefetchw(data + size);
215
216         /*
217          * Only clear those fields we need to clear, not those that we will
218          * actually initialise below. Hence, don't put any more fields after
219          * the tail pointer in struct sk_buff!
220          */
221         memset(skb, 0, offsetof(struct sk_buff, tail));
222         /* Account for allocated memory : skb + skb->head */
223         skb->truesize = SKB_TRUESIZE(size);
224         skb->pfmemalloc = pfmemalloc;
225         refcount_set(&skb->users, 1);
226         skb->head = data;
227         skb->data = data;
228         skb_reset_tail_pointer(skb);
229         skb->end = skb->tail + size;
230         skb->mac_header = (typeof(skb->mac_header))~0U;
231         skb->transport_header = (typeof(skb->transport_header))~0U;
232
233         /* make sure we initialize shinfo sequentially */
234         shinfo = skb_shinfo(skb);
235         memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
236         atomic_set(&shinfo->dataref, 1);
237         kmemcheck_annotate_variable(shinfo->destructor_arg);
238
239         if (flags & SKB_ALLOC_FCLONE) {
240                 struct sk_buff_fclones *fclones;
241
242                 fclones = container_of(skb, struct sk_buff_fclones, skb1);
243
244                 kmemcheck_annotate_bitfield(&fclones->skb2, flags1);
245                 skb->fclone = SKB_FCLONE_ORIG;
246                 refcount_set(&fclones->fclone_ref, 1);
247
248                 fclones->skb2.fclone = SKB_FCLONE_CLONE;
249         }
250 out:
251         return skb;
252 nodata:
253         kmem_cache_free(cache, skb);
254         skb = NULL;
255         goto out;
256 }
257 EXPORT_SYMBOL(__alloc_skb);
258
259 /**
260  * __build_skb - build a network buffer
261  * @data: data buffer provided by caller
262  * @frag_size: size of data, or 0 if head was kmalloced
263  *
264  * Allocate a new &sk_buff. Caller provides space holding head and
265  * skb_shared_info. @data must have been allocated by kmalloc() only if
266  * @frag_size is 0, otherwise data should come from the page allocator
267  *  or vmalloc()
268  * The return is the new skb buffer.
269  * On a failure the return is %NULL, and @data is not freed.
270  * Notes :
271  *  Before IO, driver allocates only data buffer where NIC put incoming frame
272  *  Driver should add room at head (NET_SKB_PAD) and
273  *  MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
274  *  After IO, driver calls build_skb(), to allocate sk_buff and populate it
275  *  before giving packet to stack.
276  *  RX rings only contains data buffers, not full skbs.
277  */
278 struct sk_buff *__build_skb(void *data, unsigned int frag_size)
279 {
280         struct skb_shared_info *shinfo;
281         struct sk_buff *skb;
282         unsigned int size = frag_size ? : ksize(data);
283
284         skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
285         if (!skb)
286                 return NULL;
287
288         size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
289
290         memset(skb, 0, offsetof(struct sk_buff, tail));
291         skb->truesize = SKB_TRUESIZE(size);
292         refcount_set(&skb->users, 1);
293         skb->head = data;
294         skb->data = data;
295         skb_reset_tail_pointer(skb);
296         skb->end = skb->tail + size;
297         skb->mac_header = (typeof(skb->mac_header))~0U;
298         skb->transport_header = (typeof(skb->transport_header))~0U;
299
300         /* make sure we initialize shinfo sequentially */
301         shinfo = skb_shinfo(skb);
302         memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
303         atomic_set(&shinfo->dataref, 1);
304         kmemcheck_annotate_variable(shinfo->destructor_arg);
305
306         return skb;
307 }
308
309 /* build_skb() is wrapper over __build_skb(), that specifically
310  * takes care of skb->head and skb->pfmemalloc
311  * This means that if @frag_size is not zero, then @data must be backed
312  * by a page fragment, not kmalloc() or vmalloc()
313  */
314 struct sk_buff *build_skb(void *data, unsigned int frag_size)
315 {
316         struct sk_buff *skb = __build_skb(data, frag_size);
317
318         if (skb && frag_size) {
319                 skb->head_frag = 1;
320                 if (page_is_pfmemalloc(virt_to_head_page(data)))
321                         skb->pfmemalloc = 1;
322         }
323         return skb;
324 }
325 EXPORT_SYMBOL(build_skb);
326
327 #define NAPI_SKB_CACHE_SIZE     64
328
329 struct napi_alloc_cache {
330         struct page_frag_cache page;
331         unsigned int skb_count;
332         void *skb_cache[NAPI_SKB_CACHE_SIZE];
333 };
334
335 static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
336 static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
337
338 static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
339 {
340         struct page_frag_cache *nc;
341         unsigned long flags;
342         void *data;
343
344         local_irq_save(flags);
345         nc = this_cpu_ptr(&netdev_alloc_cache);
346         data = page_frag_alloc(nc, fragsz, gfp_mask);
347         local_irq_restore(flags);
348         return data;
349 }
350
351 /**
352  * netdev_alloc_frag - allocate a page fragment
353  * @fragsz: fragment size
354  *
355  * Allocates a frag from a page for receive buffer.
356  * Uses GFP_ATOMIC allocations.
357  */
358 void *netdev_alloc_frag(unsigned int fragsz)
359 {
360         return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
361 }
362 EXPORT_SYMBOL(netdev_alloc_frag);
363
364 static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
365 {
366         struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
367
368         return page_frag_alloc(&nc->page, fragsz, gfp_mask);
369 }
370
371 void *napi_alloc_frag(unsigned int fragsz)
372 {
373         return __napi_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
374 }
375 EXPORT_SYMBOL(napi_alloc_frag);
376
377 /**
378  *      __netdev_alloc_skb - allocate an skbuff for rx on a specific device
379  *      @dev: network device to receive on
380  *      @len: length to allocate
381  *      @gfp_mask: get_free_pages mask, passed to alloc_skb
382  *
383  *      Allocate a new &sk_buff and assign it a usage count of one. The
384  *      buffer has NET_SKB_PAD headroom built in. Users should allocate
385  *      the headroom they think they need without accounting for the
386  *      built in space. The built in space is used for optimisations.
387  *
388  *      %NULL is returned if there is no free memory.
389  */
390 struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
391                                    gfp_t gfp_mask)
392 {
393         struct page_frag_cache *nc;
394         unsigned long flags;
395         struct sk_buff *skb;
396         bool pfmemalloc;
397         void *data;
398
399         len += NET_SKB_PAD;
400
401         if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
402             (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
403                 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
404                 if (!skb)
405                         goto skb_fail;
406                 goto skb_success;
407         }
408
409         len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
410         len = SKB_DATA_ALIGN(len);
411
412         if (sk_memalloc_socks())
413                 gfp_mask |= __GFP_MEMALLOC;
414
415         local_irq_save(flags);
416
417         nc = this_cpu_ptr(&netdev_alloc_cache);
418         data = page_frag_alloc(nc, len, gfp_mask);
419         pfmemalloc = nc->pfmemalloc;
420
421         local_irq_restore(flags);
422
423         if (unlikely(!data))
424                 return NULL;
425
426         skb = __build_skb(data, len);
427         if (unlikely(!skb)) {
428                 skb_free_frag(data);
429                 return NULL;
430         }
431
432         /* use OR instead of assignment to avoid clearing of bits in mask */
433         if (pfmemalloc)
434                 skb->pfmemalloc = 1;
435         skb->head_frag = 1;
436
437 skb_success:
438         skb_reserve(skb, NET_SKB_PAD);
439         skb->dev = dev;
440
441 skb_fail:
442         return skb;
443 }
444 EXPORT_SYMBOL(__netdev_alloc_skb);
445
446 /**
447  *      __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
448  *      @napi: napi instance this buffer was allocated for
449  *      @len: length to allocate
450  *      @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
451  *
452  *      Allocate a new sk_buff for use in NAPI receive.  This buffer will
453  *      attempt to allocate the head from a special reserved region used
454  *      only for NAPI Rx allocation.  By doing this we can save several
455  *      CPU cycles by avoiding having to disable and re-enable IRQs.
456  *
457  *      %NULL is returned if there is no free memory.
458  */
459 struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
460                                  gfp_t gfp_mask)
461 {
462         struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
463         struct sk_buff *skb;
464         void *data;
465
466         len += NET_SKB_PAD + NET_IP_ALIGN;
467
468         if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
469             (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
470                 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
471                 if (!skb)
472                         goto skb_fail;
473                 goto skb_success;
474         }
475
476         len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
477         len = SKB_DATA_ALIGN(len);
478
479         if (sk_memalloc_socks())
480                 gfp_mask |= __GFP_MEMALLOC;
481
482         data = page_frag_alloc(&nc->page, len, gfp_mask);
483         if (unlikely(!data))
484                 return NULL;
485
486         skb = __build_skb(data, len);
487         if (unlikely(!skb)) {
488                 skb_free_frag(data);
489                 return NULL;
490         }
491
492         /* use OR instead of assignment to avoid clearing of bits in mask */
493         if (nc->page.pfmemalloc)
494                 skb->pfmemalloc = 1;
495         skb->head_frag = 1;
496
497 skb_success:
498         skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
499         skb->dev = napi->dev;
500
501 skb_fail:
502         return skb;
503 }
504 EXPORT_SYMBOL(__napi_alloc_skb);
505
506 void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
507                      int size, unsigned int truesize)
508 {
509         skb_fill_page_desc(skb, i, page, off, size);
510         skb->len += size;
511         skb->data_len += size;
512         skb->truesize += truesize;
513 }
514 EXPORT_SYMBOL(skb_add_rx_frag);
515
516 void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
517                           unsigned int truesize)
518 {
519         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
520
521         skb_frag_size_add(frag, size);
522         skb->len += size;
523         skb->data_len += size;
524         skb->truesize += truesize;
525 }
526 EXPORT_SYMBOL(skb_coalesce_rx_frag);
527
528 static void skb_drop_list(struct sk_buff **listp)
529 {
530         kfree_skb_list(*listp);
531         *listp = NULL;
532 }
533
534 static inline void skb_drop_fraglist(struct sk_buff *skb)
535 {
536         skb_drop_list(&skb_shinfo(skb)->frag_list);
537 }
538
539 static void skb_clone_fraglist(struct sk_buff *skb)
540 {
541         struct sk_buff *list;
542
543         skb_walk_frags(skb, list)
544                 skb_get(list);
545 }
546
547 static void skb_free_head(struct sk_buff *skb)
548 {
549         unsigned char *head = skb->head;
550
551         if (skb->head_frag)
552                 skb_free_frag(head);
553         else
554                 kfree(head);
555 }
556
557 static void skb_release_data(struct sk_buff *skb)
558 {
559         struct skb_shared_info *shinfo = skb_shinfo(skb);
560         int i;
561
562         if (skb->cloned &&
563             atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
564                               &shinfo->dataref))
565                 return;
566
567         for (i = 0; i < shinfo->nr_frags; i++)
568                 __skb_frag_unref(&shinfo->frags[i]);
569
570         if (shinfo->frag_list)
571                 kfree_skb_list(shinfo->frag_list);
572
573         skb_zcopy_clear(skb, true);
574         skb_free_head(skb);
575 }
576
577 /*
578  *      Free an skbuff by memory without cleaning the state.
579  */
580 static void kfree_skbmem(struct sk_buff *skb)
581 {
582         struct sk_buff_fclones *fclones;
583
584         switch (skb->fclone) {
585         case SKB_FCLONE_UNAVAILABLE:
586                 kmem_cache_free(skbuff_head_cache, skb);
587                 return;
588
589         case SKB_FCLONE_ORIG:
590                 fclones = container_of(skb, struct sk_buff_fclones, skb1);
591
592                 /* We usually free the clone (TX completion) before original skb
593                  * This test would have no chance to be true for the clone,
594                  * while here, branch prediction will be good.
595                  */
596                 if (refcount_read(&fclones->fclone_ref) == 1)
597                         goto fastpath;
598                 break;
599
600         default: /* SKB_FCLONE_CLONE */
601                 fclones = container_of(skb, struct sk_buff_fclones, skb2);
602                 break;
603         }
604         if (!refcount_dec_and_test(&fclones->fclone_ref))
605                 return;
606 fastpath:
607         kmem_cache_free(skbuff_fclone_cache, fclones);
608 }
609
610 void skb_release_head_state(struct sk_buff *skb)
611 {
612         skb_dst_drop(skb);
613         secpath_reset(skb);
614         if (skb->destructor) {
615                 WARN_ON(in_irq());
616                 skb->destructor(skb);
617         }
618 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
619         nf_conntrack_put(skb_nfct(skb));
620 #endif
621 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
622         nf_bridge_put(skb->nf_bridge);
623 #endif
624 }
625
626 /* Free everything but the sk_buff shell. */
627 static void skb_release_all(struct sk_buff *skb)
628 {
629         skb_release_head_state(skb);
630         if (likely(skb->head))
631                 skb_release_data(skb);
632 }
633
634 /**
635  *      __kfree_skb - private function
636  *      @skb: buffer
637  *
638  *      Free an sk_buff. Release anything attached to the buffer.
639  *      Clean the state. This is an internal helper function. Users should
640  *      always call kfree_skb
641  */
642
643 void __kfree_skb(struct sk_buff *skb)
644 {
645         skb_release_all(skb);
646         kfree_skbmem(skb);
647 }
648 EXPORT_SYMBOL(__kfree_skb);
649
650 /**
651  *      kfree_skb - free an sk_buff
652  *      @skb: buffer to free
653  *
654  *      Drop a reference to the buffer and free it if the usage count has
655  *      hit zero.
656  */
657 void kfree_skb(struct sk_buff *skb)
658 {
659         if (!skb_unref(skb))
660                 return;
661
662         trace_kfree_skb(skb, __builtin_return_address(0));
663         __kfree_skb(skb);
664 }
665 EXPORT_SYMBOL(kfree_skb);
666
667 void kfree_skb_list(struct sk_buff *segs)
668 {
669         while (segs) {
670                 struct sk_buff *next = segs->next;
671
672                 kfree_skb(segs);
673                 segs = next;
674         }
675 }
676 EXPORT_SYMBOL(kfree_skb_list);
677
678 /**
679  *      skb_tx_error - report an sk_buff xmit error
680  *      @skb: buffer that triggered an error
681  *
682  *      Report xmit error if a device callback is tracking this skb.
683  *      skb must be freed afterwards.
684  */
685 void skb_tx_error(struct sk_buff *skb)
686 {
687         skb_zcopy_clear(skb, true);
688 }
689 EXPORT_SYMBOL(skb_tx_error);
690
691 /**
692  *      consume_skb - free an skbuff
693  *      @skb: buffer to free
694  *
695  *      Drop a ref to the buffer and free it if the usage count has hit zero
696  *      Functions identically to kfree_skb, but kfree_skb assumes that the frame
697  *      is being dropped after a failure and notes that
698  */
699 void consume_skb(struct sk_buff *skb)
700 {
701         if (!skb_unref(skb))
702                 return;
703
704         trace_consume_skb(skb);
705         __kfree_skb(skb);
706 }
707 EXPORT_SYMBOL(consume_skb);
708
709 /**
710  *      consume_stateless_skb - free an skbuff, assuming it is stateless
711  *      @skb: buffer to free
712  *
713  *      Works like consume_skb(), but this variant assumes that all the head
714  *      states have been already dropped.
715  */
716 void consume_stateless_skb(struct sk_buff *skb)
717 {
718         if (!skb_unref(skb))
719                 return;
720
721         trace_consume_skb(skb);
722         skb_release_data(skb);
723         kfree_skbmem(skb);
724 }
725
726 void __kfree_skb_flush(void)
727 {
728         struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
729
730         /* flush skb_cache if containing objects */
731         if (nc->skb_count) {
732                 kmem_cache_free_bulk(skbuff_head_cache, nc->skb_count,
733                                      nc->skb_cache);
734                 nc->skb_count = 0;
735         }
736 }
737
738 static inline void _kfree_skb_defer(struct sk_buff *skb)
739 {
740         struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
741
742         /* drop skb->head and call any destructors for packet */
743         skb_release_all(skb);
744
745         /* record skb to CPU local list */
746         nc->skb_cache[nc->skb_count++] = skb;
747
748 #ifdef CONFIG_SLUB
749         /* SLUB writes into objects when freeing */
750         prefetchw(skb);
751 #endif
752
753         /* flush skb_cache if it is filled */
754         if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
755                 kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_SIZE,
756                                      nc->skb_cache);
757                 nc->skb_count = 0;
758         }
759 }
760 void __kfree_skb_defer(struct sk_buff *skb)
761 {
762         _kfree_skb_defer(skb);
763 }
764
765 void napi_consume_skb(struct sk_buff *skb, int budget)
766 {
767         if (unlikely(!skb))
768                 return;
769
770         /* Zero budget indicate non-NAPI context called us, like netpoll */
771         if (unlikely(!budget)) {
772                 dev_consume_skb_any(skb);
773                 return;
774         }
775
776         if (!skb_unref(skb))
777                 return;
778
779         /* if reaching here SKB is ready to free */
780         trace_consume_skb(skb);
781
782         /* if SKB is a clone, don't handle this case */
783         if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
784                 __kfree_skb(skb);
785                 return;
786         }
787
788         _kfree_skb_defer(skb);
789 }
790 EXPORT_SYMBOL(napi_consume_skb);
791
792 /* Make sure a field is enclosed inside headers_start/headers_end section */
793 #define CHECK_SKB_FIELD(field) \
794         BUILD_BUG_ON(offsetof(struct sk_buff, field) <          \
795                      offsetof(struct sk_buff, headers_start));  \
796         BUILD_BUG_ON(offsetof(struct sk_buff, field) >          \
797                      offsetof(struct sk_buff, headers_end));    \
798
799 static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
800 {
801         new->tstamp             = old->tstamp;
802         /* We do not copy old->sk */
803         new->dev                = old->dev;
804         memcpy(new->cb, old->cb, sizeof(old->cb));
805         skb_dst_copy(new, old);
806 #ifdef CONFIG_XFRM
807         new->sp                 = secpath_get(old->sp);
808 #endif
809         __nf_copy(new, old, false);
810
811         /* Note : this field could be in headers_start/headers_end section
812          * It is not yet because we do not want to have a 16 bit hole
813          */
814         new->queue_mapping = old->queue_mapping;
815
816         memcpy(&new->headers_start, &old->headers_start,
817                offsetof(struct sk_buff, headers_end) -
818                offsetof(struct sk_buff, headers_start));
819         CHECK_SKB_FIELD(protocol);
820         CHECK_SKB_FIELD(csum);
821         CHECK_SKB_FIELD(hash);
822         CHECK_SKB_FIELD(priority);
823         CHECK_SKB_FIELD(skb_iif);
824         CHECK_SKB_FIELD(vlan_proto);
825         CHECK_SKB_FIELD(vlan_tci);
826         CHECK_SKB_FIELD(transport_header);
827         CHECK_SKB_FIELD(network_header);
828         CHECK_SKB_FIELD(mac_header);
829         CHECK_SKB_FIELD(inner_protocol);
830         CHECK_SKB_FIELD(inner_transport_header);
831         CHECK_SKB_FIELD(inner_network_header);
832         CHECK_SKB_FIELD(inner_mac_header);
833         CHECK_SKB_FIELD(mark);
834 #ifdef CONFIG_NETWORK_SECMARK
835         CHECK_SKB_FIELD(secmark);
836 #endif
837 #ifdef CONFIG_NET_RX_BUSY_POLL
838         CHECK_SKB_FIELD(napi_id);
839 #endif
840 #ifdef CONFIG_XPS
841         CHECK_SKB_FIELD(sender_cpu);
842 #endif
843 #ifdef CONFIG_NET_SCHED
844         CHECK_SKB_FIELD(tc_index);
845 #endif
846
847 }
848
849 /*
850  * You should not add any new code to this function.  Add it to
851  * __copy_skb_header above instead.
852  */
853 static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
854 {
855 #define C(x) n->x = skb->x
856
857         n->next = n->prev = NULL;
858         n->sk = NULL;
859         __copy_skb_header(n, skb);
860
861         C(len);
862         C(data_len);
863         C(mac_len);
864         n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
865         n->cloned = 1;
866         n->nohdr = 0;
867         n->destructor = NULL;
868         C(tail);
869         C(end);
870         C(head);
871         C(head_frag);
872         C(data);
873         C(truesize);
874         refcount_set(&n->users, 1);
875
876         atomic_inc(&(skb_shinfo(skb)->dataref));
877         skb->cloned = 1;
878
879         return n;
880 #undef C
881 }
882
883 /**
884  *      skb_morph       -       morph one skb into another
885  *      @dst: the skb to receive the contents
886  *      @src: the skb to supply the contents
887  *
888  *      This is identical to skb_clone except that the target skb is
889  *      supplied by the user.
890  *
891  *      The target skb is returned upon exit.
892  */
893 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
894 {
895         skb_release_all(dst);
896         return __skb_clone(dst, src);
897 }
898 EXPORT_SYMBOL_GPL(skb_morph);
899
900 static int mm_account_pinned_pages(struct mmpin *mmp, size_t size)
901 {
902         unsigned long max_pg, num_pg, new_pg, old_pg;
903         struct user_struct *user;
904
905         if (capable(CAP_IPC_LOCK) || !size)
906                 return 0;
907
908         num_pg = (size >> PAGE_SHIFT) + 2;      /* worst case */
909         max_pg = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
910         user = mmp->user ? : current_user();
911
912         do {
913                 old_pg = atomic_long_read(&user->locked_vm);
914                 new_pg = old_pg + num_pg;
915                 if (new_pg > max_pg)
916                         return -ENOBUFS;
917         } while (atomic_long_cmpxchg(&user->locked_vm, old_pg, new_pg) !=
918                  old_pg);
919
920         if (!mmp->user) {
921                 mmp->user = get_uid(user);
922                 mmp->num_pg = num_pg;
923         } else {
924                 mmp->num_pg += num_pg;
925         }
926
927         return 0;
928 }
929
930 static void mm_unaccount_pinned_pages(struct mmpin *mmp)
931 {
932         if (mmp->user) {
933                 atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm);
934                 free_uid(mmp->user);
935         }
936 }
937
938 struct ubuf_info *sock_zerocopy_alloc(struct sock *sk, size_t size)
939 {
940         struct ubuf_info *uarg;
941         struct sk_buff *skb;
942
943         WARN_ON_ONCE(!in_task());
944
945         if (!sock_flag(sk, SOCK_ZEROCOPY))
946                 return NULL;
947
948         skb = sock_omalloc(sk, 0, GFP_KERNEL);
949         if (!skb)
950                 return NULL;
951
952         BUILD_BUG_ON(sizeof(*uarg) > sizeof(skb->cb));
953         uarg = (void *)skb->cb;
954         uarg->mmp.user = NULL;
955
956         if (mm_account_pinned_pages(&uarg->mmp, size)) {
957                 kfree_skb(skb);
958                 return NULL;
959         }
960
961         uarg->callback = sock_zerocopy_callback;
962         uarg->id = ((u32)atomic_inc_return(&sk->sk_zckey)) - 1;
963         uarg->len = 1;
964         uarg->bytelen = size;
965         uarg->zerocopy = 1;
966         atomic_set(&uarg->refcnt, 0);
967         sock_hold(sk);
968
969         return uarg;
970 }
971 EXPORT_SYMBOL_GPL(sock_zerocopy_alloc);
972
973 static inline struct sk_buff *skb_from_uarg(struct ubuf_info *uarg)
974 {
975         return container_of((void *)uarg, struct sk_buff, cb);
976 }
977
978 struct ubuf_info *sock_zerocopy_realloc(struct sock *sk, size_t size,
979                                         struct ubuf_info *uarg)
980 {
981         if (uarg) {
982                 const u32 byte_limit = 1 << 19;         /* limit to a few TSO */
983                 u32 bytelen, next;
984
985                 /* realloc only when socket is locked (TCP, UDP cork),
986                  * so uarg->len and sk_zckey access is serialized
987                  */
988                 if (!sock_owned_by_user(sk)) {
989                         WARN_ON_ONCE(1);
990                         return NULL;
991                 }
992
993                 bytelen = uarg->bytelen + size;
994                 if (uarg->len == USHRT_MAX - 1 || bytelen > byte_limit) {
995                         /* TCP can create new skb to attach new uarg */
996                         if (sk->sk_type == SOCK_STREAM)
997                                 goto new_alloc;
998                         return NULL;
999                 }
1000
1001                 next = (u32)atomic_read(&sk->sk_zckey);
1002                 if ((u32)(uarg->id + uarg->len) == next) {
1003                         if (mm_account_pinned_pages(&uarg->mmp, size))
1004                                 return NULL;
1005                         uarg->len++;
1006                         uarg->bytelen = bytelen;
1007                         atomic_set(&sk->sk_zckey, ++next);
1008                         return uarg;
1009                 }
1010         }
1011
1012 new_alloc:
1013         return sock_zerocopy_alloc(sk, size);
1014 }
1015 EXPORT_SYMBOL_GPL(sock_zerocopy_realloc);
1016
1017 static bool skb_zerocopy_notify_extend(struct sk_buff *skb, u32 lo, u16 len)
1018 {
1019         struct sock_exterr_skb *serr = SKB_EXT_ERR(skb);
1020         u32 old_lo, old_hi;
1021         u64 sum_len;
1022
1023         old_lo = serr->ee.ee_info;
1024         old_hi = serr->ee.ee_data;
1025         sum_len = old_hi - old_lo + 1ULL + len;
1026
1027         if (sum_len >= (1ULL << 32))
1028                 return false;
1029
1030         if (lo != old_hi + 1)
1031                 return false;
1032
1033         serr->ee.ee_data += len;
1034         return true;
1035 }
1036
1037 void sock_zerocopy_callback(struct ubuf_info *uarg, bool success)
1038 {
1039         struct sk_buff *tail, *skb = skb_from_uarg(uarg);
1040         struct sock_exterr_skb *serr;
1041         struct sock *sk = skb->sk;
1042         struct sk_buff_head *q;
1043         unsigned long flags;
1044         u32 lo, hi;
1045         u16 len;
1046
1047         mm_unaccount_pinned_pages(&uarg->mmp);
1048
1049         /* if !len, there was only 1 call, and it was aborted
1050          * so do not queue a completion notification
1051          */
1052         if (!uarg->len || sock_flag(sk, SOCK_DEAD))
1053                 goto release;
1054
1055         len = uarg->len;
1056         lo = uarg->id;
1057         hi = uarg->id + len - 1;
1058
1059         serr = SKB_EXT_ERR(skb);
1060         memset(serr, 0, sizeof(*serr));
1061         serr->ee.ee_errno = 0;
1062         serr->ee.ee_origin = SO_EE_ORIGIN_ZEROCOPY;
1063         serr->ee.ee_data = hi;
1064         serr->ee.ee_info = lo;
1065         if (!success)
1066                 serr->ee.ee_code |= SO_EE_CODE_ZEROCOPY_COPIED;
1067
1068         q = &sk->sk_error_queue;
1069         spin_lock_irqsave(&q->lock, flags);
1070         tail = skb_peek_tail(q);
1071         if (!tail || SKB_EXT_ERR(tail)->ee.ee_origin != SO_EE_ORIGIN_ZEROCOPY ||
1072             !skb_zerocopy_notify_extend(tail, lo, len)) {
1073                 __skb_queue_tail(q, skb);
1074                 skb = NULL;
1075         }
1076         spin_unlock_irqrestore(&q->lock, flags);
1077
1078         sk->sk_error_report(sk);
1079
1080 release:
1081         consume_skb(skb);
1082         sock_put(sk);
1083 }
1084 EXPORT_SYMBOL_GPL(sock_zerocopy_callback);
1085
1086 void sock_zerocopy_put(struct ubuf_info *uarg)
1087 {
1088         if (uarg && atomic_dec_and_test(&uarg->refcnt)) {
1089                 if (uarg->callback)
1090                         uarg->callback(uarg, uarg->zerocopy);
1091                 else
1092                         consume_skb(skb_from_uarg(uarg));
1093         }
1094 }
1095 EXPORT_SYMBOL_GPL(sock_zerocopy_put);
1096
1097 void sock_zerocopy_put_abort(struct ubuf_info *uarg)
1098 {
1099         if (uarg) {
1100                 struct sock *sk = skb_from_uarg(uarg)->sk;
1101
1102                 atomic_dec(&sk->sk_zckey);
1103                 uarg->len--;
1104
1105                 /* sock_zerocopy_put expects a ref. Most sockets take one per
1106                  * skb, which is zero on abort. tcp_sendmsg holds one extra, to
1107                  * avoid an skb send inside the main loop triggering uarg free.
1108                  */
1109                 if (sk->sk_type != SOCK_STREAM)
1110                         atomic_inc(&uarg->refcnt);
1111
1112                 sock_zerocopy_put(uarg);
1113         }
1114 }
1115 EXPORT_SYMBOL_GPL(sock_zerocopy_put_abort);
1116
1117 extern int __zerocopy_sg_from_iter(struct sock *sk, struct sk_buff *skb,
1118                                    struct iov_iter *from, size_t length);
1119
1120 int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
1121                              struct msghdr *msg, int len,
1122                              struct ubuf_info *uarg)
1123 {
1124         struct ubuf_info *orig_uarg = skb_zcopy(skb);
1125         struct iov_iter orig_iter = msg->msg_iter;
1126         int err, orig_len = skb->len;
1127
1128         /* An skb can only point to one uarg. This edge case happens when
1129          * TCP appends to an skb, but zerocopy_realloc triggered a new alloc.
1130          */
1131         if (orig_uarg && uarg != orig_uarg)
1132                 return -EEXIST;
1133
1134         err = __zerocopy_sg_from_iter(sk, skb, &msg->msg_iter, len);
1135         if (err == -EFAULT || (err == -EMSGSIZE && skb->len == orig_len)) {
1136                 /* Streams do not free skb on error. Reset to prev state. */
1137                 msg->msg_iter = orig_iter;
1138                 ___pskb_trim(skb, orig_len);
1139                 return err;
1140         }
1141
1142         skb_zcopy_set(skb, uarg);
1143         return skb->len - orig_len;
1144 }
1145 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_stream);
1146
1147 static int skb_zerocopy_clone(struct sk_buff *nskb, struct sk_buff *orig,
1148                               gfp_t gfp_mask)
1149 {
1150         if (skb_zcopy(orig)) {
1151                 if (skb_zcopy(nskb)) {
1152                         /* !gfp_mask callers are verified to !skb_zcopy(nskb) */
1153                         if (!gfp_mask) {
1154                                 WARN_ON_ONCE(1);
1155                                 return -ENOMEM;
1156                         }
1157                         if (skb_uarg(nskb) == skb_uarg(orig))
1158                                 return 0;
1159                         if (skb_copy_ubufs(nskb, GFP_ATOMIC))
1160                                 return -EIO;
1161                 }
1162                 skb_zcopy_set(nskb, skb_uarg(orig));
1163         }
1164         return 0;
1165 }
1166
1167 /**
1168  *      skb_copy_ubufs  -       copy userspace skb frags buffers to kernel
1169  *      @skb: the skb to modify
1170  *      @gfp_mask: allocation priority
1171  *
1172  *      This must be called on SKBTX_DEV_ZEROCOPY skb.
1173  *      It will copy all frags into kernel and drop the reference
1174  *      to userspace pages.
1175  *
1176  *      If this function is called from an interrupt gfp_mask() must be
1177  *      %GFP_ATOMIC.
1178  *
1179  *      Returns 0 on success or a negative error code on failure
1180  *      to allocate kernel memory to copy to.
1181  */
1182 int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
1183 {
1184         int num_frags = skb_shinfo(skb)->nr_frags;
1185         struct page *page, *head = NULL;
1186         int i, new_frags;
1187         u32 d_off;
1188
1189         if (!num_frags)
1190                 return 0;
1191
1192         if (skb_shared(skb) || skb_unclone(skb, gfp_mask))
1193                 return -EINVAL;
1194
1195         new_frags = (__skb_pagelen(skb) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1196         for (i = 0; i < new_frags; i++) {
1197                 page = alloc_page(gfp_mask);
1198                 if (!page) {
1199                         while (head) {
1200                                 struct page *next = (struct page *)page_private(head);
1201                                 put_page(head);
1202                                 head = next;
1203                         }
1204                         return -ENOMEM;
1205                 }
1206                 set_page_private(page, (unsigned long)head);
1207                 head = page;
1208         }
1209
1210         page = head;
1211         d_off = 0;
1212         for (i = 0; i < num_frags; i++) {
1213                 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
1214                 u32 p_off, p_len, copied;
1215                 struct page *p;
1216                 u8 *vaddr;
1217
1218                 skb_frag_foreach_page(f, f->page_offset, skb_frag_size(f),
1219                                       p, p_off, p_len, copied) {
1220                         u32 copy, done = 0;
1221                         vaddr = kmap_atomic(p);
1222
1223                         while (done < p_len) {
1224                                 if (d_off == PAGE_SIZE) {
1225                                         d_off = 0;
1226                                         page = (struct page *)page_private(page);
1227                                 }
1228                                 copy = min_t(u32, PAGE_SIZE - d_off, p_len - done);
1229                                 memcpy(page_address(page) + d_off,
1230                                        vaddr + p_off + done, copy);
1231                                 done += copy;
1232                                 d_off += copy;
1233                         }
1234                         kunmap_atomic(vaddr);
1235                 }
1236         }
1237
1238         /* skb frags release userspace buffers */
1239         for (i = 0; i < num_frags; i++)
1240                 skb_frag_unref(skb, i);
1241
1242         /* skb frags point to kernel buffers */
1243         for (i = 0; i < new_frags - 1; i++) {
1244                 __skb_fill_page_desc(skb, i, head, 0, PAGE_SIZE);
1245                 head = (struct page *)page_private(head);
1246         }
1247         __skb_fill_page_desc(skb, new_frags - 1, head, 0, d_off);
1248         skb_shinfo(skb)->nr_frags = new_frags;
1249
1250         skb_zcopy_clear(skb, false);
1251         return 0;
1252 }
1253 EXPORT_SYMBOL_GPL(skb_copy_ubufs);
1254
1255 /**
1256  *      skb_clone       -       duplicate an sk_buff
1257  *      @skb: buffer to clone
1258  *      @gfp_mask: allocation priority
1259  *
1260  *      Duplicate an &sk_buff. The new one is not owned by a socket. Both
1261  *      copies share the same packet data but not structure. The new
1262  *      buffer has a reference count of 1. If the allocation fails the
1263  *      function returns %NULL otherwise the new buffer is returned.
1264  *
1265  *      If this function is called from an interrupt gfp_mask() must be
1266  *      %GFP_ATOMIC.
1267  */
1268
1269 struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1270 {
1271         struct sk_buff_fclones *fclones = container_of(skb,
1272                                                        struct sk_buff_fclones,
1273                                                        skb1);
1274         struct sk_buff *n;
1275
1276         if (skb_orphan_frags(skb, gfp_mask))
1277                 return NULL;
1278
1279         if (skb->fclone == SKB_FCLONE_ORIG &&
1280             refcount_read(&fclones->fclone_ref) == 1) {
1281                 n = &fclones->skb2;
1282                 refcount_set(&fclones->fclone_ref, 2);
1283         } else {
1284                 if (skb_pfmemalloc(skb))
1285                         gfp_mask |= __GFP_MEMALLOC;
1286
1287                 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1288                 if (!n)
1289                         return NULL;
1290
1291                 kmemcheck_annotate_bitfield(n, flags1);
1292                 n->fclone = SKB_FCLONE_UNAVAILABLE;
1293         }
1294
1295         return __skb_clone(n, skb);
1296 }
1297 EXPORT_SYMBOL(skb_clone);
1298
1299 static void skb_headers_offset_update(struct sk_buff *skb, int off)
1300 {
1301         /* Only adjust this if it actually is csum_start rather than csum */
1302         if (skb->ip_summed == CHECKSUM_PARTIAL)
1303                 skb->csum_start += off;
1304         /* {transport,network,mac}_header and tail are relative to skb->head */
1305         skb->transport_header += off;
1306         skb->network_header   += off;
1307         if (skb_mac_header_was_set(skb))
1308                 skb->mac_header += off;
1309         skb->inner_transport_header += off;
1310         skb->inner_network_header += off;
1311         skb->inner_mac_header += off;
1312 }
1313
1314 static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1315 {
1316         __copy_skb_header(new, old);
1317
1318         skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1319         skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1320         skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
1321 }
1322
1323 static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1324 {
1325         if (skb_pfmemalloc(skb))
1326                 return SKB_ALLOC_RX;
1327         return 0;
1328 }
1329
1330 /**
1331  *      skb_copy        -       create private copy of an sk_buff
1332  *      @skb: buffer to copy
1333  *      @gfp_mask: allocation priority
1334  *
1335  *      Make a copy of both an &sk_buff and its data. This is used when the
1336  *      caller wishes to modify the data and needs a private copy of the
1337  *      data to alter. Returns %NULL on failure or the pointer to the buffer
1338  *      on success. The returned buffer has a reference count of 1.
1339  *
1340  *      As by-product this function converts non-linear &sk_buff to linear
1341  *      one, so that &sk_buff becomes completely private and caller is allowed
1342  *      to modify all the data of returned buffer. This means that this
1343  *      function is not recommended for use in circumstances when only
1344  *      header is going to be modified. Use pskb_copy() instead.
1345  */
1346
1347 struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
1348 {
1349         int headerlen = skb_headroom(skb);
1350         unsigned int size = skb_end_offset(skb) + skb->data_len;
1351         struct sk_buff *n = __alloc_skb(size, gfp_mask,
1352                                         skb_alloc_rx_flag(skb), NUMA_NO_NODE);
1353
1354         if (!n)
1355                 return NULL;
1356
1357         /* Set the data pointer */
1358         skb_reserve(n, headerlen);
1359         /* Set the tail pointer and length */
1360         skb_put(n, skb->len);
1361
1362         if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
1363                 BUG();
1364
1365         copy_skb_header(n, skb);
1366         return n;
1367 }
1368 EXPORT_SYMBOL(skb_copy);
1369
1370 /**
1371  *      __pskb_copy_fclone      -  create copy of an sk_buff with private head.
1372  *      @skb: buffer to copy
1373  *      @headroom: headroom of new skb
1374  *      @gfp_mask: allocation priority
1375  *      @fclone: if true allocate the copy of the skb from the fclone
1376  *      cache instead of the head cache; it is recommended to set this
1377  *      to true for the cases where the copy will likely be cloned
1378  *
1379  *      Make a copy of both an &sk_buff and part of its data, located
1380  *      in header. Fragmented data remain shared. This is used when
1381  *      the caller wishes to modify only header of &sk_buff and needs
1382  *      private copy of the header to alter. Returns %NULL on failure
1383  *      or the pointer to the buffer on success.
1384  *      The returned buffer has a reference count of 1.
1385  */
1386
1387 struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1388                                    gfp_t gfp_mask, bool fclone)
1389 {
1390         unsigned int size = skb_headlen(skb) + headroom;
1391         int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1392         struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
1393
1394         if (!n)
1395                 goto out;
1396
1397         /* Set the data pointer */
1398         skb_reserve(n, headroom);
1399         /* Set the tail pointer and length */
1400         skb_put(n, skb_headlen(skb));
1401         /* Copy the bytes */
1402         skb_copy_from_linear_data(skb, n->data, n->len);
1403
1404         n->truesize += skb->data_len;
1405         n->data_len  = skb->data_len;
1406         n->len       = skb->len;
1407
1408         if (skb_shinfo(skb)->nr_frags) {
1409                 int i;
1410
1411                 if (skb_orphan_frags(skb, gfp_mask) ||
1412                     skb_zerocopy_clone(n, skb, gfp_mask)) {
1413                         kfree_skb(n);
1414                         n = NULL;
1415                         goto out;
1416                 }
1417                 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1418                         skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
1419                         skb_frag_ref(skb, i);
1420                 }
1421                 skb_shinfo(n)->nr_frags = i;
1422         }
1423
1424         if (skb_has_frag_list(skb)) {
1425                 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1426                 skb_clone_fraglist(n);
1427         }
1428
1429         copy_skb_header(n, skb);
1430 out:
1431         return n;
1432 }
1433 EXPORT_SYMBOL(__pskb_copy_fclone);
1434
1435 /**
1436  *      pskb_expand_head - reallocate header of &sk_buff
1437  *      @skb: buffer to reallocate
1438  *      @nhead: room to add at head
1439  *      @ntail: room to add at tail
1440  *      @gfp_mask: allocation priority
1441  *
1442  *      Expands (or creates identical copy, if @nhead and @ntail are zero)
1443  *      header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
1444  *      reference count of 1. Returns zero in the case of success or error,
1445  *      if expansion failed. In the last case, &sk_buff is not changed.
1446  *
1447  *      All the pointers pointing into skb header may change and must be
1448  *      reloaded after call to this function.
1449  */
1450
1451 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
1452                      gfp_t gfp_mask)
1453 {
1454         int i, osize = skb_end_offset(skb);
1455         int size = osize + nhead + ntail;
1456         long off;
1457         u8 *data;
1458
1459         BUG_ON(nhead < 0);
1460
1461         if (skb_shared(skb))
1462                 BUG();
1463
1464         size = SKB_DATA_ALIGN(size);
1465
1466         if (skb_pfmemalloc(skb))
1467                 gfp_mask |= __GFP_MEMALLOC;
1468         data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1469                                gfp_mask, NUMA_NO_NODE, NULL);
1470         if (!data)
1471                 goto nodata;
1472         size = SKB_WITH_OVERHEAD(ksize(data));
1473
1474         /* Copy only real data... and, alas, header. This should be
1475          * optimized for the cases when header is void.
1476          */
1477         memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1478
1479         memcpy((struct skb_shared_info *)(data + size),
1480                skb_shinfo(skb),
1481                offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
1482
1483         /*
1484          * if shinfo is shared we must drop the old head gracefully, but if it
1485          * is not we can just drop the old head and let the existing refcount
1486          * be since all we did is relocate the values
1487          */
1488         if (skb_cloned(skb)) {
1489                 if (skb_orphan_frags(skb, gfp_mask))
1490                         goto nofrags;
1491                 if (skb_zcopy(skb))
1492                         atomic_inc(&skb_uarg(skb)->refcnt);
1493                 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1494                         skb_frag_ref(skb, i);
1495
1496                 if (skb_has_frag_list(skb))
1497                         skb_clone_fraglist(skb);
1498
1499                 skb_release_data(skb);
1500         } else {
1501                 skb_free_head(skb);
1502         }
1503         off = (data + nhead) - skb->head;
1504
1505         skb->head     = data;
1506         skb->head_frag = 0;
1507         skb->data    += off;
1508 #ifdef NET_SKBUFF_DATA_USES_OFFSET
1509         skb->end      = size;
1510         off           = nhead;
1511 #else
1512         skb->end      = skb->head + size;
1513 #endif
1514         skb->tail             += off;
1515         skb_headers_offset_update(skb, nhead);
1516         skb->cloned   = 0;
1517         skb->hdr_len  = 0;
1518         skb->nohdr    = 0;
1519         atomic_set(&skb_shinfo(skb)->dataref, 1);
1520
1521         /* It is not generally safe to change skb->truesize.
1522          * For the moment, we really care of rx path, or
1523          * when skb is orphaned (not attached to a socket).
1524          */
1525         if (!skb->sk || skb->destructor == sock_edemux)
1526                 skb->truesize += size - osize;
1527
1528         return 0;
1529
1530 nofrags:
1531         kfree(data);
1532 nodata:
1533         return -ENOMEM;
1534 }
1535 EXPORT_SYMBOL(pskb_expand_head);
1536
1537 /* Make private copy of skb with writable head and some headroom */
1538
1539 struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1540 {
1541         struct sk_buff *skb2;
1542         int delta = headroom - skb_headroom(skb);
1543
1544         if (delta <= 0)
1545                 skb2 = pskb_copy(skb, GFP_ATOMIC);
1546         else {
1547                 skb2 = skb_clone(skb, GFP_ATOMIC);
1548                 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1549                                              GFP_ATOMIC)) {
1550                         kfree_skb(skb2);
1551                         skb2 = NULL;
1552                 }
1553         }
1554         return skb2;
1555 }
1556 EXPORT_SYMBOL(skb_realloc_headroom);
1557
1558 /**
1559  *      skb_copy_expand -       copy and expand sk_buff
1560  *      @skb: buffer to copy
1561  *      @newheadroom: new free bytes at head
1562  *      @newtailroom: new free bytes at tail
1563  *      @gfp_mask: allocation priority
1564  *
1565  *      Make a copy of both an &sk_buff and its data and while doing so
1566  *      allocate additional space.
1567  *
1568  *      This is used when the caller wishes to modify the data and needs a
1569  *      private copy of the data to alter as well as more space for new fields.
1570  *      Returns %NULL on failure or the pointer to the buffer
1571  *      on success. The returned buffer has a reference count of 1.
1572  *
1573  *      You must pass %GFP_ATOMIC as the allocation priority if this function
1574  *      is called from an interrupt.
1575  */
1576 struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
1577                                 int newheadroom, int newtailroom,
1578                                 gfp_t gfp_mask)
1579 {
1580         /*
1581          *      Allocate the copy buffer
1582          */
1583         struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1584                                         gfp_mask, skb_alloc_rx_flag(skb),
1585                                         NUMA_NO_NODE);
1586         int oldheadroom = skb_headroom(skb);
1587         int head_copy_len, head_copy_off;
1588
1589         if (!n)
1590                 return NULL;
1591
1592         skb_reserve(n, newheadroom);
1593
1594         /* Set the tail pointer and length */
1595         skb_put(n, skb->len);
1596
1597         head_copy_len = oldheadroom;
1598         head_copy_off = 0;
1599         if (newheadroom <= head_copy_len)
1600                 head_copy_len = newheadroom;
1601         else
1602                 head_copy_off = newheadroom - head_copy_len;
1603
1604         /* Copy the linear header and data. */
1605         if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1606                           skb->len + head_copy_len))
1607                 BUG();
1608
1609         copy_skb_header(n, skb);
1610
1611         skb_headers_offset_update(n, newheadroom - oldheadroom);
1612
1613         return n;
1614 }
1615 EXPORT_SYMBOL(skb_copy_expand);
1616
1617 /**
1618  *      __skb_pad               -       zero pad the tail of an skb
1619  *      @skb: buffer to pad
1620  *      @pad: space to pad
1621  *      @free_on_error: free buffer on error
1622  *
1623  *      Ensure that a buffer is followed by a padding area that is zero
1624  *      filled. Used by network drivers which may DMA or transfer data
1625  *      beyond the buffer end onto the wire.
1626  *
1627  *      May return error in out of memory cases. The skb is freed on error
1628  *      if @free_on_error is true.
1629  */
1630
1631 int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error)
1632 {
1633         int err;
1634         int ntail;
1635
1636         /* If the skbuff is non linear tailroom is always zero.. */
1637         if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
1638                 memset(skb->data+skb->len, 0, pad);
1639                 return 0;
1640         }
1641
1642         ntail = skb->data_len + pad - (skb->end - skb->tail);
1643         if (likely(skb_cloned(skb) || ntail > 0)) {
1644                 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1645                 if (unlikely(err))
1646                         goto free_skb;
1647         }
1648
1649         /* FIXME: The use of this function with non-linear skb's really needs
1650          * to be audited.
1651          */
1652         err = skb_linearize(skb);
1653         if (unlikely(err))
1654                 goto free_skb;
1655
1656         memset(skb->data + skb->len, 0, pad);
1657         return 0;
1658
1659 free_skb:
1660         if (free_on_error)
1661                 kfree_skb(skb);
1662         return err;
1663 }
1664 EXPORT_SYMBOL(__skb_pad);
1665
1666 /**
1667  *      pskb_put - add data to the tail of a potentially fragmented buffer
1668  *      @skb: start of the buffer to use
1669  *      @tail: tail fragment of the buffer to use
1670  *      @len: amount of data to add
1671  *
1672  *      This function extends the used data area of the potentially
1673  *      fragmented buffer. @tail must be the last fragment of @skb -- or
1674  *      @skb itself. If this would exceed the total buffer size the kernel
1675  *      will panic. A pointer to the first byte of the extra data is
1676  *      returned.
1677  */
1678
1679 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1680 {
1681         if (tail != skb) {
1682                 skb->data_len += len;
1683                 skb->len += len;
1684         }
1685         return skb_put(tail, len);
1686 }
1687 EXPORT_SYMBOL_GPL(pskb_put);
1688
1689 /**
1690  *      skb_put - add data to a buffer
1691  *      @skb: buffer to use
1692  *      @len: amount of data to add
1693  *
1694  *      This function extends the used data area of the buffer. If this would
1695  *      exceed the total buffer size the kernel will panic. A pointer to the
1696  *      first byte of the extra data is returned.
1697  */
1698 void *skb_put(struct sk_buff *skb, unsigned int len)
1699 {
1700         void *tmp = skb_tail_pointer(skb);
1701         SKB_LINEAR_ASSERT(skb);
1702         skb->tail += len;
1703         skb->len  += len;
1704         if (unlikely(skb->tail > skb->end))
1705                 skb_over_panic(skb, len, __builtin_return_address(0));
1706         return tmp;
1707 }
1708 EXPORT_SYMBOL(skb_put);
1709
1710 /**
1711  *      skb_push - add data to the start of a buffer
1712  *      @skb: buffer to use
1713  *      @len: amount of data to add
1714  *
1715  *      This function extends the used data area of the buffer at the buffer
1716  *      start. If this would exceed the total buffer headroom the kernel will
1717  *      panic. A pointer to the first byte of the extra data is returned.
1718  */
1719 void *skb_push(struct sk_buff *skb, unsigned int len)
1720 {
1721         skb->data -= len;
1722         skb->len  += len;
1723         if (unlikely(skb->data<skb->head))
1724                 skb_under_panic(skb, len, __builtin_return_address(0));
1725         return skb->data;
1726 }
1727 EXPORT_SYMBOL(skb_push);
1728
1729 /**
1730  *      skb_pull - remove data from the start of a buffer
1731  *      @skb: buffer to use
1732  *      @len: amount of data to remove
1733  *
1734  *      This function removes data from the start of a buffer, returning
1735  *      the memory to the headroom. A pointer to the next data in the buffer
1736  *      is returned. Once the data has been pulled future pushes will overwrite
1737  *      the old data.
1738  */
1739 void *skb_pull(struct sk_buff *skb, unsigned int len)
1740 {
1741         return skb_pull_inline(skb, len);
1742 }
1743 EXPORT_SYMBOL(skb_pull);
1744
1745 /**
1746  *      skb_trim - remove end from a buffer
1747  *      @skb: buffer to alter
1748  *      @len: new length
1749  *
1750  *      Cut the length of a buffer down by removing data from the tail. If
1751  *      the buffer is already under the length specified it is not modified.
1752  *      The skb must be linear.
1753  */
1754 void skb_trim(struct sk_buff *skb, unsigned int len)
1755 {
1756         if (skb->len > len)
1757                 __skb_trim(skb, len);
1758 }
1759 EXPORT_SYMBOL(skb_trim);
1760
1761 /* Trims skb to length len. It can change skb pointers.
1762  */
1763
1764 int ___pskb_trim(struct sk_buff *skb, unsigned int len)
1765 {
1766         struct sk_buff **fragp;
1767         struct sk_buff *frag;
1768         int offset = skb_headlen(skb);
1769         int nfrags = skb_shinfo(skb)->nr_frags;
1770         int i;
1771         int err;
1772
1773         if (skb_cloned(skb) &&
1774             unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1775                 return err;
1776
1777         i = 0;
1778         if (offset >= len)
1779                 goto drop_pages;
1780
1781         for (; i < nfrags; i++) {
1782                 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
1783
1784                 if (end < len) {
1785                         offset = end;
1786                         continue;
1787                 }
1788
1789                 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
1790
1791 drop_pages:
1792                 skb_shinfo(skb)->nr_frags = i;
1793
1794                 for (; i < nfrags; i++)
1795                         skb_frag_unref(skb, i);
1796
1797                 if (skb_has_frag_list(skb))
1798                         skb_drop_fraglist(skb);
1799                 goto done;
1800         }
1801
1802         for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1803              fragp = &frag->next) {
1804                 int end = offset + frag->len;
1805
1806                 if (skb_shared(frag)) {
1807                         struct sk_buff *nfrag;
1808
1809                         nfrag = skb_clone(frag, GFP_ATOMIC);
1810                         if (unlikely(!nfrag))
1811                                 return -ENOMEM;
1812
1813                         nfrag->next = frag->next;
1814                         consume_skb(frag);
1815                         frag = nfrag;
1816                         *fragp = frag;
1817                 }
1818
1819                 if (end < len) {
1820                         offset = end;
1821                         continue;
1822                 }
1823
1824                 if (end > len &&
1825                     unlikely((err = pskb_trim(frag, len - offset))))
1826                         return err;
1827
1828                 if (frag->next)
1829                         skb_drop_list(&frag->next);
1830                 break;
1831         }
1832
1833 done:
1834         if (len > skb_headlen(skb)) {
1835                 skb->data_len -= skb->len - len;
1836                 skb->len       = len;
1837         } else {
1838                 skb->len       = len;
1839                 skb->data_len  = 0;
1840                 skb_set_tail_pointer(skb, len);
1841         }
1842
1843         if (!skb->sk || skb->destructor == sock_edemux)
1844                 skb_condense(skb);
1845         return 0;
1846 }
1847 EXPORT_SYMBOL(___pskb_trim);
1848
1849 /**
1850  *      __pskb_pull_tail - advance tail of skb header
1851  *      @skb: buffer to reallocate
1852  *      @delta: number of bytes to advance tail
1853  *
1854  *      The function makes a sense only on a fragmented &sk_buff,
1855  *      it expands header moving its tail forward and copying necessary
1856  *      data from fragmented part.
1857  *
1858  *      &sk_buff MUST have reference count of 1.
1859  *
1860  *      Returns %NULL (and &sk_buff does not change) if pull failed
1861  *      or value of new tail of skb in the case of success.
1862  *
1863  *      All the pointers pointing into skb header may change and must be
1864  *      reloaded after call to this function.
1865  */
1866
1867 /* Moves tail of skb head forward, copying data from fragmented part,
1868  * when it is necessary.
1869  * 1. It may fail due to malloc failure.
1870  * 2. It may change skb pointers.
1871  *
1872  * It is pretty complicated. Luckily, it is called only in exceptional cases.
1873  */
1874 void *__pskb_pull_tail(struct sk_buff *skb, int delta)
1875 {
1876         /* If skb has not enough free space at tail, get new one
1877          * plus 128 bytes for future expansions. If we have enough
1878          * room at tail, reallocate without expansion only if skb is cloned.
1879          */
1880         int i, k, eat = (skb->tail + delta) - skb->end;
1881
1882         if (eat > 0 || skb_cloned(skb)) {
1883                 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1884                                      GFP_ATOMIC))
1885                         return NULL;
1886         }
1887
1888         if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
1889                 BUG();
1890
1891         /* Optimization: no fragments, no reasons to preestimate
1892          * size of pulled pages. Superb.
1893          */
1894         if (!skb_has_frag_list(skb))
1895                 goto pull_pages;
1896
1897         /* Estimate size of pulled pages. */
1898         eat = delta;
1899         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1900                 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1901
1902                 if (size >= eat)
1903                         goto pull_pages;
1904                 eat -= size;
1905         }
1906
1907         /* If we need update frag list, we are in troubles.
1908          * Certainly, it possible to add an offset to skb data,
1909          * but taking into account that pulling is expected to
1910          * be very rare operation, it is worth to fight against
1911          * further bloating skb head and crucify ourselves here instead.
1912          * Pure masohism, indeed. 8)8)
1913          */
1914         if (eat) {
1915                 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1916                 struct sk_buff *clone = NULL;
1917                 struct sk_buff *insp = NULL;
1918
1919                 do {
1920                         BUG_ON(!list);
1921
1922                         if (list->len <= eat) {
1923                                 /* Eaten as whole. */
1924                                 eat -= list->len;
1925                                 list = list->next;
1926                                 insp = list;
1927                         } else {
1928                                 /* Eaten partially. */
1929
1930                                 if (skb_shared(list)) {
1931                                         /* Sucks! We need to fork list. :-( */
1932                                         clone = skb_clone(list, GFP_ATOMIC);
1933                                         if (!clone)
1934                                                 return NULL;
1935                                         insp = list->next;
1936                                         list = clone;
1937                                 } else {
1938                                         /* This may be pulled without
1939                                          * problems. */
1940                                         insp = list;
1941                                 }
1942                                 if (!pskb_pull(list, eat)) {
1943                                         kfree_skb(clone);
1944                                         return NULL;
1945                                 }
1946                                 break;
1947                         }
1948                 } while (eat);
1949
1950                 /* Free pulled out fragments. */
1951                 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1952                         skb_shinfo(skb)->frag_list = list->next;
1953                         kfree_skb(list);
1954                 }
1955                 /* And insert new clone at head. */
1956                 if (clone) {
1957                         clone->next = list;
1958                         skb_shinfo(skb)->frag_list = clone;
1959                 }
1960         }
1961         /* Success! Now we may commit changes to skb data. */
1962
1963 pull_pages:
1964         eat = delta;
1965         k = 0;
1966         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1967                 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1968
1969                 if (size <= eat) {
1970                         skb_frag_unref(skb, i);
1971                         eat -= size;
1972                 } else {
1973                         skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1974                         if (eat) {
1975                                 skb_shinfo(skb)->frags[k].page_offset += eat;
1976                                 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
1977                                 if (!i)
1978                                         goto end;
1979                                 eat = 0;
1980                         }
1981                         k++;
1982                 }
1983         }
1984         skb_shinfo(skb)->nr_frags = k;
1985
1986 end:
1987         skb->tail     += delta;
1988         skb->data_len -= delta;
1989
1990         if (!skb->data_len)
1991                 skb_zcopy_clear(skb, false);
1992
1993         return skb_tail_pointer(skb);
1994 }
1995 EXPORT_SYMBOL(__pskb_pull_tail);
1996
1997 /**
1998  *      skb_copy_bits - copy bits from skb to kernel buffer
1999  *      @skb: source skb
2000  *      @offset: offset in source
2001  *      @to: destination buffer
2002  *      @len: number of bytes to copy
2003  *
2004  *      Copy the specified number of bytes from the source skb to the
2005  *      destination buffer.
2006  *
2007  *      CAUTION ! :
2008  *              If its prototype is ever changed,
2009  *              check arch/{*}/net/{*}.S files,
2010  *              since it is called from BPF assembly code.
2011  */
2012 int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
2013 {
2014         int start = skb_headlen(skb);
2015         struct sk_buff *frag_iter;
2016         int i, copy;
2017
2018         if (offset > (int)skb->len - len)
2019                 goto fault;
2020
2021         /* Copy header. */
2022         if ((copy = start - offset) > 0) {
2023                 if (copy > len)
2024                         copy = len;
2025                 skb_copy_from_linear_data_offset(skb, offset, to, copy);
2026                 if ((len -= copy) == 0)
2027                         return 0;
2028                 offset += copy;
2029                 to     += copy;
2030         }
2031
2032         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2033                 int end;
2034                 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
2035
2036                 WARN_ON(start > offset + len);
2037
2038                 end = start + skb_frag_size(f);
2039                 if ((copy = end - offset) > 0) {
2040                         u32 p_off, p_len, copied;
2041                         struct page *p;
2042                         u8 *vaddr;
2043
2044                         if (copy > len)
2045                                 copy = len;
2046
2047                         skb_frag_foreach_page(f,
2048                                               f->page_offset + offset - start,
2049                                               copy, p, p_off, p_len, copied) {
2050                                 vaddr = kmap_atomic(p);
2051                                 memcpy(to + copied, vaddr + p_off, p_len);
2052                                 kunmap_atomic(vaddr);
2053                         }
2054
2055                         if ((len -= copy) == 0)
2056                                 return 0;
2057                         offset += copy;
2058                         to     += copy;
2059                 }
2060                 start = end;
2061         }
2062
2063         skb_walk_frags(skb, frag_iter) {
2064                 int end;
2065
2066                 WARN_ON(start > offset + len);
2067
2068                 end = start + frag_iter->len;
2069                 if ((copy = end - offset) > 0) {
2070                         if (copy > len)
2071                                 copy = len;
2072                         if (skb_copy_bits(frag_iter, offset - start, to, copy))
2073                                 goto fault;
2074                         if ((len -= copy) == 0)
2075                                 return 0;
2076                         offset += copy;
2077                         to     += copy;
2078                 }
2079                 start = end;
2080         }
2081
2082         if (!len)
2083                 return 0;
2084
2085 fault:
2086         return -EFAULT;
2087 }
2088 EXPORT_SYMBOL(skb_copy_bits);
2089
2090 /*
2091  * Callback from splice_to_pipe(), if we need to release some pages
2092  * at the end of the spd in case we error'ed out in filling the pipe.
2093  */
2094 static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
2095 {
2096         put_page(spd->pages[i]);
2097 }
2098
2099 static struct page *linear_to_page(struct page *page, unsigned int *len,
2100                                    unsigned int *offset,
2101                                    struct sock *sk)
2102 {
2103         struct page_frag *pfrag = sk_page_frag(sk);
2104
2105         if (!sk_page_frag_refill(sk, pfrag))
2106                 return NULL;
2107
2108         *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
2109
2110         memcpy(page_address(pfrag->page) + pfrag->offset,
2111                page_address(page) + *offset, *len);
2112         *offset = pfrag->offset;
2113         pfrag->offset += *len;
2114
2115         return pfrag->page;
2116 }
2117
2118 static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
2119                              struct page *page,
2120                              unsigned int offset)
2121 {
2122         return  spd->nr_pages &&
2123                 spd->pages[spd->nr_pages - 1] == page &&
2124                 (spd->partial[spd->nr_pages - 1].offset +
2125                  spd->partial[spd->nr_pages - 1].len == offset);
2126 }
2127
2128 /*
2129  * Fill page/offset/length into spd, if it can hold more pages.
2130  */
2131 static bool spd_fill_page(struct splice_pipe_desc *spd,
2132                           struct pipe_inode_info *pipe, struct page *page,
2133                           unsigned int *len, unsigned int offset,
2134                           bool linear,
2135                           struct sock *sk)
2136 {
2137         if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
2138                 return true;
2139
2140         if (linear) {
2141                 page = linear_to_page(page, len, &offset, sk);
2142                 if (!page)
2143                         return true;
2144         }
2145         if (spd_can_coalesce(spd, page, offset)) {
2146                 spd->partial[spd->nr_pages - 1].len += *len;
2147                 return false;
2148         }
2149         get_page(page);
2150         spd->pages[spd->nr_pages] = page;
2151         spd->partial[spd->nr_pages].len = *len;
2152         spd->partial[spd->nr_pages].offset = offset;
2153         spd->nr_pages++;
2154
2155         return false;
2156 }
2157
2158 static bool __splice_segment(struct page *page, unsigned int poff,
2159                              unsigned int plen, unsigned int *off,
2160                              unsigned int *len,
2161                              struct splice_pipe_desc *spd, bool linear,
2162                              struct sock *sk,
2163                              struct pipe_inode_info *pipe)
2164 {
2165         if (!*len)
2166                 return true;
2167
2168         /* skip this segment if already processed */
2169         if (*off >= plen) {
2170                 *off -= plen;
2171                 return false;
2172         }
2173
2174         /* ignore any bits we already processed */
2175         poff += *off;
2176         plen -= *off;
2177         *off = 0;
2178
2179         do {
2180                 unsigned int flen = min(*len, plen);
2181
2182                 if (spd_fill_page(spd, pipe, page, &flen, poff,
2183                                   linear, sk))
2184                         return true;
2185                 poff += flen;
2186                 plen -= flen;
2187                 *len -= flen;
2188         } while (*len && plen);
2189
2190         return false;
2191 }
2192
2193 /*
2194  * Map linear and fragment data from the skb to spd. It reports true if the
2195  * pipe is full or if we already spliced the requested length.
2196  */
2197 static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
2198                               unsigned int *offset, unsigned int *len,
2199                               struct splice_pipe_desc *spd, struct sock *sk)
2200 {
2201         int seg;
2202         struct sk_buff *iter;
2203
2204         /* map the linear part :
2205          * If skb->head_frag is set, this 'linear' part is backed by a
2206          * fragment, and if the head is not shared with any clones then
2207          * we can avoid a copy since we own the head portion of this page.
2208          */
2209         if (__splice_segment(virt_to_page(skb->data),
2210                              (unsigned long) skb->data & (PAGE_SIZE - 1),
2211                              skb_headlen(skb),
2212                              offset, len, spd,
2213                              skb_head_is_locked(skb),
2214                              sk, pipe))
2215                 return true;
2216
2217         /*
2218          * then map the fragments
2219          */
2220         for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
2221                 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
2222
2223                 if (__splice_segment(skb_frag_page(f),
2224                                      f->page_offset, skb_frag_size(f),
2225                                      offset, len, spd, false, sk, pipe))
2226                         return true;
2227         }
2228
2229         skb_walk_frags(skb, iter) {
2230                 if (*offset >= iter->len) {
2231                         *offset -= iter->len;
2232                         continue;
2233                 }
2234                 /* __skb_splice_bits() only fails if the output has no room
2235                  * left, so no point in going over the frag_list for the error
2236                  * case.
2237                  */
2238                 if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
2239                         return true;
2240         }
2241
2242         return false;
2243 }
2244
2245 /*
2246  * Map data from the skb to a pipe. Should handle both the linear part,
2247  * the fragments, and the frag list.
2248  */
2249 int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
2250                     struct pipe_inode_info *pipe, unsigned int tlen,
2251                     unsigned int flags)
2252 {
2253         struct partial_page partial[MAX_SKB_FRAGS];
2254         struct page *pages[MAX_SKB_FRAGS];
2255         struct splice_pipe_desc spd = {
2256                 .pages = pages,
2257                 .partial = partial,
2258                 .nr_pages_max = MAX_SKB_FRAGS,
2259                 .ops = &nosteal_pipe_buf_ops,
2260                 .spd_release = sock_spd_release,
2261         };
2262         int ret = 0;
2263
2264         __skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
2265
2266         if (spd.nr_pages)
2267                 ret = splice_to_pipe(pipe, &spd);
2268
2269         return ret;
2270 }
2271 EXPORT_SYMBOL_GPL(skb_splice_bits);
2272
2273 /* Send skb data on a socket. Socket must be locked. */
2274 int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
2275                          int len)
2276 {
2277         unsigned int orig_len = len;
2278         struct sk_buff *head = skb;
2279         unsigned short fragidx;
2280         int slen, ret;
2281
2282 do_frag_list:
2283
2284         /* Deal with head data */
2285         while (offset < skb_headlen(skb) && len) {
2286                 struct kvec kv;
2287                 struct msghdr msg;
2288
2289                 slen = min_t(int, len, skb_headlen(skb) - offset);
2290                 kv.iov_base = skb->data + offset;
2291                 kv.iov_len = slen;
2292                 memset(&msg, 0, sizeof(msg));
2293
2294                 ret = kernel_sendmsg_locked(sk, &msg, &kv, 1, slen);
2295                 if (ret <= 0)
2296                         goto error;
2297
2298                 offset += ret;
2299                 len -= ret;
2300         }
2301
2302         /* All the data was skb head? */
2303         if (!len)
2304                 goto out;
2305
2306         /* Make offset relative to start of frags */
2307         offset -= skb_headlen(skb);
2308
2309         /* Find where we are in frag list */
2310         for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2311                 skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
2312
2313                 if (offset < frag->size)
2314                         break;
2315
2316                 offset -= frag->size;
2317         }
2318
2319         for (; len && fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2320                 skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
2321
2322                 slen = min_t(size_t, len, frag->size - offset);
2323
2324                 while (slen) {
2325                         ret = kernel_sendpage_locked(sk, frag->page.p,
2326                                                      frag->page_offset + offset,
2327                                                      slen, MSG_DONTWAIT);
2328                         if (ret <= 0)
2329                                 goto error;
2330
2331                         len -= ret;
2332                         offset += ret;
2333                         slen -= ret;
2334                 }
2335
2336                 offset = 0;
2337         }
2338
2339         if (len) {
2340                 /* Process any frag lists */
2341
2342                 if (skb == head) {
2343                         if (skb_has_frag_list(skb)) {
2344                                 skb = skb_shinfo(skb)->frag_list;
2345                                 goto do_frag_list;
2346                         }
2347                 } else if (skb->next) {
2348                         skb = skb->next;
2349                         goto do_frag_list;
2350                 }
2351         }
2352
2353 out:
2354         return orig_len - len;
2355
2356 error:
2357         return orig_len == len ? ret : orig_len - len;
2358 }
2359 EXPORT_SYMBOL_GPL(skb_send_sock_locked);
2360
2361 /* Send skb data on a socket. */
2362 int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len)
2363 {
2364         int ret = 0;
2365
2366         lock_sock(sk);
2367         ret = skb_send_sock_locked(sk, skb, offset, len);
2368         release_sock(sk);
2369
2370         return ret;
2371 }
2372 EXPORT_SYMBOL_GPL(skb_send_sock);
2373
2374 /**
2375  *      skb_store_bits - store bits from kernel buffer to skb
2376  *      @skb: destination buffer
2377  *      @offset: offset in destination
2378  *      @from: source buffer
2379  *      @len: number of bytes to copy
2380  *
2381  *      Copy the specified number of bytes from the source buffer to the
2382  *      destination skb.  This function handles all the messy bits of
2383  *      traversing fragment lists and such.
2384  */
2385
2386 int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
2387 {
2388         int start = skb_headlen(skb);
2389         struct sk_buff *frag_iter;
2390         int i, copy;
2391
2392         if (offset > (int)skb->len - len)
2393                 goto fault;
2394
2395         if ((copy = start - offset) > 0) {
2396                 if (copy > len)
2397                         copy = len;
2398                 skb_copy_to_linear_data_offset(skb, offset, from, copy);
2399                 if ((len -= copy) == 0)
2400                         return 0;
2401                 offset += copy;
2402                 from += copy;
2403         }
2404
2405         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2406                 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2407                 int end;
2408
2409                 WARN_ON(start > offset + len);
2410
2411                 end = start + skb_frag_size(frag);
2412                 if ((copy = end - offset) > 0) {
2413                         u32 p_off, p_len, copied;
2414                         struct page *p;
2415                         u8 *vaddr;
2416
2417                         if (copy > len)
2418                                 copy = len;
2419
2420                         skb_frag_foreach_page(frag,
2421                                               frag->page_offset + offset - start,
2422                                               copy, p, p_off, p_len, copied) {
2423                                 vaddr = kmap_atomic(p);
2424                                 memcpy(vaddr + p_off, from + copied, p_len);
2425                                 kunmap_atomic(vaddr);
2426                         }
2427
2428                         if ((len -= copy) == 0)
2429                                 return 0;
2430                         offset += copy;
2431                         from += copy;
2432                 }
2433                 start = end;
2434         }
2435
2436         skb_walk_frags(skb, frag_iter) {
2437                 int end;
2438
2439                 WARN_ON(start > offset + len);
2440
2441                 end = start + frag_iter->len;
2442                 if ((copy = end - offset) > 0) {
2443                         if (copy > len)
2444                                 copy = len;
2445                         if (skb_store_bits(frag_iter, offset - start,
2446                                            from, copy))
2447                                 goto fault;
2448                         if ((len -= copy) == 0)
2449                                 return 0;
2450                         offset += copy;
2451                         from += copy;
2452                 }
2453                 start = end;
2454         }
2455         if (!len)
2456                 return 0;
2457
2458 fault:
2459         return -EFAULT;
2460 }
2461 EXPORT_SYMBOL(skb_store_bits);
2462
2463 /* Checksum skb data. */
2464 __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2465                       __wsum csum, const struct skb_checksum_ops *ops)
2466 {
2467         int start = skb_headlen(skb);
2468         int i, copy = start - offset;
2469         struct sk_buff *frag_iter;
2470         int pos = 0;
2471
2472         /* Checksum header. */
2473         if (copy > 0) {
2474                 if (copy > len)
2475                         copy = len;
2476                 csum = ops->update(skb->data + offset, copy, csum);
2477                 if ((len -= copy) == 0)
2478                         return csum;
2479                 offset += copy;
2480                 pos     = copy;
2481         }
2482
2483         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2484                 int end;
2485                 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2486
2487                 WARN_ON(start > offset + len);
2488
2489                 end = start + skb_frag_size(frag);
2490                 if ((copy = end - offset) > 0) {
2491                         u32 p_off, p_len, copied;
2492                         struct page *p;
2493                         __wsum csum2;
2494                         u8 *vaddr;
2495
2496                         if (copy > len)
2497                                 copy = len;
2498
2499                         skb_frag_foreach_page(frag,
2500                                               frag->page_offset + offset - start,
2501                                               copy, p, p_off, p_len, copied) {
2502                                 vaddr = kmap_atomic(p);
2503                                 csum2 = ops->update(vaddr + p_off, p_len, 0);
2504                                 kunmap_atomic(vaddr);
2505                                 csum = ops->combine(csum, csum2, pos, p_len);
2506                                 pos += p_len;
2507                         }
2508
2509                         if (!(len -= copy))
2510                                 return csum;
2511                         offset += copy;
2512                 }
2513                 start = end;
2514         }
2515
2516         skb_walk_frags(skb, frag_iter) {
2517                 int end;
2518
2519                 WARN_ON(start > offset + len);
2520
2521                 end = start + frag_iter->len;
2522                 if ((copy = end - offset) > 0) {
2523                         __wsum csum2;
2524                         if (copy > len)
2525                                 copy = len;
2526                         csum2 = __skb_checksum(frag_iter, offset - start,
2527                                                copy, 0, ops);
2528                         csum = ops->combine(csum, csum2, pos, copy);
2529                         if ((len -= copy) == 0)
2530                                 return csum;
2531                         offset += copy;
2532                         pos    += copy;
2533                 }
2534                 start = end;
2535         }
2536         BUG_ON(len);
2537
2538         return csum;
2539 }
2540 EXPORT_SYMBOL(__skb_checksum);
2541
2542 __wsum skb_checksum(const struct sk_buff *skb, int offset,
2543                     int len, __wsum csum)
2544 {
2545         const struct skb_checksum_ops ops = {
2546                 .update  = csum_partial_ext,
2547                 .combine = csum_block_add_ext,
2548         };
2549
2550         return __skb_checksum(skb, offset, len, csum, &ops);
2551 }
2552 EXPORT_SYMBOL(skb_checksum);
2553
2554 /* Both of above in one bottle. */
2555
2556 __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2557                                     u8 *to, int len, __wsum csum)
2558 {
2559         int start = skb_headlen(skb);
2560         int i, copy = start - offset;
2561         struct sk_buff *frag_iter;
2562         int pos = 0;
2563
2564         /* Copy header. */
2565         if (copy > 0) {
2566                 if (copy > len)
2567                         copy = len;
2568                 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2569                                                  copy, csum);
2570                 if ((len -= copy) == 0)
2571                         return csum;
2572                 offset += copy;
2573                 to     += copy;
2574                 pos     = copy;
2575         }
2576
2577         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2578                 int end;
2579
2580                 WARN_ON(start > offset + len);
2581
2582                 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
2583                 if ((copy = end - offset) > 0) {
2584                         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2585                         u32 p_off, p_len, copied;
2586                         struct page *p;
2587                         __wsum csum2;
2588                         u8 *vaddr;
2589
2590                         if (copy > len)
2591                                 copy = len;
2592
2593                         skb_frag_foreach_page(frag,
2594                                               frag->page_offset + offset - start,
2595                                               copy, p, p_off, p_len, copied) {
2596                                 vaddr = kmap_atomic(p);
2597                                 csum2 = csum_partial_copy_nocheck(vaddr + p_off,
2598                                                                   to + copied,
2599                                                                   p_len, 0);
2600                                 kunmap_atomic(vaddr);
2601                                 csum = csum_block_add(csum, csum2, pos);
2602                                 pos += p_len;
2603                         }
2604
2605                         if (!(len -= copy))
2606                                 return csum;
2607                         offset += copy;
2608                         to     += copy;
2609                 }
2610                 start = end;
2611         }
2612
2613         skb_walk_frags(skb, frag_iter) {
2614                 __wsum csum2;
2615                 int end;
2616
2617                 WARN_ON(start > offset + len);
2618
2619                 end = start + frag_iter->len;
2620                 if ((copy = end - offset) > 0) {
2621                         if (copy > len)
2622                                 copy = len;
2623                         csum2 = skb_copy_and_csum_bits(frag_iter,
2624                                                        offset - start,
2625                                                        to, copy, 0);
2626                         csum = csum_block_add(csum, csum2, pos);
2627                         if ((len -= copy) == 0)
2628                                 return csum;
2629                         offset += copy;
2630                         to     += copy;
2631                         pos    += copy;
2632                 }
2633                 start = end;
2634         }
2635         BUG_ON(len);
2636         return csum;
2637 }
2638 EXPORT_SYMBOL(skb_copy_and_csum_bits);
2639
2640 static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum)
2641 {
2642         net_warn_ratelimited(
2643                 "%s: attempt to compute crc32c without libcrc32c.ko\n",
2644                 __func__);
2645         return 0;
2646 }
2647
2648 static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2,
2649                                        int offset, int len)
2650 {
2651         net_warn_ratelimited(
2652                 "%s: attempt to compute crc32c without libcrc32c.ko\n",
2653                 __func__);
2654         return 0;
2655 }
2656
2657 static const struct skb_checksum_ops default_crc32c_ops = {
2658         .update  = warn_crc32c_csum_update,
2659         .combine = warn_crc32c_csum_combine,
2660 };
2661
2662 const struct skb_checksum_ops *crc32c_csum_stub __read_mostly =
2663         &default_crc32c_ops;
2664 EXPORT_SYMBOL(crc32c_csum_stub);
2665
2666  /**
2667  *      skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2668  *      @from: source buffer
2669  *
2670  *      Calculates the amount of linear headroom needed in the 'to' skb passed
2671  *      into skb_zerocopy().
2672  */
2673 unsigned int
2674 skb_zerocopy_headlen(const struct sk_buff *from)
2675 {
2676         unsigned int hlen = 0;
2677
2678         if (!from->head_frag ||
2679             skb_headlen(from) < L1_CACHE_BYTES ||
2680             skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2681                 hlen = skb_headlen(from);
2682
2683         if (skb_has_frag_list(from))
2684                 hlen = from->len;
2685
2686         return hlen;
2687 }
2688 EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2689
2690 /**
2691  *      skb_zerocopy - Zero copy skb to skb
2692  *      @to: destination buffer
2693  *      @from: source buffer
2694  *      @len: number of bytes to copy from source buffer
2695  *      @hlen: size of linear headroom in destination buffer
2696  *
2697  *      Copies up to `len` bytes from `from` to `to` by creating references
2698  *      to the frags in the source buffer.
2699  *
2700  *      The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2701  *      headroom in the `to` buffer.
2702  *
2703  *      Return value:
2704  *      0: everything is OK
2705  *      -ENOMEM: couldn't orphan frags of @from due to lack of memory
2706  *      -EFAULT: skb_copy_bits() found some problem with skb geometry
2707  */
2708 int
2709 skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
2710 {
2711         int i, j = 0;
2712         int plen = 0; /* length of skb->head fragment */
2713         int ret;
2714         struct page *page;
2715         unsigned int offset;
2716
2717         BUG_ON(!from->head_frag && !hlen);
2718
2719         /* dont bother with small payloads */
2720         if (len <= skb_tailroom(to))
2721                 return skb_copy_bits(from, 0, skb_put(to, len), len);
2722
2723         if (hlen) {
2724                 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2725                 if (unlikely(ret))
2726                         return ret;
2727                 len -= hlen;
2728         } else {
2729                 plen = min_t(int, skb_headlen(from), len);
2730                 if (plen) {
2731                         page = virt_to_head_page(from->head);
2732                         offset = from->data - (unsigned char *)page_address(page);
2733                         __skb_fill_page_desc(to, 0, page, offset, plen);
2734                         get_page(page);
2735                         j = 1;
2736                         len -= plen;
2737                 }
2738         }
2739
2740         to->truesize += len + plen;
2741         to->len += len + plen;
2742         to->data_len += len + plen;
2743
2744         if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2745                 skb_tx_error(from);
2746                 return -ENOMEM;
2747         }
2748         skb_zerocopy_clone(to, from, GFP_ATOMIC);
2749
2750         for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2751                 if (!len)
2752                         break;
2753                 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2754                 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2755                 len -= skb_shinfo(to)->frags[j].size;
2756                 skb_frag_ref(to, j);
2757                 j++;
2758         }
2759         skb_shinfo(to)->nr_frags = j;
2760
2761         return 0;
2762 }
2763 EXPORT_SYMBOL_GPL(skb_zerocopy);
2764
2765 void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2766 {
2767         __wsum csum;
2768         long csstart;
2769
2770         if (skb->ip_summed == CHECKSUM_PARTIAL)
2771                 csstart = skb_checksum_start_offset(skb);
2772         else
2773                 csstart = skb_headlen(skb);
2774
2775         BUG_ON(csstart > skb_headlen(skb));
2776
2777         skb_copy_from_linear_data(skb, to, csstart);
2778
2779         csum = 0;
2780         if (csstart != skb->len)
2781                 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2782                                               skb->len - csstart, 0);
2783
2784         if (skb->ip_summed == CHECKSUM_PARTIAL) {
2785                 long csstuff = csstart + skb->csum_offset;
2786
2787                 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
2788         }
2789 }
2790 EXPORT_SYMBOL(skb_copy_and_csum_dev);
2791
2792 /**
2793  *      skb_dequeue - remove from the head of the queue
2794  *      @list: list to dequeue from
2795  *
2796  *      Remove the head of the list. The list lock is taken so the function
2797  *      may be used safely with other locking list functions. The head item is
2798  *      returned or %NULL if the list is empty.
2799  */
2800
2801 struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2802 {
2803         unsigned long flags;
2804         struct sk_buff *result;
2805
2806         spin_lock_irqsave(&list->lock, flags);
2807         result = __skb_dequeue(list);
2808         spin_unlock_irqrestore(&list->lock, flags);
2809         return result;
2810 }
2811 EXPORT_SYMBOL(skb_dequeue);
2812
2813 /**
2814  *      skb_dequeue_tail - remove from the tail of the queue
2815  *      @list: list to dequeue from
2816  *
2817  *      Remove the tail of the list. The list lock is taken so the function
2818  *      may be used safely with other locking list functions. The tail item is
2819  *      returned or %NULL if the list is empty.
2820  */
2821 struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2822 {
2823         unsigned long flags;
2824         struct sk_buff *result;
2825
2826         spin_lock_irqsave(&list->lock, flags);
2827         result = __skb_dequeue_tail(list);
2828         spin_unlock_irqrestore(&list->lock, flags);
2829         return result;
2830 }
2831 EXPORT_SYMBOL(skb_dequeue_tail);
2832
2833 /**
2834  *      skb_queue_purge - empty a list
2835  *      @list: list to empty
2836  *
2837  *      Delete all buffers on an &sk_buff list. Each buffer is removed from
2838  *      the list and one reference dropped. This function takes the list
2839  *      lock and is atomic with respect to other list locking functions.
2840  */
2841 void skb_queue_purge(struct sk_buff_head *list)
2842 {
2843         struct sk_buff *skb;
2844         while ((skb = skb_dequeue(list)) != NULL)
2845                 kfree_skb(skb);
2846 }
2847 EXPORT_SYMBOL(skb_queue_purge);
2848
2849 /**
2850  *      skb_rbtree_purge - empty a skb rbtree
2851  *      @root: root of the rbtree to empty
2852  *
2853  *      Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
2854  *      the list and one reference dropped. This function does not take
2855  *      any lock. Synchronization should be handled by the caller (e.g., TCP
2856  *      out-of-order queue is protected by the socket lock).
2857  */
2858 void skb_rbtree_purge(struct rb_root *root)
2859 {
2860         struct sk_buff *skb, *next;
2861
2862         rbtree_postorder_for_each_entry_safe(skb, next, root, rbnode)
2863                 kfree_skb(skb);
2864
2865         *root = RB_ROOT;
2866 }
2867
2868 /**
2869  *      skb_queue_head - queue a buffer at the list head
2870  *      @list: list to use
2871  *      @newsk: buffer to queue
2872  *
2873  *      Queue a buffer at the start of the list. This function takes the
2874  *      list lock and can be used safely with other locking &sk_buff functions
2875  *      safely.
2876  *
2877  *      A buffer cannot be placed on two lists at the same time.
2878  */
2879 void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2880 {
2881         unsigned long flags;
2882
2883         spin_lock_irqsave(&list->lock, flags);
2884         __skb_queue_head(list, newsk);
2885         spin_unlock_irqrestore(&list->lock, flags);
2886 }
2887 EXPORT_SYMBOL(skb_queue_head);
2888
2889 /**
2890  *      skb_queue_tail - queue a buffer at the list tail
2891  *      @list: list to use
2892  *      @newsk: buffer to queue
2893  *
2894  *      Queue a buffer at the tail of the list. This function takes the
2895  *      list lock and can be used safely with other locking &sk_buff functions
2896  *      safely.
2897  *
2898  *      A buffer cannot be placed on two lists at the same time.
2899  */
2900 void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2901 {
2902         unsigned long flags;
2903
2904         spin_lock_irqsave(&list->lock, flags);
2905         __skb_queue_tail(list, newsk);
2906         spin_unlock_irqrestore(&list->lock, flags);
2907 }
2908 EXPORT_SYMBOL(skb_queue_tail);
2909
2910 /**
2911  *      skb_unlink      -       remove a buffer from a list
2912  *      @skb: buffer to remove
2913  *      @list: list to use
2914  *
2915  *      Remove a packet from a list. The list locks are taken and this
2916  *      function is atomic with respect to other list locked calls
2917  *
2918  *      You must know what list the SKB is on.
2919  */
2920 void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
2921 {
2922         unsigned long flags;
2923
2924         spin_lock_irqsave(&list->lock, flags);
2925         __skb_unlink(skb, list);
2926         spin_unlock_irqrestore(&list->lock, flags);
2927 }
2928 EXPORT_SYMBOL(skb_unlink);
2929
2930 /**
2931  *      skb_append      -       append a buffer
2932  *      @old: buffer to insert after
2933  *      @newsk: buffer to insert
2934  *      @list: list to use
2935  *
2936  *      Place a packet after a given packet in a list. The list locks are taken
2937  *      and this function is atomic with respect to other list locked calls.
2938  *      A buffer cannot be placed on two lists at the same time.
2939  */
2940 void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
2941 {
2942         unsigned long flags;
2943
2944         spin_lock_irqsave(&list->lock, flags);
2945         __skb_queue_after(list, old, newsk);
2946         spin_unlock_irqrestore(&list->lock, flags);
2947 }
2948 EXPORT_SYMBOL(skb_append);
2949
2950 /**
2951  *      skb_insert      -       insert a buffer
2952  *      @old: buffer to insert before
2953  *      @newsk: buffer to insert
2954  *      @list: list to use
2955  *
2956  *      Place a packet before a given packet in a list. The list locks are
2957  *      taken and this function is atomic with respect to other list locked
2958  *      calls.
2959  *
2960  *      A buffer cannot be placed on two lists at the same time.
2961  */
2962 void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
2963 {
2964         unsigned long flags;
2965
2966         spin_lock_irqsave(&list->lock, flags);
2967         __skb_insert(newsk, old->prev, old, list);
2968         spin_unlock_irqrestore(&list->lock, flags);
2969 }
2970 EXPORT_SYMBOL(skb_insert);
2971
2972 static inline void skb_split_inside_header(struct sk_buff *skb,
2973                                            struct sk_buff* skb1,
2974                                            const u32 len, const int pos)
2975 {
2976         int i;
2977
2978         skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2979                                          pos - len);
2980         /* And move data appendix as is. */
2981         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2982                 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2983
2984         skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2985         skb_shinfo(skb)->nr_frags  = 0;
2986         skb1->data_len             = skb->data_len;
2987         skb1->len                  += skb1->data_len;
2988         skb->data_len              = 0;
2989         skb->len                   = len;
2990         skb_set_tail_pointer(skb, len);
2991 }
2992
2993 static inline void skb_split_no_header(struct sk_buff *skb,
2994                                        struct sk_buff* skb1,
2995                                        const u32 len, int pos)
2996 {
2997         int i, k = 0;
2998         const int nfrags = skb_shinfo(skb)->nr_frags;
2999
3000         skb_shinfo(skb)->nr_frags = 0;
3001         skb1->len                 = skb1->data_len = skb->len - len;
3002         skb->len                  = len;
3003         skb->data_len             = len - pos;
3004
3005         for (i = 0; i < nfrags; i++) {
3006                 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
3007
3008                 if (pos + size > len) {
3009                         skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
3010
3011                         if (pos < len) {
3012                                 /* Split frag.
3013                                  * We have two variants in this case:
3014                                  * 1. Move all the frag to the second
3015                                  *    part, if it is possible. F.e.
3016                                  *    this approach is mandatory for TUX,
3017                                  *    where splitting is expensive.
3018                                  * 2. Split is accurately. We make this.
3019                                  */
3020                                 skb_frag_ref(skb, i);
3021                                 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
3022                                 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
3023                                 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
3024                                 skb_shinfo(skb)->nr_frags++;
3025                         }
3026                         k++;
3027                 } else
3028                         skb_shinfo(skb)->nr_frags++;
3029                 pos += size;
3030         }
3031         skb_shinfo(skb1)->nr_frags = k;
3032 }
3033
3034 /**
3035  * skb_split - Split fragmented skb to two parts at length len.
3036  * @skb: the buffer to split
3037  * @skb1: the buffer to receive the second part
3038  * @len: new length for skb
3039  */
3040 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
3041 {
3042         int pos = skb_headlen(skb);
3043
3044         skb_shinfo(skb1)->tx_flags |= skb_shinfo(skb)->tx_flags &
3045                                       SKBTX_SHARED_FRAG;
3046         skb_zerocopy_clone(skb1, skb, 0);
3047         if (len < pos)  /* Split line is inside header. */
3048                 skb_split_inside_header(skb, skb1, len, pos);
3049         else            /* Second chunk has no header, nothing to copy. */
3050                 skb_split_no_header(skb, skb1, len, pos);
3051 }
3052 EXPORT_SYMBOL(skb_split);
3053
3054 /* Shifting from/to a cloned skb is a no-go.
3055  *
3056  * Caller cannot keep skb_shinfo related pointers past calling here!
3057  */
3058 static int skb_prepare_for_shift(struct sk_buff *skb)
3059 {
3060         return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3061 }
3062
3063 /**
3064  * skb_shift - Shifts paged data partially from skb to another
3065  * @tgt: buffer into which tail data gets added
3066  * @skb: buffer from which the paged data comes from
3067  * @shiftlen: shift up to this many bytes
3068  *
3069  * Attempts to shift up to shiftlen worth of bytes, which may be less than
3070  * the length of the skb, from skb to tgt. Returns number bytes shifted.
3071  * It's up to caller to free skb if everything was shifted.
3072  *
3073  * If @tgt runs out of frags, the whole operation is aborted.
3074  *
3075  * Skb cannot include anything else but paged data while tgt is allowed
3076  * to have non-paged data as well.
3077  *
3078  * TODO: full sized shift could be optimized but that would need
3079  * specialized skb free'er to handle frags without up-to-date nr_frags.
3080  */
3081 int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
3082 {
3083         int from, to, merge, todo;
3084         struct skb_frag_struct *fragfrom, *fragto;
3085
3086         BUG_ON(shiftlen > skb->len);
3087
3088         if (skb_headlen(skb))
3089                 return 0;
3090         if (skb_zcopy(tgt) || skb_zcopy(skb))
3091                 return 0;
3092
3093         todo = shiftlen;
3094         from = 0;
3095         to = skb_shinfo(tgt)->nr_frags;
3096         fragfrom = &skb_shinfo(skb)->frags[from];
3097
3098         /* Actual merge is delayed until the point when we know we can
3099          * commit all, so that we don't have to undo partial changes
3100          */
3101         if (!to ||
3102             !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
3103                               fragfrom->page_offset)) {
3104                 merge = -1;
3105         } else {
3106                 merge = to - 1;
3107
3108                 todo -= skb_frag_size(fragfrom);
3109                 if (todo < 0) {
3110                         if (skb_prepare_for_shift(skb) ||
3111                             skb_prepare_for_shift(tgt))
3112                                 return 0;
3113
3114                         /* All previous frag pointers might be stale! */
3115                         fragfrom = &skb_shinfo(skb)->frags[from];
3116                         fragto = &skb_shinfo(tgt)->frags[merge];
3117
3118                         skb_frag_size_add(fragto, shiftlen);
3119                         skb_frag_size_sub(fragfrom, shiftlen);
3120                         fragfrom->page_offset += shiftlen;
3121
3122                         goto onlymerged;
3123                 }
3124
3125                 from++;
3126         }
3127
3128         /* Skip full, not-fitting skb to avoid expensive operations */
3129         if ((shiftlen == skb->len) &&
3130             (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
3131                 return 0;
3132
3133         if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
3134                 return 0;
3135
3136         while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
3137                 if (to == MAX_SKB_FRAGS)
3138                         return 0;
3139
3140                 fragfrom = &skb_shinfo(skb)->frags[from];
3141                 fragto = &skb_shinfo(tgt)->frags[to];
3142
3143                 if (todo >= skb_frag_size(fragfrom)) {
3144                         *fragto = *fragfrom;
3145                         todo -= skb_frag_size(fragfrom);
3146                         from++;
3147                         to++;
3148
3149                 } else {
3150                         __skb_frag_ref(fragfrom);
3151                         fragto->page = fragfrom->page;
3152                         fragto->page_offset = fragfrom->page_offset;
3153                         skb_frag_size_set(fragto, todo);
3154
3155                         fragfrom->page_offset += todo;
3156                         skb_frag_size_sub(fragfrom, todo);
3157                         todo = 0;
3158
3159                         to++;
3160                         break;
3161                 }
3162         }
3163
3164         /* Ready to "commit" this state change to tgt */
3165         skb_shinfo(tgt)->nr_frags = to;
3166
3167         if (merge >= 0) {
3168                 fragfrom = &skb_shinfo(skb)->frags[0];
3169                 fragto = &skb_shinfo(tgt)->frags[merge];
3170
3171                 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
3172                 __skb_frag_unref(fragfrom);
3173         }
3174
3175         /* Reposition in the original skb */
3176         to = 0;
3177         while (from < skb_shinfo(skb)->nr_frags)
3178                 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
3179         skb_shinfo(skb)->nr_frags = to;
3180
3181         BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
3182
3183 onlymerged:
3184         /* Most likely the tgt won't ever need its checksum anymore, skb on
3185          * the other hand might need it if it needs to be resent
3186          */
3187         tgt->ip_summed = CHECKSUM_PARTIAL;
3188         skb->ip_summed = CHECKSUM_PARTIAL;
3189
3190         /* Yak, is it really working this way? Some helper please? */
3191         skb->len -= shiftlen;
3192         skb->data_len -= shiftlen;
3193         skb->truesize -= shiftlen;
3194         tgt->len += shiftlen;
3195         tgt->data_len += shiftlen;
3196         tgt->truesize += shiftlen;
3197
3198         return shiftlen;
3199 }
3200
3201 /**
3202  * skb_prepare_seq_read - Prepare a sequential read of skb data
3203  * @skb: the buffer to read
3204  * @from: lower offset of data to be read
3205  * @to: upper offset of data to be read
3206  * @st: state variable
3207  *
3208  * Initializes the specified state variable. Must be called before
3209  * invoking skb_seq_read() for the first time.
3210  */
3211 void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
3212                           unsigned int to, struct skb_seq_state *st)
3213 {
3214         st->lower_offset = from;
3215         st->upper_offset = to;
3216         st->root_skb = st->cur_skb = skb;
3217         st->frag_idx = st->stepped_offset = 0;
3218         st->frag_data = NULL;
3219 }
3220 EXPORT_SYMBOL(skb_prepare_seq_read);
3221
3222 /**
3223  * skb_seq_read - Sequentially read skb data
3224  * @consumed: number of bytes consumed by the caller so far
3225  * @data: destination pointer for data to be returned
3226  * @st: state variable
3227  *
3228  * Reads a block of skb data at @consumed relative to the
3229  * lower offset specified to skb_prepare_seq_read(). Assigns
3230  * the head of the data block to @data and returns the length
3231  * of the block or 0 if the end of the skb data or the upper
3232  * offset has been reached.
3233  *
3234  * The caller is not required to consume all of the data
3235  * returned, i.e. @consumed is typically set to the number
3236  * of bytes already consumed and the next call to
3237  * skb_seq_read() will return the remaining part of the block.
3238  *
3239  * Note 1: The size of each block of data returned can be arbitrary,
3240  *       this limitation is the cost for zerocopy sequential
3241  *       reads of potentially non linear data.
3242  *
3243  * Note 2: Fragment lists within fragments are not implemented
3244  *       at the moment, state->root_skb could be replaced with
3245  *       a stack for this purpose.
3246  */
3247 unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
3248                           struct skb_seq_state *st)
3249 {
3250         unsigned int block_limit, abs_offset = consumed + st->lower_offset;
3251         skb_frag_t *frag;
3252
3253         if (unlikely(abs_offset >= st->upper_offset)) {
3254                 if (st->frag_data) {
3255                         kunmap_atomic(st->frag_data);
3256                         st->frag_data = NULL;
3257                 }
3258                 return 0;
3259         }
3260
3261 next_skb:
3262         block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
3263
3264         if (abs_offset < block_limit && !st->frag_data) {
3265                 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
3266                 return block_limit - abs_offset;
3267         }
3268
3269         if (st->frag_idx == 0 && !st->frag_data)
3270                 st->stepped_offset += skb_headlen(st->cur_skb);
3271
3272         while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
3273                 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
3274                 block_limit = skb_frag_size(frag) + st->stepped_offset;
3275
3276                 if (abs_offset < block_limit) {
3277                         if (!st->frag_data)
3278                                 st->frag_data = kmap_atomic(skb_frag_page(frag));
3279
3280                         *data = (u8 *) st->frag_data + frag->page_offset +
3281                                 (abs_offset - st->stepped_offset);
3282
3283                         return block_limit - abs_offset;
3284                 }
3285
3286                 if (st->frag_data) {
3287                         kunmap_atomic(st->frag_data);
3288                         st->frag_data = NULL;
3289                 }
3290
3291                 st->frag_idx++;
3292                 st->stepped_offset += skb_frag_size(frag);
3293         }
3294
3295         if (st->frag_data) {
3296                 kunmap_atomic(st->frag_data);
3297                 st->frag_data = NULL;
3298         }
3299
3300         if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
3301                 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
3302                 st->frag_idx = 0;
3303                 goto next_skb;
3304         } else if (st->cur_skb->next) {
3305                 st->cur_skb = st->cur_skb->next;
3306                 st->frag_idx = 0;
3307                 goto next_skb;
3308         }
3309
3310         return 0;
3311 }
3312 EXPORT_SYMBOL(skb_seq_read);
3313
3314 /**
3315  * skb_abort_seq_read - Abort a sequential read of skb data
3316  * @st: state variable
3317  *
3318  * Must be called if skb_seq_read() was not called until it
3319  * returned 0.
3320  */
3321 void skb_abort_seq_read(struct skb_seq_state *st)
3322 {
3323         if (st->frag_data)
3324                 kunmap_atomic(st->frag_data);
3325 }
3326 EXPORT_SYMBOL(skb_abort_seq_read);
3327
3328 #define TS_SKB_CB(state)        ((struct skb_seq_state *) &((state)->cb))
3329
3330 static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
3331                                           struct ts_config *conf,
3332                                           struct ts_state *state)
3333 {
3334         return skb_seq_read(offset, text, TS_SKB_CB(state));
3335 }
3336
3337 static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
3338 {
3339         skb_abort_seq_read(TS_SKB_CB(state));
3340 }
3341
3342 /**
3343  * skb_find_text - Find a text pattern in skb data
3344  * @skb: the buffer to look in
3345  * @from: search offset
3346  * @to: search limit
3347  * @config: textsearch configuration
3348  *
3349  * Finds a pattern in the skb data according to the specified
3350  * textsearch configuration. Use textsearch_next() to retrieve
3351  * subsequent occurrences of the pattern. Returns the offset
3352  * to the first occurrence or UINT_MAX if no match was found.
3353  */
3354 unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
3355                            unsigned int to, struct ts_config *config)
3356 {
3357         struct ts_state state;
3358         unsigned int ret;
3359
3360         config->get_next_block = skb_ts_get_next_block;
3361         config->finish = skb_ts_finish;
3362
3363         skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
3364
3365         ret = textsearch_find(config, &state);
3366         return (ret <= to - from ? ret : UINT_MAX);
3367 }
3368 EXPORT_SYMBOL(skb_find_text);
3369
3370 /**
3371  * skb_append_datato_frags - append the user data to a skb
3372  * @sk: sock  structure
3373  * @skb: skb structure to be appended with user data.
3374  * @getfrag: call back function to be used for getting the user data
3375  * @from: pointer to user message iov
3376  * @length: length of the iov message
3377  *
3378  * Description: This procedure append the user data in the fragment part
3379  * of the skb if any page alloc fails user this procedure returns  -ENOMEM
3380  */
3381 int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
3382                         int (*getfrag)(void *from, char *to, int offset,
3383                                         int len, int odd, struct sk_buff *skb),
3384                         void *from, int length)
3385 {
3386         int frg_cnt = skb_shinfo(skb)->nr_frags;
3387         int copy;
3388         int offset = 0;
3389         int ret;
3390         struct page_frag *pfrag = &current->task_frag;
3391
3392         do {
3393                 /* Return error if we don't have space for new frag */
3394                 if (frg_cnt >= MAX_SKB_FRAGS)
3395                         return -EMSGSIZE;
3396
3397                 if (!sk_page_frag_refill(sk, pfrag))
3398                         return -ENOMEM;
3399
3400                 /* copy the user data to page */
3401                 copy = min_t(int, length, pfrag->size - pfrag->offset);
3402
3403                 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
3404                               offset, copy, 0, skb);
3405                 if (ret < 0)
3406                         return -EFAULT;
3407
3408                 /* copy was successful so update the size parameters */
3409                 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
3410                                    copy);
3411                 frg_cnt++;
3412                 pfrag->offset += copy;
3413                 get_page(pfrag->page);
3414
3415                 skb->truesize += copy;
3416                 refcount_add(copy, &sk->sk_wmem_alloc);
3417                 skb->len += copy;
3418                 skb->data_len += copy;
3419                 offset += copy;
3420                 length -= copy;
3421
3422         } while (length > 0);
3423
3424         return 0;
3425 }
3426 EXPORT_SYMBOL(skb_append_datato_frags);
3427
3428 int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3429                          int offset, size_t size)
3430 {
3431         int i = skb_shinfo(skb)->nr_frags;
3432
3433         if (skb_can_coalesce(skb, i, page, offset)) {
3434                 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3435         } else if (i < MAX_SKB_FRAGS) {
3436                 get_page(page);
3437                 skb_fill_page_desc(skb, i, page, offset, size);
3438         } else {
3439                 return -EMSGSIZE;
3440         }
3441
3442         return 0;
3443 }
3444 EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3445
3446 /**
3447  *      skb_pull_rcsum - pull skb and update receive checksum
3448  *      @skb: buffer to update
3449  *      @len: length of data pulled
3450  *
3451  *      This function performs an skb_pull on the packet and updates
3452  *      the CHECKSUM_COMPLETE checksum.  It should be used on
3453  *      receive path processing instead of skb_pull unless you know
3454  *      that the checksum difference is zero (e.g., a valid IP header)
3455  *      or you are setting ip_summed to CHECKSUM_NONE.
3456  */
3457 void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3458 {
3459         unsigned char *data = skb->data;
3460
3461         BUG_ON(len > skb->len);
3462         __skb_pull(skb, len);
3463         skb_postpull_rcsum(skb, data, len);
3464         return skb->data;
3465 }
3466 EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3467
3468 /**
3469  *      skb_segment - Perform protocol segmentation on skb.
3470  *      @head_skb: buffer to segment
3471  *      @features: features for the output path (see dev->features)
3472  *
3473  *      This function performs segmentation on the given skb.  It returns
3474  *      a pointer to the first in a list of new skbs for the segments.
3475  *      In case of error it returns ERR_PTR(err).
3476  */
3477 struct sk_buff *skb_segment(struct sk_buff *head_skb,
3478                             netdev_features_t features)
3479 {
3480         struct sk_buff *segs = NULL;
3481         struct sk_buff *tail = NULL;
3482         struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
3483         skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3484         unsigned int mss = skb_shinfo(head_skb)->gso_size;
3485         unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
3486         struct sk_buff *frag_skb = head_skb;
3487         unsigned int offset = doffset;
3488         unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
3489         unsigned int partial_segs = 0;
3490         unsigned int headroom;
3491         unsigned int len = head_skb->len;
3492         __be16 proto;
3493         bool csum, sg;
3494         int nfrags = skb_shinfo(head_skb)->nr_frags;
3495         int err = -ENOMEM;
3496         int i = 0;
3497         int pos;
3498         int dummy;
3499
3500         __skb_push(head_skb, doffset);
3501         proto = skb_network_protocol(head_skb, &dummy);
3502         if (unlikely(!proto))
3503                 return ERR_PTR(-EINVAL);
3504
3505         sg = !!(features & NETIF_F_SG);
3506         csum = !!can_checksum_protocol(features, proto);
3507
3508         if (sg && csum && (mss != GSO_BY_FRAGS))  {
3509                 if (!(features & NETIF_F_GSO_PARTIAL)) {
3510                         struct sk_buff *iter;
3511                         unsigned int frag_len;
3512
3513                         if (!list_skb ||
3514                             !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
3515                                 goto normal;
3516
3517                         /* If we get here then all the required
3518                          * GSO features except frag_list are supported.
3519                          * Try to split the SKB to multiple GSO SKBs
3520                          * with no frag_list.
3521                          * Currently we can do that only when the buffers don't
3522                          * have a linear part and all the buffers except
3523                          * the last are of the same length.
3524                          */
3525                         frag_len = list_skb->len;
3526                         skb_walk_frags(head_skb, iter) {
3527                                 if (frag_len != iter->len && iter->next)
3528                                         goto normal;
3529                                 if (skb_headlen(iter) && !iter->head_frag)
3530                                         goto normal;
3531
3532                                 len -= iter->len;
3533                         }
3534
3535                         if (len != frag_len)
3536                                 goto normal;
3537                 }
3538
3539                 /* GSO partial only requires that we trim off any excess that
3540                  * doesn't fit into an MSS sized block, so take care of that
3541                  * now.
3542                  */
3543                 partial_segs = len / mss;
3544                 if (partial_segs > 1)
3545                         mss *= partial_segs;
3546                 else
3547                         partial_segs = 0;
3548         }
3549
3550 normal:
3551         headroom = skb_headroom(head_skb);
3552         pos = skb_headlen(head_skb);
3553
3554         do {
3555                 struct sk_buff *nskb;
3556                 skb_frag_t *nskb_frag;
3557                 int hsize;
3558                 int size;
3559
3560                 if (unlikely(mss == GSO_BY_FRAGS)) {
3561                         len = list_skb->len;
3562                 } else {
3563                         len = head_skb->len - offset;
3564                         if (len > mss)
3565                                 len = mss;
3566                 }
3567
3568                 hsize = skb_headlen(head_skb) - offset;
3569                 if (hsize < 0)
3570                         hsize = 0;
3571                 if (hsize > len || !sg)
3572                         hsize = len;
3573
3574                 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3575                     (skb_headlen(list_skb) == len || sg)) {
3576                         BUG_ON(skb_headlen(list_skb) > len);
3577
3578                         i = 0;
3579                         nfrags = skb_shinfo(list_skb)->nr_frags;
3580                         frag = skb_shinfo(list_skb)->frags;
3581                         frag_skb = list_skb;
3582                         pos += skb_headlen(list_skb);
3583
3584                         while (pos < offset + len) {
3585                                 BUG_ON(i >= nfrags);
3586
3587                                 size = skb_frag_size(frag);
3588                                 if (pos + size > offset + len)
3589                                         break;
3590
3591                                 i++;
3592                                 pos += size;
3593                                 frag++;
3594                         }
3595
3596                         nskb = skb_clone(list_skb, GFP_ATOMIC);
3597                         list_skb = list_skb->next;
3598
3599                         if (unlikely(!nskb))
3600                                 goto err;
3601
3602                         if (unlikely(pskb_trim(nskb, len))) {
3603                                 kfree_skb(nskb);
3604                                 goto err;
3605                         }
3606
3607                         hsize = skb_end_offset(nskb);
3608                         if (skb_cow_head(nskb, doffset + headroom)) {
3609                                 kfree_skb(nskb);
3610                                 goto err;
3611                         }
3612
3613                         nskb->truesize += skb_end_offset(nskb) - hsize;
3614                         skb_release_head_state(nskb);
3615                         __skb_push(nskb, doffset);
3616                 } else {
3617                         nskb = __alloc_skb(hsize + doffset + headroom,
3618                                            GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
3619                                            NUMA_NO_NODE);
3620
3621                         if (unlikely(!nskb))
3622                                 goto err;
3623
3624                         skb_reserve(nskb, headroom);
3625                         __skb_put(nskb, doffset);
3626                 }
3627
3628                 if (segs)
3629                         tail->next = nskb;
3630                 else
3631                         segs = nskb;
3632                 tail = nskb;
3633
3634                 __copy_skb_header(nskb, head_skb);
3635
3636                 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
3637                 skb_reset_mac_len(nskb);
3638
3639                 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
3640                                                  nskb->data - tnl_hlen,
3641                                                  doffset + tnl_hlen);
3642
3643                 if (nskb->len == len + doffset)
3644                         goto perform_csum_check;
3645
3646                 if (!sg) {
3647                         if (!nskb->remcsum_offload)
3648                                 nskb->ip_summed = CHECKSUM_NONE;
3649                         SKB_GSO_CB(nskb)->csum =
3650                                 skb_copy_and_csum_bits(head_skb, offset,
3651                                                        skb_put(nskb, len),
3652                                                        len, 0);
3653                         SKB_GSO_CB(nskb)->csum_start =
3654                                 skb_headroom(nskb) + doffset;
3655                         continue;
3656                 }
3657
3658                 nskb_frag = skb_shinfo(nskb)->frags;
3659
3660                 skb_copy_from_linear_data_offset(head_skb, offset,
3661                                                  skb_put(nskb, hsize), hsize);
3662
3663                 skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
3664                                               SKBTX_SHARED_FRAG;
3665                 if (skb_zerocopy_clone(nskb, head_skb, GFP_ATOMIC))
3666                         goto err;
3667
3668                 while (pos < offset + len) {
3669                         if (i >= nfrags) {
3670                                 BUG_ON(skb_headlen(list_skb));
3671
3672                                 i = 0;
3673                                 nfrags = skb_shinfo(list_skb)->nr_frags;
3674                                 frag = skb_shinfo(list_skb)->frags;
3675                                 frag_skb = list_skb;
3676
3677                                 BUG_ON(!nfrags);
3678
3679                                 list_skb = list_skb->next;
3680                         }
3681
3682                         if (unlikely(skb_shinfo(nskb)->nr_frags >=
3683                                      MAX_SKB_FRAGS)) {
3684                                 net_warn_ratelimited(
3685                                         "skb_segment: too many frags: %u %u\n",
3686                                         pos, mss);
3687                                 goto err;
3688                         }
3689
3690                         if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
3691                                 goto err;
3692
3693                         *nskb_frag = *frag;
3694                         __skb_frag_ref(nskb_frag);
3695                         size = skb_frag_size(nskb_frag);
3696
3697                         if (pos < offset) {
3698                                 nskb_frag->page_offset += offset - pos;
3699                                 skb_frag_size_sub(nskb_frag, offset - pos);
3700                         }
3701
3702                         skb_shinfo(nskb)->nr_frags++;
3703
3704                         if (pos + size <= offset + len) {
3705                                 i++;
3706                                 frag++;
3707                                 pos += size;
3708                         } else {
3709                                 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
3710                                 goto skip_fraglist;
3711                         }
3712
3713                         nskb_frag++;
3714                 }
3715
3716 skip_fraglist:
3717                 nskb->data_len = len - hsize;
3718                 nskb->len += nskb->data_len;
3719                 nskb->truesize += nskb->data_len;
3720
3721 perform_csum_check:
3722                 if (!csum) {
3723                         if (skb_has_shared_frag(nskb)) {
3724                                 err = __skb_linearize(nskb);
3725                                 if (err)
3726                                         goto err;
3727                         }
3728                         if (!nskb->remcsum_offload)
3729                                 nskb->ip_summed = CHECKSUM_NONE;
3730                         SKB_GSO_CB(nskb)->csum =
3731                                 skb_checksum(nskb, doffset,
3732                                              nskb->len - doffset, 0);
3733                         SKB_GSO_CB(nskb)->csum_start =
3734                                 skb_headroom(nskb) + doffset;
3735                 }
3736         } while ((offset += len) < head_skb->len);
3737
3738         /* Some callers want to get the end of the list.
3739          * Put it in segs->prev to avoid walking the list.
3740          * (see validate_xmit_skb_list() for example)
3741          */
3742         segs->prev = tail;
3743
3744         if (partial_segs) {
3745                 struct sk_buff *iter;
3746                 int type = skb_shinfo(head_skb)->gso_type;
3747                 unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
3748
3749                 /* Update type to add partial and then remove dodgy if set */
3750                 type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
3751                 type &= ~SKB_GSO_DODGY;
3752
3753                 /* Update GSO info and prepare to start updating headers on
3754                  * our way back down the stack of protocols.
3755                  */
3756                 for (iter = segs; iter; iter = iter->next) {
3757                         skb_shinfo(iter)->gso_size = gso_size;
3758                         skb_shinfo(iter)->gso_segs = partial_segs;
3759                         skb_shinfo(iter)->gso_type = type;
3760                         SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
3761                 }
3762
3763                 if (tail->len - doffset <= gso_size)
3764                         skb_shinfo(tail)->gso_size = 0;
3765                 else if (tail != segs)
3766                         skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
3767         }
3768
3769         /* Following permits correct backpressure, for protocols
3770          * using skb_set_owner_w().
3771          * Idea is to tranfert ownership from head_skb to last segment.
3772          */
3773         if (head_skb->destructor == sock_wfree) {
3774                 swap(tail->truesize, head_skb->truesize);
3775                 swap(tail->destructor, head_skb->destructor);
3776                 swap(tail->sk, head_skb->sk);
3777         }
3778         return segs;
3779
3780 err:
3781         kfree_skb_list(segs);
3782         return ERR_PTR(err);
3783 }
3784 EXPORT_SYMBOL_GPL(skb_segment);
3785
3786 int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
3787 {
3788         struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
3789         unsigned int offset = skb_gro_offset(skb);
3790         unsigned int headlen = skb_headlen(skb);
3791         unsigned int len = skb_gro_len(skb);
3792         struct sk_buff *lp, *p = *head;
3793         unsigned int delta_truesize;
3794
3795         if (unlikely(p->len + len >= 65536))
3796                 return -E2BIG;
3797
3798         lp = NAPI_GRO_CB(p)->last;
3799         pinfo = skb_shinfo(lp);
3800
3801         if (headlen <= offset) {
3802                 skb_frag_t *frag;
3803                 skb_frag_t *frag2;
3804                 int i = skbinfo->nr_frags;
3805                 int nr_frags = pinfo->nr_frags + i;
3806
3807                 if (nr_frags > MAX_SKB_FRAGS)
3808                         goto merge;
3809
3810                 offset -= headlen;
3811                 pinfo->nr_frags = nr_frags;
3812                 skbinfo->nr_frags = 0;
3813
3814                 frag = pinfo->frags + nr_frags;
3815                 frag2 = skbinfo->frags + i;
3816                 do {
3817                         *--frag = *--frag2;
3818                 } while (--i);
3819
3820                 frag->page_offset += offset;
3821                 skb_frag_size_sub(frag, offset);
3822
3823                 /* all fragments truesize : remove (head size + sk_buff) */
3824                 delta_truesize = skb->truesize -
3825                                  SKB_TRUESIZE(skb_end_offset(skb));
3826
3827                 skb->truesize -= skb->data_len;
3828                 skb->len -= skb->data_len;
3829                 skb->data_len = 0;
3830
3831                 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
3832                 goto done;
3833         } else if (skb->head_frag) {
3834                 int nr_frags = pinfo->nr_frags;
3835                 skb_frag_t *frag = pinfo->frags + nr_frags;
3836                 struct page *page = virt_to_head_page(skb->head);
3837                 unsigned int first_size = headlen - offset;
3838                 unsigned int first_offset;
3839
3840                 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
3841                         goto merge;
3842
3843                 first_offset = skb->data -
3844                                (unsigned char *)page_address(page) +
3845                                offset;
3846
3847                 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3848
3849                 frag->page.p      = page;
3850                 frag->page_offset = first_offset;
3851                 skb_frag_size_set(frag, first_size);
3852
3853                 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3854                 /* We dont need to clear skbinfo->nr_frags here */
3855
3856                 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3857                 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3858                 goto done;
3859         }
3860
3861 merge:
3862         delta_truesize = skb->truesize;
3863         if (offset > headlen) {
3864                 unsigned int eat = offset - headlen;
3865
3866                 skbinfo->frags[0].page_offset += eat;
3867                 skb_frag_size_sub(&skbinfo->frags[0], eat);
3868                 skb->data_len -= eat;
3869                 skb->len -= eat;
3870                 offset = headlen;
3871         }
3872
3873         __skb_pull(skb, offset);
3874
3875         if (NAPI_GRO_CB(p)->last == p)
3876                 skb_shinfo(p)->frag_list = skb;
3877         else
3878                 NAPI_GRO_CB(p)->last->next = skb;
3879         NAPI_GRO_CB(p)->last = skb;
3880         __skb_header_release(skb);
3881         lp = p;
3882
3883 done:
3884         NAPI_GRO_CB(p)->count++;
3885         p->data_len += len;
3886         p->truesize += delta_truesize;
3887         p->len += len;
3888         if (lp != p) {
3889                 lp->data_len += len;
3890                 lp->truesize += delta_truesize;
3891                 lp->len += len;
3892         }
3893         NAPI_GRO_CB(skb)->same_flow = 1;
3894         return 0;
3895 }
3896 EXPORT_SYMBOL_GPL(skb_gro_receive);
3897
3898 void __init skb_init(void)
3899 {
3900         skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3901                                               sizeof(struct sk_buff),
3902                                               0,
3903                                               SLAB_HWCACHE_ALIGN|SLAB_PANIC,
3904                                               NULL);
3905         skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3906                                                 sizeof(struct sk_buff_fclones),
3907                                                 0,
3908                                                 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
3909                                                 NULL);
3910 }
3911
3912 static int
3913 __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
3914                unsigned int recursion_level)
3915 {
3916         int start = skb_headlen(skb);
3917         int i, copy = start - offset;
3918         struct sk_buff *frag_iter;
3919         int elt = 0;
3920
3921         if (unlikely(recursion_level >= 24))
3922                 return -EMSGSIZE;
3923
3924         if (copy > 0) {
3925                 if (copy > len)
3926                         copy = len;
3927                 sg_set_buf(sg, skb->data + offset, copy);
3928                 elt++;
3929                 if ((len -= copy) == 0)
3930                         return elt;
3931                 offset += copy;
3932         }
3933
3934         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3935                 int end;
3936
3937                 WARN_ON(start > offset + len);
3938
3939                 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
3940                 if ((copy = end - offset) > 0) {
3941                         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3942                         if (unlikely(elt && sg_is_last(&sg[elt - 1])))
3943                                 return -EMSGSIZE;
3944
3945                         if (copy > len)
3946                                 copy = len;
3947                         sg_set_page(&sg[elt], skb_frag_page(frag), copy,
3948                                         frag->page_offset+offset-start);
3949                         elt++;
3950                         if (!(len -= copy))
3951                                 return elt;
3952                         offset += copy;
3953                 }
3954                 start = end;
3955         }
3956
3957         skb_walk_frags(skb, frag_iter) {
3958                 int end, ret;
3959
3960                 WARN_ON(start > offset + len);
3961
3962                 end = start + frag_iter->len;
3963                 if ((copy = end - offset) > 0) {
3964                         if (unlikely(elt && sg_is_last(&sg[elt - 1])))
3965                                 return -EMSGSIZE;
3966
3967                         if (copy > len)
3968                                 copy = len;
3969                         ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3970                                               copy, recursion_level + 1);
3971                         if (unlikely(ret < 0))
3972                                 return ret;
3973                         elt += ret;
3974                         if ((len -= copy) == 0)
3975                                 return elt;
3976                         offset += copy;
3977                 }
3978                 start = end;
3979         }
3980         BUG_ON(len);
3981         return elt;
3982 }
3983
3984 /**
3985  *      skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3986  *      @skb: Socket buffer containing the buffers to be mapped
3987  *      @sg: The scatter-gather list to map into
3988  *      @offset: The offset into the buffer's contents to start mapping
3989  *      @len: Length of buffer space to be mapped
3990  *
3991  *      Fill the specified scatter-gather list with mappings/pointers into a
3992  *      region of the buffer space attached to a socket buffer. Returns either
3993  *      the number of scatterlist items used, or -EMSGSIZE if the contents
3994  *      could not fit.
3995  */
3996 int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3997 {
3998         int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
3999
4000         if (nsg <= 0)
4001                 return nsg;
4002
4003         sg_mark_end(&sg[nsg - 1]);
4004
4005         return nsg;
4006 }
4007 EXPORT_SYMBOL_GPL(skb_to_sgvec);
4008
4009 /* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
4010  * sglist without mark the sg which contain last skb data as the end.
4011  * So the caller can mannipulate sg list as will when padding new data after
4012  * the first call without calling sg_unmark_end to expend sg list.
4013  *
4014  * Scenario to use skb_to_sgvec_nomark:
4015  * 1. sg_init_table
4016  * 2. skb_to_sgvec_nomark(payload1)
4017  * 3. skb_to_sgvec_nomark(payload2)
4018  *
4019  * This is equivalent to:
4020  * 1. sg_init_table
4021  * 2. skb_to_sgvec(payload1)
4022  * 3. sg_unmark_end
4023  * 4. skb_to_sgvec(payload2)
4024  *
4025  * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
4026  * is more preferable.
4027  */
4028 int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
4029                         int offset, int len)
4030 {
4031         return __skb_to_sgvec(skb, sg, offset, len, 0);
4032 }
4033 EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
4034
4035
4036
4037 /**
4038  *      skb_cow_data - Check that a socket buffer's data buffers are writable
4039  *      @skb: The socket buffer to check.
4040  *      @tailbits: Amount of trailing space to be added
4041  *      @trailer: Returned pointer to the skb where the @tailbits space begins
4042  *
4043  *      Make sure that the data buffers attached to a socket buffer are
4044  *      writable. If they are not, private copies are made of the data buffers
4045  *      and the socket buffer is set to use these instead.
4046  *
4047  *      If @tailbits is given, make sure that there is space to write @tailbits
4048  *      bytes of data beyond current end of socket buffer.  @trailer will be
4049  *      set to point to the skb in which this space begins.
4050  *
4051  *      The number of scatterlist elements required to completely map the
4052  *      COW'd and extended socket buffer will be returned.
4053  */
4054 int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
4055 {
4056         int copyflag;
4057         int elt;
4058         struct sk_buff *skb1, **skb_p;
4059
4060         /* If skb is cloned or its head is paged, reallocate
4061          * head pulling out all the pages (pages are considered not writable
4062          * at the moment even if they are anonymous).
4063          */
4064         if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
4065             __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
4066                 return -ENOMEM;
4067
4068         /* Easy case. Most of packets will go this way. */
4069         if (!skb_has_frag_list(skb)) {
4070                 /* A little of trouble, not enough of space for trailer.
4071                  * This should not happen, when stack is tuned to generate
4072                  * good frames. OK, on miss we reallocate and reserve even more
4073                  * space, 128 bytes is fair. */
4074
4075                 if (skb_tailroom(skb) < tailbits &&
4076                     pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
4077                         return -ENOMEM;
4078
4079                 /* Voila! */
4080                 *trailer = skb;
4081                 return 1;
4082         }
4083
4084         /* Misery. We are in troubles, going to mincer fragments... */
4085
4086         elt = 1;
4087         skb_p = &skb_shinfo(skb)->frag_list;
4088         copyflag = 0;
4089
4090         while ((skb1 = *skb_p) != NULL) {
4091                 int ntail = 0;
4092
4093                 /* The fragment is partially pulled by someone,
4094                  * this can happen on input. Copy it and everything
4095                  * after it. */
4096
4097                 if (skb_shared(skb1))
4098                         copyflag = 1;
4099
4100                 /* If the skb is the last, worry about trailer. */
4101
4102                 if (skb1->next == NULL && tailbits) {
4103                         if (skb_shinfo(skb1)->nr_frags ||
4104                             skb_has_frag_list(skb1) ||
4105                             skb_tailroom(skb1) < tailbits)
4106                                 ntail = tailbits + 128;
4107                 }
4108
4109                 if (copyflag ||
4110                     skb_cloned(skb1) ||
4111                     ntail ||
4112                     skb_shinfo(skb1)->nr_frags ||
4113                     skb_has_frag_list(skb1)) {
4114                         struct sk_buff *skb2;
4115
4116                         /* Fuck, we are miserable poor guys... */
4117                         if (ntail == 0)
4118                                 skb2 = skb_copy(skb1, GFP_ATOMIC);
4119                         else
4120                                 skb2 = skb_copy_expand(skb1,
4121                                                        skb_headroom(skb1),
4122                                                        ntail,
4123                                                        GFP_ATOMIC);
4124                         if (unlikely(skb2 == NULL))
4125                                 return -ENOMEM;
4126
4127                         if (skb1->sk)
4128                                 skb_set_owner_w(skb2, skb1->sk);
4129
4130                         /* Looking around. Are we still alive?
4131                          * OK, link new skb, drop old one */
4132
4133                         skb2->next = skb1->next;
4134                         *skb_p = skb2;
4135                         kfree_skb(skb1);
4136                         skb1 = skb2;
4137                 }
4138                 elt++;
4139                 *trailer = skb1;
4140                 skb_p = &skb1->next;
4141         }
4142
4143         return elt;
4144 }
4145 EXPORT_SYMBOL_GPL(skb_cow_data);
4146
4147 static void sock_rmem_free(struct sk_buff *skb)
4148 {
4149         struct sock *sk = skb->sk;
4150
4151         atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
4152 }
4153
4154 static void skb_set_err_queue(struct sk_buff *skb)
4155 {
4156         /* pkt_type of skbs received on local sockets is never PACKET_OUTGOING.
4157          * So, it is safe to (mis)use it to mark skbs on the error queue.
4158          */
4159         skb->pkt_type = PACKET_OUTGOING;
4160         BUILD_BUG_ON(PACKET_OUTGOING == 0);
4161 }
4162
4163 /*
4164  * Note: We dont mem charge error packets (no sk_forward_alloc changes)
4165  */
4166 int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
4167 {
4168         if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
4169             (unsigned int)sk->sk_rcvbuf)
4170                 return -ENOMEM;
4171
4172         skb_orphan(skb);
4173         skb->sk = sk;
4174         skb->destructor = sock_rmem_free;
4175         atomic_add(skb->truesize, &sk->sk_rmem_alloc);
4176         skb_set_err_queue(skb);
4177
4178         /* before exiting rcu section, make sure dst is refcounted */
4179         skb_dst_force(skb);
4180
4181         skb_queue_tail(&sk->sk_error_queue, skb);
4182         if (!sock_flag(sk, SOCK_DEAD))
4183                 sk->sk_data_ready(sk);
4184         return 0;
4185 }
4186 EXPORT_SYMBOL(sock_queue_err_skb);
4187
4188 static bool is_icmp_err_skb(const struct sk_buff *skb)
4189 {
4190         return skb && (SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
4191                        SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP6);
4192 }
4193
4194 struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
4195 {
4196         struct sk_buff_head *q = &sk->sk_error_queue;
4197         struct sk_buff *skb, *skb_next = NULL;
4198         bool icmp_next = false;
4199         unsigned long flags;
4200
4201         spin_lock_irqsave(&q->lock, flags);
4202         skb = __skb_dequeue(q);
4203         if (skb && (skb_next = skb_peek(q))) {
4204                 icmp_next = is_icmp_err_skb(skb_next);
4205                 if (icmp_next)
4206                         sk->sk_err = SKB_EXT_ERR(skb_next)->ee.ee_origin;
4207         }
4208         spin_unlock_irqrestore(&q->lock, flags);
4209
4210         if (is_icmp_err_skb(skb) && !icmp_next)
4211                 sk->sk_err = 0;
4212
4213         if (skb_next)
4214                 sk->sk_error_report(sk);
4215
4216         return skb;
4217 }
4218 EXPORT_SYMBOL(sock_dequeue_err_skb);
4219
4220 /**
4221  * skb_clone_sk - create clone of skb, and take reference to socket
4222  * @skb: the skb to clone
4223  *
4224  * This function creates a clone of a buffer that holds a reference on
4225  * sk_refcnt.  Buffers created via this function are meant to be
4226  * returned using sock_queue_err_skb, or free via kfree_skb.
4227  *
4228  * When passing buffers allocated with this function to sock_queue_err_skb
4229  * it is necessary to wrap the call with sock_hold/sock_put in order to
4230  * prevent the socket from being released prior to being enqueued on
4231  * the sk_error_queue.
4232  */
4233 struct sk_buff *skb_clone_sk(struct sk_buff *skb)
4234 {
4235         struct sock *sk = skb->sk;
4236         struct sk_buff *clone;
4237
4238         if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
4239                 return NULL;
4240
4241         clone = skb_clone(skb, GFP_ATOMIC);
4242         if (!clone) {
4243                 sock_put(sk);
4244                 return NULL;
4245         }
4246
4247         clone->sk = sk;
4248         clone->destructor = sock_efree;
4249
4250         return clone;
4251 }
4252 EXPORT_SYMBOL(skb_clone_sk);
4253
4254 static void __skb_complete_tx_timestamp(struct sk_buff *skb,
4255                                         struct sock *sk,
4256                                         int tstype,
4257                                         bool opt_stats)
4258 {
4259         struct sock_exterr_skb *serr;
4260         int err;
4261
4262         BUILD_BUG_ON(sizeof(struct sock_exterr_skb) > sizeof(skb->cb));
4263
4264         serr = SKB_EXT_ERR(skb);
4265         memset(serr, 0, sizeof(*serr));
4266         serr->ee.ee_errno = ENOMSG;
4267         serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
4268         serr->ee.ee_info = tstype;
4269         serr->opt_stats = opt_stats;
4270         serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
4271         if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
4272                 serr->ee.ee_data = skb_shinfo(skb)->tskey;
4273                 if (sk->sk_protocol == IPPROTO_TCP &&
4274                     sk->sk_type == SOCK_STREAM)
4275                         serr->ee.ee_data -= sk->sk_tskey;
4276         }
4277
4278         err = sock_queue_err_skb(sk, skb);
4279
4280         if (err)
4281                 kfree_skb(skb);
4282 }
4283
4284 static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
4285 {
4286         bool ret;
4287
4288         if (likely(sysctl_tstamp_allow_data || tsonly))
4289                 return true;
4290
4291         read_lock_bh(&sk->sk_callback_lock);
4292         ret = sk->sk_socket && sk->sk_socket->file &&
4293               file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
4294         read_unlock_bh(&sk->sk_callback_lock);
4295         return ret;
4296 }
4297
4298 void skb_complete_tx_timestamp(struct sk_buff *skb,
4299                                struct skb_shared_hwtstamps *hwtstamps)
4300 {
4301         struct sock *sk = skb->sk;
4302
4303         if (!skb_may_tx_timestamp(sk, false))
4304                 return;
4305
4306         /* Take a reference to prevent skb_orphan() from freeing the socket,
4307          * but only if the socket refcount is not zero.
4308          */
4309         if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4310                 *skb_hwtstamps(skb) = *hwtstamps;
4311                 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND, false);
4312                 sock_put(sk);
4313         }
4314 }
4315 EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
4316
4317 void __skb_tstamp_tx(struct sk_buff *orig_skb,
4318                      struct skb_shared_hwtstamps *hwtstamps,
4319                      struct sock *sk, int tstype)
4320 {
4321         struct sk_buff *skb;
4322         bool tsonly, opt_stats = false;
4323
4324         if (!sk)
4325                 return;
4326
4327         if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) &&
4328             skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS)
4329                 return;
4330
4331         tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
4332         if (!skb_may_tx_timestamp(sk, tsonly))
4333                 return;
4334
4335         if (tsonly) {
4336 #ifdef CONFIG_INET
4337                 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) &&
4338                     sk->sk_protocol == IPPROTO_TCP &&
4339                     sk->sk_type == SOCK_STREAM) {
4340                         skb = tcp_get_timestamping_opt_stats(sk);
4341                         opt_stats = true;
4342                 } else
4343 #endif
4344                         skb = alloc_skb(0, GFP_ATOMIC);
4345         } else {
4346                 skb = skb_clone(orig_skb, GFP_ATOMIC);
4347         }
4348         if (!skb)
4349                 return;
4350
4351         if (tsonly) {
4352                 skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
4353                                              SKBTX_ANY_TSTAMP;
4354                 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
4355         }
4356
4357         if (hwtstamps)
4358                 *skb_hwtstamps(skb) = *hwtstamps;
4359         else
4360                 skb->tstamp = ktime_get_real();
4361
4362         __skb_complete_tx_timestamp(skb, sk, tstype, opt_stats);
4363 }
4364 EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
4365
4366 void skb_tstamp_tx(struct sk_buff *orig_skb,
4367                    struct skb_shared_hwtstamps *hwtstamps)
4368 {
4369         return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
4370                                SCM_TSTAMP_SND);
4371 }
4372 EXPORT_SYMBOL_GPL(skb_tstamp_tx);
4373
4374 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
4375 {
4376         struct sock *sk = skb->sk;
4377         struct sock_exterr_skb *serr;
4378         int err = 1;
4379
4380         skb->wifi_acked_valid = 1;
4381         skb->wifi_acked = acked;
4382
4383         serr = SKB_EXT_ERR(skb);
4384         memset(serr, 0, sizeof(*serr));
4385         serr->ee.ee_errno = ENOMSG;
4386         serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
4387
4388         /* Take a reference to prevent skb_orphan() from freeing the socket,
4389          * but only if the socket refcount is not zero.
4390          */
4391         if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4392                 err = sock_queue_err_skb(sk, skb);
4393                 sock_put(sk);
4394         }
4395         if (err)
4396                 kfree_skb(skb);
4397 }
4398 EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
4399
4400 /**
4401  * skb_partial_csum_set - set up and verify partial csum values for packet
4402  * @skb: the skb to set
4403  * @start: the number of bytes after skb->data to start checksumming.
4404  * @off: the offset from start to place the checksum.
4405  *
4406  * For untrusted partially-checksummed packets, we need to make sure the values
4407  * for skb->csum_start and skb->csum_offset are valid so we don't oops.
4408  *
4409  * This function checks and sets those values and skb->ip_summed: if this
4410  * returns false you should drop the packet.
4411  */
4412 bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
4413 {
4414         if (unlikely(start > skb_headlen(skb)) ||
4415             unlikely((int)start + off > skb_headlen(skb) - 2)) {
4416                 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
4417                                      start, off, skb_headlen(skb));
4418                 return false;
4419         }
4420         skb->ip_summed = CHECKSUM_PARTIAL;
4421         skb->csum_start = skb_headroom(skb) + start;
4422         skb->csum_offset = off;
4423         skb_set_transport_header(skb, start);
4424         return true;
4425 }
4426 EXPORT_SYMBOL_GPL(skb_partial_csum_set);
4427
4428 static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
4429                                unsigned int max)
4430 {
4431         if (skb_headlen(skb) >= len)
4432                 return 0;
4433
4434         /* If we need to pullup then pullup to the max, so we
4435          * won't need to do it again.
4436          */
4437         if (max > skb->len)
4438                 max = skb->len;
4439
4440         if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
4441                 return -ENOMEM;
4442
4443         if (skb_headlen(skb) < len)
4444                 return -EPROTO;
4445
4446         return 0;
4447 }
4448
4449 #define MAX_TCP_HDR_LEN (15 * 4)
4450
4451 static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
4452                                       typeof(IPPROTO_IP) proto,
4453                                       unsigned int off)
4454 {
4455         switch (proto) {
4456                 int err;
4457
4458         case IPPROTO_TCP:
4459                 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
4460                                           off + MAX_TCP_HDR_LEN);
4461                 if (!err && !skb_partial_csum_set(skb, off,
4462                                                   offsetof(struct tcphdr,
4463                                                            check)))
4464                         err = -EPROTO;
4465                 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4466
4467         case IPPROTO_UDP:
4468                 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4469                                           off + sizeof(struct udphdr));
4470                 if (!err && !skb_partial_csum_set(skb, off,
4471                                                   offsetof(struct udphdr,
4472                                                            check)))
4473                         err = -EPROTO;
4474                 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4475         }
4476
4477         return ERR_PTR(-EPROTO);
4478 }
4479
4480 /* This value should be large enough to cover a tagged ethernet header plus
4481  * maximally sized IP and TCP or UDP headers.
4482  */
4483 #define MAX_IP_HDR_LEN 128
4484
4485 static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
4486 {
4487         unsigned int off;
4488         bool fragment;
4489         __sum16 *csum;
4490         int err;
4491
4492         fragment = false;
4493
4494         err = skb_maybe_pull_tail(skb,
4495                                   sizeof(struct iphdr),
4496                                   MAX_IP_HDR_LEN);
4497         if (err < 0)
4498                 goto out;
4499
4500         if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
4501                 fragment = true;
4502
4503         off = ip_hdrlen(skb);
4504
4505         err = -EPROTO;
4506
4507         if (fragment)
4508                 goto out;
4509
4510         csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4511         if (IS_ERR(csum))
4512                 return PTR_ERR(csum);
4513
4514         if (recalculate)
4515                 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4516                                            ip_hdr(skb)->daddr,
4517                                            skb->len - off,
4518                                            ip_hdr(skb)->protocol, 0);
4519         err = 0;
4520
4521 out:
4522         return err;
4523 }
4524
4525 /* This value should be large enough to cover a tagged ethernet header plus
4526  * an IPv6 header, all options, and a maximal TCP or UDP header.
4527  */
4528 #define MAX_IPV6_HDR_LEN 256
4529
4530 #define OPT_HDR(type, skb, off) \
4531         (type *)(skb_network_header(skb) + (off))
4532
4533 static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4534 {
4535         int err;
4536         u8 nexthdr;
4537         unsigned int off;
4538         unsigned int len;
4539         bool fragment;
4540         bool done;
4541         __sum16 *csum;
4542
4543         fragment = false;
4544         done = false;
4545
4546         off = sizeof(struct ipv6hdr);
4547
4548         err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4549         if (err < 0)
4550                 goto out;
4551
4552         nexthdr = ipv6_hdr(skb)->nexthdr;
4553
4554         len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4555         while (off <= len && !done) {
4556                 switch (nexthdr) {
4557                 case IPPROTO_DSTOPTS:
4558                 case IPPROTO_HOPOPTS:
4559                 case IPPROTO_ROUTING: {
4560                         struct ipv6_opt_hdr *hp;
4561
4562                         err = skb_maybe_pull_tail(skb,
4563                                                   off +
4564                                                   sizeof(struct ipv6_opt_hdr),
4565                                                   MAX_IPV6_HDR_LEN);
4566                         if (err < 0)
4567                                 goto out;
4568
4569                         hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4570                         nexthdr = hp->nexthdr;
4571                         off += ipv6_optlen(hp);
4572                         break;
4573                 }
4574                 case IPPROTO_AH: {
4575                         struct ip_auth_hdr *hp;
4576
4577                         err = skb_maybe_pull_tail(skb,
4578                                                   off +
4579                                                   sizeof(struct ip_auth_hdr),
4580                                                   MAX_IPV6_HDR_LEN);
4581                         if (err < 0)
4582                                 goto out;
4583
4584                         hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4585                         nexthdr = hp->nexthdr;
4586                         off += ipv6_authlen(hp);
4587                         break;
4588                 }
4589                 case IPPROTO_FRAGMENT: {
4590                         struct frag_hdr *hp;
4591
4592                         err = skb_maybe_pull_tail(skb,
4593                                                   off +
4594                                                   sizeof(struct frag_hdr),
4595                                                   MAX_IPV6_HDR_LEN);
4596                         if (err < 0)
4597                                 goto out;
4598
4599                         hp = OPT_HDR(struct frag_hdr, skb, off);
4600
4601                         if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
4602                                 fragment = true;
4603
4604                         nexthdr = hp->nexthdr;
4605                         off += sizeof(struct frag_hdr);
4606                         break;
4607                 }
4608                 default:
4609                         done = true;
4610                         break;
4611                 }
4612         }
4613
4614         err = -EPROTO;
4615
4616         if (!done || fragment)
4617                 goto out;
4618
4619         csum = skb_checksum_setup_ip(skb, nexthdr, off);
4620         if (IS_ERR(csum))
4621                 return PTR_ERR(csum);
4622
4623         if (recalculate)
4624                 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4625                                          &ipv6_hdr(skb)->daddr,
4626                                          skb->len - off, nexthdr, 0);
4627         err = 0;
4628
4629 out:
4630         return err;
4631 }
4632
4633 /**
4634  * skb_checksum_setup - set up partial checksum offset
4635  * @skb: the skb to set up
4636  * @recalculate: if true the pseudo-header checksum will be recalculated
4637  */
4638 int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4639 {
4640         int err;
4641
4642         switch (skb->protocol) {
4643         case htons(ETH_P_IP):
4644                 err = skb_checksum_setup_ipv4(skb, recalculate);
4645                 break;
4646
4647         case htons(ETH_P_IPV6):
4648                 err = skb_checksum_setup_ipv6(skb, recalculate);
4649                 break;
4650
4651         default:
4652                 err = -EPROTO;
4653                 break;
4654         }
4655
4656         return err;
4657 }
4658 EXPORT_SYMBOL(skb_checksum_setup);
4659
4660 /**
4661  * skb_checksum_maybe_trim - maybe trims the given skb
4662  * @skb: the skb to check
4663  * @transport_len: the data length beyond the network header
4664  *
4665  * Checks whether the given skb has data beyond the given transport length.
4666  * If so, returns a cloned skb trimmed to this transport length.
4667  * Otherwise returns the provided skb. Returns NULL in error cases
4668  * (e.g. transport_len exceeds skb length or out-of-memory).
4669  *
4670  * Caller needs to set the skb transport header and free any returned skb if it
4671  * differs from the provided skb.
4672  */
4673 static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
4674                                                unsigned int transport_len)
4675 {
4676         struct sk_buff *skb_chk;
4677         unsigned int len = skb_transport_offset(skb) + transport_len;
4678         int ret;
4679
4680         if (skb->len < len)
4681                 return NULL;
4682         else if (skb->len == len)
4683                 return skb;
4684
4685         skb_chk = skb_clone(skb, GFP_ATOMIC);
4686         if (!skb_chk)
4687                 return NULL;
4688
4689         ret = pskb_trim_rcsum(skb_chk, len);
4690         if (ret) {
4691                 kfree_skb(skb_chk);
4692                 return NULL;
4693         }
4694
4695         return skb_chk;
4696 }
4697
4698 /**
4699  * skb_checksum_trimmed - validate checksum of an skb
4700  * @skb: the skb to check
4701  * @transport_len: the data length beyond the network header
4702  * @skb_chkf: checksum function to use
4703  *
4704  * Applies the given checksum function skb_chkf to the provided skb.
4705  * Returns a checked and maybe trimmed skb. Returns NULL on error.
4706  *
4707  * If the skb has data beyond the given transport length, then a
4708  * trimmed & cloned skb is checked and returned.
4709  *
4710  * Caller needs to set the skb transport header and free any returned skb if it
4711  * differs from the provided skb.
4712  */
4713 struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
4714                                      unsigned int transport_len,
4715                                      __sum16(*skb_chkf)(struct sk_buff *skb))
4716 {
4717         struct sk_buff *skb_chk;
4718         unsigned int offset = skb_transport_offset(skb);
4719         __sum16 ret;
4720
4721         skb_chk = skb_checksum_maybe_trim(skb, transport_len);
4722         if (!skb_chk)
4723                 goto err;
4724
4725         if (!pskb_may_pull(skb_chk, offset))
4726                 goto err;
4727
4728         skb_pull_rcsum(skb_chk, offset);
4729         ret = skb_chkf(skb_chk);
4730         skb_push_rcsum(skb_chk, offset);
4731
4732         if (ret)
4733                 goto err;
4734
4735         return skb_chk;
4736
4737 err:
4738         if (skb_chk && skb_chk != skb)
4739                 kfree_skb(skb_chk);
4740
4741         return NULL;
4742
4743 }
4744 EXPORT_SYMBOL(skb_checksum_trimmed);
4745
4746 void __skb_warn_lro_forwarding(const struct sk_buff *skb)
4747 {
4748         net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4749                              skb->dev->name);
4750 }
4751 EXPORT_SYMBOL(__skb_warn_lro_forwarding);
4752
4753 void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4754 {
4755         if (head_stolen) {
4756                 skb_release_head_state(skb);
4757                 kmem_cache_free(skbuff_head_cache, skb);
4758         } else {
4759                 __kfree_skb(skb);
4760         }
4761 }
4762 EXPORT_SYMBOL(kfree_skb_partial);
4763
4764 /**
4765  * skb_try_coalesce - try to merge skb to prior one
4766  * @to: prior buffer
4767  * @from: buffer to add
4768  * @fragstolen: pointer to boolean
4769  * @delta_truesize: how much more was allocated than was requested
4770  */
4771 bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4772                       bool *fragstolen, int *delta_truesize)
4773 {
4774         int i, delta, len = from->len;
4775
4776         *fragstolen = false;
4777
4778         if (skb_cloned(to))
4779                 return false;
4780
4781         if (len <= skb_tailroom(to)) {
4782                 if (len)
4783                         BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
4784                 *delta_truesize = 0;
4785                 return true;
4786         }
4787
4788         if (skb_has_frag_list(to) || skb_has_frag_list(from))
4789                 return false;
4790         if (skb_zcopy(to) || skb_zcopy(from))
4791                 return false;
4792
4793         if (skb_headlen(from) != 0) {
4794                 struct page *page;
4795                 unsigned int offset;
4796
4797                 if (skb_shinfo(to)->nr_frags +
4798                     skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4799                         return false;
4800
4801                 if (skb_head_is_locked(from))
4802                         return false;
4803
4804                 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4805
4806                 page = virt_to_head_page(from->head);
4807                 offset = from->data - (unsigned char *)page_address(page);
4808
4809                 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4810                                    page, offset, skb_headlen(from));
4811                 *fragstolen = true;
4812         } else {
4813                 if (skb_shinfo(to)->nr_frags +
4814                     skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4815                         return false;
4816
4817                 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
4818         }
4819
4820         WARN_ON_ONCE(delta < len);
4821
4822         memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4823                skb_shinfo(from)->frags,
4824                skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4825         skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4826
4827         if (!skb_cloned(from))
4828                 skb_shinfo(from)->nr_frags = 0;
4829
4830         /* if the skb is not cloned this does nothing
4831          * since we set nr_frags to 0.
4832          */
4833         for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4834                 skb_frag_ref(from, i);
4835
4836         to->truesize += delta;
4837         to->len += len;
4838         to->data_len += len;
4839
4840         *delta_truesize = delta;
4841         return true;
4842 }
4843 EXPORT_SYMBOL(skb_try_coalesce);
4844
4845 /**
4846  * skb_scrub_packet - scrub an skb
4847  *
4848  * @skb: buffer to clean
4849  * @xnet: packet is crossing netns
4850  *
4851  * skb_scrub_packet can be used after encapsulating or decapsulting a packet
4852  * into/from a tunnel. Some information have to be cleared during these
4853  * operations.
4854  * skb_scrub_packet can also be used to clean a skb before injecting it in
4855  * another namespace (@xnet == true). We have to clear all information in the
4856  * skb that could impact namespace isolation.
4857  */
4858 void skb_scrub_packet(struct sk_buff *skb, bool xnet)
4859 {
4860         skb->tstamp = 0;
4861         skb->pkt_type = PACKET_HOST;
4862         skb->skb_iif = 0;
4863         skb->ignore_df = 0;
4864         skb_dst_drop(skb);
4865         secpath_reset(skb);
4866         nf_reset(skb);
4867         nf_reset_trace(skb);
4868
4869         if (!xnet)
4870                 return;
4871
4872         skb_orphan(skb);
4873         skb->mark = 0;
4874 }
4875 EXPORT_SYMBOL_GPL(skb_scrub_packet);
4876
4877 /**
4878  * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4879  *
4880  * @skb: GSO skb
4881  *
4882  * skb_gso_transport_seglen is used to determine the real size of the
4883  * individual segments, including Layer4 headers (TCP/UDP).
4884  *
4885  * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4886  */
4887 unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4888 {
4889         const struct skb_shared_info *shinfo = skb_shinfo(skb);
4890         unsigned int thlen = 0;
4891
4892         if (skb->encapsulation) {
4893                 thlen = skb_inner_transport_header(skb) -
4894                         skb_transport_header(skb);
4895
4896                 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4897                         thlen += inner_tcp_hdrlen(skb);
4898         } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4899                 thlen = tcp_hdrlen(skb);
4900         } else if (unlikely(shinfo->gso_type & SKB_GSO_SCTP)) {
4901                 thlen = sizeof(struct sctphdr);
4902         }
4903         /* UFO sets gso_size to the size of the fragmentation
4904          * payload, i.e. the size of the L4 (UDP) header is already
4905          * accounted for.
4906          */
4907         return thlen + shinfo->gso_size;
4908 }
4909 EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
4910
4911 /**
4912  * skb_gso_validate_mtu - Return in case such skb fits a given MTU
4913  *
4914  * @skb: GSO skb
4915  * @mtu: MTU to validate against
4916  *
4917  * skb_gso_validate_mtu validates if a given skb will fit a wanted MTU
4918  * once split.
4919  */
4920 bool skb_gso_validate_mtu(const struct sk_buff *skb, unsigned int mtu)
4921 {
4922         const struct skb_shared_info *shinfo = skb_shinfo(skb);
4923         const struct sk_buff *iter;
4924         unsigned int hlen;
4925
4926         hlen = skb_gso_network_seglen(skb);
4927
4928         if (shinfo->gso_size != GSO_BY_FRAGS)
4929                 return hlen <= mtu;
4930
4931         /* Undo this so we can re-use header sizes */
4932         hlen -= GSO_BY_FRAGS;
4933
4934         skb_walk_frags(skb, iter) {
4935                 if (hlen + skb_headlen(iter) > mtu)
4936                         return false;
4937         }
4938
4939         return true;
4940 }
4941 EXPORT_SYMBOL_GPL(skb_gso_validate_mtu);
4942
4943 static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
4944 {
4945         if (skb_cow(skb, skb_headroom(skb)) < 0) {
4946                 kfree_skb(skb);
4947                 return NULL;
4948         }
4949
4950         memmove(skb->data - ETH_HLEN, skb->data - skb->mac_len - VLAN_HLEN,
4951                 2 * ETH_ALEN);
4952         skb->mac_header += VLAN_HLEN;
4953         return skb;
4954 }
4955
4956 struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
4957 {
4958         struct vlan_hdr *vhdr;
4959         u16 vlan_tci;
4960
4961         if (unlikely(skb_vlan_tag_present(skb))) {
4962                 /* vlan_tci is already set-up so leave this for another time */
4963                 return skb;
4964         }
4965
4966         skb = skb_share_check(skb, GFP_ATOMIC);
4967         if (unlikely(!skb))
4968                 goto err_free;
4969
4970         if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
4971                 goto err_free;
4972
4973         vhdr = (struct vlan_hdr *)skb->data;
4974         vlan_tci = ntohs(vhdr->h_vlan_TCI);
4975         __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
4976
4977         skb_pull_rcsum(skb, VLAN_HLEN);
4978         vlan_set_encap_proto(skb, vhdr);
4979
4980         skb = skb_reorder_vlan_header(skb);
4981         if (unlikely(!skb))
4982                 goto err_free;
4983
4984         skb_reset_network_header(skb);
4985         skb_reset_transport_header(skb);
4986         skb_reset_mac_len(skb);
4987
4988         return skb;
4989
4990 err_free:
4991         kfree_skb(skb);
4992         return NULL;
4993 }
4994 EXPORT_SYMBOL(skb_vlan_untag);
4995
4996 int skb_ensure_writable(struct sk_buff *skb, int write_len)
4997 {
4998         if (!pskb_may_pull(skb, write_len))
4999                 return -ENOMEM;
5000
5001         if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
5002                 return 0;
5003
5004         return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5005 }
5006 EXPORT_SYMBOL(skb_ensure_writable);
5007
5008 /* remove VLAN header from packet and update csum accordingly.
5009  * expects a non skb_vlan_tag_present skb with a vlan tag payload
5010  */
5011 int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
5012 {
5013         struct vlan_hdr *vhdr;
5014         int offset = skb->data - skb_mac_header(skb);
5015         int err;
5016
5017         if (WARN_ONCE(offset,
5018                       "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
5019                       offset)) {
5020                 return -EINVAL;
5021         }
5022
5023         err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
5024         if (unlikely(err))
5025                 return err;
5026
5027         skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5028
5029         vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
5030         *vlan_tci = ntohs(vhdr->h_vlan_TCI);
5031
5032         memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
5033         __skb_pull(skb, VLAN_HLEN);
5034
5035         vlan_set_encap_proto(skb, vhdr);
5036         skb->mac_header += VLAN_HLEN;
5037
5038         if (skb_network_offset(skb) < ETH_HLEN)
5039                 skb_set_network_header(skb, ETH_HLEN);
5040
5041         skb_reset_mac_len(skb);
5042
5043         return err;
5044 }
5045 EXPORT_SYMBOL(__skb_vlan_pop);
5046
5047 /* Pop a vlan tag either from hwaccel or from payload.
5048  * Expects skb->data at mac header.
5049  */
5050 int skb_vlan_pop(struct sk_buff *skb)
5051 {
5052         u16 vlan_tci;
5053         __be16 vlan_proto;
5054         int err;
5055
5056         if (likely(skb_vlan_tag_present(skb))) {
5057                 skb->vlan_tci = 0;
5058         } else {
5059                 if (unlikely(!eth_type_vlan(skb->protocol)))
5060                         return 0;
5061
5062                 err = __skb_vlan_pop(skb, &vlan_tci);
5063                 if (err)
5064                         return err;
5065         }
5066         /* move next vlan tag to hw accel tag */
5067         if (likely(!eth_type_vlan(skb->protocol)))
5068                 return 0;
5069
5070         vlan_proto = skb->protocol;
5071         err = __skb_vlan_pop(skb, &vlan_tci);
5072         if (unlikely(err))
5073                 return err;
5074
5075         __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5076         return 0;
5077 }
5078 EXPORT_SYMBOL(skb_vlan_pop);
5079
5080 /* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
5081  * Expects skb->data at mac header.
5082  */
5083 int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
5084 {
5085         if (skb_vlan_tag_present(skb)) {
5086                 int offset = skb->data - skb_mac_header(skb);
5087                 int err;
5088
5089                 if (WARN_ONCE(offset,
5090                               "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
5091                               offset)) {
5092                         return -EINVAL;
5093                 }
5094
5095                 err = __vlan_insert_tag(skb, skb->vlan_proto,
5096                                         skb_vlan_tag_get(skb));
5097                 if (err)
5098                         return err;
5099
5100                 skb->protocol = skb->vlan_proto;
5101                 skb->mac_len += VLAN_HLEN;
5102
5103                 skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5104         }
5105         __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5106         return 0;
5107 }
5108 EXPORT_SYMBOL(skb_vlan_push);
5109
5110 /**
5111  * alloc_skb_with_frags - allocate skb with page frags
5112  *
5113  * @header_len: size of linear part
5114  * @data_len: needed length in frags
5115  * @max_page_order: max page order desired.
5116  * @errcode: pointer to error code if any
5117  * @gfp_mask: allocation mask
5118  *
5119  * This can be used to allocate a paged skb, given a maximal order for frags.
5120  */
5121 struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
5122                                      unsigned long data_len,
5123                                      int max_page_order,
5124                                      int *errcode,
5125                                      gfp_t gfp_mask)
5126 {
5127         int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
5128         unsigned long chunk;
5129         struct sk_buff *skb;
5130         struct page *page;
5131         gfp_t gfp_head;
5132         int i;
5133
5134         *errcode = -EMSGSIZE;
5135         /* Note this test could be relaxed, if we succeed to allocate
5136          * high order pages...
5137          */
5138         if (npages > MAX_SKB_FRAGS)
5139                 return NULL;
5140
5141         gfp_head = gfp_mask;
5142         if (gfp_head & __GFP_DIRECT_RECLAIM)
5143                 gfp_head |= __GFP_RETRY_MAYFAIL;
5144
5145         *errcode = -ENOBUFS;
5146         skb = alloc_skb(header_len, gfp_head);
5147         if (!skb)
5148                 return NULL;
5149
5150         skb->truesize += npages << PAGE_SHIFT;
5151
5152         for (i = 0; npages > 0; i++) {
5153                 int order = max_page_order;
5154
5155                 while (order) {
5156                         if (npages >= 1 << order) {
5157                                 page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
5158                                                    __GFP_COMP |
5159                                                    __GFP_NOWARN |
5160                                                    __GFP_NORETRY,
5161                                                    order);
5162                                 if (page)
5163                                         goto fill_page;
5164                                 /* Do not retry other high order allocations */
5165                                 order = 1;
5166                                 max_page_order = 0;
5167                         }
5168                         order--;
5169                 }
5170                 page = alloc_page(gfp_mask);
5171                 if (!page)
5172                         goto failure;
5173 fill_page:
5174                 chunk = min_t(unsigned long, data_len,
5175                               PAGE_SIZE << order);
5176                 skb_fill_page_desc(skb, i, page, 0, chunk);
5177                 data_len -= chunk;
5178                 npages -= 1 << order;
5179         }
5180         return skb;
5181
5182 failure:
5183         kfree_skb(skb);
5184         return NULL;
5185 }
5186 EXPORT_SYMBOL(alloc_skb_with_frags);
5187
5188 /* carve out the first off bytes from skb when off < headlen */
5189 static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
5190                                     const int headlen, gfp_t gfp_mask)
5191 {
5192         int i;
5193         int size = skb_end_offset(skb);
5194         int new_hlen = headlen - off;
5195         u8 *data;
5196
5197         size = SKB_DATA_ALIGN(size);
5198
5199         if (skb_pfmemalloc(skb))
5200                 gfp_mask |= __GFP_MEMALLOC;
5201         data = kmalloc_reserve(size +
5202                                SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
5203                                gfp_mask, NUMA_NO_NODE, NULL);
5204         if (!data)
5205                 return -ENOMEM;
5206
5207         size = SKB_WITH_OVERHEAD(ksize(data));
5208
5209         /* Copy real data, and all frags */
5210         skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
5211         skb->len -= off;
5212
5213         memcpy((struct skb_shared_info *)(data + size),
5214                skb_shinfo(skb),
5215                offsetof(struct skb_shared_info,
5216                         frags[skb_shinfo(skb)->nr_frags]));
5217         if (skb_cloned(skb)) {
5218                 /* drop the old head gracefully */
5219                 if (skb_orphan_frags(skb, gfp_mask)) {
5220                         kfree(data);
5221                         return -ENOMEM;
5222                 }
5223                 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
5224                         skb_frag_ref(skb, i);
5225                 if (skb_has_frag_list(skb))
5226                         skb_clone_fraglist(skb);
5227                 skb_release_data(skb);
5228         } else {
5229                 /* we can reuse existing recount- all we did was
5230                  * relocate values
5231                  */
5232                 skb_free_head(skb);
5233         }
5234
5235         skb->head = data;
5236         skb->data = data;
5237         skb->head_frag = 0;
5238 #ifdef NET_SKBUFF_DATA_USES_OFFSET
5239         skb->end = size;
5240 #else
5241         skb->end = skb->head + size;
5242 #endif
5243         skb_set_tail_pointer(skb, skb_headlen(skb));
5244         skb_headers_offset_update(skb, 0);
5245         skb->cloned = 0;
5246         skb->hdr_len = 0;
5247         skb->nohdr = 0;
5248         atomic_set(&skb_shinfo(skb)->dataref, 1);
5249
5250         return 0;
5251 }
5252
5253 static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
5254
5255 /* carve out the first eat bytes from skb's frag_list. May recurse into
5256  * pskb_carve()
5257  */
5258 static int pskb_carve_frag_list(struct sk_buff *skb,
5259                                 struct skb_shared_info *shinfo, int eat,
5260                                 gfp_t gfp_mask)
5261 {
5262         struct sk_buff *list = shinfo->frag_list;
5263         struct sk_buff *clone = NULL;
5264         struct sk_buff *insp = NULL;
5265
5266         do {
5267                 if (!list) {
5268                         pr_err("Not enough bytes to eat. Want %d\n", eat);
5269                         return -EFAULT;
5270                 }
5271                 if (list->len <= eat) {
5272                         /* Eaten as whole. */
5273                         eat -= list->len;
5274                         list = list->next;
5275                         insp = list;
5276                 } else {
5277                         /* Eaten partially. */
5278                         if (skb_shared(list)) {
5279                                 clone = skb_clone(list, gfp_mask);
5280                                 if (!clone)
5281                                         return -ENOMEM;
5282                                 insp = list->next;
5283                                 list = clone;
5284                         } else {
5285                                 /* This may be pulled without problems. */
5286                                 insp = list;
5287                         }
5288                         if (pskb_carve(list, eat, gfp_mask) < 0) {
5289                                 kfree_skb(clone);
5290                                 return -ENOMEM;
5291                         }
5292                         break;
5293                 }
5294         } while (eat);
5295
5296         /* Free pulled out fragments. */
5297         while ((list = shinfo->frag_list) != insp) {
5298                 shinfo->frag_list = list->next;
5299                 kfree_skb(list);
5300         }
5301         /* And insert new clone at head. */
5302         if (clone) {
5303                 clone->next = list;
5304                 shinfo->frag_list = clone;
5305         }
5306         return 0;
5307 }
5308
5309 /* carve off first len bytes from skb. Split line (off) is in the
5310  * non-linear part of skb
5311  */
5312 static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
5313                                        int pos, gfp_t gfp_mask)
5314 {
5315         int i, k = 0;
5316         int size = skb_end_offset(skb);
5317         u8 *data;
5318         const int nfrags = skb_shinfo(skb)->nr_frags;
5319         struct skb_shared_info *shinfo;
5320
5321         size = SKB_DATA_ALIGN(size);
5322
5323         if (skb_pfmemalloc(skb))
5324                 gfp_mask |= __GFP_MEMALLOC;
5325         data = kmalloc_reserve(size +
5326                                SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
5327                                gfp_mask, NUMA_NO_NODE, NULL);
5328         if (!data)
5329                 return -ENOMEM;
5330
5331         size = SKB_WITH_OVERHEAD(ksize(data));
5332
5333         memcpy((struct skb_shared_info *)(data + size),
5334                skb_shinfo(skb), offsetof(struct skb_shared_info,
5335                                          frags[skb_shinfo(skb)->nr_frags]));
5336         if (skb_orphan_frags(skb, gfp_mask)) {
5337                 kfree(data);
5338                 return -ENOMEM;
5339         }
5340         shinfo = (struct skb_shared_info *)(data + size);
5341         for (i = 0; i < nfrags; i++) {
5342                 int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
5343
5344                 if (pos + fsize > off) {
5345                         shinfo->frags[k] = skb_shinfo(skb)->frags[i];
5346
5347                         if (pos < off) {
5348                                 /* Split frag.
5349                                  * We have two variants in this case:
5350                                  * 1. Move all the frag to the second
5351                                  *    part, if it is possible. F.e.
5352                                  *    this approach is mandatory for TUX,
5353                                  *    where splitting is expensive.
5354                                  * 2. Split is accurately. We make this.
5355                                  */
5356                                 shinfo->frags[0].page_offset += off - pos;
5357                                 skb_frag_size_sub(&shinfo->frags[0], off - pos);
5358                         }
5359                         skb_frag_ref(skb, i);
5360                         k++;
5361                 }
5362                 pos += fsize;
5363         }
5364         shinfo->nr_frags = k;
5365         if (skb_has_frag_list(skb))
5366                 skb_clone_fraglist(skb);
5367
5368         if (k == 0) {
5369                 /* split line is in frag list */
5370                 pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask);
5371         }
5372         skb_release_data(skb);
5373
5374         skb->head = data;
5375         skb->head_frag = 0;
5376         skb->data = data;
5377 #ifdef NET_SKBUFF_DATA_USES_OFFSET
5378         skb->end = size;
5379 #else
5380         skb->end = skb->head + size;
5381 #endif
5382         skb_reset_tail_pointer(skb);
5383         skb_headers_offset_update(skb, 0);
5384         skb->cloned   = 0;
5385         skb->hdr_len  = 0;
5386         skb->nohdr    = 0;
5387         skb->len -= off;
5388         skb->data_len = skb->len;
5389         atomic_set(&skb_shinfo(skb)->dataref, 1);
5390         return 0;
5391 }
5392
5393 /* remove len bytes from the beginning of the skb */
5394 static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
5395 {
5396         int headlen = skb_headlen(skb);
5397
5398         if (len < headlen)
5399                 return pskb_carve_inside_header(skb, len, headlen, gfp);
5400         else
5401                 return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
5402 }
5403
5404 /* Extract to_copy bytes starting at off from skb, and return this in
5405  * a new skb
5406  */
5407 struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
5408                              int to_copy, gfp_t gfp)
5409 {
5410         struct sk_buff  *clone = skb_clone(skb, gfp);
5411
5412         if (!clone)
5413                 return NULL;
5414
5415         if (pskb_carve(clone, off, gfp) < 0 ||
5416             pskb_trim(clone, to_copy)) {
5417                 kfree_skb(clone);
5418                 return NULL;
5419         }
5420         return clone;
5421 }
5422 EXPORT_SYMBOL(pskb_extract);
5423
5424 /**
5425  * skb_condense - try to get rid of fragments/frag_list if possible
5426  * @skb: buffer
5427  *
5428  * Can be used to save memory before skb is added to a busy queue.
5429  * If packet has bytes in frags and enough tail room in skb->head,
5430  * pull all of them, so that we can free the frags right now and adjust
5431  * truesize.
5432  * Notes:
5433  *      We do not reallocate skb->head thus can not fail.
5434  *      Caller must re-evaluate skb->truesize if needed.
5435  */
5436 void skb_condense(struct sk_buff *skb)
5437 {
5438         if (skb->data_len) {
5439                 if (skb->data_len > skb->end - skb->tail ||
5440                     skb_cloned(skb))
5441                         return;
5442
5443                 /* Nice, we can free page frag(s) right now */
5444                 __pskb_pull_tail(skb, skb->data_len);
5445         }
5446         /* At this point, skb->truesize might be over estimated,
5447          * because skb had a fragment, and fragments do not tell
5448          * their truesize.
5449          * When we pulled its content into skb->head, fragment
5450          * was freed, but __pskb_pull_tail() could not possibly
5451          * adjust skb->truesize, not knowing the frag truesize.
5452          */
5453         skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
5454 }