blob: 3df6a98d8cd377e23979a8be8f1d8cfc0850b59f [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 *
Denis Vlasenkod18f52b2008-03-02 12:53:15 +00005 * Copyright (C) 2007 Denys Vlasenko.
Denis Vlasenkob933ac12007-04-03 12:09:46 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenkob933ac12007-04-03 12:09:46 +00008 */
9
Denis Vlasenko4866e902008-03-17 09:17:27 +000010/* Based on ipsvd-0.12.1. This tcpsvd accepts all options
Denis Vlasenko02fd6682007-04-03 23:23:10 +000011 * 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 *
Denis Vlasenkoaefed942008-03-17 08:35:44 +000016 * Busybox version exports TCPLOCALADDR instead of
17 * TCPLOCALIP + TCPLOCALPORT pair. ADDR more closely matches reality
18 * (which is "struct sockaddr_XXX". Port is not a separate entity,
19 * it's just a part of (AF_INET[6]) sockaddr!).
Denis Vlasenko02fd6682007-04-03 23:23:10 +000020 *
Denis Vlasenkoaefed942008-03-17 08:35:44 +000021 * TCPORIGDSTADDR is Busybox-specific addition.
Denis Vlasenko02fd6682007-04-03 23:23:10 +000022 *
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
Pere Orga5bc8c002011-04-11 03:29:49 +020032//usage:#define tcpsvd_trivial_usage
33//usage: "[-hEv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] IP PORT PROG"
34/* with not-implemented options: */
35/* //usage: "[-hpEvv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] [-i DIR|-x CDB] [-t SEC] IP PORT PROG" */
36//usage:#define tcpsvd_full_usage "\n\n"
37//usage: "Create TCP socket, bind to IP:PORT and listen\n"
38//usage: "for incoming connection. Run PROG for each connection.\n"
Denys Vlasenko4abcb8b2011-07-25 16:35:44 +020039//usage: "\n IP IP to listen on, 0 = all"
Pere Orga5bc8c002011-04-11 03:29:49 +020040//usage: "\n PORT Port to listen on"
41//usage: "\n PROG ARGS Program to run"
42//usage: "\n -l NAME Local hostname (else looks up local hostname in DNS)"
43//usage: "\n -u USER[:GRP] Change to user/group after bind"
44//usage: "\n -c N Handle up to N connections simultaneously"
45//usage: "\n -b N Allow a backlog of approximately N TCP SYNs"
Denys Vlasenko4abcb8b2011-07-25 16:35:44 +020046//usage: "\n -C N[:MSG] Allow only up to N connections from the same IP"
Pere Orga5bc8c002011-04-11 03:29:49 +020047//usage: "\n New connections from this IP address are closed"
48//usage: "\n immediately. MSG is written to the peer before close"
49//usage: "\n -h Look up peer's hostname"
50//usage: "\n -E Don't set up environment variables"
51//usage: "\n -v Verbose"
52//usage:
53//usage:#define udpsvd_trivial_usage
54//usage: "[-hEv] [-c N] [-u USER] [-l NAME] IP PORT PROG"
55//usage:#define udpsvd_full_usage "\n\n"
56//usage: "Create UDP socket, bind to IP:PORT and wait\n"
57//usage: "for incoming packets. Run PROG for each packet,\n"
58//usage: "redirecting all further packets with same peer ip:port to it.\n"
Denys Vlasenko4abcb8b2011-07-25 16:35:44 +020059//usage: "\n IP IP to listen on, 0 = all"
Pere Orga5bc8c002011-04-11 03:29:49 +020060//usage: "\n PORT Port to listen on"
61//usage: "\n PROG ARGS Program to run"
62//usage: "\n -l NAME Local hostname (else looks up local hostname in DNS)"
63//usage: "\n -u USER[:GRP] Change to user/group after bind"
64//usage: "\n -c N Handle up to N connections simultaneously"
65//usage: "\n -h Look up peer's hostname"
66//usage: "\n -E Don't set up environment variables"
67//usage: "\n -v Verbose"
68
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000069#include "libbb.h"
Jeremie Koenig2ea12d82010-05-27 15:46:25 +020070
Denis Vlasenko165f5b32008-03-31 20:30:38 +000071/* Wants <limits.h> etc, thus included after libbb.h: */
Jeremie Koenig2ea12d82010-05-27 15:46:25 +020072#ifdef __linux__
Denis Vlasenkoc0cd9f22008-06-07 12:23:44 +000073#include <linux/types.h> /* for __be32 etc */
Denis Vlasenko165f5b32008-03-31 20:30:38 +000074#include <linux/netfilter_ipv4.h>
Jeremie Koenig2ea12d82010-05-27 15:46:25 +020075#endif
Denis Vlasenko165f5b32008-03-31 20:30:38 +000076
Denis Vlasenko4866e902008-03-17 09:17:27 +000077// TODO: move into this file:
78#include "tcpudp_perhost.h"
Denis Vlasenko02fd6682007-04-03 23:23:10 +000079
80#ifdef SSLSVD
81#include "matrixSsl.h"
82#include "ssl_io.h"
83#endif
84
Denis Vlasenkob9256052007-09-28 10:29:17 +000085struct globals {
86 unsigned verbose;
87 unsigned max_per_host;
88 unsigned cur_per_host;
89 unsigned cnum;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +000090 unsigned cmax;
Denis Vlasenkoaefed942008-03-17 08:35:44 +000091 char **env_cur;
92 char *env_var[1]; /* actually bigger */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010093} FIX_ALIASING;
Denis Vlasenkob9256052007-09-28 10:29:17 +000094#define G (*(struct globals*)&bb_common_bufsiz1)
95#define verbose (G.verbose )
96#define max_per_host (G.max_per_host)
97#define cur_per_host (G.cur_per_host)
98#define cnum (G.cnum )
99#define cmax (G.cmax )
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000100#define env_cur (G.env_cur )
101#define env_var (G.env_var )
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000102#define INIT_G() do { \
103 cmax = 30; \
104 env_cur = &env_var[0]; \
105} while (0)
Denis Vlasenkob9256052007-09-28 10:29:17 +0000106
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000107
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000108/* We have to be careful about leaking memory in repeated setenv's */
109static void xsetenv_plain(const char *n, const char *v)
110{
111 char *var = xasprintf("%s=%s", n, v);
112 *env_cur++ = var;
113 putenv(var);
114}
115
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000116static void xsetenv_proto(const char *proto, const char *n, const char *v)
117{
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000118 char *var = xasprintf("%s%s=%s", proto, n, v);
119 *env_cur++ = var;
120 putenv(var);
121}
122
123static void undo_xsetenv(void)
124{
125 char **pp = env_cur = &env_var[0];
126 while (*pp) {
127 char *var = *pp;
Denys Vlasenkodd8adde2010-06-24 05:00:50 +0200128 bb_unsetenv_and_free(var);
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000129 *pp++ = NULL;
130 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000131}
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000132
133static void sig_term_handler(int sig)
134{
135 if (verbose)
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000136 bb_error_msg("got signal %u, exit", sig);
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000137 kill_myself_with_sig(sig);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000138}
139
140/* Little bloated, but tries to give accurate info how child exited.
141 * Makes easier to spot segfaulting children etc... */
142static void print_waitstat(unsigned pid, int wstat)
143{
144 unsigned e = 0;
145 const char *cause = "?exit";
146
147 if (WIFEXITED(wstat)) {
148 cause++;
149 e = WEXITSTATUS(wstat);
150 } else if (WIFSIGNALED(wstat)) {
151 cause = "signal";
152 e = WTERMSIG(wstat);
153 }
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000154 bb_error_msg("end %d %s %d", pid, cause, e);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000155}
156
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000157/* Must match getopt32 in main! */
158enum {
159 OPT_c = (1 << 0),
160 OPT_C = (1 << 1),
161 OPT_i = (1 << 2),
162 OPT_x = (1 << 3),
163 OPT_u = (1 << 4),
164 OPT_l = (1 << 5),
165 OPT_E = (1 << 6),
166 OPT_b = (1 << 7),
167 OPT_h = (1 << 8),
168 OPT_p = (1 << 9),
169 OPT_t = (1 << 10),
170 OPT_v = (1 << 11),
171 OPT_V = (1 << 12),
172 OPT_U = (1 << 13), /* from here: sslsvd only */
173 OPT_slash = (1 << 14),
174 OPT_Z = (1 << 15),
175 OPT_K = (1 << 16),
176};
177
178static void connection_status(void)
179{
Denis Vlasenkof87f4952007-08-24 10:27:41 +0000180 /* "only 1 client max" desn't need this */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000181 if (cmax > 1)
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000182 bb_error_msg("status %u/%u", cnum, cmax);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000183}
184
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000185static void sig_child_handler(int sig UNUSED_PARAM)
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000186{
187 int wstat;
Denis Vlasenko3854c5d2008-11-06 22:39:57 +0000188 pid_t pid;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000189
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000190 while ((pid = wait_any_nohang(&wstat)) > 0) {
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000191 if (max_per_host)
192 ipsvd_perhost_remove(pid);
193 if (cnum)
194 cnum--;
195 if (verbose)
196 print_waitstat(pid, wstat);
197 }
198 if (verbose)
199 connection_status();
200}
201
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000202int tcpudpsvd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000203int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000204{
Denis Vlasenko1d426652008-03-17 09:09:09 +0000205 char *str_C, *str_t;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000206 char *user;
207 struct hcc *hccp;
208 const char *instructs;
209 char *msg_per_host = NULL;
210 unsigned len_per_host = len_per_host; /* gcc */
Denis Vlasenko64a15122007-04-04 10:16:15 +0000211#ifndef SSLSVD
212 struct bb_uidgid_t ugid;
213#endif
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000214 bool tcp;
Denis Vlasenko64a15122007-04-04 10:16:15 +0000215 uint16_t local_port;
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000216 char *preset_local_hostname = NULL;
217 char *remote_hostname = remote_hostname; /* for compiler */
218 char *remote_addr = remote_addr; /* for compiler */
Denis Vlasenko64a15122007-04-04 10:16:15 +0000219 len_and_sockaddr *lsa;
220 len_and_sockaddr local, remote;
221 socklen_t sa_len;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000222 int pid;
223 int sock;
224 int conn;
225 unsigned backlog = 20;
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200226 unsigned opts;
Denis Vlasenko64a15122007-04-04 10:16:15 +0000227
Denis Vlasenkob9256052007-09-28 10:29:17 +0000228 INIT_G();
229
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000230 tcp = (applet_name[0] == 't');
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000231
Denis Vlasenko1d426652008-03-17 09:09:09 +0000232 /* 3+ args, -i at most once, -p implies -h, -v is counter, -b N, -c N */
233 opt_complementary = "-3:i--i:ph:vv:b+:c+";
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000234#ifdef SSLSVD
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200235 opts = getopt32(argv, "+c:C:i:x:u:l:Eb:hpt:vU:/:Z:K:",
Denis Vlasenko1d426652008-03-17 09:09:09 +0000236 &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
237 &backlog, &str_t, &ssluser, &root, &cert, &key, &verbose
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000238 );
239#else
Denis Vlasenko1d426652008-03-17 09:09:09 +0000240 /* "+": stop on first non-option */
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200241 opts = getopt32(argv, "+c:C:i:x:u:l:Eb:hpt:v",
Denis Vlasenko1d426652008-03-17 09:09:09 +0000242 &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
243 &backlog, &str_t, &verbose
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000244 );
245#endif
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200246 if (opts & OPT_C) { /* -C n[:message] */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000247 max_per_host = bb_strtou(str_C, &str_C, 10);
248 if (str_C[0]) {
249 if (str_C[0] != ':')
250 bb_show_usage();
251 msg_per_host = str_C + 1;
252 len_per_host = strlen(msg_per_host);
253 }
254 }
255 if (max_per_host > cmax)
256 max_per_host = cmax;
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200257 if (opts & OPT_u) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +0000258 xget_uidgid(&ugid, user);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000259 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000260#ifdef SSLSVD
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200261 if (opts & OPT_U) ssluser = optarg;
262 if (opts & OPT_slash) root = optarg;
263 if (opts & OPT_Z) cert = optarg;
264 if (opts & OPT_K) key = optarg;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000265#endif
266 argv += optind;
267 if (!argv[0][0] || LONE_CHAR(argv[0], '0'))
268 argv[0] = (char*)"0.0.0.0";
269
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000270 /* Per-IP flood protection is not thought-out for UDP */
271 if (!tcp)
272 max_per_host = 0;
273
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000274 bb_sanitize_stdio(); /* fd# 0,1,2 must be opened */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000275
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000276#ifdef SSLSVD
277 sslser = user;
278 client = 0;
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200279 if ((getuid() == 0) && !(opts & OPT_u)) {
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000280 xfunc_exitcode = 100;
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100281 bb_error_msg_and_die(bb_msg_you_must_be_root);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000282 }
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200283 if (opts & OPT_u)
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000284 if (!uidgid_get(&sslugid, ssluser, 1)) {
285 if (errno) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +0000286 bb_perror_msg_and_die("can't get user/group: %s", ssluser);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000287 }
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +0000288 bb_error_msg_and_die("unknown user/group %s", ssluser);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000289 }
290 if (!cert) cert = "./cert.pem";
291 if (!key) key = cert;
292 if (matrixSslOpen() < 0)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100293 fatal("can't initialize ssl");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000294 if (matrixSslReadKeys(&keys, cert, key, 0, ca) < 0) {
295 if (client)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100296 fatal("can't read cert, key, or ca file");
297 fatal("can't read cert or key file");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000298 }
299 if (matrixSslNewSession(&ssl, keys, 0, SSL_FLAGS_SERVER) < 0)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100300 fatal("can't create ssl session");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000301#endif
302
303 sig_block(SIGCHLD);
304 signal(SIGCHLD, sig_child_handler);
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000305 bb_signals(BB_FATAL_SIGS, sig_term_handler);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000306 signal(SIGPIPE, SIG_IGN);
307
308 if (max_per_host)
309 ipsvd_perhost_init(cmax);
310
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000311 local_port = bb_lookup_port(argv[1], tcp ? "tcp" : "udp", 0);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000312 lsa = xhost2sockaddr(argv[0], local_port);
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000313 argv += 2;
314
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000315 sock = xsocket(lsa->u.sa.sa_family, tcp ? SOCK_STREAM : SOCK_DGRAM, 0);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000316 setsockopt_reuseaddr(sock);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000317 sa_len = lsa->len; /* I presume sockaddr len stays the same */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000318 xbind(sock, &lsa->u.sa, sa_len);
Denys Vlasenko16635cc2009-06-13 22:49:08 +0200319 if (tcp) {
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000320 xlisten(sock, backlog);
Denys Vlasenko16635cc2009-06-13 22:49:08 +0200321 close_on_exec_on(sock);
322 } else { /* udp: needed for recv_from_to to work: */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000323 socket_want_pktinfo(sock);
Denys Vlasenko16635cc2009-06-13 22:49:08 +0200324 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000325 /* ndelay_off(sock); - it is the default I think? */
326
327#ifndef SSLSVD
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200328 if (opts & OPT_u) {
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000329 /* drop permissions */
330 xsetgid(ugid.gid);
331 xsetuid(ugid.uid);
332 }
333#endif
334
335 if (verbose) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000336 char *addr = xmalloc_sockaddr2dotted(&lsa->u.sa);
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200337 if (opts & OPT_u)
338 bb_error_msg("listening on %s, starting, uid %u, gid %u", addr,
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000339 (unsigned)ugid.uid, (unsigned)ugid.gid);
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200340 else
341 bb_error_msg("listening on %s, starting", addr);
342 free(addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000343 }
344
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000345 /* Main accept() loop */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000346
347 again:
348 hccp = NULL;
349
350 while (cnum >= cmax)
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000351 wait_for_any_sig(); /* expecting SIGCHLD */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000352
353 /* Accept a connection to fd #0 */
354 again1:
355 close(0);
356 again2:
357 sig_unblock(SIGCHLD);
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000358 local.len = remote.len = sa_len;
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000359 if (tcp) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000360 conn = accept(sock, &remote.u.sa, &remote.len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000361 } else {
Denis Vlasenko1ca332b2007-04-04 17:49:47 +0000362 /* In case recv_from_to won't be able to recover local addr.
Denis Vlasenko64a15122007-04-04 10:16:15 +0000363 * Also sets port - recv_from_to is unable to do it. */
364 local = *lsa;
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000365 conn = recv_from_to(sock, NULL, 0, MSG_PEEK,
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000366 &remote.u.sa, &local.u.sa, sa_len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000367 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000368 sig_block(SIGCHLD);
369 if (conn < 0) {
370 if (errno != EINTR)
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000371 bb_perror_msg(tcp ? "accept" : "recv");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000372 goto again2;
373 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000374 xmove_fd(tcp ? conn : sock, 0);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000375
376 if (max_per_host) {
377 /* Drop connection immediately if cur_per_host > max_per_host
378 * (minimizing load under SYN flood) */
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000379 remote_addr = xmalloc_sockaddr2dotted_noport(&remote.u.sa);
380 cur_per_host = ipsvd_perhost_add(remote_addr, max_per_host, &hccp);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000381 if (cur_per_host > max_per_host) {
382 /* ipsvd_perhost_add detected that max is exceeded
383 * (and did not store ip in connection table) */
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000384 free(remote_addr);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000385 if (msg_per_host) {
386 /* don't block or test for errors */
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000387 send(0, msg_per_host, len_per_host, MSG_DONTWAIT);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000388 }
389 goto again1;
390 }
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000391 /* NB: remote_addr is not leaked, it is stored in conn table */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000392 }
393
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000394 if (!tcp) {
395 /* Voodoo magic: making udp sockets each receive its own
Denis Vlasenko64a15122007-04-04 10:16:15 +0000396 * packets is not trivial, and I still not sure
397 * I do it 100% right.
398 * 1) we have to do it before fork()
399 * 2) order is important - is it right now? */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000400
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000401 /* Open new non-connected UDP socket for further clients... */
402 sock = xsocket(lsa->u.sa.sa_family, SOCK_DGRAM, 0);
403 setsockopt_reuseaddr(sock);
404 /* Make plain write/send work for old socket by supplying default
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000405 * destination address. This also restricts incoming packets
406 * to ones coming from this remote IP. */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000407 xconnect(0, &remote.u.sa, sa_len);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000408 /* hole? at this point we have no wildcard udp socket...
Denis Vlasenko79468792007-04-04 11:02:55 +0000409 * can this cause clients to get "port unreachable" icmp?
410 * Yup, time window is very small, but it exists (is it?) */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000411 /* ..."open new socket", continued */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000412 xbind(sock, &lsa->u.sa, sa_len);
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000413 socket_want_pktinfo(sock);
Denis Vlasenko79468792007-04-04 11:02:55 +0000414
415 /* Doesn't work:
416 * we cannot replace fd #0 - we will lose pending packet
417 * which is already buffered for us! And we cannot use fd #1
418 * instead - it will "intercept" all following packets, but child
Denis Vlasenkof87f4952007-08-24 10:27:41 +0000419 * does not expect data coming *from fd #1*! */
Denis Vlasenko79468792007-04-04 11:02:55 +0000420#if 0
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000421 /* Make it so that local addr is fixed to localp->u.sa
Denis Vlasenko79468792007-04-04 11:02:55 +0000422 * and we don't accidentally accept packets to other local IPs. */
423 /* NB: we possibly bind to the _very_ same_ address & port as the one
424 * already bound in parent! This seems to work in Linux.
425 * (otherwise we can move socket to fd #0 only if bind succeeds) */
426 close(0);
Denys Vlasenkoca183112011-04-07 17:52:20 +0200427 set_nport(&localp->u.sa, htons(local_port));
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000428 xmove_fd(xsocket(localp->u.sa.sa_family, SOCK_DGRAM, 0), 0);
Denis Vlasenko79468792007-04-04 11:02:55 +0000429 setsockopt_reuseaddr(0); /* crucial */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000430 xbind(0, &localp->u.sa, localp->len);
Denis Vlasenko79468792007-04-04 11:02:55 +0000431#endif
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000432 }
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000433
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000434 pid = vfork();
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000435 if (pid == -1) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000436 bb_perror_msg("vfork");
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000437 goto again;
438 }
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000439
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000440 if (pid != 0) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000441 /* Parent */
Denis Vlasenko02fd6682007-04-03 23:23:10 +0000442 cnum++;
443 if (verbose)
444 connection_status();
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000445 if (hccp)
446 hccp->pid = pid;
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000447 /* clean up changes done by vforked child */
448 undo_xsetenv();
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000449 goto again;
450 }
451
452 /* Child: prepare env, log, and exec prog */
453
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000454 { /* vfork alert! every xmalloc in this block should be freed! */
455 char *local_hostname = local_hostname; /* for compiler */
456 char *local_addr = NULL;
457 char *free_me0 = NULL;
458 char *free_me1 = NULL;
459 char *free_me2 = NULL;
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000460
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200461 if (verbose || !(opts & OPT_E)) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000462 if (!max_per_host) /* remote_addr is not yet known */
463 free_me0 = remote_addr = xmalloc_sockaddr2dotted(&remote.u.sa);
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200464 if (opts & OPT_h) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000465 free_me1 = remote_hostname = xmalloc_sockaddr2host_noport(&remote.u.sa);
466 if (!remote_hostname) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100467 bb_error_msg("can't look up hostname for %s", remote_addr);
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000468 remote_hostname = remote_addr;
469 }
470 }
471 /* Find out local IP peer connected to.
472 * Errors ignored (I'm not paranoid enough to imagine kernel
473 * which doesn't know local IP). */
474 if (tcp)
475 getsockname(0, &local.u.sa, &local.len);
476 /* else: for UDP it is done earlier by parent */
477 local_addr = xmalloc_sockaddr2dotted(&local.u.sa);
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200478 if (opts & OPT_h) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000479 local_hostname = preset_local_hostname;
480 if (!local_hostname) {
481 free_me2 = local_hostname = xmalloc_sockaddr2host_noport(&local.u.sa);
482 if (!local_hostname)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100483 bb_error_msg_and_die("can't look up hostname for %s", local_addr);
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000484 }
485 /* else: local_hostname is not NULL, but is NOT malloced! */
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000486 }
487 }
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000488 if (verbose) {
489 pid = getpid();
490 if (max_per_host) {
491 bb_error_msg("concurrency %s %u/%u",
492 remote_addr,
493 cur_per_host, max_per_host);
494 }
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200495 bb_error_msg((opts & OPT_h)
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000496 ? "start %u %s-%s (%s-%s)"
497 : "start %u %s-%s",
498 pid,
499 local_addr, remote_addr,
500 local_hostname, remote_hostname);
Denis Vlasenko64a15122007-04-04 10:16:15 +0000501 }
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000502
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200503 if (!(opts & OPT_E)) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000504 /* setup ucspi env */
505 const char *proto = tcp ? "TCP" : "UDP";
506
Jeremie Koenig2ea12d82010-05-27 15:46:25 +0200507#ifdef SO_ORIGINAL_DST
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000508 /* Extract "original" destination addr:port
509 * from Linux firewall. Useful when you redirect
510 * an outbond connection to local handler, and it needs
511 * to know where it originally tried to connect */
512 if (tcp && getsockopt(0, SOL_IP, SO_ORIGINAL_DST, &local.u.sa, &local.len) == 0) {
513 char *addr = xmalloc_sockaddr2dotted(&local.u.sa);
514 xsetenv_plain("TCPORIGDSTADDR", addr);
515 free(addr);
516 }
Jeremie Koenig2ea12d82010-05-27 15:46:25 +0200517#endif
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000518 xsetenv_plain("PROTO", proto);
519 xsetenv_proto(proto, "LOCALADDR", local_addr);
520 xsetenv_proto(proto, "REMOTEADDR", remote_addr);
Denys Vlasenkod6513cf2009-07-19 23:07:13 +0200521 if (opts & OPT_h) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000522 xsetenv_proto(proto, "LOCALHOST", local_hostname);
523 xsetenv_proto(proto, "REMOTEHOST", remote_hostname);
524 }
525 //compat? xsetenv_proto(proto, "REMOTEINFO", "");
526 /* additional */
527 if (cur_per_host > 0) /* can not be true for udp */
528 xsetenv_plain("TCPCONCURRENCY", utoa(cur_per_host));
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000529 }
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000530 free(local_addr);
531 free(free_me0);
532 free(free_me1);
533 free(free_me2);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000534 }
535
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000536 xdup2(0, 1);
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000537
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000538 signal(SIGPIPE, SIG_DFL); /* this one was SIG_IGNed */
539 /* Non-ignored signals revert to SIG_DFL on exec anyway */
540 /*signal(SIGCHLD, SIG_DFL);*/
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000541 sig_unblock(SIGCHLD);
542
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000543#ifdef SSLSVD
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000544 strcpy(id, utoa(pid));
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000545 ssl_io(0, argv);
Denys Vlasenko41ddd9f2010-06-25 01:46:53 +0200546 bb_perror_msg_and_die("can't execute '%s'", argv[0]);
Pascal Bellard21e8e8d2010-07-04 00:57:03 +0200547#else
548 BB_EXECVP_or_die(argv);
549#endif
Denis Vlasenkob933ac12007-04-03 12:09:46 +0000550}
551
552/*
553tcpsvd [-hpEvv] [-c n] [-C n:msg] [-b n] [-u user] [-l name]
554 [-i dir|-x cdb] [ -t sec] host port prog
555
556tcpsvd creates a TCP/IP socket, binds it to the address host:port,
557and listens on the socket for incoming connections.
558
559On each incoming connection, tcpsvd conditionally runs a program,
560with standard input reading from the socket, and standard output
561writing to the socket, to handle this connection. tcpsvd keeps
562listening on the socket for new connections, and can handle
563multiple connections simultaneously.
564
565tcpsvd optionally checks for special instructions depending
566on the IP address or hostname of the client that initiated
567the connection, see ipsvd-instruct(5).
568
569host
570 host either is a hostname, or a dotted-decimal IP address,
571 or 0. If host is 0, tcpsvd accepts connections to any local
572 IP address.
573 * busybox accepts IPv6 addresses and host:port pairs too
574 In this case second parameter is ignored
575port
576 tcpsvd accepts connections to host:port. port may be a name
577 from /etc/services or a number.
578prog
579 prog consists of one or more arguments. For each connection,
580 tcpsvd normally runs prog, with file descriptor 0 reading from
581 the network, and file descriptor 1 writing to the network.
582 By default it also sets up TCP-related environment variables,
583 see tcp-environ(5)
584-i dir
585 read instructions for handling new connections from the instructions
586 directory dir. See ipsvd-instruct(5) for details.
587 * ignored by busyboxed version
588-x cdb
589 read instructions for handling new connections from the constant database
590 cdb. The constant database normally is created from an instructions
591 directory by running ipsvd-cdb(8).
592 * ignored by busyboxed version
593-t sec
594 timeout. This option only takes effect if the -i option is given.
595 While checking the instructions directory, check the time of last access
596 of the file that matches the clients address or hostname if any, discard
597 and remove the file if it wasn't accessed within the last sec seconds;
598 tcpsvd does not discard or remove a file if the user's write permission
599 is not set, for those files the timeout is disabled. Default is 0,
600 which means that the timeout is disabled.
601 * ignored by busyboxed version
602-l name
603 local hostname. Do not look up the local hostname in DNS, but use name
604 as hostname. This option must be set if tcpsvd listens on port 53
605 to avoid loops.
606-u user[:group]
607 drop permissions. Switch user ID to user's UID, and group ID to user's
608 primary GID after creating and binding to the socket. If user is followed
609 by a colon and a group name, the group ID is switched to the GID of group
610 instead. All supplementary groups are removed.
611-c n
612 concurrency. Handle up to n connections simultaneously. Default is 30.
613 If there are n connections active, tcpsvd defers acceptance of a new
614 connection until an active connection is closed.
615-C n[:msg]
616 per host concurrency. Allow only up to n connections from the same IP
617 address simultaneously. If there are n active connections from one IP
618 address, new incoming connections from this IP address are closed
619 immediately. If n is followed by :msg, the message msg is written
620 to the client if possible, before closing the connection. By default
621 msg is empty. See ipsvd-instruct(5) for supported escape sequences in msg.
622
623 For each accepted connection, the current per host concurrency is
624 available through the environment variable TCPCONCURRENCY. n and msg
625 can be overwritten by ipsvd(7) instructions, see ipsvd-instruct(5).
626 By default tcpsvd doesn't keep track of connections.
627-h
628 Look up the client's hostname in DNS.
629-p
630 paranoid. After looking up the client's hostname in DNS, look up the IP
631 addresses in DNS for that hostname, and forget about the hostname
632 if none of the addresses match the client's IP address. You should
633 set this option if you use hostname based instructions. The -p option
634 implies the -h option.
635 * ignored by busyboxed version
636-b n
637 backlog. Allow a backlog of approximately n TCP SYNs. On some systems n
638 is silently limited. Default is 20.
639-E
640 no special environment. Do not set up TCP-related environment variables.
641-v
642 verbose. Print verbose messsages to standard output.
643-vv
644 more verbose. Print more verbose messages to standard output.
645 * no difference between -v and -vv in busyboxed version
646*/