[NETFILTER]: nf_nat: move NAT declarations from nf_conntrack_ipv4.h to nf_nat.h
[deliverable/linux.git] / include / net / netfilter / nf_conntrack.h
CommitLineData
9fb9cbb1
YK
1/*
2 * Connection state tracking for netfilter. This is separated from,
3 * but required by, the (future) NAT layer; it can also be used by an iptables
4 * extension.
5 *
6 * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
7 * - generalize L3 protocol dependent part.
8 *
9 * Derived from include/linux/netfiter_ipv4/ip_conntrack.h
10 */
11
12#ifndef _NF_CONNTRACK_H
13#define _NF_CONNTRACK_H
14
15#include <linux/netfilter/nf_conntrack_common.h>
16
17#ifdef __KERNEL__
9fb9cbb1
YK
18#include <linux/bitops.h>
19#include <linux/compiler.h>
20#include <asm/atomic.h>
21
22#include <linux/netfilter/nf_conntrack_tcp.h>
23#include <linux/netfilter/nf_conntrack_sctp.h>
f09943fe 24#include <linux/netfilter/nf_conntrack_proto_gre.h>
9fb9cbb1
YK
25#include <net/netfilter/ipv4/nf_conntrack_icmp.h>
26#include <net/netfilter/ipv6/nf_conntrack_icmpv6.h>
27
28#include <net/netfilter/nf_conntrack_tuple.h>
29
30/* per conntrack: protocol private data */
31union nf_conntrack_proto {
32 /* insert conntrack proto private data here */
33 struct ip_ct_sctp sctp;
34 struct ip_ct_tcp tcp;
35 struct ip_ct_icmp icmp;
36 struct nf_ct_icmpv6 icmpv6;
f09943fe 37 struct nf_ct_gre gre;
9fb9cbb1
YK
38};
39
40union nf_conntrack_expect_proto {
41 /* insert expect proto private data here */
42};
43
44/* Add protocol helper include file here */
45#include <linux/netfilter/nf_conntrack_ftp.h>
f09943fe 46#include <linux/netfilter/nf_conntrack_pptp.h>
f587de0e 47#include <linux/netfilter/nf_conntrack_h323.h>
6fecd198 48#include <linux/netfilter/nf_conntrack_sane.h>
9fb9cbb1
YK
49
50/* per conntrack: application helper private data */
51union nf_conntrack_help {
52 /* insert conntrack helper private data (master) here */
55a73324 53 struct nf_ct_ftp_master ct_ftp_info;
f09943fe 54 struct nf_ct_pptp_master ct_pptp_info;
f587de0e 55 struct nf_ct_h323_master ct_h323_info;
6fecd198 56 struct nf_ct_sane_master ct_sane_info;
9fb9cbb1
YK
57};
58
59#include <linux/types.h>
60#include <linux/skbuff.h>
d7fe0f24 61#include <linux/timer.h>
9fb9cbb1
YK
62
63#ifdef CONFIG_NETFILTER_DEBUG
64#define NF_CT_ASSERT(x) \
65do { \
66 if (!(x)) \
67 /* Wooah! I'm tripping my conntrack in a frenzy of \
68 netplay... */ \
69 printk("NF_CT_ASSERT: %s:%i(%s)\n", \
70 __FILE__, __LINE__, __FUNCTION__); \
71} while(0)
72#else
73#define NF_CT_ASSERT(x)
74#endif
75
76struct nf_conntrack_helper;
77
dc808fe2
HW
78/* nf_conn feature for connections that have a helper */
79struct nf_conn_help {
80 /* Helper. if any */
81 struct nf_conntrack_helper *helper;
82
83 union nf_conntrack_help help;
84
85 /* Current number of expected connections */
86 unsigned int expecting;
87};
88
89
9fb9cbb1 90#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
f8eb24a8
PM
91#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
92
9fb9cbb1
YK
93struct nf_conn
94{
95 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
96 plus 1 for any connection(s) we are `master' for */
97 struct nf_conntrack ct_general;
98
99 /* XXX should I move this to the tail ? - Y.K */
100 /* These are my tuples; original and reply */
101 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
102
103 /* Have we seen traffic both ways yet? (bitset) */
104 unsigned long status;
105
dc808fe2
HW
106 /* If we were expected by an expectation, this will be it */
107 struct nf_conn *master;
108
9fb9cbb1
YK
109 /* Timer function; drops refcnt when it goes off. */
110 struct timer_list timeout;
111
112#ifdef CONFIG_NF_CT_ACCT
113 /* Accounting Information (same cache line as other written members) */
114 struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
115#endif
9fb9cbb1 116
c1d10adb
PNA
117 /* Unique ID that identifies this conntrack*/
118 unsigned int id;
119
9fb9cbb1
YK
120 /* features - nat, helper, ... used by allocating system */
121 u_int32_t features;
122
9fb9cbb1
YK
123#if defined(CONFIG_NF_CONNTRACK_MARK)
124 u_int32_t mark;
125#endif
126
7c9728c3
JM
127#ifdef CONFIG_NF_CONNTRACK_SECMARK
128 u_int32_t secmark;
129#endif
130
dc808fe2
HW
131 /* Storage reserved for other modules: */
132 union nf_conntrack_proto proto;
9fb9cbb1 133
dc808fe2
HW
134 /* features dynamically at the end: helper, nat (both optional) */
135 char data[0];
9fb9cbb1
YK
136};
137
9fb9cbb1
YK
138static inline struct nf_conn *
139nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
140{
141 return container_of(hash, struct nf_conn,
142 tuplehash[hash->tuple.dst.dir]);
143}
144
145/* get master conntrack via master expectation */
146#define master_ct(conntr) (conntr->master)
147
148/* Alter reply tuple (maybe alter helper). */
149extern void
150nf_conntrack_alter_reply(struct nf_conn *conntrack,
151 const struct nf_conntrack_tuple *newreply);
152
153/* Is this tuple taken? (ignoring any belonging to the given
154 conntrack). */
155extern int
156nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
157 const struct nf_conn *ignored_conntrack);
158
159/* Return conntrack_info and tuple hash for given skb. */
160static inline struct nf_conn *
161nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
162{
163 *ctinfo = skb->nfctinfo;
164 return (struct nf_conn *)skb->nfct;
165}
166
167/* decrement reference count on a conntrack */
168static inline void nf_ct_put(struct nf_conn *ct)
169{
170 NF_CT_ASSERT(ct);
171 nf_conntrack_put(&ct->ct_general);
172}
173
b9f78f9f
PNA
174/* Protocol module loading */
175extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
176extern void nf_ct_l3proto_module_put(unsigned short l3proto);
177
c1d10adb
PNA
178extern struct nf_conntrack_tuple_hash *
179__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
180 const struct nf_conn *ignored_conntrack);
181
182extern void nf_conntrack_hash_insert(struct nf_conn *ct);
183
c1d10adb
PNA
184extern void nf_conntrack_flush(void);
185
9fb9cbb1
YK
186extern int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
187 const struct nf_conntrack_tuple *orig);
188
189extern void __nf_ct_refresh_acct(struct nf_conn *ct,
190 enum ip_conntrack_info ctinfo,
191 const struct sk_buff *skb,
192 unsigned long extra_jiffies,
193 int do_acct);
194
195/* Refresh conntrack for this many jiffies and do accounting */
196static inline void nf_ct_refresh_acct(struct nf_conn *ct,
197 enum ip_conntrack_info ctinfo,
198 const struct sk_buff *skb,
199 unsigned long extra_jiffies)
200{
201 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
202}
203
204/* Refresh conntrack for this many jiffies */
205static inline void nf_ct_refresh(struct nf_conn *ct,
206 const struct sk_buff *skb,
207 unsigned long extra_jiffies)
208{
209 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
210}
211
212/* These are for NAT. Icky. */
213/* Update TCP window tracking data when NAT mangles the packet */
214extern void nf_conntrack_tcp_update(struct sk_buff *skb,
215 unsigned int dataoff,
216 struct nf_conn *conntrack,
217 int dir);
218
219/* Call me when a conntrack is destroyed. */
220extern void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
221
222/* Fake conntrack entry for untracked connections */
223extern struct nf_conn nf_conntrack_untracked;
224
225extern int nf_ct_no_defrag;
226
227/* Iterate over all conntracks: if iter returns true, it's deleted. */
228extern void
229nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data);
230extern void nf_conntrack_free(struct nf_conn *ct);
231extern struct nf_conn *
232nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
233 const struct nf_conntrack_tuple *repl);
234
235/* It's confirmed if it is, or has been in the hash table. */
236static inline int nf_ct_is_confirmed(struct nf_conn *ct)
237{
238 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
239}
240
241static inline int nf_ct_is_dying(struct nf_conn *ct)
242{
243 return test_bit(IPS_DYING_BIT, &ct->status);
244}
245
587aa641
PM
246static inline int nf_ct_is_untracked(const struct sk_buff *skb)
247{
248 return (skb->nfct == &nf_conntrack_untracked.ct_general);
249}
250
9fb9cbb1 251extern unsigned int nf_conntrack_htable_size;
39a27a35 252extern int nf_conntrack_checksum;
f8eb24a8
PM
253extern atomic_t nf_conntrack_count;
254extern int nf_conntrack_max;
9fb9cbb1 255
f8eb24a8 256DECLARE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
9fb9cbb1 257#define NF_CT_STAT_INC(count) (__get_cpu_var(nf_conntrack_stat).count++)
c0e912d7
PM
258#define NF_CT_STAT_INC_ATOMIC(count) \
259do { \
260 local_bh_disable(); \
261 __get_cpu_var(nf_conntrack_stat).count++; \
262 local_bh_enable(); \
263} while (0)
9fb9cbb1 264
9fb9cbb1
YK
265/* no helper, no nat */
266#define NF_CT_F_BASIC 0
267/* for helper */
268#define NF_CT_F_HELP 1
269/* for nat. */
270#define NF_CT_F_NAT 2
271#define NF_CT_F_NUM 4
272
273extern int
dc808fe2 274nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size);
9fb9cbb1
YK
275extern void
276nf_conntrack_unregister_cache(u_int32_t features);
277
dc808fe2
HW
278/* valid combinations:
279 * basic: nf_conn, nf_conn .. nf_conn_help
5b1158e9 280 * nat: nf_conn .. nf_conn_nat, nf_conn .. nf_conn_nat .. nf_conn help
dc808fe2 281 */
5b1158e9 282#ifdef CONFIG_NF_NAT_NEEDED
4ba88779 283#include <net/netfilter/nf_nat.h>
5b1158e9
JK
284static inline struct nf_conn_nat *nfct_nat(const struct nf_conn *ct)
285{
286 unsigned int offset = sizeof(struct nf_conn);
287
288 if (!(ct->features & NF_CT_F_NAT))
289 return NULL;
290
291 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
292 return (struct nf_conn_nat *) ((void *)ct + offset);
293}
294
dc808fe2
HW
295static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
296{
297 unsigned int offset = sizeof(struct nf_conn);
298
299 if (!(ct->features & NF_CT_F_HELP))
300 return NULL;
5b1158e9
JK
301 if (ct->features & NF_CT_F_NAT) {
302 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
303 offset += sizeof(struct nf_conn_nat);
304 }
dc808fe2 305
f9aae958 306 offset = ALIGN(offset, __alignof__(struct nf_conn_help));
dc808fe2
HW
307 return (struct nf_conn_help *) ((void *)ct + offset);
308}
5b1158e9
JK
309#else /* No NAT */
310static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
311{
312 unsigned int offset = sizeof(struct nf_conn);
313
314 if (!(ct->features & NF_CT_F_HELP))
315 return NULL;
dc808fe2 316
5b1158e9
JK
317 offset = ALIGN(offset, __alignof__(struct nf_conn_help));
318 return (struct nf_conn_help *) ((void *)ct + offset);
319}
320#endif /* CONFIG_NF_NAT_NEEDED */
9fb9cbb1
YK
321#endif /* __KERNEL__ */
322#endif /* _NF_CONNTRACK_H */
This page took 0.233186 seconds and 5 git commands to generate.