]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/ipv4/netfilter/ipt_MASQUERADE.c
netfilter: add protocol independent NAT core
[mirror_ubuntu-artful-kernel.git] / net / ipv4 / netfilter / ipt_MASQUERADE.c
CommitLineData
1da177e4
LT
1/* Masquerade. Simple mapping which alters range to a local IP address
2 (depending on route). */
3
4/* (C) 1999-2001 Paul `Rusty' Russell
5b1158e9 5 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
1da177e4
LT
6 *
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.
10 */
ff67e4e4 11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4 12#include <linux/types.h>
14c85021 13#include <linux/inetdevice.h>
1da177e4
LT
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>
14c85021 21#include <net/route.h>
587aa641 22#include <linux/netfilter_ipv4.h>
6709dbbb 23#include <linux/netfilter/x_tables.h>
c7232c99 24#include <net/netfilter/nf_nat.h>
1da177e4
LT
25
26MODULE_LICENSE("GPL");
27MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
2ae15b64 28MODULE_DESCRIPTION("Xtables: automatic-address SNAT");
1da177e4 29
1da177e4 30/* FIXME: Multiple targets. --RR */
135367b8 31static int masquerade_tg_check(const struct xt_tgchk_param *par)
1da177e4 32{
cbc9f2f4 33 const struct nf_nat_ipv4_multi_range_compat *mr = par->targinfo;
1da177e4 34
cbc9f2f4 35 if (mr->range[0].flags & NF_NAT_RANGE_MAP_IPS) {
ff67e4e4 36 pr_debug("bad MAP_IPS.\n");
d6b00a53 37 return -EINVAL;
1da177e4
LT
38 }
39 if (mr->rangesize != 1) {
ff67e4e4 40 pr_debug("bad rangesize %u\n", mr->rangesize);
d6b00a53 41 return -EINVAL;
1da177e4 42 }
d6b00a53 43 return 0;
1da177e4
LT
44}
45
46static unsigned int
4b560b44 47masquerade_tg(struct sk_buff *skb, const struct xt_action_param *par)
1da177e4 48{
587aa641 49 struct nf_conn *ct;
5b1158e9 50 struct nf_conn_nat *nat;
1da177e4 51 enum ip_conntrack_info ctinfo;
c7232c99 52 struct nf_nat_range newrange;
cbc9f2f4 53 const struct nf_nat_ipv4_multi_range_compat *mr;
a47362a2 54 const struct rtable *rt;
f8126f1d 55 __be32 newsrc, nh;
1da177e4 56
7eb35586 57 NF_CT_ASSERT(par->hooknum == NF_INET_POST_ROUTING);
1da177e4 58
3db05fea 59 ct = nf_ct_get(skb, &ctinfo);
5b1158e9 60 nat = nfct_nat(ct);
587aa641 61
3666ed1c 62 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED ||
fb048833 63 ctinfo == IP_CT_RELATED_REPLY));
1da177e4 64
adcb5ad1
PM
65 /* Source address is 0.0.0.0 - locally generated packet that is
66 * probably not supposed to be masqueraded.
67 */
5b1158e9 68 if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip == 0)
adcb5ad1
PM
69 return NF_ACCEPT;
70
7eb35586 71 mr = par->targinfo;
511c3f92 72 rt = skb_rtable(skb);
f8126f1d
DM
73 nh = rt_nexthop(rt, ip_hdr(skb)->daddr);
74 newsrc = inet_select_addr(par->out, nh, RT_SCOPE_UNIVERSE);
1da177e4 75 if (!newsrc) {
ff67e4e4 76 pr_info("%s ate my IP address\n", par->out->name);
1da177e4
LT
77 return NF_DROP;
78 }
79
7eb35586 80 nat->masq_index = par->out->ifindex;
1da177e4
LT
81
82 /* Transfer from original range. */
c7232c99
PM
83 memset(&newrange.min_addr, 0, sizeof(newrange.min_addr));
84 memset(&newrange.max_addr, 0, sizeof(newrange.max_addr));
85 newrange.flags = mr->range[0].flags | NF_NAT_RANGE_MAP_IPS;
86 newrange.min_addr.ip = newsrc;
87 newrange.max_addr.ip = newsrc;
88 newrange.min_proto = mr->range[0].min;
89 newrange.max_proto = mr->range[0].max;
1da177e4
LT
90
91 /* Hand modified range to generic setup. */
cbc9f2f4 92 return nf_nat_setup_info(ct, &newrange, NF_NAT_MANIP_SRC);
1da177e4
LT
93}
94
170b197c 95static int
587aa641 96device_cmp(struct nf_conn *i, void *ifindex)
1da177e4 97{
a47362a2 98 const struct nf_conn_nat *nat = nfct_nat(i);
bbdc176a
MJ
99
100 if (!nat)
101 return 0;
1da177e4 102
17f2f52b 103 return nat->masq_index == (int)(long)ifindex;
1da177e4
LT
104}
105
106static int masq_device_event(struct notifier_block *this,
107 unsigned long event,
108 void *ptr)
109{
a47362a2 110 const struct net_device *dev = ptr;
b8b8063e 111 struct net *net = dev_net(dev);
e9dc8653 112
1da177e4
LT
113 if (event == NETDEV_DOWN) {
114 /* Device was downed. Search entire table for
115 conntracks which were associated with that device,
116 and forget them. */
587aa641 117 NF_CT_ASSERT(dev->ifindex != 0);
1da177e4 118
b8b8063e 119 nf_ct_iterate_cleanup(net, device_cmp,
400dad39 120 (void *)(long)dev->ifindex);
1da177e4
LT
121 }
122
123 return NOTIFY_DONE;
124}
125
126static int masq_inet_event(struct notifier_block *this,
127 unsigned long event,
128 void *ptr)
129{
6fc68624
DL
130 struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
131 return masq_device_event(this, event, dev);
1da177e4
LT
132}
133
134static struct notifier_block masq_dev_notifier = {
135 .notifier_call = masq_device_event,
136};
137
138static struct notifier_block masq_inet_notifier = {
139 .notifier_call = masq_inet_event,
140};
141
d3c5ee6d 142static struct xt_target masquerade_tg_reg __read_mostly = {
1da177e4 143 .name = "MASQUERADE",
ee999d8b 144 .family = NFPROTO_IPV4,
d3c5ee6d 145 .target = masquerade_tg,
cbc9f2f4 146 .targetsize = sizeof(struct nf_nat_ipv4_multi_range_compat),
1d5cd909 147 .table = "nat",
6e23ae2a 148 .hooks = 1 << NF_INET_POST_ROUTING,
d3c5ee6d 149 .checkentry = masquerade_tg_check,
1da177e4
LT
150 .me = THIS_MODULE,
151};
152
d3c5ee6d 153static int __init masquerade_tg_init(void)
1da177e4
LT
154{
155 int ret;
156
d3c5ee6d 157 ret = xt_register_target(&masquerade_tg_reg);
1da177e4
LT
158
159 if (ret == 0) {
160 /* Register for device down reports */
161 register_netdevice_notifier(&masq_dev_notifier);
162 /* Register IP address change reports */
163 register_inetaddr_notifier(&masq_inet_notifier);
164 }
165
166 return ret;
167}
168
d3c5ee6d 169static void __exit masquerade_tg_exit(void)
1da177e4 170{
d3c5ee6d 171 xt_unregister_target(&masquerade_tg_reg);
1da177e4 172 unregister_netdevice_notifier(&masq_dev_notifier);
e905a9ed 173 unregister_inetaddr_notifier(&masq_inet_notifier);
1da177e4
LT
174}
175
d3c5ee6d
JE
176module_init(masquerade_tg_init);
177module_exit(masquerade_tg_exit);