NETFILTER: remove unnecessary goto statement for error recovery
[tomato.git] / release / src-rt / linux / linux-2.6 / net / ipv4 / netfilter / ipt_REDIRECT.c
bloba9234912ab5433119cbe54d1dc395b0e68f2511c
1 /* Redirect. Simple mapping which alters dst to a local IP address. */
2 /* (C) 1999-2001 Paul `Rusty' Russell
3 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
10 #include <linux/types.h>
11 #include <linux/ip.h>
12 #include <linux/timer.h>
13 #include <linux/module.h>
14 #include <linux/netfilter.h>
15 #include <linux/netdevice.h>
16 #include <linux/if.h>
17 #include <linux/inetdevice.h>
18 #include <net/protocol.h>
19 #include <net/checksum.h>
20 #include <linux/netfilter_ipv4.h>
21 #include <linux/netfilter/x_tables.h>
22 #include <net/netfilter/nf_nat_rule.h>
24 MODULE_LICENSE("GPL");
25 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
26 MODULE_DESCRIPTION("iptables REDIRECT target module");
28 #if 0
29 #define DEBUGP printk
30 #else
31 #define DEBUGP(format, args...)
32 #endif
34 /* FIXME: Take multiple ranges --RR */
35 static int
36 redirect_check(const char *tablename,
37 const void *e,
38 const struct xt_target *target,
39 void *targinfo,
40 unsigned int hook_mask)
42 const struct nf_nat_multi_range_compat *mr = targinfo;
44 if (mr->range[0].flags & IP_NAT_RANGE_MAP_IPS) {
45 DEBUGP("redirect_check: bad MAP_IPS.\n");
46 return 0;
48 if (mr->rangesize != 1) {
49 DEBUGP("redirect_check: bad rangesize %u.\n", mr->rangesize);
50 return 0;
52 return 1;
55 static unsigned int
56 redirect_target(struct sk_buff *skb,
57 const struct net_device *in,
58 const struct net_device *out,
59 unsigned int hooknum,
60 const struct xt_target *target,
61 const void *targinfo)
63 struct nf_conn *ct;
64 enum ip_conntrack_info ctinfo;
65 __be32 newdst;
66 const struct nf_nat_multi_range_compat *mr = targinfo;
67 struct nf_nat_range newrange;
69 NF_CT_ASSERT(hooknum == NF_IP_PRE_ROUTING
70 || hooknum == NF_IP_LOCAL_OUT);
72 ct = nf_ct_get(skb, &ctinfo);
73 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED));
75 /* Local packets: make them go to loopback */
76 if (hooknum == NF_IP_LOCAL_OUT)
77 newdst = htonl(0x7F000001);
78 else {
79 struct in_device *indev;
80 struct in_ifaddr *ifa;
82 newdst = 0;
84 rcu_read_lock();
85 indev = __in_dev_get_rcu(skb->dev);
86 if (indev && (ifa = indev->ifa_list))
87 newdst = ifa->ifa_local;
88 rcu_read_unlock();
90 if (!newdst)
91 return NF_DROP;
94 /* Transfer from original range. */
95 newrange = ((struct nf_nat_range)
96 { mr->range[0].flags | IP_NAT_RANGE_MAP_IPS,
97 newdst, newdst,
98 mr->range[0].min, mr->range[0].max });
100 /* Hand modified range to generic setup. */
101 return nf_nat_setup_info(ct, &newrange, hooknum);
104 static struct xt_target redirect_reg = {
105 .name = "REDIRECT",
106 .family = AF_INET,
107 .target = redirect_target,
108 .targetsize = sizeof(struct nf_nat_multi_range_compat),
109 .table = "nat",
110 .hooks = (1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_LOCAL_OUT),
111 .checkentry = redirect_check,
112 .me = THIS_MODULE,
115 static int __init ipt_redirect_init(void)
117 return xt_register_target(&redirect_reg);
120 static void __exit ipt_redirect_fini(void)
122 xt_unregister_target(&redirect_reg);
125 module_init(ipt_redirect_init);
126 module_exit(ipt_redirect_fini);