blob: dc61d6f76092e701214d52d2f551f2ffb6a81cba [file] [log] [blame]
Denis Vlasenkob933ac12007-04-03 12:09:46 +00001/* Based on ipsvd utilities written by Gerrit Pape <pape@smarden.org>
2 * which are released into public domain by the author.
3 * Homepage: http://smarden.sunsite.dk/ipsvd/
4 *
5 * Copyright (C) 2007 Denis Vlasenko.
6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details.
8 */
9
Denis Vlasenko02fd6682007-04-03 23:23:10 +000010/* Based on ipsvd ipsvd-0.12.1. This tcpsvd accepts all options
11 * which are supported by one from ipsvd-0.12.1, but not all are
12 * functional. See help text at the end of this file for details.
13 *
14 * Code inside "#ifdef SSLSVD" is for sslsvd and is currently unused.
15 *
16 * Output of verbose mode matches original (modulo bugs and
17 * unimplemented stuff). Unnatural splitting of IP and PORT
18 * is retained (personally I prefer one-value "IP:PORT" notation -
19 * it is a natural string representation of struct sockaddr_XX).
20 *
21 * TCPORIGDST{IP,PORT} is busybox-specific addition
22 *
23 * udp server is hacked up by reusing TCP code. It has the following
24 * limitation inherent in Unix DGRAM sockets implementation:
Denis Vlasenko64a15122007-04-04 10:16:15 +000025 * - local IP address is retrieved (using recvmsg voodoo) but
Denis Vlasenko02fd6682007-04-03 23:23:10 +000026 * child's socket is not bound to it (bind cannot be called on
Denis Vlasenko64a15122007-04-04 10:16:15 +000027 * already bound socket). Thus it still can emit outgoing packets
Denis Vlasenkobeaca812007-04-13 16:32:26 +000028 * with wrong source IP...
Denis Vlasenko02fd6682007-04-03 23:23:10 +000029 * - don't know how to retrieve ORIGDST for udp.
30 */
31
32#include <limits.h>
33#include <linux/netfilter_ipv4.h> /* wants <limits.h> */
Denis Vlasenkob933ac12007-04-03 12:09:46 +000034
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000035#include "libbb.h"
Denis Vlasenko02fd6682007-04-03 23:23:10 +000036#include "ipsvd_perhost.h"
37
38#ifdef SSLSVD
39#include "matrixSsl.h"
40#include "ssl_io.h"
41#endif
42
Denis Vlasenkob9256052007-09-28 10:29:17 +000043struct globals {
44 unsigned verbose;
45 unsigned max_per_host;
46 unsigned cur_per_host;
47 unsigned cnum;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +000048 unsigned cmax;
Denis Vlasenkob9256052007-09-28 10:29:17 +000049};
50#define G (*(struct globals*)&bb_common_bufsiz1)
51#define verbose (G.verbose )
52#define max_per_host (G.max_per_host)
53#define cur_per_host (G.cur_per_host)
54#define cnum (G.cnum )
55#define cmax (G.cmax )
56#define INIT_G() \
57 do { \
58 cmax = 30; \
59 } while (0)
60
Denis Vlasenko02fd6682007-04-03 23:23:10 +000061
62static void xsetenv_proto(const char *proto, const char *n, const char *v)
63{
64 putenv(xasprintf("%s%s=%s", proto, n, v));
65}
Denis Vlasenkob933ac12007-04-03 12:09:46 +000066
67static void sig_term_handler(int sig)
68{
69 if (verbose)
70 printf("%s: info: sigterm received, exit\n", applet_name);
71 exit(0);
72}
73
74/* Little bloated, but tries to give accurate info how child exited.
75 * Makes easier to spot segfaulting children etc... */
76static void print_waitstat(unsigned pid, int wstat)
77{
78 unsigned e = 0;
79 const char *cause = "?exit";
80
81 if (WIFEXITED(wstat)) {
82 cause++;
83 e = WEXITSTATUS(wstat);
84 } else if (WIFSIGNALED(wstat)) {
85 cause = "signal";
86 e = WTERMSIG(wstat);
87 }
88 printf("%s: info: end %d %s %d\n", applet_name, pid, cause, e);
89}
90
Denis Vlasenkob933ac12007-04-03 12:09:46 +000091/* Must match getopt32 in main! */
92enum {
93 OPT_c = (1 << 0),
94 OPT_C = (1 << 1),
95 OPT_i = (1 << 2),
96 OPT_x = (1 << 3),
97 OPT_u = (1 << 4),
98 OPT_l = (1 << 5),
99 OPT_E = (1 << 6),
100 OPT_b = (1 << 7),
101 OPT_h = (1 << 8),
102 OPT_p = (1 << 9),
103 OPT_t = (1 << 10),
104 OPT_v = (1 << 11),
105 OPT_V = (1 << 12),
106 OPT_U = (1 << 13), /* from here: sslsvd only */
107 OPT_slash = (1 << 14),
108 OPT_Z = (1 << 15),
109 OPT_K = (1 << 16),
110};
111
112static void connection_status(void)
113{
Denis Vlasenkof87f4952007-08-24 10:27:41 +0000114 /* "only 1 client max" desn't need this */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000115 if (cmax > 1)
116 printf("%s: info: status %u/%u\n", applet_name, cnum, cmax);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000117}
118
119static void sig_child_handler(int sig)
120{
121 int wstat;
122 int pid;
123
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000124 while ((pid = wait_any_nohang(&wstat)) > 0) {
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000125 if (max_per_host)
126 ipsvd_perhost_remove(pid);
127 if (cnum)
128 cnum--;
129 if (verbose)
130 print_waitstat(pid, wstat);
131 }
132 if (verbose)
133 connection_status();
134}
135
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000136int tcpudpsvd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000137int tcpudpsvd_main(int argc, char **argv)
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000138{
139 char *str_c, *str_C, *str_b, *str_t;
140 char *user;
141 struct hcc *hccp;
142 const char *instructs;
143 char *msg_per_host = NULL;
144 unsigned len_per_host = len_per_host; /* gcc */
Denis Vlasenko64a15122007-04-04 10:16:15 +0000145#ifndef SSLSVD
146 struct bb_uidgid_t ugid;
147#endif
148 bool need_hostnames, need_remote_ip, tcp;
149 uint16_t local_port;
150 char *local_hostname = NULL;
151 char *remote_hostname = (char*)""; /* "" used if no -h */
152 char *local_addr = local_addr; /* gcc */
153 char *remote_addr = remote_addr; /* gcc */
154 char *remote_ip = remote_addr; /* gcc */
155 len_and_sockaddr *lsa;
156 len_and_sockaddr local, remote;
157 socklen_t sa_len;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000158 int pid;
159 int sock;
160 int conn;
161 unsigned backlog = 20;
Denis Vlasenko64a15122007-04-04 10:16:15 +0000162
Denis Vlasenkob9256052007-09-28 10:29:17 +0000163 INIT_G();
164
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000165 tcp = (applet_name[0] == 't');
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000166
167 /* 3+ args, -i at most once, -p implies -h, -v is counter */
Denis Vlasenko09196572007-07-21 13:27:44 +0000168 opt_complementary = "-3:i--i:ph:vv";
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000169#ifdef SSLSVD
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000170 getopt32(argv, "+c:C:i:x:u:l:Eb:hpt:vU:/:Z:K:",
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000171 &str_c, &str_C, &instructs, &instructs, &user, &local_hostname,
172 &str_b, &str_t, &ssluser, &root, &cert, &key, &verbose
173 );
174#else
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000175 getopt32(argv, "+c:C:i:x:u:l:Eb:hpt:v",
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000176 &str_c, &str_C, &instructs, &instructs, &user, &local_hostname,
177 &str_b, &str_t, &verbose
178 );
179#endif
180 if (option_mask32 & OPT_c)
181 cmax = xatou_range(str_c, 1, INT_MAX);
182 if (option_mask32 & OPT_C) { /* -C n[:message] */
183 max_per_host = bb_strtou(str_C, &str_C, 10);
184 if (str_C[0]) {
185 if (str_C[0] != ':')
186 bb_show_usage();
187 msg_per_host = str_C + 1;
188 len_per_host = strlen(msg_per_host);
189 }
190 }
191 if (max_per_host > cmax)
192 max_per_host = cmax;
193 if (option_mask32 & OPT_u) {
194 if (!get_uidgid(&ugid, user, 1))
195 bb_error_msg_and_die("unknown user/group: %s", user);
196 }
197 if (option_mask32 & OPT_b)
198 backlog = xatou(str_b);
199#ifdef SSLSVD
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000200 if (option_mask32 & OPT_U) ssluser = optarg;
201 if (option_mask32 & OPT_slash) root = optarg;
202 if (option_mask32 & OPT_Z) cert = optarg;
203 if (option_mask32 & OPT_K) key = optarg;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000204#endif
205 argv += optind;
206 if (!argv[0][0] || LONE_CHAR(argv[0], '0'))
207 argv[0] = (char*)"0.0.0.0";
208
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000209 /* Per-IP flood protection is not thought-out for UDP */
210 if (!tcp)
211 max_per_host = 0;
212
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000213 /* stdout is used for logging, don't buffer */
214 setlinebuf(stdout);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000215 bb_sanitize_stdio(); /* fd# 0,1,2 must be opened */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000216
217 need_hostnames = verbose || !(option_mask32 & OPT_E);
218 need_remote_ip = max_per_host || need_hostnames;
219
220#ifdef SSLSVD
221 sslser = user;
222 client = 0;
223 if ((getuid() == 0) && !(option_mask32 & OPT_u)) {
224 xfunc_exitcode = 100;
225 bb_error_msg_and_die("fatal: -U ssluser must be set when running as root");
226 }
227 if (option_mask32 & OPT_u)
228 if (!uidgid_get(&sslugid, ssluser, 1)) {
229 if (errno) {
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000230 bb_perror_msg_and_die("fatal: cannot get user/group: %s", ssluser);
231 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000232 bb_error_msg_and_die("fatal: unknown user/group '%s'", ssluser);
233 }
234 if (!cert) cert = "./cert.pem";
235 if (!key) key = cert;
236 if (matrixSslOpen() < 0)
237 fatal("cannot initialize ssl");
238 if (matrixSslReadKeys(&keys, cert, key, 0, ca) < 0) {
239 if (client)
240 fatal("cannot read cert, key, or ca file");
241 fatal("cannot read cert or key file");
242 }
243 if (matrixSslNewSession(&ssl, keys, 0, SSL_FLAGS_SERVER) < 0)
244 fatal("cannot create ssl session");
245#endif
246
247 sig_block(SIGCHLD);
248 signal(SIGCHLD, sig_child_handler);
249 signal(SIGTERM, sig_term_handler);
250 signal(SIGPIPE, SIG_IGN);
251
252 if (max_per_host)
253 ipsvd_perhost_init(cmax);
254
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000255 local_port = bb_lookup_port(argv[1], tcp ? "tcp" : "udp", 0);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000256 lsa = xhost2sockaddr(argv[0], local_port);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000257 sock = xsocket(lsa->u.sa.sa_family, tcp ? SOCK_STREAM : SOCK_DGRAM, 0);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000258 setsockopt_reuseaddr(sock);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000259 sa_len = lsa->len; /* I presume sockaddr len stays the same */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000260 xbind(sock, &lsa->u.sa, sa_len);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000261 if (tcp)
262 xlisten(sock, backlog);
263 else /* udp: needed for recv_from_to to work: */
264 socket_want_pktinfo(sock);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000265 /* ndelay_off(sock); - it is the default I think? */
266
267#ifndef SSLSVD
268 if (option_mask32 & OPT_u) {
269 /* drop permissions */
270 xsetgid(ugid.gid);
271 xsetuid(ugid.uid);
272 }
273#endif
274
275 if (verbose) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000276 char *addr = xmalloc_sockaddr2dotted(&lsa->u.sa);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000277 printf("%s: info: listening on %s", applet_name, addr);
278 free(addr);
279#ifndef SSLSVD
280 if (option_mask32 & OPT_u)
281 printf(", uid %u, gid %u",
282 (unsigned)ugid.uid, (unsigned)ugid.gid);
283#endif
284 puts(", starting");
285 }
286
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000287 /* Main accept() loop */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000288
289 again:
290 hccp = NULL;
291
292 while (cnum >= cmax)
293 sig_pause(); /* wait for any signal (expecting SIGCHLD) */
294
295 /* Accept a connection to fd #0 */
296 again1:
297 close(0);
298 again2:
299 sig_unblock(SIGCHLD);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000300 if (tcp) {
Denis Vlasenko64a15122007-04-04 10:16:15 +0000301 remote.len = sa_len;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000302 conn = accept(sock, &remote.u.sa, &remote.len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000303 } else {
Denis Vlasenko1ca332b2007-04-04 17:49:47 +0000304 /* In case recv_from_to won't be able to recover local addr.
Denis Vlasenko64a15122007-04-04 10:16:15 +0000305 * Also sets port - recv_from_to is unable to do it. */
306 local = *lsa;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000307 conn = recv_from_to(sock, NULL, 0, MSG_PEEK, &remote.u.sa, &local.u.sa, sa_len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000308 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000309 sig_block(SIGCHLD);
310 if (conn < 0) {
311 if (errno != EINTR)
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000312 bb_perror_msg(tcp ? "accept" : "recv");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000313 goto again2;
314 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000315 xmove_fd(tcp ? conn : sock, 0);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000316
317 if (max_per_host) {
318 /* Drop connection immediately if cur_per_host > max_per_host
319 * (minimizing load under SYN flood) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000320 remote_ip = xmalloc_sockaddr2dotted_noport(&remote.u.sa);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000321 cur_per_host = ipsvd_perhost_add(remote_ip, max_per_host, &hccp);
322 if (cur_per_host > max_per_host) {
323 /* ipsvd_perhost_add detected that max is exceeded
324 * (and did not store ip in connection table) */
325 free(remote_ip);
326 if (msg_per_host) {
327 /* don't block or test for errors */
328 ndelay_on(0);
329 write(0, msg_per_host, len_per_host);
330 }
331 goto again1;
332 }
333 }
334
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000335 if (!tcp) {
336 /* Voodoo magic: making udp sockets each receive its own
Denis Vlasenko64a15122007-04-04 10:16:15 +0000337 * packets is not trivial, and I still not sure
338 * I do it 100% right.
339 * 1) we have to do it before fork()
340 * 2) order is important - is it right now? */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000341
Denis Vlasenko64a15122007-04-04 10:16:15 +0000342 /* Make plain write/send work for this socket by supplying default
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000343 * destination address. This also restricts incoming packets
344 * to ones coming from this remote IP. */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000345 xconnect(0, &remote.u.sa, sa_len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000346 /* hole? at this point we have no wildcard udp socket...
Denis Vlasenko79468792007-04-04 11:02:55 +0000347 * can this cause clients to get "port unreachable" icmp?
348 * Yup, time window is very small, but it exists (is it?) */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000349 /* Open new non-connected UDP socket for further clients */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000350 sock = xsocket(lsa->u.sa.sa_family, tcp ? SOCK_STREAM : SOCK_DGRAM, 0);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000351 setsockopt_reuseaddr(sock);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000352 xbind(sock, &lsa->u.sa, sa_len);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000353 socket_want_pktinfo(sock);
Denis Vlasenko79468792007-04-04 11:02:55 +0000354
355 /* Doesn't work:
356 * we cannot replace fd #0 - we will lose pending packet
357 * which is already buffered for us! And we cannot use fd #1
358 * instead - it will "intercept" all following packets, but child
Denis Vlasenkof87f4952007-08-24 10:27:41 +0000359 * does not expect data coming *from fd #1*! */
Denis Vlasenko79468792007-04-04 11:02:55 +0000360#if 0
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000361 /* Make it so that local addr is fixed to localp->u.sa
Denis Vlasenko79468792007-04-04 11:02:55 +0000362 * and we don't accidentally accept packets to other local IPs. */
363 /* NB: we possibly bind to the _very_ same_ address & port as the one
364 * already bound in parent! This seems to work in Linux.
365 * (otherwise we can move socket to fd #0 only if bind succeeds) */
366 close(0);
367 set_nport(localp, htons(local_port));
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000368 xmove_fd(xsocket(localp->u.sa.sa_family, SOCK_DGRAM, 0), 0);
Denis Vlasenko79468792007-04-04 11:02:55 +0000369 setsockopt_reuseaddr(0); /* crucial */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000370 xbind(0, &localp->u.sa, localp->len);
Denis Vlasenko79468792007-04-04 11:02:55 +0000371#endif
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000372 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000373
374 pid = fork();
375 if (pid == -1) {
376 bb_perror_msg("fork");
377 goto again;
378 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000379
380
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000381 if (pid != 0) {
382 /* parent */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000383 cnum++;
384 if (verbose)
385 connection_status();
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000386 if (hccp)
387 hccp->pid = pid;
388 goto again;
389 }
390
391 /* Child: prepare env, log, and exec prog */
392
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000393 /* Closing tcp listening socket */
394 if (tcp)
395 close(sock);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000396
Denis Vlasenko64a15122007-04-04 10:16:15 +0000397 if (need_remote_ip)
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000398 remote_addr = xmalloc_sockaddr2dotted(&remote.u.sa);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000399
400 if (need_hostnames) {
401 if (option_mask32 & OPT_h) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000402 remote_hostname = xmalloc_sockaddr2host_noport(&remote.u.sa);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000403 if (!remote_hostname) {
Denis Vlasenko64a15122007-04-04 10:16:15 +0000404 bb_error_msg("warning: cannot look up hostname for %s", remote_addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000405 remote_hostname = (char*)"";
406 }
407 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000408 /* Find out local IP peer connected to.
409 * Errors ignored (I'm not paranoid enough to imagine kernel
410 * which doesn't know local IP). */
Denis Vlasenko64a15122007-04-04 10:16:15 +0000411 if (tcp) {
412 local.len = sa_len;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000413 getsockname(0, &local.u.sa, &local.len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000414 }
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000415 local_addr = xmalloc_sockaddr2dotted(&local.u.sa);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000416 if (!local_hostname) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000417 local_hostname = xmalloc_sockaddr2host_noport(&local.u.sa);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000418 if (!local_hostname)
Denis Vlasenko64a15122007-04-04 10:16:15 +0000419 bb_error_msg_and_die("warning: cannot look up hostname for %s"+9, local_addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000420 }
421 }
422
423 if (verbose) {
424 pid = getpid();
Denis Vlasenko64a15122007-04-04 10:16:15 +0000425 printf("%s: info: pid %u from %s\n", applet_name, pid, remote_addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000426 if (max_per_host)
427 printf("%s: info: concurrency %u %s %u/%u\n",
428 applet_name, pid, remote_ip, cur_per_host, max_per_host);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000429 printf("%s: info: start %u %s:%s :%s:%s\n",
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000430 applet_name, pid,
Denis Vlasenko64a15122007-04-04 10:16:15 +0000431 local_hostname, local_addr,
432 remote_hostname, remote_addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000433 }
434
435 if (!(option_mask32 & OPT_E)) {
436 /* setup ucspi env */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000437 const char *proto = tcp ? "TCP" : "UDP";
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000438
439 /* Extract "original" destination addr:port
440 * from Linux firewall. Useful when you redirect
441 * an outbond connection to local handler, and it needs
442 * to know where it originally tried to connect */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000443 if (tcp && getsockopt(0, SOL_IP, SO_ORIGINAL_DST, &lsa->u.sa, &lsa->len) == 0) {
444 char *addr = xmalloc_sockaddr2dotted(&lsa->u.sa);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000445 xsetenv("TCPORIGDSTADDR", addr);
446 free(addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000447 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000448 xsetenv("PROTO", proto);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000449 xsetenv_proto(proto, "LOCALADDR", local_addr);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000450 xsetenv_proto(proto, "LOCALHOST", local_hostname);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000451 xsetenv_proto(proto, "REMOTEADDR", remote_addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000452 if (option_mask32 & OPT_h) {
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000453 xsetenv_proto(proto, "REMOTEHOST", remote_hostname);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000454 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000455 xsetenv_proto(proto, "REMOTEINFO", "");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000456 /* additional */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000457 if (cur_per_host > 0) /* can not be true for udp */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000458 xsetenv("TCPCONCURRENCY", utoa(cur_per_host));
459 }
460
461 dup2(0, 1);
462
463 signal(SIGTERM, SIG_DFL);
464 signal(SIGPIPE, SIG_DFL);
465 signal(SIGCHLD, SIG_DFL);
466 sig_unblock(SIGCHLD);
467
468 argv += 2;
469#ifdef SSLSVD
470 strcpy(id, utoa(pid);
471 ssl_io(0, argv);
472#else
473 BB_EXECVP(argv[0], argv);
474#endif
475 bb_perror_msg_and_die("exec '%s'", argv[0]);
476}
477
478/*
479tcpsvd [-hpEvv] [-c n] [-C n:msg] [-b n] [-u user] [-l name]
480 [-i dir|-x cdb] [ -t sec] host port prog
481
482tcpsvd creates a TCP/IP socket, binds it to the address host:port,
483and listens on the socket for incoming connections.
484
485On each incoming connection, tcpsvd conditionally runs a program,
486with standard input reading from the socket, and standard output
487writing to the socket, to handle this connection. tcpsvd keeps
488listening on the socket for new connections, and can handle
489multiple connections simultaneously.
490
491tcpsvd optionally checks for special instructions depending
492on the IP address or hostname of the client that initiated
493the connection, see ipsvd-instruct(5).
494
495host
496 host either is a hostname, or a dotted-decimal IP address,
497 or 0. If host is 0, tcpsvd accepts connections to any local
498 IP address.
499 * busybox accepts IPv6 addresses and host:port pairs too
500 In this case second parameter is ignored
501port
502 tcpsvd accepts connections to host:port. port may be a name
503 from /etc/services or a number.
504prog
505 prog consists of one or more arguments. For each connection,
506 tcpsvd normally runs prog, with file descriptor 0 reading from
507 the network, and file descriptor 1 writing to the network.
508 By default it also sets up TCP-related environment variables,
509 see tcp-environ(5)
510-i dir
511 read instructions for handling new connections from the instructions
512 directory dir. See ipsvd-instruct(5) for details.
513 * ignored by busyboxed version
514-x cdb
515 read instructions for handling new connections from the constant database
516 cdb. The constant database normally is created from an instructions
517 directory by running ipsvd-cdb(8).
518 * ignored by busyboxed version
519-t sec
520 timeout. This option only takes effect if the -i option is given.
521 While checking the instructions directory, check the time of last access
522 of the file that matches the clients address or hostname if any, discard
523 and remove the file if it wasn't accessed within the last sec seconds;
524 tcpsvd does not discard or remove a file if the user's write permission
525 is not set, for those files the timeout is disabled. Default is 0,
526 which means that the timeout is disabled.
527 * ignored by busyboxed version
528-l name
529 local hostname. Do not look up the local hostname in DNS, but use name
530 as hostname. This option must be set if tcpsvd listens on port 53
531 to avoid loops.
532-u user[:group]
533 drop permissions. Switch user ID to user's UID, and group ID to user's
534 primary GID after creating and binding to the socket. If user is followed
535 by a colon and a group name, the group ID is switched to the GID of group
536 instead. All supplementary groups are removed.
537-c n
538 concurrency. Handle up to n connections simultaneously. Default is 30.
539 If there are n connections active, tcpsvd defers acceptance of a new
540 connection until an active connection is closed.
541-C n[:msg]
542 per host concurrency. Allow only up to n connections from the same IP
543 address simultaneously. If there are n active connections from one IP
544 address, new incoming connections from this IP address are closed
545 immediately. If n is followed by :msg, the message msg is written
546 to the client if possible, before closing the connection. By default
547 msg is empty. See ipsvd-instruct(5) for supported escape sequences in msg.
548
549 For each accepted connection, the current per host concurrency is
550 available through the environment variable TCPCONCURRENCY. n and msg
551 can be overwritten by ipsvd(7) instructions, see ipsvd-instruct(5).
552 By default tcpsvd doesn't keep track of connections.
553-h
554 Look up the client's hostname in DNS.
555-p
556 paranoid. After looking up the client's hostname in DNS, look up the IP
557 addresses in DNS for that hostname, and forget about the hostname
558 if none of the addresses match the client's IP address. You should
559 set this option if you use hostname based instructions. The -p option
560 implies the -h option.
561 * ignored by busyboxed version
562-b n
563 backlog. Allow a backlog of approximately n TCP SYNs. On some systems n
564 is silently limited. Default is 20.
565-E
566 no special environment. Do not set up TCP-related environment variables.
567-v
568 verbose. Print verbose messsages to standard output.
569-vv
570 more verbose. Print more verbose messages to standard output.
571 * no difference between -v and -vv in busyboxed version
572*/