blob: 9ae819e27940e0b7652f69f8a26806317c07b387 [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>
44
45#ifdef CONFIG_NETFILTER_DEBUG
Patrick McHardy55871d02008-04-14 11:15:51 +020046#define NF_CT_ASSERT(x) WARN_ON(!(x))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080047#else
48#define NF_CT_ASSERT(x)
49#endif
50
51struct nf_conntrack_helper;
52
Patrick McHardy6002f2662008-03-25 20:09:15 -070053/* Must be kept in sync with the classes defined by helpers */
Patrick McHardy9d288df2010-02-11 12:30:21 +010054#define NF_CT_MAX_EXPECT_CLASSES 4
Patrick McHardy6002f2662008-03-25 20:09:15 -070055
Harald Weltedc808fe2006-03-20 17:56:32 -080056/* nf_conn feature for connections that have a helper */
57struct nf_conn_help {
58 /* Helper. if any */
Arnd Bergmann0906a372010-03-09 20:59:15 +010059 struct nf_conntrack_helper __rcu *helper;
Harald Weltedc808fe2006-03-20 17:56:32 -080060
Patrick McHardyb5605802007-07-07 22:35:56 -070061 struct hlist_head expectations;
62
Harald Weltedc808fe2006-03-20 17:56:32 -080063 /* Current number of expected connections */
Patrick McHardy6002f2662008-03-25 20:09:15 -070064 u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +020065
66 /* private helper information. */
67 char data[];
Harald Weltedc808fe2006-03-20 17:56:32 -080068};
69
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080070#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardyf8eb24a2006-11-29 02:35:15 +010071#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
72
Eric Dumazetea781f12009-03-25 21:05:46 +010073struct nf_conn {
Florian Westphalf330a7f2016-08-25 15:33:31 +020074 /* Usage count in here is 1 for hash table, 1 per skb,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +010075 * plus 1 for any connection(s) we are `master' for
76 *
77 * Hint, SKB address this struct and refcnt via skb->nfct and
78 * helpers nf_conntrack_get() and nf_conntrack_put().
79 * Helper nf_ct_put() equals nf_conntrack_put() by dec refcnt,
80 * beware nf_ct_get() is different and don't inc refcnt.
81 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080082 struct nf_conntrack ct_general;
83
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +010084 spinlock_t lock;
85 u16 cpu;
Patrick McHardy440f0d52009-06-10 14:32:47 +020086
Florian Westphal6c8dee92016-06-11 21:57:35 +020087#ifdef CONFIG_NF_CONNTRACK_ZONES
88 struct nf_conntrack_zone zone;
89#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080090 /* XXX should I move this to the tail ? - Y.K */
91 /* These are my tuples; original and reply */
92 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
93
94 /* Have we seen traffic both ways yet? (bitset) */
95 unsigned long status;
96
Florian Westphalf330a7f2016-08-25 15:33:31 +020097 /* jiffies32 when this ct is considered dead */
98 u32 timeout;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080099
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -0500100 possible_net_t ct_net;
101
Florian Westphal5173bc62016-11-23 01:11:03 +0100102#if IS_ENABLED(CONFIG_NF_NAT)
Florian Westphala23349b2017-09-06 14:39:51 +0200103 struct hlist_node nat_bysource;
Florian Westphal5173bc62016-11-23 01:11:03 +0100104#endif
Florian Westphalc41884c2014-11-24 15:25:57 +0100105 /* all members below initialized via memset */
106 u8 __nfct_init_offset[0];
107
108 /* If we were expected by an expectation, this will be it */
109 struct nf_conn *master;
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
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700119 /* Extensions */
120 struct nf_ct_ext *ext;
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100121
122 /* Storage reserved for other modules, must be the last member */
123 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800124};
125
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800126static inline struct nf_conn *
127nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
128{
129 return container_of(hash, struct nf_conn,
130 tuplehash[hash->tuple.dst.dir]);
131}
132
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200133static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
134{
135 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
136}
137
138static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
139{
140 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
141}
142
Pablo Neira Ayusof2f3e382009-06-02 20:03:35 +0200143#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
144
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800145/* get master conntrack via master expectation */
146#define master_ct(conntr) (conntr->master)
147
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200148extern struct net init_net;
149
150static inline struct net *nf_ct_net(const struct nf_conn *ct)
151{
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000152 return read_pnet(&ct->ct_net);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200153}
154
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800155/* Alter reply tuple (maybe alter helper). */
Joe Perches4e77be42013-09-23 11:37:48 -0700156void nf_conntrack_alter_reply(struct nf_conn *ct,
157 const struct nf_conntrack_tuple *newreply);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800158
159/* Is this tuple taken? (ignoring any belonging to the given
160 conntrack). */
Joe Perches4e77be42013-09-23 11:37:48 -0700161int nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
162 const struct nf_conn *ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163
164/* Return conntrack_info and tuple hash for given skb. */
165static inline struct nf_conn *
166nf_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 */
173static inline void nf_ct_put(struct nf_conn *ct)
174{
175 NF_CT_ASSERT(ct);
176 nf_conntrack_put(&ct->ct_general);
177}
178
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800179/* Protocol module loading */
Joe Perches4e77be42013-09-23 11:37:48 -0700180int nf_ct_l3proto_try_module_get(unsigned short l3proto);
181void nf_ct_l3proto_module_put(unsigned short l3proto);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800182
Eric Dumazetea781f12009-03-25 21:05:46 +0100183/*
184 * Allocate a hashtable of hlist_head (if nulls == 0),
185 * or hlist_nulls_head (if nulls == 1)
186 */
Joe Perches4e77be42013-09-23 11:37:48 -0700187void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
Eric Dumazetea781f12009-03-25 21:05:46 +0100188
Joe Perches4e77be42013-09-23 11:37:48 -0700189void nf_ct_free_hashtable(void *hash, unsigned int size);
Patrick McHardyac565e52007-07-07 22:30:08 -0700190
Joe Perches4e77be42013-09-23 11:37:48 -0700191int nf_conntrack_hash_check_insert(struct nf_conn *ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200192bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800193
Joe Perches4e77be42013-09-23 11:37:48 -0700194bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
Eric W. Biedermana31f1ad2015-09-18 14:33:04 -0500195 u_int16_t l3num, struct net *net,
196 struct nf_conntrack_tuple *tuple);
Joe Perches4e77be42013-09-23 11:37:48 -0700197bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
198 const struct nf_conntrack_tuple *orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800199
Joe Perches4e77be42013-09-23 11:37:48 -0700200void __nf_ct_refresh_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
201 const struct sk_buff *skb,
202 unsigned long extra_jiffies, int do_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800203
204/* Refresh conntrack for this many jiffies and do accounting */
205static inline void nf_ct_refresh_acct(struct nf_conn *ct,
206 enum ip_conntrack_info ctinfo,
207 const struct sk_buff *skb,
208 unsigned long extra_jiffies)
209{
210 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
211}
212
213/* Refresh conntrack for this many jiffies */
214static inline void nf_ct_refresh(struct nf_conn *ct,
215 const struct sk_buff *skb,
216 unsigned long extra_jiffies)
217{
218 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
219}
220
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700221/* kill conntrack and do accounting */
Florian Westphalad667132016-08-25 15:33:35 +0200222bool nf_ct_kill_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
223 const struct sk_buff *skb);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700224
225/* kill conntrack without accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700226static inline bool nf_ct_kill(struct nf_conn *ct)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700227{
Florian Westphalad667132016-08-25 15:33:35 +0200228 return nf_ct_delete(ct, 0, 0);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700229}
Patrick McHardy51091762008-06-09 15:59:06 -0700230
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800231/* These are for NAT. Icky. */
Patrick McHardy2d89c682013-07-28 22:54:10 +0200232extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct,
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -0800233 enum ip_conntrack_dir dir,
234 u32 seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800235
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800236/* Fake conntrack entry for untracked connections */
Eric Dumazetb3c51632010-06-09 14:43:38 +0200237DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200238static inline struct nf_conn *nf_ct_untracked_get(void)
239{
Christoph Lameter903ceff2014-08-17 12:30:35 -0500240 return raw_cpu_ptr(&nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200241}
Joe Perches4e77be42013-09-23 11:37:48 -0700242void nf_ct_untracked_status_or(unsigned long bits);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800243
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800244/* Iterate over all conntracks: if iter returns true, it's deleted. */
Joe Perches4e77be42013-09-23 11:37:48 -0700245void nf_ct_iterate_cleanup(struct net *net,
246 int (*iter)(struct nf_conn *i, void *data),
247 void *data, u32 portid, int report);
Daniel Borkmann308ac912015-08-08 21:40:01 +0200248
249struct nf_conntrack_zone;
250
Joe Perches4e77be42013-09-23 11:37:48 -0700251void nf_conntrack_free(struct nf_conn *ct);
Daniel Borkmann308ac912015-08-08 21:40:01 +0200252struct nf_conn *nf_conntrack_alloc(struct net *net,
253 const struct nf_conntrack_zone *zone,
Joe Perches4e77be42013-09-23 11:37:48 -0700254 const struct nf_conntrack_tuple *orig,
255 const struct nf_conntrack_tuple *repl,
256 gfp_t gfp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800257
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100258static inline int nf_ct_is_template(const struct nf_conn *ct)
259{
260 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
261}
262
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800263/* It's confirmed if it is, or has been in the hash table. */
Florian Westphald51ed832016-07-08 13:08:50 +0200264static inline int nf_ct_is_confirmed(const struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800265{
266 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
267}
268
Florian Westphald51ed832016-07-08 13:08:50 +0200269static inline int nf_ct_is_dying(const struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800270{
271 return test_bit(IPS_DYING_BIT, &ct->status);
272}
273
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200274static inline int nf_ct_is_untracked(const struct nf_conn *ct)
Patrick McHardy587aa642007-03-14 16:37:25 -0700275{
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200276 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
Patrick McHardy587aa642007-03-14 16:37:25 -0700277}
278
Julian Anastasov42c1edd2011-06-16 17:29:22 +0200279/* Packet is received from loopback */
280static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
281{
282 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
283}
284
Florian Westphalf330a7f2016-08-25 15:33:31 +0200285#define nfct_time_stamp ((u32)(jiffies))
286
Florian Westphalc8607e02016-07-06 14:53:06 +0200287/* jiffies until ct expires, 0 if already expired */
288static inline unsigned long nf_ct_expires(const struct nf_conn *ct)
289{
Florian Westphalf330a7f2016-08-25 15:33:31 +0200290 s32 timeout = ct->timeout - nfct_time_stamp;
Florian Westphalc8607e02016-07-06 14:53:06 +0200291
292 return timeout > 0 ? timeout : 0;
293}
294
Florian Westphalf330a7f2016-08-25 15:33:31 +0200295static inline bool nf_ct_is_expired(const struct nf_conn *ct)
296{
297 return (__s32)(ct->timeout - nfct_time_stamp) <= 0;
298}
299
300/* use after obtaining a reference count */
301static inline bool nf_ct_should_gc(const struct nf_conn *ct)
302{
303 return nf_ct_is_expired(ct) && nf_ct_is_confirmed(ct) &&
304 !nf_ct_is_dying(ct);
305}
306
Paul Gortmaker34641c62011-08-29 13:21:14 -0400307struct kernel_param;
308
Joe Perches4e77be42013-09-23 11:37:48 -0700309int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
Florian Westphal3183ab82016-06-22 13:26:10 +0200310int nf_conntrack_hash_resize(unsigned int hashsize);
Liping Zhang92e47ba2016-08-13 22:35:36 +0800311
312extern struct hlist_nulls_head *nf_conntrack_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800313extern unsigned int nf_conntrack_htable_size;
Liping Zhang92e47ba2016-08-13 22:35:36 +0800314extern seqcount_t nf_conntrack_generation;
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100315extern unsigned int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800316
Liping Zhang92e47ba2016-08-13 22:35:36 +0800317/* must be called with rcu read lock held */
318static inline void
319nf_conntrack_get_ht(struct hlist_nulls_head **hash, unsigned int *hsize)
320{
321 struct hlist_nulls_head *hptr;
322 unsigned int sequence, hsz;
323
324 do {
325 sequence = read_seqcount_begin(&nf_conntrack_generation);
326 hsz = nf_conntrack_htable_size;
327 hptr = nf_conntrack_hash;
328 } while (read_seqcount_retry(&nf_conntrack_generation, sequence));
329
330 *hash = hptr;
331 *hsize = hsz;
332}
333
Daniel Borkmann308ac912015-08-08 21:40:01 +0200334struct nf_conn *nf_ct_tmpl_alloc(struct net *net,
335 const struct nf_conntrack_zone *zone,
336 gfp_t flags);
Daniel Borkmann9cf94ea2015-08-31 19:11:02 +0200337void nf_ct_tmpl_free(struct nf_conn *tmpl);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100338
Eric Dumazetac3a5462012-04-18 06:36:40 +0200339#define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
340#define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
Florian Westphal242922a2016-07-03 20:44:01 +0200341#define NF_CT_STAT_ADD_ATOMIC(net, count, v) this_cpu_add((net)->ct.stat->count, (v))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800342
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +0100343#define MODULE_ALIAS_NFCT_HELPER(helper) \
344 MODULE_ALIAS("nfct-helper-" helper)
345
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800346#endif /* _NF_CONNTRACK_H */