blob: cbdd6284996d3cd29732c0ae406833a678a3fb80 [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>
Patrick McHardy2bc78042008-03-20 15:15:55 +010023#include <linux/netfilter/nf_conntrack_dccp.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080024#include <linux/netfilter/nf_conntrack_sctp.h>
Patrick McHardyf09943f2006-12-02 22:09:41 -080025#include <linux/netfilter/nf_conntrack_proto_gre.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080026#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 */
Patrick McHardy2bc78042008-03-20 15:15:55 +010033 struct nf_ct_dccp dccp;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080034 struct ip_ct_sctp sctp;
35 struct ip_ct_tcp tcp;
Patrick McHardyf09943f2006-12-02 22:09:41 -080036 struct nf_ct_gre gre;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037};
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>
Patrick McHardyf09943f2006-12-02 22:09:41 -080045#include <linux/netfilter/nf_conntrack_pptp.h>
Patrick McHardyf587de02006-12-02 22:08:46 -080046#include <linux/netfilter/nf_conntrack_h323.h>
Michal Schmidt6fecd192007-02-07 15:05:12 -080047#include <linux/netfilter/nf_conntrack_sane.h>
Patrick McHardy0f32a402008-03-25 20:25:13 -070048#include <linux/netfilter/nf_conntrack_sip.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;
Patrick McHardy0f32a402008-03-25 20:25:13 -070057 struct nf_ct_sip_master ct_sip_info;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080058};
59
60#include <linux/types.h>
61#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050062#include <linux/timer.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080063
64#ifdef CONFIG_NETFILTER_DEBUG
Patrick McHardy55871d02008-04-14 11:15:51 +020065#define NF_CT_ASSERT(x) WARN_ON(!(x))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080066#else
67#define NF_CT_ASSERT(x)
68#endif
69
70struct nf_conntrack_helper;
71
Patrick McHardy6002f2662008-03-25 20:09:15 -070072/* Must be kept in sync with the classes defined by helpers */
Patrick McHardy0d0ab032008-03-25 20:26:24 -070073#define NF_CT_MAX_EXPECT_CLASSES 3
Patrick McHardy6002f2662008-03-25 20:09:15 -070074
Harald Weltedc808fe2006-03-20 17:56:32 -080075/* nf_conn feature for connections that have a helper */
76struct nf_conn_help {
77 /* Helper. if any */
78 struct nf_conntrack_helper *helper;
79
80 union nf_conntrack_help help;
81
Patrick McHardyb5605802007-07-07 22:35:56 -070082 struct hlist_head expectations;
83
Harald Weltedc808fe2006-03-20 17:56:32 -080084 /* Current number of expected connections */
Patrick McHardy6002f2662008-03-25 20:09:15 -070085 u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
Harald Weltedc808fe2006-03-20 17:56:32 -080086};
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
Eric Dumazetea781f12009-03-25 21:05:46 +010091struct nf_conn {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080092 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
93 plus 1 for any connection(s) we are `master' for */
94 struct nf_conntrack ct_general;
95
Patrick McHardy440f0d52009-06-10 14:32:47 +020096 spinlock_t lock;
97
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080098 /* XXX should I move this to the tail ? - Y.K */
99 /* These are my tuples; original and reply */
100 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
101
102 /* Have we seen traffic both ways yet? (bitset) */
103 unsigned long status;
104
Harald Weltedc808fe2006-03-20 17:56:32 -0800105 /* If we were expected by an expectation, this will be it */
106 struct nf_conn *master;
107
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800108 /* Timer function; drops refcnt when it goes off. */
109 struct timer_list timeout;
110
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800111#if defined(CONFIG_NF_CONNTRACK_MARK)
112 u_int32_t mark;
113#endif
114
James Morris7c9728c2006-06-09 00:31:46 -0700115#ifdef CONFIG_NF_CONNTRACK_SECMARK
116 u_int32_t secmark;
117#endif
118
Harald Weltedc808fe2006-03-20 17:56:32 -0800119 /* Storage reserved for other modules: */
120 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800121
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700122 /* Extensions */
123 struct nf_ct_ext *ext;
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200124#ifdef CONFIG_NET_NS
125 struct net *ct_net;
126#endif
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
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200136static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
137{
138 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
139}
140
141static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
142{
143 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
144}
145
Pablo Neira Ayusof2f3e382009-06-02 20:03:35 +0200146#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
147
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800148/* get master conntrack via master expectation */
149#define master_ct(conntr) (conntr->master)
150
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200151extern struct net init_net;
152
153static inline struct net *nf_ct_net(const struct nf_conn *ct)
154{
155#ifdef CONFIG_NET_NS
156 return ct->ct_net;
157#else
158 return &init_net;
159#endif
160}
161
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162/* Alter reply tuple (maybe alter helper). */
163extern void
Patrick McHardyc88130b2008-01-31 04:42:11 -0800164nf_conntrack_alter_reply(struct nf_conn *ct,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165 const struct nf_conntrack_tuple *newreply);
166
167/* Is this tuple taken? (ignoring any belonging to the given
168 conntrack). */
169extern int
170nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
171 const struct nf_conn *ignored_conntrack);
172
173/* Return conntrack_info and tuple hash for given skb. */
174static inline struct nf_conn *
175nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
176{
177 *ctinfo = skb->nfctinfo;
178 return (struct nf_conn *)skb->nfct;
179}
180
181/* decrement reference count on a conntrack */
182static inline void nf_ct_put(struct nf_conn *ct)
183{
184 NF_CT_ASSERT(ct);
185 nf_conntrack_put(&ct->ct_general);
186}
187
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800188/* Protocol module loading */
189extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
190extern void nf_ct_l3proto_module_put(unsigned short l3proto);
191
Eric Dumazetea781f12009-03-25 21:05:46 +0100192/*
193 * Allocate a hashtable of hlist_head (if nulls == 0),
194 * or hlist_nulls_head (if nulls == 1)
195 */
196extern void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls);
197
198extern void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size);
Patrick McHardyac565e52007-07-07 22:30:08 -0700199
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800200extern struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200201__nf_conntrack_find(struct net *net, const struct nf_conntrack_tuple *tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800202
203extern void nf_conntrack_hash_insert(struct nf_conn *ct);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200204extern void nf_ct_delete_from_lists(struct nf_conn *ct);
205extern void nf_ct_insert_dying_list(struct nf_conn *ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800206
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +0200207extern void nf_conntrack_flush_report(struct net *net, u32 pid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800208
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200209extern bool nf_ct_get_tuplepr(const struct sk_buff *skb,
210 unsigned int nhoff, u_int16_t l3num,
211 struct nf_conntrack_tuple *tuple);
212extern bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
213 const struct nf_conntrack_tuple *orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800214
215extern void __nf_ct_refresh_acct(struct nf_conn *ct,
216 enum ip_conntrack_info ctinfo,
217 const struct sk_buff *skb,
218 unsigned long extra_jiffies,
219 int do_acct);
220
221/* Refresh conntrack for this many jiffies and do accounting */
222static inline void nf_ct_refresh_acct(struct nf_conn *ct,
223 enum ip_conntrack_info ctinfo,
224 const struct sk_buff *skb,
225 unsigned long extra_jiffies)
226{
227 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
228}
229
230/* Refresh conntrack for this many jiffies */
231static inline void nf_ct_refresh(struct nf_conn *ct,
232 const struct sk_buff *skb,
233 unsigned long extra_jiffies)
234{
235 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
236}
237
David S. Miller4c889492008-07-14 20:22:38 -0700238extern bool __nf_ct_kill_acct(struct nf_conn *ct,
239 enum ip_conntrack_info ctinfo,
240 const struct sk_buff *skb,
241 int do_acct);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700242
243/* kill conntrack and do accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700244static inline bool nf_ct_kill_acct(struct nf_conn *ct,
245 enum ip_conntrack_info ctinfo,
246 const struct sk_buff *skb)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700247{
David S. Miller4c889492008-07-14 20:22:38 -0700248 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700249}
250
251/* kill conntrack without accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700252static inline bool nf_ct_kill(struct nf_conn *ct)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700253{
David S. Miller4c889492008-07-14 20:22:38 -0700254 return __nf_ct_kill_acct(ct, 0, NULL, 0);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700255}
Patrick McHardy51091762008-06-09 15:59:06 -0700256
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800257/* These are for NAT. Icky. */
258/* Update TCP window tracking data when NAT mangles the packet */
Jan Engelhardt82f568f2008-01-31 04:52:07 -0800259extern void nf_conntrack_tcp_update(const struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800260 unsigned int dataoff,
Patrick McHardya3a9f792009-06-29 14:07:56 +0200261 struct nf_conn *ct, int dir,
262 s16 offset);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800263
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800264/* Fake conntrack entry for untracked connections */
265extern struct nf_conn nf_conntrack_untracked;
266
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800267/* Iterate over all conntracks: if iter returns true, it's deleted. */
268extern void
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200269nf_ct_iterate_cleanup(struct net *net, int (*iter)(struct nf_conn *i, void *data), void *data);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800270extern void nf_conntrack_free(struct nf_conn *ct);
271extern struct nf_conn *
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200272nf_conntrack_alloc(struct net *net,
273 const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700274 const struct nf_conntrack_tuple *repl,
275 gfp_t gfp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800276
277/* It's confirmed if it is, or has been in the hash table. */
278static inline int nf_ct_is_confirmed(struct nf_conn *ct)
279{
280 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
281}
282
283static inline int nf_ct_is_dying(struct nf_conn *ct)
284{
285 return test_bit(IPS_DYING_BIT, &ct->status);
286}
287
Patrick McHardy587aa642007-03-14 16:37:25 -0700288static inline int nf_ct_is_untracked(const struct sk_buff *skb)
289{
290 return (skb->nfct == &nf_conntrack_untracked.ct_general);
291}
292
Patrick McHardyfae718d2007-12-24 21:09:10 -0800293extern int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800294extern unsigned int nf_conntrack_htable_size;
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100295extern unsigned int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800296
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200297#define NF_CT_STAT_INC(net, count) \
298 (per_cpu_ptr((net)->ct.stat, raw_smp_processor_id())->count++)
299#define NF_CT_STAT_INC_ATOMIC(net, count) \
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800300do { \
301 local_bh_disable(); \
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200302 per_cpu_ptr((net)->ct.stat, raw_smp_processor_id())->count++; \
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800303 local_bh_enable(); \
304} while (0)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800305
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +0100306#define MODULE_ALIAS_NFCT_HELPER(helper) \
307 MODULE_ALIAS("nfct-helper-" helper)
308
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800309#endif /* __KERNEL__ */
310#endif /* _NF_CONNTRACK_H */