blob: 0780aa1a1825e9a84810874ff9603697a71f8552 [file] [log] [blame]
Marc Bouchere6869a82000-03-20 06:03:29 +00001/* Shared library add-on to iptables to add source-NAT support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
Jan Engelhardt5d9678a2008-11-20 10:15:35 +01007#include <xtables.h>
Marc Bouchere6869a82000-03-20 06:03:29 +00008#include <iptables.h>
9#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardy40d54752007-04-18 07:00:36 +000010#include <linux/netfilter/nf_nat.h>
Marc Bouchere6869a82000-03-20 06:03:29 +000011
Eric Leblondae4b0b32007-02-24 15:11:33 +000012#define IPT_SNAT_OPT_SOURCE 0x01
Patrick McHardye656e262007-04-18 12:56:05 +000013#define IPT_SNAT_OPT_RANDOM 0x02
Eric Leblondae4b0b32007-02-24 15:11:33 +000014
Marc Bouchere6869a82000-03-20 06:03:29 +000015/* Source NAT data consists of a multi-range, indicating where to map
16 to. */
17struct ipt_natinfo
18{
Yasuyuki KOZAKAI193df8e2007-07-24 05:57:28 +000019 struct xt_entry_target t;
Marc Bouchere6869a82000-03-20 06:03:29 +000020 struct ip_nat_multi_range mr;
21};
22
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +000023static void SNAT_help(void)
Marc Bouchere6869a82000-03-20 06:03:29 +000024{
25 printf(
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020026"SNAT target options:\n"
Patrick McHardyef399a32007-05-29 11:24:45 +000027" --to-source <ipaddr>[-<ipaddr>][:port-port]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +000028" Address to map source to.\n"
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020029"[--random]\n");
Marc Bouchere6869a82000-03-20 06:03:29 +000030}
31
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +000032static const struct option SNAT_opts[] = {
Patrick McHardy500f4832007-09-08 15:59:04 +000033 { "to-source", 1, NULL, '1' },
34 { "random", 0, NULL, '2' },
Max Kellermann9ee386a2008-01-29 13:48:05 +000035 { .name = NULL }
Marc Bouchere6869a82000-03-20 06:03:29 +000036};
37
Marc Bouchere6869a82000-03-20 06:03:29 +000038static struct ipt_natinfo *
39append_range(struct ipt_natinfo *info, const struct ip_nat_range *range)
40{
41 unsigned int size;
42
43 /* One rangesize already in struct ipt_natinfo */
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020044 size = XT_ALIGN(sizeof(*info) + info->mr.rangesize * sizeof(*range));
Marc Bouchere6869a82000-03-20 06:03:29 +000045
46 info = realloc(info, size);
47 if (!info)
48 exit_error(OTHER_PROBLEM, "Out of memory\n");
49
Rusty Russell228e98d2000-04-27 10:28:06 +000050 info->t.u.target_size = size;
Marc Bouchere6869a82000-03-20 06:03:29 +000051 info->mr.range[info->mr.rangesize] = *range;
52 info->mr.rangesize++;
53
54 return info;
55}
56
57/* Ranges expected in network order. */
Yasuyuki KOZAKAI193df8e2007-07-24 05:57:28 +000058static struct xt_entry_target *
Marc Bouchere6869a82000-03-20 06:03:29 +000059parse_to(char *arg, int portok, struct ipt_natinfo *info)
60{
61 struct ip_nat_range range;
Harald Weltede5ba5d2005-02-01 15:14:15 +000062 char *colon, *dash, *error;
Jan Engelhardtbd943842008-01-20 13:38:08 +000063 const struct in_addr *ip;
Marc Bouchere6869a82000-03-20 06:03:29 +000064
65 memset(&range, 0, sizeof(range));
66 colon = strchr(arg, ':');
67
68 if (colon) {
69 int port;
70
71 if (!portok)
72 exit_error(PARAMETER_PROBLEM,
Patrick McHardy5a942f92008-11-04 13:22:40 +010073 "Need TCP, UDP, SCTP or DCCP with port specification");
Marc Bouchere6869a82000-03-20 06:03:29 +000074
75 range.flags |= IP_NAT_RANGE_PROTO_SPECIFIED;
76
77 port = atoi(colon+1);
Yasuyuki KOZAKAIa3a9c0d2005-06-22 12:22:44 +000078 if (port <= 0 || port > 65535)
Marc Bouchere6869a82000-03-20 06:03:29 +000079 exit_error(PARAMETER_PROBLEM,
80 "Port `%s' not valid\n", colon+1);
81
Harald Weltede5ba5d2005-02-01 15:14:15 +000082 error = strchr(colon+1, ':');
83 if (error)
84 exit_error(PARAMETER_PROBLEM,
85 "Invalid port:port syntax - use dash\n");
86
Marc Bouchere6869a82000-03-20 06:03:29 +000087 dash = strchr(colon, '-');
88 if (!dash) {
89 range.min.tcp.port
90 = range.max.tcp.port
91 = htons(port);
92 } else {
93 int maxport;
94
95 maxport = atoi(dash + 1);
Yasuyuki KOZAKAIa3a9c0d2005-06-22 12:22:44 +000096 if (maxport <= 0 || maxport > 65535)
Marc Bouchere6869a82000-03-20 06:03:29 +000097 exit_error(PARAMETER_PROBLEM,
98 "Port `%s' not valid\n", dash+1);
99 if (maxport < port)
100 /* People are stupid. */
101 exit_error(PARAMETER_PROBLEM,
102 "Port range `%s' funky\n", colon+1);
103 range.min.tcp.port = htons(port);
104 range.max.tcp.port = htons(maxport);
105 }
106 /* Starts with a colon? No IP info...*/
107 if (colon == arg)
108 return &(append_range(info, &range)->t);
109 *colon = '\0';
110 }
111
112 range.flags |= IP_NAT_RANGE_MAP_IPS;
113 dash = strchr(arg, '-');
114 if (colon && dash && dash > colon)
115 dash = NULL;
116
117 if (dash)
118 *dash = '\0';
119
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +0100120 ip = xtables_numeric_to_ipaddr(arg);
Marc Bouchere6869a82000-03-20 06:03:29 +0000121 if (!ip)
122 exit_error(PARAMETER_PROBLEM, "Bad IP address `%s'\n",
123 arg);
124 range.min_ip = ip->s_addr;
125 if (dash) {
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +0100126 ip = xtables_numeric_to_ipaddr(dash+1);
Marc Bouchere6869a82000-03-20 06:03:29 +0000127 if (!ip)
128 exit_error(PARAMETER_PROBLEM, "Bad IP address `%s'\n",
129 dash+1);
130 range.max_ip = ip->s_addr;
131 } else
132 range.max_ip = range.min_ip;
133
134 return &(append_range(info, &range)->t);
135}
136
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000137static int SNAT_parse(int c, char **argv, int invert, unsigned int *flags,
138 const void *e, struct xt_entry_target **target)
Marc Bouchere6869a82000-03-20 06:03:29 +0000139{
Yasuyuki KOZAKAIac8b2712007-07-24 06:06:59 +0000140 const struct ipt_entry *entry = e;
Marc Bouchere6869a82000-03-20 06:03:29 +0000141 struct ipt_natinfo *info = (void *)*target;
142 int portok;
143
144 if (entry->ip.proto == IPPROTO_TCP
Patrick McHardy36d870c2005-07-22 06:39:45 +0000145 || entry->ip.proto == IPPROTO_UDP
Patrick McHardy5a942f92008-11-04 13:22:40 +0100146 || entry->ip.proto == IPPROTO_SCTP
147 || entry->ip.proto == IPPROTO_DCCP
Patrick McHardy36d870c2005-07-22 06:39:45 +0000148 || entry->ip.proto == IPPROTO_ICMP)
Marc Bouchere6869a82000-03-20 06:03:29 +0000149 portok = 1;
150 else
151 portok = 0;
152
153 switch (c) {
154 case '1':
Harald Welteb77f1da2002-03-14 11:35:58 +0000155 if (check_inverse(optarg, &invert, NULL, 0))
Marc Bouchere6869a82000-03-20 06:03:29 +0000156 exit_error(PARAMETER_PROBLEM,
157 "Unexpected `!' after --to-source");
158
Eric Leblondae4b0b32007-02-24 15:11:33 +0000159 if (*flags & IPT_SNAT_OPT_SOURCE) {
Phil Oester8cf65912005-09-19 15:00:33 +0000160 if (!kernel_version)
161 get_kernel_version();
162 if (kernel_version > LINUX_VERSION(2, 6, 10))
163 exit_error(PARAMETER_PROBLEM,
164 "Multiple --to-source not supported");
165 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000166 *target = parse_to(optarg, portok, info);
Patrick McHardye656e262007-04-18 12:56:05 +0000167 /* WTF do we need this for?? */
Eric Leblondae4b0b32007-02-24 15:11:33 +0000168 if (*flags & IPT_SNAT_OPT_RANDOM)
Patrick McHardyef399a32007-05-29 11:24:45 +0000169 info->mr.range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
170 *flags |= IPT_SNAT_OPT_SOURCE;
Marc Bouchere6869a82000-03-20 06:03:29 +0000171 return 1;
172
Eric Leblondae4b0b32007-02-24 15:11:33 +0000173 case '2':
174 if (*flags & IPT_SNAT_OPT_SOURCE) {
Patrick McHardyef399a32007-05-29 11:24:45 +0000175 info->mr.range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
Eric Leblondae4b0b32007-02-24 15:11:33 +0000176 *flags |= IPT_SNAT_OPT_RANDOM;
177 } else
178 *flags |= IPT_SNAT_OPT_RANDOM;
179 return 1;
Eric Leblondae4b0b32007-02-24 15:11:33 +0000180
Marc Bouchere6869a82000-03-20 06:03:29 +0000181 default:
182 return 0;
183 }
184}
185
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000186static void SNAT_check(unsigned int flags)
Marc Bouchere6869a82000-03-20 06:03:29 +0000187{
Eric Leblondae4b0b32007-02-24 15:11:33 +0000188 if (!(flags & IPT_SNAT_OPT_SOURCE))
Marc Bouchere6869a82000-03-20 06:03:29 +0000189 exit_error(PARAMETER_PROBLEM,
190 "You must specify --to-source");
191}
192
193static void print_range(const struct ip_nat_range *r)
194{
195 if (r->flags & IP_NAT_RANGE_MAP_IPS) {
196 struct in_addr a;
197
198 a.s_addr = r->min_ip;
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100199 printf("%s", xtables_ipaddr_to_numeric(&a));
Marc Bouchere6869a82000-03-20 06:03:29 +0000200 if (r->max_ip != r->min_ip) {
201 a.s_addr = r->max_ip;
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100202 printf("-%s", xtables_ipaddr_to_numeric(&a));
Marc Bouchere6869a82000-03-20 06:03:29 +0000203 }
204 }
205 if (r->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
206 printf(":");
207 printf("%hu", ntohs(r->min.tcp.port));
208 if (r->max.tcp.port != r->min.tcp.port)
209 printf("-%hu", ntohs(r->max.tcp.port));
210 }
211}
212
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000213static void SNAT_print(const void *ip, const struct xt_entry_target *target,
214 int numeric)
Marc Bouchere6869a82000-03-20 06:03:29 +0000215{
216 struct ipt_natinfo *info = (void *)target;
217 unsigned int i = 0;
218
219 printf("to:");
220 for (i = 0; i < info->mr.rangesize; i++) {
221 print_range(&info->mr.range[i]);
222 printf(" ");
Patrick McHardy9c67def2007-04-18 14:00:11 +0000223 if (info->mr.range[i].flags & IP_NAT_RANGE_PROTO_RANDOM)
224 printf("random ");
Marc Bouchere6869a82000-03-20 06:03:29 +0000225 }
226}
227
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000228static void SNAT_save(const void *ip, const struct xt_entry_target *target)
Marc Bouchere6869a82000-03-20 06:03:29 +0000229{
230 struct ipt_natinfo *info = (void *)target;
231 unsigned int i = 0;
232
233 for (i = 0; i < info->mr.rangesize; i++) {
234 printf("--to-source ");
235 print_range(&info->mr.range[i]);
236 printf(" ");
Patrick McHardy9c67def2007-04-18 14:00:11 +0000237 if (info->mr.range[i].flags & IP_NAT_RANGE_PROTO_RANDOM)
238 printf("--random ");
Marc Bouchere6869a82000-03-20 06:03:29 +0000239 }
240}
241
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200242static struct xtables_target snat_tg_reg = {
Pablo Neira8caee8b2004-12-28 13:11:59 +0000243 .name = "SNAT",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200244 .version = XTABLES_VERSION,
Jan Engelhardt03d99482008-11-18 12:27:54 +0100245 .family = NFPROTO_IPV4,
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200246 .size = XT_ALIGN(sizeof(struct ip_nat_multi_range)),
247 .userspacesize = XT_ALIGN(sizeof(struct ip_nat_multi_range)),
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000248 .help = SNAT_help,
249 .parse = SNAT_parse,
250 .final_check = SNAT_check,
251 .print = SNAT_print,
252 .save = SNAT_save,
253 .extra_opts = SNAT_opts,
Marc Bouchere6869a82000-03-20 06:03:29 +0000254};
255
256void _init(void)
257{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200258 xtables_register_target(&snat_tg_reg);
Marc Bouchere6869a82000-03-20 06:03:29 +0000259}