blob: 917e170fa75269e25908b81aff9a0af6d69ec96c [file] [log] [blame]
Martin Josefsson77ab9cf2006-11-29 02:34:58 +01001/*
2 * connection tracking expectations.
3 */
4
5#ifndef _NF_CONNTRACK_EXPECT_H
6#define _NF_CONNTRACK_EXPECT_H
7#include <net/netfilter/nf_conntrack.h>
8
Patrick McHardya71c0852007-07-07 22:33:47 -07009extern unsigned int nf_ct_expect_hsize;
Patrick McHardyf264a7d2007-07-07 22:36:24 -070010extern unsigned int nf_ct_expect_max;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010011
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000012struct nf_conntrack_expect {
Patrick McHardyb5605802007-07-07 22:35:56 -070013 /* Conntrack expectation list member */
14 struct hlist_node lnode;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010015
Patrick McHardya71c0852007-07-07 22:33:47 -070016 /* Hash member */
17 struct hlist_node hnode;
18
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010019 /* We expect this tuple, with the following mask */
Patrick McHardyd4156e82007-07-07 22:31:32 -070020 struct nf_conntrack_tuple tuple;
21 struct nf_conntrack_tuple_mask mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010022
23 /* Function to call after setup and insertion */
24 void (*expectfn)(struct nf_conn *new,
25 struct nf_conntrack_expect *this);
26
Patrick McHardy9457d852006-12-02 22:05:25 -080027 /* Helper to assign to new connection */
28 struct nf_conntrack_helper *helper;
29
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010030 /* The conntrack of the master connection */
31 struct nf_conn *master;
32
33 /* Timer function; deletes the expectation. */
34 struct timer_list timeout;
35
36 /* Usage count. */
37 atomic_t use;
38
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010039 /* Flags */
40 unsigned int flags;
41
Patrick McHardy6002f2662008-03-25 20:09:15 -070042 /* Expectation class */
43 unsigned int class;
44
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010045#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardyf587de02006-12-02 22:08:46 -080046 __be32 saved_ip;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010047 /* This is the original per-proto part, used to map the
48 * expected connection the way the recipient expects. */
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080049 union nf_conntrack_man_proto saved_proto;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010050 /* Direction relative to the master connection. */
51 enum ip_conntrack_dir dir;
52#endif
Patrick McHardy7d0742d2008-01-31 04:38:19 -080053
54 struct rcu_head rcu;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010055};
56
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020057static inline struct net *nf_ct_exp_net(struct nf_conntrack_expect *exp)
58{
59#ifdef CONFIG_NET_NS
60 return exp->master->ct_net; /* by definition */
61#else
62 return &init_net;
63#endif
64}
65
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000066struct nf_conntrack_expect_policy {
Patrick McHardy6002f2662008-03-25 20:09:15 -070067 unsigned int max_expected;
68 unsigned int timeout;
Patrick McHardyb87921b2010-02-11 12:22:48 +010069 const char *name;
Patrick McHardy6002f2662008-03-25 20:09:15 -070070};
71
72#define NF_CT_EXPECT_CLASS_DEFAULT 0
73
Patrick McHardy359b9ab2008-03-25 20:08:37 -070074#define NF_CT_EXPECT_PERMANENT 0x1
75#define NF_CT_EXPECT_INACTIVE 0x2
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010076
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020077int nf_conntrack_expect_init(struct net *net);
78void nf_conntrack_expect_fini(struct net *net);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010079
80struct nf_conntrack_expect *
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020081__nf_ct_expect_find(struct net *net, const struct nf_conntrack_tuple *tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010082
83struct nf_conntrack_expect *
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020084nf_ct_expect_find_get(struct net *net, const struct nf_conntrack_tuple *tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010085
86struct nf_conntrack_expect *
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020087nf_ct_find_expectation(struct net *net, const struct nf_conntrack_tuple *tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010088
89void nf_ct_unlink_expect(struct nf_conntrack_expect *exp);
90void nf_ct_remove_expectations(struct nf_conn *ct);
Patrick McHardy68236452007-07-07 22:30:49 -070091void nf_ct_unexpect_related(struct nf_conntrack_expect *exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010092
93/* Allocate space for an expectation: this is mandatory before calling
Patrick McHardy68236452007-07-07 22:30:49 -070094 nf_ct_expect_related. You will have to call put afterwards. */
95struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me);
Jan Engelhardt76108ce2008-10-08 11:35:00 +020096void nf_ct_expect_init(struct nf_conntrack_expect *, unsigned int, u_int8_t,
Patrick McHardy1d9d7522008-03-25 20:07:58 -070097 const union nf_inet_addr *,
98 const union nf_inet_addr *,
99 u_int8_t, const __be16 *, const __be16 *);
Patrick McHardy68236452007-07-07 22:30:49 -0700100void nf_ct_expect_put(struct nf_conntrack_expect *exp);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100101int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
102 u32 pid, int report);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200103static inline int nf_ct_expect_related(struct nf_conntrack_expect *expect)
104{
105 return nf_ct_expect_related_report(expect, 0, 0);
106}
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100107
108#endif /*_NF_CONNTRACK_EXPECT_H*/
109