netfilter: nf_conntrack: don't send destroy events from iterator
[deliverable/linux.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
9fb9cbb1
YK
17#include <linux/bitops.h>
18#include <linux/compiler.h>
60063497 19#include <linux/atomic.h>
9fb9cbb1
YK
20
21#include <linux/netfilter/nf_conntrack_tcp.h>
2bc78049 22#include <linux/netfilter/nf_conntrack_dccp.h>
9fb9cbb1 23#include <linux/netfilter/nf_conntrack_sctp.h>
f09943fe 24#include <linux/netfilter/nf_conntrack_proto_gre.h>
9fb9cbb1
YK
25#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 */
2bc78049 32 struct nf_ct_dccp dccp;
9fb9cbb1
YK
33 struct ip_ct_sctp sctp;
34 struct ip_ct_tcp tcp;
f09943fe 35 struct nf_ct_gre gre;
9fb9cbb1
YK
36};
37
38union nf_conntrack_expect_proto {
39 /* insert expect proto private data here */
40};
41
9fb9cbb1
YK
42#include <linux/types.h>
43#include <linux/skbuff.h>
d7fe0f24 44#include <linux/timer.h>
9fb9cbb1
YK
45
46#ifdef CONFIG_NETFILTER_DEBUG
55871d04 47#define NF_CT_ASSERT(x) WARN_ON(!(x))
9fb9cbb1
YK
48#else
49#define NF_CT_ASSERT(x)
50#endif
51
52struct nf_conntrack_helper;
53
6002f266 54/* Must be kept in sync with the classes defined by helpers */
9d288dff 55#define NF_CT_MAX_EXPECT_CLASSES 4
6002f266 56
dc808fe2
HW
57/* nf_conn feature for connections that have a helper */
58struct nf_conn_help {
59 /* Helper. if any */
0906a372 60 struct nf_conntrack_helper __rcu *helper;
dc808fe2 61
b560580a
PM
62 struct hlist_head expectations;
63
dc808fe2 64 /* Current number of expected connections */
6002f266 65 u8 expecting[NF_CT_MAX_EXPECT_CLASSES];
1afc5679
PNA
66
67 /* private helper information. */
68 char data[];
dc808fe2
HW
69};
70
9fb9cbb1 71#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
f8eb24a8
PM
72#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
73
ea781f19 74struct nf_conn {
9fb9cbb1
YK
75 /* 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
440f0d58
PM
79 spinlock_t lock;
80
9fb9cbb1
YK
81 /* 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
dc808fe2
HW
88 /* If we were expected by an expectation, this will be it */
89 struct nf_conn *master;
90
9fb9cbb1
YK
91 /* Timer function; drops refcnt when it goes off. */
92 struct timer_list timeout;
93
9fb9cbb1
YK
94#if defined(CONFIG_NF_CONNTRACK_MARK)
95 u_int32_t mark;
96#endif
97
7c9728c3
JM
98#ifdef CONFIG_NF_CONNTRACK_SECMARK
99 u_int32_t secmark;
100#endif
101
ecfab2c9
YK
102 /* Extensions */
103 struct nf_ct_ext *ext;
5a1fb391
AD
104#ifdef CONFIG_NET_NS
105 struct net *ct_net;
106#endif
e5fc9e7a
CG
107
108 /* Storage reserved for other modules, must be the last member */
109 union nf_conntrack_proto proto;
9fb9cbb1
YK
110};
111
9fb9cbb1
YK
112static 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
5e8fbe2a
PM
119static 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
f2f3e38c
PNA
129#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
130
9fb9cbb1
YK
131/* get master conntrack via master expectation */
132#define master_ct(conntr) (conntr->master)
133
5a1fb391
AD
134extern struct net init_net;
135
136static inline struct net *nf_ct_net(const struct nf_conn *ct)
137{
c2d9ba9b 138 return read_pnet(&ct->ct_net);
5a1fb391
AD
139}
140
9fb9cbb1
YK
141/* Alter reply tuple (maybe alter helper). */
142extern void
c88130bc 143nf_conntrack_alter_reply(struct nf_conn *ct,
9fb9cbb1
YK
144 const struct nf_conntrack_tuple *newreply);
145
146/* Is this tuple taken? (ignoring any belonging to the given
147 conntrack). */
148extern int
149nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
150 const struct nf_conn *ignored_conntrack);
151
152/* Return conntrack_info and tuple hash for given skb. */
153static inline struct nf_conn *
154nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
155{
156 *ctinfo = skb->nfctinfo;
157 return (struct nf_conn *)skb->nfct;
158}
159
160/* decrement reference count on a conntrack */
161static inline void nf_ct_put(struct nf_conn *ct)
162{
163 NF_CT_ASSERT(ct);
164 nf_conntrack_put(&ct->ct_general);
165}
166
b9f78f9f
PNA
167/* Protocol module loading */
168extern int nf_ct_l3proto_try_module_get(unsigned short l3proto);
169extern void nf_ct_l3proto_module_put(unsigned short l3proto);
170
ea781f19
ED
171/*
172 * Allocate a hashtable of hlist_head (if nulls == 0),
173 * or hlist_nulls_head (if nulls == 1)
174 */
d862a662 175extern void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
ea781f19 176
d862a662 177extern void nf_ct_free_hashtable(void *hash, unsigned int size);
ac565e5f 178
c1d10adb 179extern struct nf_conntrack_tuple_hash *
5d0aa2cc
PM
180__nf_conntrack_find(struct net *net, u16 zone,
181 const struct nf_conntrack_tuple *tuple);
c1d10adb 182
7d367e06 183extern int nf_conntrack_hash_check_insert(struct nf_conn *ct);
02982c27 184bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
c1d10adb 185
ec464e5d 186extern void nf_conntrack_flush_report(struct net *net, u32 portid, int report);
c1d10adb 187
5f2b4c90
JE
188extern bool nf_ct_get_tuplepr(const struct sk_buff *skb,
189 unsigned int nhoff, u_int16_t l3num,
190 struct nf_conntrack_tuple *tuple);
191extern bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
192 const struct nf_conntrack_tuple *orig);
9fb9cbb1
YK
193
194extern void __nf_ct_refresh_acct(struct nf_conn *ct,
195 enum ip_conntrack_info ctinfo,
196 const struct sk_buff *skb,
197 unsigned long extra_jiffies,
198 int do_acct);
199
200/* Refresh conntrack for this many jiffies and do accounting */
201static inline void nf_ct_refresh_acct(struct nf_conn *ct,
202 enum ip_conntrack_info ctinfo,
203 const struct sk_buff *skb,
204 unsigned long extra_jiffies)
205{
206 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
207}
208
209/* Refresh conntrack for this many jiffies */
210static inline void nf_ct_refresh(struct nf_conn *ct,
211 const struct sk_buff *skb,
212 unsigned long extra_jiffies)
213{
214 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
215}
216
4c889498
DM
217extern bool __nf_ct_kill_acct(struct nf_conn *ct,
218 enum ip_conntrack_info ctinfo,
219 const struct sk_buff *skb,
220 int do_acct);
718d4ad9
FH
221
222/* kill conntrack and do accounting */
4c889498
DM
223static inline bool nf_ct_kill_acct(struct nf_conn *ct,
224 enum ip_conntrack_info ctinfo,
225 const struct sk_buff *skb)
718d4ad9 226{
4c889498 227 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
718d4ad9
FH
228}
229
230/* kill conntrack without accounting */
4c889498 231static inline bool nf_ct_kill(struct nf_conn *ct)
718d4ad9 232{
4c889498 233 return __nf_ct_kill_acct(ct, 0, NULL, 0);
718d4ad9 234}
51091764 235
9fb9cbb1 236/* These are for NAT. Icky. */
2d89c68a 237extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct,
f9dd09c7
JK
238 enum ip_conntrack_dir dir,
239 u32 seq);
9fb9cbb1 240
9fb9cbb1 241/* Fake conntrack entry for untracked connections */
b3c5163f 242DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
5bfddbd4
ED
243static inline struct nf_conn *nf_ct_untracked_get(void)
244{
b3c5163f 245 return &__raw_get_cpu_var(nf_conntrack_untracked);
5bfddbd4
ED
246}
247extern void nf_ct_untracked_status_or(unsigned long bits);
9fb9cbb1 248
9fb9cbb1
YK
249/* Iterate over all conntracks: if iter returns true, it's deleted. */
250extern void
c655bc68
FW
251nf_ct_iterate_cleanup(struct net *net,
252 int (*iter)(struct nf_conn *i, void *data),
253 void *data, u32 portid, int report);
9fb9cbb1
YK
254extern void nf_conntrack_free(struct nf_conn *ct);
255extern struct nf_conn *
5d0aa2cc 256nf_conntrack_alloc(struct net *net, u16 zone,
5a1fb391 257 const struct nf_conntrack_tuple *orig,
b891c5a8
PNA
258 const struct nf_conntrack_tuple *repl,
259 gfp_t gfp);
9fb9cbb1 260
b2a15a60
PM
261static inline int nf_ct_is_template(const struct nf_conn *ct)
262{
263 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
264}
265
9fb9cbb1
YK
266/* It's confirmed if it is, or has been in the hash table. */
267static inline int nf_ct_is_confirmed(struct nf_conn *ct)
268{
269 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
270}
271
272static inline int nf_ct_is_dying(struct nf_conn *ct)
273{
274 return test_bit(IPS_DYING_BIT, &ct->status);
275}
276
5bfddbd4 277static inline int nf_ct_is_untracked(const struct nf_conn *ct)
587aa641 278{
5bfddbd4 279 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
587aa641
PM
280}
281
42c1edd3
JA
282/* Packet is received from loopback */
283static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
284{
285 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
286}
287
34641c6d
PG
288struct kernel_param;
289
fae718dd 290extern int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
9fb9cbb1 291extern unsigned int nf_conntrack_htable_size;
e478075c 292extern unsigned int nf_conntrack_max;
f682cefa
CG
293extern unsigned int nf_conntrack_hash_rnd;
294void init_nf_conntrack_hash_rnd(void);
9fb9cbb1 295
ac3a546a
ED
296#define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
297#define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
9fb9cbb1 298
4dc06f96
PNA
299#define MODULE_ALIAS_NFCT_HELPER(helper) \
300 MODULE_ALIAS("nfct-helper-" helper)
301
9fb9cbb1 302#endif /* _NF_CONNTRACK_H */
This page took 0.69978 seconds and 5 git commands to generate.