]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/skbuff.h
[XFRM]: beet: fix worst case header_len calculation
[net-next-2.6.git] / include / linux / skbuff.h
CommitLineData
1da177e4
LT
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
1da177e4
LT
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>
1da177e4 25#include <linux/net.h>
3fc7e8a6 26#include <linux/textsearch.h>
1da177e4 27#include <net/checksum.h>
a80958f4 28#include <linux/rcupdate.h>
97fc2f08 29#include <linux/dmaengine.h>
b7aa0bf7 30#include <linux/hrtimer.h>
1da177e4
LT
31
32#define HAVE_ALLOC_SKB /* For the drivers to know */
33#define HAVE_ALIGNABLE_SKB /* Ditto 8) */
1da177e4
LT
34
35#define CHECKSUM_NONE 0
84fa7933 36#define CHECKSUM_PARTIAL 1
1da177e4 37#define CHECKSUM_UNNECESSARY 2
84fa7933 38#define CHECKSUM_COMPLETE 3
1da177e4
LT
39
40#define SKB_DATA_ALIGN(X) (((X) + (SMP_CACHE_BYTES - 1)) & \
41 ~(SMP_CACHE_BYTES - 1))
fc910a27
DM
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))
1da177e4
LT
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 *
84fa7933 61 * COMPLETE: the most generic way. Device supplied checksum of _all_
1da177e4
LT
62 * the packet as seen by netif_rx in skb->csum.
63 * NOTE: Even if device supports only some protocols, but
84fa7933 64 * is able to produce some skb->csum, it MUST use COMPLETE,
1da177e4
LT
65 * not UNNECESSARY.
66 *
67 * B. Checksumming on output.
68 *
69 * NONE: skb is checksummed by protocol or csum is not required.
70 *
84fa7933 71 * PARTIAL: device is required to csum packet as seen by hard_start_xmit
b0e380b1
ACM
72 * from skb->transport_header to the end and to record the checksum
73 * at skb->transport_header + skb->csum.
1da177e4
LT
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
1da177e4 88struct net_device;
716ea3a7 89struct scatterlist;
1da177e4 90
5f79e0f9 91#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1da177e4
LT
92struct nf_conntrack {
93 atomic_t use;
1da177e4 94};
5f79e0f9 95#endif
1da177e4
LT
96
97#ifdef CONFIG_BRIDGE_NETFILTER
98struct nf_bridge_info {
99 atomic_t use;
100 struct net_device *physindev;
101 struct net_device *physoutdev;
102#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
103 struct net_device *netoutdev;
104#endif
105 unsigned int mask;
106 unsigned long data[32 / sizeof(unsigned long)];
107};
108#endif
109
1da177e4
LT
110struct sk_buff_head {
111 /* These two members must be first. */
112 struct sk_buff *next;
113 struct sk_buff *prev;
114
115 __u32 qlen;
116 spinlock_t lock;
117};
118
119struct sk_buff;
120
121/* To allow 64K frame to be packed as single skb without frag_list */
122#define MAX_SKB_FRAGS (65536/PAGE_SIZE + 2)
123
124typedef struct skb_frag_struct skb_frag_t;
125
126struct skb_frag_struct {
127 struct page *page;
128 __u16 page_offset;
129 __u16 size;
130};
131
132/* This data is invariant across clones and lives at
133 * the end of the header data, ie. at skb->end.
134 */
135struct skb_shared_info {
136 atomic_t dataref;
4947d3ef 137 unsigned short nr_frags;
7967168c
HX
138 unsigned short gso_size;
139 /* Warning: this field is not always filled in (UFO)! */
140 unsigned short gso_segs;
141 unsigned short gso_type;
ae08e1f0 142 __be32 ip6_frag_id;
1da177e4
LT
143 struct sk_buff *frag_list;
144 skb_frag_t frags[MAX_SKB_FRAGS];
145};
146
147/* We divide dataref into two halves. The higher 16 bits hold references
148 * to the payload part of skb->data. The lower 16 bits hold references to
149 * the entire skb->data. It is up to the users of the skb to agree on
150 * where the payload starts.
151 *
152 * All users must obey the rule that the skb->data reference count must be
153 * greater than or equal to the payload reference count.
154 *
155 * Holding a reference to the payload part means that the user does not
156 * care about modifications to the header part of skb->data.
157 */
158#define SKB_DATAREF_SHIFT 16
159#define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)
160
d179cd12
DM
161
162enum {
163 SKB_FCLONE_UNAVAILABLE,
164 SKB_FCLONE_ORIG,
165 SKB_FCLONE_CLONE,
166};
167
7967168c
HX
168enum {
169 SKB_GSO_TCPV4 = 1 << 0,
f83ef8c0 170 SKB_GSO_UDP = 1 << 1,
576a30eb
HX
171
172 /* This indicates the skb is from an untrusted source. */
173 SKB_GSO_DODGY = 1 << 2,
b0da8537
MC
174
175 /* This indicates the tcp segment has CWR set. */
f83ef8c0
HX
176 SKB_GSO_TCP_ECN = 1 << 3,
177
178 SKB_GSO_TCPV6 = 1 << 4,
7967168c
HX
179};
180
2e07fa9c
ACM
181#if BITS_PER_LONG > 32
182#define NET_SKBUFF_DATA_USES_OFFSET 1
183#endif
184
185#ifdef NET_SKBUFF_DATA_USES_OFFSET
186typedef unsigned int sk_buff_data_t;
187#else
188typedef unsigned char *sk_buff_data_t;
189#endif
190
1da177e4
LT
191/**
192 * struct sk_buff - socket buffer
193 * @next: Next buffer in list
194 * @prev: Previous buffer in list
1da177e4 195 * @sk: Socket we are owned by
325ed823 196 * @tstamp: Time we arrived
1da177e4 197 * @dev: Device we arrived on/are leaving by
c01003c2 198 * @iif: ifindex of device we arrived on
1da177e4 199 * @h: Transport layer header
b0e380b1
ACM
200 * @network_header: Network layer header
201 * @mac_header: Link layer header
67be2dd1
MW
202 * @dst: destination entry
203 * @sp: the security path, used for xfrm
1da177e4
LT
204 * @cb: Control buffer. Free for use by every layer. Put private vars here
205 * @len: Length of actual data
206 * @data_len: Data length
207 * @mac_len: Length of link layer header
208 * @csum: Checksum
67be2dd1 209 * @local_df: allow local fragmentation
1da177e4
LT
210 * @cloned: Head may be cloned (check refcnt to be sure)
211 * @nohdr: Payload reference only, must not modify header
212 * @pkt_type: Packet class
c83c2486 213 * @fclone: skbuff clone status
1da177e4
LT
214 * @ip_summed: Driver fed us an IP checksum
215 * @priority: Packet queueing priority
216 * @users: User count - see {datagram,tcp}.c
217 * @protocol: Packet protocol from driver
1da177e4
LT
218 * @truesize: Buffer size
219 * @head: Head of buffer
220 * @data: Data head pointer
221 * @tail: Tail pointer
222 * @end: End pointer
223 * @destructor: Destruct function
82e91ffe 224 * @mark: Generic packet mark
1da177e4 225 * @nfct: Associated connection, if any
c83c2486 226 * @ipvs_property: skbuff is owned by ipvs
1da177e4 227 * @nfctinfo: Relationship of this skb to the connection
461ddf3b 228 * @nfct_reasm: netfilter conntrack re-assembly pointer
1da177e4 229 * @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
1da177e4
LT
230 * @tc_index: Traffic control index
231 * @tc_verd: traffic control verdict
f4b8ea78
RD
232 * @dma_cookie: a cookie to one of several possible DMA operations
233 * done by skb DMA functions
984bc16c 234 * @secmark: security marking
1da177e4
LT
235 */
236
237struct sk_buff {
238 /* These two members must be first. */
239 struct sk_buff *next;
240 struct sk_buff *prev;
241
1da177e4 242 struct sock *sk;
b7aa0bf7 243 ktime_t tstamp;
1da177e4 244 struct net_device *dev;
c01003c2
PM
245 int iif;
246 /* 4 byte hole on 64 bit*/
1da177e4 247
1da177e4
LT
248 struct dst_entry *dst;
249 struct sec_path *sp;
250
251 /*
252 * This is the control buffer. It is free to use for every
253 * layer. Please put your private variables there. If you
254 * want to keep them across layers you have to do a skb_clone()
255 * first. This is owned by whoever has the skb queued ATM.
256 */
3e3850e9 257 char cb[48];
1da177e4
LT
258
259 unsigned int len,
260 data_len,
1f61ab5c 261 mac_len;
ff1dcadb
AV
262 union {
263 __wsum csum;
264 __u32 csum_offset;
265 };
1da177e4 266 __u32 priority;
1cbb3380
TG
267 __u8 local_df:1,
268 cloned:1,
269 ip_summed:2,
6869c4d8
HW
270 nohdr:1,
271 nfctinfo:3;
d179cd12 272 __u8 pkt_type:3,
b84f4cc9
PM
273 fclone:2,
274 ipvs_property:1;
a0d3bea3 275 __be16 protocol;
1da177e4
LT
276
277 void (*destructor)(struct sk_buff *skb);
9fb9cbb1 278#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
5f79e0f9 279 struct nf_conntrack *nfct;
9fb9cbb1
YK
280 struct sk_buff *nfct_reasm;
281#endif
1da177e4
LT
282#ifdef CONFIG_BRIDGE_NETFILTER
283 struct nf_bridge_info *nf_bridge;
284#endif
1da177e4 285#ifdef CONFIG_NET_SCHED
b6b99eb5 286 __u16 tc_index; /* traffic control index */
1da177e4 287#ifdef CONFIG_NET_CLS_ACT
b6b99eb5 288 __u16 tc_verd; /* traffic control verdict */
1da177e4 289#endif
1da177e4 290#endif
97fc2f08
CL
291#ifdef CONFIG_NET_DMA
292 dma_cookie_t dma_cookie;
293#endif
984bc16c
JM
294#ifdef CONFIG_NETWORK_SECMARK
295 __u32 secmark;
296#endif
1da177e4 297
82e91ffe 298 __u32 mark;
1da177e4 299
27a884dc
ACM
300 sk_buff_data_t transport_header;
301 sk_buff_data_t network_header;
302 sk_buff_data_t mac_header;
1da177e4 303 /* These elements must be at the end, see alloc_skb() for details. */
27a884dc 304 sk_buff_data_t tail;
4305b541 305 sk_buff_data_t end;
1da177e4 306 unsigned char *head,
4305b541 307 *data;
27a884dc
ACM
308 unsigned int truesize;
309 atomic_t users;
1da177e4
LT
310};
311
312#ifdef __KERNEL__
313/*
314 * Handling routines are only of interest to the kernel
315 */
316#include <linux/slab.h>
317
318#include <asm/system.h>
319