tcpudp.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. /* 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 Denys Vlasenko.
  6. *
  7. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  8. */
  9. /* Based on ipsvd-0.12.1. This tcpsvd accepts all options
  10. * which are supported by one from ipsvd-0.12.1, but not all are
  11. * functional. See help text at the end of this file for details.
  12. *
  13. * Code inside "#ifdef SSLSVD" is for sslsvd and is currently unused.
  14. *
  15. * Busybox version exports TCPLOCALADDR instead of
  16. * TCPLOCALIP + TCPLOCALPORT pair. ADDR more closely matches reality
  17. * (which is "struct sockaddr_XXX". Port is not a separate entity,
  18. * it's just a part of (AF_INET[6]) sockaddr!).
  19. *
  20. * TCPORIGDSTADDR is Busybox-specific addition.
  21. *
  22. * udp server is hacked up by reusing TCP code. It has the following
  23. * limitation inherent in Unix DGRAM sockets implementation:
  24. * - local IP address is retrieved (using recvmsg voodoo) but
  25. * child's socket is not bound to it (bind cannot be called on
  26. * already bound socket). Thus it still can emit outgoing packets
  27. * with wrong source IP...
  28. * - don't know how to retrieve ORIGDST for udp.
  29. */
  30. #include "libbb.h"
  31. /* Wants <limits.h> etc, thus included after libbb.h: */
  32. #include <linux/types.h> /* for __be32 etc */
  33. #include <linux/netfilter_ipv4.h>
  34. // TODO: move into this file:
  35. #include "tcpudp_perhost.h"
  36. #ifdef SSLSVD
  37. #include "matrixSsl.h"
  38. #include "ssl_io.h"
  39. #endif
  40. struct globals {
  41. unsigned verbose;
  42. unsigned max_per_host;
  43. unsigned cur_per_host;
  44. unsigned cnum;
  45. unsigned cmax;
  46. char **env_cur;
  47. char *env_var[1]; /* actually bigger */
  48. };
  49. #define G (*(struct globals*)&bb_common_bufsiz1)
  50. #define verbose (G.verbose )
  51. #define max_per_host (G.max_per_host)
  52. #define cur_per_host (G.cur_per_host)
  53. #define cnum (G.cnum )
  54. #define cmax (G.cmax )
  55. #define env_cur (G.env_cur )
  56. #define env_var (G.env_var )
  57. #define INIT_G() do { \
  58. cmax = 30; \
  59. env_cur = &env_var[0]; \
  60. } while (0)
  61. /* We have to be careful about leaking memory in repeated setenv's */
  62. static void xsetenv_plain(const char *n, const char *v)
  63. {
  64. char *var = xasprintf("%s=%s", n, v);
  65. *env_cur++ = var;
  66. putenv(var);
  67. }
  68. static void xsetenv_proto(const char *proto, const char *n, const char *v)
  69. {
  70. char *var = xasprintf("%s%s=%s", proto, n, v);
  71. *env_cur++ = var;
  72. putenv(var);
  73. }
  74. static void undo_xsetenv(void)
  75. {
  76. char **pp = env_cur = &env_var[0];
  77. while (*pp) {
  78. char *var = *pp;
  79. bb_unsetenv(var);
  80. free(var);
  81. *pp++ = NULL;
  82. }
  83. }
  84. static void sig_term_handler(int sig)
  85. {
  86. if (verbose)
  87. bb_error_msg("got signal %u, exit", sig);
  88. kill_myself_with_sig(sig);
  89. }
  90. /* Little bloated, but tries to give accurate info how child exited.
  91. * Makes easier to spot segfaulting children etc... */
  92. static void print_waitstat(unsigned pid, int wstat)
  93. {
  94. unsigned e = 0;
  95. const char *cause = "?exit";
  96. if (WIFEXITED(wstat)) {
  97. cause++;
  98. e = WEXITSTATUS(wstat);
  99. } else if (WIFSIGNALED(wstat)) {
  100. cause = "signal";
  101. e = WTERMSIG(wstat);
  102. }
  103. bb_error_msg("end %d %s %d", pid, cause, e);
  104. }
  105. /* Must match getopt32 in main! */
  106. enum {
  107. OPT_c = (1 << 0),
  108. OPT_C = (1 << 1),
  109. OPT_i = (1 << 2),
  110. OPT_x = (1 << 3),
  111. OPT_u = (1 << 4),
  112. OPT_l = (1 << 5),
  113. OPT_E = (1 << 6),
  114. OPT_b = (1 << 7),
  115. OPT_h = (1 << 8),
  116. OPT_p = (1 << 9),
  117. OPT_t = (1 << 10),
  118. OPT_v = (1 << 11),
  119. OPT_V = (1 << 12),
  120. OPT_U = (1 << 13), /* from here: sslsvd only */
  121. OPT_slash = (1 << 14),
  122. OPT_Z = (1 << 15),
  123. OPT_K = (1 << 16),
  124. };
  125. static void connection_status(void)
  126. {
  127. /* "only 1 client max" desn't need this */
  128. if (cmax > 1)
  129. bb_error_msg("status %u/%u", cnum, cmax);
  130. }
  131. static void sig_child_handler(int sig UNUSED_PARAM)
  132. {
  133. int wstat;
  134. pid_t pid;
  135. while ((pid = wait_any_nohang(&wstat)) > 0) {
  136. if (max_per_host)
  137. ipsvd_perhost_remove(pid);
  138. if (cnum)
  139. cnum--;
  140. if (verbose)
  141. print_waitstat(pid, wstat);
  142. }
  143. if (verbose)
  144. connection_status();
  145. }
  146. int tcpudpsvd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  147. int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv)
  148. {
  149. char *str_C, *str_t;
  150. char *user;
  151. struct hcc *hccp;
  152. const char *instructs;
  153. char *msg_per_host = NULL;
  154. unsigned len_per_host = len_per_host; /* gcc */
  155. #ifndef SSLSVD
  156. struct bb_uidgid_t ugid;
  157. #endif
  158. bool tcp;
  159. uint16_t local_port;
  160. char *preset_local_hostname = NULL;
  161. char *remote_hostname = remote_hostname; /* for compiler */
  162. char *remote_addr = remote_addr; /* for compiler */
  163. len_and_sockaddr *lsa;
  164. len_and_sockaddr local, remote;
  165. socklen_t sa_len;
  166. int pid;
  167. int sock;
  168. int conn;
  169. unsigned backlog = 20;
  170. unsigned opts;
  171. INIT_G();
  172. tcp = (applet_name[0] == 't');
  173. /* 3+ args, -i at most once, -p implies -h, -v is counter, -b N, -c N */
  174. opt_complementary = "-3:i--i:ph:vv:b+:c+";
  175. #ifdef SSLSVD
  176. opts = getopt32(argv, "+c:C:i:x:u:l:Eb:hpt:vU:/:Z:K:",
  177. &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
  178. &backlog, &str_t, &ssluser, &root, &cert, &key, &verbose
  179. );
  180. #else
  181. /* "+": stop on first non-option */
  182. opts = getopt32(argv, "+c:C:i:x:u:l:Eb:hpt:v",
  183. &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
  184. &backlog, &str_t, &verbose
  185. );
  186. #endif
  187. if (opts & OPT_C) { /* -C n[:message] */
  188. max_per_host = bb_strtou(str_C, &str_C, 10);
  189. if (str_C[0]) {
  190. if (str_C[0] != ':')
  191. bb_show_usage();
  192. msg_per_host = str_C + 1;
  193. len_per_host = strlen(msg_per_host);
  194. }
  195. }
  196. if (max_per_host > cmax)
  197. max_per_host = cmax;
  198. if (opts & OPT_u) {
  199. xget_uidgid(&ugid, user);
  200. }
  201. #ifdef SSLSVD
  202. if (opts & OPT_U) ssluser = optarg;
  203. if (opts & OPT_slash) root = optarg;
  204. if (opts & OPT_Z) cert = optarg;
  205. if (opts & OPT_K) key = optarg;
  206. #endif
  207. argv += optind;
  208. if (!argv[0][0] || LONE_CHAR(argv[0], '0'))
  209. argv[0] = (char*)"0.0.0.0";
  210. /* Per-IP flood protection is not thought-out for UDP */
  211. if (!tcp)
  212. max_per_host = 0;
  213. bb_sanitize_stdio(); /* fd# 0,1,2 must be opened */
  214. #ifdef SSLSVD
  215. sslser = user;
  216. client = 0;
  217. if ((getuid() == 0) && !(opts & OPT_u)) {
  218. xfunc_exitcode = 100;
  219. bb_error_msg_and_die("-U ssluser must be set when running as root");
  220. }
  221. if (opts & OPT_u)
  222. if (!uidgid_get(&sslugid, ssluser, 1)) {
  223. if (errno) {
  224. bb_perror_msg_and_die("can't get user/group: %s", ssluser);
  225. }
  226. bb_error_msg_and_die("unknown user/group %s", ssluser);
  227. }
  228. if (!cert) cert = "./cert.pem";
  229. if (!key) key = cert;
  230. if (matrixSslOpen() < 0)
  231. fatal("cannot initialize ssl");
  232. if (matrixSslReadKeys(&keys, cert, key, 0, ca) < 0) {
  233. if (client)
  234. fatal("cannot read cert, key, or ca file");
  235. fatal("cannot read cert or key file");
  236. }
  237. if (matrixSslNewSession(&ssl, keys, 0, SSL_FLAGS_SERVER) < 0)
  238. fatal("cannot create ssl session");
  239. #endif
  240. sig_block(SIGCHLD);
  241. signal(SIGCHLD, sig_child_handler);
  242. bb_signals(BB_FATAL_SIGS, sig_term_handler);
  243. signal(SIGPIPE, SIG_IGN);
  244. if (max_per_host)
  245. ipsvd_perhost_init(cmax);
  246. local_port = bb_lookup_port(argv[1], tcp ? "tcp" : "udp", 0);
  247. lsa = xhost2sockaddr(argv[0], local_port);
  248. argv += 2;
  249. sock = xsocket(lsa->u.sa.sa_family, tcp ? SOCK_STREAM : SOCK_DGRAM, 0);
  250. setsockopt_reuseaddr(sock);
  251. sa_len = lsa->len; /* I presume sockaddr len stays the same */
  252. xbind(sock, &lsa->u.sa, sa_len);
  253. if (tcp) {
  254. xlisten(sock, backlog);
  255. close_on_exec_on(sock);
  256. } else { /* udp: needed for recv_from_to to work: */
  257. socket_want_pktinfo(sock);
  258. }
  259. /* ndelay_off(sock); - it is the default I think? */
  260. #ifndef SSLSVD
  261. if (opts & OPT_u) {
  262. /* drop permissions */
  263. xsetgid(ugid.gid);
  264. xsetuid(ugid.uid);
  265. }
  266. #endif
  267. if (verbose) {
  268. char *addr = xmalloc_sockaddr2dotted(&lsa->u.sa);
  269. if (opts & OPT_u)
  270. bb_error_msg("listening on %s, starting, uid %u, gid %u", addr,
  271. (unsigned)ugid.uid, (unsigned)ugid.gid);
  272. else
  273. bb_error_msg("listening on %s, starting", addr);
  274. free(addr);
  275. }
  276. /* Main accept() loop */
  277. again:
  278. hccp = NULL;
  279. while (cnum >= cmax)
  280. wait_for_any_sig(); /* expecting SIGCHLD */
  281. /* Accept a connection to fd #0 */
  282. again1:
  283. close(0);
  284. again2:
  285. sig_unblock(SIGCHLD);
  286. local.len = remote.len = sa_len;
  287. if (tcp) {
  288. conn = accept(sock, &remote.u.sa, &remote.len);
  289. } else {
  290. /* In case recv_from_to won't be able to recover local addr.
  291. * Also sets port - recv_from_to is unable to do it. */
  292. local = *lsa;
  293. conn = recv_from_to(sock, NULL, 0, MSG_PEEK,
  294. &remote.u.sa, &local.u.sa, sa_len);
  295. }
  296. sig_block(SIGCHLD);
  297. if (conn < 0) {
  298. if (errno != EINTR)
  299. bb_perror_msg(tcp ? "accept" : "recv");
  300. goto again2;
  301. }
  302. xmove_fd(tcp ? conn : sock, 0);
  303. if (max_per_host) {
  304. /* Drop connection immediately if cur_per_host > max_per_host
  305. * (minimizing load under SYN flood) */
  306. remote_addr = xmalloc_sockaddr2dotted_noport(&remote.u.sa);
  307. cur_per_host = ipsvd_perhost_add(remote_addr, max_per_host, &hccp);
  308. if (cur_per_host > max_per_host) {
  309. /* ipsvd_perhost_add detected that max is exceeded
  310. * (and did not store ip in connection table) */
  311. free(remote_addr);
  312. if (msg_per_host) {
  313. /* don't block or test for errors */
  314. send(0, msg_per_host, len_per_host, MSG_DONTWAIT);
  315. }
  316. goto again1;
  317. }
  318. /* NB: remote_addr is not leaked, it is stored in conn table */
  319. }
  320. if (!tcp) {
  321. /* Voodoo magic: making udp sockets each receive its own
  322. * packets is not trivial, and I still not sure
  323. * I do it 100% right.
  324. * 1) we have to do it before fork()
  325. * 2) order is important - is it right now? */
  326. /* Open new non-connected UDP socket for further clients... */
  327. sock = xsocket(lsa->u.sa.sa_family, SOCK_DGRAM, 0);
  328. setsockopt_reuseaddr(sock);
  329. /* Make plain write/send work for old socket by supplying default
  330. * destination address. This also restricts incoming packets
  331. * to ones coming from this remote IP. */
  332. xconnect(0, &remote.u.sa, sa_len);
  333. /* hole? at this point we have no wildcard udp socket...
  334. * can this cause clients to get "port unreachable" icmp?
  335. * Yup, time window is very small, but it exists (is it?) */
  336. /* ..."open new socket", continued */
  337. xbind(sock, &lsa->u.sa, sa_len);
  338. socket_want_pktinfo(sock);
  339. /* Doesn't work:
  340. * we cannot replace fd #0 - we will lose pending packet
  341. * which is already buffered for us! And we cannot use fd #1
  342. * instead - it will "intercept" all following packets, but child
  343. * does not expect data coming *from fd #1*! */
  344. #if 0
  345. /* Make it so that local addr is fixed to localp->u.sa
  346. * and we don't accidentally accept packets to other local IPs. */
  347. /* NB: we possibly bind to the _very_ same_ address & port as the one
  348. * already bound in parent! This seems to work in Linux.
  349. * (otherwise we can move socket to fd #0 only if bind succeeds) */
  350. close(0);
  351. set_nport(localp, htons(local_port));
  352. xmove_fd(xsocket(localp->u.sa.sa_family, SOCK_DGRAM, 0), 0);
  353. setsockopt_reuseaddr(0); /* crucial */
  354. xbind(0, &localp->u.sa, localp->len);
  355. #endif
  356. }
  357. pid = vfork();
  358. if (pid == -1) {
  359. bb_perror_msg("vfork");
  360. goto again;
  361. }
  362. if (pid != 0) {
  363. /* Parent */
  364. cnum++;
  365. if (verbose)
  366. connection_status();
  367. if (hccp)
  368. hccp->pid = pid;
  369. /* clean up changes done by vforked child */
  370. undo_xsetenv();
  371. goto again;
  372. }
  373. /* Child: prepare env, log, and exec prog */
  374. { /* vfork alert! every xmalloc in this block should be freed! */
  375. char *local_hostname = local_hostname; /* for compiler */
  376. char *local_addr = NULL;
  377. char *free_me0 = NULL;
  378. char *free_me1 = NULL;
  379. char *free_me2 = NULL;
  380. if (verbose || !(opts & OPT_E)) {
  381. if (!max_per_host) /* remote_addr is not yet known */
  382. free_me0 = remote_addr = xmalloc_sockaddr2dotted(&remote.u.sa);
  383. if (opts & OPT_h) {
  384. free_me1 = remote_hostname = xmalloc_sockaddr2host_noport(&remote.u.sa);
  385. if (!remote_hostname) {
  386. bb_error_msg("cannot look up hostname for %s", remote_addr);
  387. remote_hostname = remote_addr;
  388. }
  389. }
  390. /* Find out local IP peer connected to.
  391. * Errors ignored (I'm not paranoid enough to imagine kernel
  392. * which doesn't know local IP). */
  393. if (tcp)
  394. getsockname(0, &local.u.sa, &local.len);
  395. /* else: for UDP it is done earlier by parent */
  396. local_addr = xmalloc_sockaddr2dotted(&local.u.sa);
  397. if (opts & OPT_h) {
  398. local_hostname = preset_local_hostname;
  399. if (!local_hostname) {
  400. free_me2 = local_hostname = xmalloc_sockaddr2host_noport(&local.u.sa);
  401. if (!local_hostname)
  402. bb_error_msg_and_die("cannot look up hostname for %s", local_addr);
  403. }
  404. /* else: local_hostname is not NULL, but is NOT malloced! */
  405. }
  406. }
  407. if (verbose) {
  408. pid = getpid();
  409. if (max_per_host) {
  410. bb_error_msg("concurrency %s %u/%u",
  411. remote_addr,
  412. cur_per_host, max_per_host);
  413. }
  414. bb_error_msg((opts & OPT_h)
  415. ? "start %u %s-%s (%s-%s)"
  416. : "start %u %s-%s",
  417. pid,
  418. local_addr, remote_addr,
  419. local_hostname, remote_hostname);
  420. }
  421. if (!(opts & OPT_E)) {
  422. /* setup ucspi env */
  423. const char *proto = tcp ? "TCP" : "UDP";
  424. /* Extract "original" destination addr:port
  425. * from Linux firewall. Useful when you redirect
  426. * an outbond connection to local handler, and it needs
  427. * to know where it originally tried to connect */
  428. if (tcp && getsockopt(0, SOL_IP, SO_ORIGINAL_DST, &local.u.sa, &local.len) == 0) {
  429. char *addr = xmalloc_sockaddr2dotted(&local.u.sa);
  430. xsetenv_plain("TCPORIGDSTADDR", addr);
  431. free(addr);
  432. }
  433. xsetenv_plain("PROTO", proto);
  434. xsetenv_proto(proto, "LOCALADDR", local_addr);
  435. xsetenv_proto(proto, "REMOTEADDR", remote_addr);
  436. if (opts & OPT_h) {
  437. xsetenv_proto(proto, "LOCALHOST", local_hostname);
  438. xsetenv_proto(proto, "REMOTEHOST", remote_hostname);
  439. }
  440. //compat? xsetenv_proto(proto, "REMOTEINFO", "");
  441. /* additional */
  442. if (cur_per_host > 0) /* can not be true for udp */
  443. xsetenv_plain("TCPCONCURRENCY", utoa(cur_per_host));
  444. }
  445. free(local_addr);
  446. free(free_me0);
  447. free(free_me1);
  448. free(free_me2);
  449. }
  450. xdup2(0, 1);
  451. signal(SIGPIPE, SIG_DFL); /* this one was SIG_IGNed */
  452. /* Non-ignored signals revert to SIG_DFL on exec anyway */
  453. /*signal(SIGCHLD, SIG_DFL);*/
  454. sig_unblock(SIGCHLD);
  455. #ifdef SSLSVD
  456. strcpy(id, utoa(pid));
  457. ssl_io(0, argv);
  458. #else
  459. BB_EXECVP(argv[0], argv);
  460. #endif
  461. bb_perror_msg_and_die("exec '%s'", argv[0]);
  462. }
  463. /*
  464. tcpsvd [-hpEvv] [-c n] [-C n:msg] [-b n] [-u user] [-l name]
  465. [-i dir|-x cdb] [ -t sec] host port prog
  466. tcpsvd creates a TCP/IP socket, binds it to the address host:port,
  467. and listens on the socket for incoming connections.
  468. On each incoming connection, tcpsvd conditionally runs a program,
  469. with standard input reading from the socket, and standard output
  470. writing to the socket, to handle this connection. tcpsvd keeps
  471. listening on the socket for new connections, and can handle
  472. multiple connections simultaneously.
  473. tcpsvd optionally checks for special instructions depending
  474. on the IP address or hostname of the client that initiated
  475. the connection, see ipsvd-instruct(5).
  476. host
  477. host either is a hostname, or a dotted-decimal IP address,
  478. or 0. If host is 0, tcpsvd accepts connections to any local
  479. IP address.
  480. * busybox accepts IPv6 addresses and host:port pairs too
  481. In this case second parameter is ignored
  482. port
  483. tcpsvd accepts connections to host:port. port may be a name
  484. from /etc/services or a number.
  485. prog
  486. prog consists of one or more arguments. For each connection,
  487. tcpsvd normally runs prog, with file descriptor 0 reading from
  488. the network, and file descriptor 1 writing to the network.
  489. By default it also sets up TCP-related environment variables,
  490. see tcp-environ(5)
  491. -i dir
  492. read instructions for handling new connections from the instructions
  493. directory dir. See ipsvd-instruct(5) for details.
  494. * ignored by busyboxed version
  495. -x cdb
  496. read instructions for handling new connections from the constant database
  497. cdb. The constant database normally is created from an instructions
  498. directory by running ipsvd-cdb(8).
  499. * ignored by busyboxed version
  500. -t sec
  501. timeout. This option only takes effect if the -i option is given.
  502. While checking the instructions directory, check the time of last access
  503. of the file that matches the clients address or hostname if any, discard
  504. and remove the file if it wasn't accessed within the last sec seconds;
  505. tcpsvd does not discard or remove a file if the user's write permission
  506. is not set, for those files the timeout is disabled. Default is 0,
  507. which means that the timeout is disabled.
  508. * ignored by busyboxed version
  509. -l name
  510. local hostname. Do not look up the local hostname in DNS, but use name
  511. as hostname. This option must be set if tcpsvd listens on port 53
  512. to avoid loops.
  513. -u user[:group]
  514. drop permissions. Switch user ID to user's UID, and group ID to user's
  515. primary GID after creating and binding to the socket. If user is followed
  516. by a colon and a group name, the group ID is switched to the GID of group
  517. instead. All supplementary groups are removed.
  518. -c n
  519. concurrency. Handle up to n connections simultaneously. Default is 30.
  520. If there are n connections active, tcpsvd defers acceptance of a new
  521. connection until an active connection is closed.
  522. -C n[:msg]
  523. per host concurrency. Allow only up to n connections from the same IP
  524. address simultaneously. If there are n active connections from one IP
  525. address, new incoming connections from this IP address are closed
  526. immediately. If n is followed by :msg, the message msg is written
  527. to the client if possible, before closing the connection. By default
  528. msg is empty. See ipsvd-instruct(5) for supported escape sequences in msg.
  529. For each accepted connection, the current per host concurrency is
  530. available through the environment variable TCPCONCURRENCY. n and msg
  531. can be overwritten by ipsvd(7) instructions, see ipsvd-instruct(5).
  532. By default tcpsvd doesn't keep track of connections.
  533. -h
  534. Look up the client's hostname in DNS.
  535. -p
  536. paranoid. After looking up the client's hostname in DNS, look up the IP
  537. addresses in DNS for that hostname, and forget about the hostname
  538. if none of the addresses match the client's IP address. You should
  539. set this option if you use hostname based instructions. The -p option
  540. implies the -h option.
  541. * ignored by busyboxed version
  542. -b n
  543. backlog. Allow a backlog of approximately n TCP SYNs. On some systems n
  544. is silently limited. Default is 20.
  545. -E
  546. no special environment. Do not set up TCP-related environment variables.
  547. -v
  548. verbose. Print verbose messsages to standard output.
  549. -vv
  550. more verbose. Print more verbose messages to standard output.
  551. * no difference between -v and -vv in busyboxed version
  552. */