blob: b38b13328d739fce3b3fc3a54d312f772501cffc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Same. Just like SNAT, only try to make the connections
2 * between client A and server B always have the same source ip.
3 *
4 * (C) 2000 Paul `Rusty' Russell
5 * (C) 2001 Martin Josefsson
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 * 010320 Martin Josefsson <gandalf@wlug.westbo.se>
12 * * copied ipt_BALANCE.c to ipt_SAME.c and changed a few things.
13 * 010728 Martin Josefsson <gandalf@wlug.westbo.se>
14 * * added --nodst to not include destination-ip in new source
15 * calculations.
16 * * added some more sanity-checks.
17 * 010729 Martin Josefsson <gandalf@wlug.westbo.se>
18 * * fixed a buggy if-statement in same_check(), should have
19 * used ntohl() but didn't.
20 * * added support for multiple ranges. IPT_SAME_MAX_RANGE is
21 * defined in linux/include/linux/netfilter_ipv4/ipt_SAME.h
22 * and is currently set to 10.
23 * * added support for 1-address range, nice to have now that
24 * we have multiple ranges.
25 */
26#include <linux/types.h>
27#include <linux/ip.h>
28#include <linux/timer.h>
29#include <linux/module.h>
30#include <linux/netfilter.h>
31#include <linux/netdevice.h>
32#include <linux/if.h>
33#include <linux/inetdevice.h>
34#include <net/protocol.h>
35#include <net/checksum.h>
36#include <linux/netfilter_ipv4.h>
37#include <linux/netfilter_ipv4/ip_nat_rule.h>
38#include <linux/netfilter_ipv4/ipt_SAME.h>
39
40MODULE_LICENSE("GPL");
41MODULE_AUTHOR("Martin Josefsson <gandalf@wlug.westbo.se>");
42MODULE_DESCRIPTION("iptables special SNAT module for consistent sourceip");
43
44#if 0
45#define DEBUGP printk
46#else
47#define DEBUGP(format, args...)
48#endif
49
50static int
51same_check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080052 const void *e,
Patrick McHardyc4986732006-03-20 18:02:56 -080053 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 void *targinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 unsigned int hook_mask)
56{
57 unsigned int count, countess, rangeip, index = 0;
58 struct ipt_same_info *mr = targinfo;
59
60 mr->ipnum = 0;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (mr->rangesize < 1) {
63 DEBUGP("same_check: need at least one dest range.\n");
64 return 0;
65 }
66 if (mr->rangesize > IPT_SAME_MAX_RANGE) {
67 DEBUGP("same_check: too many ranges specified, maximum "
68 "is %u ranges\n",
69 IPT_SAME_MAX_RANGE);
70 return 0;
71 }
72 for (count = 0; count < mr->rangesize; count++) {
73 if (ntohl(mr->range[count].min_ip) >
74 ntohl(mr->range[count].max_ip)) {
75 DEBUGP("same_check: min_ip is larger than max_ip in "
76 "range `%u.%u.%u.%u-%u.%u.%u.%u'.\n",
77 NIPQUAD(mr->range[count].min_ip),
78 NIPQUAD(mr->range[count].max_ip));
79 return 0;
80 }
81 if (!(mr->range[count].flags & IP_NAT_RANGE_MAP_IPS)) {
82 DEBUGP("same_check: bad MAP_IPS.\n");
83 return 0;
84 }
85 rangeip = (ntohl(mr->range[count].max_ip) -
86 ntohl(mr->range[count].min_ip) + 1);
87 mr->ipnum += rangeip;
88
89 DEBUGP("same_check: range %u, ipnum = %u\n", count, rangeip);
90 }
91 DEBUGP("same_check: total ipaddresses = %u\n", mr->ipnum);
92
93 mr->iparray = kmalloc((sizeof(u_int32_t) * mr->ipnum), GFP_KERNEL);
94 if (!mr->iparray) {
95 DEBUGP("same_check: Couldn't allocate %u bytes "
96 "for %u ipaddresses!\n",
97 (sizeof(u_int32_t) * mr->ipnum), mr->ipnum);
98 return 0;
99 }
100 DEBUGP("same_check: Allocated %u bytes for %u ipaddresses.\n",
101 (sizeof(u_int32_t) * mr->ipnum), mr->ipnum);
102
103 for (count = 0; count < mr->rangesize; count++) {
104 for (countess = ntohl(mr->range[count].min_ip);
105 countess <= ntohl(mr->range[count].max_ip);
106 countess++) {
107 mr->iparray[index] = countess;
108 DEBUGP("same_check: Added ipaddress `%u.%u.%u.%u' "
109 "in index %u.\n",
110 HIPQUAD(countess), index);
111 index++;
112 }
113 }
114 return 1;
115}
116
117static void
Patrick McHardyefa74162006-08-22 00:36:37 -0700118same_destroy(const struct xt_target *target, void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct ipt_same_info *mr = targinfo;
121
122 kfree(mr->iparray);
123
124 DEBUGP("same_destroy: Deallocated %u bytes for %u ipaddresses.\n",
125 (sizeof(u_int32_t) * mr->ipnum), mr->ipnum);
126}
127
128static unsigned int
129same_target(struct sk_buff **pskb,
130 const struct net_device *in,
131 const struct net_device *out,
132 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800133 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700134 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct ip_conntrack *ct;
137 enum ip_conntrack_info ctinfo;
Al Viro6a19d612006-09-28 14:22:24 -0700138 u_int32_t tmpip, aindex;
139 __be32 new_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 const struct ipt_same_info *same = targinfo;
141 struct ip_nat_range newrange;
142 const struct ip_conntrack_tuple *t;
143
144 IP_NF_ASSERT(hooknum == NF_IP_PRE_ROUTING ||
145 hooknum == NF_IP_POST_ROUTING);
146 ct = ip_conntrack_get(*pskb, &ctinfo);
147
148 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
149
150 /* Base new source on real src ip and optionally dst ip,
151 giving some hope for consistency across reboots.
152 Here we calculate the index in same->iparray which
153 holds the ipaddress we should use */
154
155 tmpip = ntohl(t->src.ip);
156
157 if (!(same->info & IPT_SAME_NODST))
158 tmpip += ntohl(t->dst.ip);
159
160 aindex = tmpip % same->ipnum;
161
162 new_ip = htonl(same->iparray[aindex]);
163
164 DEBUGP("ipt_SAME: src=%u.%u.%u.%u dst=%u.%u.%u.%u, "
165 "new src=%u.%u.%u.%u\n",
166 NIPQUAD(t->src.ip), NIPQUAD(t->dst.ip),
167 NIPQUAD(new_ip));
168
169 /* Transfer from original range. */
170 newrange = ((struct ip_nat_range)
171 { same->range[0].flags, new_ip, new_ip,
172 /* FIXME: Use ports from correct range! */
173 same->range[0].min, same->range[0].max });
174
175 /* Hand modified range to generic setup. */
176 return ip_nat_setup_info(ct, &newrange, hooknum);
177}
178
179static struct ipt_target same_reg = {
180 .name = "SAME",
181 .target = same_target,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800182 .targetsize = sizeof(struct ipt_same_info),
183 .table = "nat",
184 .hooks = (1 << NF_IP_PRE_ROUTING | 1 << NF_IP_POST_ROUTING),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .checkentry = same_check,
186 .destroy = same_destroy,
187 .me = THIS_MODULE,
188};
189
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800190static int __init ipt_same_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 return ipt_register_target(&same_reg);
193}
194
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800195static void __exit ipt_same_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 ipt_unregister_target(&same_reg);
198}
199
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800200module_init(ipt_same_init);
201module_exit(ipt_same_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202