blob: fd5e74a19fb55847b41b4b5ba29e9e583ac01dd2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* NETMAP - static NAT mapping of IP network addresses (1:1).
2 * The mapping can be applied to source (POSTROUTING),
3 * destination (PREROUTING), or both (with separate rules).
4 */
5
6/* (C) 2000-2001 Svenning Soerensen <svenning@post5.tele.dk>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/ip.h>
14#include <linux/module.h>
15#include <linux/netdevice.h>
16#include <linux/netfilter.h>
17#include <linux/netfilter_ipv4.h>
18#include <linux/netfilter_ipv4/ip_nat_rule.h>
19
20#define MODULENAME "NETMAP"
21MODULE_LICENSE("GPL");
22MODULE_AUTHOR("Svenning Soerensen <svenning@post5.tele.dk>");
23MODULE_DESCRIPTION("iptables 1:1 NAT mapping of IP networks target");
24
25#if 0
26#define DEBUGP printk
27#else
28#define DEBUGP(format, args...)
29#endif
30
31static int
32check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080033 const void *e,
Patrick McHardyc4986732006-03-20 18:02:56 -080034 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 void *targinfo,
36 unsigned int targinfosize,
37 unsigned int hook_mask)
38{
39 const struct ip_nat_multi_range_compat *mr = targinfo;
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 if (!(mr->range[0].flags & IP_NAT_RANGE_MAP_IPS)) {
42 DEBUGP(MODULENAME":check: bad MAP_IPS.\n");
43 return 0;
44 }
45 if (mr->rangesize != 1) {
46 DEBUGP(MODULENAME":check: bad rangesize %u.\n", mr->rangesize);
47 return 0;
48 }
49 return 1;
50}
51
52static unsigned int
53target(struct sk_buff **pskb,
54 const struct net_device *in,
55 const struct net_device *out,
56 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -080057 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -070058 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct ip_conntrack *ct;
61 enum ip_conntrack_info ctinfo;
62 u_int32_t new_ip, netmask;
63 const struct ip_nat_multi_range_compat *mr = targinfo;
64 struct ip_nat_range newrange;
65
66 IP_NF_ASSERT(hooknum == NF_IP_PRE_ROUTING
Gary Wayne Smith000efe12005-08-14 17:33:24 -070067 || hooknum == NF_IP_POST_ROUTING
68 || hooknum == NF_IP_LOCAL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 ct = ip_conntrack_get(*pskb, &ctinfo);
70
71 netmask = ~(mr->range[0].min_ip ^ mr->range[0].max_ip);
72
Gary Wayne Smith000efe12005-08-14 17:33:24 -070073 if (hooknum == NF_IP_PRE_ROUTING || hooknum == NF_IP_LOCAL_OUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 new_ip = (*pskb)->nh.iph->daddr & ~netmask;
75 else
76 new_ip = (*pskb)->nh.iph->saddr & ~netmask;
77 new_ip |= mr->range[0].min_ip & netmask;
78
79 newrange = ((struct ip_nat_range)
80 { mr->range[0].flags | IP_NAT_RANGE_MAP_IPS,
81 new_ip, new_ip,
82 mr->range[0].min, mr->range[0].max });
83
84 /* Hand modified range to generic setup. */
85 return ip_nat_setup_info(ct, &newrange, hooknum);
86}
87
88static struct ipt_target target_module = {
89 .name = MODULENAME,
90 .target = target,
Patrick McHardy1d5cd902006-03-20 18:01:14 -080091 .targetsize = sizeof(struct ip_nat_multi_range_compat),
92 .table = "nat",
93 .hooks = (1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_POST_ROUTING) |
94 (1 << NF_IP_LOCAL_OUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .checkentry = check,
96 .me = THIS_MODULE
97};
98
Andrew Morton65b4b4e2006-03-28 16:37:06 -080099static int __init ipt_netmap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 return ipt_register_target(&target_module);
102}
103
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800104static void __exit ipt_netmap_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 ipt_unregister_target(&target_module);
107}
108
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800109module_init(ipt_netmap_init);
110module_exit(ipt_netmap_fini);