blob: 3bc38c70bbbeadb3919c5761f0736a06b0e372a8 [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 McHardy9d288df2010-02-11 12:30:21 +010073#define NF_CT_MAX_EXPECT_CLASSES 4
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 *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100201__nf_conntrack_find(struct net *net, u16 zone,
202 const struct nf_conntrack_tuple *tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800203
204extern void nf_conntrack_hash_insert(struct nf_conn *ct);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200205extern void nf_ct_delete_from_lists(struct nf_conn *ct);
206extern void nf_ct_insert_dying_list(struct nf_conn *ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800207
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +0200208extern void nf_conntrack_flush_report(struct net *net, u32 pid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800209
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200210extern bool nf_ct_get_tuplepr(const struct sk_buff *skb,
211 unsigned int nhoff, u_int16_t l3num,
212 struct nf_conntrack_tuple *tuple);
213extern bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
214 const struct nf_conntrack_tuple *orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800215
216extern void __nf_ct_refresh_acct(struct nf_conn *ct,
217 enum ip_conntrack_info ctinfo,
218 const struct sk_buff *skb,
219 unsigned long extra_jiffies,
220 int do_acct);
221
222/* Refresh conntrack for this many jiffies and do accounting */
223static inline void nf_ct_refresh_acct(struct nf_conn *ct,
224 enum ip_conntrack_info ctinfo,
225 const struct sk_buff *skb,
226 unsigned long extra_jiffies)
227{
228 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
229}
230
231/* Refresh conntrack for this many jiffies */
232static inline void nf_ct_refresh(struct nf_conn *ct,
233 const struct sk_buff *skb,
234 unsigned long extra_jiffies)
235{
236 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
237}
238
David S. Miller4c889492008-07-14 20:22:38 -0700239extern bool __nf_ct_kill_acct(struct nf_conn *ct,
240 enum ip_conntrack_info ctinfo,
241 const struct sk_buff *skb,
242 int do_acct);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700243
244/* kill conntrack and do accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700245static inline bool nf_ct_kill_acct(struct nf_conn *ct,
246 enum ip_conntrack_info ctinfo,
247 const struct sk_buff *skb)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700248{
David S. Miller4c889492008-07-14 20:22:38 -0700249 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700250}
251
252/* kill conntrack without accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700253static inline bool nf_ct_kill(struct nf_conn *ct)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700254{
David S. Miller4c889492008-07-14 20:22:38 -0700255 return __nf_ct_kill_acct(ct, 0, NULL, 0);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700256}
Patrick McHardy51091762008-06-09 15:59:06 -0700257
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800258/* These are for NAT. Icky. */
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -0800259extern s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
260 enum ip_conntrack_dir dir,
261 u32 seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800262
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800263/* Fake conntrack entry for untracked connections */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200264static inline struct nf_conn *nf_ct_untracked_get(void)
265{
266 extern struct nf_conn nf_conntrack_untracked;
267
268 return &nf_conntrack_untracked;
269}
270extern void nf_ct_untracked_status_or(unsigned long bits);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800271
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272/* Iterate over all conntracks: if iter returns true, it's deleted. */
273extern void
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200274nf_ct_iterate_cleanup(struct net *net, int (*iter)(struct nf_conn *i, void *data), void *data);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800275extern void nf_conntrack_free(struct nf_conn *ct);
276extern struct nf_conn *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100277nf_conntrack_alloc(struct net *net, u16 zone,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200278 const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700279 const struct nf_conntrack_tuple *repl,
280 gfp_t gfp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800281
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100282static inline int nf_ct_is_template(const struct nf_conn *ct)
283{
284 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
285}
286
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800287/* It's confirmed if it is, or has been in the hash table. */
288static inline int nf_ct_is_confirmed(struct nf_conn *ct)
289{
290 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
291}
292
293static inline int nf_ct_is_dying(struct nf_conn *ct)
294{
295 return test_bit(IPS_DYING_BIT, &ct->status);
296}
297
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200298static inline int nf_ct_is_untracked(const struct nf_conn *ct)
Patrick McHardy587aa642007-03-14 16:37:25 -0700299{
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200300 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
Patrick McHardy587aa642007-03-14 16:37:25 -0700301}
302
Patrick McHardyfae718d2007-12-24 21:09:10 -0800303extern int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800304extern unsigned int nf_conntrack_htable_size;
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100305extern unsigned int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800306
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200307#define NF_CT_STAT_INC(net, count) \
Christoph Lameter4ea73342009-10-03 19:48:22 +0900308 __this_cpu_inc((net)->ct.stat->count)
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200309#define NF_CT_STAT_INC_ATOMIC(net, count) \
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800310do { \
311 local_bh_disable(); \
Christoph Lameter4ea73342009-10-03 19:48:22 +0900312 __this_cpu_inc((net)->ct.stat->count); \
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800313 local_bh_enable(); \
314} while (0)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800315
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +0100316#define MODULE_ALIAS_NFCT_HELPER(helper) \
317 MODULE_ALIAS("nfct-helper-" helper)
318
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319#endif /* __KERNEL__ */
320#endif /* _NF_CONNTRACK_H */