blob: 2743c156caa00056232f7d516f3cf838409edef0 [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__
18#include <linux/config.h>
19#include <linux/bitops.h>
20#include <linux/compiler.h>
21#include <asm/atomic.h>
22
23#include <linux/netfilter/nf_conntrack_tcp.h>
24#include <linux/netfilter/nf_conntrack_sctp.h>
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;
37};
38
39union nf_conntrack_expect_proto {
40 /* insert expect proto private data here */
41};
42
43/* Add protocol helper include file here */
44#include <linux/netfilter/nf_conntrack_ftp.h>
45
46/* per conntrack: application helper private data */
47union nf_conntrack_help {
48 /* insert conntrack helper private data (master) here */
49 struct ip_ct_ftp_master ct_ftp_info;
50};
51
52#include <linux/types.h>
53#include <linux/skbuff.h>
54
55#ifdef CONFIG_NETFILTER_DEBUG
56#define NF_CT_ASSERT(x) \
57do { \
58 if (!(x)) \
59 /* Wooah! I'm tripping my conntrack in a frenzy of \
60 netplay... */ \
61 printk("NF_CT_ASSERT: %s:%i(%s)\n", \
62 __FILE__, __LINE__, __FUNCTION__); \
63} while(0)
64#else
65#define NF_CT_ASSERT(x)
66#endif
67
68struct nf_conntrack_helper;
69
Harald Weltedc808fe2006-03-20 17:56:32 -080070/* nf_conn feature for connections that have a helper */
71struct nf_conn_help {
72 /* Helper. if any */
73 struct nf_conntrack_helper *helper;
74
75 union nf_conntrack_help help;
76
77 /* Current number of expected connections */
78 unsigned int expecting;
79};
80
81
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080082#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
83struct nf_conn
84{
85 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
86 plus 1 for any connection(s) we are `master' for */
87 struct nf_conntrack ct_general;
88
89 /* XXX should I move this to the tail ? - Y.K */
90 /* These are my tuples; original and reply */
91 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
92
93 /* Have we seen traffic both ways yet? (bitset) */
94 unsigned long status;
95
Harald Weltedc808fe2006-03-20 17:56:32 -080096 /* If we were expected by an expectation, this will be it */
97 struct nf_conn *master;
98
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080099 /* Timer function; drops refcnt when it goes off. */
100 struct timer_list timeout;
101
102#ifdef CONFIG_NF_CT_ACCT
103 /* Accounting Information (same cache line as other written members) */
104 struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
105#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800106
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800107 /* Unique ID that identifies this conntrack*/
108 unsigned int id;
109
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110 /* features - nat, helper, ... used by allocating system */
111 u_int32_t features;
112
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800113#if defined(CONFIG_NF_CONNTRACK_MARK)
114 u_int32_t mark;
115#endif
116
Harald Weltedc808fe2006-03-20 17:56:32 -0800117 /* Storage reserved for other modules: */
118 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800119
Harald Weltedc808fe2006-03-20 17:56:32 -0800120 /* features dynamically at the end: helper, nat (both optional) */
121 char data[0];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800122};
123
124struct nf_conntrack_expect
125{
126 /* Internal linked list (global expectation list) */
127 struct list_head list;
128
129 /* We expect this tuple, with the following mask */
130 struct nf_conntrack_tuple tuple, mask;
131
132 /* Function to call after setup and insertion */
133 void (*expectfn)(struct nf_conn *new,
134 struct nf_conntrack_expect *this);
135
136 /* The conntrack of the master connection */
137 struct nf_conn *master;
138
139 /* Timer function; deletes the expectation. */
140 struct timer_list timeout;
141
142 /* Usage count. */
143 atomic_t use;
144
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800145 /* Unique ID */
146 unsigned int id;
147
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800148 /* Flags */
149 unsigned int flags;
150
151#ifdef CONFIG_NF_NAT_NEEDED
152 /* This is the original per-proto part, used to map the
153 * expected connection the way the recipient expects. */
154 union nf_conntrack_manip_proto saved_proto;
155 /* Direction relative to the master connection. */
156 enum ip_conntrack_dir dir;
157#endif
158};
159
160#define NF_CT_EXPECT_PERMANENT 0x1
161
162static inline struct nf_conn *
163nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
164{
165 return container_of(hash, struct nf_conn,
166 tuplehash[hash->tuple.dst.dir]);
167}
168
169/* get master conntrack via master expectation */
170#define master_ct(conntr) (conntr->master)
171
172/* Alter reply tuple (maybe alter helper). */
173extern void
174nf_conntrack_alter_reply(struct nf_conn *conntrack,
175 const struct nf_conntrack_tuple *newreply);
176
177/* Is this tuple taken? (ignoring any belonging to the given
178 conntrack). */
179extern int
180nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
181 const struct nf_conn *ignored_conntrack);
182
183/* Return conntrack_info and tuple hash for given skb. */
184static inline struct nf_conn *
185nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
186{
187 *ctinfo = skb->nfctinfo;
188 return (struct nf_conn *)skb->nfct;
189}
190
191/* decrement reference count on a conntrack */
192static inline void nf_ct_put(struct nf_conn *ct)
193{
194 NF_CT_ASSERT(ct);
195 nf_conntrack_put(&ct->ct_general);
196}
197
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800198extern struct nf_conntrack_tuple_hash *
199__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
200 const struct nf_conn *ignored_conntrack);
201
202extern void nf_conntrack_hash_insert(struct nf_conn *ct);
203
204extern struct nf_conntrack_expect *
205__nf_conntrack_expect_find(const struct nf_conntrack_tuple *tuple);
206
207extern struct nf_conntrack_expect *
208nf_conntrack_expect_find(const struct nf_conntrack_tuple *tuple);
209
210extern void nf_ct_unlink_expect(struct nf_conntrack_expect *exp);
211
212extern void nf_ct_remove_expectations(struct nf_conn *ct);
213
214extern void nf_conntrack_flush(void);
215
216extern struct nf_conntrack_helper *
217nf_ct_helper_find_get( const struct nf_conntrack_tuple *tuple);
218extern void nf_ct_helper_put(struct nf_conntrack_helper *helper);
219
220extern struct nf_conntrack_helper *
221__nf_conntrack_helper_find_byname(const char *name);
222
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800223extern int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
224 const struct nf_conntrack_tuple *orig);
225
226extern void __nf_ct_refresh_acct(struct nf_conn *ct,
227 enum ip_conntrack_info ctinfo,
228 const struct sk_buff *skb,
229 unsigned long extra_jiffies,
230 int do_acct);
231
232/* Refresh conntrack for this many jiffies and do accounting */
233static inline void nf_ct_refresh_acct(struct nf_conn *ct,
234 enum ip_conntrack_info ctinfo,
235 const struct sk_buff *skb,
236 unsigned long extra_jiffies)
237{
238 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
239}
240
241/* Refresh conntrack for this many jiffies */
242static inline void nf_ct_refresh(struct nf_conn *ct,
243 const struct sk_buff *skb,
244 unsigned long extra_jiffies)
245{
246 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
247}
248
249/* These are for NAT. Icky. */
250/* Update TCP window tracking data when NAT mangles the packet */
251extern void nf_conntrack_tcp_update(struct sk_buff *skb,
252 unsigned int dataoff,
253 struct nf_conn *conntrack,
254 int dir);
255
256/* Call me when a conntrack is destroyed. */
257extern void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
258
259/* Fake conntrack entry for untracked connections */
260extern struct nf_conn nf_conntrack_untracked;
261
262extern int nf_ct_no_defrag;
263
264/* Iterate over all conntracks: if iter returns true, it's deleted. */
265extern void
266nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data);
267extern void nf_conntrack_free(struct nf_conn *ct);
268extern struct nf_conn *
269nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
270 const struct nf_conntrack_tuple *repl);
271
272/* It's confirmed if it is, or has been in the hash table. */
273static inline int nf_ct_is_confirmed(struct nf_conn *ct)
274{
275 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
276}
277
278static inline int nf_ct_is_dying(struct nf_conn *ct)
279{
280 return test_bit(IPS_DYING_BIT, &ct->status);
281}
282
283extern unsigned int nf_conntrack_htable_size;
284
285#define NF_CT_STAT_INC(count) (__get_cpu_var(nf_conntrack_stat).count++)
286
287#ifdef CONFIG_NF_CONNTRACK_EVENTS
288#include <linux/notifier.h>
289#include <linux/interrupt.h>
290
291struct nf_conntrack_ecache {
292 struct nf_conn *ct;
293 unsigned int events;
294};
295DECLARE_PER_CPU(struct nf_conntrack_ecache, nf_conntrack_ecache);
296
297#define CONNTRACK_ECACHE(x) (__get_cpu_var(nf_conntrack_ecache).x)
298
299extern struct notifier_block *nf_conntrack_chain;
300extern struct notifier_block *nf_conntrack_expect_chain;
301
302static inline int nf_conntrack_register_notifier(struct notifier_block *nb)
303{
304 return notifier_chain_register(&nf_conntrack_chain, nb);
305}
306
307static inline int nf_conntrack_unregister_notifier(struct notifier_block *nb)
308{
309 return notifier_chain_unregister(&nf_conntrack_chain, nb);
310}
311
312static inline int
313nf_conntrack_expect_register_notifier(struct notifier_block *nb)
314{
315 return notifier_chain_register(&nf_conntrack_expect_chain, nb);
316}
317
318static inline int
319nf_conntrack_expect_unregister_notifier(struct notifier_block *nb)
320{
321 return notifier_chain_unregister(&nf_conntrack_expect_chain, nb);
322}
323
324extern void nf_ct_deliver_cached_events(const struct nf_conn *ct);
325extern void __nf_ct_event_cache_init(struct nf_conn *ct);
326
327static inline void
328nf_conntrack_event_cache(enum ip_conntrack_events event,
329 const struct sk_buff *skb)
330{
331 struct nf_conn *ct = (struct nf_conn *)skb->nfct;
332 struct nf_conntrack_ecache *ecache;
333
334 local_bh_disable();
335 ecache = &__get_cpu_var(nf_conntrack_ecache);
336 if (ct != ecache->ct)
337 __nf_ct_event_cache_init(ct);
338 ecache->events |= event;
339 local_bh_enable();
340}
341
342static inline void nf_conntrack_event(enum ip_conntrack_events event,
343 struct nf_conn *ct)
344{
345 if (nf_ct_is_confirmed(ct) && !nf_ct_is_dying(ct))
346 notifier_call_chain(&nf_conntrack_chain, event, ct);
347}
348
349static inline void
350nf_conntrack_expect_event(enum ip_conntrack_expect_events event,
351 struct nf_conntrack_expect *exp)
352{
353 notifier_call_chain(&nf_conntrack_expect_chain, event, exp);
354}
355#else /* CONFIG_NF_CONNTRACK_EVENTS */
356static inline void nf_conntrack_event_cache(enum ip_conntrack_events event,
357 const struct sk_buff *skb) {}
358static inline void nf_conntrack_event(enum ip_conntrack_events event,
359 struct nf_conn *ct) {}
360static inline void nf_ct_deliver_cached_events(const struct nf_conn *ct) {}
361static inline void
362nf_conntrack_expect_event(enum ip_conntrack_expect_events event,
363 struct nf_conntrack_expect *exp) {}
364#endif /* CONFIG_NF_CONNTRACK_EVENTS */
365
366/* no helper, no nat */
367#define NF_CT_F_BASIC 0
368/* for helper */
369#define NF_CT_F_HELP 1
370/* for nat. */
371#define NF_CT_F_NAT 2
372#define NF_CT_F_NUM 4
373
374extern int
Harald Weltedc808fe2006-03-20 17:56:32 -0800375nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800376extern void
377nf_conntrack_unregister_cache(u_int32_t features);
378
Harald Weltedc808fe2006-03-20 17:56:32 -0800379/* valid combinations:
380 * basic: nf_conn, nf_conn .. nf_conn_help
381 * nat: nf_conn .. nf_conn_nat, nf_conn .. nf_conn_nat, nf_conn help
382 */
383static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
384{
385 unsigned int offset = sizeof(struct nf_conn);
386
387 if (!(ct->features & NF_CT_F_HELP))
388 return NULL;
389
390 return (struct nf_conn_help *) ((void *)ct + offset);
391}
392
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800393#endif /* __KERNEL__ */
394#endif /* _NF_CONNTRACK_H */