blob: 9c0ed3d7af89d30f557eb697525107cbdc50cef2 [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,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +010076 * plus 1 for any connection(s) we are `master' for
77 *
78 * Hint, SKB address this struct and refcnt via skb->nfct and
79 * helpers nf_conntrack_get() and nf_conntrack_put().
80 * Helper nf_ct_put() equals nf_conntrack_put() by dec refcnt,
81 * beware nf_ct_get() is different and don't inc refcnt.
82 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083 struct nf_conntrack ct_general;
84
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +010085 spinlock_t lock;
86 u16 cpu;
Patrick McHardy440f0d52009-06-10 14:32:47 +020087
Florian Westphal6c8dee92016-06-11 21:57:35 +020088#ifdef CONFIG_NF_CONNTRACK_ZONES
89 struct nf_conntrack_zone zone;
90#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091 /* XXX should I move this to the tail ? - Y.K */
92 /* These are my tuples; original and reply */
93 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
94
95 /* Have we seen traffic both ways yet? (bitset) */
96 unsigned long status;
97
98 /* Timer function; drops refcnt when it goes off. */
99 struct timer_list timeout;
100
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -0500101 possible_net_t ct_net;
102
Florian Westphalc41884c2014-11-24 15:25:57 +0100103 /* all members below initialized via memset */
104 u8 __nfct_init_offset[0];
105
106 /* If we were expected by an expectation, this will be it */
107 struct nf_conn *master;
108
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109#if defined(CONFIG_NF_CONNTRACK_MARK)
110 u_int32_t mark;
111#endif
112
James Morris7c9728c2006-06-09 00:31:46 -0700113#ifdef CONFIG_NF_CONNTRACK_SECMARK
114 u_int32_t secmark;
115#endif
116
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700117 /* Extensions */
118 struct nf_ct_ext *ext;
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100119
120 /* Storage reserved for other modules, must be the last member */
121 union nf_conntrack_proto proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800122};
123
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800124static inline struct nf_conn *
125nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
126{
127 return container_of(hash, struct nf_conn,
128 tuplehash[hash->tuple.dst.dir]);
129}
130
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200131static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
132{
133 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
134}
135
136static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
137{
138 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
139}
140
Pablo Neira Ayusof2f3e382009-06-02 20:03:35 +0200141#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
142
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800143/* get master conntrack via master expectation */
144#define master_ct(conntr) (conntr->master)
145
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200146extern struct net init_net;
147
148static inline struct net *nf_ct_net(const struct nf_conn *ct)
149{
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000150 return read_pnet(&ct->ct_net);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200151}
152
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800153/* Alter reply tuple (maybe alter helper). */
Joe Perches4e77be42013-09-23 11:37:48 -0700154void nf_conntrack_alter_reply(struct nf_conn *ct,
155 const struct nf_conntrack_tuple *newreply);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800156
157/* Is this tuple taken? (ignoring any belonging to the given
158 conntrack). */
Joe Perches4e77be42013-09-23 11:37:48 -0700159int nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
160 const struct nf_conn *ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161
162/* Return conntrack_info and tuple hash for given skb. */
163static inline struct nf_conn *
164nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
165{
166 *ctinfo = skb->nfctinfo;
167 return (struct nf_conn *)skb->nfct;
168}
169
170/* decrement reference count on a conntrack */
171static inline void nf_ct_put(struct nf_conn *ct)
172{
173 NF_CT_ASSERT(ct);
174 nf_conntrack_put(&ct->ct_general);
175}
176
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800177/* Protocol module loading */
Joe Perches4e77be42013-09-23 11:37:48 -0700178int nf_ct_l3proto_try_module_get(unsigned short l3proto);
179void nf_ct_l3proto_module_put(unsigned short l3proto);
Pablo Neira Ayusob9f78f92006-03-22 13:56:08 -0800180
Eric Dumazetea781f12009-03-25 21:05:46 +0100181/*
182 * Allocate a hashtable of hlist_head (if nulls == 0),
183 * or hlist_nulls_head (if nulls == 1)
184 */
Joe Perches4e77be42013-09-23 11:37:48 -0700185void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
Eric Dumazetea781f12009-03-25 21:05:46 +0100186
Joe Perches4e77be42013-09-23 11:37:48 -0700187void nf_ct_free_hashtable(void *hash, unsigned int size);
Patrick McHardyac565e52007-07-07 22:30:08 -0700188
Joe Perches4e77be42013-09-23 11:37:48 -0700189int nf_conntrack_hash_check_insert(struct nf_conn *ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200190bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800191
Joe Perches4e77be42013-09-23 11:37:48 -0700192bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
Eric W. Biedermana31f1ad2015-09-18 14:33:04 -0500193 u_int16_t l3num, struct net *net,
194 struct nf_conntrack_tuple *tuple);
Joe Perches4e77be42013-09-23 11:37:48 -0700195bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
196 const struct nf_conntrack_tuple *orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197
Joe Perches4e77be42013-09-23 11:37:48 -0700198void __nf_ct_refresh_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
199 const struct sk_buff *skb,
200 unsigned long extra_jiffies, int do_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201
202/* Refresh conntrack for this many jiffies and do accounting */
203static inline void nf_ct_refresh_acct(struct nf_conn *ct,
204 enum ip_conntrack_info ctinfo,
205 const struct sk_buff *skb,
206 unsigned long extra_jiffies)
207{
208 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
209}
210
211/* Refresh conntrack for this many jiffies */
212static inline void nf_ct_refresh(struct nf_conn *ct,
213 const struct sk_buff *skb,
214 unsigned long extra_jiffies)
215{
216 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
217}
218
Joe Perches4e77be42013-09-23 11:37:48 -0700219bool __nf_ct_kill_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
220 const struct sk_buff *skb, int do_acct);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700221
222/* kill conntrack and do accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700223static inline bool nf_ct_kill_acct(struct nf_conn *ct,
224 enum ip_conntrack_info ctinfo,
225 const struct sk_buff *skb)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700226{
David S. Miller4c889492008-07-14 20:22:38 -0700227 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700228}
229
230/* kill conntrack without accounting */
David S. Miller4c889492008-07-14 20:22:38 -0700231static inline bool nf_ct_kill(struct nf_conn *ct)
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700232{
David S. Miller4c889492008-07-14 20:22:38 -0700233 return __nf_ct_kill_acct(ct, 0, NULL, 0);
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700234}
Patrick McHardy51091762008-06-09 15:59:06 -0700235
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800236/* These are for NAT. Icky. */
Patrick McHardy2d89c682013-07-28 22:54:10 +0200237extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct,
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -0800238 enum ip_conntrack_dir dir,
239 u32 seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800240
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800241/* Fake conntrack entry for untracked connections */
Eric Dumazetb3c51632010-06-09 14:43:38 +0200242DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200243static inline struct nf_conn *nf_ct_untracked_get(void)
244{
Christoph Lameter903ceff2014-08-17 12:30:35 -0500245 return raw_cpu_ptr(&nf_conntrack_untracked);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200246}
Joe Perches4e77be42013-09-23 11:37:48 -0700247void nf_ct_untracked_status_or(unsigned long bits);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800248
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800249/* Iterate over all conntracks: if iter returns true, it's deleted. */
Joe Perches4e77be42013-09-23 11:37:48 -0700250void nf_ct_iterate_cleanup(struct net *net,
251 int (*iter)(struct nf_conn *i, void *data),
252 void *data, u32 portid, int report);
Daniel Borkmann308ac912015-08-08 21:40:01 +0200253
254struct nf_conntrack_zone;
255
Joe Perches4e77be42013-09-23 11:37:48 -0700256void nf_conntrack_free(struct nf_conn *ct);
Daniel Borkmann308ac912015-08-08 21:40:01 +0200257struct nf_conn *nf_conntrack_alloc(struct net *net,
258 const struct nf_conntrack_zone *zone,
Joe Perches4e77be42013-09-23 11:37:48 -0700259 const struct nf_conntrack_tuple *orig,
260 const struct nf_conntrack_tuple *repl,
261 gfp_t gfp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800262
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100263static inline int nf_ct_is_template(const struct nf_conn *ct)
264{
265 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
266}
267
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268/* It's confirmed if it is, or has been in the hash table. */
269static inline int nf_ct_is_confirmed(struct nf_conn *ct)
270{
271 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
272}
273
274static inline int nf_ct_is_dying(struct nf_conn *ct)
275{
276 return test_bit(IPS_DYING_BIT, &ct->status);
277}
278
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200279static inline int nf_ct_is_untracked(const struct nf_conn *ct)
Patrick McHardy587aa642007-03-14 16:37:25 -0700280{
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200281 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
Patrick McHardy587aa642007-03-14 16:37:25 -0700282}
283
Julian Anastasov42c1edd2011-06-16 17:29:22 +0200284/* Packet is received from loopback */
285static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
286{
287 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
288}
289
Paul Gortmaker34641c62011-08-29 13:21:14 -0400290struct kernel_param;
291
Joe Perches4e77be42013-09-23 11:37:48 -0700292int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800293extern unsigned int nf_conntrack_htable_size;
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100294extern unsigned int nf_conntrack_max;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800295
Daniel Borkmann308ac912015-08-08 21:40:01 +0200296struct nf_conn *nf_ct_tmpl_alloc(struct net *net,
297 const struct nf_conntrack_zone *zone,
298 gfp_t flags);
Daniel Borkmann9cf94ea2015-08-31 19:11:02 +0200299void nf_ct_tmpl_free(struct nf_conn *tmpl);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100300
Eric Dumazetac3a5462012-04-18 06:36:40 +0200301#define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
302#define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800303
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +0100304#define MODULE_ALIAS_NFCT_HELPER(helper) \
305 MODULE_ALIAS("nfct-helper-" helper)
306
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800307#endif /* _NF_CONNTRACK_H */