Merge to Fedora Core 2 kernel-2.6.8-1.521
[linux-2.6.git] / include / linux / skbuff.h
1 /*
2  *      Definitions for the 'struct sk_buff' memory handlers.
3  *
4  *      Authors:
5  *              Alan Cox, <gw4pts@gw4pts.ampr.org>
6  *              Florian La Roche, <rzsfl@rz.uni-sb.de>
7  *
8  *      This program is free software; you can redistribute it and/or
9  *      modify it under the terms of the GNU General Public License
10  *      as published by the Free Software Foundation; either version
11  *      2 of the License, or (at your option) any later version.
12  */
13
14 #ifndef _LINUX_SKBUFF_H
15 #define _LINUX_SKBUFF_H
16
17 #include <linux/config.h>
18 #include <linux/kernel.h>
19 #include <linux/compiler.h>
20 #include <linux/time.h>
21 #include <linux/cache.h>
22
23 #include <asm/atomic.h>
24 #include <asm/types.h>
25 #include <linux/spinlock.h>
26 #include <linux/mm.h>
27 #include <linux/highmem.h>
28 #include <linux/poll.h>
29 #include <linux/net.h>
30 #include <net/checksum.h>
31
32 #define HAVE_ALLOC_SKB          /* For the drivers to know */
33 #define HAVE_ALIGNABLE_SKB      /* Ditto 8)                */
34 #define SLAB_SKB                /* Slabified skbuffs       */
35
36 #define CHECKSUM_NONE 0
37 #define CHECKSUM_HW 1
38 #define CHECKSUM_UNNECESSARY 2
39
40 #define SKB_DATA_ALIGN(X)       (((X) + (SMP_CACHE_BYTES - 1)) & \
41                                  ~(SMP_CACHE_BYTES - 1))
42 #define SKB_MAX_ORDER(X, ORDER) (((PAGE_SIZE << (ORDER)) - (X) - \
43                                   sizeof(struct skb_shared_info)) & \
44                                   ~(SMP_CACHE_BYTES - 1))
45 #define SKB_MAX_HEAD(X)         (SKB_MAX_ORDER((X), 0))
46 #define SKB_MAX_ALLOC           (SKB_MAX_ORDER(0, 2))
47
48 /* A. Checksumming of received packets by device.
49  *
50  *      NONE: device failed to checksum this packet.
51  *              skb->csum is undefined.
52  *
53  *      UNNECESSARY: device parsed packet and wouldbe verified checksum.
54  *              skb->csum is undefined.
55  *            It is bad option, but, unfortunately, many of vendors do this.
56  *            Apparently with secret goal to sell you new device, when you
57  *            will add new protocol to your host. F.e. IPv6. 8)
58  *
59  *      HW: the most generic way. Device supplied checksum of _all_
60  *          the packet as seen by netif_rx in skb->csum.
61  *          NOTE: Even if device supports only some protocols, but
62  *          is able to produce some skb->csum, it MUST use HW,
63  *          not UNNECESSARY.
64  *
65  * B. Checksumming on output.
66  *
67  *      NONE: skb is checksummed by protocol or csum is not required.
68  *
69  *      HW: device is required to csum packet as seen by hard_start_xmit
70  *      from skb->h.raw to the end and to record the checksum
71  *      at skb->h.raw+skb->csum.
72  *
73  *      Device must show its capabilities in dev->features, set
74  *      at device setup time.
75  *      NETIF_F_HW_CSUM - it is clever device, it is able to checksum
76  *                        everything.
77  *      NETIF_F_NO_CSUM - loopback or reliable single hop media.
78  *      NETIF_F_IP_CSUM - device is dumb. It is able to csum only
79  *                        TCP/UDP over IPv4. Sigh. Vendors like this
80  *                        way by an unknown reason. Though, see comment above
81  *                        about CHECKSUM_UNNECESSARY. 8)
82  *
83  *      Any questions? No questions, good.              --ANK
84  */
85
86 #ifdef __i386__
87 #define NET_CALLER(arg) (*(((void **)&arg) - 1))
88 #else
89 #define NET_CALLER(arg) __builtin_return_address(0)
90 #endif
91
92 #ifdef CONFIG_NETFILTER
93 struct nf_conntrack {
94         atomic_t use;
95         void (*destroy)(struct nf_conntrack *);
96 };
97
98 struct nf_ct_info {
99         struct nf_conntrack *master;
100 };
101
102 #ifdef CONFIG_BRIDGE_NETFILTER
103 struct nf_bridge_info {
104         atomic_t use;
105         struct net_device *physindev;
106         struct net_device *physoutdev;
107 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
108         struct net_device *netoutdev;
109 #endif
110         unsigned int mask;
111         unsigned long data[32 / sizeof(unsigned long)];
112 };
113 #endif
114
115 #endif
116
117 struct sk_buff_head {
118         /* These two members must be first. */
119         struct sk_buff  *next;
120         struct sk_buff  *prev;
121
122         __u32           qlen;
123         spinlock_t      lock;
124 };
125
126 struct sk_buff;
127
128 /* To allow 64K frame to be packed as single skb without frag_list */
129 #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 2)
130
131 typedef struct skb_frag_struct skb_frag_t;
132
133 struct skb_frag_struct {
134         struct page *page;
135         __u16 page_offset;
136         __u16 size;
137 };
138
139 /* This data is invariant across clones and lives at
140  * the end of the header data, ie. at skb->end.
141  */
142 struct skb_shared_info {
143         atomic_t        dataref;
144         unsigned int    nr_frags;
145         unsigned short  tso_size;
146         unsigned short  tso_segs;
147         struct sk_buff  *frag_list;
148         skb_frag_t      frags[MAX_SKB_FRAGS];
149 };
150
151 /** 
152  *      struct sk_buff - socket buffer
153  *      @next: Next buffer in list
154  *      @prev: Previous buffer in list
155  *      @list: List we are on
156  *      @sk: Socket we are owned by
157  *      @stamp: Time we arrived
158  *      @dev: Device we arrived on/are leaving by
159  *      @input_dev: Device we arrived on
160  *      @real_dev: The real device we are using
161  *      @h: Transport layer header
162  *      @nh: Network layer header
163  *      @mac: Link layer header
164  *      @dst: FIXME: Describe this field
165  *      @cb: Control buffer. Free for use by every layer. Put private vars here
166  *      @len: Length of actual data
167  *      @data_len: Data length
168  *      @mac_len: Length of link layer header
169  *      @csum: Checksum
170  *      @__unused: Dead field, may be reused
171  *      @cloned: Head may be cloned (check refcnt to be sure)
172  *      @pkt_type: Packet class
173  *      @ip_summed: Driver fed us an IP checksum
174  *      @priority: Packet queueing priority
175  *      @users: User count - see {datagram,tcp}.c
176  *      @protocol: Packet protocol from driver
177  *      @security: Security level of packet
178  *      @truesize: Buffer size 
179  *      @head: Head of buffer
180  *      @data: Data head pointer
181  *      @tail: Tail pointer
182  *      @end: End pointer
183  *      @destructor: Destruct function
184  *      @nfmark: Can be used for communication between hooks
185  *      @nfcache: Cache info
186  *      @nfct: Associated connection, if any
187  *      @nf_debug: Netfilter debugging
188  *      @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
189  *      @private: Data which is private to the HIPPI implementation
190  *      @tc_index: Traffic control index
191  */
192
193 struct sk_buff {
194         /* These two members must be first. */
195         struct sk_buff          *next;
196         struct sk_buff          *prev;
197
198         struct sk_buff_head     *list;
199         struct sock             *sk;
200         struct timeval          stamp;
201         struct net_device       *dev;
202         struct net_device       *input_dev;
203         struct net_device       *real_dev;
204
205         union {
206                 struct tcphdr   *th;
207                 struct udphdr   *uh;
208                 struct icmphdr  *icmph;
209                 struct igmphdr  *igmph;
210                 struct iphdr    *ipiph;
211                 struct ipv6hdr  *ipv6h;
212                 unsigned char   *raw;
213         } h;
214
215         union {
216                 struct iphdr    *iph;
217                 struct ipv6hdr  *ipv6h;
218                 struct arphdr   *arph;
219                 unsigned char   *raw;
220         } nh;
221
222         union {
223                 struct ethhdr   *ethernet;
224                 unsigned char   *raw;
225         } mac;
226
227         struct  dst_entry       *dst;
228         struct  sec_path        *sp;
229
230         /*
231          * This is the control buffer. It is free to use for every
232          * layer. Please put your private variables there. If you
233          * want to keep them across layers you have to do a skb_clone()
234          * first. This is owned by whoever has the skb queued ATM.
235          */
236         char                    cb[40];
237
238         unsigned int            len,
239                                 data_len,
240                                 mac_len,
241                                 csum;
242         unsigned char           local_df,
243                                 cloned,
244                                 pkt_type,
245                                 ip_summed;
246         __u32                   priority;
247         unsigned short          protocol,
248                                 security;
249
250         void                    (*destructor)(struct sk_buff *skb);
251 #ifdef CONFIG_NETFILTER
252         unsigned long           nfmark;
253         __u32                   nfcache;
254         struct nf_ct_info       *nfct;
255 #ifdef CONFIG_NETFILTER_DEBUG
256         unsigned int            nf_debug;
257 #endif
258 #ifdef CONFIG_BRIDGE_NETFILTER
259         struct nf_bridge_info   *nf_bridge;
260 #endif
261 #endif /* CONFIG_NETFILTER */
262 #if defined(CONFIG_HIPPI)
263         union {
264                 __u32           ifield;
265         } private;
266 #endif
267 #ifdef CONFIG_NET_SCHED
268        __u32                    tc_index;        /* traffic control index */
269 #ifdef CONFIG_NET_CLS_ACT
270         __u32           tc_verd;               /* traffic control verdict */
271         __u32           tc_classid;            /* traffic control classid */
272  #endif
273
274 #endif
275         xid_t                   xid;                    /* VServer context ID */
276
277
278         /* These elements must be at the end, see alloc_skb() for details.  */
279         unsigned int            truesize;
280         atomic_t                users;
281         unsigned char           *head,
282                                 *data,
283                                 *tail,
284                                 *end;
285 };
286
287 #ifdef __KERNEL__
288 /*
289  *      Handling routines are only of interest to the kernel
290  */
291 #include <linux/slab.h>
292
293 #include <asm/system.h>
294
295 extern void            __kfree_skb(struct sk_buff *skb);
296 extern struct sk_buff *alloc_skb(unsigned int size, int priority);
297 extern void            kfree_skbmem(struct sk_buff *skb);
298 extern struct sk_buff *skb_clone(struct sk_buff *skb, int priority);
299 extern struct sk_buff *skb_copy(const struct sk_buff *skb, int priority);
300 extern struct sk_buff *pskb_copy(struct sk_buff *skb, int gfp_mask);
301 extern int             pskb_expand_head(struct sk_buff *skb,
302                                         int nhead, int ntail, int gfp_mask);
303 extern struct sk_buff *skb_realloc_headroom(struct sk_buff *skb,
304                                             unsigned int headroom);
305 extern struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
306                                        int newheadroom, int newtailroom,
307                                        int priority);
308 extern struct sk_buff *         skb_pad(struct sk_buff *skb, int pad);
309 #define dev_kfree_skb(a)        kfree_skb(a)
310 extern void           skb_over_panic(struct sk_buff *skb, int len,
311                                      void *here);
312 extern void           skb_under_panic(struct sk_buff *skb, int len,
313                                       void *here);
314
315 /* Internal */
316 #define skb_shinfo(SKB)         ((struct skb_shared_info *)((SKB)->end))
317
318 /**
319  *      skb_queue_empty - check if a queue is empty
320  *      @list: queue head
321  *
322  *      Returns true if the queue is empty, false otherwise.
323  */
324 static inline int skb_queue_empty(const struct sk_buff_head *list)
325 {
326         return list->next == (struct sk_buff *)list;
327 }
328
329 /**
330  *      skb_get - reference buffer
331  *      @skb: buffer to reference
332  *
333  *      Makes another reference to a socket buffer and returns a pointer
334  *      to the buffer.
335  */
336 static inline struct sk_buff *skb_get(struct sk_buff *skb)
337 {
338         atomic_inc(&skb->users);
339         return skb;
340 }
341
342 /*
343  * If users == 1, we are the only owner and are can avoid redundant
344  * atomic change.
345  */
346
347 /**
348  *      kfree_skb - free an sk_buff
349  *      @skb: buffer to free
350  *
351  *      Drop a reference to the buffer and free it if the usage count has
352  *      hit zero.
353  */
354 static inline void kfree_skb(struct sk_buff *skb)
355 {
356         if (atomic_read(&skb->users) == 1 || atomic_dec_and_test(&skb->users))
357                 __kfree_skb(skb);
358 }
359
360 /* Use this if you didn't touch the skb state [for fast switching] */
361 static inline void kfree_skb_fast(struct sk_buff *skb)
362 {
363         if (atomic_read(&skb->users) == 1 || atomic_dec_and_test(&skb->users))
364                 kfree_skbmem(skb);
365 }
366
367 /**
368  *      skb_cloned - is the buffer a clone
369  *      @skb: buffer to check
370  *
371  *      Returns true if the buffer was generated with skb_clone() and is
372  *      one of multiple shared copies of the buffer. Cloned buffers are
373  *      shared data so must not be written to under normal circumstances.
374  */
375 static inline int skb_cloned(const struct sk_buff *skb)
376 {
377         return skb->cloned && atomic_read(&skb_shinfo(skb)->dataref) != 1;
378 }
379
380 /**
381  *      skb_shared - is the buffer shared
382  *      @skb: buffer to check
383  *
384  *      Returns true if more than one person has a reference to this
385  *      buffer.
386  */
387 static inline int skb_shared(const struct sk_buff *skb)
388 {
389         return atomic_read(&skb->users) != 1;
390 }
391
392 /**
393  *      skb_share_check - check if buffer is shared and if so clone it
394  *      @skb: buffer to check
395  *      @pri: priority for memory allocation
396  *
397  *      If the buffer is shared the buffer is cloned and the old copy
398  *      drops a reference. A new clone with a single reference is returned.
399  *      If the buffer is not shared the original buffer is returned. When
400  *      being called from interrupt status or with spinlocks held pri must
401  *      be GFP_ATOMIC.
402  *
403  *      NULL is returned on a memory allocation failure.
404  */
405 static inline struct sk_buff *skb_share_check(struct sk_buff *skb, int pri)
406 {
407         might_sleep_if(pri & __GFP_WAIT);
408         if (skb_shared(skb)) {
409                 struct sk_buff *nskb = skb_clone(skb, pri);
410                 kfree_skb(skb);
411                 skb = nskb;
412         }
413         return skb;
414 }
415
416 /*
417  *      Copy shared buffers into a new sk_buff. We effectively do COW on
418  *      packets to handle cases where we have a local reader and forward
419  *      and a couple of other messy ones. The normal one is tcpdumping
420  *      a packet thats being forwarded.
421  */
422
423 /**
424  *      skb_unshare - make a copy of a shared buffer
425  *      @skb: buffer to check
426  *      @pri: priority for memory allocation
427  *
428  *      If the socket buffer is a clone then this function creates a new
429  *      copy of the data, drops a reference count on the old copy and returns
430  *      the new copy with the reference count at 1. If the buffer is not a clone
431  *      the original buffer is returned. When called with a spinlock held or
432  *      from interrupt state @pri must be %GFP_ATOMIC
433  *
434  *      %NULL is returned on a memory allocation failure.
435  */
436 static inline struct sk_buff *skb_unshare(struct sk_buff *skb, int pri)
437 {
438         might_sleep_if(pri & __GFP_WAIT);
439         if (skb_cloned(skb)) {
440                 struct sk_buff *nskb = skb_copy(skb, pri);
441                 kfree_skb(skb); /* Free our shared copy */
442                 skb = nskb;
443         }
444         return skb;
445 }
446
447 /**
448  *      skb_peek
449  *      @list_: list to peek at
450  *
451  *      Peek an &sk_buff. Unlike most other operations you _MUST_
452  *      be careful with this one. A peek leaves the buffer on the
453  *      list and someone else may run off with it. You must hold
454  *      the appropriate locks or have a private queue to do this.
455  *
456  *      Returns %NULL for an empty list or a pointer to the head element.
457  *      The reference count is not incremented and the reference is therefore
458  *      volatile. Use with caution.
459  */
460 static inline struct sk_buff *skb_peek(struct sk_buff_head *list_)
461 {
462         struct sk_buff *list = ((struct sk_buff *)list_)->next;
463         if (list == (struct sk_buff *)list_)
464                 list = NULL;
465         return list;
466 }
467
468 /**
469  *      skb_peek_tail
470  *      @list_: list to peek at
471  *
472  *      Peek an &sk_buff. Unlike most other operations you _MUST_
473  *      be careful with this one. A peek leaves the buffer on the
474  *      list and someone else may run off with it. You must hold
475  *      the appropriate locks or have a private queue to do this.
476  *
477  *      Returns %NULL for an empty list or a pointer to the tail element.
478  *      The reference count is not incremented and the reference is therefore
479  *      volatile. Use with caution.
480  */
481 static inline struct sk_buff *skb_peek_tail(struct sk_buff_head *list_)
482 {
483         struct sk_buff *list = ((struct sk_buff *)list_)->prev;
484         if (list == (struct sk_buff *)list_)
485                 list = NULL;
486         return list;
487 }
488
489 /**
490  *      skb_queue_len   - get queue length
491  *      @list_: list to measure
492  *
493  *      Return the length of an &sk_buff queue.
494  */
495 static inline __u32 skb_queue_len(const struct sk_buff_head *list_)
496 {
497         return list_->qlen;
498 }
499
500 static inline void skb_queue_head_init(struct sk_buff_head *list)
501 {
502         spin_lock_init(&list->lock);
503         list->prev = list->next = (struct sk_buff *)list;
504         list->qlen = 0;
505 }
506
507 /*
508  *      Insert an sk_buff at the start of a list.
509  *
510  *      The "__skb_xxxx()" functions are the non-atomic ones that
511  *      can only be called with interrupts disabled.
512  */
513
514 /**
515  *      __skb_queue_head - queue a buffer at the list head
516  *      @list: list to use
517  *      @newsk: buffer to queue
518  *
519  *      Queue a buffer at the start of a list. This function takes no locks
520  *      and you must therefore hold required locks before calling it.
521  *
522  *      A buffer cannot be placed on two lists at the same time.
523  */
524 extern void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk);
525 static inline void __skb_queue_head(struct sk_buff_head *list,
526                                     struct sk_buff *newsk)
527 {
528         struct sk_buff *prev, *next;
529
530         newsk->list = list;
531         list->qlen++;
532         prev = (struct sk_buff *)list;
533         next = prev->next;
534         newsk->next = next;
535         newsk->prev = prev;
536         next->prev  = prev->next = newsk;
537 }
538
539 /**
540  *      __skb_queue_tail - queue a buffer at the list tail
541  *      @list: list to use
542  *      @newsk: buffer to queue
543  *
544  *      Queue a buffer at the end of a list. This function takes no locks
545  *      and you must therefore hold required locks before calling it.
546  *
547  *      A buffer cannot be placed on two lists at the same time.
548  */
549 extern void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk);
550 static inline void __skb_queue_tail(struct sk_buff_head *list,
551                                    struct sk_buff *newsk)
552 {
553         struct sk_buff *prev, *next;
554
555         newsk->list = list;
556         list->qlen++;
557         next = (struct sk_buff *)list;
558         prev = next->prev;
559         newsk->next = next;
560         newsk->prev = prev;
561         next->prev  = prev->next = newsk;
562 }
563
564
565 /**
566  *      __skb_dequeue - remove from the head of the queue
567  *      @list: list to dequeue from
568  *
569  *      Remove the head of the list. This function does not take any locks
570  *      so must be used with appropriate locks held only. The head item is
571  *      returned or %NULL if the list is empty.
572  */
573 extern struct sk_buff *skb_dequeue(struct sk_buff_head *list);
574 static inline struct sk_buff *__skb_dequeue(struct sk_buff_head *list)
575 {
576         struct sk_buff *next, *prev, *result;
577
578         prev = (struct sk_buff *) list;
579         next = prev->next;
580         result = NULL;
581         if (next != prev) {
582                 result       = next;
583                 next         = next->next;
584                 list->qlen--;
585                 next->prev   = prev;
586                 prev->next   = next;
587                 result->next = result->prev = NULL;
588                 result->list = NULL;
589         }
590         return result;
591 }
592
593
594 /*
595  *      Insert a packet on a list.
596  */
597 extern void        skb_insert(struct sk_buff *old, struct sk_buff *newsk);
598 static inline void __skb_insert(struct sk_buff *newsk,
599                                 struct sk_buff *prev, struct sk_buff *next,
600                                 struct sk_buff_head *list)
601 {
602         newsk->next = next;
603         newsk->prev = prev;
604         next->prev  = prev->next = newsk;
605         newsk->list = list;
606         list->qlen++;
607 }
608
609 /*
610  *      Place a packet after a given packet in a list.
611  */
612 extern void        skb_append(struct sk_buff *old, struct sk_buff *newsk);
613 static inline void __skb_append(struct sk_buff *old, struct sk_buff *newsk)
614 {
615         __skb_insert(newsk, old, old->next, old->list);
616 }
617
618 /*
619  * remove sk_buff from list. _Must_ be called atomically, and with
620  * the list known..
621  */
622 extern void        skb_unlink(struct sk_buff *skb);
623 static inline void __skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
624 {
625         struct sk_buff *next, *prev;
626
627         list->qlen--;
628         next       = skb->next;
629         prev       = skb->prev;
630         skb->next  = skb->prev = NULL;
631         skb->list  = NULL;
632         next->prev = prev;
633         prev->next = next;
634 }
635
636
637 /* XXX: more streamlined implementation */
638
639 /**
640  *      __skb_dequeue_tail - remove from the tail of the queue
641  *      @list: list to dequeue from
642  *
643  *      Remove the tail of the list. This function does not take any locks
644  *      so must be used with appropriate locks held only. The tail item is
645  *      returned or %NULL if the list is empty.
646  */
647 extern struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list);
648 static inline struct sk_buff *__skb_dequeue_tail(struct sk_buff_head *list)
649 {
650         struct sk_buff *skb = skb_peek_tail(list);
651         if (skb)
652                 __skb_unlink(skb, list);
653         return skb;
654 }
655
656
657 static inline int skb_is_nonlinear(const struct sk_buff *skb)
658 {
659         return skb->data_len;
660 }
661
662 static inline unsigned int skb_headlen(const struct sk_buff *skb)
663 {
664         return skb->len - skb->data_len;
665 }
666
667 static inline int skb_pagelen(const struct sk_buff *skb)
668 {
669         int i, len = 0;
670
671         for (i = (int)skb_shinfo(skb)->nr_frags - 1; i >= 0; i--)
672                 len += skb_shinfo(skb)->frags[i].size;
673         return len + skb_headlen(skb);
674 }
675
676 static inline void skb_fill_page_desc(struct sk_buff *skb, int i,
677                                       struct page *page, int off, int size)
678 {
679         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
680
681         frag->page                = page;
682         frag->page_offset         = off;
683         frag->size                = size;
684         skb_shinfo(skb)->nr_frags = i + 1;
685 }
686
687 #define SKB_PAGE_ASSERT(skb)    BUG_ON(skb_shinfo(skb)->nr_frags)
688 #define SKB_FRAG_ASSERT(skb)    BUG_ON(skb_shinfo(skb)->frag_list)
689 #define SKB_LINEAR_ASSERT(skb)  BUG_ON(skb_is_nonlinear(skb))
690
691 /*
692  *      Add data to an sk_buff
693  */
694 static inline unsigned char *__skb_put(struct sk_buff *skb, unsigned int len)
695 {
696         unsigned char *tmp = skb->tail;
697         SKB_LINEAR_ASSERT(skb);
698         skb->tail += len;
699         skb->len  += len;
700         return tmp;
701 }
702
703 /**
704  *      skb_put - add data to a buffer
705  *      @skb: buffer to use
706  *      @len: amount of data to add
707  *
708  *      This function extends the used data area of the buffer. If this would
709  *      exceed the total buffer size the kernel will panic. A pointer to the
710  *      first byte of the extra data is returned.
711  */
712 static inline unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
713 {
714         unsigned char *tmp = skb->tail;
715         SKB_LINEAR_ASSERT(skb);
716         skb->tail += len;
717         skb->len  += len;
718         if (unlikely(skb->tail>skb->end))
719                 skb_over_panic(skb, len, current_text_addr());
720         return tmp;
721 }
722
723 static inline unsigned char *__skb_push(struct sk_buff *skb, unsigned int len)
724 {
725         skb->data -= len;
726         skb->len  += len;
727         return skb->data;
728 }
729
730 /**
731  *      skb_push - add data to the start of a buffer
732  *      @skb: buffer to use
733  *      @len: amount of data to add
734  *
735  *      This function extends the used data area of the buffer at the buffer
736  *      start. If this would exceed the total buffer headroom the kernel will
737  *      panic. A pointer to the first byte of the extra data is returned.
738  */
739 static inline unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
740 {
741         skb->data -= len;
742         skb->len  += len;
743         if (unlikely(skb->data<skb->head))
744                 skb_under_panic(skb, len, current_text_addr());
745         return skb->data;
746 }
747
748 static inline unsigned char *__skb_pull(struct sk_buff *skb, unsigned int len)
749 {
750         skb->len -= len;
751         BUG_ON(skb->len < skb->data_len);
752         return skb->data += len;
753 }
754
755 /**
756  *      skb_pull - remove data from the start of a buffer
757  *      @skb: buffer to use
758  *      @len: amount of data to remove
759  *
760  *      This function removes data from the start of a buffer, returning
761  *      the memory to the headroom. A pointer to the next data in the buffer
762  *      is returned. Once the data has been pulled future pushes will overwrite
763  *      the old data.
764  */
765 static inline unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
766 {
767         return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
768 }
769
770 extern unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta);
771
772 static inline unsigned char *__pskb_pull(struct sk_buff *skb, unsigned int len)
773 {
774         if (len > skb_headlen(skb) &&
775             !__pskb_pull_tail(skb, len-skb_headlen(skb)))
776                 return NULL;
777         skb->len -= len;
778         return skb->data += len;
779 }
780
781 static inline unsigned char *pskb_pull(struct sk_buff *skb, unsigned int len)
782 {
783         return unlikely(len > skb->len) ? NULL : __pskb_pull(skb, len);
784 }
785
786 static inline int pskb_may_pull(struct sk_buff *skb, unsigned int len)
787 {
788         if (likely(len <= skb_headlen(skb)))
789                 return 1;
790         if (unlikely(len > skb->len))
791                 return 0;
792         return __pskb_pull_tail(skb, len-skb_headlen(skb)) != NULL;
793 }
794
795 /**
796  *      skb_headroom - bytes at buffer head
797  *      @skb: buffer to check
798  *
799  *      Return the number of bytes of free space at the head of an &sk_buff.
800  */
801 static inline int skb_headroom(const struct sk_buff *skb)
802 {
803         return skb->data - skb->head;
804 }
805
806 /**
807  *      skb_tailroom - bytes at buffer end
808  *      @skb: buffer to check
809  *
810  *      Return the number of bytes of free space at the tail of an sk_buff
811  */
812 static inline int skb_tailroom(const struct sk_buff *skb)
813 {
814         return skb_is_nonlinear(skb) ? 0 : skb->end - skb->tail;
815 }
816
817 /**
818  *      skb_reserve - adjust headroom
819  *      @skb: buffer to alter
820  *      @len: bytes to move
821  *
822  *      Increase the headroom of an empty &sk_buff by reducing the tail
823  *      room. This is only allowed for an empty buffer.
824  */
825 static inline void skb_reserve(struct sk_buff *skb, unsigned int len)
826 {
827         skb->data += len;
828         skb->tail += len;
829 }
830
831 /*
832  * CPUs often take a performance hit when accessing unaligned memory
833  * locations. The actual performance hit varies, it can be small if the
834  * hardware handles it or large if we have to take an exception and fix it
835  * in software.
836  *
837  * Since an ethernet header is 14 bytes network drivers often end up with
838  * the IP header at an unaligned offset. The IP header can be aligned by
839  * shifting the start of the packet by 2 bytes. Drivers should do this
840  * with:
841  *
842  * skb_reserve(NET_IP_ALIGN);
843  *
844  * The downside to this alignment of the IP header is that the DMA is now
845  * unaligned. On some architectures the cost of an unaligned DMA is high
846  * and this cost outweighs the gains made by aligning the IP header.
847  * 
848  * Since this trade off varies between architectures, we allow NET_IP_ALIGN
849  * to be overridden.
850  */
851 #ifndef NET_IP_ALIGN
852 #define NET_IP_ALIGN    2
853 #endif
854
855 extern int ___pskb_trim(struct sk_buff *skb, unsigned int len, int realloc);
856
857 static inline void __skb_trim(struct sk_buff *skb, unsigned int len)
858 {
859         if (!skb->data_len) {
860                 skb->len  = len;
861                 skb->tail = skb->data + len;
862         } else
863                 ___pskb_trim(skb, len, 0);
864 }
865
866 /**
867  *      skb_trim - remove end from a buffer
868  *      @skb: buffer to alter
869  *      @len: new length
870  *
871  *      Cut the length of a buffer down by removing data from the tail. If
872  *      the buffer is already under the length specified it is not modified.
873  */
874 static inline void skb_trim(struct sk_buff *skb, unsigned int len)
875 {
876         if (skb->len > len)
877                 __skb_trim(skb, len);
878 }
879
880
881 static inline int __pskb_trim(struct sk_buff *skb, unsigned int len)
882 {
883         if (!skb->data_len) {
884                 skb->len  = len;
885                 skb->tail = skb->data+len;
886                 return 0;
887         }
888         return ___pskb_trim(skb, len, 1);
889 }
890
891 static inline int pskb_trim(struct sk_buff *skb, unsigned int len)
892 {
893         return (len < skb->len) ? __pskb_trim(skb, len) : 0;
894 }
895
896 /**
897  *      skb_orphan - orphan a buffer
898  *      @skb: buffer to orphan
899  *
900  *      If a buffer currently has an owner then we call the owner's
901  *      destructor function and make the @skb unowned. The buffer continues
902  *      to exist but is no longer charged to its former owner.
903  */
904 static inline void skb_orphan(struct sk_buff *skb)
905 {
906         if (skb->destructor)
907                 skb->destructor(skb);
908         skb->destructor = NULL;
909         skb->sk         = NULL;
910 }
911
912 /**
913  *      __skb_queue_purge - empty a list
914  *      @list: list to empty
915  *
916  *      Delete all buffers on an &sk_buff list. Each buffer is removed from
917  *      the list and one reference dropped. This function does not take the
918  *      list lock and the caller must hold the relevant locks to use it.
919  */
920 extern void skb_queue_purge(struct sk_buff_head *list);
921 static inline void __skb_queue_purge(struct sk_buff_head *list)
922 {
923         struct sk_buff *skb;
924         while ((skb = __skb_dequeue(list)) != NULL)
925                 kfree_skb(skb);
926 }
927
928 /**
929  *      __dev_alloc_skb - allocate an skbuff for sending
930  *      @length: length to allocate
931  *      @gfp_mask: get_free_pages mask, passed to alloc_skb
932  *
933  *      Allocate a new &sk_buff and assign it a usage count of one. The
934  *      buffer has unspecified headroom built in. Users should allocate
935  *      the headroom they think they need without accounting for the
936  *      built in space. The built in space is used for optimisations.
937  *
938  *      %NULL is returned in there is no free memory.
939  */
940 static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
941                                               int gfp_mask)
942 {
943         struct sk_buff *skb = alloc_skb(length + 16, gfp_mask);
944         if (likely(skb))
945                 skb_reserve(skb, 16);
946         return skb;
947 }
948
949 /**
950  *      dev_alloc_skb - allocate an skbuff for sending
951  *      @length: length to allocate
952  *
953  *      Allocate a new &sk_buff and assign it a usage count of one. The
954  *      buffer has unspecified headroom built in. Users should allocate
955  *      the headroom they think they need without accounting for the
956  *      built in space. The built in space is used for optimisations.
957  *
958  *      %NULL is returned in there is no free memory. Although this function
959  *      allocates memory it can be called from an interrupt.
960  */
961 static inline struct sk_buff *dev_alloc_skb(unsigned int length)
962 {
963         return __dev_alloc_skb(length, GFP_ATOMIC);
964 }
965
966 /**
967  *      skb_cow - copy header of skb when it is required
968  *      @skb: buffer to cow
969  *      @headroom: needed headroom
970  *
971  *      If the skb passed lacks sufficient headroom or its data part
972  *      is shared, data is reallocated. If reallocation fails, an error
973  *      is returned and original skb is not changed.
974  *
975  *      The result is skb with writable area skb->head...skb->tail
976  *      and at least @headroom of space at head.
977  */
978 static inline int skb_cow(struct sk_buff *skb, unsigned int headroom)
979 {
980         int delta = (headroom > 16 ? headroom : 16) - skb_headroom(skb);
981
982         if (delta < 0)
983                 delta = 0;
984
985         if (delta || skb_cloned(skb))
986                 return pskb_expand_head(skb, (delta + 15) & ~15, 0, GFP_ATOMIC);
987         return 0;
988 }
989
990 /**
991  *      skb_padto       - pad an skbuff up to a minimal size
992  *      @skb: buffer to pad
993  *      @len: minimal length
994  *
995  *      Pads up a buffer to ensure the trailing bytes exist and are
996  *      blanked. If the buffer already contains sufficient data it
997  *      is untouched. Returns the buffer, which may be a replacement
998  *      for the original, or NULL for out of memory - in which case
999  *      the original buffer is still freed.
1000  */
1001  
1002 static inline struct sk_buff *skb_padto(struct sk_buff *skb, unsigned int len)
1003 {
1004         unsigned int size = skb->len;
1005         if (likely(size >= len))
1006                 return skb;
1007         return skb_pad(skb, len-size);
1008 }
1009
1010 static inline int skb_add_data(struct sk_buff *skb,
1011                                char __user *from, int copy)
1012 {
1013         const int off = skb->len;
1014
1015         if (skb->ip_summed == CHECKSUM_NONE) {
1016                 int err = 0;
1017                 unsigned int csum = csum_and_copy_from_user(from,
1018                                                             skb_put(skb, copy),
1019                                                             copy, 0, &err);
1020                 if (!err) {
1021                         skb->csum = csum_block_add(skb->csum, csum, off);
1022                         return 0;
1023                 }
1024         } else if (!copy_from_user(skb_put(skb, copy), from, copy))
1025                 return 0;
1026
1027         __skb_trim(skb, off);
1028         return -EFAULT;
1029 }
1030
1031 static inline int skb_can_coalesce(struct sk_buff *skb, int i,
1032                                    struct page *page, int off)
1033 {
1034         if (i) {
1035                 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1036
1037                 return page == frag->page &&
1038                        off == frag->page_offset + frag->size;
1039         }
1040         return 0;
1041 }
1042
1043 /**
1044  *      skb_linearize - convert paged skb to linear one
1045  *      @skb: buffer to linarize
1046  *      @gfp: allocation mode
1047  *
1048  *      If there is no free memory -ENOMEM is returned, otherwise zero
1049  *      is returned and the old skb data released.
1050  */
1051 extern int __skb_linearize(struct sk_buff *skb, int gfp);
1052 static inline int skb_linearize(struct sk_buff *skb, int gfp)
1053 {
1054         return __skb_linearize(skb, gfp);
1055 }
1056
1057 static inline void *kmap_skb_frag(const skb_frag_t *frag)
1058 {
1059 #ifdef CONFIG_HIGHMEM
1060         BUG_ON(in_irq());
1061
1062         local_bh_disable();
1063 #endif
1064         return kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ);
1065 }
1066
1067 static inline void kunmap_skb_frag(void *vaddr)
1068 {
1069         kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
1070 #ifdef CONFIG_HIGHMEM
1071         local_bh_enable();
1072 #endif
1073 }
1074
1075 #define skb_queue_walk(queue, skb) \
1076                 for (skb = (queue)->next, prefetch(skb->next);  \
1077                      (skb != (struct sk_buff *)(queue));        \
1078                      skb = skb->next, prefetch(skb->next))
1079
1080
1081 extern struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags,
1082                                          int noblock, int *err);
1083 extern unsigned int    datagram_poll(struct file *file, struct socket *sock,
1084                                      struct poll_table_struct *wait);
1085 extern int             skb_copy_datagram(const struct sk_buff *from,
1086                                          int offset, char __user *to, int size);
1087 extern int             skb_copy_datagram_iovec(const struct sk_buff *from,
1088                                                int offset, struct iovec *to,
1089                                                int size);
1090 extern int             skb_copy_and_csum_datagram(const struct sk_buff *skb,
1091                                                   int offset, u8 __user *to,
1092                                                   int len, unsigned int *csump);
1093 extern int             skb_copy_and_csum_datagram_iovec(const
1094                                                         struct sk_buff *skb,
1095                                                         int hlen,
1096                                                         struct iovec *iov);
1097 extern void            skb_free_datagram(struct sock *sk, struct sk_buff *skb);
1098 extern unsigned int    skb_checksum(const struct sk_buff *skb, int offset,
1099                                     int len, unsigned int csum);
1100 extern int             skb_copy_bits(const struct sk_buff *skb, int offset,
1101                                      void *to, int len);
1102 extern unsigned int    skb_copy_and_csum_bits(const struct sk_buff *skb,
1103                                               int offset, u8 *to, int len,
1104                                               unsigned int csum);
1105 extern void            skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
1106 extern void            skb_split(struct sk_buff *skb,
1107                                  struct sk_buff *skb1, const u32 len);
1108
1109 extern void skb_init(void);
1110 extern void skb_add_mtu(int mtu);
1111
1112 struct skb_iter {
1113         /* Iteration functions set these */
1114         unsigned char *data;
1115         unsigned int len;
1116
1117         /* Private to iteration */
1118         unsigned int nextfrag;
1119         struct sk_buff *fraglist;
1120 };
1121
1122 /* Keep iterating until skb_iter_next returns false. */
1123 extern void skb_iter_first(const struct sk_buff *skb, struct skb_iter *i);
1124 extern int skb_iter_next(const struct sk_buff *skb, struct skb_iter *i);
1125 /* Call this if aborting loop before !skb_iter_next */
1126 extern void skb_iter_abort(const struct sk_buff *skb, struct skb_iter *i);
1127
1128 struct tux_req_struct;
1129
1130 #ifdef CONFIG_NETFILTER
1131 static inline void nf_conntrack_put(struct nf_ct_info *nfct)
1132 {
1133         if (nfct && atomic_dec_and_test(&nfct->master->use))
1134                 nfct->master->destroy(nfct->master);
1135 }
1136 static inline void nf_conntrack_get(struct nf_ct_info *nfct)
1137 {
1138         if (nfct)
1139                 atomic_inc(&nfct->master->use);
1140 }
1141 static inline void nf_reset(struct sk_buff *skb)
1142 {
1143         nf_conntrack_put(skb->nfct);
1144         skb->nfct = NULL;
1145 #ifdef CONFIG_NETFILTER_DEBUG
1146         skb->nf_debug = 0;
1147 #endif
1148 }
1149
1150 #ifdef CONFIG_BRIDGE_NETFILTER
1151 static inline void nf_bridge_put(struct nf_bridge_info *nf_bridge)
1152 {
1153         if (nf_bridge && atomic_dec_and_test(&nf_bridge->use))
1154                 kfree(nf_bridge);
1155 }
1156 static inline void nf_bridge_get(struct nf_bridge_info *nf_bridge)
1157 {
1158         if (nf_bridge)
1159                 atomic_inc(&nf_bridge->use);
1160 }
1161 #endif /* CONFIG_BRIDGE_NETFILTER */
1162 #else /* CONFIG_NETFILTER */
1163 static inline void nf_reset(struct sk_buff *skb) {}
1164 #endif /* CONFIG_NETFILTER */
1165
1166 #endif  /* __KERNEL__ */
1167 #endif  /* _LINUX_SKBUFF_H */