blob: d0d0e64914485c2fadc340ee87f8bccaa1911ce7 [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>
24#include <net/netfilter/ipv4/nf_conntrack_icmp.h>
25#include <net/netfilter/ipv6/nf_conntrack_icmpv6.h>
26
27#include <net/netfilter/nf_conntrack_tuple.h>
28
29/* per conntrack: protocol private data */
30union nf_conntrack_proto {
31 /* insert conntrack proto private data here */
32 struct ip_ct_sctp sctp;
33 struct ip_ct_tcp tcp;
34 struct ip_ct_icmp icmp;
35 struct nf_ct_icmpv6 icmpv6;
36};
37
38union nf_conntrack_expect_proto {
39 /* insert expect proto private data here */
40};
41
42/* Add protocol helper include file here */
43#include <linux/netfilter/nf_conntrack_ftp.h>
44
45/* per conntrack: application helper private data */
46union nf_conntrack_help {
47 /* insert conntrack helper private data (master) here */
48 struct ip_ct_ftp_master ct_ftp_info;
49};
50
51#include <linux/types.h>
52#include <linux/skbuff.h>
53
54#ifdef CONFIG_NETFILTER_DEBUG
55#define NF_CT_ASSERT(x) \
56do { \
57 if (!(x)) \
58 /* Wooah! I'm tripping my conntrack in a frenzy of \
59 netplay... */ \
60 printk("NF_CT_ASSERT: %s:%i(%s)\n", \
61 __FILE__, __LINE__, __FUNCTION__); \
62} while(0)
63#else
64#define NF_CT_ASSERT(x)
65#endif
66
67struct nf_conntrack_helper;
68
Harald Weltedc808fe2006-03-20 17:56:32 -080069/* nf_conn feature for connections that have a helper */
70struct nf_conn_help {
71 /* Helper. if any */
72 struct nf_conntrack_helper *helper;
73
74 union nf_conntrack_help help;
75
76 /* Current number of expected connections */
77 unsigned int expecting;
78};
79
80
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080081#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardyf8eb24a2006-11-29 02:35:15 +010082#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
83
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080084struct nf_conn
85{
86 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
87 plus 1 for any connection(s) we are `master' for */
88 struct nf_conntrack ct_general;
89
90 /* XXX should I move this to the tail ? - Y.K */
91 /* These are my tuples; original and reply */
92 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
93
94 /* Have we seen traffic both ways yet? (bitset) */
95 unsigned long status;
96
Harald Weltedc808fe2006-03-20 17:56:32 -080097 /* If we were expected by an expectation, this will be it */
98 struct nf_conn *master;
99
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800100 /* Timer function; drops refcnt when it goes off. */
101 struct timer_list timeout;
102
103#ifdef CONFIG_NF_CT_ACCT
104 /* Accounting Information (same cache line as other written members) */
105 struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
106#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800108 /* Unique ID that identifies this conntrack*/
109 unsigned int id;
110
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800111 /* features - nat, helper, ... used by allocating system */
112 u_int32_t features;
113
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114#if defined(CONFIG_NF_CONNTRACK_MARK)
115 u_int32_t mark;
116#endif
117
James Morris7c9728c2006-06-09 00:31:46 -0700118#ifdef CONFIG_NF_CONNTRACK_SECMARK
119 u_int32_t secmark;
120#endif
121
Harald Weltedc808fe2006-03-20 17:56:32 -0800122 /* Storage reserved for other modules: */
123 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800124
Harald Weltedc808fe2006-03-20 17:56:32 -0800125 /* features dynamically at the end: helper, nat (both optional) */
126 char data[0];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800127};
128
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800129static inline struct nf_conn *
130nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
131{
132 return container_of(hash, struct nf_conn,
133 tuplehash[hash->tuple.dst.dir]);
134}
135
136/* get master conntrack via master expectation */
137#define master_ct(conntr) (conntr->master)
138
139/* Alter reply tuple (maybe alter helper). */
140extern void
141nf_conntrack_alter_reply(struct nf_conn *conntrack,
142 const struct nf_conntrack_tuple *newreply);
143
144/* Is this tuple taken? (ignoring any belonging to the given
145 conntrack). */
146extern int
147nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
148 const struct nf_conn *ignored_conntrack);
149
150/* Return conntrack_info and tuple hash for given skb. */
151static inline struct nf_conn *
152nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
153{
154 *ctinfo = skb->nfctinfo;
155 return (struct nf_conn *)skb->nfct;
156}
157
158/* decrement reference count on a conntrack */
159static inline void nf_ct_put(struct nf_conn *ct)
160{
161 NF_CT_ASSERT(ct);
162 nf_conntrack_put(&ct->ct_general);
163}
164
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800165/* Protocol module loading */
166extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
167extern void nf_ct_l3proto_module_put(unsigned short l3proto);
168
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800169extern struct nf_conntrack_tuple_hash *
170__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
171 const struct nf_conn *ignored_conntrack);
172
173extern void nf_conntrack_hash_insert(struct nf_conn *ct);
174
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800175extern void nf_conntrack_flush(void);
176
177extern struct nf_conntrack_helper *
178nf_ct_helper_find_get( const struct nf_conntrack_tuple *tuple);
179extern void nf_ct_helper_put(struct nf_conntrack_helper *helper);
180
181extern struct nf_conntrack_helper *
182__nf_conntrack_helper_find_byname(const char *name);
183
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800184extern int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
185 const struct nf_conntrack_tuple *orig);
186
187extern void __nf_ct_refresh_acct(struct nf_conn *ct,
188 enum ip_conntrack_info ctinfo,
189 const struct sk_buff *skb,
190 unsigned long extra_jiffies,
191 int do_acct);
192
193/* Refresh conntrack for this many jiffies and do accounting */
194static inline 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{
199 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
200}
201
202/* Refresh conntrack for this many jiffies */
203static inline void nf_ct_refresh(struct nf_conn *ct,
204 const struct sk_buff *skb,
205 unsigned long extra_jiffies)
206{
207 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
208}
209
210/* These are for NAT. Icky. */
211/* Update TCP window tracking data when NAT mangles the packet */
212extern void nf_conntrack_tcp_update(struct sk_buff *skb,
213 unsigned int dataoff,
214 struct nf_conn *conntrack,
215 int dir);
216
217/* Call me when a conntrack is destroyed. */
218extern void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
219
220/* Fake conntrack entry for untracked connections */
221extern struct nf_conn nf_conntrack_untracked;
222
223extern int nf_ct_no_defrag;
224
225/* Iterate over all conntracks: if iter returns true, it's deleted. */
226extern void
227nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data);
228extern void nf_conntrack_free(struct nf_conn *ct);
229extern struct nf_conn *
230nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
231 const struct nf_conntrack_tuple *repl);
232
233/* It's confirmed if it is, or has been in the hash table. */
234static inline int nf_ct_is_confirmed(struct nf_conn *ct)
235{
236 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
237}
238
239static inline int nf_ct_is_dying(struct nf_conn *ct)
240{
241 return test_bit(IPS_DYING_BIT, &ct->status);
242}
243
244extern unsigned int nf_conntrack_htable_size;
Patrick McHardy39a27a32006-05-29 18:23:54 -0700245extern int nf_conntrack_checksum;
Patrick McHardyf8eb24a2006-11-29 02:35:15 +0100246extern atomic_t nf_conntrack_count;
247extern int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800248
Patrick McHardyf8eb24a2006-11-29 02:35:15 +0100249DECLARE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800250#define NF_CT_STAT_INC(count) (__get_cpu_var(nf_conntrack_stat).count++)
251
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800252/* no helper, no nat */
253#define NF_CT_F_BASIC 0
254/* for helper */
255#define NF_CT_F_HELP 1
256/* for nat. */
257#define NF_CT_F_NAT 2
258#define NF_CT_F_NUM 4
259
260extern int
Harald Weltedc808fe2006-03-20 17:56:32 -0800261nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800262extern void
263nf_conntrack_unregister_cache(u_int32_t features);
264
Harald Weltedc808fe2006-03-20 17:56:32 -0800265/* valid combinations:
266 * basic: nf_conn, nf_conn .. nf_conn_help
267 * nat: nf_conn .. nf_conn_nat, nf_conn .. nf_conn_nat, nf_conn help
268 */
269static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
270{
271 unsigned int offset = sizeof(struct nf_conn);
272
273 if (!(ct->features & NF_CT_F_HELP))
274 return NULL;
275
276 return (struct nf_conn_help *) ((void *)ct + offset);
277}
278
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800279#endif /* __KERNEL__ */
280#endif /* _NF_CONNTRACK_H */