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