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