blob: 0d355a0dfe28fe2f422c56f4baab3eca8f20bdd0 [file] [log] [blame]
Marc Bouchere6869a82000-03-20 06:03:29 +00001/* Shared library add-on to iptables to add destination-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
Patrick McHardyef399a32007-05-29 11:24:45 +000012#define IPT_DNAT_OPT_DEST 0x1
13#define IPT_DNAT_OPT_RANDOM 0x2
14
Marc Bouchere6869a82000-03-20 06:03:29 +000015/* Dest 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 DNAT_help(void)
Marc Bouchere6869a82000-03-20 06:03:29 +000024{
25 printf(
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020026"DNAT target options:\n"
Marc Bouchere6869a82000-03-20 06:03:29 +000027" --to-destination <ipaddr>[-<ipaddr>][:port-port]\n"
28" Address to map destination 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 DNAT_opts[] = {
Patrick McHardy500f4832007-09-08 15:59:04 +000033 { "to-destination", 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;
Phil Oester3fb61f32005-02-01 12:56:16 +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
Phil Oester3fb61f32005-02-01 12:56:16 +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 DNAT_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-destination");
158
Phil Oester8cf65912005-09-19 15:00:33 +0000159 if (*flags) {
160 if (!kernel_version)
161 get_kernel_version();
162 if (kernel_version > LINUX_VERSION(2, 6, 10))
163 exit_error(PARAMETER_PROBLEM,
164 "Multiple --to-destination not supported");
165 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000166 *target = parse_to(optarg, portok, info);
Patrick McHardyef399a32007-05-29 11:24:45 +0000167 /* WTF do we need this for?? */
168 if (*flags & IPT_DNAT_OPT_RANDOM)
169 info->mr.range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
170 *flags |= IPT_DNAT_OPT_DEST;
Marc Bouchere6869a82000-03-20 06:03:29 +0000171 return 1;
172
Patrick McHardyef399a32007-05-29 11:24:45 +0000173 case '2':
174 if (*flags & IPT_DNAT_OPT_DEST) {
175 info->mr.range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
176 *flags |= IPT_DNAT_OPT_RANDOM;
177 } else
178 *flags |= IPT_DNAT_OPT_RANDOM;
Tom Eastep75b4b202007-11-15 13:06:58 +0000179 return 1;
Marc Bouchere6869a82000-03-20 06:03:29 +0000180 default:
181 return 0;
182 }
183}
184
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000185static void DNAT_check(unsigned int flags)
Marc Bouchere6869a82000-03-20 06:03:29 +0000186{
187 if (!flags)
188 exit_error(PARAMETER_PROBLEM,
189 "You must specify --to-destination");
190}
191
192static void print_range(const struct ip_nat_range *r)
193{
194 if (r->flags & IP_NAT_RANGE_MAP_IPS) {
195 struct in_addr a;
196
197 a.s_addr = r->min_ip;
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100198 printf("%s", xtables_ipaddr_to_numeric(&a));
Marc Bouchere6869a82000-03-20 06:03:29 +0000199 if (r->max_ip != r->min_ip) {
200 a.s_addr = r->max_ip;
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100201 printf("-%s", xtables_ipaddr_to_numeric(&a));
Marc Bouchere6869a82000-03-20 06:03:29 +0000202 }
203 }
204 if (r->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
205 printf(":");
206 printf("%hu", ntohs(r->min.tcp.port));
207 if (r->max.tcp.port != r->min.tcp.port)
208 printf("-%hu", ntohs(r->max.tcp.port));
209 }
210}
211
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000212static void DNAT_print(const void *ip, const struct xt_entry_target *target,
213 int numeric)
Marc Bouchere6869a82000-03-20 06:03:29 +0000214{
215 struct ipt_natinfo *info = (void *)target;
216 unsigned int i = 0;
217
218 printf("to:");
219 for (i = 0; i < info->mr.rangesize; i++) {
220 print_range(&info->mr.range[i]);
221 printf(" ");
Patrick McHardyef399a32007-05-29 11:24:45 +0000222 if (info->mr.range[i].flags & IP_NAT_RANGE_PROTO_RANDOM)
223 printf("random ");
Marc Bouchere6869a82000-03-20 06:03:29 +0000224 }
225}
226
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000227static void DNAT_save(const void *ip, const struct xt_entry_target *target)
Marc Bouchere6869a82000-03-20 06:03:29 +0000228{
229 struct ipt_natinfo *info = (void *)target;
230 unsigned int i = 0;
231
232 for (i = 0; i < info->mr.rangesize; i++) {
233 printf("--to-destination ");
234 print_range(&info->mr.range[i]);
235 printf(" ");
Patrick McHardyef399a32007-05-29 11:24:45 +0000236 if (info->mr.range[i].flags & IP_NAT_RANGE_PROTO_RANDOM)
237 printf("--random ");
Marc Bouchere6869a82000-03-20 06:03:29 +0000238 }
239}
240
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200241static struct xtables_target dnat_tg_reg = {
Pablo Neira8caee8b2004-12-28 13:11:59 +0000242 .name = "DNAT",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200243 .version = XTABLES_VERSION,
Jan Engelhardt03d99482008-11-18 12:27:54 +0100244 .family = NFPROTO_IPV4,
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200245 .size = XT_ALIGN(sizeof(struct ip_nat_multi_range)),
246 .userspacesize = XT_ALIGN(sizeof(struct ip_nat_multi_range)),
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000247 .help = DNAT_help,
248 .parse = DNAT_parse,
249 .final_check = DNAT_check,
250 .print = DNAT_print,
251 .save = DNAT_save,
252 .extra_opts = DNAT_opts,
Marc Bouchere6869a82000-03-20 06:03:29 +0000253};
254
255void _init(void)
256{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200257 xtables_register_target(&dnat_tg_reg);
Marc Bouchere6869a82000-03-20 06:03:29 +0000258}