Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[pandora-kernel.git] / include / net / netfilter / nf_nat.h
1 #ifndef _NF_NAT_H
2 #define _NF_NAT_H
3 #include <linux/netfilter_ipv4.h>
4 #include <linux/netfilter_ipv4/nf_nat.h>
5 #include <net/netfilter/nf_conntrack_tuple.h>
6
7 #define NF_NAT_MAPPING_TYPE_MAX_NAMELEN 16
8
9 enum nf_nat_manip_type {
10         IP_NAT_MANIP_SRC,
11         IP_NAT_MANIP_DST
12 };
13
14 /* SRC manip occurs POST_ROUTING or LOCAL_IN */
15 #define HOOK2MANIP(hooknum) ((hooknum) != NF_INET_POST_ROUTING && \
16                              (hooknum) != NF_INET_LOCAL_IN)
17
18 /* NAT sequence number modifications */
19 struct nf_nat_seq {
20         /* position of the last TCP sequence number modification (if any) */
21         u_int32_t correction_pos;
22
23         /* sequence number offset before and after last modification */
24         int16_t offset_before, offset_after;
25 };
26
27 #include <linux/list.h>
28 #include <linux/netfilter/nf_conntrack_pptp.h>
29 #include <net/netfilter/nf_conntrack_extend.h>
30
31 /* per conntrack: nat application helper private data */
32 union nf_conntrack_nat_help {
33         /* insert nat helper private data here */
34 #if defined(CONFIG_NF_NAT_PPTP) || defined(CONFIG_NF_NAT_PPTP_MODULE)
35         struct nf_nat_pptp nat_pptp_info;
36 #endif
37 };
38
39 struct nf_conn;
40
41 /* The structure embedded in the conntrack structure. */
42 struct nf_conn_nat {
43         struct hlist_node bysource;
44         struct nf_nat_seq seq[IP_CT_DIR_MAX];
45         struct nf_conn *ct;
46         union nf_conntrack_nat_help help;
47 #if defined(CONFIG_IP_NF_TARGET_MASQUERADE) || \
48     defined(CONFIG_IP_NF_TARGET_MASQUERADE_MODULE)
49         int masq_index;
50 #endif
51 };
52
53 /* Set up the info structure to map into this range. */
54 extern unsigned int nf_nat_setup_info(struct nf_conn *ct,
55                                       const struct nf_nat_range *range,
56                                       enum nf_nat_manip_type maniptype);
57
58 /* Is this tuple already taken? (not by us)*/
59 extern int nf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,
60                              const struct nf_conn *ignored_conntrack);
61
62 static inline struct nf_conn_nat *nfct_nat(const struct nf_conn *ct)
63 {
64 #if defined(CONFIG_NF_NAT) || defined(CONFIG_NF_NAT_MODULE)
65         return nf_ct_ext_find(ct, NF_CT_EXT_NAT);
66 #else
67         return NULL;
68 #endif
69 }
70
71 #endif