blob: b2ac6246b7e0abe156b26a06bf9a4463331baa6e [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
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080017#include <linux/bitops.h>
18#include <linux/compiler.h>
Arun Sharma600634972011-07-26 16:09:06 -070019#include <linux/atomic.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080020
21#include <linux/netfilter/nf_conntrack_tcp.h>
Patrick McHardy2bc78042008-03-20 15:15:55 +010022#include <linux/netfilter/nf_conntrack_dccp.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080023#include <linux/netfilter/nf_conntrack_sctp.h>
Patrick McHardyf09943f2006-12-02 22:09:41 -080024#include <linux/netfilter/nf_conntrack_proto_gre.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080025#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 */
Patrick McHardy2bc78042008-03-20 15:15:55 +010032 struct nf_ct_dccp dccp;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033 struct ip_ct_sctp sctp;
34 struct ip_ct_tcp tcp;
Patrick McHardyf09943f2006-12-02 22:09:41 -080035 struct nf_ct_gre gre;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036};
37
38union nf_conntrack_expect_proto {
39 /* insert expect proto private data here */
40};
41
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080042#include <linux/types.h>
43#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050044#include <linux/timer.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080045
46#ifdef CONFIG_NETFILTER_DEBUG
Patrick McHardy55871d02008-04-14 11:15:51 +020047#define NF_CT_ASSERT(x) WARN_ON(!(x))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080048#else
49#define NF_CT_ASSERT(x)
50#endif
51
52struct nf_conntrack_helper;
53
Patrick McHardy6002f2662008-03-25 20:09:15 -070054/* Must be kept in sync with the classes defined by helpers */
Patrick McHardy9d288df2010-02-11 12:30:21 +010055#define NF_CT_MAX_EXPECT_CLASSES 4
Patrick McHardy6002f2662008-03-25 20:09:15 -070056
Harald Weltedc808fe2006-03-20 17:56:32 -080057/* nf_conn feature for connections that have a helper */
58struct nf_conn_help {
59 /* Helper. if any */
Arnd Bergmann0906a372010-03-09 20:59:15 +010060 struct nf_conntrack_helper __rcu *helper;
Harald Weltedc808fe2006-03-20 17:56:32 -080061
Patrick McHardyb5605802007-07-07 22:35:56 -070062 struct hlist_head expectations;
63
Harald Weltedc808fe2006-03-20 17:56:32 -080064 /* Current number of expected connections */
Patrick McHardy6002f2662008-03-25 20:09:15 -070065 u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +020066
67 /* private helper information. */
68 char data[];
Harald Weltedc808fe2006-03-20 17:56:32 -080069};
70
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080071#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardyf8eb24a2006-11-29 02:35:15 +010072#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
73
Eric Dumazetea781f12009-03-25 21:05:46 +010074struct nf_conn {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080075 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
76 plus 1 for any connection(s) we are `master' for */
77 struct nf_conntrack ct_general;
78
Patrick McHardy440f0d52009-06-10 14:32:47 +020079 spinlock_t lock;
80
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080081 /* XXX should I move this to the tail ? - Y.K */
82 /* These are my tuples; original and reply */
83 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
84
85 /* Have we seen traffic both ways yet? (bitset) */
86 unsigned long status;
87
Harald Weltedc808fe2006-03-20 17:56:32 -080088 /* If we were expected by an expectation, this will be it */
89 struct nf_conn *master;
90
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091 /* Timer function; drops refcnt when it goes off. */
92 struct timer_list timeout;
93
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080094#if defined(CONFIG_NF_CONNTRACK_MARK)
95 u_int32_t mark;
96#endif
97
James Morris7c9728c2006-06-09 00:31:46 -070098#ifdef CONFIG_NF_CONNTRACK_SECMARK
99 u_int32_t secmark;
100#endif
101
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700102 /* Extensions */
103 struct nf_ct_ext *ext;
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200104#ifdef CONFIG_NET_NS
105 struct net *ct_net;
106#endif
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100107
108 /* Storage reserved for other modules, must be the last member */
109 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110};
111
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800112static inline struct nf_conn *
113nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
114{
115 return container_of(hash, struct nf_conn,
116 tuplehash[hash->tuple.dst.dir]);
117}
118
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200119static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
120{
121 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
122}
123
124static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
125{
126 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
127}
128
Pablo Neira Ayusof2f3e382009-06-02 20:03:35 +0200129#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
130
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800131/* get master conntrack via master expectation */
132#define master_ct(conntr) (conntr->master)
133
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200134extern struct net init_net;
135
136static inline struct net *nf_ct_net(const struct nf_conn *ct)
137{
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000138 return read_pnet(&ct->ct_net);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200139}
140
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800141/* Alter reply tuple (maybe alter helper). */
Joe Perches4e77be42013-09-23 11:37:48 -0700142void nf_conntrack_alter_reply(struct nf_conn *ct,
143 const struct nf_conntrack_tuple *newreply);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800144
145/* Is this tuple taken? (ignoring any belonging to the given
146 conntrack). */
Joe Perches4e77be42013-09-23 11:37:48 -0700147int nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
148 const struct nf_conn *ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800149
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 */
Joe Perches4e77be42013-09-23 11:37:48 -0700166int nf_ct_l3proto_try_module_get(unsigned short l3proto);
167void nf_ct_l3proto_module_put(unsigned short l3proto);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800168
Eric Dumazetea781f12009-03-25 21:05:46 +0100169/*
170 * Allocate a hashtable of hlist_head (if nulls == 0),
171 * or hlist_nulls_head (if nulls == 1)
172 */
Joe Perches4e77be42013-09-23 11:37:48 -0700173void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
Eric Dumazetea781f12009-03-25 21:05:46 +0100174
Joe Perches4e77be42013-09-23 11:37:48 -0700175void nf_ct_free_hashtable(void *hash, unsigned int size);
Patrick McHardyac565e52007-07-07 22:30:08 -0700176
Joe Perches4e77be42013-09-23 11:37:48 -0700177struct nf_conntrack_tuple_hash *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100178__nf_conntrack_find(struct net *net, u16 zone,
179 const struct nf_conntrack_tuple *tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800180
Joe Perches4e77be42013-09-23 11:37:48 -0700181int nf_conntrack_hash_check_insert(struct nf_conn *ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200182bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800183
Joe Perches4e77be42013-09-23 11:37:48 -0700184void nf_conntrack_flush_report(struct net *net, u32 portid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800185
Joe Perches4e77be42013-09-23 11:37:48 -0700186bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
187 u_int16_t l3num, struct nf_conntrack_tuple *tuple);
188bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
189 const struct nf_conntrack_tuple *orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800190
Joe Perches4e77be42013-09-23 11:37:48 -0700191void __nf_ct_refresh_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
192 const struct sk_buff *skb,
193 unsigned long extra_jiffies, int do_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800194
195/* Refresh conntrack for this many jiffies and do accounting */
196static inline void nf_ct_refresh_acct(struct nf_conn *ct,
197 enum ip_conntrack_info ctinfo,
198 const struct sk_buff *skb,
199 unsigned long extra_jiffies)
200{
201 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
202}
203
204/* Refresh conntrack for this many jiffies */
205static inline void nf_ct_refresh(struct nf_conn *ct,
206 const struct sk_buff *skb,
207 unsigned long extra_jiffies)
208{
209 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
210}
211
Joe Perches4e77be42013-09-23 11:37:48 -0700212bool __nf_ct_kill_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
213 const struct sk_buff *skb, int do_acct);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700214
215/* kill conntrack and do accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700216static inline bool nf_ct_kill_acct(struct nf_conn *ct,
217 enum ip_conntrack_info ctinfo,
218 const struct sk_buff *skb)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700219{
David S. Miller4c889492008-07-14 20:22:38 -0700220 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700221}
222
223/* kill conntrack without accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700224static inline bool nf_ct_kill(struct nf_conn *ct)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700225{
David S. Miller4c889492008-07-14 20:22:38 -0700226 return __nf_ct_kill_acct(ct, 0, NULL, 0);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700227}
Patrick McHardy51091762008-06-09 15:59:06 -0700228
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800229/* These are for NAT. Icky. */
Patrick McHardy2d89c682013-07-28 22:54:10 +0200230extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct,
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -0800231 enum ip_conntrack_dir dir,
232 u32 seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800233
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800234/* Fake conntrack entry for untracked connections */
Eric Dumazetb3c51632010-06-09 14:43:38 +0200235DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200236static inline struct nf_conn *nf_ct_untracked_get(void)
237{
Eric Dumazetb3c51632010-06-09 14:43:38 +0200238 return &__raw_get_cpu_var(nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200239}
Joe Perches4e77be42013-09-23 11:37:48 -0700240void nf_ct_untracked_status_or(unsigned long bits);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800241
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800242/* Iterate over all conntracks: if iter returns true, it's deleted. */
Joe Perches4e77be42013-09-23 11:37:48 -0700243void nf_ct_iterate_cleanup(struct net *net,
244 int (*iter)(struct nf_conn *i, void *data),
245 void *data, u32 portid, int report);
246void nf_conntrack_free(struct nf_conn *ct);
247struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
248 const struct nf_conntrack_tuple *orig,
249 const struct nf_conntrack_tuple *repl,
250 gfp_t gfp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800251
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100252static inline int nf_ct_is_template(const struct nf_conn *ct)
253{
254 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
255}
256
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800257/* It's confirmed if it is, or has been in the hash table. */
258static inline int nf_ct_is_confirmed(struct nf_conn *ct)
259{
260 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
261}
262
263static inline int nf_ct_is_dying(struct nf_conn *ct)
264{
265 return test_bit(IPS_DYING_BIT, &ct->status);
266}
267
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200268static inline int nf_ct_is_untracked(const struct nf_conn *ct)
Patrick McHardy587aa642007-03-14 16:37:25 -0700269{
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200270 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
Patrick McHardy587aa642007-03-14 16:37:25 -0700271}
272
Julian Anastasov42c1edd2011-06-16 17:29:22 +0200273/* Packet is received from loopback */
274static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
275{
276 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
277}
278
Paul Gortmaker34641c62011-08-29 13:21:14 -0400279struct kernel_param;
280
Joe Perches4e77be42013-09-23 11:37:48 -0700281int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800282extern unsigned int nf_conntrack_htable_size;
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100283extern unsigned int nf_conntrack_max;
Changli Gaof682cef2011-01-05 04:23:23 +0000284extern unsigned int nf_conntrack_hash_rnd;
285void init_nf_conntrack_hash_rnd(void);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800286
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100287void nf_conntrack_tmpl_insert(struct net *net, struct nf_conn *tmpl);
288
Eric Dumazetac3a5462012-04-18 06:36:40 +0200289#define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
290#define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800291
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +0100292#define MODULE_ALIAS_NFCT_HELPER(helper) \
293 MODULE_ALIAS("nfct-helper-" helper)
294
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800295#endif /* _NF_CONNTRACK_H */