Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / net / ipv4 / netfilter / ipt_MASQUERADE.c
1 /* Masquerade.  Simple mapping which alters range to a local IP address
2    (depending on route). */
3
4 /* (C) 1999-2001 Paul `Rusty' Russell
5  * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
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  */
11
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 #include <linux/netfilter_ipv4/ip_nat_rule.h>
24 #include <linux/netfilter_ipv4/ip_tables.h>
25
26 MODULE_LICENSE("GPL");
27 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
28 MODULE_DESCRIPTION("iptables MASQUERADE target module");
29
30 #if 0
31 #define DEBUGP printk
32 #else
33 #define DEBUGP(format, args...)
34 #endif
35
36 /* Lock protects masq region inside conntrack */
37 static DEFINE_RWLOCK(masq_lock);
38
39 /* FIXME: Multiple targets. --RR */
40 static int
41 masquerade_check(const char *tablename,
42                  const void *e,
43                  const struct xt_target *target,
44                  void *targinfo,
45                  unsigned int targinfosize,
46                  unsigned int hook_mask)
47 {
48         const struct ip_nat_multi_range_compat *mr = targinfo;
49
50         if (mr->range[0].flags & IP_NAT_RANGE_MAP_IPS) {
51                 DEBUGP("masquerade_check: bad MAP_IPS.\n");
52                 return 0;
53         }
54         if (mr->rangesize != 1) {
55                 DEBUGP("masquerade_check: bad rangesize %u.\n", mr->rangesize);
56                 return 0;
57         }
58         return 1;
59 }
60
61 static unsigned int
62 masquerade_target(struct sk_buff **pskb,
63                   const struct net_device *in,
64                   const struct net_device *out,
65                   unsigned int hooknum,
66                   const struct xt_target *target,
67                   const void *targinfo,
68                   void *userinfo)
69 {
70         struct ip_conntrack *ct;
71         enum ip_conntrack_info ctinfo;
72         const struct ip_nat_multi_range_compat *mr;
73         struct ip_nat_range newrange;
74         struct rtable *rt;
75         u_int32_t newsrc;
76
77         IP_NF_ASSERT(hooknum == NF_IP_POST_ROUTING);
78
79         ct = ip_conntrack_get(*pskb, &ctinfo);
80         IP_NF_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED
81                             || ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
82
83         /* Source address is 0.0.0.0 - locally generated packet that is
84          * probably not supposed to be masqueraded.
85          */
86         if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.ip == 0)
87                 return NF_ACCEPT;
88
89         mr = targinfo;
90         rt = (struct rtable *)(*pskb)->dst;
91         newsrc = inet_select_addr(out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
92         if (!newsrc) {
93                 printk("MASQUERADE: %s ate my IP address\n", out->name);
94                 return NF_DROP;
95         }
96
97         write_lock_bh(&masq_lock);
98         ct->nat.masq_index = out->ifindex;
99         write_unlock_bh(&masq_lock);
100
101         /* Transfer from original range. */
102         newrange = ((struct ip_nat_range)
103                 { mr->range[0].flags | IP_NAT_RANGE_MAP_IPS,
104                   newsrc, newsrc,
105                   mr->range[0].min, mr->range[0].max });
106
107         /* Hand modified range to generic setup. */
108         return ip_nat_setup_info(ct, &newrange, hooknum);
109 }
110
111 static inline int
112 device_cmp(struct ip_conntrack *i, void *ifindex)
113 {
114         int ret;
115
116         read_lock_bh(&masq_lock);
117         ret = (i->nat.masq_index == (int)(long)ifindex);
118         read_unlock_bh(&masq_lock);
119
120         return ret;
121 }
122
123 static int masq_device_event(struct notifier_block *this,
124                              unsigned long event,
125                              void *ptr)
126 {
127         struct net_device *dev = ptr;
128
129         if (event == NETDEV_DOWN) {
130                 /* Device was downed.  Search entire table for
131                    conntracks which were associated with that device,
132                    and forget them. */
133                 IP_NF_ASSERT(dev->ifindex != 0);
134
135                 ip_ct_iterate_cleanup(device_cmp, (void *)(long)dev->ifindex);
136         }
137
138         return NOTIFY_DONE;
139 }
140
141 static int masq_inet_event(struct notifier_block *this,
142                            unsigned long event,
143                            void *ptr)
144 {
145         struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
146
147         if (event == NETDEV_DOWN) {
148                 /* IP address was deleted.  Search entire table for
149                    conntracks which were associated with that device,
150                    and forget them. */
151                 IP_NF_ASSERT(dev->ifindex != 0);
152
153                 ip_ct_iterate_cleanup(device_cmp, (void *)(long)dev->ifindex);
154         }
155
156         return NOTIFY_DONE;
157 }
158
159 static struct notifier_block masq_dev_notifier = {
160         .notifier_call  = masq_device_event,
161 };
162
163 static struct notifier_block masq_inet_notifier = {
164         .notifier_call  = masq_inet_event,
165 };
166
167 static struct ipt_target masquerade = {
168         .name           = "MASQUERADE",
169         .target         = masquerade_target,
170         .targetsize     = sizeof(struct ip_nat_multi_range_compat),
171         .table          = "nat",
172         .hooks          = 1 << NF_IP_POST_ROUTING,
173         .checkentry     = masquerade_check,
174         .me             = THIS_MODULE,
175 };
176
177 static int __init ipt_masquerade_init(void)
178 {
179         int ret;
180
181         ret = ipt_register_target(&masquerade);
182
183         if (ret == 0) {
184                 /* Register for device down reports */
185                 register_netdevice_notifier(&masq_dev_notifier);
186                 /* Register IP address change reports */
187                 register_inetaddr_notifier(&masq_inet_notifier);
188         }
189
190         return ret;
191 }
192
193 static void __exit ipt_masquerade_fini(void)
194 {
195         ipt_unregister_target(&masquerade);
196         unregister_netdevice_notifier(&masq_dev_notifier);
197         unregister_inetaddr_notifier(&masq_inet_notifier);      
198 }
199
200 module_init(ipt_masquerade_init);
201 module_exit(ipt_masquerade_fini);