libipt_REDIRECT.c revision 8115e5425721cd610b6390c3d4c24540773b0520
1/* Shared library add-on to iptables to add redirect support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
7#include <iptables.h>
8#include <linux/netfilter_ipv4/ip_tables.h>
9#include <linux/netfilter_ipv4/ip_nat_rule.h>
10
11/* Function which prints out usage message. */
12static void
13help(void)
14{
15	printf(
16"REDIRECT v%s options:\n"
17" --to-ports <port>[-<port>]\n"
18"				Port (range) to map to.\n\n",
19IPTABLES_VERSION);
20}
21
22static struct option opts[] = {
23	{ "to-ports", 1, 0, '1' },
24	{ 0 }
25};
26
27/* Initialize the target. */
28static void
29init(struct ipt_entry_target *t, unsigned int *nfcache)
30{
31	struct ip_nat_multi_range *mr = (struct ip_nat_multi_range *)t->data;
32
33	/* Actually, it's 0, but it's ignored at the moment. */
34	mr->rangesize = 1;
35
36}
37
38/* Parses ports */
39static void
40parse_ports(const char *arg, struct ip_nat_multi_range *mr)
41{
42	const char *dash;
43	int port;
44
45	mr->range[0].flags |= IP_NAT_RANGE_PROTO_SPECIFIED;
46
47	port = atoi(arg);
48	if (port == 0 || port > 65535)
49		exit_error(PARAMETER_PROBLEM, "Port `%s' not valid\n", arg);
50
51	dash = strchr(arg, '-');
52	if (!dash) {
53		mr->range[0].min.tcp.port
54			= mr->range[0].max.tcp.port
55			= htons(port);
56	} else {
57		int maxport;
58
59		maxport = atoi(dash + 1);
60		if (maxport == 0 || maxport > 65535)
61			exit_error(PARAMETER_PROBLEM,
62				   "Port `%s' not valid\n", dash+1);
63		if (maxport < port)
64			/* People are stupid. */
65			exit_error(PARAMETER_PROBLEM,
66				   "Port range `%s' funky\n", arg);
67		mr->range[0].min.tcp.port = htons(port);
68		mr->range[0].max.tcp.port = htons(maxport);
69	}
70}
71
72/* Function which parses command options; returns true if it
73   ate an option */
74static int
75parse(int c, char **argv, int invert, unsigned int *flags,
76      const struct ipt_entry *entry,
77      struct ipt_entry_target **target)
78{
79	struct ip_nat_multi_range *mr
80		= (struct ip_nat_multi_range *)(*target)->data;
81	int portok;
82
83	if (entry->ip.proto == IPPROTO_TCP
84	    || entry->ip.proto == IPPROTO_UDP)
85		portok = 1;
86	else
87		portok = 0;
88
89	switch (c) {
90	case '1':
91		if (!portok)
92			exit_error(PARAMETER_PROBLEM,
93				   "Need TCP or UDP with port specification");
94
95		if (check_inverse(optarg, &invert, NULL, 0))
96			exit_error(PARAMETER_PROBLEM,
97				   "Unexpected `!' after --to-ports");
98
99		parse_ports(optarg, mr);
100		return 1;
101
102	default:
103		return 0;
104	}
105}
106
107/* Final check; don't care. */
108static void final_check(unsigned int flags)
109{
110}
111
112/* Prints out the targinfo. */
113static void
114print(const struct ipt_ip *ip,
115      const struct ipt_entry_target *target,
116      int numeric)
117{
118	struct ip_nat_multi_range *mr
119		= (struct ip_nat_multi_range *)target->data;
120	struct ip_nat_range *r = &mr->range[0];
121
122	if (r->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
123		printf("redir ports ");
124		printf("%hu", ntohs(r->min.tcp.port));
125		if (r->max.tcp.port != r->min.tcp.port)
126			printf("-%hu", ntohs(r->max.tcp.port));
127		printf(" ");
128	}
129}
130
131/* Saves the union ipt_targinfo in parsable form to stdout. */
132static void
133save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
134{
135	struct ip_nat_multi_range *mr
136		= (struct ip_nat_multi_range *)target->data;
137	struct ip_nat_range *r = &mr->range[0];
138
139	if (r->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
140		printf("--to-ports ");
141		printf("%hu", ntohs(r->min.tcp.port));
142		if (r->max.tcp.port != r->min.tcp.port)
143			printf("-%hu", ntohs(r->max.tcp.port));
144		printf(" ");
145	}
146}
147
148static struct iptables_target redir = {
149	.next		= NULL,
150	.name		= "REDIRECT",
151	.version	= IPTABLES_VERSION,
152	.size		= IPT_ALIGN(sizeof(struct ip_nat_multi_range)),
153	.userspacesize	= IPT_ALIGN(sizeof(struct ip_nat_multi_range)),
154	.help		= &help,
155	.init		= &init,
156 	.parse		= &parse,
157	.final_check	= &final_check,
158	.print		= &print,
159	.save		= &save,
160	.extra_opts	= opts
161};
162
163void _init(void)
164{
165	register_target(&redir);
166}
167