blob: c31382d3ef115ecefbfefc45715190391bd78ae0 [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>
Michal Schmidt6fecd192007-02-07 15:05:12 -080048#include <linux/netfilter/nf_conntrack_sane.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080049
50/* per conntrack: application helper private data */
51union nf_conntrack_help {
52 /* insert conntrack helper private data (master) here */
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080053 struct nf_ct_ftp_master ct_ftp_info;
Patrick McHardyf09943f2006-12-02 22:09:41 -080054 struct nf_ct_pptp_master ct_pptp_info;
Patrick McHardyf587de02006-12-02 22:08:46 -080055 struct nf_ct_h323_master ct_h323_info;
Michal Schmidt6fecd192007-02-07 15:05:12 -080056 struct nf_ct_sane_master ct_sane_info;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080057};
58
59#include <linux/types.h>
60#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050061#include <linux/timer.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080062
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
Harald Weltedc808fe2006-03-20 17:56:32 -080078/* 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
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080090#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardyf8eb24a2006-11-29 02:35:15 +010091#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
92
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080093struct 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
Harald Weltedc808fe2006-03-20 17:56:32 -0800106 /* If we were expected by an expectation, this will be it */
107 struct nf_conn *master;
108
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109 /* 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
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800117 /* Unique ID that identifies this conntrack*/
118 unsigned int id;
119
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800120 /* features - nat, helper, ... used by allocating system */
121 u_int32_t features;
122
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800123#if defined(CONFIG_NF_CONNTRACK_MARK)
124 u_int32_t mark;
125#endif
126
James Morris7c9728c2006-06-09 00:31:46 -0700127#ifdef CONFIG_NF_CONNTRACK_SECMARK
128 u_int32_t secmark;
129#endif
130
Harald Weltedc808fe2006-03-20 17:56:32 -0800131 /* Storage reserved for other modules: */
132 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800133
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700134 /* Extensions */
135 struct nf_ct_ext *ext;
136
Harald Weltedc808fe2006-03-20 17:56:32 -0800137 /* features dynamically at the end: helper, nat (both optional) */
138 char data[0];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800139};
140
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800141static inline struct nf_conn *
142nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
143{
144 return container_of(hash, struct nf_conn,
145 tuplehash[hash->tuple.dst.dir]);
146}
147
148/* get master conntrack via master expectation */
149#define master_ct(conntr) (conntr->master)
150
151/* Alter reply tuple (maybe alter helper). */
152extern void
153nf_conntrack_alter_reply(struct nf_conn *conntrack,
154 const struct nf_conntrack_tuple *newreply);
155
156/* Is this tuple taken? (ignoring any belonging to the given
157 conntrack). */
158extern int
159nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
160 const struct nf_conn *ignored_conntrack);
161
162/* Return conntrack_info and tuple hash for given skb. */
163static inline struct nf_conn *
164nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
165{
166 *ctinfo = skb->nfctinfo;
167 return (struct nf_conn *)skb->nfct;
168}
169
170/* decrement reference count on a conntrack */
171static inline void nf_ct_put(struct nf_conn *ct)
172{
173 NF_CT_ASSERT(ct);
174 nf_conntrack_put(&ct->ct_general);
175}
176
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800177/* Protocol module loading */
178extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
179extern void nf_ct_l3proto_module_put(unsigned short l3proto);
180
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800181extern struct nf_conntrack_tuple_hash *
182__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
183 const struct nf_conn *ignored_conntrack);
184
185extern void nf_conntrack_hash_insert(struct nf_conn *ct);
186
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800187extern void nf_conntrack_flush(void);
188
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800189extern int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
190 const struct nf_conntrack_tuple *orig);
191
192extern void __nf_ct_refresh_acct(struct nf_conn *ct,
193 enum ip_conntrack_info ctinfo,
194 const struct sk_buff *skb,
195 unsigned long extra_jiffies,
196 int do_acct);
197
198/* Refresh conntrack for this many jiffies and do accounting */
199static inline void nf_ct_refresh_acct(struct nf_conn *ct,
200 enum ip_conntrack_info ctinfo,
201 const struct sk_buff *skb,
202 unsigned long extra_jiffies)
203{
204 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
205}
206
207/* Refresh conntrack for this many jiffies */
208static inline void nf_ct_refresh(struct nf_conn *ct,
209 const struct sk_buff *skb,
210 unsigned long extra_jiffies)
211{
212 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
213}
214
215/* These are for NAT. Icky. */
216/* Update TCP window tracking data when NAT mangles the packet */
217extern void nf_conntrack_tcp_update(struct sk_buff *skb,
218 unsigned int dataoff,
219 struct nf_conn *conntrack,
220 int dir);
221
222/* Call me when a conntrack is destroyed. */
223extern void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
224
225/* Fake conntrack entry for untracked connections */
226extern struct nf_conn nf_conntrack_untracked;
227
228extern int nf_ct_no_defrag;
229
230/* Iterate over all conntracks: if iter returns true, it's deleted. */
231extern void
232nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data);
233extern void nf_conntrack_free(struct nf_conn *ct);
234extern struct nf_conn *
235nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
236 const struct nf_conntrack_tuple *repl);
237
238/* It's confirmed if it is, or has been in the hash table. */
239static inline int nf_ct_is_confirmed(struct nf_conn *ct)
240{
241 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
242}
243
244static inline int nf_ct_is_dying(struct nf_conn *ct)
245{
246 return test_bit(IPS_DYING_BIT, &ct->status);
247}
248
Patrick McHardy587aa642007-03-14 16:37:25 -0700249static inline int nf_ct_is_untracked(const struct sk_buff *skb)
250{
251 return (skb->nfct == &nf_conntrack_untracked.ct_general);
252}
253
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800254extern unsigned int nf_conntrack_htable_size;
Patrick McHardy39a27a32006-05-29 18:23:54 -0700255extern int nf_conntrack_checksum;
Patrick McHardyf8eb24a2006-11-29 02:35:15 +0100256extern atomic_t nf_conntrack_count;
257extern int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800258
Patrick McHardyf8eb24a2006-11-29 02:35:15 +0100259DECLARE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800260#define NF_CT_STAT_INC(count) (__get_cpu_var(nf_conntrack_stat).count++)
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800261#define NF_CT_STAT_INC_ATOMIC(count) \
262do { \
263 local_bh_disable(); \
264 __get_cpu_var(nf_conntrack_stat).count++; \
265 local_bh_enable(); \
266} while (0)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800267
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268/* no helper, no nat */
269#define NF_CT_F_BASIC 0
270/* for helper */
271#define NF_CT_F_HELP 1
272/* for nat. */
273#define NF_CT_F_NAT 2
274#define NF_CT_F_NUM 4
275
276extern int
Harald Weltedc808fe2006-03-20 17:56:32 -0800277nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800278extern void
279nf_conntrack_unregister_cache(u_int32_t features);
280
Harald Weltedc808fe2006-03-20 17:56:32 -0800281/* valid combinations:
282 * basic: nf_conn, nf_conn .. nf_conn_help
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800283 * nat: nf_conn .. nf_conn_nat, nf_conn .. nf_conn_nat .. nf_conn help
Harald Weltedc808fe2006-03-20 17:56:32 -0800284 */
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800285#ifdef CONFIG_NF_NAT_NEEDED
Yasuyuki Kozakai4ba88772007-07-07 22:22:33 -0700286#include <net/netfilter/nf_nat.h>
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800287static inline struct nf_conn_nat *nfct_nat(const struct nf_conn *ct)
288{
289 unsigned int offset = sizeof(struct nf_conn);
290
291 if (!(ct->features & NF_CT_F_NAT))
292 return NULL;
293
294 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
295 return (struct nf_conn_nat *) ((void *)ct + offset);
296}
297
298static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
299{
300 unsigned int offset = sizeof(struct nf_conn);
301
302 if (!(ct->features & NF_CT_F_HELP))
303 return NULL;
304 if (ct->features & NF_CT_F_NAT) {
305 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
306 offset += sizeof(struct nf_conn_nat);
307 }
308
309 offset = ALIGN(offset, __alignof__(struct nf_conn_help));
310 return (struct nf_conn_help *) ((void *)ct + offset);
311}
312#else /* No NAT */
Harald Weltedc808fe2006-03-20 17:56:32 -0800313static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
314{
315 unsigned int offset = sizeof(struct nf_conn);
316
317 if (!(ct->features & NF_CT_F_HELP))
318 return NULL;
319
Patrick McHardyf9aae952006-12-02 22:04:50 -0800320 offset = ALIGN(offset, __alignof__(struct nf_conn_help));
Harald Weltedc808fe2006-03-20 17:56:32 -0800321 return (struct nf_conn_help *) ((void *)ct + offset);
322}
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800323#endif /* CONFIG_NF_NAT_NEEDED */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800324#endif /* __KERNEL__ */
325#endif /* _NF_CONNTRACK_H */