netfilter: xtables: move extension arguments into compound structure (4/6)
[safe/jmp/linux-2.6] / 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-2006 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 <net/netfilter/nf_nat_rule.h>
23 #include <linux/netfilter_ipv4.h>
24 #include <linux/netfilter/x_tables.h>
25
26 MODULE_LICENSE("GPL");
27 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
28 MODULE_DESCRIPTION("Xtables: automatic-address SNAT");
29
30 /* Lock protects masq region inside conntrack */
31 static DEFINE_RWLOCK(masq_lock);
32
33 /* FIXME: Multiple targets. --RR */
34 static bool
35 masquerade_tg_check(const char *tablename, const void *e,
36                     const struct xt_target *target, void *targinfo,
37                     unsigned int hook_mask)
38 {
39         const struct nf_nat_multi_range_compat *mr = targinfo;
40
41         if (mr->range[0].flags & IP_NAT_RANGE_MAP_IPS) {
42                 pr_debug("masquerade_check: bad MAP_IPS.\n");
43                 return false;
44         }
45         if (mr->rangesize != 1) {
46                 pr_debug("masquerade_check: bad rangesize %u\n", mr->rangesize);
47                 return false;
48         }
49         return true;
50 }
51
52 static unsigned int
53 masquerade_tg(struct sk_buff *skb, const struct xt_target_param *par)
54 {
55         struct nf_conn *ct;
56         struct nf_conn_nat *nat;
57         enum ip_conntrack_info ctinfo;
58         struct nf_nat_range newrange;
59         const struct nf_nat_multi_range_compat *mr;
60         const struct rtable *rt;
61         __be32 newsrc;
62
63         NF_CT_ASSERT(par->hooknum == NF_INET_POST_ROUTING);
64
65         ct = nf_ct_get(skb, &ctinfo);
66         nat = nfct_nat(ct);
67
68         NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED
69                             || ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
70
71         /* Source address is 0.0.0.0 - locally generated packet that is
72          * probably not supposed to be masqueraded.
73          */
74         if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip == 0)
75                 return NF_ACCEPT;
76
77         mr = par->targinfo;
78         rt = skb->rtable;
79         newsrc = inet_select_addr(par->out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
80         if (!newsrc) {
81                 printk("MASQUERADE: %s ate my IP address\n", par->out->name);
82                 return NF_DROP;
83         }
84
85         write_lock_bh(&masq_lock);
86         nat->masq_index = par->out->ifindex;
87         write_unlock_bh(&masq_lock);
88
89         /* Transfer from original range. */
90         newrange = ((struct nf_nat_range)
91                 { mr->range[0].flags | IP_NAT_RANGE_MAP_IPS,
92                   newsrc, newsrc,
93                   mr->range[0].min, mr->range[0].max });
94
95         /* Hand modified range to generic setup. */
96         return nf_nat_setup_info(ct, &newrange, IP_NAT_MANIP_SRC);
97 }
98
99 static int
100 device_cmp(struct nf_conn *i, void *ifindex)
101 {
102         const struct nf_conn_nat *nat = nfct_nat(i);
103         int ret;
104
105         if (!nat)
106                 return 0;
107
108         read_lock_bh(&masq_lock);
109         ret = (nat->masq_index == (int)(long)ifindex);
110         read_unlock_bh(&masq_lock);
111
112         return ret;
113 }
114
115 static int masq_device_event(struct notifier_block *this,
116                              unsigned long event,
117                              void *ptr)
118 {
119         const struct net_device *dev = ptr;
120         struct net *net = dev_net(dev);
121
122         if (event == NETDEV_DOWN) {
123                 /* Device was downed.  Search entire table for
124                    conntracks which were associated with that device,
125                    and forget them. */
126                 NF_CT_ASSERT(dev->ifindex != 0);
127
128                 nf_ct_iterate_cleanup(net, device_cmp,
129                                       (void *)(long)dev->ifindex);
130         }
131
132         return NOTIFY_DONE;
133 }
134
135 static int masq_inet_event(struct notifier_block *this,
136                            unsigned long event,
137                            void *ptr)
138 {
139         struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
140         return masq_device_event(this, event, dev);
141 }
142
143 static struct notifier_block masq_dev_notifier = {
144         .notifier_call  = masq_device_event,
145 };
146
147 static struct notifier_block masq_inet_notifier = {
148         .notifier_call  = masq_inet_event,
149 };
150
151 static struct xt_target masquerade_tg_reg __read_mostly = {
152         .name           = "MASQUERADE",
153         .family         = NFPROTO_IPV4,
154         .target         = masquerade_tg,
155         .targetsize     = sizeof(struct nf_nat_multi_range_compat),
156         .table          = "nat",
157         .hooks          = 1 << NF_INET_POST_ROUTING,
158         .checkentry     = masquerade_tg_check,
159         .me             = THIS_MODULE,
160 };
161
162 static int __init masquerade_tg_init(void)
163 {
164         int ret;
165
166         ret = xt_register_target(&masquerade_tg_reg);
167
168         if (ret == 0) {
169                 /* Register for device down reports */
170                 register_netdevice_notifier(&masq_dev_notifier);
171                 /* Register IP address change reports */
172                 register_inetaddr_notifier(&masq_inet_notifier);
173         }
174
175         return ret;
176 }
177
178 static void __exit masquerade_tg_exit(void)
179 {
180         xt_unregister_target(&masquerade_tg_reg);
181         unregister_netdevice_notifier(&masq_dev_notifier);
182         unregister_inetaddr_notifier(&masq_inet_notifier);
183 }
184
185 module_init(masquerade_tg_init);
186 module_exit(masquerade_tg_exit);