[NETFILTER]: nf_conntrack: add DCCP protocol support
[safe/jmp/linux-2.6] / include / net / netfilter / nf_conntrack.h
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__
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_dccp.h>
24 #include <linux/netfilter/nf_conntrack_sctp.h>
25 #include <linux/netfilter/nf_conntrack_proto_gre.h>
26 #include <net/netfilter/ipv4/nf_conntrack_icmp.h>
27 #include <net/netfilter/ipv6/nf_conntrack_icmpv6.h>
28
29 #include <net/netfilter/nf_conntrack_tuple.h>
30
31 /* per conntrack: protocol private data */
32 union nf_conntrack_proto {
33         /* insert conntrack proto private data here */
34         struct nf_ct_dccp dccp;
35         struct ip_ct_sctp sctp;
36         struct ip_ct_tcp tcp;
37         struct ip_ct_icmp icmp;
38         struct nf_ct_icmpv6 icmpv6;
39         struct nf_ct_gre gre;
40 };
41
42 union nf_conntrack_expect_proto {
43         /* insert expect proto private data here */
44 };
45
46 /* Add protocol helper include file here */
47 #include <linux/netfilter/nf_conntrack_ftp.h>
48 #include <linux/netfilter/nf_conntrack_pptp.h>
49 #include <linux/netfilter/nf_conntrack_h323.h>
50 #include <linux/netfilter/nf_conntrack_sane.h>
51 #include <linux/netfilter/nf_conntrack_sip.h>
52
53 /* per conntrack: application helper private data */
54 union nf_conntrack_help {
55         /* insert conntrack helper private data (master) here */
56         struct nf_ct_ftp_master ct_ftp_info;
57         struct nf_ct_pptp_master ct_pptp_info;
58         struct nf_ct_h323_master ct_h323_info;
59         struct nf_ct_sane_master ct_sane_info;
60         struct nf_ct_sip_master ct_sip_info;
61 };
62
63 #include <linux/types.h>
64 #include <linux/skbuff.h>
65 #include <linux/timer.h>
66
67 #ifdef CONFIG_NETFILTER_DEBUG
68 #define NF_CT_ASSERT(x)                                                 \
69 do {                                                                    \
70         if (!(x))                                                       \
71                 /* Wooah!  I'm tripping my conntrack in a frenzy of     \
72                    netplay... */                                        \
73                 printk("NF_CT_ASSERT: %s:%i(%s)\n",                     \
74                        __FILE__, __LINE__, __FUNCTION__);               \
75 } while(0)
76 #else
77 #define NF_CT_ASSERT(x)
78 #endif
79
80 struct nf_conntrack_helper;
81
82 /* Must be kept in sync with the classes defined by helpers */
83 #define NF_CT_MAX_EXPECT_CLASSES        3
84
85 /* nf_conn feature for connections that have a helper */
86 struct nf_conn_help {
87         /* Helper. if any */
88         struct nf_conntrack_helper *helper;
89
90         union nf_conntrack_help help;
91
92         struct hlist_head expectations;
93
94         /* Current number of expected connections */
95         u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
96 };
97
98
99 #include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
100 #include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
101
102 struct nf_conn
103 {
104         /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
105            plus 1 for any connection(s) we are `master' for */
106         struct nf_conntrack ct_general;
107
108         /* XXX should I move this to the tail ? - Y.K */
109         /* These are my tuples; original and reply */
110         struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
111
112         /* Have we seen traffic both ways yet? (bitset) */
113         unsigned long status;
114
115         /* If we were expected by an expectation, this will be it */
116         struct nf_conn *master;
117
118         /* Timer function; drops refcnt when it goes off. */
119         struct timer_list timeout;
120
121 #ifdef CONFIG_NF_CT_ACCT
122         /* Accounting Information (same cache line as other written members) */
123         struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
124 #endif
125
126 #if defined(CONFIG_NF_CONNTRACK_MARK)
127         u_int32_t mark;
128 #endif
129
130 #ifdef CONFIG_NF_CONNTRACK_SECMARK
131         u_int32_t secmark;
132 #endif
133
134         /* Storage reserved for other modules: */
135         union nf_conntrack_proto proto;
136
137         /* Extensions */
138         struct nf_ct_ext *ext;
139
140         struct rcu_head rcu;
141 };
142
143 static inline struct nf_conn *
144 nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
145 {
146         return container_of(hash, struct nf_conn,
147                             tuplehash[hash->tuple.dst.dir]);
148 }
149
150 /* get master conntrack via master expectation */
151 #define master_ct(conntr) (conntr->master)
152
153 /* Alter reply tuple (maybe alter helper). */
154 extern void
155 nf_conntrack_alter_reply(struct nf_conn *ct,
156                          const struct nf_conntrack_tuple *newreply);
157
158 /* Is this tuple taken? (ignoring any belonging to the given
159    conntrack). */
160 extern int
161 nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
162                          const struct nf_conn *ignored_conntrack);
163
164 /* Return conntrack_info and tuple hash for given skb. */
165 static inline struct nf_conn *
166 nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
167 {
168         *ctinfo = skb->nfctinfo;
169         return (struct nf_conn *)skb->nfct;
170 }
171
172 /* decrement reference count on a conntrack */
173 static inline void nf_ct_put(struct nf_conn *ct)
174 {
175         NF_CT_ASSERT(ct);
176         nf_conntrack_put(&ct->ct_general);
177 }
178
179 /* Protocol module loading */
180 extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
181 extern void nf_ct_l3proto_module_put(unsigned short l3proto);
182
183 extern struct hlist_head *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced);
184 extern void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced,
185                                  unsigned int size);
186
187 extern struct nf_conntrack_tuple_hash *
188 __nf_conntrack_find(const struct nf_conntrack_tuple *tuple);
189
190 extern void nf_conntrack_hash_insert(struct nf_conn *ct);
191
192 extern void nf_conntrack_flush(void);
193
194 extern int nf_ct_get_tuplepr(const struct sk_buff *skb,
195                              unsigned int nhoff,
196                              u_int16_t l3num,
197                              struct nf_conntrack_tuple *tuple);
198 extern int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
199                                 const struct nf_conntrack_tuple *orig);
200
201 extern 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                                  int do_acct);
206
207 /* Refresh conntrack for this many jiffies and do accounting */
208 static inline void nf_ct_refresh_acct(struct nf_conn *ct,
209                                       enum ip_conntrack_info ctinfo,
210                                       const struct sk_buff *skb,
211                                       unsigned long extra_jiffies)
212 {
213         __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
214 }
215
216 /* Refresh conntrack for this many jiffies */
217 static inline void nf_ct_refresh(struct nf_conn *ct,
218                                  const struct sk_buff *skb,
219                                  unsigned long extra_jiffies)
220 {
221         __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
222 }
223
224 /* These are for NAT.  Icky. */
225 /* Update TCP window tracking data when NAT mangles the packet */
226 extern void nf_conntrack_tcp_update(const struct sk_buff *skb,
227                                     unsigned int dataoff,
228                                     struct nf_conn *ct,
229                                     int dir);
230
231 /* Fake conntrack entry for untracked connections */
232 extern struct nf_conn nf_conntrack_untracked;
233
234 /* Iterate over all conntracks: if iter returns true, it's deleted. */
235 extern void
236 nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data);
237 extern void nf_conntrack_free(struct nf_conn *ct);
238 extern struct nf_conn *
239 nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
240                    const struct nf_conntrack_tuple *repl);
241
242 /* It's confirmed if it is, or has been in the hash table. */
243 static inline int nf_ct_is_confirmed(struct nf_conn *ct)
244 {
245         return test_bit(IPS_CONFIRMED_BIT, &ct->status);
246 }
247
248 static inline int nf_ct_is_dying(struct nf_conn *ct)
249 {
250         return test_bit(IPS_DYING_BIT, &ct->status);
251 }
252
253 static inline int nf_ct_is_untracked(const struct sk_buff *skb)
254 {
255         return (skb->nfct == &nf_conntrack_untracked.ct_general);
256 }
257
258 extern int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
259 extern unsigned int nf_conntrack_htable_size;
260 extern int nf_conntrack_checksum;
261 extern atomic_t nf_conntrack_count;
262 extern int nf_conntrack_max;
263
264 DECLARE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
265 #define NF_CT_STAT_INC(count) (__get_cpu_var(nf_conntrack_stat).count++)
266 #define NF_CT_STAT_INC_ATOMIC(count)                    \
267 do {                                                    \
268         local_bh_disable();                             \
269         __get_cpu_var(nf_conntrack_stat).count++;       \
270         local_bh_enable();                              \
271 } while (0)
272
273 #endif /* __KERNEL__ */
274 #endif /* _NF_CONNTRACK_H */