blob: 1e04911b78ea24a06e5ab3b5362c50b33e50a69c [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>
Florian Westphal870190a2016-07-05 12:07:24 +020020#include <linux/rhashtable.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080021
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
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043#include <linux/types.h>
44#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050045#include <linux/timer.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046
47#ifdef CONFIG_NETFILTER_DEBUG
Patrick McHardy55871d02008-04-14 11:15:51 +020048#define NF_CT_ASSERT(x) WARN_ON(!(x))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080049#else
50#define NF_CT_ASSERT(x)
51#endif
52
53struct nf_conntrack_helper;
54
Patrick McHardy6002f2662008-03-25 20:09:15 -070055/* Must be kept in sync with the classes defined by helpers */
Patrick McHardy9d288df2010-02-11 12:30:21 +010056#define NF_CT_MAX_EXPECT_CLASSES 4
Patrick McHardy6002f2662008-03-25 20:09:15 -070057
Harald Weltedc808fe2006-03-20 17:56:32 -080058/* nf_conn feature for connections that have a helper */
59struct nf_conn_help {
60 /* Helper. if any */
Arnd Bergmann0906a372010-03-09 20:59:15 +010061 struct nf_conntrack_helper __rcu *helper;
Harald Weltedc808fe2006-03-20 17:56:32 -080062
Patrick McHardyb5605802007-07-07 22:35:56 -070063 struct hlist_head expectations;
64
Harald Weltedc808fe2006-03-20 17:56:32 -080065 /* Current number of expected connections */
Patrick McHardy6002f2662008-03-25 20:09:15 -070066 u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +020067
68 /* private helper information. */
69 char data[];
Harald Weltedc808fe2006-03-20 17:56:32 -080070};
71
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080072#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardyf8eb24a2006-11-29 02:35:15 +010073#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
74
Eric Dumazetea781f12009-03-25 21:05:46 +010075struct nf_conn {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080076 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +010077 * plus 1 for any connection(s) we are `master' for
78 *
79 * Hint, SKB address this struct and refcnt via skb->nfct and
80 * helpers nf_conntrack_get() and nf_conntrack_put().
81 * Helper nf_ct_put() equals nf_conntrack_put() by dec refcnt,
82 * beware nf_ct_get() is different and don't inc refcnt.
83 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080084 struct nf_conntrack ct_general;
85
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +010086 spinlock_t lock;
87 u16 cpu;
Patrick McHardy440f0d52009-06-10 14:32:47 +020088
Florian Westphal6c8dee92016-06-11 21:57:35 +020089#ifdef CONFIG_NF_CONNTRACK_ZONES
90 struct nf_conntrack_zone zone;
91#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080092 /* XXX should I move this to the tail ? - Y.K */
93 /* These are my tuples; original and reply */
94 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
95
96 /* Have we seen traffic both ways yet? (bitset) */
97 unsigned long status;
98
99 /* Timer function; drops refcnt when it goes off. */
100 struct timer_list timeout;
101
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -0500102 possible_net_t ct_net;
103
Florian Westphalc41884c2014-11-24 15:25:57 +0100104 /* all members below initialized via memset */
105 u8 __nfct_init_offset[0];
106
107 /* If we were expected by an expectation, this will be it */
108 struct nf_conn *master;
109
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110#if defined(CONFIG_NF_CONNTRACK_MARK)
111 u_int32_t mark;
112#endif
113
James Morris7c9728c2006-06-09 00:31:46 -0700114#ifdef CONFIG_NF_CONNTRACK_SECMARK
115 u_int32_t secmark;
116#endif
117
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700118 /* Extensions */
119 struct nf_ct_ext *ext;
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100120
Florian Westphal7c966432016-07-05 12:07:23 +0200121#if IS_ENABLED(CONFIG_NF_NAT)
Florian Westphal870190a2016-07-05 12:07:24 +0200122 struct rhash_head nat_bysource;
Florian Westphal7c966432016-07-05 12:07:23 +0200123#endif
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100124 /* Storage reserved for other modules, must be the last member */
125 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800126};
127
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800128static inline struct nf_conn *
129nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
130{
131 return container_of(hash, struct nf_conn,
132 tuplehash[hash->tuple.dst.dir]);
133}
134
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200135static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
136{
137 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
138}
139
140static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
141{
142 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
143}
144
Pablo Neira Ayusof2f3e382009-06-02 20:03:35 +0200145#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
146
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800147/* get master conntrack via master expectation */
148#define master_ct(conntr) (conntr->master)
149
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200150extern struct net init_net;
151
152static inline struct net *nf_ct_net(const struct nf_conn *ct)
153{
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000154 return read_pnet(&ct->ct_net);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200155}
156
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800157/* Alter reply tuple (maybe alter helper). */
Joe Perches4e77be42013-09-23 11:37:48 -0700158void nf_conntrack_alter_reply(struct nf_conn *ct,
159 const struct nf_conntrack_tuple *newreply);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800160
161/* Is this tuple taken? (ignoring any belonging to the given
162 conntrack). */
Joe Perches4e77be42013-09-23 11:37:48 -0700163int nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
164 const struct nf_conn *ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165
166/* Return conntrack_info and tuple hash for given skb. */
167static inline struct nf_conn *
168nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
169{
170 *ctinfo = skb->nfctinfo;
171 return (struct nf_conn *)skb->nfct;
172}
173
174/* decrement reference count on a conntrack */
175static inline void nf_ct_put(struct nf_conn *ct)
176{
177 NF_CT_ASSERT(ct);
178 nf_conntrack_put(&ct->ct_general);
179}
180
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800181/* Protocol module loading */
Joe Perches4e77be42013-09-23 11:37:48 -0700182int nf_ct_l3proto_try_module_get(unsigned short l3proto);
183void nf_ct_l3proto_module_put(unsigned short l3proto);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800184
Eric Dumazetea781f12009-03-25 21:05:46 +0100185/*
186 * Allocate a hashtable of hlist_head (if nulls == 0),
187 * or hlist_nulls_head (if nulls == 1)
188 */
Joe Perches4e77be42013-09-23 11:37:48 -0700189void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
Eric Dumazetea781f12009-03-25 21:05:46 +0100190
Joe Perches4e77be42013-09-23 11:37:48 -0700191void nf_ct_free_hashtable(void *hash, unsigned int size);
Patrick McHardyac565e52007-07-07 22:30:08 -0700192
Joe Perches4e77be42013-09-23 11:37:48 -0700193int nf_conntrack_hash_check_insert(struct nf_conn *ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200194bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800195
Joe Perches4e77be42013-09-23 11:37:48 -0700196bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
Eric W. Biedermana31f1ad2015-09-18 14:33:04 -0500197 u_int16_t l3num, struct net *net,
198 struct nf_conntrack_tuple *tuple);
Joe Perches4e77be42013-09-23 11:37:48 -0700199bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
200 const struct nf_conntrack_tuple *orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201
Joe Perches4e77be42013-09-23 11:37:48 -0700202void __nf_ct_refresh_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
203 const struct sk_buff *skb,
204 unsigned long extra_jiffies, int do_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800205
206/* Refresh conntrack for this many jiffies and do accounting */
207static inline void nf_ct_refresh_acct(struct nf_conn *ct,
208 enum ip_conntrack_info ctinfo,
209 const struct sk_buff *skb,
210 unsigned long extra_jiffies)
211{
212 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
213}
214
215/* Refresh conntrack for this many jiffies */
216static inline void nf_ct_refresh(struct nf_conn *ct,
217 const struct sk_buff *skb,
218 unsigned long extra_jiffies)
219{
220 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
221}
222
Joe Perches4e77be42013-09-23 11:37:48 -0700223bool __nf_ct_kill_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
224 const struct sk_buff *skb, int do_acct);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700225
226/* kill conntrack and do accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700227static inline bool nf_ct_kill_acct(struct nf_conn *ct,
228 enum ip_conntrack_info ctinfo,
229 const struct sk_buff *skb)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700230{
David S. Miller4c889492008-07-14 20:22:38 -0700231 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700232}
233
234/* kill conntrack without accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700235static inline bool nf_ct_kill(struct nf_conn *ct)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700236{
David S. Miller4c889492008-07-14 20:22:38 -0700237 return __nf_ct_kill_acct(ct, 0, NULL, 0);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700238}
Patrick McHardy51091762008-06-09 15:59:06 -0700239
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800240/* These are for NAT. Icky. */
Patrick McHardy2d89c682013-07-28 22:54:10 +0200241extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct,
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -0800242 enum ip_conntrack_dir dir,
243 u32 seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800244
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800245/* Fake conntrack entry for untracked connections */
Eric Dumazetb3c51632010-06-09 14:43:38 +0200246DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200247static inline struct nf_conn *nf_ct_untracked_get(void)
248{
Christoph Lameter903ceff2014-08-17 12:30:35 -0500249 return raw_cpu_ptr(&nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200250}
Joe Perches4e77be42013-09-23 11:37:48 -0700251void nf_ct_untracked_status_or(unsigned long bits);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800252
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800253/* Iterate over all conntracks: if iter returns true, it's deleted. */
Joe Perches4e77be42013-09-23 11:37:48 -0700254void nf_ct_iterate_cleanup(struct net *net,
255 int (*iter)(struct nf_conn *i, void *data),
256 void *data, u32 portid, int report);
Daniel Borkmann308ac912015-08-08 21:40:01 +0200257
258struct nf_conntrack_zone;
259
Joe Perches4e77be42013-09-23 11:37:48 -0700260void nf_conntrack_free(struct nf_conn *ct);
Daniel Borkmann308ac912015-08-08 21:40:01 +0200261struct nf_conn *nf_conntrack_alloc(struct net *net,
262 const struct nf_conntrack_zone *zone,
Joe Perches4e77be42013-09-23 11:37:48 -0700263 const struct nf_conntrack_tuple *orig,
264 const struct nf_conntrack_tuple *repl,
265 gfp_t gfp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800266
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100267static inline int nf_ct_is_template(const struct nf_conn *ct)
268{
269 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
270}
271
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272/* It's confirmed if it is, or has been in the hash table. */
Florian Westphald51ed832016-07-08 13:08:50 +0200273static inline int nf_ct_is_confirmed(const struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800274{
275 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
276}
277
Florian Westphald51ed832016-07-08 13:08:50 +0200278static inline int nf_ct_is_dying(const struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800279{
280 return test_bit(IPS_DYING_BIT, &ct->status);
281}
282
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200283static inline int nf_ct_is_untracked(const struct nf_conn *ct)
Patrick McHardy587aa642007-03-14 16:37:25 -0700284{
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200285 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
Patrick McHardy587aa642007-03-14 16:37:25 -0700286}
287
Julian Anastasov42c1edd2011-06-16 17:29:22 +0200288/* Packet is received from loopback */
289static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
290{
291 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
292}
293
Paul Gortmaker34641c62011-08-29 13:21:14 -0400294struct kernel_param;
295
Joe Perches4e77be42013-09-23 11:37:48 -0700296int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
Florian Westphal3183ab82016-06-22 13:26:10 +0200297int nf_conntrack_hash_resize(unsigned int hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800298extern unsigned int nf_conntrack_htable_size;
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100299extern unsigned int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800300
Daniel Borkmann308ac912015-08-08 21:40:01 +0200301struct nf_conn *nf_ct_tmpl_alloc(struct net *net,
302 const struct nf_conntrack_zone *zone,
303 gfp_t flags);
Daniel Borkmann9cf94ea2015-08-31 19:11:02 +0200304void nf_ct_tmpl_free(struct nf_conn *tmpl);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100305
Eric Dumazetac3a5462012-04-18 06:36:40 +0200306#define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
307#define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
Florian Westphal242922a2016-07-03 20:44:01 +0200308#define NF_CT_STAT_ADD_ATOMIC(net, count, v) this_cpu_add((net)->ct.stat->count, (v))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800309
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +0100310#define MODULE_ALIAS_NFCT_HELPER(helper) \
311 MODULE_ALIAS("nfct-helper-" helper)
312
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800313#endif /* _NF_CONNTRACK_H */