2007-04-01 15:09:03 +05:30
|
|
|
/* Based on ipsvd utilities written by Gerrit Pape <pape@smarden.org>
|
|
|
|
* which are released into public domain by the author.
|
|
|
|
* Homepage: http://smarden.sunsite.dk/ipsvd/
|
|
|
|
*
|
2008-03-02 18:23:15 +05:30
|
|
|
* Copyright (C) 2007 Denys Vlasenko.
|
2007-04-01 15:09:03 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2007-04-01 15:09:03 +05:30
|
|
|
*/
|
|
|
|
|
2008-03-17 14:47:27 +05:30
|
|
|
/* Based on ipsvd-0.12.1. This tcpsvd accepts all options
|
2007-04-04 04:53:10 +05:30
|
|
|
* which are supported by one from ipsvd-0.12.1, but not all are
|
|
|
|
* functional. See help text at the end of this file for details.
|
|
|
|
*
|
|
|
|
* Code inside "#ifdef SSLSVD" is for sslsvd and is currently unused.
|
|
|
|
*
|
2008-03-17 14:05:44 +05:30
|
|
|
* Busybox version exports TCPLOCALADDR instead of
|
|
|
|
* TCPLOCALIP + TCPLOCALPORT pair. ADDR more closely matches reality
|
|
|
|
* (which is "struct sockaddr_XXX". Port is not a separate entity,
|
|
|
|
* it's just a part of (AF_INET[6]) sockaddr!).
|
2007-04-04 04:53:10 +05:30
|
|
|
*
|
2008-03-17 14:05:44 +05:30
|
|
|
* TCPORIGDSTADDR is Busybox-specific addition.
|
2007-04-04 04:53:10 +05:30
|
|
|
*
|
|
|
|
* udp server is hacked up by reusing TCP code. It has the following
|
|
|
|
* limitation inherent in Unix DGRAM sockets implementation:
|
2007-04-04 15:46:15 +05:30
|
|
|
* - local IP address is retrieved (using recvmsg voodoo) but
|
2007-04-04 04:53:10 +05:30
|
|
|
* child's socket is not bound to it (bind cannot be called on
|
2007-04-04 15:46:15 +05:30
|
|
|
* already bound socket). Thus it still can emit outgoing packets
|
2007-04-13 22:02:26 +05:30
|
|
|
* with wrong source IP...
|
2007-04-04 04:53:10 +05:30
|
|
|
* - don't know how to retrieve ORIGDST for udp.
|
|
|
|
*/
|
2016-11-23 13:35:14 +05:30
|
|
|
//config:config TCPSVD
|
2018-12-28 07:50:17 +05:30
|
|
|
//config: bool "tcpsvd (14 kb)"
|
2016-11-23 13:35:14 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: tcpsvd listens on a TCP port and runs a program for each new
|
|
|
|
//config: connection.
|
2016-11-23 13:35:14 +05:30
|
|
|
//config:
|
|
|
|
//config:config UDPSVD
|
2017-07-19 01:31:24 +05:30
|
|
|
//config: bool "udpsvd (13 kb)"
|
2016-11-23 13:35:14 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: udpsvd listens on an UDP port and runs a program for each new
|
|
|
|
//config: connection.
|
2016-11-23 13:35:14 +05:30
|
|
|
|
|
|
|
//applet:IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, tcpsvd))
|
|
|
|
//applet:IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, udpsvd))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_TCPSVD) += tcpudp.o tcpudp_perhost.o
|
|
|
|
//kbuild:lib-$(CONFIG_UDPSVD) += tcpudp.o tcpudp_perhost.o
|
2007-04-04 04:53:10 +05:30
|
|
|
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define tcpsvd_trivial_usage
|
|
|
|
//usage: "[-hEv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] IP PORT PROG"
|
|
|
|
/* with not-implemented options: */
|
|
|
|
/* //usage: "[-hpEvv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] [-i DIR|-x CDB] [-t SEC] IP PORT PROG" */
|
|
|
|
//usage:#define tcpsvd_full_usage "\n\n"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "Create TCP socket, bind to IP:PORT and listen for incoming connections.\n"
|
|
|
|
//usage: "Run PROG for each connection.\n"
|
|
|
|
//usage: "\n IP PORT IP:PORT to listen on"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n PROG ARGS Program to run"
|
|
|
|
//usage: "\n -u USER[:GRP] Change to user/group after bind"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "\n -c N Up to N connections simultaneously (default 30)"
|
|
|
|
//usage: "\n -b N Allow backlog of approximately N TCP SYNs (default 20)"
|
|
|
|
//usage: "\n -C N[:MSG] Allow only up to N connections from the same IP:"
|
|
|
|
//usage: "\n new connections from this IP address are closed"
|
|
|
|
//usage: "\n immediately, MSG is written to the peer before close"
|
|
|
|
//usage: "\n -E Don't set up environment"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n -h Look up peer's hostname"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "\n -l NAME Local hostname (else look up local hostname in DNS)"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n -v Verbose"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\nEnvironment if no -E:"
|
|
|
|
//usage: "\nPROTO='TCP'"
|
|
|
|
//usage: "\nTCPREMOTEADDR='ip:port'" IF_FEATURE_IPV6(" ('[ip]:port' for IPv6)")
|
|
|
|
//usage: "\nTCPLOCALADDR='ip:port'"
|
|
|
|
//usage: "\nTCPORIGDSTADDR='ip:port' of destination before firewall"
|
|
|
|
//usage: "\n Useful for REDIRECTed-to-local connections:"
|
|
|
|
//usage: "\n iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to 8080"
|
|
|
|
//usage: "\nTCPCONCURRENCY=num_of_connects_from_this_ip"
|
|
|
|
//usage: "\nIf -h:"
|
|
|
|
//usage: "\nTCPLOCALHOST='hostname' (-l NAME is used if specified)"
|
|
|
|
//usage: "\nTCPREMOTEHOST='hostname'"
|
|
|
|
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:
|
|
|
|
//usage:#define udpsvd_trivial_usage
|
|
|
|
//usage: "[-hEv] [-c N] [-u USER] [-l NAME] IP PORT PROG"
|
|
|
|
//usage:#define udpsvd_full_usage "\n\n"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "Create UDP socket, bind to IP:PORT and wait for incoming packets.\n"
|
|
|
|
//usage: "Run PROG for each packet, redirecting all further packets with same\n"
|
|
|
|
//usage: "peer ip:port to it.\n"
|
|
|
|
//usage: "\n IP PORT IP:PORT to listen on"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n PROG ARGS Program to run"
|
|
|
|
//usage: "\n -u USER[:GRP] Change to user/group after bind"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "\n -c N Up to N connections simultaneously (default 30)"
|
|
|
|
//usage: "\n -E Don't set up environment"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n -h Look up peer's hostname"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "\n -l NAME Local hostname (else look up local hostname in DNS)"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n -v Verbose"
|
2016-10-07 19:26:47 +05:30
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\nEnvironment if no -E:"
|
|
|
|
//usage: "\nPROTO='UDP'"
|
|
|
|
//usage: "\nUDPREMOTEADDR='ip:port'" IF_FEATURE_IPV6(" ('[ip]:port' for IPv6)")
|
|
|
|
//usage: "\nUDPLOCALADDR='ip:port'"
|
|
|
|
//usage: "\nIf -h:"
|
|
|
|
//usage: "\nUDPLOCALHOST='hostname' (-l NAME is used if specified)"
|
|
|
|
//usage: "\nUDPREMOTEHOST='hostname'"
|
2011-04-11 06:59:49 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2016-04-21 19:56:30 +05:30
|
|
|
#include "common_bufsiz.h"
|
2010-05-27 19:16:25 +05:30
|
|
|
|
|
|
|
#ifdef __linux__
|
2017-01-02 15:16:08 +05:30
|
|
|
/* from linux/netfilter_ipv4.h: */
|
|
|
|
# undef SO_ORIGINAL_DST
|
|
|
|
# define SO_ORIGINAL_DST 80
|
2010-05-27 19:16:25 +05:30
|
|
|
#endif
|
2008-04-01 02:00:38 +05:30
|
|
|
|
2008-03-17 14:47:27 +05:30
|
|
|
// TODO: move into this file:
|
|
|
|
#include "tcpudp_perhost.h"
|
2007-04-04 04:53:10 +05:30
|
|
|
|
|
|
|
#ifdef SSLSVD
|
|
|
|
#include "matrixSsl.h"
|
|
|
|
#include "ssl_io.h"
|
|
|
|
#endif
|
|
|
|
|
2007-09-28 15:59:17 +05:30
|
|
|
struct globals {
|
|
|
|
unsigned verbose;
|
|
|
|
unsigned max_per_host;
|
|
|
|
unsigned cur_per_host;
|
|
|
|
unsigned cnum;
|
2007-10-14 10:25:59 +05:30
|
|
|
unsigned cmax;
|
2018-02-27 17:33:44 +05:30
|
|
|
struct hcc *cc;
|
2008-03-17 14:05:44 +05:30
|
|
|
char **env_cur;
|
|
|
|
char *env_var[1]; /* actually bigger */
|
2010-02-04 19:30:15 +05:30
|
|
|
} FIX_ALIASING;
|
2016-04-21 19:56:30 +05:30
|
|
|
#define G (*(struct globals*)bb_common_bufsiz1)
|
2007-09-28 15:59:17 +05:30
|
|
|
#define verbose (G.verbose )
|
|
|
|
#define max_per_host (G.max_per_host)
|
|
|
|
#define cur_per_host (G.cur_per_host)
|
|
|
|
#define cnum (G.cnum )
|
|
|
|
#define cmax (G.cmax )
|
2008-03-17 14:05:44 +05:30
|
|
|
#define env_cur (G.env_cur )
|
|
|
|
#define env_var (G.env_var )
|
2008-06-25 15:23:17 +05:30
|
|
|
#define INIT_G() do { \
|
2016-04-21 21:48:48 +05:30
|
|
|
setup_common_bufsiz(); \
|
2008-06-25 15:23:17 +05:30
|
|
|
cmax = 30; \
|
|
|
|
env_cur = &env_var[0]; \
|
|
|
|
} while (0)
|
2007-09-28 15:59:17 +05:30
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
|
2008-03-17 14:05:44 +05:30
|
|
|
/* We have to be careful about leaking memory in repeated setenv's */
|
|
|
|
static void xsetenv_plain(const char *n, const char *v)
|
|
|
|
{
|
|
|
|
char *var = xasprintf("%s=%s", n, v);
|
|
|
|
*env_cur++ = var;
|
|
|
|
putenv(var);
|
|
|
|
}
|
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
static void xsetenv_proto(const char *proto, const char *n, const char *v)
|
|
|
|
{
|
2008-03-17 14:05:44 +05:30
|
|
|
char *var = xasprintf("%s%s=%s", proto, n, v);
|
|
|
|
*env_cur++ = var;
|
|
|
|
putenv(var);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void undo_xsetenv(void)
|
|
|
|
{
|
|
|
|
char **pp = env_cur = &env_var[0];
|
|
|
|
while (*pp) {
|
|
|
|
char *var = *pp;
|
2010-06-24 08:30:50 +05:30
|
|
|
bb_unsetenv_and_free(var);
|
2008-03-17 14:05:44 +05:30
|
|
|
*pp++ = NULL;
|
|
|
|
}
|
2007-04-04 04:53:10 +05:30
|
|
|
}
|
2007-04-03 17:39:46 +05:30
|
|
|
|
|
|
|
static void sig_term_handler(int sig)
|
|
|
|
{
|
|
|
|
if (verbose)
|
2008-03-17 14:05:44 +05:30
|
|
|
bb_error_msg("got signal %u, exit", sig);
|
2008-02-24 19:06:01 +05:30
|
|
|
kill_myself_with_sig(sig);
|
2007-04-03 17:39:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Little bloated, but tries to give accurate info how child exited.
|
|
|
|
* Makes easier to spot segfaulting children etc... */
|
|
|
|
static void print_waitstat(unsigned pid, int wstat)
|
|
|
|
{
|
|
|
|
unsigned e = 0;
|
|
|
|
const char *cause = "?exit";
|
|
|
|
|
|
|
|
if (WIFEXITED(wstat)) {
|
|
|
|
cause++;
|
|
|
|
e = WEXITSTATUS(wstat);
|
|
|
|
} else if (WIFSIGNALED(wstat)) {
|
|
|
|
cause = "signal";
|
|
|
|
e = WTERMSIG(wstat);
|
|
|
|
}
|
2008-03-17 14:05:44 +05:30
|
|
|
bb_error_msg("end %d %s %d", pid, cause, e);
|
2007-04-03 17:39:46 +05:30
|
|
|
}
|
|
|
|
|
2007-04-01 06:48:20 +05:30
|
|
|
/* Must match getopt32 in main! */
|
|
|
|
enum {
|
|
|
|
OPT_c = (1 << 0),
|
|
|
|
OPT_C = (1 << 1),
|
|
|
|
OPT_i = (1 << 2),
|
|
|
|
OPT_x = (1 << 3),
|
|
|
|
OPT_u = (1 << 4),
|
|
|
|
OPT_l = (1 << 5),
|
|
|
|
OPT_E = (1 << 6),
|
|
|
|
OPT_b = (1 << 7),
|
|
|
|
OPT_h = (1 << 8),
|
|
|
|
OPT_p = (1 << 9),
|
|
|
|
OPT_t = (1 << 10),
|
|
|
|
OPT_v = (1 << 11),
|
|
|
|
OPT_V = (1 << 12),
|
2007-04-01 16:29:33 +05:30
|
|
|
OPT_U = (1 << 13), /* from here: sslsvd only */
|
2007-04-01 06:48:20 +05:30
|
|
|
OPT_slash = (1 << 14),
|
|
|
|
OPT_Z = (1 << 15),
|
|
|
|
OPT_K = (1 << 16),
|
|
|
|
};
|
|
|
|
|
2021-06-05 18:54:04 +05:30
|
|
|
static void if_verbose_print_connection_status(void)
|
2007-04-01 06:48:20 +05:30
|
|
|
{
|
2021-06-05 18:54:04 +05:30
|
|
|
if (verbose) {
|
|
|
|
/* "only 1 client max" desn't need this */
|
|
|
|
if (cmax > 1)
|
|
|
|
bb_error_msg("status %u/%u", cnum, cmax);
|
|
|
|
}
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
|
2021-06-05 18:54:04 +05:30
|
|
|
/* SIGCHLD handler is reentrancy-safe because SIGCHLD is unmasked
|
|
|
|
* only over accept() or recvfrom() calls, not over memory allocations
|
|
|
|
* or printouts. Do need to save/restore errno in order not to mangle
|
|
|
|
* these syscalls' error code, if any.
|
|
|
|
*/
|
2008-07-05 14:48:54 +05:30
|
|
|
static void sig_child_handler(int sig UNUSED_PARAM)
|
2007-04-01 06:48:20 +05:30
|
|
|
{
|
|
|
|
int wstat;
|
2008-11-07 04:09:57 +05:30
|
|
|
pid_t pid;
|
2021-06-05 18:54:04 +05:30
|
|
|
int sv_errno = errno;
|
2007-04-01 06:48:20 +05:30
|
|
|
|
2008-01-03 01:25:04 +05:30
|
|
|
while ((pid = wait_any_nohang(&wstat)) > 0) {
|
2007-04-01 06:48:20 +05:30
|
|
|
if (max_per_host)
|
2018-02-27 17:33:44 +05:30
|
|
|
ipsvd_perhost_remove(G.cc, pid);
|
2007-04-01 06:48:20 +05:30
|
|
|
if (cnum)
|
|
|
|
cnum--;
|
2007-04-03 17:39:46 +05:30
|
|
|
if (verbose)
|
|
|
|
print_waitstat(pid, wstat);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2021-06-05 18:54:04 +05:30
|
|
|
if_verbose_print_connection_status();
|
|
|
|
errno = sv_errno;
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int tcpudpsvd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv)
|
2007-04-01 06:48:20 +05:30
|
|
|
{
|
2008-03-17 14:39:09 +05:30
|
|
|
char *str_C, *str_t;
|
2007-04-01 06:48:20 +05:30
|
|
|
char *user;
|
|
|
|
struct hcc *hccp;
|
|
|
|
const char *instructs;
|
|
|
|
char *msg_per_host = NULL;
|
|
|
|
unsigned len_per_host = len_per_host; /* gcc */
|
2007-04-04 15:46:15 +05:30
|
|
|
#ifndef SSLSVD
|
|
|
|
struct bb_uidgid_t ugid;
|
|
|
|
#endif
|
2008-03-17 14:05:44 +05:30
|
|
|
bool tcp;
|
2007-04-04 15:46:15 +05:30
|
|
|
uint16_t local_port;
|
2008-03-17 14:05:44 +05:30
|
|
|
char *preset_local_hostname = NULL;
|
|
|
|
char *remote_hostname = remote_hostname; /* for compiler */
|
|
|
|
char *remote_addr = remote_addr; /* for compiler */
|
2007-04-04 15:46:15 +05:30
|
|
|
len_and_sockaddr *lsa;
|
|
|
|
len_and_sockaddr local, remote;
|
|
|
|
socklen_t sa_len;
|
2007-04-01 06:48:20 +05:30
|
|
|
int pid;
|
|
|
|
int sock;
|
|
|
|
int conn;
|
|
|
|
unsigned backlog = 20;
|
2009-07-20 02:37:13 +05:30
|
|
|
unsigned opts;
|
2007-04-04 15:46:15 +05:30
|
|
|
|
2007-09-28 15:59:17 +05:30
|
|
|
INIT_G();
|
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
tcp = (applet_name[0] == 't');
|
2007-04-01 06:48:20 +05:30
|
|
|
|
2018-03-12 03:32:50 +05:30
|
|
|
/* "+": stop on first non-option */
|
2007-04-01 06:48:20 +05:30
|
|
|
#ifdef SSLSVD
|
2017-08-09 01:25:02 +05:30
|
|
|
opts = getopt32(argv, "^+"
|
|
|
|
"c:+C:i:x:u:l:Eb:+hpt:vU:/:Z:K:" /* -c NUM, -b NUM */
|
2018-03-12 03:32:50 +05:30
|
|
|
"\0"
|
2017-08-09 01:25:02 +05:30
|
|
|
/* 3+ args, -i at most once, -p implies -h, -v is a counter */
|
2018-03-12 03:32:50 +05:30
|
|
|
"-3:i--i:ph:vv",
|
2008-03-17 14:39:09 +05:30
|
|
|
&cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
|
|
|
|
&backlog, &str_t, &ssluser, &root, &cert, &key, &verbose
|
2007-04-01 06:48:20 +05:30
|
|
|
);
|
|
|
|
#else
|
2018-03-12 03:32:50 +05:30
|
|
|
opts = getopt32(argv, "^+"
|
|
|
|
"c:+C:i:x:u:l:Eb:+hpt:v" /* -c NUM, -b NUM */
|
|
|
|
"\0"
|
|
|
|
/* 3+ args, -i at most once, -p implies -h, -v is a counter */
|
|
|
|
"-3:i--i:ph:vv",
|
2008-03-17 14:39:09 +05:30
|
|
|
&cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
|
|
|
|
&backlog, &str_t, &verbose
|
2007-04-01 06:48:20 +05:30
|
|
|
);
|
|
|
|
#endif
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_C) { /* -C n[:message] */
|
2007-04-01 06:48:20 +05:30
|
|
|
max_per_host = bb_strtou(str_C, &str_C, 10);
|
|
|
|
if (str_C[0]) {
|
|
|
|
if (str_C[0] != ':')
|
|
|
|
bb_show_usage();
|
|
|
|
msg_per_host = str_C + 1;
|
|
|
|
len_per_host = strlen(msg_per_host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (max_per_host > cmax)
|
|
|
|
max_per_host = cmax;
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_u) {
|
2008-07-21 20:11:33 +05:30
|
|
|
xget_uidgid(&ugid, user);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
#ifdef SSLSVD
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_U) ssluser = optarg;
|
|
|
|
if (opts & OPT_slash) root = optarg;
|
|
|
|
if (opts & OPT_Z) cert = optarg;
|
|
|
|
if (opts & OPT_K) key = optarg;
|
2007-04-01 06:48:20 +05:30
|
|
|
#endif
|
|
|
|
argv += optind;
|
|
|
|
if (!argv[0][0] || LONE_CHAR(argv[0], '0'))
|
|
|
|
argv[0] = (char*)"0.0.0.0";
|
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
/* Per-IP flood protection is not thought-out for UDP */
|
|
|
|
if (!tcp)
|
|
|
|
max_per_host = 0;
|
|
|
|
|
|
|
|
bb_sanitize_stdio(); /* fd# 0,1,2 must be opened */
|
2007-04-03 06:43:04 +05:30
|
|
|
|
2007-04-01 06:48:20 +05:30
|
|
|
#ifdef SSLSVD
|
|
|
|
sslser = user;
|
|
|
|
client = 0;
|
2009-07-20 02:37:13 +05:30
|
|
|
if ((getuid() == 0) && !(opts & OPT_u)) {
|
2018-02-14 18:35:27 +05:30
|
|
|
xfunc_error_retval = 100;
|
libbb: reduce the overhead of single parameter bb_error_msg() calls
Back in 2007, commit 0c97c9d43707 ("'simple' error message functions by
Loic Grenie") introduced bb_simple_perror_msg() to allow for a lower
overhead call to bb_perror_msg() when only a string was being printed
with no parameters. This saves space for some CPU architectures because
it avoids the overhead of a call to a variadic function. However there
has never been a simple version of bb_error_msg(), and since 2007 many
new calls to bb_perror_msg() have been added that only take a single
parameter and so could have been using bb_simple_perror_message().
This changeset introduces 'simple' versions of bb_info_msg(),
bb_error_msg(), bb_error_msg_and_die(), bb_herror_msg() and
bb_herror_msg_and_die(), and replaces all calls that only take a
single parameter, or use something like ("%s", arg), with calls to the
corresponding 'simple' version.
Since it is likely that single parameter calls to the variadic functions
may be accidentally reintroduced in the future a new debugging config
option WARN_SIMPLE_MSG has been introduced. This uses some macro magic
which will cause any such calls to generate a warning, but this is
turned off by default to avoid use of the unpleasant macros in normal
circumstances.
This is a large changeset due to the number of calls that have been
replaced. The only files that contain changes other than simple
substitution of function calls are libbb.h, libbb/herror_msg.c,
libbb/verror_msg.c and libbb/xfuncs_printf.c. In miscutils/devfsd.c,
networking/udhcp/common.h and util-linux/mdev.c additonal macros have
been added for logging so that single parameter and multiple parameter
logging variants exist.
The amount of space saved varies considerably by architecture, and was
found to be as follows (for 'defconfig' using GCC 7.4):
Arm: -92 bytes
MIPS: -52 bytes
PPC: -1836 bytes
x86_64: -938 bytes
Note that for the MIPS architecture only an exception had to be made
disabling the 'simple' calls for 'udhcp' (in networking/udhcp/common.h)
because it made these files larger on MIPS.
Signed-off-by: James Byrne <james.byrne@origamienergy.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2019-07-02 15:05:03 +05:30
|
|
|
bb_simple_error_msg_and_die(bb_msg_you_must_be_root);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_u)
|
2007-04-01 06:48:20 +05:30
|
|
|
if (!uidgid_get(&sslugid, ssluser, 1)) {
|
|
|
|
if (errno) {
|
2008-07-21 20:11:33 +05:30
|
|
|
bb_perror_msg_and_die("can't get user/group: %s", ssluser);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2008-07-21 20:11:33 +05:30
|
|
|
bb_error_msg_and_die("unknown user/group %s", ssluser);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
if (!cert) cert = "./cert.pem";
|
|
|
|
if (!key) key = cert;
|
|
|
|
if (matrixSslOpen() < 0)
|
2009-11-13 13:38:27 +05:30
|
|
|
fatal("can't initialize ssl");
|
2007-04-01 06:48:20 +05:30
|
|
|
if (matrixSslReadKeys(&keys, cert, key, 0, ca) < 0) {
|
|
|
|
if (client)
|
2009-11-13 13:38:27 +05:30
|
|
|
fatal("can't read cert, key, or ca file");
|
|
|
|
fatal("can't read cert or key file");
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
if (matrixSslNewSession(&ssl, keys, 0, SSL_FLAGS_SERVER) < 0)
|
2009-11-13 13:38:27 +05:30
|
|
|
fatal("can't create ssl session");
|
2007-04-01 06:48:20 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
sig_block(SIGCHLD);
|
|
|
|
signal(SIGCHLD, sig_child_handler);
|
2008-03-20 01:08:46 +05:30
|
|
|
bb_signals(BB_FATAL_SIGS, sig_term_handler);
|
2007-04-01 06:48:20 +05:30
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
|
|
|
|
if (max_per_host)
|
2018-02-27 17:33:44 +05:30
|
|
|
G.cc = ipsvd_perhost_init(cmax);
|
2007-04-01 06:48:20 +05:30
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
local_port = bb_lookup_port(argv[1], tcp ? "tcp" : "udp", 0);
|
2007-04-03 17:39:46 +05:30
|
|
|
lsa = xhost2sockaddr(argv[0], local_port);
|
2008-03-17 14:05:44 +05:30
|
|
|
argv += 2;
|
|
|
|
|
2008-01-29 16:03:34 +05:30
|
|
|
sock = xsocket(lsa->u.sa.sa_family, tcp ? SOCK_STREAM : SOCK_DGRAM, 0);
|
2007-04-04 04:53:10 +05:30
|
|
|
setsockopt_reuseaddr(sock);
|
2007-04-04 15:46:15 +05:30
|
|
|
sa_len = lsa->len; /* I presume sockaddr len stays the same */
|
2008-01-29 16:03:34 +05:30
|
|
|
xbind(sock, &lsa->u.sa, sa_len);
|
2009-06-14 02:19:08 +05:30
|
|
|
if (tcp) {
|
2007-04-04 04:53:10 +05:30
|
|
|
xlisten(sock, backlog);
|
2009-06-14 02:19:08 +05:30
|
|
|
close_on_exec_on(sock);
|
|
|
|
} else { /* udp: needed for recv_from_to to work: */
|
2007-04-04 04:53:10 +05:30
|
|
|
socket_want_pktinfo(sock);
|
2009-06-14 02:19:08 +05:30
|
|
|
}
|
2007-04-01 06:48:20 +05:30
|
|
|
/* ndelay_off(sock); - it is the default I think? */
|
|
|
|
|
|
|
|
#ifndef SSLSVD
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_u) {
|
2007-04-01 06:48:20 +05:30
|
|
|
/* drop permissions */
|
|
|
|
xsetgid(ugid.gid);
|
|
|
|
xsetuid(ugid.uid);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (verbose) {
|
2008-01-29 16:03:34 +05:30
|
|
|
char *addr = xmalloc_sockaddr2dotted(&lsa->u.sa);
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_u)
|
|
|
|
bb_error_msg("listening on %s, starting, uid %u, gid %u", addr,
|
2007-04-02 00:40:36 +05:30
|
|
|
(unsigned)ugid.uid, (unsigned)ugid.gid);
|
2009-07-20 02:37:13 +05:30
|
|
|
else
|
|
|
|
bb_error_msg("listening on %s, starting", addr);
|
|
|
|
free(addr);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
/* Main accept() loop */
|
2007-04-01 06:48:20 +05:30
|
|
|
|
|
|
|
again:
|
|
|
|
hccp = NULL;
|
|
|
|
|
2016-10-07 19:26:47 +05:30
|
|
|
again1:
|
|
|
|
close(0);
|
|
|
|
/* It's important to close(0) _before_ wait loop:
|
|
|
|
* fd#0 can be a shared connection fd.
|
|
|
|
* If kept open by us, peer can't detect PROG closing it.
|
|
|
|
*/
|
2007-04-01 06:48:20 +05:30
|
|
|
while (cnum >= cmax)
|
2008-03-17 13:59:08 +05:30
|
|
|
wait_for_any_sig(); /* expecting SIGCHLD */
|
2007-04-01 06:48:20 +05:30
|
|
|
|
2007-04-03 17:39:46 +05:30
|
|
|
again2:
|
2007-04-01 06:48:20 +05:30
|
|
|
sig_unblock(SIGCHLD);
|
2008-03-17 14:05:44 +05:30
|
|
|
local.len = remote.len = sa_len;
|
2007-04-04 04:53:10 +05:30
|
|
|
if (tcp) {
|
2016-10-07 19:26:47 +05:30
|
|
|
/* Accept a connection to fd #0 */
|
2008-01-29 16:03:34 +05:30
|
|
|
conn = accept(sock, &remote.u.sa, &remote.len);
|
2007-04-04 15:46:15 +05:30
|
|
|
} else {
|
2007-04-04 23:19:47 +05:30
|
|
|
/* In case recv_from_to won't be able to recover local addr.
|
2007-04-04 15:46:15 +05:30
|
|
|
* Also sets port - recv_from_to is unable to do it. */
|
|
|
|
local = *lsa;
|
2008-03-17 14:40:39 +05:30
|
|
|
conn = recv_from_to(sock, NULL, 0, MSG_PEEK,
|
2008-03-17 14:05:44 +05:30
|
|
|
&remote.u.sa, &local.u.sa, sa_len);
|
2007-04-04 15:46:15 +05:30
|
|
|
}
|
2007-04-01 06:48:20 +05:30
|
|
|
sig_block(SIGCHLD);
|
2007-04-03 17:39:46 +05:30
|
|
|
if (conn < 0) {
|
2007-04-01 06:48:20 +05:30
|
|
|
if (errno != EINTR)
|
libbb: reduce the overhead of single parameter bb_error_msg() calls
Back in 2007, commit 0c97c9d43707 ("'simple' error message functions by
Loic Grenie") introduced bb_simple_perror_msg() to allow for a lower
overhead call to bb_perror_msg() when only a string was being printed
with no parameters. This saves space for some CPU architectures because
it avoids the overhead of a call to a variadic function. However there
has never been a simple version of bb_error_msg(), and since 2007 many
new calls to bb_perror_msg() have been added that only take a single
parameter and so could have been using bb_simple_perror_message().
This changeset introduces 'simple' versions of bb_info_msg(),
bb_error_msg(), bb_error_msg_and_die(), bb_herror_msg() and
bb_herror_msg_and_die(), and replaces all calls that only take a
single parameter, or use something like ("%s", arg), with calls to the
corresponding 'simple' version.
Since it is likely that single parameter calls to the variadic functions
may be accidentally reintroduced in the future a new debugging config
option WARN_SIMPLE_MSG has been introduced. This uses some macro magic
which will cause any such calls to generate a warning, but this is
turned off by default to avoid use of the unpleasant macros in normal
circumstances.
This is a large changeset due to the number of calls that have been
replaced. The only files that contain changes other than simple
substitution of function calls are libbb.h, libbb/herror_msg.c,
libbb/verror_msg.c and libbb/xfuncs_printf.c. In miscutils/devfsd.c,
networking/udhcp/common.h and util-linux/mdev.c additonal macros have
been added for logging so that single parameter and multiple parameter
logging variants exist.
The amount of space saved varies considerably by architecture, and was
found to be as follows (for 'defconfig' using GCC 7.4):
Arm: -92 bytes
MIPS: -52 bytes
PPC: -1836 bytes
x86_64: -938 bytes
Note that for the MIPS architecture only an exception had to be made
disabling the 'simple' calls for 'udhcp' (in networking/udhcp/common.h)
because it made these files larger on MIPS.
Signed-off-by: James Byrne <james.byrne@origamienergy.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2019-07-02 15:05:03 +05:30
|
|
|
bb_simple_perror_msg(tcp ? "accept" : "recv");
|
2007-04-03 17:39:46 +05:30
|
|
|
goto again2;
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2007-04-04 04:53:10 +05:30
|
|
|
xmove_fd(tcp ? conn : sock, 0);
|
2007-04-01 06:48:20 +05:30
|
|
|
|
|
|
|
if (max_per_host) {
|
2007-04-03 17:39:46 +05:30
|
|
|
/* Drop connection immediately if cur_per_host > max_per_host
|
2007-04-01 06:48:20 +05:30
|
|
|
* (minimizing load under SYN flood) */
|
2008-03-17 14:05:44 +05:30
|
|
|
remote_addr = xmalloc_sockaddr2dotted_noport(&remote.u.sa);
|
2018-02-27 17:33:44 +05:30
|
|
|
cur_per_host = ipsvd_perhost_add(G.cc, remote_addr, max_per_host, &hccp);
|
2007-04-01 06:48:20 +05:30
|
|
|
if (cur_per_host > max_per_host) {
|
|
|
|
/* ipsvd_perhost_add detected that max is exceeded
|
2007-04-03 17:39:46 +05:30
|
|
|
* (and did not store ip in connection table) */
|
2008-03-17 14:05:44 +05:30
|
|
|
free(remote_addr);
|
2007-04-01 06:48:20 +05:30
|
|
|
if (msg_per_host) {
|
2007-04-03 17:39:46 +05:30
|
|
|
/* don't block or test for errors */
|
2008-03-17 14:05:44 +05:30
|
|
|
send(0, msg_per_host, len_per_host, MSG_DONTWAIT);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2007-04-03 17:39:46 +05:30
|
|
|
goto again1;
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2008-03-17 14:05:44 +05:30
|
|
|
/* NB: remote_addr is not leaked, it is stored in conn table */
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
|
|
|
|
2007-04-04 04:53:10 +05:30
|
|
|
if (!tcp) {
|
|
|
|
/* Voodoo magic: making udp sockets each receive its own
|
2007-04-04 15:46:15 +05:30
|
|
|
* packets is not trivial, and I still not sure
|
|
|
|
* I do it 100% right.
|
|
|
|
* 1) we have to do it before fork()
|
|
|
|
* 2) order is important - is it right now? */
|
2007-04-04 04:53:10 +05:30
|
|
|
|
2008-03-13 04:43:50 +05:30
|
|
|
/* Open new non-connected UDP socket for further clients... */
|
|
|
|
sock = xsocket(lsa->u.sa.sa_family, SOCK_DGRAM, 0);
|
|
|
|
setsockopt_reuseaddr(sock);
|
|
|
|
/* Make plain write/send work for old socket by supplying default
|
2007-04-04 04:53:10 +05:30
|
|
|
* destination address. This also restricts incoming packets
|
|
|
|
* to ones coming from this remote IP. */
|
2008-01-29 16:03:34 +05:30
|
|
|
xconnect(0, &remote.u.sa, sa_len);
|
2007-04-04 15:46:15 +05:30
|
|
|
/* hole? at this point we have no wildcard udp socket...
|
2007-04-04 16:32:55 +05:30
|
|
|
* can this cause clients to get "port unreachable" icmp?
|
2021-06-05 18:54:04 +05:30
|
|
|
* Yup, time window is very small, but it exists (does it?) */
|
2008-03-13 04:43:50 +05:30
|
|
|
/* ..."open new socket", continued */
|
2008-01-29 16:03:34 +05:30
|
|
|
xbind(sock, &lsa->u.sa, sa_len);
|
2007-04-04 04:53:10 +05:30
|
|
|
socket_want_pktinfo(sock);
|
2007-04-04 16:32:55 +05:30
|
|
|
|
|
|
|
/* Doesn't work:
|
|
|
|
* we cannot replace fd #0 - we will lose pending packet
|
|
|
|
* which is already buffered for us! And we cannot use fd #1
|
|
|
|
* instead - it will "intercept" all following packets, but child
|
2007-08-24 15:57:41 +05:30
|
|
|
* does not expect data coming *from fd #1*! */
|
2007-04-04 16:32:55 +05:30
|
|
|
#if 0
|
2008-01-29 16:03:34 +05:30
|
|
|
/* Make it so that local addr is fixed to localp->u.sa
|
2007-04-04 16:32:55 +05:30
|
|
|
* and we don't accidentally accept packets to other local IPs. */
|
|
|
|
/* NB: we possibly bind to the _very_ same_ address & port as the one
|
|
|
|
* already bound in parent! This seems to work in Linux.
|
|
|
|
* (otherwise we can move socket to fd #0 only if bind succeeds) */
|
|
|
|
close(0);
|
2011-04-07 21:22:20 +05:30
|
|
|
set_nport(&localp->u.sa, htons(local_port));
|
2008-01-29 16:03:34 +05:30
|
|
|
xmove_fd(xsocket(localp->u.sa.sa_family, SOCK_DGRAM, 0), 0);
|
2007-04-04 16:32:55 +05:30
|
|
|
setsockopt_reuseaddr(0); /* crucial */
|
2008-01-29 16:03:34 +05:30
|
|
|
xbind(0, &localp->u.sa, localp->len);
|
2007-04-04 16:32:55 +05:30
|
|
|
#endif
|
2007-04-04 04:53:10 +05:30
|
|
|
}
|
2007-04-01 06:48:20 +05:30
|
|
|
|
2008-03-17 14:05:44 +05:30
|
|
|
pid = vfork();
|
2007-04-01 06:48:20 +05:30
|
|
|
if (pid == -1) {
|
libbb: reduce the overhead of single parameter bb_error_msg() calls
Back in 2007, commit 0c97c9d43707 ("'simple' error message functions by
Loic Grenie") introduced bb_simple_perror_msg() to allow for a lower
overhead call to bb_perror_msg() when only a string was being printed
with no parameters. This saves space for some CPU architectures because
it avoids the overhead of a call to a variadic function. However there
has never been a simple version of bb_error_msg(), and since 2007 many
new calls to bb_perror_msg() have been added that only take a single
parameter and so could have been using bb_simple_perror_message().
This changeset introduces 'simple' versions of bb_info_msg(),
bb_error_msg(), bb_error_msg_and_die(), bb_herror_msg() and
bb_herror_msg_and_die(), and replaces all calls that only take a
single parameter, or use something like ("%s", arg), with calls to the
corresponding 'simple' version.
Since it is likely that single parameter calls to the variadic functions
may be accidentally reintroduced in the future a new debugging config
option WARN_SIMPLE_MSG has been introduced. This uses some macro magic
which will cause any such calls to generate a warning, but this is
turned off by default to avoid use of the unpleasant macros in normal
circumstances.
This is a large changeset due to the number of calls that have been
replaced. The only files that contain changes other than simple
substitution of function calls are libbb.h, libbb/herror_msg.c,
libbb/verror_msg.c and libbb/xfuncs_printf.c. In miscutils/devfsd.c,
networking/udhcp/common.h and util-linux/mdev.c additonal macros have
been added for logging so that single parameter and multiple parameter
logging variants exist.
The amount of space saved varies considerably by architecture, and was
found to be as follows (for 'defconfig' using GCC 7.4):
Arm: -92 bytes
MIPS: -52 bytes
PPC: -1836 bytes
x86_64: -938 bytes
Note that for the MIPS architecture only an exception had to be made
disabling the 'simple' calls for 'udhcp' (in networking/udhcp/common.h)
because it made these files larger on MIPS.
Signed-off-by: James Byrne <james.byrne@origamienergy.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2019-07-02 15:05:03 +05:30
|
|
|
bb_simple_perror_msg("vfork");
|
2007-04-01 06:48:20 +05:30
|
|
|
goto again;
|
|
|
|
}
|
2007-04-04 04:53:10 +05:30
|
|
|
|
2007-04-01 06:48:20 +05:30
|
|
|
if (pid != 0) {
|
2008-03-17 14:05:44 +05:30
|
|
|
/* Parent */
|
2007-04-04 04:53:10 +05:30
|
|
|
cnum++;
|
2021-06-05 18:54:04 +05:30
|
|
|
if_verbose_print_connection_status();
|
2007-04-01 06:48:20 +05:30
|
|
|
if (hccp)
|
|
|
|
hccp->pid = pid;
|
2008-03-17 14:05:44 +05:30
|
|
|
/* clean up changes done by vforked child */
|
|
|
|
undo_xsetenv();
|
2007-04-01 06:48:20 +05:30
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Child: prepare env, log, and exec prog */
|
|
|
|
|
2008-03-17 14:05:44 +05:30
|
|
|
{ /* vfork alert! every xmalloc in this block should be freed! */
|
|
|
|
char *local_hostname = local_hostname; /* for compiler */
|
|
|
|
char *local_addr = NULL;
|
|
|
|
char *free_me0 = NULL;
|
|
|
|
char *free_me1 = NULL;
|
|
|
|
char *free_me2 = NULL;
|
|
|
|
|
2009-07-20 02:37:13 +05:30
|
|
|
if (verbose || !(opts & OPT_E)) {
|
2008-03-17 14:05:44 +05:30
|
|
|
if (!max_per_host) /* remote_addr is not yet known */
|
|
|
|
free_me0 = remote_addr = xmalloc_sockaddr2dotted(&remote.u.sa);
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_h) {
|
2008-03-17 14:05:44 +05:30
|
|
|
free_me1 = remote_hostname = xmalloc_sockaddr2host_noport(&remote.u.sa);
|
|
|
|
if (!remote_hostname) {
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_error_msg("can't look up hostname for %s", remote_addr);
|
2008-03-17 14:05:44 +05:30
|
|
|
remote_hostname = remote_addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Find out local IP peer connected to.
|
|
|
|
* Errors ignored (I'm not paranoid enough to imagine kernel
|
|
|
|
* which doesn't know local IP). */
|
|
|
|
if (tcp)
|
|
|
|
getsockname(0, &local.u.sa, &local.len);
|
|
|
|
/* else: for UDP it is done earlier by parent */
|
|
|
|
local_addr = xmalloc_sockaddr2dotted(&local.u.sa);
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_h) {
|
2008-03-17 14:05:44 +05:30
|
|
|
local_hostname = preset_local_hostname;
|
|
|
|
if (!local_hostname) {
|
|
|
|
free_me2 = local_hostname = xmalloc_sockaddr2host_noport(&local.u.sa);
|
|
|
|
if (!local_hostname)
|
2009-11-13 13:38:27 +05:30
|
|
|
bb_error_msg_and_die("can't look up hostname for %s", local_addr);
|
2008-03-17 14:05:44 +05:30
|
|
|
}
|
|
|
|
/* else: local_hostname is not NULL, but is NOT malloced! */
|
2007-04-03 17:39:46 +05:30
|
|
|
}
|
|
|
|
}
|
2008-03-17 14:05:44 +05:30
|
|
|
if (verbose) {
|
|
|
|
pid = getpid();
|
|
|
|
if (max_per_host) {
|
|
|
|
bb_error_msg("concurrency %s %u/%u",
|
|
|
|
remote_addr,
|
|
|
|
cur_per_host, max_per_host);
|
|
|
|
}
|
2009-07-20 02:37:13 +05:30
|
|
|
bb_error_msg((opts & OPT_h)
|
2008-03-17 14:05:44 +05:30
|
|
|
? "start %u %s-%s (%s-%s)"
|
|
|
|
: "start %u %s-%s",
|
|
|
|
pid,
|
|
|
|
local_addr, remote_addr,
|
|
|
|
local_hostname, remote_hostname);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2007-04-01 15:09:03 +05:30
|
|
|
|
2009-07-20 02:37:13 +05:30
|
|
|
if (!(opts & OPT_E)) {
|
2008-03-17 14:05:44 +05:30
|
|
|
/* setup ucspi env */
|
|
|
|
const char *proto = tcp ? "TCP" : "UDP";
|
|
|
|
|
2010-05-27 19:16:25 +05:30
|
|
|
#ifdef SO_ORIGINAL_DST
|
2008-03-17 14:05:44 +05:30
|
|
|
/* Extract "original" destination addr:port
|
|
|
|
* from Linux firewall. Useful when you redirect
|
|
|
|
* an outbond connection to local handler, and it needs
|
|
|
|
* to know where it originally tried to connect */
|
|
|
|
if (tcp && getsockopt(0, SOL_IP, SO_ORIGINAL_DST, &local.u.sa, &local.len) == 0) {
|
|
|
|
char *addr = xmalloc_sockaddr2dotted(&local.u.sa);
|
|
|
|
xsetenv_plain("TCPORIGDSTADDR", addr);
|
|
|
|
free(addr);
|
|
|
|
}
|
2010-05-27 19:16:25 +05:30
|
|
|
#endif
|
2008-03-17 14:05:44 +05:30
|
|
|
xsetenv_plain("PROTO", proto);
|
|
|
|
xsetenv_proto(proto, "LOCALADDR", local_addr);
|
|
|
|
xsetenv_proto(proto, "REMOTEADDR", remote_addr);
|
2009-07-20 02:37:13 +05:30
|
|
|
if (opts & OPT_h) {
|
2008-03-17 14:05:44 +05:30
|
|
|
xsetenv_proto(proto, "LOCALHOST", local_hostname);
|
|
|
|
xsetenv_proto(proto, "REMOTEHOST", remote_hostname);
|
|
|
|
}
|
|
|
|
//compat? xsetenv_proto(proto, "REMOTEINFO", "");
|
|
|
|
/* additional */
|
|
|
|
if (cur_per_host > 0) /* can not be true for udp */
|
|
|
|
xsetenv_plain("TCPCONCURRENCY", utoa(cur_per_host));
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2008-03-17 14:05:44 +05:30
|
|
|
free(local_addr);
|
|
|
|
free(free_me0);
|
|
|
|
free(free_me1);
|
|
|
|
free(free_me2);
|
2007-04-01 06:48:20 +05:30
|
|
|
}
|
2007-04-01 15:09:03 +05:30
|
|
|
|
2008-03-17 14:05:44 +05:30
|
|
|
xdup2(0, 1);
|
2007-04-03 06:43:04 +05:30
|
|
|
|
2021-06-05 18:54:04 +05:30
|
|
|
/* Restore signal handling for the to-be-execed process */
|
2008-11-09 05:45:11 +05:30
|
|
|
signal(SIGPIPE, SIG_DFL); /* this one was SIG_IGNed */
|
2021-06-05 18:54:04 +05:30
|
|
|
/* Non-ignored signals revert to SIG_DFL on exec anyway
|
|
|
|
* But we can get signals BEFORE execvp(), this is unlikely
|
|
|
|
* but it would invoke sig_child_handler(), which would
|
|
|
|
* check waitpid(WNOHANG), then print "status N/M" if verbose.
|
|
|
|
* I guess we can live with that possibility.
|
|
|
|
*/
|
2008-11-09 05:45:11 +05:30
|
|
|
/*signal(SIGCHLD, SIG_DFL);*/
|
2007-04-01 06:48:20 +05:30
|
|
|
sig_unblock(SIGCHLD);
|
|
|
|
|
|
|
|
#ifdef SSLSVD
|
2008-03-13 04:43:50 +05:30
|
|
|
strcpy(id, utoa(pid));
|
2007-04-01 06:48:20 +05:30
|
|
|
ssl_io(0, argv);
|
2010-07-04 04:27:03 +05:30
|
|
|
bb_perror_msg_and_die("can't execute '%s'", argv[0]);
|
2007-04-01 06:48:20 +05:30
|
|
|
#else
|
2010-07-04 04:27:03 +05:30
|
|
|
BB_EXECVP_or_die(argv);
|
2007-04-01 06:48:20 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-04-01 16:29:33 +05:30
|
|
|
tcpsvd [-hpEvv] [-c n] [-C n:msg] [-b n] [-u user] [-l name]
|
|
|
|
[-i dir|-x cdb] [ -t sec] host port prog
|
2007-04-01 06:48:20 +05:30
|
|
|
|
|
|
|
tcpsvd creates a TCP/IP socket, binds it to the address host:port,
|
|
|
|
and listens on the socket for incoming connections.
|
|
|
|
|
|
|
|
On each incoming connection, tcpsvd conditionally runs a program,
|
|
|
|
with standard input reading from the socket, and standard output
|
|
|
|
writing to the socket, to handle this connection. tcpsvd keeps
|
|
|
|
listening on the socket for new connections, and can handle
|
|
|
|
multiple connections simultaneously.
|
|
|
|
|
|
|
|
tcpsvd optionally checks for special instructions depending
|
|
|
|
on the IP address or hostname of the client that initiated
|
|
|
|
the connection, see ipsvd-instruct(5).
|
|
|
|
|
|
|
|
host
|
|
|
|
host either is a hostname, or a dotted-decimal IP address,
|
|
|
|
or 0. If host is 0, tcpsvd accepts connections to any local
|
|
|
|
IP address.
|
2007-04-01 15:09:03 +05:30
|
|
|
* busybox accepts IPv6 addresses and host:port pairs too
|
|
|
|
In this case second parameter is ignored
|
2007-04-01 06:48:20 +05:30
|
|
|
port
|
|
|
|
tcpsvd accepts connections to host:port. port may be a name
|
|
|
|
from /etc/services or a number.
|
|
|
|
prog
|
|
|
|
prog consists of one or more arguments. For each connection,
|
|
|
|
tcpsvd normally runs prog, with file descriptor 0 reading from
|
|
|
|
the network, and file descriptor 1 writing to the network.
|
|
|
|
By default it also sets up TCP-related environment variables,
|
2007-04-01 15:09:03 +05:30
|
|
|
see tcp-environ(5)
|
2007-04-01 06:48:20 +05:30
|
|
|
-i dir
|
|
|
|
read instructions for handling new connections from the instructions
|
2007-04-01 15:09:03 +05:30
|
|
|
directory dir. See ipsvd-instruct(5) for details.
|
|
|
|
* ignored by busyboxed version
|
2007-04-01 06:48:20 +05:30
|
|
|
-x cdb
|
|
|
|
read instructions for handling new connections from the constant database
|
|
|
|
cdb. The constant database normally is created from an instructions
|
2007-04-01 15:09:03 +05:30
|
|
|
directory by running ipsvd-cdb(8).
|
|
|
|
* ignored by busyboxed version
|
2007-04-01 06:48:20 +05:30
|
|
|
-t sec
|
|
|
|
timeout. This option only takes effect if the -i option is given.
|
|
|
|
While checking the instructions directory, check the time of last access
|
|
|
|
of the file that matches the clients address or hostname if any, discard
|
|
|
|
and remove the file if it wasn't accessed within the last sec seconds;
|
|
|
|
tcpsvd does not discard or remove a file if the user's write permission
|
|
|
|
is not set, for those files the timeout is disabled. Default is 0,
|
2007-04-01 15:09:03 +05:30
|
|
|
which means that the timeout is disabled.
|
|
|
|
* ignored by busyboxed version
|
2007-04-01 06:48:20 +05:30
|
|
|
-l name
|
|
|
|
local hostname. Do not look up the local hostname in DNS, but use name
|
|
|
|
as hostname. This option must be set if tcpsvd listens on port 53
|
2007-04-01 15:09:03 +05:30
|
|
|
to avoid loops.
|
2007-04-01 06:48:20 +05:30
|
|
|
-u user[:group]
|
|
|
|
drop permissions. Switch user ID to user's UID, and group ID to user's
|
|
|
|
primary GID after creating and binding to the socket. If user is followed
|
|
|
|
by a colon and a group name, the group ID is switched to the GID of group
|
2007-04-01 15:09:03 +05:30
|
|
|
instead. All supplementary groups are removed.
|
2007-04-01 06:48:20 +05:30
|
|
|
-c n
|
|
|
|
concurrency. Handle up to n connections simultaneously. Default is 30.
|
|
|
|
If there are n connections active, tcpsvd defers acceptance of a new
|
2007-04-01 15:09:03 +05:30
|
|
|
connection until an active connection is closed.
|
2007-04-01 06:48:20 +05:30
|
|
|
-C n[:msg]
|
|
|
|
per host concurrency. Allow only up to n connections from the same IP
|
2007-04-01 15:09:03 +05:30
|
|
|
address simultaneously. If there are n active connections from one IP
|
2007-04-01 06:48:20 +05:30
|
|
|
address, new incoming connections from this IP address are closed
|
2007-04-01 15:09:03 +05:30
|
|
|
immediately. If n is followed by :msg, the message msg is written
|
2007-04-01 06:48:20 +05:30
|
|
|
to the client if possible, before closing the connection. By default
|
|
|
|
msg is empty. See ipsvd-instruct(5) for supported escape sequences in msg.
|
|
|
|
|
|
|
|
For each accepted connection, the current per host concurrency is
|
|
|
|
available through the environment variable TCPCONCURRENCY. n and msg
|
|
|
|
can be overwritten by ipsvd(7) instructions, see ipsvd-instruct(5).
|
2007-04-01 15:09:03 +05:30
|
|
|
By default tcpsvd doesn't keep track of connections.
|
2007-04-01 06:48:20 +05:30
|
|
|
-h
|
2007-04-01 15:09:03 +05:30
|
|
|
Look up the client's hostname in DNS.
|
2007-04-01 06:48:20 +05:30
|
|
|
-p
|
|
|
|
paranoid. After looking up the client's hostname in DNS, look up the IP
|
|
|
|
addresses in DNS for that hostname, and forget about the hostname
|
|
|
|
if none of the addresses match the client's IP address. You should
|
|
|
|
set this option if you use hostname based instructions. The -p option
|
2007-04-01 15:09:03 +05:30
|
|
|
implies the -h option.
|
|
|
|
* ignored by busyboxed version
|
2007-04-01 06:48:20 +05:30
|
|
|
-b n
|
|
|
|
backlog. Allow a backlog of approximately n TCP SYNs. On some systems n
|
2007-04-01 15:09:03 +05:30
|
|
|
is silently limited. Default is 20.
|
2007-04-01 06:48:20 +05:30
|
|
|
-E
|
2007-04-01 15:09:03 +05:30
|
|
|
no special environment. Do not set up TCP-related environment variables.
|
2007-04-01 06:48:20 +05:30
|
|
|
-v
|
2017-04-17 19:43:32 +05:30
|
|
|
verbose. Print verbose messages to standard output.
|
2007-04-01 06:48:20 +05:30
|
|
|
-vv
|
2007-04-01 15:09:03 +05:30
|
|
|
more verbose. Print more verbose messages to standard output.
|
|
|
|
* no difference between -v and -vv in busyboxed version
|
2007-04-01 06:48:20 +05:30
|
|
|
*/
|