Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / net / core / skbuff.c
1 /*
2  *      Routines having to do with the 'struct sk_buff' memory handlers.
3  *
4  *      Authors:        Alan Cox <iiitac@pyr.swan.ac.uk>
5  *                      Florian La Roche <rzsfl@rz.uni-sb.de>
6  *
7  *      Version:        $Id: skbuff.c,v 1.90 2001/11/07 05:56:19 davem Exp $
8  *
9  *      Fixes:
10  *              Alan Cox        :       Fixed the worst of the load
11  *                                      balancer bugs.
12  *              Dave Platt      :       Interrupt stacking fix.
13  *      Richard Kooijman        :       Timestamp fixes.
14  *              Alan Cox        :       Changed buffer format.
15  *              Alan Cox        :       destructor hook for AF_UNIX etc.
16  *              Linus Torvalds  :       Better skb_clone.
17  *              Alan Cox        :       Added skb_copy.
18  *              Alan Cox        :       Added all the changed routines Linus
19  *                                      only put in the headers
20  *              Ray VanTassle   :       Fixed --skb->lock in free
21  *              Alan Cox        :       skb_copy copy arp field
22  *              Andi Kleen      :       slabified it.
23  *              Robert Olsson   :       Removed skb_head_pool
24  *
25  *      NOTE:
26  *              The __skb_ routines should be called with interrupts
27  *      disabled, or you better be *real* sure that the operation is atomic
28  *      with respect to whatever list is being frobbed (e.g. via lock_sock()
29  *      or via disabling bottom half handlers, etc).
30  *
31  *      This program is free software; you can redistribute it and/or
32  *      modify it under the terms of the GNU General Public License
33  *      as published by the Free Software Foundation; either version
34  *      2 of the License, or (at your option) any later version.
35  */
36
37 /*
38  *      The functions in this file will not compile correctly with gcc 2.4.x
39  */
40
41 #include <linux/module.h>
42 #include <linux/types.h>
43 #include <linux/kernel.h>
44 #include <linux/sched.h>
45 #include <linux/mm.h>
46 #include <linux/interrupt.h>
47 #include <linux/in.h>
48 #include <linux/inet.h>
49 #include <linux/slab.h>
50 #include <linux/netdevice.h>
51 #ifdef CONFIG_NET_CLS_ACT
52 #include <net/pkt_sched.h>
53 #endif
54 #include <linux/string.h>
55 #include <linux/skbuff.h>
56 #include <linux/cache.h>
57 #include <linux/rtnetlink.h>
58 #include <linux/init.h>
59 #include <linux/highmem.h>
60
61 #include <net/protocol.h>
62 #include <net/dst.h>
63 #include <net/sock.h>
64 #include <net/checksum.h>
65 #include <net/xfrm.h>
66
67 #include <asm/uaccess.h>
68 #include <asm/system.h>
69
70 static kmem_cache_t *skbuff_head_cache __read_mostly;
71 static kmem_cache_t *skbuff_fclone_cache __read_mostly;
72
73 /*
74  *      Keep out-of-line to prevent kernel bloat.
75  *      __builtin_return_address is not used because it is not always
76  *      reliable.
77  */
78
79 /**
80  *      skb_over_panic  -       private function
81  *      @skb: buffer
82  *      @sz: size
83  *      @here: address
84  *
85  *      Out of line support code for skb_put(). Not user callable.
86  */
87 void skb_over_panic(struct sk_buff *skb, int sz, void *here)
88 {
89         printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
90                           "data:%p tail:%p end:%p dev:%s\n",
91                here, skb->len, sz, skb->head, skb->data, skb->tail, skb->end,
92                skb->dev ? skb->dev->name : "<NULL>");
93         BUG();
94 }
95
96 /**
97  *      skb_under_panic -       private function
98  *      @skb: buffer
99  *      @sz: size
100  *      @here: address
101  *
102  *      Out of line support code for skb_push(). Not user callable.
103  */
104
105 void skb_under_panic(struct sk_buff *skb, int sz, void *here)
106 {
107         printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
108                           "data:%p tail:%p end:%p dev:%s\n",
109                here, skb->len, sz, skb->head, skb->data, skb->tail, skb->end,
110                skb->dev ? skb->dev->name : "<NULL>");
111         BUG();
112 }
113
114 void skb_truesize_bug(struct sk_buff *skb)
115 {
116         printk(KERN_ERR "SKB BUG: Invalid truesize (%u) "
117                "len=%u, sizeof(sk_buff)=%Zd\n",
118                skb->truesize, skb->len, sizeof(struct sk_buff));
119 }
120 EXPORT_SYMBOL(skb_truesize_bug);
121
122 /*      Allocate a new skbuff. We do this ourselves so we can fill in a few
123  *      'private' fields and also do memory statistics to find all the
124  *      [BEEP] leaks.
125  *
126  */
127
128 /**
129  *      __alloc_skb     -       allocate a network buffer
130  *      @size: size to allocate
131  *      @gfp_mask: allocation mask
132  *      @fclone: allocate from fclone cache instead of head cache
133  *              and allocate a cloned (child) skb
134  *
135  *      Allocate a new &sk_buff. The returned buffer has no headroom and a
136  *      tail room of size bytes. The object has a reference count of one.
137  *      The return is the buffer. On a failure the return is %NULL.
138  *
139  *      Buffers may only be allocated from interrupts using a @gfp_mask of
140  *      %GFP_ATOMIC.
141  */
142 #ifndef CONFIG_HAVE_ARCH_ALLOC_SKB
143 struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
144                             int fclone)
145 {
146         kmem_cache_t *cache;
147         struct skb_shared_info *shinfo;
148         struct sk_buff *skb;
149         u8 *data;
150
151         cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
152
153         /* Get the HEAD */
154         skb = kmem_cache_alloc(cache, gfp_mask & ~__GFP_DMA);
155         if (!skb)
156                 goto out;
157
158         /* Get the DATA. Size must match skb_add_mtu(). */
159         size = SKB_DATA_ALIGN(size);
160         data = ____kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
161         if (!data)
162                 goto nodata;
163
164         memset(skb, 0, offsetof(struct sk_buff, truesize));
165         skb->truesize = size + sizeof(struct sk_buff);
166         atomic_set(&skb->users, 1);
167         skb->head = data;
168         skb->data = data;
169         skb->tail = data;
170         skb->end  = data + size;
171         /* make sure we initialize shinfo sequentially */
172         shinfo = skb_shinfo(skb);
173         atomic_set(&shinfo->dataref, 1);
174         shinfo->nr_frags  = 0;
175         shinfo->gso_size = 0;
176         shinfo->gso_segs = 0;
177         shinfo->gso_type = 0;
178         shinfo->ip6_frag_id = 0;
179         shinfo->frag_list = NULL;
180
181         if (fclone) {
182                 struct sk_buff *child = skb + 1;
183                 atomic_t *fclone_ref = (atomic_t *) (child + 1);
184
185                 skb->fclone = SKB_FCLONE_ORIG;
186                 atomic_set(fclone_ref, 1);
187
188                 child->fclone = SKB_FCLONE_UNAVAILABLE;
189         }
190 out:
191         return skb;
192 nodata:
193         kmem_cache_free(cache, skb);
194         skb = NULL;
195         goto out;
196 }
197 #endif /* !CONFIG_HAVE_ARCH_ALLOC_SKB */
198
199 /**
200  *      alloc_skb_from_cache    -       allocate a network buffer
201  *      @cp: kmem_cache from which to allocate the data area
202  *           (object size must be big enough for @size bytes + skb overheads)
203  *      @size: size to allocate
204  *      @gfp_mask: allocation mask
205  *
206  *      Allocate a new &sk_buff. The returned buffer has no headroom and
207  *      tail room of size bytes. The object has a reference count of one.
208  *      The return is the buffer. On a failure the return is %NULL.
209  *
210  *      Buffers may only be allocated from interrupts using a @gfp_mask of
211  *      %GFP_ATOMIC.
212  */
213 struct sk_buff *alloc_skb_from_cache(kmem_cache_t *cp,
214                                      unsigned int size,
215                                      gfp_t gfp_mask,
216                                      int fclone)
217 {
218         kmem_cache_t *cache;
219         struct sk_buff *skb;
220         u8 *data;
221
222         cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
223
224         /* Get the HEAD */
225         skb = kmem_cache_alloc(cache, gfp_mask & ~__GFP_DMA);
226         if (!skb)
227                 goto out;
228
229         /* Get the DATA. */
230         size = SKB_DATA_ALIGN(size);
231         data = kmem_cache_alloc(cp, gfp_mask);
232         if (!data)
233                 goto nodata;
234
235         memset(skb, 0, offsetof(struct sk_buff, truesize));
236         skb->truesize = size + sizeof(struct sk_buff);
237         atomic_set(&skb->users, 1);
238         skb->head = data;
239         skb->data = data;
240         skb->tail = data;
241         skb->end  = data + size;
242
243         atomic_set(&(skb_shinfo(skb)->dataref), 1);
244         skb_shinfo(skb)->nr_frags  = 0;
245         skb_shinfo(skb)->gso_size = 0;
246         skb_shinfo(skb)->gso_segs = 0;
247         skb_shinfo(skb)->gso_type = 0;
248         skb_shinfo(skb)->frag_list = NULL;
249
250         if (fclone) {
251                 struct sk_buff *child = skb + 1;
252                 atomic_t *fclone_ref = (atomic_t *) (child + 1);
253
254                 skb->fclone = SKB_FCLONE_ORIG;
255                 atomic_set(fclone_ref, 1);
256
257                 child->fclone = SKB_FCLONE_UNAVAILABLE;
258         }
259 out:
260         return skb;
261 nodata:
262         kmem_cache_free(cache, skb);
263         skb = NULL;
264         goto out;
265 }
266
267 /**
268  *      __netdev_alloc_skb - allocate an skbuff for rx on a specific device
269  *      @dev: network device to receive on
270  *      @length: length to allocate
271  *      @gfp_mask: get_free_pages mask, passed to alloc_skb
272  *
273  *      Allocate a new &sk_buff and assign it a usage count of one. The
274  *      buffer has unspecified headroom built in. Users should allocate
275  *      the headroom they think they need without accounting for the
276  *      built in space. The built in space is used for optimisations.
277  *
278  *      %NULL is returned if there is no free memory.
279  */
280 struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
281                 unsigned int length, gfp_t gfp_mask)
282 {
283         struct sk_buff *skb;
284
285         skb = alloc_skb(length + NET_SKB_PAD, gfp_mask);
286         if (likely(skb)) {
287                 skb_reserve(skb, NET_SKB_PAD);
288                 skb->dev = dev;
289         }
290         return skb;
291 }
292
293 static void skb_drop_list(struct sk_buff **listp)
294 {
295         struct sk_buff *list = *listp;
296
297         *listp = NULL;
298
299         do {
300                 struct sk_buff *this = list;
301                 list = list->next;
302                 kfree_skb(this);
303         } while (list);
304 }
305
306 static inline void skb_drop_fraglist(struct sk_buff *skb)
307 {
308         skb_drop_list(&skb_shinfo(skb)->frag_list);
309 }
310
311 static void skb_clone_fraglist(struct sk_buff *skb)
312 {
313         struct sk_buff *list;
314
315         for (list = skb_shinfo(skb)->frag_list; list; list = list->next)
316                 skb_get(list);
317 }
318
319 static void skb_release_data(struct sk_buff *skb)
320 {
321         if (!skb->cloned ||
322             !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
323                                &skb_shinfo(skb)->dataref)) {
324                 if (skb_shinfo(skb)->nr_frags) {
325                         int i;
326                         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
327                                 put_page(skb_shinfo(skb)->frags[i].page);
328                 }
329
330                 if (skb_shinfo(skb)->frag_list)
331                         skb_drop_fraglist(skb);
332
333                 kfree(skb->head);
334         }
335 }
336
337 /*
338  *      Free an skbuff by memory without cleaning the state.
339  */
340 void kfree_skbmem(struct sk_buff *skb)
341 {
342         struct sk_buff *other;
343         atomic_t *fclone_ref;
344
345         skb_release_data(skb);
346         switch (skb->fclone) {
347         case SKB_FCLONE_UNAVAILABLE:
348                 kmem_cache_free(skbuff_head_cache, skb);
349                 break;
350
351         case SKB_FCLONE_ORIG:
352                 fclone_ref = (atomic_t *) (skb + 2);
353                 if (atomic_dec_and_test(fclone_ref))
354                         kmem_cache_free(skbuff_fclone_cache, skb);
355                 break;
356
357         case SKB_FCLONE_CLONE:
358                 fclone_ref = (atomic_t *) (skb + 1);
359                 other = skb - 1;
360
361                 /* The clone portion is available for
362                  * fast-cloning again.
363                  */
364                 skb->fclone = SKB_FCLONE_UNAVAILABLE;
365
366                 if (atomic_dec_and_test(fclone_ref))
367                         kmem_cache_free(skbuff_fclone_cache, other);
368                 break;
369         };
370 }
371
372 /**
373  *      __kfree_skb - private function
374  *      @skb: buffer
375  *
376  *      Free an sk_buff. Release anything attached to the buffer.
377  *      Clean the state. This is an internal helper function. Users should
378  *      always call kfree_skb
379  */
380
381 void __kfree_skb(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 #ifdef CONFIG_NETFILTER
392         nf_conntrack_put(skb->nfct);
393 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
394         nf_conntrack_put_reasm(skb->nfct_reasm);
395 #endif
396 #ifdef CONFIG_BRIDGE_NETFILTER
397         nf_bridge_put(skb->nf_bridge);
398 #endif
399 #endif
400 /* XXX: IS this still necessary? - JHS */
401 #ifdef CONFIG_NET_SCHED
402         skb->tc_index = 0;
403 #ifdef CONFIG_NET_CLS_ACT
404         skb->tc_verd = 0;
405 #endif
406 #endif
407
408         kfree_skbmem(skb);
409 }
410
411 /**
412  *      kfree_skb - free an sk_buff
413  *      @skb: buffer to free
414  *
415  *      Drop a reference to the buffer and free it if the usage count has
416  *      hit zero.
417  */
418 void kfree_skb(struct sk_buff *skb)
419 {
420         if (unlikely(!skb))
421                 return;
422         if (likely(atomic_read(&skb->users) == 1))
423                 smp_rmb();
424         else if (likely(!atomic_dec_and_test(&skb->users)))
425                 return;
426         __kfree_skb(skb);
427 }
428
429 /**
430  *      skb_clone       -       duplicate an sk_buff
431  *      @skb: buffer to clone
432  *      @gfp_mask: allocation priority
433  *
434  *      Duplicate an &sk_buff. The new one is not owned by a socket. Both
435  *      copies share the same packet data but not structure. The new
436  *      buffer has a reference count of 1. If the allocation fails the
437  *      function returns %NULL otherwise the new buffer is returned.
438  *
439  *      If this function is called from an interrupt gfp_mask() must be
440  *      %GFP_ATOMIC.
441  */
442
443 struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
444 {
445         struct sk_buff *n;
446
447         n = skb + 1;
448         if (skb->fclone == SKB_FCLONE_ORIG &&
449             n->fclone == SKB_FCLONE_UNAVAILABLE) {
450                 atomic_t *fclone_ref = (atomic_t *) (n + 1);
451                 n->fclone = SKB_FCLONE_CLONE;
452                 atomic_inc(fclone_ref);
453         } else {
454                 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
455                 if (!n)
456                         return NULL;
457                 n->fclone = SKB_FCLONE_UNAVAILABLE;
458         }
459
460 #define C(x) n->x = skb->x
461
462         n->next = n->prev = NULL;
463         n->sk = NULL;
464         C(tstamp);
465         C(dev);
466         C(h);
467         C(nh);
468         C(mac);
469         C(dst);
470         dst_clone(skb->dst);
471         C(sp);
472 #ifdef CONFIG_INET
473         secpath_get(skb->sp);
474 #endif
475         memcpy(n->cb, skb->cb, sizeof(skb->cb));
476         C(len);
477         C(data_len);
478         C(csum);
479         C(local_df);
480         n->cloned = 1;
481         n->nohdr = 0;
482 #ifdef CONFIG_XEN
483         C(proto_data_valid);
484         C(proto_csum_blank);
485 #endif
486         C(pkt_type);
487         C(ip_summed);
488         C(priority);
489 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
490         C(ipvs_property);
491 #endif
492         C(protocol);
493         n->destructor = NULL;
494 #ifdef CONFIG_NETFILTER
495         C(nfmark);
496         C(nfct);
497         nf_conntrack_get(skb->nfct);
498         C(nfctinfo);
499 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
500         C(nfct_reasm);
501         nf_conntrack_get_reasm(skb->nfct_reasm);
502 #endif
503 #ifdef CONFIG_BRIDGE_NETFILTER
504         C(nf_bridge);
505         nf_bridge_get(skb->nf_bridge);
506 #endif
507 #endif /*CONFIG_NETFILTER*/
508 #ifdef CONFIG_NET_SCHED
509         C(tc_index);
510 #ifdef CONFIG_NET_CLS_ACT
511         n->tc_verd = SET_TC_VERD(skb->tc_verd,0);
512         n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
513         n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
514         C(input_dev);
515 #endif
516         skb_copy_secmark(n, skb);
517 #endif
518         C(truesize);
519         atomic_set(&n->users, 1);
520         C(head);
521         C(data);
522         C(tail);
523         C(end);
524
525         atomic_inc(&(skb_shinfo(skb)->dataref));
526         skb->cloned = 1;
527
528         return n;
529 }
530
531 static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
532 {
533         /*
534          *      Shift between the two data areas in bytes
535          */
536         unsigned long offset = new->data - old->data;
537
538         new->sk         = NULL;
539         new->dev        = old->dev;
540         new->priority   = old->priority;
541         new->protocol   = old->protocol;
542         new->dst        = dst_clone(old->dst);
543 #ifdef CONFIG_INET
544         new->sp         = secpath_get(old->sp);
545 #endif
546         new->h.raw      = old->h.raw + offset;
547         new->nh.raw     = old->nh.raw + offset;
548         new->mac.raw    = old->mac.raw + offset;
549         memcpy(new->cb, old->cb, sizeof(old->cb));
550         new->local_df   = old->local_df;
551         new->fclone     = SKB_FCLONE_UNAVAILABLE;
552         new->pkt_type   = old->pkt_type;
553         new->tstamp     = old->tstamp;
554         new->destructor = NULL;
555 #ifdef CONFIG_NETFILTER
556         new->nfmark     = old->nfmark;
557         new->nfct       = old->nfct;
558         nf_conntrack_get(old->nfct);
559         new->nfctinfo   = old->nfctinfo;
560 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
561         new->nfct_reasm = old->nfct_reasm;
562         nf_conntrack_get_reasm(old->nfct_reasm);
563 #endif
564 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
565         new->ipvs_property = old->ipvs_property;
566 #endif
567 #ifdef CONFIG_BRIDGE_NETFILTER
568         new->nf_bridge  = old->nf_bridge;
569         nf_bridge_get(old->nf_bridge);
570 #endif
571 #endif
572 #ifdef CONFIG_NET_SCHED
573 #ifdef CONFIG_NET_CLS_ACT
574         new->tc_verd = old->tc_verd;
575 #endif
576         new->tc_index   = old->tc_index;
577 #endif
578         skb_copy_secmark(new, old);
579         atomic_set(&new->users, 1);
580         skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
581         skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
582         skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
583 }
584
585 /**
586  *      skb_copy        -       create private copy of an sk_buff
587  *      @skb: buffer to copy
588  *      @gfp_mask: allocation priority
589  *
590  *      Make a copy of both an &sk_buff and its data. This is used when the
591  *      caller wishes to modify the data and needs a private copy of the
592  *      data to alter. Returns %NULL on failure or the pointer to the buffer
593  *      on success. The returned buffer has a reference count of 1.
594  *
595  *      As by-product this function converts non-linear &sk_buff to linear
596  *      one, so that &sk_buff becomes completely private and caller is allowed
597  *      to modify all the data of returned buffer. This means that this
598  *      function is not recommended for use in circumstances when only
599  *      header is going to be modified. Use pskb_copy() instead.
600  */
601
602 struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
603 {
604         int headerlen = skb->data - skb->head;
605         /*
606          *      Allocate the copy buffer
607          */
608         struct sk_buff *n = alloc_skb(skb->end - skb->head + skb->data_len,
609                                       gfp_mask);
610         if (!n)
611                 return NULL;
612
613         /* Set the data pointer */
614         skb_reserve(n, headerlen);
615         /* Set the tail pointer and length */
616         skb_put(n, skb->len);
617         n->csum      = skb->csum;
618         n->ip_summed = skb->ip_summed;
619
620         if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
621                 BUG();
622
623         copy_skb_header(n, skb);
624         return n;
625 }
626
627
628 /**
629  *      pskb_copy       -       create copy of an sk_buff with private head.
630  *      @skb: buffer to copy
631  *      @gfp_mask: allocation priority
632  *
633  *      Make a copy of both an &sk_buff and part of its data, located
634  *      in header. Fragmented data remain shared. This is used when
635  *      the caller wishes to modify only header of &sk_buff and needs
636  *      private copy of the header to alter. Returns %NULL on failure
637  *      or the pointer to the buffer on success.
638  *      The returned buffer has a reference count of 1.
639  */
640
641 struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
642 {
643         /*
644          *      Allocate the copy buffer
645          */
646         struct sk_buff *n = alloc_skb(skb->end - skb->head, gfp_mask);
647
648         if (!n)
649                 goto out;
650
651         /* Set the data pointer */
652         skb_reserve(n, skb->data - skb->head);
653         /* Set the tail pointer and length */
654         skb_put(n, skb_headlen(skb));
655         /* Copy the bytes */
656         memcpy(n->data, skb->data, n->len);
657         n->csum      = skb->csum;
658         n->ip_summed = skb->ip_summed;
659
660         n->data_len  = skb->data_len;
661         n->len       = skb->len;
662
663         if (skb_shinfo(skb)->nr_frags) {
664                 int i;
665
666                 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
667                         skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
668                         get_page(skb_shinfo(n)->frags[i].page);
669                 }
670                 skb_shinfo(n)->nr_frags = i;
671         }
672
673         if (skb_shinfo(skb)->frag_list) {
674                 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
675                 skb_clone_fraglist(n);
676         }
677
678         copy_skb_header(n, skb);
679 out:
680         return n;
681 }
682
683 /**
684  *      pskb_expand_head - reallocate header of &sk_buff
685  *      @skb: buffer to reallocate
686  *      @nhead: room to add at head
687  *      @ntail: room to add at tail
688  *      @gfp_mask: allocation priority
689  *
690  *      Expands (or creates identical copy, if &nhead and &ntail are zero)
691  *      header of skb. &sk_buff itself is not changed. &sk_buff MUST have
692  *      reference count of 1. Returns zero in the case of success or error,
693  *      if expansion failed. In the last case, &sk_buff is not changed.
694  *
695  *      All the pointers pointing into skb header may change and must be
696  *      reloaded after call to this function.
697  */
698
699 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
700                      gfp_t gfp_mask)
701 {
702         int i;
703         u8 *data;
704         int size = nhead + (skb->end - skb->head) + ntail;
705         long off;
706
707         if (skb_shared(skb))
708                 BUG();
709
710         size = SKB_DATA_ALIGN(size);
711
712         data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
713         if (!data)
714                 goto nodata;
715
716         /* Copy only real data... and, alas, header. This should be
717          * optimized for the cases when header is void. */
718         memcpy(data + nhead, skb->head, skb->tail - skb->head);
719         memcpy(data + size, skb->end, sizeof(struct skb_shared_info));
720
721         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
722                 get_page(skb_shinfo(skb)->frags[i].page);
723
724         if (skb_shinfo(skb)->frag_list)
725                 skb_clone_fraglist(skb);
726
727         skb_release_data(skb);
728
729         off = (data + nhead) - skb->head;
730
731         skb->head     = data;
732         skb->end      = data + size;
733         skb->data    += off;
734         skb->tail    += off;
735         skb->mac.raw += off;
736         skb->h.raw   += off;
737         skb->nh.raw  += off;
738         skb->cloned   = 0;
739         skb->nohdr    = 0;
740         atomic_set(&skb_shinfo(skb)->dataref, 1);
741         return 0;
742
743 nodata:
744         return -ENOMEM;
745 }
746
747 /* Make private copy of skb with writable head and some headroom */
748
749 struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
750 {
751         struct sk_buff *skb2;
752         int delta = headroom - skb_headroom(skb);
753
754         if (delta <= 0)
755                 skb2 = pskb_copy(skb, GFP_ATOMIC);
756         else {
757                 skb2 = skb_clone(skb, GFP_ATOMIC);
758                 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
759                                              GFP_ATOMIC)) {
760                         kfree_skb(skb2);
761                         skb2 = NULL;
762                 }
763         }
764         return skb2;
765 }
766
767
768 /**
769  *      skb_copy_expand -       copy and expand sk_buff
770  *      @skb: buffer to copy
771  *      @newheadroom: new free bytes at head
772  *      @newtailroom: new free bytes at tail
773  *      @gfp_mask: allocation priority
774  *
775  *      Make a copy of both an &sk_buff and its data and while doing so
776  *      allocate additional space.
777  *
778  *      This is used when the caller wishes to modify the data and needs a
779  *      private copy of the data to alter as well as more space for new fields.
780  *      Returns %NULL on failure or the pointer to the buffer
781  *      on success. The returned buffer has a reference count of 1.
782  *
783  *      You must pass %GFP_ATOMIC as the allocation priority if this function
784  *      is called from an interrupt.
785  *
786  *      BUG ALERT: ip_summed is not copied. Why does this work? Is it used
787  *      only by netfilter in the cases when checksum is recalculated? --ANK
788  */
789 struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
790                                 int newheadroom, int newtailroom,
791                                 gfp_t gfp_mask)
792 {
793         /*
794          *      Allocate the copy buffer
795          */
796         struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
797                                       gfp_mask);
798         int head_copy_len, head_copy_off;
799
800         if (!n)
801                 return NULL;
802
803         skb_reserve(n, newheadroom);
804
805         /* Set the tail pointer and length */
806         skb_put(n, skb->len);
807
808         head_copy_len = skb_headroom(skb);
809         head_copy_off = 0;
810         if (newheadroom <= head_copy_len)
811                 head_copy_len = newheadroom;
812         else
813                 head_copy_off = newheadroom - head_copy_len;
814
815         /* Copy the linear header and data. */
816         if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
817                           skb->len + head_copy_len))
818                 BUG();
819
820         copy_skb_header(n, skb);
821
822         return n;
823 }
824
825 /**
826  *      skb_pad                 -       zero pad the tail of an skb
827  *      @skb: buffer to pad
828  *      @pad: space to pad
829  *
830  *      Ensure that a buffer is followed by a padding area that is zero
831  *      filled. Used by network drivers which may DMA or transfer data
832  *      beyond the buffer end onto the wire.
833  *
834  *      May return error in out of memory cases. The skb is freed on error.
835  */
836  
837 int skb_pad(struct sk_buff *skb, int pad)
838 {
839         int err;
840         int ntail;
841         
842         /* If the skbuff is non linear tailroom is always zero.. */
843         if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
844                 memset(skb->data+skb->len, 0, pad);
845                 return 0;
846         }
847
848         ntail = skb->data_len + pad - (skb->end - skb->tail);
849         if (likely(skb_cloned(skb) || ntail > 0)) {
850                 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
851                 if (unlikely(err))
852                         goto free_skb;
853         }
854
855         /* FIXME: The use of this function with non-linear skb's really needs
856          * to be audited.
857          */
858         err = skb_linearize(skb);
859         if (unlikely(err))
860                 goto free_skb;
861
862         memset(skb->data + skb->len, 0, pad);
863         return 0;
864
865 free_skb:
866         kfree_skb(skb);
867         return err;
868 }       
869  
870 /* Trims skb to length len. It can change skb pointers.
871  */
872
873 int ___pskb_trim(struct sk_buff *skb, unsigned int len)
874 {
875         struct sk_buff **fragp;
876         struct sk_buff *frag;
877         int offset = skb_headlen(skb);
878         int nfrags = skb_shinfo(skb)->nr_frags;
879         int i;
880         int err;
881
882         if (skb_cloned(skb) &&
883             unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
884                 return err;
885
886         i = 0;
887         if (offset >= len)
888                 goto drop_pages;
889
890         for (; i < nfrags; i++) {
891                 int end = offset + skb_shinfo(skb)->frags[i].size;
892
893                 if (end < len) {
894                         offset = end;
895                         continue;
896                 }
897
898                 skb_shinfo(skb)->frags[i++].size = len - offset;
899
900 drop_pages:
901                 skb_shinfo(skb)->nr_frags = i;
902
903                 for (; i < nfrags; i++)
904                         put_page(skb_shinfo(skb)->frags[i].page);
905
906                 if (skb_shinfo(skb)->frag_list)
907                         skb_drop_fraglist(skb);
908                 goto done;
909         }
910
911         for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
912              fragp = &frag->next) {
913                 int end = offset + frag->len;
914
915                 if (skb_shared(frag)) {
916                         struct sk_buff *nfrag;
917
918                         nfrag = skb_clone(frag, GFP_ATOMIC);
919                         if (unlikely(!nfrag))
920                                 return -ENOMEM;
921
922                         nfrag->next = frag->next;
923                         kfree_skb(frag);
924                         frag = nfrag;
925                         *fragp = frag;
926                 }
927
928                 if (end < len) {
929                         offset = end;
930                         continue;
931                 }
932
933                 if (end > len &&
934                     unlikely((err = pskb_trim(frag, len - offset))))
935                         return err;
936
937                 if (frag->next)
938                         skb_drop_list(&frag->next);
939                 break;
940         }
941
942 done:
943         if (len > skb_headlen(skb)) {
944                 skb->data_len -= skb->len - len;
945                 skb->len       = len;
946         } else {
947                 skb->len       = len;
948                 skb->data_len  = 0;
949                 skb->tail      = skb->data + len;
950         }
951
952         return 0;
953 }
954
955 /**
956  *      __pskb_pull_tail - advance tail of skb header
957  *      @skb: buffer to reallocate
958  *      @delta: number of bytes to advance tail
959  *
960  *      The function makes a sense only on a fragmented &sk_buff,
961  *      it expands header moving its tail forward and copying necessary
962  *      data from fragmented part.
963  *
964  *      &sk_buff MUST have reference count of 1.
965  *
966  *      Returns %NULL (and &sk_buff does not change) if pull failed
967  *      or value of new tail of skb in the case of success.
968  *
969  *      All the pointers pointing into skb header may change and must be
970  *      reloaded after call to this function.
971  */
972
973 /* Moves tail of skb head forward, copying data from fragmented part,
974  * when it is necessary.
975  * 1. It may fail due to malloc failure.
976  * 2. It may change skb pointers.
977  *
978  * It is pretty complicated. Luckily, it is called only in exceptional cases.
979  */
980 unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
981 {
982         /* If skb has not enough free space at tail, get new one
983          * plus 128 bytes for future expansions. If we have enough
984          * room at tail, reallocate without expansion only if skb is cloned.
985          */
986         int i, k, eat = (skb->tail + delta) - skb->end;
987
988         if (eat > 0 || skb_cloned(skb)) {
989                 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
990                                      GFP_ATOMIC))
991                         return NULL;
992         }
993
994         if (skb_copy_bits(skb, skb_headlen(skb), skb->tail, delta))
995                 BUG();
996
997         /* Optimization: no fragments, no reasons to preestimate
998          * size of pulled pages. Superb.
999          */
1000         if (!skb_shinfo(skb)->frag_list)
1001                 goto pull_pages;
1002
1003         /* Estimate size of pulled pages. */
1004         eat = delta;
1005         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1006                 if (skb_shinfo(skb)->frags[i].size >= eat)
1007                         goto pull_pages;
1008                 eat -= skb_shinfo(skb)->frags[i].size;
1009         }
1010
1011         /* If we need update frag list, we are in troubles.
1012          * Certainly, it possible to add an offset to skb data,
1013          * but taking into account that pulling is expected to
1014          * be very rare operation, it is worth to fight against
1015          * further bloating skb head and crucify ourselves here instead.
1016          * Pure masohism, indeed. 8)8)
1017          */
1018         if (eat) {
1019                 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1020                 struct sk_buff *clone = NULL;
1021                 struct sk_buff *insp = NULL;
1022
1023                 do {
1024                         BUG_ON(!list);
1025
1026                         if (list->len <= eat) {
1027                                 /* Eaten as whole. */
1028                                 eat -= list->len;
1029                                 list = list->next;
1030                                 insp = list;
1031                         } else {
1032                                 /* Eaten partially. */
1033
1034                                 if (skb_shared(list)) {
1035                                         /* Sucks! We need to fork list. :-( */
1036                                         clone = skb_clone(list, GFP_ATOMIC);
1037                                         if (!clone)
1038                                                 return NULL;
1039                                         insp = list->next;
1040                                         list = clone;
1041                                 } else {
1042                                         /* This may be pulled without
1043                                          * problems. */
1044                                         insp = list;
1045                                 }
1046                                 if (!pskb_pull(list, eat)) {
1047                                         if (clone)
1048                                                 kfree_skb(clone);
1049                                         return NULL;
1050                                 }
1051                                 break;
1052                         }
1053                 } while (eat);
1054
1055                 /* Free pulled out fragments. */
1056                 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1057                         skb_shinfo(skb)->frag_list = list->next;
1058                         kfree_skb(list);
1059                 }
1060                 /* And insert new clone at head. */
1061                 if (clone) {
1062                         clone->next = list;
1063                         skb_shinfo(skb)->frag_list = clone;
1064                 }
1065         }
1066         /* Success! Now we may commit changes to skb data. */
1067
1068 pull_pages:
1069         eat = delta;
1070         k = 0;
1071         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1072                 if (skb_shinfo(skb)->frags[i].size <= eat) {
1073                         put_page(skb_shinfo(skb)->frags[i].page);
1074                         eat -= skb_shinfo(skb)->frags[i].size;
1075                 } else {
1076                         skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1077                         if (eat) {
1078                                 skb_shinfo(skb)->frags[k].page_offset += eat;
1079                                 skb_shinfo(skb)->frags[k].size -= eat;
1080                                 eat = 0;
1081                         }
1082                         k++;
1083                 }
1084         }
1085         skb_shinfo(skb)->nr_frags = k;
1086
1087         skb->tail     += delta;
1088         skb->data_len -= delta;
1089
1090         return skb->tail;
1091 }
1092
1093 /* Copy some data bits from skb to kernel buffer. */
1094
1095 int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1096 {
1097         int i, copy;
1098         int start = skb_headlen(skb);
1099
1100         if (offset > (int)skb->len - len)
1101                 goto fault;
1102
1103         /* Copy header. */
1104         if ((copy = start - offset) > 0) {
1105                 if (copy > len)
1106                         copy = len;
1107                 memcpy(to, skb->data + offset, copy);
1108                 if ((len -= copy) == 0)
1109                         return 0;
1110                 offset += copy;
1111                 to     += copy;
1112         }
1113
1114         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1115                 int end;
1116
1117                 BUG_TRAP(start <= offset + len);
1118
1119                 end = start + skb_shinfo(skb)->frags[i].size;
1120                 if ((copy = end - offset) > 0) {
1121                         u8 *vaddr;
1122
1123                         if (copy > len)
1124                                 copy = len;
1125
1126                         vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1127                         memcpy(to,
1128                                vaddr + skb_shinfo(skb)->frags[i].page_offset+
1129                                offset - start, copy);
1130                         kunmap_skb_frag(vaddr);
1131
1132                         if ((len -= copy) == 0)
1133                                 return 0;
1134                         offset += copy;
1135                         to     += copy;
1136                 }
1137                 start = end;
1138         }
1139
1140         if (skb_shinfo(skb)->frag_list) {
1141                 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1142
1143                 for (; list; list = list->next) {
1144                         int end;
1145
1146                         BUG_TRAP(start <= offset + len);
1147
1148                         end = start + list->len;
1149                         if ((copy = end - offset) > 0) {
1150                                 if (copy > len)
1151                                         copy = len;
1152                                 if (skb_copy_bits(list, offset - start,
1153                                                   to, copy))
1154                                         goto fault;
1155                                 if ((len -= copy) == 0)
1156                                         return 0;
1157                                 offset += copy;
1158                                 to     += copy;
1159                         }
1160                         start = end;
1161                 }
1162         }
1163         if (!len)
1164                 return 0;
1165
1166 fault:
1167         return -EFAULT;
1168 }
1169
1170 /**
1171  *      skb_store_bits - store bits from kernel buffer to skb
1172  *      @skb: destination buffer
1173  *      @offset: offset in destination
1174  *      @from: source buffer
1175  *      @len: number of bytes to copy
1176  *
1177  *      Copy the specified number of bytes from the source buffer to the
1178  *      destination skb.  This function handles all the messy bits of
1179  *      traversing fragment lists and such.
1180  */
1181
1182 int skb_store_bits(const struct sk_buff *skb, int offset, void *from, int len)
1183 {
1184         int i, copy;
1185         int start = skb_headlen(skb);
1186
1187         if (offset > (int)skb->len - len)
1188                 goto fault;
1189
1190         if ((copy = start - offset) > 0) {
1191                 if (copy > len)
1192                         copy = len;
1193                 memcpy(skb->data + offset, from, copy);
1194                 if ((len -= copy) == 0)
1195                         return 0;
1196                 offset += copy;
1197                 from += copy;
1198         }
1199
1200         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1201                 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1202                 int end;
1203
1204                 BUG_TRAP(start <= offset + len);
1205
1206                 end = start + frag->size;
1207                 if ((copy = end - offset) > 0) {
1208                         u8 *vaddr;
1209
1210                         if (copy > len)
1211                                 copy = len;
1212
1213                         vaddr = kmap_skb_frag(frag);
1214                         memcpy(vaddr + frag->page_offset + offset - start,
1215                                from, copy);
1216                         kunmap_skb_frag(vaddr);
1217
1218                         if ((len -= copy) == 0)
1219                                 return 0;
1220                         offset += copy;
1221                         from += copy;
1222                 }
1223                 start = end;
1224         }
1225
1226         if (skb_shinfo(skb)->frag_list) {
1227                 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1228
1229                 for (; list; list = list->next) {
1230                         int end;
1231
1232                         BUG_TRAP(start <= offset + len);
1233
1234                         end = start + list->len;
1235                         if ((copy = end - offset) > 0) {
1236                                 if (copy > len)
1237                                         copy = len;
1238                                 if (skb_store_bits(list, offset - start,
1239                                                    from, copy))
1240                                         goto fault;
1241                                 if ((len -= copy) == 0)
1242                                         return 0;
1243                                 offset += copy;
1244                                 from += copy;
1245                         }
1246                         start = end;
1247                 }
1248         }
1249         if (!len)
1250                 return 0;
1251
1252 fault:
1253         return -EFAULT;
1254 }
1255
1256 EXPORT_SYMBOL(skb_store_bits);
1257
1258 /* Checksum skb data. */
1259
1260 unsigned int skb_checksum(const struct sk_buff *skb, int offset,
1261                           int len, unsigned int csum)
1262 {
1263         int start = skb_headlen(skb);
1264         int i, copy = start - offset;
1265         int pos = 0;
1266
1267         /* Checksum header. */
1268         if (copy > 0) {
1269                 if (copy > len)
1270                         copy = len;
1271                 csum = csum_partial(skb->data + offset, copy, csum);
1272                 if ((len -= copy) == 0)
1273                         return csum;
1274                 offset += copy;
1275                 pos     = copy;
1276         }
1277
1278         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1279                 int end;
1280
1281                 BUG_TRAP(start <= offset + len);
1282
1283                 end = start + skb_shinfo(skb)->frags[i].size;
1284                 if ((copy = end - offset) > 0) {
1285                         unsigned int csum2;
1286                         u8 *vaddr;
1287                         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1288
1289                         if (copy > len)
1290                                 copy = len;
1291                         vaddr = kmap_skb_frag(frag);
1292                         csum2 = csum_partial(vaddr + frag->page_offset +
1293                                              offset - start, copy, 0);
1294                         kunmap_skb_frag(vaddr);
1295                         csum = csum_block_add(csum, csum2, pos);
1296                         if (!(len -= copy))
1297                                 return csum;
1298                         offset += copy;
1299                         pos    += 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                         BUG_TRAP(start <= offset + len);
1311
1312                         end = start + list->len;
1313                         if ((copy = end - offset) > 0) {
1314                                 unsigned int csum2;
1315                                 if (copy > len)
1316                                         copy = len;
1317                                 csum2 = skb_checksum(list, offset - start,
1318                                                      copy, 0);
1319                                 csum = csum_block_add(csum, csum2, pos);
1320                                 if ((len -= copy) == 0)
1321                                         return csum;
1322                                 offset += copy;
1323                                 pos    += copy;
1324                         }
1325                         start = end;
1326                 }
1327         }
1328         BUG_ON(len);
1329
1330         return csum;
1331 }
1332
1333 /* Both of above in one bottle. */
1334
1335 unsigned int skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1336                                     u8 *to, int len, unsigned int csum)
1337 {
1338         int start = skb_headlen(skb);
1339         int i, copy = start - offset;
1340         int pos = 0;
1341
1342         /* Copy header. */
1343         if (copy > 0) {
1344                 if (copy > len)
1345                         copy = len;
1346                 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1347                                                  copy, csum);
1348                 if ((len -= copy) == 0)
1349                         return csum;
1350                 offset += copy;
1351                 to     += copy;
1352                 pos     = copy;
1353         }
1354
1355         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1356                 int end;
1357
1358                 BUG_TRAP(start <= offset + len);
1359
1360                 end = start + skb_shinfo(skb)->frags[i].size;
1361                 if ((copy = end - offset) > 0) {
1362                         unsigned int csum2;
1363                         u8 *vaddr;
1364                         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1365
1366                         if (copy > len)
1367                                 copy = len;
1368                         vaddr = kmap_skb_frag(frag);
1369                         csum2 = csum_partial_copy_nocheck(vaddr +
1370                                                           frag->page_offset +
1371                                                           offset - start, to,
1372                                                           copy, 0);
1373                         kunmap_skb_frag(vaddr);
1374                         csum = csum_block_add(csum, csum2, pos);
1375                         if (!(len -= copy))
1376                                 return csum;
1377                         offset += copy;
1378                         to     += copy;
1379                         pos    += copy;
1380                 }
1381                 start = end;
1382         }
1383
1384         if (skb_shinfo(skb)->frag_list) {
1385                 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1386
1387                 for (; list; list = list->next) {
1388                         unsigned int csum2;
1389                         int end;
1390
1391                         BUG_TRAP(start <= offset + len);
1392
1393                         end = start + list->len;
1394                         if ((copy = end - offset) > 0) {
1395                                 if (copy > len)
1396                                         copy = len;
1397                                 csum2 = skb_copy_and_csum_bits(list,
1398                                                                offset - start,
1399                                                                to, copy, 0);
1400                                 csum = csum_block_add(csum, csum2, pos);
1401                                 if ((len -= copy) == 0)
1402                                         return csum;
1403                                 offset += copy;
1404                                 to     += copy;
1405                                 pos    += copy;
1406                         }
1407                         start = end;
1408                 }
1409         }
1410         BUG_ON(len);
1411         return csum;
1412 }
1413
1414 void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1415 {
1416         unsigned int csum;
1417         long csstart;
1418
1419         if (skb->ip_summed == CHECKSUM_HW)
1420                 csstart = skb->h.raw - skb->data;
1421         else
1422                 csstart = skb_headlen(skb);
1423
1424         BUG_ON(csstart > skb_headlen(skb));
1425
1426         memcpy(to, skb->data, csstart);
1427
1428         csum = 0;
1429         if (csstart != skb->len)
1430                 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1431                                               skb->len - csstart, 0);
1432
1433         if (skb->ip_summed == CHECKSUM_HW) {
1434                 long csstuff = csstart + skb->csum;
1435
1436                 *((unsigned short *)(to + csstuff)) = csum_fold(csum);
1437         }
1438 }
1439
1440 /**
1441  *      skb_dequeue - remove from the head of the queue
1442  *      @list: list to dequeue from
1443  *
1444  *      Remove the head of the list. The list lock is taken so the function
1445  *      may be used safely with other locking list functions. The head item is
1446  *      returned or %NULL if the list is empty.
1447  */
1448
1449 struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1450 {
1451         unsigned long flags;
1452         struct sk_buff *result;
1453
1454         spin_lock_irqsave(&list->lock, flags);
1455         result = __skb_dequeue(list);
1456         spin_unlock_irqrestore(&list->lock, flags);
1457         return result;
1458 }
1459
1460 /**
1461  *      skb_dequeue_tail - remove from the tail of the queue
1462  *      @list: list to dequeue from
1463  *
1464  *      Remove the tail of the list. The list lock is taken so the function
1465  *      may be used safely with other locking list functions. The tail item is
1466  *      returned or %NULL if the list is empty.
1467  */
1468 struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1469 {
1470         unsigned long flags;
1471         struct sk_buff *result;
1472
1473         spin_lock_irqsave(&list->lock, flags);
1474         result = __skb_dequeue_tail(list);
1475         spin_unlock_irqrestore(&list->lock, flags);
1476         return result;
1477 }
1478
1479 /**
1480  *      skb_queue_purge - empty a list
1481  *      @list: list to empty
1482  *
1483  *      Delete all buffers on an &sk_buff list. Each buffer is removed from
1484  *      the list and one reference dropped. This function takes the list
1485  *      lock and is atomic with respect to other list locking functions.
1486  */
1487 void skb_queue_purge(struct sk_buff_head *list)
1488 {
1489         struct sk_buff *skb;
1490         while ((skb = skb_dequeue(list)) != NULL)
1491                 kfree_skb(skb);
1492 }
1493
1494 /**
1495  *      skb_queue_head - queue a buffer at the list head
1496  *      @list: list to use
1497  *      @newsk: buffer to queue
1498  *
1499  *      Queue a buffer at the start of the list. This function takes the
1500  *      list lock and can be used safely with other locking &sk_buff functions
1501  *      safely.
1502  *
1503  *      A buffer cannot be placed on two lists at the same time.
1504  */
1505 void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1506 {
1507         unsigned long flags;
1508
1509         spin_lock_irqsave(&list->lock, flags);
1510         __skb_queue_head(list, newsk);
1511         spin_unlock_irqrestore(&list->lock, flags);
1512 }
1513
1514 /**
1515  *      skb_queue_tail - queue a buffer at the list tail
1516  *      @list: list to use
1517  *      @newsk: buffer to queue
1518  *
1519  *      Queue a buffer at the tail of the list. This function takes the
1520  *      list lock and can be used safely with other locking &sk_buff functions
1521  *      safely.
1522  *
1523  *      A buffer cannot be placed on two lists at the same time.
1524  */
1525 void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1526 {
1527         unsigned long flags;
1528
1529         spin_lock_irqsave(&list->lock, flags);
1530         __skb_queue_tail(list, newsk);
1531         spin_unlock_irqrestore(&list->lock, flags);
1532 }
1533
1534 /**
1535  *      skb_unlink      -       remove a buffer from a list
1536  *      @skb: buffer to remove
1537  *      @list: list to use
1538  *
1539  *      Remove a packet from a list. The list locks are taken and this
1540  *      function is atomic with respect to other list locked calls
1541  *
1542  *      You must know what list the SKB is on.
1543  */
1544 void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
1545 {
1546         unsigned long flags;
1547
1548         spin_lock_irqsave(&list->lock, flags);
1549         __skb_unlink(skb, list);
1550         spin_unlock_irqrestore(&list->lock, flags);
1551 }
1552
1553 /**
1554  *      skb_append      -       append a buffer
1555  *      @old: buffer to insert after
1556  *      @newsk: buffer to insert
1557  *      @list: list to use
1558  *
1559  *      Place a packet after a given packet in a list. The list locks are taken
1560  *      and this function is atomic with respect to other list locked calls.
1561  *      A buffer cannot be placed on two lists at the same time.
1562  */
1563 void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
1564 {
1565         unsigned long flags;
1566
1567         spin_lock_irqsave(&list->lock, flags);
1568         __skb_append(old, newsk, list);
1569         spin_unlock_irqrestore(&list->lock, flags);
1570 }
1571
1572
1573 /**
1574  *      skb_insert      -       insert a buffer
1575  *      @old: buffer to insert before
1576  *      @newsk: buffer to insert
1577  *      @list: list to use
1578  *
1579  *      Place a packet before a given packet in a list. The list locks are
1580  *      taken and this function is atomic with respect to other list locked
1581  *      calls.
1582  *
1583  *      A buffer cannot be placed on two lists at the same time.
1584  */
1585 void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
1586 {
1587         unsigned long flags;
1588
1589         spin_lock_irqsave(&list->lock, flags);
1590         __skb_insert(newsk, old->prev, old, list);
1591         spin_unlock_irqrestore(&list->lock, flags);
1592 }
1593
1594 #if 0
1595 /*
1596  *      Tune the memory allocator for a new MTU size.
1597  */
1598 void skb_add_mtu(int mtu)
1599 {
1600         /* Must match allocation in alloc_skb */
1601         mtu = SKB_DATA_ALIGN(mtu) + sizeof(struct skb_shared_info);
1602
1603         kmem_add_cache_size(mtu);
1604 }
1605 #endif
1606
1607 static inline void skb_split_inside_header(struct sk_buff *skb,
1608                                            struct sk_buff* skb1,
1609                                            const u32 len, const int pos)
1610 {
1611         int i;
1612
1613         memcpy(skb_put(skb1, pos - len), skb->data + len, pos - len);
1614
1615         /* And move data appendix as is. */
1616         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1617                 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
1618
1619         skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
1620         skb_shinfo(skb)->nr_frags  = 0;
1621         skb1->data_len             = skb->data_len;
1622         skb1->len                  += skb1->data_len;
1623         skb->data_len              = 0;
1624         skb->len                   = len;
1625         skb->tail                  = skb->data + len;
1626 }
1627
1628 static inline void skb_split_no_header(struct sk_buff *skb,
1629                                        struct sk_buff* skb1,
1630                                        const u32 len, int pos)
1631 {
1632         int i, k = 0;
1633         const int nfrags = skb_shinfo(skb)->nr_frags;
1634
1635         skb_shinfo(skb)->nr_frags = 0;
1636         skb1->len                 = skb1->data_len = skb->len - len;
1637         skb->len                  = len;
1638         skb->data_len             = len - pos;
1639
1640         for (i = 0; i < nfrags; i++) {
1641                 int size = skb_shinfo(skb)->frags[i].size;
1642
1643                 if (pos + size > len) {
1644                         skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
1645
1646                         if (pos < len) {
1647                                 /* Split frag.
1648                                  * We have two variants in this case:
1649                                  * 1. Move all the frag to the second
1650                                  *    part, if it is possible. F.e.
1651                                  *    this approach is mandatory for TUX,
1652                                  *    where splitting is expensive.
1653                                  * 2. Split is accurately. We make this.
1654                                  */
1655                                 get_page(skb_shinfo(skb)->frags[i].page);
1656                                 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
1657                                 skb_shinfo(skb1)->frags[0].size -= len - pos;
1658                                 skb_shinfo(skb)->frags[i].size  = len - pos;
1659                                 skb_shinfo(skb)->nr_frags++;
1660                         }
1661                         k++;
1662                 } else
1663                         skb_shinfo(skb)->nr_frags++;
1664                 pos += size;
1665         }
1666         skb_shinfo(skb1)->nr_frags = k;
1667 }
1668
1669 /**
1670  * skb_split - Split fragmented skb to two parts at length len.
1671  * @skb: the buffer to split
1672  * @skb1: the buffer to receive the second part
1673  * @len: new length for skb
1674  */
1675 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
1676 {
1677         int pos = skb_headlen(skb);
1678
1679         if (len < pos)  /* Split line is inside header. */
1680                 skb_split_inside_header(skb, skb1, len, pos);
1681         else            /* Second chunk has no header, nothing to copy. */
1682                 skb_split_no_header(skb, skb1, len, pos);
1683 }
1684
1685 /**
1686  * skb_prepare_seq_read - Prepare a sequential read of skb data
1687  * @skb: the buffer to read
1688  * @from: lower offset of data to be read
1689  * @to: upper offset of data to be read
1690  * @st: state variable
1691  *
1692  * Initializes the specified state variable. Must be called before
1693  * invoking skb_seq_read() for the first time.
1694  */
1695 void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
1696                           unsigned int to, struct skb_seq_state *st)
1697 {
1698         st->lower_offset = from;
1699         st->upper_offset = to;
1700         st->root_skb = st->cur_skb = skb;
1701         st->frag_idx = st->stepped_offset = 0;
1702         st->frag_data = NULL;
1703 }
1704
1705 /**
1706  * skb_seq_read - Sequentially read skb data
1707  * @consumed: number of bytes consumed by the caller so far
1708  * @data: destination pointer for data to be returned
1709  * @st: state variable
1710  *
1711  * Reads a block of skb data at &consumed relative to the
1712  * lower offset specified to skb_prepare_seq_read(). Assigns
1713  * the head of the data block to &data and returns the length
1714  * of the block or 0 if the end of the skb data or the upper
1715  * offset has been reached.
1716  *
1717  * The caller is not required to consume all of the data
1718  * returned, i.e. &consumed is typically set to the number
1719  * of bytes already consumed and the next call to
1720  * skb_seq_read() will return the remaining part of the block.
1721  *
1722  * Note: The size of each block of data returned can be arbitary,
1723  *       this limitation is the cost for zerocopy seqeuental
1724  *       reads of potentially non linear data.
1725  *
1726  * Note: Fragment lists within fragments are not implemented
1727  *       at the moment, state->root_skb could be replaced with
1728  *       a stack for this purpose.
1729  */
1730 unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
1731                           struct skb_seq_state *st)
1732 {
1733         unsigned int block_limit, abs_offset = consumed + st->lower_offset;
1734         skb_frag_t *frag;
1735
1736         if (unlikely(abs_offset >= st->upper_offset))
1737                 return 0;
1738
1739 next_skb:
1740         block_limit = skb_headlen(st->cur_skb);
1741
1742         if (abs_offset < block_limit) {
1743                 *data = st->cur_skb->data + abs_offset;
1744                 return block_limit - abs_offset;
1745         }
1746
1747         if (st->frag_idx == 0 && !st->frag_data)
1748                 st->stepped_offset += skb_headlen(st->cur_skb);
1749
1750         while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
1751                 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
1752                 block_limit = frag->size + st->stepped_offset;
1753
1754                 if (abs_offset < block_limit) {
1755                         if (!st->frag_data)
1756                                 st->frag_data = kmap_skb_frag(frag);
1757
1758                         *data = (u8 *) st->frag_data + frag->page_offset +
1759                                 (abs_offset - st->stepped_offset);
1760
1761                         return block_limit - abs_offset;
1762                 }
1763
1764                 if (st->frag_data) {
1765                         kunmap_skb_frag(st->frag_data);
1766                         st->frag_data = NULL;
1767                 }
1768
1769                 st->frag_idx++;
1770                 st->stepped_offset += frag->size;
1771         }
1772
1773         if (st->cur_skb->next) {
1774                 st->cur_skb = st->cur_skb->next;
1775                 st->frag_idx = 0;
1776                 goto next_skb;
1777         } else if (st->root_skb == st->cur_skb &&
1778                    skb_shinfo(st->root_skb)->frag_list) {
1779                 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
1780                 goto next_skb;
1781         }
1782
1783         return 0;
1784 }
1785
1786 /**
1787  * skb_abort_seq_read - Abort a sequential read of skb data
1788  * @st: state variable
1789  *
1790  * Must be called if skb_seq_read() was not called until it
1791  * returned 0.
1792  */
1793 void skb_abort_seq_read(struct skb_seq_state *st)
1794 {
1795         if (st->frag_data)
1796                 kunmap_skb_frag(st->frag_data);
1797 }
1798
1799 #define TS_SKB_CB(state)        ((struct skb_seq_state *) &((state)->cb))
1800
1801 static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
1802                                           struct ts_config *conf,
1803                                           struct ts_state *state)
1804 {
1805         return skb_seq_read(offset, text, TS_SKB_CB(state));
1806 }
1807
1808 static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
1809 {
1810         skb_abort_seq_read(TS_SKB_CB(state));
1811 }
1812
1813 /**
1814  * skb_find_text - Find a text pattern in skb data
1815  * @skb: the buffer to look in
1816  * @from: search offset
1817  * @to: search limit
1818  * @config: textsearch configuration
1819  * @state: uninitialized textsearch state variable
1820  *
1821  * Finds a pattern in the skb data according to the specified
1822  * textsearch configuration. Use textsearch_next() to retrieve
1823  * subsequent occurrences of the pattern. Returns the offset
1824  * to the first occurrence or UINT_MAX if no match was found.
1825  */
1826 unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
1827                            unsigned int to, struct ts_config *config,
1828                            struct ts_state *state)
1829 {
1830         unsigned int ret;
1831
1832         config->get_next_block = skb_ts_get_next_block;
1833         config->finish = skb_ts_finish;
1834
1835         skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
1836
1837         ret = textsearch_find(config, state);
1838         return (ret <= to - from ? ret : UINT_MAX);
1839 }
1840
1841 /**
1842  * skb_append_datato_frags: - append the user data to a skb
1843  * @sk: sock  structure
1844  * @skb: skb structure to be appened with user data.
1845  * @getfrag: call back function to be used for getting the user data
1846  * @from: pointer to user message iov
1847  * @length: length of the iov message
1848  *
1849  * Description: This procedure append the user data in the fragment part
1850  * of the skb if any page alloc fails user this procedure returns  -ENOMEM
1851  */
1852 int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
1853                         int (*getfrag)(void *from, char *to, int offset,
1854                                         int len, int odd, struct sk_buff *skb),
1855                         void *from, int length)
1856 {
1857         int frg_cnt = 0;
1858         skb_frag_t *frag = NULL;
1859         struct page *page = NULL;
1860         int copy, left;
1861         int offset = 0;
1862         int ret;
1863
1864         do {
1865                 /* Return error if we don't have space for new frag */
1866                 frg_cnt = skb_shinfo(skb)->nr_frags;
1867                 if (frg_cnt >= MAX_SKB_FRAGS)
1868                         return -EFAULT;
1869
1870                 /* allocate a new page for next frag */
1871                 page = alloc_pages(sk->sk_allocation, 0);
1872
1873                 /* If alloc_page fails just return failure and caller will
1874                  * free previous allocated pages by doing kfree_skb()
1875                  */
1876                 if (page == NULL)
1877                         return -ENOMEM;
1878
1879                 /* initialize the next frag */
1880                 sk->sk_sndmsg_page = page;
1881                 sk->sk_sndmsg_off = 0;
1882                 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
1883                 skb->truesize += PAGE_SIZE;
1884                 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
1885
1886                 /* get the new initialized frag */
1887                 frg_cnt = skb_shinfo(skb)->nr_frags;
1888                 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
1889
1890                 /* copy the user data to page */
1891                 left = PAGE_SIZE - frag->page_offset;
1892                 copy = (length > left)? left : length;
1893
1894                 ret = getfrag(from, (page_address(frag->page) +
1895                             frag->page_offset + frag->size),
1896                             offset, copy, 0, skb);
1897                 if (ret < 0)
1898                         return -EFAULT;
1899
1900                 /* copy was successful so update the size parameters */
1901                 sk->sk_sndmsg_off += copy;
1902                 frag->size += copy;
1903                 skb->len += copy;
1904                 skb->data_len += copy;
1905                 offset += copy;
1906                 length -= copy;
1907
1908         } while (length > 0);
1909
1910         return 0;
1911 }
1912
1913 /**
1914  *      skb_pull_rcsum - pull skb and update receive checksum
1915  *      @skb: buffer to update
1916  *      @start: start of data before pull
1917  *      @len: length of data pulled
1918  *
1919  *      This function performs an skb_pull on the packet and updates
1920  *      update the CHECKSUM_HW checksum.  It should be used on receive
1921  *      path processing instead of skb_pull unless you know that the
1922  *      checksum difference is zero (e.g., a valid IP header) or you
1923  *      are setting ip_summed to CHECKSUM_NONE.
1924  */
1925 unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
1926 {
1927         BUG_ON(len > skb->len);
1928         skb->len -= len;
1929         BUG_ON(skb->len < skb->data_len);
1930         skb_postpull_rcsum(skb, skb->data, len);
1931         return skb->data += len;
1932 }
1933
1934 EXPORT_SYMBOL_GPL(skb_pull_rcsum);
1935
1936 /**
1937  *      skb_segment - Perform protocol segmentation on skb.
1938  *      @skb: buffer to segment
1939  *      @features: features for the output path (see dev->features)
1940  *
1941  *      This function performs segmentation on the given skb.  It returns
1942  *      the segment at the given position.  It returns NULL if there are
1943  *      no more segments to generate, or when an error is encountered.
1944  */
1945 struct sk_buff *skb_segment(struct sk_buff *skb, int features)
1946 {
1947         struct sk_buff *segs = NULL;
1948         struct sk_buff *tail = NULL;
1949         unsigned int mss = skb_shinfo(skb)->gso_size;
1950         unsigned int doffset = skb->data - skb->mac.raw;
1951         unsigned int offset = doffset;
1952         unsigned int headroom;
1953         unsigned int len;
1954         int sg = features & NETIF_F_SG;
1955         int nfrags = skb_shinfo(skb)->nr_frags;
1956         int err = -ENOMEM;
1957         int i = 0;
1958         int pos;
1959
1960         __skb_push(skb, doffset);
1961         headroom = skb_headroom(skb);
1962         pos = skb_headlen(skb);
1963
1964         do {
1965                 struct sk_buff *nskb;
1966                 skb_frag_t *frag;
1967                 int hsize;
1968                 int k;
1969                 int size;
1970
1971                 len = skb->len - offset;
1972                 if (len > mss)
1973                         len = mss;
1974
1975                 hsize = skb_headlen(skb) - offset;
1976                 if (hsize < 0)
1977                         hsize = 0;
1978                 if (hsize > len || !sg)
1979                         hsize = len;
1980
1981                 nskb = alloc_skb(hsize + doffset + headroom, GFP_ATOMIC);
1982                 if (unlikely(!nskb))
1983                         goto err;
1984
1985                 if (segs)
1986                         tail->next = nskb;
1987                 else
1988                         segs = nskb;
1989                 tail = nskb;
1990
1991                 nskb->dev = skb->dev;
1992                 nskb->priority = skb->priority;
1993                 nskb->protocol = skb->protocol;
1994                 nskb->dst = dst_clone(skb->dst);
1995                 memcpy(nskb->cb, skb->cb, sizeof(skb->cb));
1996                 nskb->pkt_type = skb->pkt_type;
1997                 nskb->mac_len = skb->mac_len;
1998
1999                 skb_reserve(nskb, headroom);
2000                 nskb->mac.raw = nskb->data;
2001                 nskb->nh.raw = nskb->data + skb->mac_len;
2002                 nskb->h.raw = nskb->nh.raw + (skb->h.raw - skb->nh.raw);
2003                 memcpy(skb_put(nskb, doffset), skb->data, doffset);
2004
2005                 if (!sg) {
2006                         nskb->csum = skb_copy_and_csum_bits(skb, offset,
2007                                                             skb_put(nskb, len),
2008                                                             len, 0);
2009                         continue;
2010                 }
2011
2012                 frag = skb_shinfo(nskb)->frags;
2013                 k = 0;
2014
2015                 nskb->ip_summed = CHECKSUM_HW;
2016                 nskb->csum = skb->csum;
2017                 memcpy(skb_put(nskb, hsize), skb->data + offset, hsize);
2018
2019                 while (pos < offset + len) {
2020                         BUG_ON(i >= nfrags);
2021
2022                         *frag = skb_shinfo(skb)->frags[i];
2023                         get_page(frag->page);
2024                         size = frag->size;
2025
2026                         if (pos < offset) {
2027                                 frag->page_offset += offset - pos;
2028                                 frag->size -= offset - pos;
2029                         }
2030
2031                         k++;
2032
2033                         if (pos + size <= offset + len) {
2034                                 i++;
2035                                 pos += size;
2036                         } else {
2037                                 frag->size -= pos + size - (offset + len);
2038                                 break;
2039                         }
2040
2041                         frag++;
2042                 }
2043
2044                 skb_shinfo(nskb)->nr_frags = k;
2045                 nskb->data_len = len - hsize;
2046                 nskb->len += nskb->data_len;
2047                 nskb->truesize += nskb->data_len;
2048         } while ((offset += len) < skb->len);
2049
2050         return segs;
2051
2052 err:
2053         while ((skb = segs)) {
2054                 segs = skb->next;
2055                 kfree(skb);
2056         }
2057         return ERR_PTR(err);
2058 }
2059
2060 EXPORT_SYMBOL_GPL(skb_segment);
2061
2062 void __init skb_init(void)
2063 {
2064         skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2065                                               sizeof(struct sk_buff),
2066                                               0,
2067                                               SLAB_HWCACHE_ALIGN,
2068                                               NULL, NULL);
2069         if (!skbuff_head_cache)
2070                 panic("cannot create skbuff cache");
2071
2072         skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2073                                                 (2*sizeof(struct sk_buff)) +
2074                                                 sizeof(atomic_t),
2075                                                 0,
2076                                                 SLAB_HWCACHE_ALIGN,
2077                                                 NULL, NULL);
2078         if (!skbuff_fclone_cache)
2079                 panic("cannot create skbuff cache");
2080 }
2081
2082 EXPORT_SYMBOL(___pskb_trim);
2083 EXPORT_SYMBOL(__kfree_skb);
2084 EXPORT_SYMBOL(kfree_skb);
2085 EXPORT_SYMBOL(__pskb_pull_tail);
2086 EXPORT_SYMBOL(__alloc_skb);
2087 EXPORT_SYMBOL(__netdev_alloc_skb);
2088 EXPORT_SYMBOL(pskb_copy);
2089 EXPORT_SYMBOL(pskb_expand_head);
2090 EXPORT_SYMBOL(skb_checksum);
2091 EXPORT_SYMBOL(skb_clone);
2092 EXPORT_SYMBOL(skb_clone_fraglist);
2093 EXPORT_SYMBOL(skb_copy);
2094 EXPORT_SYMBOL(skb_copy_and_csum_bits);
2095 EXPORT_SYMBOL(skb_copy_and_csum_dev);
2096 EXPORT_SYMBOL(skb_copy_bits);
2097 EXPORT_SYMBOL(skb_copy_expand);
2098 EXPORT_SYMBOL(skb_over_panic);
2099 EXPORT_SYMBOL(skb_pad);
2100 EXPORT_SYMBOL(skb_realloc_headroom);
2101 EXPORT_SYMBOL(skb_under_panic);
2102 EXPORT_SYMBOL(skb_dequeue);
2103 EXPORT_SYMBOL(skb_dequeue_tail);
2104 EXPORT_SYMBOL(skb_insert);
2105 EXPORT_SYMBOL(skb_queue_purge);
2106 EXPORT_SYMBOL(skb_queue_head);
2107 EXPORT_SYMBOL(skb_queue_tail);
2108 EXPORT_SYMBOL(skb_unlink);
2109 EXPORT_SYMBOL(skb_append);
2110 EXPORT_SYMBOL(skb_split);
2111 EXPORT_SYMBOL(skb_prepare_seq_read);
2112 EXPORT_SYMBOL(skb_seq_read);
2113 EXPORT_SYMBOL(skb_abort_seq_read);
2114 EXPORT_SYMBOL(skb_find_text);
2115 EXPORT_SYMBOL(skb_append_datato_frags);