]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/net/netfilter/nf_conntrack.h
input: __rcu annotations
[mirror_ubuntu-zesty-kernel.git] / include / net / netfilter / nf_conntrack.h
CommitLineData
9fb9cbb1
YK
1/*
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__
9fb9cbb1
YK
18#include <linux/bitops.h>
19#include <linux/compiler.h>
20#include <asm/atomic.h>
21
22#include <linux/netfilter/nf_conntrack_tcp.h>
2bc78049 23#include <linux/netfilter/nf_conntrack_dccp.h>
9fb9cbb1 24#include <linux/netfilter/nf_conntrack_sctp.h>
f09943fe 25#include <linux/netfilter/nf_conntrack_proto_gre.h>
9fb9cbb1
YK
26#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 */
2bc78049 33 struct nf_ct_dccp dccp;
9fb9cbb1
YK
34 struct ip_ct_sctp sctp;
35 struct ip_ct_tcp tcp;
f09943fe 36 struct nf_ct_gre gre;
9fb9cbb1
YK
37};
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>
f09943fe 45#include <linux/netfilter/nf_conntrack_pptp.h>
f587de0e 46#include <linux/netfilter/nf_conntrack_h323.h>
6fecd198 47#include <linux/netfilter/nf_conntrack_sane.h>
0f32a40f 48#include <linux/netfilter/nf_conntrack_sip.h>
9fb9cbb1
YK
49
50/* per conntrack: application helper private data */
51union nf_conntrack_help {
52 /* insert conntrack helper private data (master) here */
55a73324 53 struct nf_ct_ftp_master ct_ftp_info;
f09943fe 54 struct nf_ct_pptp_master ct_pptp_info;
f587de0e 55 struct nf_ct_h323_master ct_h323_info;
6fecd198 56 struct nf_ct_sane_master ct_sane_info;
0f32a40f 57 struct nf_ct_sip_master ct_sip_info;
9fb9cbb1
YK
58};
59
60#include <linux/types.h>
61#include <linux/skbuff.h>
d7fe0f24 62#include <linux/timer.h>
9fb9cbb1
YK
63
64#ifdef CONFIG_NETFILTER_DEBUG
55871d04 65#define NF_CT_ASSERT(x) WARN_ON(!(x))
9fb9cbb1
YK
66#else
67#define NF_CT_ASSERT(x)
68#endif
69
70struct nf_conntrack_helper;
71
6002f266 72/* Must be kept in sync with the classes defined by helpers */
9d288dff 73#define NF_CT_MAX_EXPECT_CLASSES 4
6002f266 74
dc808fe2
HW
75/* 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
b560580a
PM
82 struct hlist_head expectations;
83
dc808fe2 84 /* Current number of expected connections */
6002f266 85 u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
dc808fe2
HW
86};
87
9fb9cbb1 88#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
f8eb24a8
PM
89#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
90
ea781f19 91struct nf_conn {
9fb9cbb1
YK
92 /* 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
440f0d58
PM
96 spinlock_t lock;
97
9fb9cbb1
YK
98 /* 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
dc808fe2
HW
105 /* If we were expected by an expectation, this will be it */
106 struct nf_conn *master;
107
9fb9cbb1
YK
108 /* Timer function; drops refcnt when it goes off. */
109 struct timer_list timeout;
110
9fb9cbb1
YK
111#if defined(CONFIG_NF_CONNTRACK_MARK)
112 u_int32_t mark;
113#endif
114
7c9728c3
JM
115#ifdef CONFIG_NF_CONNTRACK_SECMARK
116 u_int32_t secmark;
117#endif
118
dc808fe2
HW
119 /* Storage reserved for other modules: */
120 union nf_conntrack_proto proto;
9fb9cbb1 121
ecfab2c9
YK
122 /* Extensions */
123 struct nf_ct_ext *ext;
5a1fb391
AD
124#ifdef CONFIG_NET_NS
125 struct net *ct_net;
126#endif
9fb9cbb1
YK
127};
128
9fb9cbb1
YK
129static 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
5e8fbe2a
PM
136static 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
f2f3e38c
PNA
146#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
147
9fb9cbb1
YK
148/* get master conntrack via master expectation */
149#define master_ct(conntr) (conntr->master)
150
5a1fb391
AD
151extern struct net init_net;
152
153static inline struct net *nf_ct_net(const struct nf_conn *ct)
154{
c2d9ba9b 155 return read_pnet(&ct->ct_net);
5a1fb391
AD
156}
157
9fb9cbb1
YK
158/* Alter reply tuple (maybe alter helper). */
159extern void
c88130bc 160nf_conntrack_alter_reply(struct nf_conn *ct,
9fb9cbb1
YK
161 const struct nf_conntrack_tuple *newreply);
162
163/* Is this tuple taken? (ignoring any belonging to the given
164 conntrack). */
165extern int
166nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
167 const struct nf_conn *ignored_conntrack);
168
169/* Return conntrack_info and tuple hash for given skb. */
170static inline struct nf_conn *
171nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
172{
173 *ctinfo = skb->nfctinfo;
174 return (struct nf_conn *)skb->nfct;
175}
176
177/* decrement reference count on a conntrack */
178static inline void nf_ct_put(struct nf_conn *ct)
179{
180 NF_CT_ASSERT(ct);
181 nf_conntrack_put(&ct->ct_general);
182}
183
b9f78f9f
PNA
184/* Protocol module loading */
185extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
186extern void nf_ct_l3proto_module_put(unsigned short l3proto);
187
ea781f19
ED
188/*
189 * Allocate a hashtable of hlist_head (if nulls == 0),
190 * or hlist_nulls_head (if nulls == 1)
191 */
192extern void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls);
193
194extern void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size);
ac565e5f 195
c1d10adb 196extern struct nf_conntrack_tuple_hash *
5d0aa2cc
PM
197__nf_conntrack_find(struct net *net, u16 zone,
198 const struct nf_conntrack_tuple *tuple);
c1d10adb
PNA
199
200extern void nf_conntrack_hash_insert(struct nf_conn *ct);
dd7669a9
PNA
201extern void nf_ct_delete_from_lists(struct nf_conn *ct);
202extern void nf_ct_insert_dying_list(struct nf_conn *ct);
c1d10adb 203
274d383b 204extern void nf_conntrack_flush_report(struct net *net, u32 pid, int report);
c1d10adb 205
5f2b4c90
JE
206extern bool nf_ct_get_tuplepr(const struct sk_buff *skb,
207 unsigned int nhoff, u_int16_t l3num,
208 struct nf_conntrack_tuple *tuple);
209extern bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
210 const struct nf_conntrack_tuple *orig);
9fb9cbb1
YK
211
212extern void __nf_ct_refresh_acct(struct nf_conn *ct,
213 enum ip_conntrack_info ctinfo,
214 const struct sk_buff *skb,
215 unsigned long extra_jiffies,
216 int do_acct);
217
218/* Refresh conntrack for this many jiffies and do accounting */
219static inline void nf_ct_refresh_acct(struct nf_conn *ct,
220 enum ip_conntrack_info ctinfo,
221 const struct sk_buff *skb,
222 unsigned long extra_jiffies)
223{
224 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
225}
226
227/* Refresh conntrack for this many jiffies */
228static inline void nf_ct_refresh(struct nf_conn *ct,
229 const struct sk_buff *skb,
230 unsigned long extra_jiffies)
231{
232 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
233}
234
4c889498
DM
235extern bool __nf_ct_kill_acct(struct nf_conn *ct,
236 enum ip_conntrack_info ctinfo,
237 const struct sk_buff *skb,
238 int do_acct);
718d4ad9
FH
239
240/* kill conntrack and do accounting */
4c889498
DM
241static inline bool nf_ct_kill_acct(struct nf_conn *ct,
242 enum ip_conntrack_info ctinfo,
243 const struct sk_buff *skb)
718d4ad9 244{
4c889498 245 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
718d4ad9
FH
246}
247
248/* kill conntrack without accounting */
4c889498 249static inline bool nf_ct_kill(struct nf_conn *ct)
718d4ad9 250{
4c889498 251 return __nf_ct_kill_acct(ct, 0, NULL, 0);
718d4ad9 252}
51091764 253
9fb9cbb1 254/* These are for NAT. Icky. */
f9dd09c7
JK
255extern s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
256 enum ip_conntrack_dir dir,
257 u32 seq);
9fb9cbb1 258
9fb9cbb1 259/* Fake conntrack entry for untracked connections */
b3c5163f 260DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
5bfddbd4
ED
261static inline struct nf_conn *nf_ct_untracked_get(void)
262{
b3c5163f 263 return &__raw_get_cpu_var(nf_conntrack_untracked);
5bfddbd4
ED
264}
265extern void nf_ct_untracked_status_or(unsigned long bits);
9fb9cbb1 266
9fb9cbb1
YK
267/* Iterate over all conntracks: if iter returns true, it's deleted. */
268extern void
400dad39 269nf_ct_iterate_cleanup(struct net *net, int (*iter)(struct nf_conn *i, void *data), void *data);
9fb9cbb1
YK
270extern void nf_conntrack_free(struct nf_conn *ct);
271extern struct nf_conn *
5d0aa2cc 272nf_conntrack_alloc(struct net *net, u16 zone,
5a1fb391 273 const struct nf_conntrack_tuple *orig,
b891c5a8
PNA
274 const struct nf_conntrack_tuple *repl,
275 gfp_t gfp);
9fb9cbb1 276
b2a15a60
PM
277static inline int nf_ct_is_template(const struct nf_conn *ct)
278{
279 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
280}
281
9fb9cbb1
YK
282/* It's confirmed if it is, or has been in the hash table. */
283static inline int nf_ct_is_confirmed(struct nf_conn *ct)
284{
285 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
286}
287
288static inline int nf_ct_is_dying(struct nf_conn *ct)
289{
290 return test_bit(IPS_DYING_BIT, &ct->status);
291}
292
5bfddbd4 293static inline int nf_ct_is_untracked(const struct nf_conn *ct)
587aa641 294{
5bfddbd4 295 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
587aa641
PM
296}
297
fae718dd 298extern int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
9fb9cbb1 299extern unsigned int nf_conntrack_htable_size;
e478075c 300extern unsigned int nf_conntrack_max;
9fb9cbb1 301
0d55af87 302#define NF_CT_STAT_INC(net, count) \
4ea7334b 303 __this_cpu_inc((net)->ct.stat->count)
0d55af87 304#define NF_CT_STAT_INC_ATOMIC(net, count) \
c0e912d7
PM
305do { \
306 local_bh_disable(); \
4ea7334b 307 __this_cpu_inc((net)->ct.stat->count); \
c0e912d7
PM
308 local_bh_enable(); \
309} while (0)
9fb9cbb1 310
4dc06f96
PNA
311#define MODULE_ALIAS_NFCT_HELPER(helper) \
312 MODULE_ALIAS("nfct-helper-" helper)
313
9fb9cbb1
YK
314#endif /* __KERNEL__ */
315#endif /* _NF_CONNTRACK_H */