Merge tag 'microblaze-4.7-rc1' of git://git.monstr.eu/linux-2.6-microblaze
[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 75 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
b476b72a
JDB
76 * 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 */
9fb9cbb1
YK
83 struct nf_conntrack ct_general;
84
b7779d06
JDB
85 spinlock_t lock;
86 u16 cpu;
440f0d58 87
9fb9cbb1
YK
88 /* XXX should I move this to the tail ? - Y.K */
89 /* These are my tuples; original and reply */
90 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
91
92 /* Have we seen traffic both ways yet? (bitset) */
93 unsigned long status;
94
95 /* Timer function; drops refcnt when it goes off. */
96 struct timer_list timeout;
97
0c5c9fb5
EB
98 possible_net_t ct_net;
99
c41884ce
FW
100 /* all members below initialized via memset */
101 u8 __nfct_init_offset[0];
102
103 /* If we were expected by an expectation, this will be it */
104 struct nf_conn *master;
105
9fb9cbb1
YK
106#if defined(CONFIG_NF_CONNTRACK_MARK)
107 u_int32_t mark;
108#endif
109
7c9728c3
JM
110#ifdef CONFIG_NF_CONNTRACK_SECMARK
111 u_int32_t secmark;
112#endif
113
ecfab2c9
YK
114 /* Extensions */
115 struct nf_ct_ext *ext;
e5fc9e7a
CG
116
117 /* Storage reserved for other modules, must be the last member */
118 union nf_conntrack_proto proto;
9fb9cbb1
YK
119};
120
9fb9cbb1
YK
121static inline struct nf_conn *
122nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
123{
124 return container_of(hash, struct nf_conn,
125 tuplehash[hash->tuple.dst.dir]);
126}
127
5e8fbe2a
PM
128static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
129{
130 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
131}
132
133static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
134{
135 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
136}
137
f2f3e38c
PNA
138#define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
139
9fb9cbb1
YK
140/* get master conntrack via master expectation */
141#define master_ct(conntr) (conntr->master)
142
5a1fb391
AD
143extern struct net init_net;
144
145static inline struct net *nf_ct_net(const struct nf_conn *ct)
146{
c2d9ba9b 147 return read_pnet(&ct->ct_net);
5a1fb391
AD
148}
149
9fb9cbb1 150/* Alter reply tuple (maybe alter helper). */
4e77be46
JP
151void nf_conntrack_alter_reply(struct nf_conn *ct,
152 const struct nf_conntrack_tuple *newreply);
9fb9cbb1
YK
153
154/* Is this tuple taken? (ignoring any belonging to the given
155 conntrack). */
4e77be46
JP
156int nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
157 const struct nf_conn *ignored_conntrack);
9fb9cbb1
YK
158
159/* Return conntrack_info and tuple hash for given skb. */
160static inline struct nf_conn *
161nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
162{
163 *ctinfo = skb->nfctinfo;
164 return (struct nf_conn *)skb->nfct;
165}
166
167/* decrement reference count on a conntrack */
168static inline void nf_ct_put(struct nf_conn *ct)
169{
170 NF_CT_ASSERT(ct);
171 nf_conntrack_put(&ct->ct_general);
172}
173
b9f78f9f 174/* Protocol module loading */
4e77be46
JP
175int nf_ct_l3proto_try_module_get(unsigned short l3proto);
176void nf_ct_l3proto_module_put(unsigned short l3proto);
b9f78f9f 177
ea781f19
ED
178/*
179 * Allocate a hashtable of hlist_head (if nulls == 0),
180 * or hlist_nulls_head (if nulls == 1)
181 */
4e77be46 182void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
ea781f19 183
4e77be46 184void nf_ct_free_hashtable(void *hash, unsigned int size);
ac565e5f 185
4e77be46 186int nf_conntrack_hash_check_insert(struct nf_conn *ct);
02982c27 187bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
c1d10adb 188
4e77be46 189bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
a31f1adc
EB
190 u_int16_t l3num, struct net *net,
191 struct nf_conntrack_tuple *tuple);
4e77be46
JP
192bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
193 const struct nf_conntrack_tuple *orig);
9fb9cbb1 194
4e77be46
JP
195void __nf_ct_refresh_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
196 const struct sk_buff *skb,
197 unsigned long extra_jiffies, int do_acct);
9fb9cbb1
YK
198
199/* Refresh conntrack for this many jiffies and do accounting */
200static inline void nf_ct_refresh_acct(struct nf_conn *ct,
201 enum ip_conntrack_info ctinfo,
202 const struct sk_buff *skb,
203 unsigned long extra_jiffies)
204{
205 __nf_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
206}
207
208/* Refresh conntrack for this many jiffies */
209static inline void nf_ct_refresh(struct nf_conn *ct,
210 const struct sk_buff *skb,
211 unsigned long extra_jiffies)
212{
213 __nf_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
214}
215
4e77be46
JP
216bool __nf_ct_kill_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
217 const struct sk_buff *skb, int do_acct);
718d4ad9
FH
218
219/* kill conntrack and do accounting */
4c889498
DM
220static inline bool nf_ct_kill_acct(struct nf_conn *ct,
221 enum ip_conntrack_info ctinfo,
222 const struct sk_buff *skb)
718d4ad9 223{
4c889498 224 return __nf_ct_kill_acct(ct, ctinfo, skb, 1);
718d4ad9
FH
225}
226
227/* kill conntrack without accounting */
4c889498 228static inline bool nf_ct_kill(struct nf_conn *ct)
718d4ad9 229{
4c889498 230 return __nf_ct_kill_acct(ct, 0, NULL, 0);
718d4ad9 231}
51091764 232
9fb9cbb1 233/* These are for NAT. Icky. */
2d89c68a 234extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct,
f9dd09c7
JK
235 enum ip_conntrack_dir dir,
236 u32 seq);
9fb9cbb1 237
9fb9cbb1 238/* Fake conntrack entry for untracked connections */
b3c5163f 239DECLARE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
5bfddbd4
ED
240static inline struct nf_conn *nf_ct_untracked_get(void)
241{
903ceff7 242 return raw_cpu_ptr(&nf_conntrack_untracked);
5bfddbd4 243}
4e77be46 244void nf_ct_untracked_status_or(unsigned long bits);
9fb9cbb1 245
9fb9cbb1 246/* Iterate over all conntracks: if iter returns true, it's deleted. */
4e77be46
JP
247void nf_ct_iterate_cleanup(struct net *net,
248 int (*iter)(struct nf_conn *i, void *data),
249 void *data, u32 portid, int report);
308ac914
DB
250
251struct nf_conntrack_zone;
252
4e77be46 253void nf_conntrack_free(struct nf_conn *ct);
308ac914
DB
254struct nf_conn *nf_conntrack_alloc(struct net *net,
255 const struct nf_conntrack_zone *zone,
4e77be46
JP
256 const struct nf_conntrack_tuple *orig,
257 const struct nf_conntrack_tuple *repl,
258 gfp_t gfp);
9fb9cbb1 259
b2a15a60
PM
260static inline int nf_ct_is_template(const struct nf_conn *ct)
261{
262 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
263}
264
9fb9cbb1
YK
265/* It's confirmed if it is, or has been in the hash table. */
266static inline int nf_ct_is_confirmed(struct nf_conn *ct)
267{
268 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
269}
270
271static inline int nf_ct_is_dying(struct nf_conn *ct)
272{
273 return test_bit(IPS_DYING_BIT, &ct->status);
274}
275
5bfddbd4 276static inline int nf_ct_is_untracked(const struct nf_conn *ct)
587aa641 277{
5bfddbd4 278 return test_bit(IPS_UNTRACKED_BIT, &ct->status);
587aa641
PM
279}
280
42c1edd3
JA
281/* Packet is received from loopback */
282static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
283{
284 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
285}
286
34641c6d
PG
287struct kernel_param;
288
4e77be46 289int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp);
9fb9cbb1 290extern unsigned int nf_conntrack_htable_size;
e478075c 291extern unsigned int nf_conntrack_max;
9fb9cbb1 292
308ac914
DB
293struct nf_conn *nf_ct_tmpl_alloc(struct net *net,
294 const struct nf_conntrack_zone *zone,
295 gfp_t flags);
9cf94eab 296void nf_ct_tmpl_free(struct nf_conn *tmpl);
e53376be 297
ac3a546a
ED
298#define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
299#define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
9fb9cbb1 300
4dc06f96
PNA
301#define MODULE_ALIAS_NFCT_HELPER(helper) \
302 MODULE_ALIAS("nfct-helper-" helper)
303
9fb9cbb1 304#endif /* _NF_CONNTRACK_H */
This page took 1.076707 seconds and 5 git commands to generate.