Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 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 | * |
Denis Vlasenko | d18f52b | 2008-03-02 12:53:15 +0000 | [diff] [blame] | 5 | * Copyright (C) 2007 Denys Vlasenko. |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Denis Vlasenko | 4866e90 | 2008-03-17 09:17:27 +0000 | [diff] [blame] | 10 | /* Based on ipsvd-0.12.1. This tcpsvd accepts all options |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 11 | * which are supported by one from ipsvd-0.12.1, but not all are |
| 12 | * functional. See help text at the end of this file for details. |
| 13 | * |
| 14 | * Code inside "#ifdef SSLSVD" is for sslsvd and is currently unused. |
| 15 | * |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 16 | * 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 Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 20 | * |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 21 | * TCPORIGDSTADDR is Busybox-specific addition. |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 22 | * |
| 23 | * udp server is hacked up by reusing TCP code. It has the following |
| 24 | * limitation inherent in Unix DGRAM sockets implementation: |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 25 | * - local IP address is retrieved (using recvmsg voodoo) but |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 26 | * child's socket is not bound to it (bind cannot be called on |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 27 | * already bound socket). Thus it still can emit outgoing packets |
Denis Vlasenko | beaca81 | 2007-04-13 16:32:26 +0000 | [diff] [blame] | 28 | * with wrong source IP... |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 29 | * - don't know how to retrieve ORIGDST for udp. |
| 30 | */ |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 31 | //config:config TCPSVD |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 32 | //config: bool "tcpsvd (13 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 33 | //config: default y |
| 34 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 35 | //config: tcpsvd listens on a TCP port and runs a program for each new |
| 36 | //config: connection. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 37 | //config: |
| 38 | //config:config UDPSVD |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 39 | //config: bool "udpsvd (13 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 40 | //config: default y |
| 41 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 42 | //config: udpsvd listens on an UDP port and runs a program for each new |
| 43 | //config: connection. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 44 | |
| 45 | //applet:IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, tcpsvd)) |
| 46 | //applet:IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, udpsvd)) |
| 47 | |
| 48 | //kbuild:lib-$(CONFIG_TCPSVD) += tcpudp.o tcpudp_perhost.o |
| 49 | //kbuild:lib-$(CONFIG_UDPSVD) += tcpudp.o tcpudp_perhost.o |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 50 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 51 | //usage:#define tcpsvd_trivial_usage |
| 52 | //usage: "[-hEv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] IP PORT PROG" |
| 53 | /* with not-implemented options: */ |
| 54 | /* //usage: "[-hpEvv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] [-i DIR|-x CDB] [-t SEC] IP PORT PROG" */ |
| 55 | //usage:#define tcpsvd_full_usage "\n\n" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 56 | //usage: "Create TCP socket, bind to IP:PORT and listen for incoming connections.\n" |
| 57 | //usage: "Run PROG for each connection.\n" |
| 58 | //usage: "\n IP PORT IP:PORT to listen on" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 59 | //usage: "\n PROG ARGS Program to run" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 60 | //usage: "\n -u USER[:GRP] Change to user/group after bind" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 61 | //usage: "\n -c N Up to N connections simultaneously (default 30)" |
| 62 | //usage: "\n -b N Allow backlog of approximately N TCP SYNs (default 20)" |
| 63 | //usage: "\n -C N[:MSG] Allow only up to N connections from the same IP:" |
| 64 | //usage: "\n new connections from this IP address are closed" |
| 65 | //usage: "\n immediately, MSG is written to the peer before close" |
| 66 | //usage: "\n -E Don't set up environment" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 67 | //usage: "\n -h Look up peer's hostname" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 68 | //usage: "\n -l NAME Local hostname (else look up local hostname in DNS)" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 69 | //usage: "\n -v Verbose" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 70 | //usage: "\n" |
| 71 | //usage: "\nEnvironment if no -E:" |
| 72 | //usage: "\nPROTO='TCP'" |
| 73 | //usage: "\nTCPREMOTEADDR='ip:port'" IF_FEATURE_IPV6(" ('[ip]:port' for IPv6)") |
| 74 | //usage: "\nTCPLOCALADDR='ip:port'" |
| 75 | //usage: "\nTCPORIGDSTADDR='ip:port' of destination before firewall" |
| 76 | //usage: "\n Useful for REDIRECTed-to-local connections:" |
| 77 | //usage: "\n iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to 8080" |
| 78 | //usage: "\nTCPCONCURRENCY=num_of_connects_from_this_ip" |
| 79 | //usage: "\nIf -h:" |
| 80 | //usage: "\nTCPLOCALHOST='hostname' (-l NAME is used if specified)" |
| 81 | //usage: "\nTCPREMOTEHOST='hostname'" |
| 82 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 83 | //usage: |
| 84 | //usage:#define udpsvd_trivial_usage |
| 85 | //usage: "[-hEv] [-c N] [-u USER] [-l NAME] IP PORT PROG" |
| 86 | //usage:#define udpsvd_full_usage "\n\n" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 87 | //usage: "Create UDP socket, bind to IP:PORT and wait for incoming packets.\n" |
| 88 | //usage: "Run PROG for each packet, redirecting all further packets with same\n" |
| 89 | //usage: "peer ip:port to it.\n" |
| 90 | //usage: "\n IP PORT IP:PORT to listen on" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 91 | //usage: "\n PROG ARGS Program to run" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 92 | //usage: "\n -u USER[:GRP] Change to user/group after bind" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 93 | //usage: "\n -c N Up to N connections simultaneously (default 30)" |
| 94 | //usage: "\n -E Don't set up environment" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 95 | //usage: "\n -h Look up peer's hostname" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 96 | //usage: "\n -l NAME Local hostname (else look up local hostname in DNS)" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 97 | //usage: "\n -v Verbose" |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 98 | //usage: "\n" |
| 99 | //usage: "\nEnvironment if no -E:" |
| 100 | //usage: "\nPROTO='UDP'" |
| 101 | //usage: "\nUDPREMOTEADDR='ip:port'" IF_FEATURE_IPV6(" ('[ip]:port' for IPv6)") |
| 102 | //usage: "\nUDPLOCALADDR='ip:port'" |
| 103 | //usage: "\nIf -h:" |
| 104 | //usage: "\nUDPLOCALHOST='hostname' (-l NAME is used if specified)" |
| 105 | //usage: "\nUDPREMOTEHOST='hostname'" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 106 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 107 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 108 | #include "common_bufsiz.h" |
Jeremie Koenig | 2ea12d8 | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 109 | |
Jeremie Koenig | 2ea12d8 | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 110 | #ifdef __linux__ |
Denys Vlasenko | 7890035 | 2017-01-02 10:46:08 +0100 | [diff] [blame] | 111 | /* from linux/netfilter_ipv4.h: */ |
| 112 | # undef SO_ORIGINAL_DST |
| 113 | # define SO_ORIGINAL_DST 80 |
Jeremie Koenig | 2ea12d8 | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 114 | #endif |
Denis Vlasenko | 165f5b3 | 2008-03-31 20:30:38 +0000 | [diff] [blame] | 115 | |
Denis Vlasenko | 4866e90 | 2008-03-17 09:17:27 +0000 | [diff] [blame] | 116 | // TODO: move into this file: |
| 117 | #include "tcpudp_perhost.h" |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 118 | |
| 119 | #ifdef SSLSVD |
| 120 | #include "matrixSsl.h" |
| 121 | #include "ssl_io.h" |
| 122 | #endif |
| 123 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 124 | struct globals { |
| 125 | unsigned verbose; |
| 126 | unsigned max_per_host; |
| 127 | unsigned cur_per_host; |
| 128 | unsigned cnum; |
Denis Vlasenko | 3f5fdc7 | 2007-10-14 04:55:59 +0000 | [diff] [blame] | 129 | unsigned cmax; |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 130 | char **env_cur; |
| 131 | char *env_var[1]; /* actually bigger */ |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 132 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 133 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 134 | #define verbose (G.verbose ) |
| 135 | #define max_per_host (G.max_per_host) |
| 136 | #define cur_per_host (G.cur_per_host) |
| 137 | #define cnum (G.cnum ) |
| 138 | #define cmax (G.cmax ) |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 139 | #define env_cur (G.env_cur ) |
| 140 | #define env_var (G.env_var ) |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 141 | #define INIT_G() do { \ |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 142 | setup_common_bufsiz(); \ |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 143 | cmax = 30; \ |
| 144 | env_cur = &env_var[0]; \ |
| 145 | } while (0) |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 146 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 147 | |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 148 | /* We have to be careful about leaking memory in repeated setenv's */ |
| 149 | static void xsetenv_plain(const char *n, const char *v) |
| 150 | { |
| 151 | char *var = xasprintf("%s=%s", n, v); |
| 152 | *env_cur++ = var; |
| 153 | putenv(var); |
| 154 | } |
| 155 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 156 | static void xsetenv_proto(const char *proto, const char *n, const char *v) |
| 157 | { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 158 | char *var = xasprintf("%s%s=%s", proto, n, v); |
| 159 | *env_cur++ = var; |
| 160 | putenv(var); |
| 161 | } |
| 162 | |
| 163 | static void undo_xsetenv(void) |
| 164 | { |
| 165 | char **pp = env_cur = &env_var[0]; |
| 166 | while (*pp) { |
| 167 | char *var = *pp; |
Denys Vlasenko | dd8adde | 2010-06-24 05:00:50 +0200 | [diff] [blame] | 168 | bb_unsetenv_and_free(var); |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 169 | *pp++ = NULL; |
| 170 | } |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 171 | } |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 172 | |
| 173 | static void sig_term_handler(int sig) |
| 174 | { |
| 175 | if (verbose) |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 176 | bb_error_msg("got signal %u, exit", sig); |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 177 | kill_myself_with_sig(sig); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | /* Little bloated, but tries to give accurate info how child exited. |
| 181 | * Makes easier to spot segfaulting children etc... */ |
| 182 | static void print_waitstat(unsigned pid, int wstat) |
| 183 | { |
| 184 | unsigned e = 0; |
| 185 | const char *cause = "?exit"; |
| 186 | |
| 187 | if (WIFEXITED(wstat)) { |
| 188 | cause++; |
| 189 | e = WEXITSTATUS(wstat); |
| 190 | } else if (WIFSIGNALED(wstat)) { |
| 191 | cause = "signal"; |
| 192 | e = WTERMSIG(wstat); |
| 193 | } |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 194 | bb_error_msg("end %d %s %d", pid, cause, e); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 197 | /* Must match getopt32 in main! */ |
| 198 | enum { |
| 199 | OPT_c = (1 << 0), |
| 200 | OPT_C = (1 << 1), |
| 201 | OPT_i = (1 << 2), |
| 202 | OPT_x = (1 << 3), |
| 203 | OPT_u = (1 << 4), |
| 204 | OPT_l = (1 << 5), |
| 205 | OPT_E = (1 << 6), |
| 206 | OPT_b = (1 << 7), |
| 207 | OPT_h = (1 << 8), |
| 208 | OPT_p = (1 << 9), |
| 209 | OPT_t = (1 << 10), |
| 210 | OPT_v = (1 << 11), |
| 211 | OPT_V = (1 << 12), |
| 212 | OPT_U = (1 << 13), /* from here: sslsvd only */ |
| 213 | OPT_slash = (1 << 14), |
| 214 | OPT_Z = (1 << 15), |
| 215 | OPT_K = (1 << 16), |
| 216 | }; |
| 217 | |
| 218 | static void connection_status(void) |
| 219 | { |
Denis Vlasenko | f87f495 | 2007-08-24 10:27:41 +0000 | [diff] [blame] | 220 | /* "only 1 client max" desn't need this */ |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 221 | if (cmax > 1) |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 222 | bb_error_msg("status %u/%u", cnum, cmax); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 225 | static void sig_child_handler(int sig UNUSED_PARAM) |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 226 | { |
| 227 | int wstat; |
Denis Vlasenko | 3854c5d | 2008-11-06 22:39:57 +0000 | [diff] [blame] | 228 | pid_t pid; |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 229 | |
Denis Vlasenko | fb0eba7 | 2008-01-02 19:55:04 +0000 | [diff] [blame] | 230 | while ((pid = wait_any_nohang(&wstat)) > 0) { |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 231 | if (max_per_host) |
| 232 | ipsvd_perhost_remove(pid); |
| 233 | if (cnum) |
| 234 | cnum--; |
| 235 | if (verbose) |
| 236 | print_waitstat(pid, wstat); |
| 237 | } |
| 238 | if (verbose) |
| 239 | connection_status(); |
| 240 | } |
| 241 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 242 | int tcpudpsvd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 243 | int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 244 | { |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 245 | char *str_C, *str_t; |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 246 | char *user; |
| 247 | struct hcc *hccp; |
| 248 | const char *instructs; |
| 249 | char *msg_per_host = NULL; |
| 250 | unsigned len_per_host = len_per_host; /* gcc */ |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 251 | #ifndef SSLSVD |
| 252 | struct bb_uidgid_t ugid; |
| 253 | #endif |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 254 | bool tcp; |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 255 | uint16_t local_port; |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 256 | char *preset_local_hostname = NULL; |
| 257 | char *remote_hostname = remote_hostname; /* for compiler */ |
| 258 | char *remote_addr = remote_addr; /* for compiler */ |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 259 | len_and_sockaddr *lsa; |
| 260 | len_and_sockaddr local, remote; |
| 261 | socklen_t sa_len; |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 262 | int pid; |
| 263 | int sock; |
| 264 | int conn; |
| 265 | unsigned backlog = 20; |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 266 | unsigned opts; |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 267 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 268 | INIT_G(); |
| 269 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 270 | tcp = (applet_name[0] == 't'); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 271 | |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 272 | #ifdef SSLSVD |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 273 | opts = getopt32(argv, "^+" |
| 274 | "c:+C:i:x:u:l:Eb:+hpt:vU:/:Z:K:" /* -c NUM, -b NUM */ |
| 275 | /* 3+ args, -i at most once, -p implies -h, -v is a counter */ |
| 276 | "\0" "-3:i--i:ph:vv", |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 277 | &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname, |
| 278 | &backlog, &str_t, &ssluser, &root, &cert, &key, &verbose |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 279 | ); |
| 280 | #else |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 281 | /* "+": stop on first non-option */ |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 282 | opts = getopt32(argv, "+c:+C:i:x:u:l:Eb:hpt:v", |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 283 | &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname, |
| 284 | &backlog, &str_t, &verbose |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 285 | ); |
| 286 | #endif |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 287 | if (opts & OPT_C) { /* -C n[:message] */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 288 | max_per_host = bb_strtou(str_C, &str_C, 10); |
| 289 | if (str_C[0]) { |
| 290 | if (str_C[0] != ':') |
| 291 | bb_show_usage(); |
| 292 | msg_per_host = str_C + 1; |
| 293 | len_per_host = strlen(msg_per_host); |
| 294 | } |
| 295 | } |
| 296 | if (max_per_host > cmax) |
| 297 | max_per_host = cmax; |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 298 | if (opts & OPT_u) { |
Bernhard Reutner-Fischer | d73cbd3 | 2008-07-21 14:41:33 +0000 | [diff] [blame] | 299 | xget_uidgid(&ugid, user); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 300 | } |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 301 | #ifdef SSLSVD |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 302 | if (opts & OPT_U) ssluser = optarg; |
| 303 | if (opts & OPT_slash) root = optarg; |
| 304 | if (opts & OPT_Z) cert = optarg; |
| 305 | if (opts & OPT_K) key = optarg; |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 306 | #endif |
| 307 | argv += optind; |
| 308 | if (!argv[0][0] || LONE_CHAR(argv[0], '0')) |
| 309 | argv[0] = (char*)"0.0.0.0"; |
| 310 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 311 | /* Per-IP flood protection is not thought-out for UDP */ |
| 312 | if (!tcp) |
| 313 | max_per_host = 0; |
| 314 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 315 | bb_sanitize_stdio(); /* fd# 0,1,2 must be opened */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 316 | |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 317 | #ifdef SSLSVD |
| 318 | sslser = user; |
| 319 | client = 0; |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 320 | if ((getuid() == 0) && !(opts & OPT_u)) { |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 321 | xfunc_exitcode = 100; |
Denys Vlasenko | b2e5fc3 | 2009-11-25 14:52:47 +0100 | [diff] [blame] | 322 | bb_error_msg_and_die(bb_msg_you_must_be_root); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 323 | } |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 324 | if (opts & OPT_u) |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 325 | if (!uidgid_get(&sslugid, ssluser, 1)) { |
| 326 | if (errno) { |
Bernhard Reutner-Fischer | d73cbd3 | 2008-07-21 14:41:33 +0000 | [diff] [blame] | 327 | bb_perror_msg_and_die("can't get user/group: %s", ssluser); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 328 | } |
Bernhard Reutner-Fischer | d73cbd3 | 2008-07-21 14:41:33 +0000 | [diff] [blame] | 329 | bb_error_msg_and_die("unknown user/group %s", ssluser); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 330 | } |
| 331 | if (!cert) cert = "./cert.pem"; |
| 332 | if (!key) key = cert; |
| 333 | if (matrixSslOpen() < 0) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 334 | fatal("can't initialize ssl"); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 335 | if (matrixSslReadKeys(&keys, cert, key, 0, ca) < 0) { |
| 336 | if (client) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 337 | fatal("can't read cert, key, or ca file"); |
| 338 | fatal("can't read cert or key file"); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 339 | } |
| 340 | if (matrixSslNewSession(&ssl, keys, 0, SSL_FLAGS_SERVER) < 0) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 341 | fatal("can't create ssl session"); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 342 | #endif |
| 343 | |
| 344 | sig_block(SIGCHLD); |
| 345 | signal(SIGCHLD, sig_child_handler); |
Denis Vlasenko | cf7cf62 | 2008-03-19 19:38:46 +0000 | [diff] [blame] | 346 | bb_signals(BB_FATAL_SIGS, sig_term_handler); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 347 | signal(SIGPIPE, SIG_IGN); |
| 348 | |
| 349 | if (max_per_host) |
| 350 | ipsvd_perhost_init(cmax); |
| 351 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 352 | local_port = bb_lookup_port(argv[1], tcp ? "tcp" : "udp", 0); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 353 | lsa = xhost2sockaddr(argv[0], local_port); |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 354 | argv += 2; |
| 355 | |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 356 | sock = xsocket(lsa->u.sa.sa_family, tcp ? SOCK_STREAM : SOCK_DGRAM, 0); |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 357 | setsockopt_reuseaddr(sock); |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 358 | sa_len = lsa->len; /* I presume sockaddr len stays the same */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 359 | xbind(sock, &lsa->u.sa, sa_len); |
Denys Vlasenko | 16635cc | 2009-06-13 22:49:08 +0200 | [diff] [blame] | 360 | if (tcp) { |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 361 | xlisten(sock, backlog); |
Denys Vlasenko | 16635cc | 2009-06-13 22:49:08 +0200 | [diff] [blame] | 362 | close_on_exec_on(sock); |
| 363 | } else { /* udp: needed for recv_from_to to work: */ |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 364 | socket_want_pktinfo(sock); |
Denys Vlasenko | 16635cc | 2009-06-13 22:49:08 +0200 | [diff] [blame] | 365 | } |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 366 | /* ndelay_off(sock); - it is the default I think? */ |
| 367 | |
| 368 | #ifndef SSLSVD |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 369 | if (opts & OPT_u) { |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 370 | /* drop permissions */ |
| 371 | xsetgid(ugid.gid); |
| 372 | xsetuid(ugid.uid); |
| 373 | } |
| 374 | #endif |
| 375 | |
| 376 | if (verbose) { |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 377 | char *addr = xmalloc_sockaddr2dotted(&lsa->u.sa); |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 378 | if (opts & OPT_u) |
| 379 | bb_error_msg("listening on %s, starting, uid %u, gid %u", addr, |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 380 | (unsigned)ugid.uid, (unsigned)ugid.gid); |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 381 | else |
| 382 | bb_error_msg("listening on %s, starting", addr); |
| 383 | free(addr); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 386 | /* Main accept() loop */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 387 | |
| 388 | again: |
| 389 | hccp = NULL; |
| 390 | |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 391 | again1: |
| 392 | close(0); |
| 393 | /* It's important to close(0) _before_ wait loop: |
| 394 | * fd#0 can be a shared connection fd. |
| 395 | * If kept open by us, peer can't detect PROG closing it. |
| 396 | */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 397 | while (cnum >= cmax) |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 398 | wait_for_any_sig(); /* expecting SIGCHLD */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 399 | |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 400 | again2: |
| 401 | sig_unblock(SIGCHLD); |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 402 | local.len = remote.len = sa_len; |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 403 | if (tcp) { |
Denys Vlasenko | ec1ea16 | 2016-10-07 15:56:47 +0200 | [diff] [blame] | 404 | /* Accept a connection to fd #0 */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 405 | conn = accept(sock, &remote.u.sa, &remote.len); |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 406 | } else { |
Denis Vlasenko | 1ca332b | 2007-04-04 17:49:47 +0000 | [diff] [blame] | 407 | /* In case recv_from_to won't be able to recover local addr. |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 408 | * Also sets port - recv_from_to is unable to do it. */ |
| 409 | local = *lsa; |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 410 | conn = recv_from_to(sock, NULL, 0, MSG_PEEK, |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 411 | &remote.u.sa, &local.u.sa, sa_len); |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 412 | } |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 413 | sig_block(SIGCHLD); |
| 414 | if (conn < 0) { |
| 415 | if (errno != EINTR) |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 416 | bb_perror_msg(tcp ? "accept" : "recv"); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 417 | goto again2; |
| 418 | } |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 419 | xmove_fd(tcp ? conn : sock, 0); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 420 | |
| 421 | if (max_per_host) { |
| 422 | /* Drop connection immediately if cur_per_host > max_per_host |
| 423 | * (minimizing load under SYN flood) */ |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 424 | remote_addr = xmalloc_sockaddr2dotted_noport(&remote.u.sa); |
| 425 | cur_per_host = ipsvd_perhost_add(remote_addr, max_per_host, &hccp); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 426 | if (cur_per_host > max_per_host) { |
| 427 | /* ipsvd_perhost_add detected that max is exceeded |
| 428 | * (and did not store ip in connection table) */ |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 429 | free(remote_addr); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 430 | if (msg_per_host) { |
| 431 | /* don't block or test for errors */ |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 432 | send(0, msg_per_host, len_per_host, MSG_DONTWAIT); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 433 | } |
| 434 | goto again1; |
| 435 | } |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 436 | /* NB: remote_addr is not leaked, it is stored in conn table */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 437 | } |
| 438 | |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 439 | if (!tcp) { |
| 440 | /* Voodoo magic: making udp sockets each receive its own |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 441 | * packets is not trivial, and I still not sure |
| 442 | * I do it 100% right. |
| 443 | * 1) we have to do it before fork() |
| 444 | * 2) order is important - is it right now? */ |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 445 | |
Denis Vlasenko | 4cf1d08 | 2008-03-12 23:13:50 +0000 | [diff] [blame] | 446 | /* Open new non-connected UDP socket for further clients... */ |
| 447 | sock = xsocket(lsa->u.sa.sa_family, SOCK_DGRAM, 0); |
| 448 | setsockopt_reuseaddr(sock); |
| 449 | /* Make plain write/send work for old socket by supplying default |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 450 | * destination address. This also restricts incoming packets |
| 451 | * to ones coming from this remote IP. */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 452 | xconnect(0, &remote.u.sa, sa_len); |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 453 | /* hole? at this point we have no wildcard udp socket... |
Denis Vlasenko | 7946879 | 2007-04-04 11:02:55 +0000 | [diff] [blame] | 454 | * can this cause clients to get "port unreachable" icmp? |
| 455 | * Yup, time window is very small, but it exists (is it?) */ |
Denis Vlasenko | 4cf1d08 | 2008-03-12 23:13:50 +0000 | [diff] [blame] | 456 | /* ..."open new socket", continued */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 457 | xbind(sock, &lsa->u.sa, sa_len); |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 458 | socket_want_pktinfo(sock); |
Denis Vlasenko | 7946879 | 2007-04-04 11:02:55 +0000 | [diff] [blame] | 459 | |
| 460 | /* Doesn't work: |
| 461 | * we cannot replace fd #0 - we will lose pending packet |
| 462 | * which is already buffered for us! And we cannot use fd #1 |
| 463 | * instead - it will "intercept" all following packets, but child |
Denis Vlasenko | f87f495 | 2007-08-24 10:27:41 +0000 | [diff] [blame] | 464 | * does not expect data coming *from fd #1*! */ |
Denis Vlasenko | 7946879 | 2007-04-04 11:02:55 +0000 | [diff] [blame] | 465 | #if 0 |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 466 | /* Make it so that local addr is fixed to localp->u.sa |
Denis Vlasenko | 7946879 | 2007-04-04 11:02:55 +0000 | [diff] [blame] | 467 | * and we don't accidentally accept packets to other local IPs. */ |
| 468 | /* NB: we possibly bind to the _very_ same_ address & port as the one |
| 469 | * already bound in parent! This seems to work in Linux. |
| 470 | * (otherwise we can move socket to fd #0 only if bind succeeds) */ |
| 471 | close(0); |
Denys Vlasenko | ca18311 | 2011-04-07 17:52:20 +0200 | [diff] [blame] | 472 | set_nport(&localp->u.sa, htons(local_port)); |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 473 | xmove_fd(xsocket(localp->u.sa.sa_family, SOCK_DGRAM, 0), 0); |
Denis Vlasenko | 7946879 | 2007-04-04 11:02:55 +0000 | [diff] [blame] | 474 | setsockopt_reuseaddr(0); /* crucial */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 475 | xbind(0, &localp->u.sa, localp->len); |
Denis Vlasenko | 7946879 | 2007-04-04 11:02:55 +0000 | [diff] [blame] | 476 | #endif |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 477 | } |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 478 | |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 479 | pid = vfork(); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 480 | if (pid == -1) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 481 | bb_perror_msg("vfork"); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 482 | goto again; |
| 483 | } |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 484 | |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 485 | if (pid != 0) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 486 | /* Parent */ |
Denis Vlasenko | 02fd668 | 2007-04-03 23:23:10 +0000 | [diff] [blame] | 487 | cnum++; |
| 488 | if (verbose) |
| 489 | connection_status(); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 490 | if (hccp) |
| 491 | hccp->pid = pid; |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 492 | /* clean up changes done by vforked child */ |
| 493 | undo_xsetenv(); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 494 | goto again; |
| 495 | } |
| 496 | |
| 497 | /* Child: prepare env, log, and exec prog */ |
| 498 | |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 499 | { /* vfork alert! every xmalloc in this block should be freed! */ |
| 500 | char *local_hostname = local_hostname; /* for compiler */ |
| 501 | char *local_addr = NULL; |
| 502 | char *free_me0 = NULL; |
| 503 | char *free_me1 = NULL; |
| 504 | char *free_me2 = NULL; |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 505 | |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 506 | if (verbose || !(opts & OPT_E)) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 507 | if (!max_per_host) /* remote_addr is not yet known */ |
| 508 | free_me0 = remote_addr = xmalloc_sockaddr2dotted(&remote.u.sa); |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 509 | if (opts & OPT_h) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 510 | free_me1 = remote_hostname = xmalloc_sockaddr2host_noport(&remote.u.sa); |
| 511 | if (!remote_hostname) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 512 | bb_error_msg("can't look up hostname for %s", remote_addr); |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 513 | remote_hostname = remote_addr; |
| 514 | } |
| 515 | } |
| 516 | /* Find out local IP peer connected to. |
| 517 | * Errors ignored (I'm not paranoid enough to imagine kernel |
| 518 | * which doesn't know local IP). */ |
| 519 | if (tcp) |
| 520 | getsockname(0, &local.u.sa, &local.len); |
| 521 | /* else: for UDP it is done earlier by parent */ |
| 522 | local_addr = xmalloc_sockaddr2dotted(&local.u.sa); |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 523 | if (opts & OPT_h) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 524 | local_hostname = preset_local_hostname; |
| 525 | if (!local_hostname) { |
| 526 | free_me2 = local_hostname = xmalloc_sockaddr2host_noport(&local.u.sa); |
| 527 | if (!local_hostname) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 528 | bb_error_msg_and_die("can't look up hostname for %s", local_addr); |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 529 | } |
| 530 | /* else: local_hostname is not NULL, but is NOT malloced! */ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 531 | } |
| 532 | } |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 533 | if (verbose) { |
| 534 | pid = getpid(); |
| 535 | if (max_per_host) { |
| 536 | bb_error_msg("concurrency %s %u/%u", |
| 537 | remote_addr, |
| 538 | cur_per_host, max_per_host); |
| 539 | } |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 540 | bb_error_msg((opts & OPT_h) |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 541 | ? "start %u %s-%s (%s-%s)" |
| 542 | : "start %u %s-%s", |
| 543 | pid, |
| 544 | local_addr, remote_addr, |
| 545 | local_hostname, remote_hostname); |
Denis Vlasenko | 64a1512 | 2007-04-04 10:16:15 +0000 | [diff] [blame] | 546 | } |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 547 | |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 548 | if (!(opts & OPT_E)) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 549 | /* setup ucspi env */ |
| 550 | const char *proto = tcp ? "TCP" : "UDP"; |
| 551 | |
Jeremie Koenig | 2ea12d8 | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 552 | #ifdef SO_ORIGINAL_DST |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 553 | /* Extract "original" destination addr:port |
| 554 | * from Linux firewall. Useful when you redirect |
| 555 | * an outbond connection to local handler, and it needs |
| 556 | * to know where it originally tried to connect */ |
| 557 | if (tcp && getsockopt(0, SOL_IP, SO_ORIGINAL_DST, &local.u.sa, &local.len) == 0) { |
| 558 | char *addr = xmalloc_sockaddr2dotted(&local.u.sa); |
| 559 | xsetenv_plain("TCPORIGDSTADDR", addr); |
| 560 | free(addr); |
| 561 | } |
Jeremie Koenig | 2ea12d8 | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 562 | #endif |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 563 | xsetenv_plain("PROTO", proto); |
| 564 | xsetenv_proto(proto, "LOCALADDR", local_addr); |
| 565 | xsetenv_proto(proto, "REMOTEADDR", remote_addr); |
Denys Vlasenko | d6513cf | 2009-07-19 23:07:13 +0200 | [diff] [blame] | 566 | if (opts & OPT_h) { |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 567 | xsetenv_proto(proto, "LOCALHOST", local_hostname); |
| 568 | xsetenv_proto(proto, "REMOTEHOST", remote_hostname); |
| 569 | } |
| 570 | //compat? xsetenv_proto(proto, "REMOTEINFO", ""); |
| 571 | /* additional */ |
| 572 | if (cur_per_host > 0) /* can not be true for udp */ |
| 573 | xsetenv_plain("TCPCONCURRENCY", utoa(cur_per_host)); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 574 | } |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 575 | free(local_addr); |
| 576 | free(free_me0); |
| 577 | free(free_me1); |
| 578 | free(free_me2); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Denis Vlasenko | aefed94 | 2008-03-17 08:35:44 +0000 | [diff] [blame] | 581 | xdup2(0, 1); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 582 | |
Denis Vlasenko | 3fa36e2 | 2008-11-09 00:15:11 +0000 | [diff] [blame] | 583 | signal(SIGPIPE, SIG_DFL); /* this one was SIG_IGNed */ |
| 584 | /* Non-ignored signals revert to SIG_DFL on exec anyway */ |
| 585 | /*signal(SIGCHLD, SIG_DFL);*/ |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 586 | sig_unblock(SIGCHLD); |
| 587 | |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 588 | #ifdef SSLSVD |
Denis Vlasenko | 4cf1d08 | 2008-03-12 23:13:50 +0000 | [diff] [blame] | 589 | strcpy(id, utoa(pid)); |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 590 | ssl_io(0, argv); |
Denys Vlasenko | 41ddd9f | 2010-06-25 01:46:53 +0200 | [diff] [blame] | 591 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
Pascal Bellard | 21e8e8d | 2010-07-04 00:57:03 +0200 | [diff] [blame] | 592 | #else |
| 593 | BB_EXECVP_or_die(argv); |
| 594 | #endif |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | /* |
| 598 | tcpsvd [-hpEvv] [-c n] [-C n:msg] [-b n] [-u user] [-l name] |
| 599 | [-i dir|-x cdb] [ -t sec] host port prog |
| 600 | |
| 601 | tcpsvd creates a TCP/IP socket, binds it to the address host:port, |
| 602 | and listens on the socket for incoming connections. |
| 603 | |
| 604 | On each incoming connection, tcpsvd conditionally runs a program, |
| 605 | with standard input reading from the socket, and standard output |
| 606 | writing to the socket, to handle this connection. tcpsvd keeps |
| 607 | listening on the socket for new connections, and can handle |
| 608 | multiple connections simultaneously. |
| 609 | |
| 610 | tcpsvd optionally checks for special instructions depending |
| 611 | on the IP address or hostname of the client that initiated |
| 612 | the connection, see ipsvd-instruct(5). |
| 613 | |
| 614 | host |
| 615 | host either is a hostname, or a dotted-decimal IP address, |
| 616 | or 0. If host is 0, tcpsvd accepts connections to any local |
| 617 | IP address. |
| 618 | * busybox accepts IPv6 addresses and host:port pairs too |
| 619 | In this case second parameter is ignored |
| 620 | port |
| 621 | tcpsvd accepts connections to host:port. port may be a name |
| 622 | from /etc/services or a number. |
| 623 | prog |
| 624 | prog consists of one or more arguments. For each connection, |
| 625 | tcpsvd normally runs prog, with file descriptor 0 reading from |
| 626 | the network, and file descriptor 1 writing to the network. |
| 627 | By default it also sets up TCP-related environment variables, |
| 628 | see tcp-environ(5) |
| 629 | -i dir |
| 630 | read instructions for handling new connections from the instructions |
| 631 | directory dir. See ipsvd-instruct(5) for details. |
| 632 | * ignored by busyboxed version |
| 633 | -x cdb |
| 634 | read instructions for handling new connections from the constant database |
| 635 | cdb. The constant database normally is created from an instructions |
| 636 | directory by running ipsvd-cdb(8). |
| 637 | * ignored by busyboxed version |
| 638 | -t sec |
| 639 | timeout. This option only takes effect if the -i option is given. |
| 640 | While checking the instructions directory, check the time of last access |
| 641 | of the file that matches the clients address or hostname if any, discard |
| 642 | and remove the file if it wasn't accessed within the last sec seconds; |
| 643 | tcpsvd does not discard or remove a file if the user's write permission |
| 644 | is not set, for those files the timeout is disabled. Default is 0, |
| 645 | which means that the timeout is disabled. |
| 646 | * ignored by busyboxed version |
| 647 | -l name |
| 648 | local hostname. Do not look up the local hostname in DNS, but use name |
| 649 | as hostname. This option must be set if tcpsvd listens on port 53 |
| 650 | to avoid loops. |
| 651 | -u user[:group] |
| 652 | drop permissions. Switch user ID to user's UID, and group ID to user's |
| 653 | primary GID after creating and binding to the socket. If user is followed |
| 654 | by a colon and a group name, the group ID is switched to the GID of group |
| 655 | instead. All supplementary groups are removed. |
| 656 | -c n |
| 657 | concurrency. Handle up to n connections simultaneously. Default is 30. |
| 658 | If there are n connections active, tcpsvd defers acceptance of a new |
| 659 | connection until an active connection is closed. |
| 660 | -C n[:msg] |
| 661 | per host concurrency. Allow only up to n connections from the same IP |
| 662 | address simultaneously. If there are n active connections from one IP |
| 663 | address, new incoming connections from this IP address are closed |
| 664 | immediately. If n is followed by :msg, the message msg is written |
| 665 | to the client if possible, before closing the connection. By default |
| 666 | msg is empty. See ipsvd-instruct(5) for supported escape sequences in msg. |
| 667 | |
| 668 | For each accepted connection, the current per host concurrency is |
| 669 | available through the environment variable TCPCONCURRENCY. n and msg |
| 670 | can be overwritten by ipsvd(7) instructions, see ipsvd-instruct(5). |
| 671 | By default tcpsvd doesn't keep track of connections. |
| 672 | -h |
| 673 | Look up the client's hostname in DNS. |
| 674 | -p |
| 675 | paranoid. After looking up the client's hostname in DNS, look up the IP |
| 676 | addresses in DNS for that hostname, and forget about the hostname |
| 677 | if none of the addresses match the client's IP address. You should |
| 678 | set this option if you use hostname based instructions. The -p option |
| 679 | implies the -h option. |
| 680 | * ignored by busyboxed version |
| 681 | -b n |
| 682 | backlog. Allow a backlog of approximately n TCP SYNs. On some systems n |
| 683 | is silently limited. Default is 20. |
| 684 | -E |
| 685 | no special environment. Do not set up TCP-related environment variables. |
| 686 | -v |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 687 | verbose. Print verbose messages to standard output. |
Denis Vlasenko | b933ac1 | 2007-04-03 12:09:46 +0000 | [diff] [blame] | 688 | -vv |
| 689 | more verbose. Print more verbose messages to standard output. |
| 690 | * no difference between -v and -vv in busyboxed version |
| 691 | */ |