Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | a02a4e9 | 2017-10-05 15:19:25 +0200 | [diff] [blame] | 2 | /* |
| 3 | * nc: mini-netcat - built from the ground up for LRP |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 4 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | * Copyright (C) 1998, 1999 Charles P. Wright |
| 6 | * Copyright (C) 1998 Dave Cinege |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 9 | */ |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 10 | //config:config NC |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 11 | //config: bool "nc (11 kb)" |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 12 | //config: default y |
| 13 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 14 | //config: A simple Unix utility which reads and writes data across network |
| 15 | //config: connections. |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 16 | //config: |
Denys Vlasenko | 3c34f68 | 2017-09-15 18:55:53 +0200 | [diff] [blame] | 17 | //config:config NETCAT |
| 18 | //config: bool "netcat (11 kb)" |
| 19 | //config: default n |
| 20 | //config: help |
| 21 | //config: Alias to nc. |
| 22 | //config: |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 23 | //config:config NC_SERVER |
| 24 | //config: bool "Netcat server options (-l)" |
| 25 | //config: default y |
Denys Vlasenko | 3c34f68 | 2017-09-15 18:55:53 +0200 | [diff] [blame] | 26 | //config: depends on NC || NETCAT |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 27 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 28 | //config: Allow netcat to act as a server. |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 29 | //config: |
| 30 | //config:config NC_EXTRA |
Denys Vlasenko | a14f319 | 2013-02-28 11:09:14 +0100 | [diff] [blame] | 31 | //config: bool "Netcat extensions (-eiw and -f FILE)" |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 32 | //config: default y |
Denys Vlasenko | 3c34f68 | 2017-09-15 18:55:53 +0200 | [diff] [blame] | 33 | //config: depends on NC || NETCAT |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 34 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 35 | //config: Add -e (support for executing the rest of the command line after |
| 36 | //config: making or receiving a successful connection), -i (delay interval for |
| 37 | //config: lines sent), -w (timeout for initial connection). |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 38 | //config: |
| 39 | //config:config NC_110_COMPAT |
| 40 | //config: bool "Netcat 1.10 compatibility (+2.5k)" |
Denys Vlasenko | 3c34f68 | 2017-09-15 18:55:53 +0200 | [diff] [blame] | 41 | //config: default y |
| 42 | //config: depends on NC || NETCAT |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 43 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 44 | //config: This option makes nc closely follow original nc-1.10. |
| 45 | //config: The code is about 2.5k bigger. It enables |
| 46 | //config: -s ADDR, -n, -u, -v, -o FILE, -z options, but loses |
| 47 | //config: busybox-specific extensions: -f FILE. |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 48 | |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 49 | //applet:IF_NC(APPLET(nc, BB_DIR_USR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 3c34f68 | 2017-09-15 18:55:53 +0200 | [diff] [blame] | 50 | // APPLET_ODDNAME:name main location suid_type help |
| 51 | //applet:IF_NETCAT(APPLET_ODDNAME(netcat, nc, BB_DIR_USR_BIN, BB_SUID_DROP, nc)) |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 52 | |
| 53 | //kbuild:lib-$(CONFIG_NC) += nc.o |
Denys Vlasenko | 3c34f68 | 2017-09-15 18:55:53 +0200 | [diff] [blame] | 54 | //kbuild:lib-$(CONFIG_NETCAT) += nc.o |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 55 | |
| 56 | #include "libbb.h" |
| 57 | #include "common_bufsiz.h" |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 58 | #if ENABLE_NC_110_COMPAT |
| 59 | # include "nc_bloaty.c" |
Denis Vlasenko | 29fe726 | 2007-04-05 20:26:28 +0000 | [diff] [blame] | 60 | #else |
| 61 | |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 62 | //usage:#if !ENABLE_NC_110_COMPAT |
| 63 | //usage: |
| 64 | //usage:#if ENABLE_NC_SERVER || ENABLE_NC_EXTRA |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 65 | //usage:#define NC_OPTIONS_STR "\n" |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 66 | //usage:#else |
| 67 | //usage:#define NC_OPTIONS_STR |
| 68 | //usage:#endif |
| 69 | //usage: |
| 70 | //usage:#define nc_trivial_usage |
| 71 | //usage: IF_NC_EXTRA("[-iN] [-wN] ")IF_NC_SERVER("[-l] [-p PORT] ") |
| 72 | //usage: "["IF_NC_EXTRA("-f FILE|")"IPADDR PORT]"IF_NC_EXTRA(" [-e PROG]") |
| 73 | //usage:#define nc_full_usage "\n\n" |
| 74 | //usage: "Open a pipe to IP:PORT" IF_NC_EXTRA(" or FILE") |
| 75 | //usage: NC_OPTIONS_STR |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 76 | //usage: IF_NC_SERVER( |
| 77 | //usage: "\n -l Listen mode, for inbound connects" |
| 78 | //usage: IF_NC_EXTRA( |
Denys Vlasenko | a14f319 | 2013-02-28 11:09:14 +0100 | [diff] [blame] | 79 | //usage: "\n (use -ll with -e for persistent server)" |
| 80 | //usage: ) |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 81 | //usage: "\n -p PORT Local port" |
| 82 | //usage: ) |
Denys Vlasenko | a14f319 | 2013-02-28 11:09:14 +0100 | [diff] [blame] | 83 | //usage: IF_NC_EXTRA( |
| 84 | //usage: "\n -w SEC Connect timeout" |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 85 | //usage: "\n -i SEC Delay interval for lines sent" |
| 86 | //usage: "\n -f FILE Use file (ala /dev/ttyS0) instead of network" |
Denys Vlasenko | a14f319 | 2013-02-28 11:09:14 +0100 | [diff] [blame] | 87 | //usage: "\n -e PROG Run PROG after connect" |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 88 | //usage: ) |
| 89 | //usage: |
| 90 | //usage:#define nc_notes_usage "" |
| 91 | //usage: IF_NC_EXTRA( |
| 92 | //usage: "To use netcat as a terminal emulator on a serial port:\n\n" |
| 93 | //usage: "$ stty 115200 -F /dev/ttyS0\n" |
| 94 | //usage: "$ stty raw -echo -ctlecho && nc -f /dev/ttyS0\n" |
| 95 | //usage: ) |
| 96 | //usage: |
| 97 | //usage:#define nc_example_usage |
| 98 | //usage: "$ nc foobar.somedomain.com 25\n" |
| 99 | //usage: "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n" |
| 100 | //usage: "help\n" |
| 101 | //usage: "214-Commands supported:\n" |
| 102 | //usage: "214- HELO EHLO MAIL RCPT DATA AUTH\n" |
| 103 | //usage: "214 NOOP QUIT RSET HELP\n" |
| 104 | //usage: "quit\n" |
| 105 | //usage: "221 foobar closing connection\n" |
| 106 | //usage: |
| 107 | //usage:#endif |
| 108 | |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 109 | /* Lots of small differences in features |
| 110 | * when compared to "standard" nc |
| 111 | */ |
| 112 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 113 | static void timeout(int signum UNUSED_PARAM) |
Mike Frysinger | 60a5c38 | 2005-05-06 04:45:38 +0000 | [diff] [blame] | 114 | { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 115 | bb_simple_error_msg_and_die("timed out"); |
Mike Frysinger | 60a5c38 | 2005-05-06 04:45:38 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 118 | int nc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 119 | int nc_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 120 | { |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 121 | /* sfd sits _here_ only because of "repeat" option (-l -l). */ |
| 122 | int sfd = sfd; /* for gcc */ |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 123 | int cfd = 0; |
Denis Vlasenko | 3163555 | 2007-01-20 16:54:19 +0000 | [diff] [blame] | 124 | unsigned lport = 0; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 125 | IF_NOT_NC_SERVER(const) unsigned do_listen = 0; |
| 126 | IF_NOT_NC_EXTRA (const) unsigned wsecs = 0; |
| 127 | IF_NOT_NC_EXTRA (const) unsigned delay = 0; |
| 128 | IF_NOT_NC_EXTRA (const int execparam = 0;) |
| 129 | IF_NC_EXTRA (char **execparam = NULL;) |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 130 | struct pollfd pfds[2]; |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 131 | int opt; /* must be signed (getopt returns -1) */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 132 | |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 133 | if (ENABLE_NC_SERVER || ENABLE_NC_EXTRA) { |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 134 | /* getopt32 is _almost_ usable: |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 135 | ** it cannot handle "... -e PROG -prog-opt" */ |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 136 | while ((opt = getopt(argc, argv, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 137 | "" IF_NC_SERVER("lp:") IF_NC_EXTRA("w:i:f:e:") )) > 0 |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 138 | ) { |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 139 | if (ENABLE_NC_SERVER && opt == 'l') |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 140 | IF_NC_SERVER(do_listen++); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 141 | else if (ENABLE_NC_SERVER && opt == 'p') |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 142 | IF_NC_SERVER(lport = bb_lookup_port(optarg, "tcp", 0)); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 143 | else if (ENABLE_NC_EXTRA && opt == 'w') |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 144 | IF_NC_EXTRA( wsecs = xatou(optarg)); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 145 | else if (ENABLE_NC_EXTRA && opt == 'i') |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 146 | IF_NC_EXTRA( delay = xatou(optarg)); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 147 | else if (ENABLE_NC_EXTRA && opt == 'f') |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 148 | IF_NC_EXTRA( cfd = xopen(optarg, O_RDWR)); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 149 | else if (ENABLE_NC_EXTRA && opt == 'e' && optind <= argc) { |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 150 | /* We cannot just 'break'. We should let getopt finish. |
| 151 | ** Or else we won't be able to find where |
| 152 | ** 'host' and 'port' params are |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 153 | ** (think "nc -w 60 host port -e PROG"). */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 154 | IF_NC_EXTRA( |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 155 | char **p; |
| 156 | // +2: one for progname (optarg) and one for NULL |
| 157 | execparam = xzalloc(sizeof(char*) * (argc - optind + 2)); |
| 158 | p = execparam; |
| 159 | *p++ = optarg; |
| 160 | while (optind < argc) { |
| 161 | *p++ = argv[optind++]; |
| 162 | } |
| 163 | ) |
Denys Vlasenko | a14f319 | 2013-02-28 11:09:14 +0100 | [diff] [blame] | 164 | /* optind points to argv[argc] (NULL) now. |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 165 | ** FIXME: we assume that getopt will not count options |
Denys Vlasenko | 77cc2c5 | 2010-06-27 04:22:02 +0200 | [diff] [blame] | 166 | ** possibly present on "-e PROG ARGS" and will not |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 167 | ** include them into final value of optind |
| 168 | ** which is to be used ... */ |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 169 | } else bb_show_usage(); |
Matt Kraai | 1d70267 | 2001-02-07 04:09:23 +0000 | [diff] [blame] | 170 | } |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 171 | argv += optind; /* ... here! */ |
| 172 | argc -= optind; |
| 173 | // -l and -f don't mix |
| 174 | if (do_listen && cfd) bb_show_usage(); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 175 | // File mode needs need zero arguments, listen mode needs zero or one, |
| 176 | // client mode needs one or two |
| 177 | if (cfd) { |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 178 | if (argc) bb_show_usage(); |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 179 | } else if (do_listen) { |
| 180 | if (argc > 1) bb_show_usage(); |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 181 | } else { |
| 182 | if (!argc || argc > 2) bb_show_usage(); |
| 183 | } |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 184 | } else { |
| 185 | if (argc != 3) bb_show_usage(); |
| 186 | argc--; |
| 187 | argv++; |
| 188 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 189 | |
Mike Frysinger | 60a5c38 | 2005-05-06 04:45:38 +0000 | [diff] [blame] | 190 | if (wsecs) { |
| 191 | signal(SIGALRM, timeout); |
| 192 | alarm(wsecs); |
| 193 | } |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 194 | |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 195 | if (!cfd) { |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 196 | if (do_listen) { |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 197 | sfd = create_and_bind_stream_or_die(argv[0], lport); |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 198 | xlisten(sfd, do_listen); /* can be > 1 */ |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 199 | #if 0 /* nc-1.10 does not do this (without -v) */ |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 200 | /* If we didn't specify a port number, |
| 201 | * query and print it after listen() */ |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 202 | if (!lport) { |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 203 | len_and_sockaddr lsa; |
| 204 | lsa.len = LSA_SIZEOF_SA; |
| 205 | getsockname(sfd, &lsa.u.sa, &lsa.len); |
| 206 | lport = get_nport(&lsa.u.sa); |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 207 | fdprintf(2, "%d\n", ntohs(lport)); |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 208 | } |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 209 | #endif |
Denis Vlasenko | 96e1b38 | 2007-09-30 23:50:48 +0000 | [diff] [blame] | 210 | close_on_exec_on(sfd); |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 211 | accept_again: |
Denis Vlasenko | 703e202 | 2007-01-22 14:12:08 +0000 | [diff] [blame] | 212 | cfd = accept(sfd, NULL, 0); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 213 | if (cfd < 0) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 214 | bb_simple_perror_msg_and_die("accept"); |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 215 | if (!execparam) |
| 216 | close(sfd); |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 217 | } else { |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 218 | cfd = create_and_connect_stream_or_die(argv[0], |
Denys Vlasenko | 7ab9cd2 | 2021-09-09 22:00:44 +0200 | [diff] [blame] | 219 | bb_lookup_port(argv[1], "tcp", 0)); |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 220 | } |
Matt Kraai | 1d70267 | 2001-02-07 04:09:23 +0000 | [diff] [blame] | 221 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 222 | |
Mike Frysinger | 60a5c38 | 2005-05-06 04:45:38 +0000 | [diff] [blame] | 223 | if (wsecs) { |
| 224 | alarm(0); |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 225 | /* Non-ignored signals revert to SIG_DFL on exec anyway */ |
Denis Vlasenko | 3fa36e2 | 2008-11-09 00:15:11 +0000 | [diff] [blame] | 226 | /*signal(SIGALRM, SIG_DFL);*/ |
Mike Frysinger | 60a5c38 | 2005-05-06 04:45:38 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Eric Andersen | 1323c94 | 2002-04-26 23:59:12 +0000 | [diff] [blame] | 229 | /* -e given? */ |
Denis Vlasenko | d0e70af | 2006-10-16 01:10:28 +0000 | [diff] [blame] | 230 | if (execparam) { |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 231 | pid_t pid; |
| 232 | /* With more than one -l, repeatedly act as server */ |
Pascal Bellard | 926031b | 2010-07-04 15:32:38 +0200 | [diff] [blame] | 233 | if (do_listen > 1 && (pid = xvfork()) != 0) { |
| 234 | /* parent */ |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 235 | /* prevent zombies */ |
| 236 | signal(SIGCHLD, SIG_IGN); |
| 237 | close(cfd); |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 238 | goto accept_again; |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 239 | } |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 240 | /* child, or main thread if only one -l */ |
Denis Vlasenko | fa0b56d | 2008-07-01 16:09:07 +0000 | [diff] [blame] | 241 | xmove_fd(cfd, 0); |
| 242 | xdup2(0, 1); |
Denys Vlasenko | a14f319 | 2013-02-28 11:09:14 +0100 | [diff] [blame] | 243 | /*xdup2(0, 2); - original nc 1.10 does this, we don't */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 244 | IF_NC_EXTRA(BB_EXECVP(execparam[0], execparam);) |
Denys Vlasenko | c56d125 | 2013-03-17 22:59:51 +0100 | [diff] [blame] | 245 | IF_NC_EXTRA(bb_perror_msg_and_die("can't execute '%s'", execparam[0]);) |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 248 | /* loop copying stdin to cfd, and cfd to stdout */ |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 249 | |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 250 | pfds[0].fd = STDIN_FILENO; |
| 251 | pfds[0].events = POLLIN; |
| 252 | pfds[1].fd = cfd; |
| 253 | pfds[1].events = POLLIN; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 254 | |
Denys Vlasenko | 9de2e5a | 2016-04-21 18:38:51 +0200 | [diff] [blame] | 255 | #define iobuf bb_common_bufsiz1 |
| 256 | setup_common_bufsiz(); |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 257 | for (;;) { |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 258 | int fdidx; |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 259 | int ofd; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 260 | int nread; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 261 | |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 262 | if (safe_poll(pfds, 2, -1) < 0) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 263 | bb_simple_perror_msg_and_die("poll"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 264 | |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 265 | fdidx = 0; |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 266 | while (1) { |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 267 | if (pfds[fdidx].revents) { |
| 268 | nread = safe_read(pfds[fdidx].fd, iobuf, COMMON_BUFSIZE); |
| 269 | if (fdidx != 0) { |
Denis Vlasenko | 5d68724 | 2007-01-12 20:59:31 +0000 | [diff] [blame] | 270 | if (nread < 1) |
Denys Vlasenko | db5546c | 2022-01-05 22:16:06 +0100 | [diff] [blame^] | 271 | exit_SUCCESS(); |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 272 | ofd = STDOUT_FILENO; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 273 | } else { |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 274 | if (nread < 1) { |
| 275 | /* Close outgoing half-connection so they get EOF, |
| 276 | * but leave incoming alone so we can see response */ |
Denys Vlasenko | ca54b66 | 2013-07-28 21:08:37 +0200 | [diff] [blame] | 277 | shutdown(cfd, SHUT_WR); |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 278 | pfds[0].fd = -1; |
Paul Fox | 7b71d74 | 2005-07-18 22:23:16 +0000 | [diff] [blame] | 279 | } |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 280 | ofd = cfd; |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 281 | } |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 282 | xwrite(ofd, iobuf, nread); |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 283 | if (delay > 0) |
| 284 | sleep(delay); |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 285 | } |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 286 | if (fdidx == 1) |
Tomoya Adachi | 63416cc | 2009-08-03 02:59:22 +0200 | [diff] [blame] | 287 | break; |
Denys Vlasenko | 5b3b468 | 2017-02-16 17:17:17 +0100 | [diff] [blame] | 288 | fdidx++; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 289 | } |
| 290 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 291 | } |
Denis Vlasenko | 29fe726 | 2007-04-05 20:26:28 +0000 | [diff] [blame] | 292 | #endif |