netfilter: nf_conntrack: don't send destroy events from iterator
[deliverable/linux.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;
b3f644fc
PM
102 if (nf_ct_l3num(i) != NFPROTO_IPV4)
103 return 0;
17f2f52b 104 return nat->masq_index == (int)(long)ifindex;
1da177e4
LT
105}
106
107static int masq_device_event(struct notifier_block *this,
108 unsigned long event,
109 void *ptr)
110{
351638e7 111 const struct net_device *dev = netdev_notifier_info_to_dev(ptr);
b8b8063e 112 struct net *net = dev_net(dev);
e9dc8653 113
1da177e4
LT
114 if (event == NETDEV_DOWN) {
115 /* Device was downed. Search entire table for
116 conntracks which were associated with that device,
117 and forget them. */
587aa641 118 NF_CT_ASSERT(dev->ifindex != 0);
1da177e4 119
b8b8063e 120 nf_ct_iterate_cleanup(net, device_cmp,
c655bc68 121 (void *)(long)dev->ifindex, 0, 0);
1da177e4
LT
122 }
123
124 return NOTIFY_DONE;
125}
126
127static int masq_inet_event(struct notifier_block *this,
128 unsigned long event,
129 void *ptr)
130{
6fc68624 131 struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
75538c2b
CW
132 struct netdev_notifier_info info;
133
134 netdev_notifier_info_init(&info, dev);
135 return masq_device_event(this, event, &info);
1da177e4
LT
136}
137
138static struct notifier_block masq_dev_notifier = {
139 .notifier_call = masq_device_event,
140};
141
142static struct notifier_block masq_inet_notifier = {
143 .notifier_call = masq_inet_event,
144};
145
d3c5ee6d 146static struct xt_target masquerade_tg_reg __read_mostly = {
1da177e4 147 .name = "MASQUERADE",
ee999d8b 148 .family = NFPROTO_IPV4,
d3c5ee6d 149 .target = masquerade_tg,
cbc9f2f4 150 .targetsize = sizeof(struct nf_nat_ipv4_multi_range_compat),
1d5cd909 151 .table = "nat",
6e23ae2a 152 .hooks = 1 << NF_INET_POST_ROUTING,
d3c5ee6d 153 .checkentry = masquerade_tg_check,
1da177e4
LT
154 .me = THIS_MODULE,
155};
156
d3c5ee6d 157static int __init masquerade_tg_init(void)
1da177e4
LT
158{
159 int ret;
160
d3c5ee6d 161 ret = xt_register_target(&masquerade_tg_reg);
1da177e4
LT
162
163 if (ret == 0) {
164 /* Register for device down reports */
165 register_netdevice_notifier(&masq_dev_notifier);
166 /* Register IP address change reports */
167 register_inetaddr_notifier(&masq_inet_notifier);
168 }
169
170 return ret;
171}
172
d3c5ee6d 173static void __exit masquerade_tg_exit(void)
1da177e4 174{
d3c5ee6d 175 xt_unregister_target(&masquerade_tg_reg);
1da177e4 176 unregister_netdevice_notifier(&masq_dev_notifier);
e905a9ed 177 unregister_inetaddr_notifier(&masq_inet_notifier);
1da177e4
LT
178}
179
d3c5ee6d
JE
180module_init(masquerade_tg_init);
181module_exit(masquerade_tg_exit);
This page took 0.712882 seconds and 5 git commands to generate.