[NETFILTER]: nf_nat: add SNMP NAT helper port
[linux-2.6.22.y-op.git] / net / ipv4 / netfilter / ipt_MASQUERADE.c
blob28b9233956b57c1f6ab30931e3752f8be05f47d1
1 /* Masquerade. Simple mapping which alters range to a local IP address
2 (depending on route). */
4 /* (C) 1999-2001 Paul `Rusty' Russell
5 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/types.h>
13 #include <linux/inetdevice.h>
14 #include <linux/ip.h>
15 #include <linux/timer.h>
16 #include <linux/module.h>
17 #include <linux/netfilter.h>
18 #include <net/protocol.h>
19 #include <net/ip.h>
20 #include <net/checksum.h>
21 #include <net/route.h>
22 #include <linux/netfilter_ipv4.h>
23 #ifdef CONFIG_NF_NAT_NEEDED
24 #include <net/netfilter/nf_nat_rule.h>
25 #else
26 #include <linux/netfilter_ipv4/ip_nat_rule.h>
27 #endif
28 #include <linux/netfilter_ipv4/ip_tables.h>
30 MODULE_LICENSE("GPL");
31 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
32 MODULE_DESCRIPTION("iptables MASQUERADE target module");
34 #if 0
35 #define DEBUGP printk
36 #else
37 #define DEBUGP(format, args...)
38 #endif
40 /* Lock protects masq region inside conntrack */
41 static DEFINE_RWLOCK(masq_lock);
43 /* FIXME: Multiple targets. --RR */
44 static int
45 masquerade_check(const char *tablename,
46 const void *e,
47 const struct xt_target *target,
48 void *targinfo,
49 unsigned int hook_mask)
51 const struct ip_nat_multi_range_compat *mr = targinfo;
53 if (mr->range[0].flags & IP_NAT_RANGE_MAP_IPS) {
54 DEBUGP("masquerade_check: bad MAP_IPS.\n");
55 return 0;
57 if (mr->rangesize != 1) {
58 DEBUGP("masquerade_check: bad rangesize %u.\n", mr->rangesize);
59 return 0;
61 return 1;
64 static unsigned int
65 masquerade_target(struct sk_buff **pskb,
66 const struct net_device *in,
67 const struct net_device *out,
68 unsigned int hooknum,
69 const struct xt_target *target,
70 const void *targinfo)
72 #ifdef CONFIG_NF_NAT_NEEDED
73 struct nf_conn_nat *nat;
74 #endif
75 struct ip_conntrack *ct;
76 enum ip_conntrack_info ctinfo;
77 struct ip_nat_range newrange;
78 const struct ip_nat_multi_range_compat *mr;
79 struct rtable *rt;
80 __be32 newsrc;
82 IP_NF_ASSERT(hooknum == NF_IP_POST_ROUTING);
84 ct = ip_conntrack_get(*pskb, &ctinfo);
85 #ifdef CONFIG_NF_NAT_NEEDED
86 nat = nfct_nat(ct);
87 #endif
88 IP_NF_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED
89 || ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
91 /* Source address is 0.0.0.0 - locally generated packet that is
92 * probably not supposed to be masqueraded.
94 #ifdef CONFIG_NF_NAT_NEEDED
95 if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip == 0)
96 #else
97 if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.ip == 0)
98 #endif
99 return NF_ACCEPT;
101 mr = targinfo;
102 rt = (struct rtable *)(*pskb)->dst;
103 newsrc = inet_select_addr(out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
104 if (!newsrc) {
105 printk("MASQUERADE: %s ate my IP address\n", out->name);
106 return NF_DROP;
109 write_lock_bh(&masq_lock);
110 #ifdef CONFIG_NF_NAT_NEEDED
111 nat->masq_index = out->ifindex;
112 #else
113 ct->nat.masq_index = out->ifindex;
114 #endif
115 write_unlock_bh(&masq_lock);
117 /* Transfer from original range. */
118 newrange = ((struct ip_nat_range)
119 { mr->range[0].flags | IP_NAT_RANGE_MAP_IPS,
120 newsrc, newsrc,
121 mr->range[0].min, mr->range[0].max });
123 /* Hand modified range to generic setup. */
124 return ip_nat_setup_info(ct, &newrange, hooknum);
127 static inline int
128 device_cmp(struct ip_conntrack *i, void *ifindex)
130 #ifdef CONFIG_NF_NAT_NEEDED
131 struct nf_conn_nat *nat = nfct_nat(i);
132 #endif
133 int ret;
135 read_lock_bh(&masq_lock);
136 #ifdef CONFIG_NF_NAT_NEEDED
137 ret = (nat->masq_index == (int)(long)ifindex);
138 #else
139 ret = (i->nat.masq_index == (int)(long)ifindex);
140 #endif
141 read_unlock_bh(&masq_lock);
143 return ret;
146 static int masq_device_event(struct notifier_block *this,
147 unsigned long event,
148 void *ptr)
150 struct net_device *dev = ptr;
152 if (event == NETDEV_DOWN) {
153 /* Device was downed. Search entire table for
154 conntracks which were associated with that device,
155 and forget them. */
156 IP_NF_ASSERT(dev->ifindex != 0);
158 ip_ct_iterate_cleanup(device_cmp, (void *)(long)dev->ifindex);
161 return NOTIFY_DONE;
164 static int masq_inet_event(struct notifier_block *this,
165 unsigned long event,
166 void *ptr)
168 struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
170 if (event == NETDEV_DOWN) {
171 /* IP address was deleted. Search entire table for
172 conntracks which were associated with that device,
173 and forget them. */
174 IP_NF_ASSERT(dev->ifindex != 0);
176 ip_ct_iterate_cleanup(device_cmp, (void *)(long)dev->ifindex);
179 return NOTIFY_DONE;
182 static struct notifier_block masq_dev_notifier = {
183 .notifier_call = masq_device_event,
186 static struct notifier_block masq_inet_notifier = {
187 .notifier_call = masq_inet_event,
190 static struct ipt_target masquerade = {
191 .name = "MASQUERADE",
192 .target = masquerade_target,
193 .targetsize = sizeof(struct ip_nat_multi_range_compat),
194 .table = "nat",
195 .hooks = 1 << NF_IP_POST_ROUTING,
196 .checkentry = masquerade_check,
197 .me = THIS_MODULE,
200 static int __init ipt_masquerade_init(void)
202 int ret;
204 ret = ipt_register_target(&masquerade);
206 if (ret == 0) {
207 /* Register for device down reports */
208 register_netdevice_notifier(&masq_dev_notifier);
209 /* Register IP address change reports */
210 register_inetaddr_notifier(&masq_inet_notifier);
213 return ret;
216 static void __exit ipt_masquerade_fini(void)
218 ipt_unregister_target(&masquerade);
219 unregister_netdevice_notifier(&masq_dev_notifier);
220 unregister_inetaddr_notifier(&masq_inet_notifier);
223 module_init(ipt_masquerade_init);
224 module_exit(ipt_masquerade_fini);