Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / iptables / extensions / libipt_MASQUERADE.c
blobc24bb32135aa87a0488dc94677e71042116ee4d4
1 /* Shared library add-on to iptables to add masquerade 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/nf_nat.h>
11 /* Function which prints out usage message. */
12 static void
13 help(void)
15 printf(
16 "MASQUERADE v%s options:\n"
17 " --to-ports <port>[-<port>]\n"
18 " Port (range) to map to.\n"
19 " --random\n"
20 " Randomize source port.\n"
21 "\n"
23 IPTABLES_VERSION);
26 static struct option opts[] = {
27 { "to-ports", 1, 0, '1' },
28 { "random", 0, 0, '2' },
29 { 0 }
32 /* Initialize the target. */
33 static void
34 init(struct ipt_entry_target *t, unsigned int *nfcache)
36 struct ip_nat_multi_range *mr = (struct ip_nat_multi_range *)t->data;
38 /* Actually, it's 0, but it's ignored at the moment. */
39 mr->rangesize = 1;
43 /* Parses ports */
44 static void
45 parse_ports(const char *arg, struct ip_nat_multi_range *mr)
47 const char *dash;
48 int port;
50 mr->range[0].flags |= IP_NAT_RANGE_PROTO_SPECIFIED;
52 port = atoi(arg);
53 if (port <= 0 || port > 65535)
54 exit_error(PARAMETER_PROBLEM, "Port `%s' not valid\n", arg);
56 dash = strchr(arg, '-');
57 if (!dash) {
58 mr->range[0].min.tcp.port
59 = mr->range[0].max.tcp.port
60 = htons(port);
61 } else {
62 int maxport;
64 maxport = atoi(dash + 1);
65 if (maxport == 0 || maxport > 65535)
66 exit_error(PARAMETER_PROBLEM,
67 "Port `%s' not valid\n", dash+1);
68 if (maxport < port)
69 /* People are stupid. Present reader excepted. */
70 exit_error(PARAMETER_PROBLEM,
71 "Port range `%s' funky\n", arg);
72 mr->range[0].min.tcp.port = htons(port);
73 mr->range[0].max.tcp.port = htons(maxport);
77 /* Function which parses command options; returns true if it
78 ate an option */
79 static int
80 parse(int c, char **argv, int invert, unsigned int *flags,
81 const struct ipt_entry *entry,
82 struct ipt_entry_target **target)
84 int portok;
85 struct ip_nat_multi_range *mr
86 = (struct ip_nat_multi_range *)(*target)->data;
88 if (entry->ip.proto == IPPROTO_TCP
89 || entry->ip.proto == IPPROTO_UDP
90 || entry->ip.proto == IPPROTO_ICMP)
91 portok = 1;
92 else
93 portok = 0;
95 switch (c) {
96 case '1':
97 if (!portok)
98 exit_error(PARAMETER_PROBLEM,
99 "Need TCP or UDP with port specification");
101 if (check_inverse(optarg, &invert, NULL, 0))
102 exit_error(PARAMETER_PROBLEM,
103 "Unexpected `!' after --to-ports");
105 parse_ports(optarg, mr);
106 return 1;
108 case '2':
109 mr->range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
110 return 1;
112 default:
113 return 0;
117 /* Final check; don't care. */
118 static void final_check(unsigned int flags)
122 /* Prints out the targinfo. */
123 static void
124 print(const struct ipt_ip *ip,
125 const struct ipt_entry_target *target,
126 int numeric)
128 struct ip_nat_multi_range *mr
129 = (struct ip_nat_multi_range *)target->data;
130 struct ip_nat_range *r = &mr->range[0];
132 if (r->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
133 printf("masq ports: ");
134 printf("%hu", ntohs(r->min.tcp.port));
135 if (r->max.tcp.port != r->min.tcp.port)
136 printf("-%hu", ntohs(r->max.tcp.port));
137 printf(" ");
140 if (r->flags & IP_NAT_RANGE_PROTO_RANDOM)
141 printf("random ");
144 /* Saves the union ipt_targinfo in parsable form to stdout. */
145 static void
146 save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
148 struct ip_nat_multi_range *mr
149 = (struct ip_nat_multi_range *)target->data;
150 struct ip_nat_range *r = &mr->range[0];
152 if (r->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
153 printf("--to-ports %hu", ntohs(r->min.tcp.port));
154 if (r->max.tcp.port != r->min.tcp.port)
155 printf("-%hu", ntohs(r->max.tcp.port));
156 printf(" ");
159 if (r->flags & IP_NAT_RANGE_PROTO_RANDOM)
160 printf("--random ");
163 static struct iptables_target masq = { NULL,
164 .name = "MASQUERADE",
165 .version = IPTABLES_VERSION,
166 .size = IPT_ALIGN(sizeof(struct ip_nat_multi_range)),
167 .userspacesize = IPT_ALIGN(sizeof(struct ip_nat_multi_range)),
168 .help = &help,
169 .init = &init,
170 .parse = &parse,
171 .final_check = &final_check,
172 .print = &print,
173 .save = &save,
174 .extra_opts = opts
177 void _init(void)
179 register_target(&masq);