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 <net/netfilter/nf_nat_rule.h>
23 #include <linux/netfilter_ipv4.h>
24 #include <linux/netfilter/x_tables.h>
26 MODULE_LICENSE("GPL");
27 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
28 MODULE_DESCRIPTION("Xtables: automatic-address SNAT");
30 /* Lock protects masq region inside conntrack */
31 static DEFINE_RWLOCK(masq_lock
);
33 /* FIXME: Multiple targets. --RR */
34 static bool masquerade_tg_check(const struct xt_tgchk_param
*par
)
36 const struct nf_nat_multi_range_compat
*mr
= par
->targinfo
;
38 if (mr
->range
[0].flags
& IP_NAT_RANGE_MAP_IPS
) {
39 pr_debug("masquerade_check: bad MAP_IPS.\n");
42 if (mr
->rangesize
!= 1) {
43 pr_debug("masquerade_check: bad rangesize %u\n", mr
->rangesize
);
50 masquerade_tg(struct sk_buff
*skb
, const struct xt_target_param
*par
)
53 struct nf_conn_nat
*nat
;
54 enum ip_conntrack_info ctinfo
;
55 struct nf_nat_range newrange
;
56 const struct nf_nat_multi_range_compat
*mr
;
57 const struct rtable
*rt
;
60 NF_CT_ASSERT(par
->hooknum
== NF_INET_POST_ROUTING
);
62 ct
= nf_ct_get(skb
, &ctinfo
);
65 NF_CT_ASSERT(ct
&& (ctinfo
== IP_CT_NEW
|| ctinfo
== IP_CT_RELATED
66 || ctinfo
== IP_CT_RELATED
+ IP_CT_IS_REPLY
));
68 /* Source address is 0.0.0.0 - locally generated packet that is
69 * probably not supposed to be masqueraded.
71 if (ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.u3
.ip
== 0)
76 newsrc
= inet_select_addr(par
->out
, rt
->rt_gateway
, RT_SCOPE_UNIVERSE
);
78 printk("MASQUERADE: %s ate my IP address\n", par
->out
->name
);
82 write_lock_bh(&masq_lock
);
83 nat
->masq_index
= par
->out
->ifindex
;
84 write_unlock_bh(&masq_lock
);
86 /* Transfer from original range. */
87 newrange
= ((struct nf_nat_range
)
88 { mr
->range
[0].flags
| IP_NAT_RANGE_MAP_IPS
,
90 mr
->range
[0].min
, mr
->range
[0].max
});
92 /* Hand modified range to generic setup. */
93 return nf_nat_setup_info(ct
, &newrange
, IP_NAT_MANIP_SRC
);
97 device_cmp(struct nf_conn
*i
, void *ifindex
)
99 const struct nf_conn_nat
*nat
= nfct_nat(i
);
105 read_lock_bh(&masq_lock
);
106 ret
= (nat
->masq_index
== (int)(long)ifindex
);
107 read_unlock_bh(&masq_lock
);
112 static int masq_device_event(struct notifier_block
*this,
116 const struct net_device
*dev
= ptr
;
117 struct net
*net
= dev_net(dev
);
119 if (event
== NETDEV_DOWN
) {
120 /* Device was downed. Search entire table for
121 conntracks which were associated with that device,
123 NF_CT_ASSERT(dev
->ifindex
!= 0);
125 nf_ct_iterate_cleanup(net
, device_cmp
,
126 (void *)(long)dev
->ifindex
);
132 static int masq_inet_event(struct notifier_block
*this,
136 struct net_device
*dev
= ((struct in_ifaddr
*)ptr
)->ifa_dev
->dev
;
137 return masq_device_event(this, event
, dev
);
140 static struct notifier_block masq_dev_notifier
= {
141 .notifier_call
= masq_device_event
,
144 static struct notifier_block masq_inet_notifier
= {
145 .notifier_call
= masq_inet_event
,
148 static struct xt_target masquerade_tg_reg __read_mostly
= {
149 .name
= "MASQUERADE",
150 .family
= NFPROTO_IPV4
,
151 .target
= masquerade_tg
,
152 .targetsize
= sizeof(struct nf_nat_multi_range_compat
),
154 .hooks
= 1 << NF_INET_POST_ROUTING
,
155 .checkentry
= masquerade_tg_check
,
159 static int __init
masquerade_tg_init(void)
163 ret
= xt_register_target(&masquerade_tg_reg
);
166 /* Register for device down reports */
167 register_netdevice_notifier(&masq_dev_notifier
);
168 /* Register IP address change reports */
169 register_inetaddr_notifier(&masq_inet_notifier
);
175 static void __exit
masquerade_tg_exit(void)
177 xt_unregister_target(&masquerade_tg_reg
);
178 unregister_netdevice_notifier(&masq_dev_notifier
);
179 unregister_inetaddr_notifier(&masq_inet_notifier
);
182 module_init(masquerade_tg_init
);
183 module_exit(masquerade_tg_exit
);