blob: bd01b4633ee20138dc6681b2e15dd2e7cabc471c [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/*
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__
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080018#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>
Patrick McHardyf09943f2006-12-02 22:09:41 -080024#include <linux/netfilter/nf_conntrack_proto_gre.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080025#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;
Patrick McHardyf09943f2006-12-02 22:09:41 -080037 struct nf_ct_gre gre;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080038};
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>
Patrick McHardyf09943f2006-12-02 22:09:41 -080046#include <linux/netfilter/nf_conntrack_pptp.h>
Patrick McHardyf587de02006-12-02 22:08:46 -080047#include <linux/netfilter/nf_conntrack_h323.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080048
49/* per conntrack: application helper private data */
50union nf_conntrack_help {
51 /* insert conntrack helper private data (master) here */
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080052 struct nf_ct_ftp_master ct_ftp_info;
Patrick McHardyf09943f2006-12-02 22:09:41 -080053 struct nf_ct_pptp_master ct_pptp_info;
Patrick McHardyf587de02006-12-02 22:08:46 -080054 struct nf_ct_h323_master ct_h323_info;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080055};
56
57#include <linux/types.h>
58#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050059#include <linux/timer.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080060
61#ifdef CONFIG_NETFILTER_DEBUG
62#define NF_CT_ASSERT(x) \
63do { \
64 if (!(x)) \
65 /* Wooah! I'm tripping my conntrack in a frenzy of \
66 netplay... */ \
67 printk("NF_CT_ASSERT: %s:%i(%s)\n", \
68 __FILE__, __LINE__, __FUNCTION__); \
69} while(0)
70#else
71#define NF_CT_ASSERT(x)
72#endif
73
74struct nf_conntrack_helper;
75
Harald Weltedc808fe2006-03-20 17:56:32 -080076/* nf_conn feature for connections that have a helper */
77struct nf_conn_help {
78 /* Helper. if any */
79 struct nf_conntrack_helper *helper;
80
81 union nf_conntrack_help help;
82
83 /* Current number of expected connections */
84 unsigned int expecting;
85};
86
87
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080088#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardyf8eb24a2006-11-29 02:35:15 +010089#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
90
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091struct nf_conn
92{
93 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
94 plus 1 for any connection(s) we are `master' for */
95 struct nf_conntrack ct_general;
96
97 /* XXX should I move this to the tail ? - Y.K */
98 /* These are my tuples; original and reply */
99 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
100
101 /* Have we seen traffic both ways yet? (bitset) */
102 unsigned long status;
103
Harald Weltedc808fe2006-03-20 17:56:32 -0800104 /* If we were expected by an expectation, this will be it */
105 struct nf_conn *master;
106
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107 /* Timer function; drops refcnt when it goes off. */
108 struct timer_list timeout;
109
110#ifdef CONFIG_NF_CT_ACCT
111 /* Accounting Information (same cache line as other written members) */
112 struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
113#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800115 /* Unique ID that identifies this conntrack*/
116 unsigned int id;
117
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118 /* features - nat, helper, ... used by allocating system */
119 u_int32_t features;
120
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800121#if defined(CONFIG_NF_CONNTRACK_MARK)
122 u_int32_t mark;
123#endif
124
James Morris7c9728c2006-06-09 00:31:46 -0700125#ifdef CONFIG_NF_CONNTRACK_SECMARK
126 u_int32_t secmark;
127#endif
128
Harald Weltedc808fe2006-03-20 17:56:32 -0800129 /* Storage reserved for other modules: */
130 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800131
Harald Weltedc808fe2006-03-20 17:56:32 -0800132 /* features dynamically at the end: helper, nat (both optional) */
133 char data[0];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800134};
135
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800136static inline struct nf_conn *
137nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
138{
139 return container_of(hash, struct nf_conn,
140 tuplehash[hash->tuple.dst.dir]);
141}
142
143/* get master conntrack via master expectation */
144#define master_ct(conntr) (conntr->master)
145
146/* Alter reply tuple (maybe alter helper). */
147extern void
148nf_conntrack_alter_reply(struct nf_conn *conntrack,
149 const struct nf_conntrack_tuple *newreply);
150
151/* Is this tuple taken? (ignoring any belonging to the given
152 conntrack). */
153extern int
154nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
155 const struct nf_conn *ignored_conntrack);
156
157/* Return conntrack_info and tuple hash for given skb. */
158static inline struct nf_conn *
159nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
160{
161 *ctinfo = skb->nfctinfo;
162 return (struct nf_conn *)skb->nfct;
163}
164
165/* decrement reference count on a conntrack */
166static inline void nf_ct_put(struct nf_conn *ct)
167{
168 NF_CT_ASSERT(ct);
169 nf_conntrack_put(&ct->ct_general);
170}
171
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800172/* Protocol module loading */
173extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
174extern void nf_ct_l3proto_module_put(unsigned short l3proto);
175
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800176extern struct nf_conntrack_tuple_hash *
177__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
178 const struct nf_conn *ignored_conntrack);
179
180extern void nf_conntrack_hash_insert(struct nf_conn *ct);
181
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800182extern void nf_conntrack_flush(void);
183
184extern struct nf_conntrack_helper *
185nf_ct_helper_find_get( const struct nf_conntrack_tuple *tuple);
186extern void nf_ct_helper_put(struct nf_conntrack_helper *helper);
187
188extern struct nf_conntrack_helper *
189__nf_conntrack_helper_find_byname(const char *name);
190
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800191extern int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
192 const struct nf_conntrack_tuple *orig);
193
194extern void __nf_ct_refresh_acct(struct nf_conn *ct,
195 enum ip_conntrack_info ctinfo,
196 const struct sk_buff *skb,
197 unsigned long extra_jiffies,
198 int do_acct);
199
200/* Refresh conntrack for this many jiffies and do accounting */
201static inline void nf_ct_refresh_acct(struct nf_conn *ct,
202 enum ip_conntrack_info ctinfo,
203 const struct sk_buff *skb,
204 unsigned long extra_jiffies)
205{
206 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
207}
208
209/* Refresh conntrack for this many jiffies */
210static inline void nf_ct_refresh(struct nf_conn *ct,
211 const struct sk_buff *skb,
212 unsigned long extra_jiffies)
213{
214 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
215}
216
217/* These are for NAT. Icky. */
218/* Update TCP window tracking data when NAT mangles the packet */
219extern void nf_conntrack_tcp_update(struct sk_buff *skb,
220 unsigned int dataoff,
221 struct nf_conn *conntrack,
222 int dir);
223
224/* Call me when a conntrack is destroyed. */
225extern void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
226
227/* Fake conntrack entry for untracked connections */
228extern struct nf_conn nf_conntrack_untracked;
229
230extern int nf_ct_no_defrag;
231
232/* Iterate over all conntracks: if iter returns true, it's deleted. */
233extern void
234nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data);
235extern void nf_conntrack_free(struct nf_conn *ct);
236extern struct nf_conn *
237nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
238 const struct nf_conntrack_tuple *repl);
239
240/* It's confirmed if it is, or has been in the hash table. */
241static inline int nf_ct_is_confirmed(struct nf_conn *ct)
242{
243 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
244}
245
246static inline int nf_ct_is_dying(struct nf_conn *ct)
247{
248 return test_bit(IPS_DYING_BIT, &ct->status);
249}
250
251extern unsigned int nf_conntrack_htable_size;
Patrick McHardy39a27a32006-05-29 18:23:54 -0700252extern int nf_conntrack_checksum;
Patrick McHardyf8eb24a2006-11-29 02:35:15 +0100253extern atomic_t nf_conntrack_count;
254extern int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800255
Patrick McHardyf8eb24a2006-11-29 02:35:15 +0100256DECLARE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800257#define NF_CT_STAT_INC(count) (__get_cpu_var(nf_conntrack_stat).count++)
258
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800259/* no helper, no nat */
260#define NF_CT_F_BASIC 0
261/* for helper */
262#define NF_CT_F_HELP 1
263/* for nat. */
264#define NF_CT_F_NAT 2
265#define NF_CT_F_NUM 4
266
267extern int
Harald Weltedc808fe2006-03-20 17:56:32 -0800268nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800269extern void
270nf_conntrack_unregister_cache(u_int32_t features);
271
Harald Weltedc808fe2006-03-20 17:56:32 -0800272/* valid combinations:
273 * basic: nf_conn, nf_conn .. nf_conn_help
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800274 * nat: nf_conn .. nf_conn_nat, nf_conn .. nf_conn_nat .. nf_conn help
Harald Weltedc808fe2006-03-20 17:56:32 -0800275 */
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800276#ifdef CONFIG_NF_NAT_NEEDED
277static inline struct nf_conn_nat *nfct_nat(const struct nf_conn *ct)
278{
279 unsigned int offset = sizeof(struct nf_conn);
280
281 if (!(ct->features & NF_CT_F_NAT))
282 return NULL;
283
284 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
285 return (struct nf_conn_nat *) ((void *)ct + offset);
286}
287
288static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
289{
290 unsigned int offset = sizeof(struct nf_conn);
291
292 if (!(ct->features & NF_CT_F_HELP))
293 return NULL;
294 if (ct->features & NF_CT_F_NAT) {
295 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
296 offset += sizeof(struct nf_conn_nat);
297 }
298
299 offset = ALIGN(offset, __alignof__(struct nf_conn_help));
300 return (struct nf_conn_help *) ((void *)ct + offset);
301}
302#else /* No NAT */
Harald Weltedc808fe2006-03-20 17:56:32 -0800303static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
304{
305 unsigned int offset = sizeof(struct nf_conn);
306
307 if (!(ct->features & NF_CT_F_HELP))
308 return NULL;
309
Patrick McHardyf9aae952006-12-02 22:04:50 -0800310 offset = ALIGN(offset, __alignof__(struct nf_conn_help));
Harald Weltedc808fe2006-03-20 17:56:32 -0800311 return (struct nf_conn_help *) ((void *)ct + offset);
312}
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800313#endif /* CONFIG_NF_NAT_NEEDED */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314#endif /* __KERNEL__ */
315#endif /* _NF_CONNTRACK_H */