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