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>
15 #include <linux/timer.h>
16 #include <linux/module.h>
17 #include <linux/netfilter.h>
18 #include <net/protocol.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>
26 #include <linux/netfilter_ipv4/ip_nat_rule.h>
28 #include <linux/netfilter/x_tables.h>
30 MODULE_LICENSE("GPL");
31 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
32 MODULE_DESCRIPTION("iptables MASQUERADE target module");
37 #define DEBUGP(format, args...)
40 /* Lock protects masq region inside conntrack */
41 static DEFINE_RWLOCK(masq_lock);
43 /* FIXME: Multiple targets. --RR */
45 masquerade_check(const char *tablename,
47 const struct xt_target *target,
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");
57 if (mr->rangesize != 1) {
58 DEBUGP("masquerade_check: bad rangesize %u.\n", mr->rangesize);
65 masquerade_target(struct sk_buff **pskb,
66 const struct net_device *in,
67 const struct net_device *out,
69 const struct xt_target *target,
72 #ifdef CONFIG_NF_NAT_NEEDED
73 struct nf_conn_nat *nat;
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;
82 IP_NF_ASSERT(hooknum == NF_IP_POST_ROUTING);
84 ct = ip_conntrack_get(*pskb, &ctinfo);
85 #ifdef CONFIG_NF_NAT_NEEDED
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)
97 if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.ip == 0)
102 rt = (struct rtable *)(*pskb)->dst;
103 newsrc = inet_select_addr(out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
105 printk("MASQUERADE: %s ate my IP address\n", out->name);
109 write_lock_bh(&masq_lock);
110 #ifdef CONFIG_NF_NAT_NEEDED
111 nat->masq_index = out->ifindex;
113 ct->nat.masq_index = out->ifindex;
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,
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);
128 device_cmp(struct ip_conntrack *i, void *ifindex)
131 #ifdef CONFIG_NF_NAT_NEEDED
132 struct nf_conn_nat *nat = nfct_nat(i);
138 read_lock_bh(&masq_lock);
139 #ifdef CONFIG_NF_NAT_NEEDED
140 ret = (nat->masq_index == (int)(long)ifindex);
142 ret = (i->nat.masq_index == (int)(long)ifindex);
144 read_unlock_bh(&masq_lock);
149 static int masq_device_event(struct notifier_block *this,
153 struct net_device *dev = ptr;
155 if (event == NETDEV_DOWN) {
156 /* Device was downed. Search entire table for
157 conntracks which were associated with that device,
159 IP_NF_ASSERT(dev->ifindex != 0);
161 ip_ct_iterate_cleanup(device_cmp, (void *)(long)dev->ifindex);
167 static int masq_inet_event(struct notifier_block *this,
171 struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
173 if (event == NETDEV_DOWN) {
174 /* IP address was deleted. Search entire table for
175 conntracks which were associated with that device,
177 IP_NF_ASSERT(dev->ifindex != 0);
179 ip_ct_iterate_cleanup(device_cmp, (void *)(long)dev->ifindex);
185 static struct notifier_block masq_dev_notifier = {
186 .notifier_call = masq_device_event,
189 static struct notifier_block masq_inet_notifier = {
190 .notifier_call = masq_inet_event,
193 static struct xt_target masquerade = {
194 .name = "MASQUERADE",
196 .target = masquerade_target,
197 .targetsize = sizeof(struct ip_nat_multi_range_compat),
199 .hooks = 1 << NF_IP_POST_ROUTING,
200 .checkentry = masquerade_check,
204 static int __init ipt_masquerade_init(void)
208 ret = xt_register_target(&masquerade);
211 /* Register for device down reports */
212 register_netdevice_notifier(&masq_dev_notifier);
213 /* Register IP address change reports */
214 register_inetaddr_notifier(&masq_inet_notifier);
220 static void __exit ipt_masquerade_fini(void)
222 xt_unregister_target(&masquerade);
223 unregister_netdevice_notifier(&masq_dev_notifier);
224 unregister_inetaddr_notifier(&masq_inet_notifier);
227 module_init(ipt_masquerade_init);
228 module_exit(ipt_masquerade_fini);