[SK_BUFF]: Introduce tcp_hdr(), remove skb->h.th
[pandora-kernel.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/kernel.h>
18 #include <linux/compiler.h>
19 #include <linux/time.h>
20 #include <linux/cache.h>
21
22 #include <asm/atomic.h>
23 #include <asm/types.h>
24 #include <linux/spinlock.h>
25 #include <linux/net.h>
26 #include <linux/textsearch.h>
27 #include <net/checksum.h>
28 #include <linux/rcupdate.h>
29 #include <linux/dmaengine.h>
30 #include <linux/hrtimer.h>
31
32 #define HAVE_ALLOC_SKB          /* For the drivers to know */
33 #define HAVE_ALIGNABLE_SKB      /* Ditto 8)                */
34
35 #define CHECKSUM_NONE 0
36 #define CHECKSUM_PARTIAL 1
37 #define CHECKSUM_UNNECESSARY 2
38 #define CHECKSUM_COMPLETE 3
39
40 #define SKB_DATA_ALIGN(X)       (((X) + (SMP_CACHE_BYTES - 1)) & \
41                                  ~(SMP_CACHE_BYTES - 1))
42 #define SKB_WITH_OVERHEAD(X)    \
43         (((X) - sizeof(struct skb_shared_info)) & \
44          ~(SMP_CACHE_BYTES - 1))
45 #define SKB_MAX_ORDER(X, ORDER) \
46         SKB_WITH_OVERHEAD((PAGE_SIZE << (ORDER)) - (X))
47 #define SKB_MAX_HEAD(X)         (SKB_MAX_ORDER((X), 0))
48 #define SKB_MAX_ALLOC           (SKB_MAX_ORDER(0, 2))
49
50 /* A. Checksumming of received packets by device.
51  *
52  *      NONE: device failed to checksum this packet.
53  *              skb->csum is undefined.
54  *
55  *      UNNECESSARY: device parsed packet and wouldbe verified checksum.
56  *              skb->csum is undefined.
57  *            It is bad option, but, unfortunately, many of vendors do this.
58  *            Apparently with secret goal to sell you new device, when you
59  *            will add new protocol to your host. F.e. IPv6. 8)
60  *
61  *      COMPLETE: the most generic way. Device supplied checksum of _all_
62  *          the packet as seen by netif_rx in skb->csum.
63  *          NOTE: Even if device supports only some protocols, but
64  *          is able to produce some skb->csum, it MUST use COMPLETE,
65  *          not UNNECESSARY.
66  *
67  * B. Checksumming on output.
68  *
69  *      NONE: skb is checksummed by protocol or csum is not required.
70  *
71  *      PARTIAL: device is required to csum packet as seen by hard_start_xmit
72  *      from skb->h.raw to the end and to record the checksum
73  *      at skb->h.raw+skb->csum.
74  *
75  *      Device must show its capabilities in dev->features, set
76  *      at device setup time.
77  *      NETIF_F_HW_CSUM - it is clever device, it is able to checksum
78  *                        everything.
79  *      NETIF_F_NO_CSUM - loopback or reliable single hop media.
80  *      NETIF_F_IP_CSUM - device is dumb. It is able to csum only
81  *                        TCP/UDP over IPv4. Sigh. Vendors like this
82  *                        way by an unknown reason. Though, see comment above
83  *                        about CHECKSUM_UNNECESSARY. 8)
84  *
85  *      Any questions? No questions, good.              --ANK
86  */
87
88 struct net_device;
89
90 #ifdef CONFIG_NETFILTER
91 struct nf_conntrack {
92         atomic_t use;
93         void (*destroy)(struct nf_conntrack *);
94 };
95
96 #ifdef CONFIG_BRIDGE_NETFILTER
97 struct nf_bridge_info {
98         atomic_t use;
99         struct net_device *physindev;
100         struct net_device *physoutdev;
101 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
102         struct net_device *netoutdev;
103 #endif
104         unsigned int mask;
105         unsigned long data[32 / sizeof(unsigned long)];
106 };
107 #endif
108
109 #endif
110
111 struct sk_buff_head {
112         /* These two members must be first. */
113         struct sk_buff  *next;
114         struct sk_buff  *prev;
115
116         __u32           qlen;
117         spinlock_t      lock;
118 };
119
120 struct sk_buff;
121
122 /* To allow 64K frame to be packed as single skb without frag_list */
123 #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 2)
124
125 typedef struct skb_frag_struct skb_frag_t;
126
127 struct skb_frag_struct {
128         struct page *page;
129         __u16 page_offset;
130         __u16 size;
131 };
132
133 /* This data is invariant across clones and lives at
134  * the end of the header data, ie. at skb->end.
135  */
136 struct skb_shared_info {
137         atomic_t        dataref;
138         unsigned short  nr_frags;
139         unsigned short  gso_size;
140         /* Warning: this field is not always filled in (UFO)! */
141         unsigned short  gso_segs;
142         unsigned short  gso_type;
143         __be32          ip6_frag_id;
144         struct sk_buff  *frag_list;
145         skb_frag_t      frags[MAX_SKB_FRAGS];
146 };
147
148 /* We divide dataref into two halves.  The higher 16 bits hold references
149  * to the payload part of skb->data.  The lower 16 bits hold references to
150  * the entire skb->data.  It is up to the users of the skb to agree on
151  * where the payload starts.
152  *
153  * All users must obey the rule that the skb->data reference count must be
154  * greater than or equal to the payload reference count.
155  *
156  * Holding a reference to the payload part means that the user does not
157  * care about modifications to the header part of skb->data.
158  */
159 #define SKB_DATAREF_SHIFT 16
160 #define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)
161
162
163 enum {
164         SKB_FCLONE_UNAVAILABLE,
165         SKB_FCLONE_ORIG,
166         SKB_FCLONE_CLONE,
167 };
168
169 enum {
170         SKB_GSO_TCPV4 = 1 << 0,
171         SKB_GSO_UDP = 1 << 1,
172
173         /* This indicates the skb is from an untrusted source. */
174         SKB_GSO_DODGY = 1 << 2,
175
176         /* This indicates the tcp segment has CWR set. */
177         SKB_GSO_TCP_ECN = 1 << 3,
178
179         SKB_GSO_TCPV6 = 1 << 4,
180 };
181
182 /** 
183  *      struct sk_buff - socket buffer
184  *      @next: Next buffer in list
185  *      @prev: Previous buffer in list
186  *      @sk: Socket we are owned by
187  *      @tstamp: Time we arrived
188  *      @dev: Device we arrived on/are leaving by
189  *      @iif: ifindex of device we arrived on
190  *      @h: Transport layer header
191  *      @nh: Network layer header
192  *      @mac: Link layer header
193  *      @dst: destination entry
194  *      @sp: the security path, used for xfrm
195  *      @cb: Control buffer. Free for use by every layer. Put private vars here
196  *      @len: Length of actual data
197  *      @data_len: Data length
198  *      @mac_len: Length of link layer header
199  *      @csum: Checksum
200  *      @local_df: allow local fragmentation
201  *      @cloned: Head may be cloned (check refcnt to be sure)
202  *      @nohdr: Payload reference only, must not modify header
203  *      @pkt_type: Packet class
204  *      @fclone: skbuff clone status
205  *      @ip_summed: Driver fed us an IP checksum
206  *      @priority: Packet queueing priority
207  *      @users: User count - see {datagram,tcp}.c
208  *      @protocol: Packet protocol from driver
209  *      @truesize: Buffer size 
210  *      @head: Head of buffer
211  *      @data: Data head pointer
212  *      @tail: Tail pointer
213  *      @end: End pointer
214  *      @destructor: Destruct function
215  *      @mark: Generic packet mark
216  *      @nfct: Associated connection, if any
217  *      @ipvs_property: skbuff is owned by ipvs
218  *      @nfctinfo: Relationship of this skb to the connection
219  *      @nfct_reasm: netfilter conntrack re-assembly pointer
220  *      @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
221  *      @tc_index: Traffic control index
222  *      @tc_verd: traffic control verdict
223  *      @dma_cookie: a cookie to one of several possible DMA operations
224  *              done by skb DMA functions
225  *      @secmark: security marking
226  */
227
228 struct sk_buff {
229         /* These two members must be first. */
230         struct sk_buff          *next;
231         struct sk_buff          *prev;
232
233         struct sock             *sk;
234         ktime_t                 tstamp;
235         struct net_device       *dev;
236         int                     iif;
237         /* 4 byte hole on 64 bit*/
238
239         union {
240                 struct iphdr    *ipiph;
241                 struct ipv6hdr  *ipv6h;
242                 unsigned char   *raw;
243         } h;
244
245         union {
246                 unsigned char   *raw;
247         } nh;
248
249         union {
250                 unsigned char   *raw;
251         } mac;
252
253         struct  dst_entry       *dst;
254         struct  sec_path        *sp;
255
256         /*
257          * This is the control buffer. It is free to use for every
258          * layer. Please put your private variables there. If you
259          * want to keep them across layers you have to do a skb_clone()
260          * first. This is owned by whoever has the skb queued ATM.
261          */
262         char                    cb[48];
263
264         unsigned int            len,
265                                 data_len,
266                                 mac_len;
267         union {
268                 __wsum          csum;
269                 __u32           csum_offset;
270         };
271         __u32                   priority;
272         __u8                    local_df:1,
273                                 cloned:1,
274                                 ip_summed:2,
275                                 nohdr:1,
276                                 nfctinfo:3;
277         __u8                    pkt_type:3,
278                                 fclone:2,
279                                 ipvs_property:1;
280         __be16                  protocol;
281
282         void                    (*destructor)(struct sk_buff *skb);
283 #ifdef CONFIG_NETFILTER
284         struct nf_conntrack     *nfct;
285 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
286         struct sk_buff          *nfct_reasm;
287 #endif
288 #ifdef CONFIG_BRIDGE_NETFILTER
289         struct nf_bridge_info   *nf_bridge;
290 #endif
291 #endif /* CONFIG_NETFILTER */
292 #ifdef CONFIG_NET_SCHED
293         __u16                   tc_index;       /* traffic control index */
294 #ifdef CONFIG_NET_CLS_ACT
295         __u16                   tc_verd;        /* traffic control verdict */
296 #endif
297 #endif
298 #ifdef CONFIG_NET_DMA
299         dma_cookie_t            dma_cookie;
300 #endif
301 #ifdef CONFIG_NETWORK_SECMARK
302         __u32                   secmark;
303 #endif
304
305         __u32                   mark;
306
307         /* These elements must be at the end, see alloc_skb() for details.  */
308         unsigned int            truesize;
309         atomic_t                users;
310         unsigned char           *head,
311                                 *data,
312                                 *tail,
313                                 *end;
314 };
315
316 #ifdef __KERNEL__
317 /*
318  *      Handling routines are only of interest to the kernel
319  */
320 #include <linux/slab.h>
321
322 #include <asm/system.h>
323
324 extern void kfree_skb(struct sk_buff *skb);
325 extern void            __kfree_skb(struct sk_buff *skb);
326 extern struct sk_buff *__alloc_skb(unsigned int size,
327                                    gfp_t priority, int fclone, int node);
328 static inline struct sk_buff *alloc_skb(unsigned int size,
329                                         gfp_t priority)
330 {
331         return __alloc_skb(size, priority, 0, -1);
332 }
333
334 static inline struct sk_buff *alloc_skb_fclone(unsigned int size,
335                                                gfp_t priority)
336 {
337         return __alloc_skb(size, priority, 1, -1);
338 }
339
340 extern void            kfree_skbmem(struct sk_buff *skb);
341 extern struct sk_buff *skb_clone(struct sk_buff *skb,
342                                  gfp_t priority);
343 extern struct sk_buff *skb_copy(const struct sk_buff *skb,
344                                 gfp_t priority);
345 extern struct sk_buff *pskb_copy(struct sk_buff *skb,
346                                  gfp_t gfp_mask);
347 extern int             pskb_expand_head(struct sk_buff *skb,
348                                         int nhead, int ntail,
349                                         gfp_t gfp_mask);
350 extern struct sk_buff *skb_realloc_headroom(struct sk_buff *skb,
351                                             unsigned int headroom);
352 extern struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
353                                        int newheadroom, int newtailroom,
354                                        gfp_t priority);
355 extern int             skb_pad(struct sk_buff *skb, int pad);
356 #define dev_kfree_skb(a)        kfree_skb(a)
357 extern void           skb_over_panic(struct sk_buff *skb, int len,
358                                      void *here);
359 extern void           skb_under_panic(struct sk_buff *skb, int len,
360                                       void *here);
361 extern void           skb_truesize_bug(struct sk_buff *skb);
362
363 static inline void skb_truesize_check(struct sk_buff *skb)
364 {
365         if (unlikely((int)skb->truesize < sizeof(struct sk_buff) + skb->len))
366                 skb_truesize_bug(skb);
367 }
368
369 extern int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
370                         int getfrag(void *from, char *to, int offset,
371                         int len,int odd, struct sk_buff *skb),
372                         void *from, int length);
373
374 struct skb_seq_state
375 {
376         __u32           lower_offset;
377         __u32           upper_offset;
378         __u32           frag_idx;
379         __u32           stepped_offset;
380         struct sk_buff  *root_skb;
381         struct sk_buff  *cur_skb;
382         __u8            *frag_data;
383 };
384
385 extern void           skb_prepare_seq_read(struct sk_buff *skb,
386                                            unsigned int from, unsigned int to,
387                                            struct skb_seq_state *st);
388 extern unsigned int   skb_seq_read(unsigned int consumed, const u8 **data,
389                                    struct skb_seq_state *st);
390 extern void           skb_abort_seq_read(struct skb_seq_state *st);
391
392 extern unsigned int   skb_find_text(struct sk_buff *skb, unsigned int from,
393                                     unsigned int to, struct ts_config *config,
394                                     struct ts_state *state);
395
396 /* Internal */
397 #define skb_shinfo(SKB)         ((struct skb_shared_info *)((SKB)->end))
398
399 /**
400  *      skb_queue_empty - check if a queue is empty
401  *      @list: queue head
402  *
403  *      Returns true if the queue is empty, false otherwise.
404  */
405 static inline int skb_queue_empty(const struct sk_buff_head *list)
406 {
407         return list->next == (struct sk_buff *)list;
408 }
409
410 /**
411  *      skb_get - reference buffer
412  *      @skb: buffer to reference
413  *
414  *      Makes another reference to a socket buffer and returns a pointer
415  *      to the buffer.
416  */
417 static inline struct sk_buff *skb_get(struct sk_buff *skb)
418 {
419         atomic_inc(&skb->users);
420         return skb;
421 }
422
423 /*
424  * If users == 1, we are the only owner and are can avoid redundant
425  * atomic change.
426  */
427
428 /**
429  *      skb_cloned - is the buffer a clone
430  *      @skb: buffer to check
431  *
432  *      Returns true if the buffer was generated with skb_clone() and is
433  *      one of multiple shared copies of the buffer. Cloned buffers are
434  *      shared data so must not be written to under normal circumstances.
435  */
436 static inline int skb_cloned(const struct sk_buff *skb)
437 {
438         return skb->cloned &&
439                (atomic_read(&skb_shinfo(skb)->dataref) & SKB_DATAREF_MASK) != 1;
440 }
441
442 /**
443  *      skb_header_cloned - is the header a clone
444  *      @skb: buffer to check
445  *
446  *      Returns true if modifying the header part of the buffer requires
447  *      the data to be copied.
448  */
449 static inline int skb_header_cloned(const struct sk_buff *skb)
450 {
451         int dataref;
452
453         if (!skb->cloned)
454                 return 0;
455
456         dataref = atomic_read(&skb_shinfo(skb)->dataref);
457         dataref = (dataref & SKB_DATAREF_MASK) - (dataref >> SKB_DATAREF_SHIFT);
458         return dataref != 1;
459 }
460
461 /**
462  *      skb_header_release - release reference to header
463  *      @skb: buffer to operate on
464  *
465  *      Drop a reference to the header part of the buffer.  This is done
466  *      by acquiring a payload reference.  You must not read from the header
467  *      part of skb->data after this.
468  */
469 static inline void skb_header_release(struct sk_buff *skb)
470 {
471         BUG_ON(skb->nohdr);
472         skb->nohdr = 1;
473         atomic_add(1 << SKB_DATAREF_SHIFT, &skb_shinfo(skb)->dataref);
474 }
475
476 /**
477  *      skb_shared - is the buffer shared
478  *      @skb: buffer to check
479  *
480  *      Returns true if more than one person has a reference to this
481  *      buffer.
482  */
483 static inline int skb_shared(const struct sk_buff *skb)
484 {
485         return atomic_read(&skb->users) != 1;
486 }
487
488 /**
489  *      skb_share_check - check if buffer is shared and if so clone it
490  *      @skb: buffer to check
491  *      @pri: priority for memory allocation
492  *
493  *      If the buffer is shared the buffer is cloned and the old copy
494  *      drops a reference. A new clone with a single reference is returned.
495  *      If the buffer is not shared the original buffer is returned. When
496  *      being called from interrupt status or with spinlocks held pri must
497  *      be GFP_ATOMIC.
498  *
499  *      NULL is returned on a memory allocation failure.
500  */
501 static inline struct sk_buff *skb_share_check(struct sk_buff *skb,
502                                               gfp_t pri)
503 {
504         might_sleep_if(pri & __GFP_WAIT);
505         if (skb_shared(skb)) {
506                 struct sk_buff *nskb = skb_clone(skb, pri);
507                 kfree_skb(skb);
508                 skb = nskb;
509         }
510         return skb;
511 }
512
513 /*
514  *      Copy shared buffers into a new sk_buff. We effectively do COW on
515  *      packets to handle cases where we have a local reader and forward
516  *      and a couple of other messy ones. The normal one is tcpdumping
517  *      a packet thats being forwarded.
518  */
519
520 /**
521  *      skb_unshare - make a copy of a shared buffer
522  *      @skb: buffer to check
523  *      @pri: priority for memory allocation
524  *
525  *      If the socket buffer is a clone then this function creates a new
526  *      copy of the data, drops a reference count on the old copy and returns
527  *      the new copy with the reference count at 1. If the buffer is not a clone
528  *      the original buffer is returned. When called with a spinlock held or
529  *      from interrupt state @pri must be %GFP_ATOMIC
530  *
531  *      %NULL is returned on a memory allocation failure.
532  */
533 static inline struct sk_buff *skb_unshare(struct sk_buff *skb,
534                                           gfp_t pri)
535 {
536         might_sleep_if(pri & __GFP_WAIT);
537         if (skb_cloned(skb)) {
538                 struct sk_buff *nskb = skb_copy(skb, pri);
539                 kfree_skb(skb); /* Free our shared copy */
540                 skb = nskb;
541         }
542         return skb;
543 }
544
545 /**
546  *      skb_peek
547  *      @list_: list to peek at
548  *
549  *      Peek an &sk_buff. Unlike most other operations you _MUST_
550  *      be careful with this one. A peek leaves the buffer on the
551  *      list and someone else may run off with it. You must hold
552  *      the appropriate locks or have a private queue to do this.
553  *
554  *      Returns %NULL for an empty list or a pointer to the head element.
555  *      The reference count is not incremented and the reference is therefore
556  *      volatile. Use with caution.
557  */
558 static inline struct sk_buff *skb_peek(struct sk_buff_head *list_)
559 {
560         struct sk_buff *list = ((struct sk_buff *)list_)->next;
561         if (list == (struct sk_buff *)list_)
562                 list = NULL;
563         return list;
564 }
565
566 /**
567  *      skb_peek_tail
568  *      @list_: list to peek at
569  *
570  *      Peek an &sk_buff. Unlike most other operations you _MUST_
571  *      be careful with this one. A peek leaves the buffer on the
572  *      list and someone else may run off with it. You must hold
573  *      the appropriate locks or have a private queue to do this.
574  *
575  *      Returns %NULL for an empty list or a pointer to the tail element.
576  *      The reference count is not incremented and the reference is therefore
577  *      volatile. Use with caution.
578  */
579 static inline struct sk_buff *skb_peek_tail(struct sk_buff_head *list_)
580 {
581         struct sk_buff *list = ((struct sk_buff *)list_)->prev;
582         if (list == (struct sk_buff *)list_)
583                 list = NULL;
584         return list;
585 }
586
587 /**
588  *      skb_queue_len   - get queue length
589  *      @list_: list to measure
590  *
591  *      Return the length of an &sk_buff queue.
592  */
593 static inline __u32 skb_queue_len(const struct sk_buff_head *list_)
594 {
595         return list_->qlen;
596 }
597
598 /*
599  * This function creates a split out lock class for each invocation;
600  * this is needed for now since a whole lot of users of the skb-queue
601  * infrastructure in drivers have different locking usage (in hardirq)
602  * than the networking core (in softirq only). In the long run either the
603  * network layer or drivers should need annotation to consolidate the
604  * main types of usage into 3 classes.
605  */
606 static inline void skb_queue_head_init(struct sk_buff_head *list)
607 {
608         spin_lock_init(&list->lock);
609         list->prev = list->next = (struct sk_buff *)list;
610         list->qlen = 0;
611 }
612
613 static inline void skb_queue_head_init_class(struct sk_buff_head *list,
614                 struct lock_class_key *class)
615 {
616         skb_queue_head_init(list);
617         lockdep_set_class(&list->lock, class);
618 }
619
620 /*
621  *      Insert an sk_buff at the start of a list.
622  *
623  *      The "__skb_xxxx()" functions are the non-atomic ones that
624  *      can only be called with interrupts disabled.
625  */
626
627 /**
628  *      __skb_queue_after - queue a buffer at the list head
629  *      @list: list to use
630  *      @prev: place after this buffer
631  *      @newsk: buffer to queue
632  *
633  *      Queue a buffer int the middle of a list. This function takes no locks
634  *      and you must therefore hold required locks before calling it.
635  *
636  *      A buffer cannot be placed on two lists at the same time.
637  */
638 static inline void __skb_queue_after(struct sk_buff_head *list,
639                                      struct sk_buff *prev,
640                                      struct sk_buff *newsk)
641 {
642         struct sk_buff *next;
643         list->qlen++;
644
645         next = prev->next;
646         newsk->next = next;
647         newsk->prev = prev;
648         next->prev  = prev->next = newsk;
649 }
650
651 /**
652  *      __skb_queue_head - queue a buffer at the list head
653  *      @list: list to use
654  *      @newsk: buffer to queue
655  *
656  *      Queue a buffer at the start of a list. This function takes no locks
657  *      and you must therefore hold required locks before calling it.
658  *
659  *      A buffer cannot be placed on two lists at the same time.
660  */
661 extern void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk);
662 static inline void __skb_queue_head(struct sk_buff_head *list,
663                                     struct sk_buff *newsk)
664 {
665         __skb_queue_after(list, (struct sk_buff *)list, newsk);
666 }
667
668 /**
669  *      __skb_queue_tail - queue a buffer at the list tail
670  *      @list: list to use
671  *      @newsk: buffer to queue
672  *
673  *      Queue a buffer at the end of a list. This function takes no locks
674  *      and you must therefore hold required locks before calling it.
675  *
676  *      A buffer cannot be placed on two lists at the same time.
677  */
678 extern void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk);
679 static inline void __skb_queue_tail(struct sk_buff_head *list,
680                                    struct sk_buff *newsk)
681 {
682         struct sk_buff *prev, *next;
683
684         list->qlen++;
685         next = (struct sk_buff *)list;
686         prev = next->prev;
687         newsk->next = next;
688         newsk->prev = prev;
689         next->prev  = prev->next = newsk;
690 }
691
692
693 /**
694  *      __skb_dequeue - remove from the head of the queue
695  *      @list: list to dequeue from
696  *
697  *      Remove the head of the list. This function does not take any locks
698  *      so must be used with appropriate locks held only. The head item is
699  *      returned or %NULL if the list is empty.
700  */
701 extern struct sk_buff *skb_dequeue(struct sk_buff_head *list);
702 static inline struct sk_buff *__skb_dequeue(struct sk_buff_head *list)
703 {
704         struct sk_buff *next, *prev, *result;
705
706         prev = (struct sk_buff *) list;
707         next = prev->next;
708         result = NULL;
709         if (next != prev) {
710                 result       = next;
711                 next         = next->next;
712                 list->qlen--;
713                 next->prev   = prev;
714                 prev->next   = next;
715                 result->next = result->prev = NULL;
716         }
717         return result;
718 }
719
720
721 /*
722  *      Insert a packet on a list.
723  */
724 extern void        skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list);
725 static inline void __skb_insert(struct sk_buff *newsk,
726                                 struct sk_buff *prev, struct sk_buff *next,
727                                 struct sk_buff_head *list)
728 {
729         newsk->next = next;
730         newsk->prev = prev;
731         next->prev  = prev->next = newsk;
732         list->qlen++;
733 }
734
735 /*
736  *      Place a packet after a given packet in a list.
737  */
738 extern void        skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list);
739 static inline void __skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
740 {
741         __skb_insert(newsk, old, old->next, list);
742 }
743
744 /*
745  * remove sk_buff from list. _Must_ be called atomically, and with
746  * the list known..
747  */
748 extern void        skb_unlink(struct sk_buff *skb, struct sk_buff_head *list);
749 static inline void __skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
750 {
751         struct sk_buff *next, *prev;
752
753         list->qlen--;
754         next       = skb->next;
755         prev       = skb->prev;
756         skb->next  = skb->prev = NULL;
757         next->prev = prev;
758         prev->next = next;
759 }
760
761
762 /* XXX: more streamlined implementation */
763
764 /**
765  *      __skb_dequeue_tail - remove from the tail of the queue
766  *      @list: list to dequeue from
767  *
768  *      Remove the tail of the list. This function does not take any locks
769  *      so must be used with appropriate locks held only. The tail item is
770  *      returned or %NULL if the list is empty.
771  */
772 extern struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list);
773 static inline struct sk_buff *__skb_dequeue_tail(struct sk_buff_head *list)
774 {
775         struct sk_buff *skb = skb_peek_tail(list);
776         if (skb)
777                 __skb_unlink(skb, list);
778         return skb;
779 }
780
781
782 static inline int skb_is_nonlinear(const struct sk_buff *skb)
783 {
784         return skb->data_len;
785 }
786
787 static inline unsigned int skb_headlen(const struct sk_buff *skb)
788 {
789         return skb->len - skb->data_len;
790 }
791
792 static inline int skb_pagelen(const struct sk_buff *skb)
793 {
794         int i, len = 0;
795
796         for (i = (int)skb_shinfo(skb)->nr_frags - 1; i >= 0; i--)
797                 len += skb_shinfo(skb)->frags[i].size;
798         return len + skb_headlen(skb);
799 }
800
801 static inline void skb_fill_page_desc(struct sk_buff *skb, int i,
802                                       struct page *page, int off, int size)
803 {
804         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
805
806         frag->page                = page;
807         frag->page_offset         = off;
808         frag->size                = size;
809         skb_shinfo(skb)->nr_frags = i + 1;
810 }
811
812 #define SKB_PAGE_ASSERT(skb)    BUG_ON(skb_shinfo(skb)->nr_frags)
813 #define SKB_FRAG_ASSERT(skb)    BUG_ON(skb_shinfo(skb)->frag_list)
814 #define SKB_LINEAR_ASSERT(skb)  BUG_ON(skb_is_nonlinear(skb))
815
816 /*
817  *      Add data to an sk_buff
818  */
819 static inline unsigned char *__skb_put(struct sk_buff *skb, unsigned int len)
820 {
821         unsigned char *tmp = skb->tail;
822         SKB_LINEAR_ASSERT(skb);
823         skb->tail += len;
824         skb->len  += len;
825         return tmp;
826 }
827
828 /**
829  *      skb_put - add data to a buffer
830  *      @skb: buffer to use
831  *      @len: amount of data to add
832  *
833  *      This function extends the used data area of the buffer. If this would
834  *      exceed the total buffer size the kernel will panic. A pointer to the
835  *      first byte of the extra data is returned.
836  */
837 static inline unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
838 {
839         unsigned char *tmp = skb->tail;
840         SKB_LINEAR_ASSERT(skb);
841         skb->tail += len;
842         skb->len  += len;
843         if (unlikely(skb->tail>skb->end))
844                 skb_over_panic(skb, len, current_text_addr());
845         return tmp;
846 }
847
848 static inline unsigned char *__skb_push(struct sk_buff *skb, unsigned int len)
849 {
850         skb->data -= len;
851         skb->len  += len;
852         return skb->data;
853 }
854
855 /**
856  *      skb_push - add data to the start of a buffer
857  *      @skb: buffer to use
858  *      @len: amount of data to add
859  *
860  *      This function extends the used data area of the buffer at the buffer
861  *      start. If this would exceed the total buffer headroom the kernel will
862  *      panic. A pointer to the first byte of the extra data is returned.
863  */
864 static inline unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
865 {
866         skb->data -= len;
867         skb->len  += len;
868         if (unlikely(skb->data<skb->head))
869                 skb_under_panic(skb, len, current_text_addr());
870         return skb->data;
871 }
872
873 static inline unsigned char *__skb_pull(struct sk_buff *skb, unsigned int len)
874 {
875         skb->len -= len;
876         BUG_ON(skb->len < skb->data_len);
877         return skb->data += len;
878 }
879
880 /**
881  *      skb_pull - remove data from the start of a buffer
882  *      @skb: buffer to use
883  *      @len: amount of data to remove
884  *
885  *      This function removes data from the start of a buffer, returning
886  *      the memory to the headroom. A pointer to the next data in the buffer
887  *      is returned. Once the data has been pulled future pushes will overwrite
888  *      the old data.
889  */
890 static inline unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
891 {
892         return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
893 }
894
895 extern unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta);
896
897 static inline unsigned char *__pskb_pull(struct sk_buff *skb, unsigned int len)
898 {
899         if (len > skb_headlen(skb) &&
900             !__pskb_pull_tail(skb, len-skb_headlen(skb)))
901                 return NULL;
902         skb->len -= len;
903         return skb->data += len;
904 }
905
906 static inline unsigned char *pskb_pull(struct sk_buff *skb, unsigned int len)
907 {
908         return unlikely(len > skb->len) ? NULL : __pskb_pull(skb, len);
909 }
910
911 static inline int pskb_may_pull(struct sk_buff *skb, unsigned int len)
912 {
913         if (likely(len <= skb_headlen(skb)))
914                 return 1;
915         if (unlikely(len > skb->len))
916                 return 0;
917         return __pskb_pull_tail(skb, len-skb_headlen(skb)) != NULL;
918 }
919
920 /**
921  *      skb_headroom - bytes at buffer head
922  *      @skb: buffer to check
923  *
924  *      Return the number of bytes of free space at the head of an &sk_buff.
925  */
926 static inline int skb_headroom(const struct sk_buff *skb)
927 {
928         return skb->data - skb->head;
929 }
930
931 /**
932  *      skb_tailroom - bytes at buffer end
933  *      @skb: buffer to check
934  *
935  *      Return the number of bytes of free space at the tail of an sk_buff
936  */
937 static inline int skb_tailroom(const struct sk_buff *skb)
938 {
939         return skb_is_nonlinear(skb) ? 0 : skb->end - skb->tail;
940 }
941
942 /**
943  *      skb_reserve - adjust headroom
944  *      @skb: buffer to alter
945  *      @len: bytes to move
946  *
947  *      Increase the headroom of an empty &sk_buff by reducing the tail
948  *      room. This is only allowed for an empty buffer.
949  */
950 static inline void skb_reserve(struct sk_buff *skb, int len)
951 {
952         skb->data += len;
953         skb->tail += len;
954 }
955
956 static inline void skb_reset_transport_header(struct sk_buff *skb)
957 {
958         skb->h.raw = skb->data;
959 }
960
961 static inline void skb_set_transport_header(struct sk_buff *skb,
962                                             const int offset)
963 {
964         skb->h.raw = skb->data + offset;
965 }
966
967 static inline int skb_transport_offset(const struct sk_buff *skb)
968 {
969         return skb->h.raw - skb->data;
970 }
971
972 static inline unsigned char *skb_network_header(const struct sk_buff *skb)
973 {
974         return skb->nh.raw;
975 }
976
977 static inline void skb_reset_network_header(struct sk_buff *skb)
978 {
979         skb->nh.raw = skb->data;
980 }
981
982 static inline void skb_set_network_header(struct sk_buff *skb, const int offset)
983 {
984         skb->nh.raw = skb->data + offset;
985 }
986
987 static inline int skb_network_offset(const struct sk_buff *skb)
988 {
989         return skb->nh.raw - skb->data;
990 }
991
992 static inline unsigned char *skb_mac_header(const struct sk_buff *skb)
993 {
994         return skb->mac.raw;
995 }
996
997 static inline int skb_mac_header_was_set(const struct sk_buff *skb)
998 {
999         return skb->mac.raw != NULL;
1000 }
1001
1002 static inline void skb_reset_mac_header(struct sk_buff *skb)
1003 {
1004         skb->mac.raw = skb->data;
1005 }
1006
1007 static inline void skb_set_mac_header(struct sk_buff *skb, const int offset)
1008 {
1009         skb->mac.raw = skb->data + offset;
1010 }
1011
1012 /*
1013  * CPUs often take a performance hit when accessing unaligned memory
1014  * locations. The actual performance hit varies, it can be small if the
1015  * hardware handles it or large if we have to take an exception and fix it
1016  * in software.
1017  *
1018  * Since an ethernet header is 14 bytes network drivers often end up with
1019  * the IP header at an unaligned offset. The IP header can be aligned by
1020  * shifting the start of the packet by 2 bytes. Drivers should do this
1021  * with:
1022  *
1023  * skb_reserve(NET_IP_ALIGN);
1024  *
1025  * The downside to this alignment of the IP header is that the DMA is now
1026  * unaligned. On some architectures the cost of an unaligned DMA is high
1027  * and this cost outweighs the gains made by aligning the IP header.
1028  * 
1029  * Since this trade off varies between architectures, we allow NET_IP_ALIGN
1030  * to be overridden.
1031  */
1032 #ifndef NET_IP_ALIGN
1033 #define NET_IP_ALIGN    2
1034 #endif
1035
1036 /*
1037  * The networking layer reserves some headroom in skb data (via
1038  * dev_alloc_skb). This is used to avoid having to reallocate skb data when
1039  * the header has to grow. In the default case, if the header has to grow
1040  * 16 bytes or less we avoid the reallocation.
1041  *
1042  * Unfortunately this headroom changes the DMA alignment of the resulting
1043  * network packet. As for NET_IP_ALIGN, this unaligned DMA is expensive
1044  * on some architectures. An architecture can override this value,
1045  * perhaps setting it to a cacheline in size (since that will maintain
1046  * cacheline alignment of the DMA). It must be a power of 2.
1047  *
1048  * Various parts of the networking layer expect at least 16 bytes of
1049  * headroom, you should not reduce this.
1050  */
1051 #ifndef NET_SKB_PAD
1052 #define NET_SKB_PAD     16
1053 #endif
1054
1055 extern int ___pskb_trim(struct sk_buff *skb, unsigned int len);
1056
1057 static inline void __skb_trim(struct sk_buff *skb, unsigned int len)
1058 {
1059         if (unlikely(skb->data_len)) {
1060                 WARN_ON(1);
1061                 return;
1062         }
1063         skb->len  = len;
1064         skb->tail = skb->data + len;
1065 }
1066
1067 /**
1068  *      skb_trim - remove end from a buffer
1069  *      @skb: buffer to alter
1070  *      @len: new length
1071  *
1072  *      Cut the length of a buffer down by removing data from the tail. If
1073  *      the buffer is already under the length specified it is not modified.
1074  *      The skb must be linear.
1075  */
1076 static inline void skb_trim(struct sk_buff *skb, unsigned int len)
1077 {
1078         if (skb->len > len)
1079                 __skb_trim(skb, len);
1080 }
1081
1082
1083 static inline int __pskb_trim(struct sk_buff *skb, unsigned int len)
1084 {
1085         if (skb->data_len)
1086                 return ___pskb_trim(skb, len);
1087         __skb_trim(skb, len);
1088         return 0;
1089 }
1090
1091 static inline int pskb_trim(struct sk_buff *skb, unsigned int len)
1092 {
1093         return (len < skb->len) ? __pskb_trim(skb, len) : 0;
1094 }
1095
1096 /**
1097  *      pskb_trim_unique - remove end from a paged unique (not cloned) buffer
1098  *      @skb: buffer to alter
1099  *      @len: new length
1100  *
1101  *      This is identical to pskb_trim except that the caller knows that
1102  *      the skb is not cloned so we should never get an error due to out-
1103  *      of-memory.
1104  */
1105 static inline void pskb_trim_unique(struct sk_buff *skb, unsigned int len)
1106 {
1107         int err = pskb_trim(skb, len);
1108         BUG_ON(err);
1109 }
1110
1111 /**
1112  *      skb_orphan - orphan a buffer
1113  *      @skb: buffer to orphan
1114  *
1115  *      If a buffer currently has an owner then we call the owner's
1116  *      destructor function and make the @skb unowned. The buffer continues
1117  *      to exist but is no longer charged to its former owner.
1118  */
1119 static inline void skb_orphan(struct sk_buff *skb)
1120 {
1121         if (skb->destructor)
1122                 skb->destructor(skb);
1123         skb->destructor = NULL;
1124         skb->sk         = NULL;
1125 }
1126
1127 /**
1128  *      __skb_queue_purge - empty a list
1129  *      @list: list to empty
1130  *
1131  *      Delete all buffers on an &sk_buff list. Each buffer is removed from
1132  *      the list and one reference dropped. This function does not take the
1133  *      list lock and the caller must hold the relevant locks to use it.
1134  */
1135 extern void skb_queue_purge(struct sk_buff_head *list);
1136 static inline void __skb_queue_purge(struct sk_buff_head *list)
1137 {
1138         struct sk_buff *skb;
1139         while ((skb = __skb_dequeue(list)) != NULL)
1140                 kfree_skb(skb);
1141 }
1142
1143 /**
1144  *      __dev_alloc_skb - allocate an skbuff for receiving
1145  *      @length: length to allocate
1146  *      @gfp_mask: get_free_pages mask, passed to alloc_skb
1147  *
1148  *      Allocate a new &sk_buff and assign it a usage count of one. The
1149  *      buffer has unspecified headroom built in. Users should allocate
1150  *      the headroom they think they need without accounting for the
1151  *      built in space. The built in space is used for optimisations.
1152  *
1153  *      %NULL is returned if there is no free memory.
1154  */
1155 static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
1156                                               gfp_t gfp_mask)
1157 {
1158         struct sk_buff *skb = alloc_skb(length + NET_SKB_PAD, gfp_mask);
1159         if (likely(skb))
1160                 skb_reserve(skb, NET_SKB_PAD);
1161         return skb;
1162 }
1163
1164 /**
1165  *      dev_alloc_skb - allocate an skbuff for receiving
1166  *      @length: length to allocate
1167  *
1168  *      Allocate a new &sk_buff and assign it a usage count of one. The
1169  *      buffer has unspecified headroom built in. Users should allocate
1170  *      the headroom they think they need without accounting for the
1171  *      built in space. The built in space is used for optimisations.
1172  *
1173  *      %NULL is returned if there is no free memory. Although this function
1174  *      allocates memory it can be called from an interrupt.
1175  */
1176 static inline struct sk_buff *dev_alloc_skb(unsigned int length)
1177 {
1178         return __dev_alloc_skb(length, GFP_ATOMIC);
1179 }
1180
1181 extern struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
1182                 unsigned int length, gfp_t gfp_mask);
1183
1184 /**
1185  *      netdev_alloc_skb - allocate an skbuff for rx on a specific device
1186  *      @dev: network device to receive on
1187  *      @length: length to allocate
1188  *
1189  *      Allocate a new &sk_buff and assign it a usage count of one. The
1190  *      buffer has unspecified headroom built in. Users should allocate
1191  *      the headroom they think they need without accounting for the
1192  *      built in space. The built in space is used for optimisations.
1193  *
1194  *      %NULL is returned if there is no free memory. Although this function
1195  *      allocates memory it can be called from an interrupt.
1196  */
1197 static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
1198                 unsigned int length)
1199 {
1200         return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
1201 }
1202
1203 /**
1204  *      skb_cow - copy header of skb when it is required
1205  *      @skb: buffer to cow
1206  *      @headroom: needed headroom
1207  *
1208  *      If the skb passed lacks sufficient headroom or its data part
1209  *      is shared, data is reallocated. If reallocation fails, an error
1210  *      is returned and original skb is not changed.
1211  *
1212  *      The result is skb with writable area skb->head...skb->tail
1213  *      and at least @headroom of space at head.
1214  */
1215 static inline int skb_cow(struct sk_buff *skb, unsigned int headroom)
1216 {
1217         int delta = (headroom > NET_SKB_PAD ? headroom : NET_SKB_PAD) -
1218                         skb_headroom(skb);
1219
1220         if (delta < 0)
1221                 delta = 0;
1222
1223         if (delta || skb_cloned(skb))
1224                 return pskb_expand_head(skb, (delta + (NET_SKB_PAD-1)) &
1225                                 ~(NET_SKB_PAD-1), 0, GFP_ATOMIC);
1226         return 0;
1227 }
1228
1229 /**
1230  *      skb_padto       - pad an skbuff up to a minimal size
1231  *      @skb: buffer to pad
1232  *      @len: minimal length
1233  *
1234  *      Pads up a buffer to ensure the trailing bytes exist and are
1235  *      blanked. If the buffer already contains sufficient data it
1236  *      is untouched. Otherwise it is extended. Returns zero on
1237  *      success. The skb is freed on error.
1238  */
1239  
1240 static inline int skb_padto(struct sk_buff *skb, unsigned int len)
1241 {
1242         unsigned int size = skb->len;
1243         if (likely(size >= len))
1244                 return 0;
1245         return skb_pad(skb, len-size);
1246 }
1247
1248 static inline int skb_add_data(struct sk_buff *skb,
1249                                char __user *from, int copy)
1250 {
1251         const int off = skb->len;
1252
1253         if (skb->ip_summed == CHECKSUM_NONE) {
1254                 int err = 0;
1255                 __wsum csum = csum_and_copy_from_user(from, skb_put(skb, copy),
1256                                                             copy, 0, &err);
1257                 if (!err) {
1258                         skb->csum = csum_block_add(skb->csum, csum, off);
1259                         return 0;
1260                 }
1261         } else if (!copy_from_user(skb_put(skb, copy), from, copy))
1262                 return 0;
1263
1264         __skb_trim(skb, off);
1265         return -EFAULT;
1266 }
1267
1268 static inline int skb_can_coalesce(struct sk_buff *skb, int i,
1269                                    struct page *page, int off)
1270 {
1271         if (i) {
1272                 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1273
1274                 return page == frag->page &&
1275                        off == frag->page_offset + frag->size;
1276         }
1277         return 0;
1278 }
1279
1280 static inline int __skb_linearize(struct sk_buff *skb)
1281 {
1282         return __pskb_pull_tail(skb, skb->data_len) ? 0 : -ENOMEM;
1283 }
1284
1285 /**
1286  *      skb_linearize - convert paged skb to linear one
1287  *      @skb: buffer to linarize
1288  *
1289  *      If there is no free memory -ENOMEM is returned, otherwise zero
1290  *      is returned and the old skb data released.
1291  */
1292 static inline int skb_linearize(struct sk_buff *skb)
1293 {
1294         return skb_is_nonlinear(skb) ? __skb_linearize(skb) : 0;
1295 }
1296
1297 /**
1298  *      skb_linearize_cow - make sure skb is linear and writable
1299  *      @skb: buffer to process
1300  *
1301  *      If there is no free memory -ENOMEM is returned, otherwise zero
1302  *      is returned and the old skb data released.
1303  */
1304 static inline int skb_linearize_cow(struct sk_buff *skb)
1305 {
1306         return skb_is_nonlinear(skb) || skb_cloned(skb) ?
1307                __skb_linearize(skb) : 0;
1308 }
1309
1310 /**
1311  *      skb_postpull_rcsum - update checksum for received skb after pull
1312  *      @skb: buffer to update
1313  *      @start: start of data before pull
1314  *      @len: length of data pulled
1315  *
1316  *      After doing a pull on a received packet, you need to call this to
1317  *      update the CHECKSUM_COMPLETE checksum, or set ip_summed to
1318  *      CHECKSUM_NONE so that it can be recomputed from scratch.
1319  */
1320
1321 static inline void skb_postpull_rcsum(struct sk_buff *skb,
1322                                       const void *start, unsigned int len)
1323 {
1324         if (skb->ip_summed == CHECKSUM_COMPLETE)
1325                 skb->csum = csum_sub(skb->csum, csum_partial(start, len, 0));
1326 }
1327
1328 unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len);
1329
1330 /**
1331  *      pskb_trim_rcsum - trim received skb and update checksum
1332  *      @skb: buffer to trim
1333  *      @len: new length
1334  *
1335  *      This is exactly the same as pskb_trim except that it ensures the
1336  *      checksum of received packets are still valid after the operation.
1337  */
1338
1339 static inline int pskb_trim_rcsum(struct sk_buff *skb, unsigned int len)
1340 {
1341         if (likely(len >= skb->len))
1342                 return 0;
1343         if (skb->ip_summed == CHECKSUM_COMPLETE)
1344                 skb->ip_summed = CHECKSUM_NONE;
1345         return __pskb_trim(skb, len);
1346 }
1347
1348 #define skb_queue_walk(queue, skb) \
1349                 for (skb = (queue)->next;                                       \
1350                      prefetch(skb->next), (skb != (struct sk_buff *)(queue));   \
1351                      skb = skb->next)
1352
1353 #define skb_queue_reverse_walk(queue, skb) \
1354                 for (skb = (queue)->prev;                                       \
1355                      prefetch(skb->prev), (skb != (struct sk_buff *)(queue));   \
1356                      skb = skb->prev)
1357
1358
1359 extern struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags,
1360                                          int noblock, int *err);
1361 extern unsigned int    datagram_poll(struct file *file, struct socket *sock,
1362                                      struct poll_table_struct *wait);
1363 extern int             skb_copy_datagram_iovec(const struct sk_buff *from,
1364                                                int offset, struct iovec *to,
1365                                                int size);
1366 extern int             skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
1367                                                         int hlen,
1368                                                         struct iovec *iov);
1369 extern void            skb_free_datagram(struct sock *sk, struct sk_buff *skb);
1370 extern void            skb_kill_datagram(struct sock *sk, struct sk_buff *skb,
1371                                          unsigned int flags);
1372 extern __wsum          skb_checksum(const struct sk_buff *skb, int offset,
1373                                     int len, __wsum csum);
1374 extern int             skb_copy_bits(const struct sk_buff *skb, int offset,
1375                                      void *to, int len);
1376 extern int             skb_store_bits(const struct sk_buff *skb, int offset,
1377                                       void *from, int len);
1378 extern __wsum          skb_copy_and_csum_bits(const struct sk_buff *skb,
1379                                               int offset, u8 *to, int len,
1380                                               __wsum csum);
1381 extern void            skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
1382 extern void            skb_split(struct sk_buff *skb,
1383                                  struct sk_buff *skb1, const u32 len);
1384
1385 extern struct sk_buff *skb_segment(struct sk_buff *skb, int features);
1386
1387 static inline void *skb_header_pointer(const struct sk_buff *skb, int offset,
1388                                        int len, void *buffer)
1389 {
1390         int hlen = skb_headlen(skb);
1391
1392         if (hlen - offset >= len)
1393                 return skb->data + offset;
1394
1395         if (skb_copy_bits(skb, offset, buffer, len) < 0)
1396                 return NULL;
1397
1398         return buffer;
1399 }
1400
1401 extern void skb_init(void);
1402 extern void skb_add_mtu(int mtu);
1403
1404 /**
1405  *      skb_get_timestamp - get timestamp from a skb
1406  *      @skb: skb to get stamp from
1407  *      @stamp: pointer to struct timeval to store stamp in
1408  *
1409  *      Timestamps are stored in the skb as offsets to a base timestamp.
1410  *      This function converts the offset back to a struct timeval and stores
1411  *      it in stamp.
1412  */
1413 static inline void skb_get_timestamp(const struct sk_buff *skb, struct timeval *stamp)
1414 {
1415         *stamp = ktime_to_timeval(skb->tstamp);
1416 }
1417
1418 static inline void __net_timestamp(struct sk_buff *skb)
1419 {
1420         skb->tstamp = ktime_get_real();
1421 }
1422
1423
1424 extern __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len);
1425 extern __sum16 __skb_checksum_complete(struct sk_buff *skb);
1426
1427 /**
1428  *      skb_checksum_complete - Calculate checksum of an entire packet
1429  *      @skb: packet to process
1430  *
1431  *      This function calculates the checksum over the entire packet plus
1432  *      the value of skb->csum.  The latter can be used to supply the
1433  *      checksum of a pseudo header as used by TCP/UDP.  It returns the
1434  *      checksum.
1435  *
1436  *      For protocols that contain complete checksums such as ICMP/TCP/UDP,
1437  *      this function can be used to verify that checksum on received
1438  *      packets.  In that case the function should return zero if the
1439  *      checksum is correct.  In particular, this function will return zero
1440  *      if skb->ip_summed is CHECKSUM_UNNECESSARY which indicates that the
1441  *      hardware has already verified the correctness of the checksum.
1442  */
1443 static inline unsigned int skb_checksum_complete(struct sk_buff *skb)
1444 {
1445         return skb->ip_summed != CHECKSUM_UNNECESSARY &&
1446                 __skb_checksum_complete(skb);
1447 }
1448
1449 #ifdef CONFIG_NETFILTER
1450 static inline void nf_conntrack_put(struct nf_conntrack *nfct)
1451 {
1452         if (nfct && atomic_dec_and_test(&nfct->use))
1453                 nfct->destroy(nfct);
1454 }
1455 static inline void nf_conntrack_get(struct nf_conntrack *nfct)
1456 {
1457         if (nfct)
1458                 atomic_inc(&nfct->use);
1459 }
1460 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1461 static inline void nf_conntrack_get_reasm(struct sk_buff *skb)
1462 {
1463         if (skb)
1464                 atomic_inc(&skb->users);
1465 }
1466 static inline void nf_conntrack_put_reasm(struct sk_buff *skb)
1467 {
1468         if (skb)
1469                 kfree_skb(skb);
1470 }
1471 #endif
1472 #ifdef CONFIG_BRIDGE_NETFILTER
1473 static inline void nf_bridge_put(struct nf_bridge_info *nf_bridge)
1474 {
1475         if (nf_bridge && atomic_dec_and_test(&nf_bridge->use))
1476                 kfree(nf_bridge);
1477 }
1478 static inline void nf_bridge_get(struct nf_bridge_info *nf_bridge)
1479 {
1480         if (nf_bridge)
1481                 atomic_inc(&nf_bridge->use);
1482 }
1483 #endif /* CONFIG_BRIDGE_NETFILTER */
1484 static inline void nf_reset(struct sk_buff *skb)
1485 {
1486         nf_conntrack_put(skb->nfct);
1487         skb->nfct = NULL;
1488 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1489         nf_conntrack_put_reasm(skb->nfct_reasm);
1490         skb->nfct_reasm = NULL;
1491 #endif
1492 #ifdef CONFIG_BRIDGE_NETFILTER
1493         nf_bridge_put(skb->nf_bridge);
1494         skb->nf_bridge = NULL;
1495 #endif
1496 }
1497
1498 #else /* CONFIG_NETFILTER */
1499 static inline void nf_reset(struct sk_buff *skb) {}
1500 #endif /* CONFIG_NETFILTER */
1501
1502 #ifdef CONFIG_NETWORK_SECMARK
1503 static inline void skb_copy_secmark(struct sk_buff *to, const struct sk_buff *from)
1504 {
1505         to->secmark = from->secmark;
1506 }
1507
1508 static inline void skb_init_secmark(struct sk_buff *skb)
1509 {
1510         skb->secmark = 0;
1511 }
1512 #else
1513 static inline void skb_copy_secmark(struct sk_buff *to, const struct sk_buff *from)
1514 { }
1515
1516 static inline void skb_init_secmark(struct sk_buff *skb)
1517 { }
1518 #endif
1519
1520 static inline int skb_is_gso(const struct sk_buff *skb)
1521 {
1522         return skb_shinfo(skb)->gso_size;
1523 }
1524
1525 #endif  /* __KERNEL__ */
1526 #endif  /* _LINUX_SKBUFF_H */