blob: 6105db1d460f78fbe29428310f897542d9ec5be1 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02002/* nc: mini-netcat - built from the ground up for LRP
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00003 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02004 * Copyright (C) 1998, 1999 Charles P. Wright
5 * Copyright (C) 1998 Dave Cinege
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Rob Landley1cca9482006-07-10 19:45:20 +00008 */
Eric Andersencc8ed391999-10-05 16:24:54 +00009
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000011
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020012//config:config NC
13//config: bool "nc"
14//config: default y
15//config: help
16//config: A simple Unix utility which reads and writes data across network
17//config: connections.
18//config:
19//config:config NC_SERVER
20//config: bool "Netcat server options (-l)"
21//config: default y
22//config: depends on NC
23//config: help
24//config: Allow netcat to act as a server.
25//config:
26//config:config NC_EXTRA
maxwen27116ba2015-08-14 21:41:28 +020027//config: bool "Netcat extensions (-eiw and -f FILE)"
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020028//config: default y
29//config: depends on NC
30//config: help
31//config: Add -e (support for executing the rest of the command line after
32//config: making or receiving a successful connection), -i (delay interval for
33//config: lines sent), -w (timeout for initial connection).
34//config:
35//config:config NC_110_COMPAT
36//config: bool "Netcat 1.10 compatibility (+2.5k)"
Denys Vlasenkofb4cb1c2010-07-18 23:02:36 +020037//config: default n # off specially for Rob
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020038//config: depends on NC
39//config: help
40//config: This option makes nc closely follow original nc-1.10.
41//config: The code is about 2.5k bigger. It enables
42//config: -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
maxwen27116ba2015-08-14 21:41:28 +020043//config: busybox-specific extensions: -f FILE.
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020044
45#if ENABLE_NC_110_COMPAT
46# include "nc_bloaty.c"
Denis Vlasenko29fe7262007-04-05 20:26:28 +000047#else
48
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020049//usage:#if !ENABLE_NC_110_COMPAT
50//usage:
51//usage:#if ENABLE_NC_SERVER || ENABLE_NC_EXTRA
Denys Vlasenko66426762011-06-05 03:58:28 +020052//usage:#define NC_OPTIONS_STR "\n"
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020053//usage:#else
54//usage:#define NC_OPTIONS_STR
55//usage:#endif
56//usage:
57//usage:#define nc_trivial_usage
58//usage: IF_NC_EXTRA("[-iN] [-wN] ")IF_NC_SERVER("[-l] [-p PORT] ")
59//usage: "["IF_NC_EXTRA("-f FILE|")"IPADDR PORT]"IF_NC_EXTRA(" [-e PROG]")
60//usage:#define nc_full_usage "\n\n"
61//usage: "Open a pipe to IP:PORT" IF_NC_EXTRA(" or FILE")
62//usage: NC_OPTIONS_STR
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020063//usage: IF_NC_SERVER(
64//usage: "\n -l Listen mode, for inbound connects"
65//usage: IF_NC_EXTRA(
maxwen27116ba2015-08-14 21:41:28 +020066//usage: "\n (use -ll with -e for persistent server)"
67//usage: )
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020068//usage: "\n -p PORT Local port"
69//usage: )
maxwen27116ba2015-08-14 21:41:28 +020070//usage: IF_NC_EXTRA(
71//usage: "\n -w SEC Connect timeout"
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020072//usage: "\n -i SEC Delay interval for lines sent"
73//usage: "\n -f FILE Use file (ala /dev/ttyS0) instead of network"
maxwen27116ba2015-08-14 21:41:28 +020074//usage: "\n -e PROG Run PROG after connect"
Denys Vlasenko77cc2c52010-06-27 04:22:02 +020075//usage: )
76//usage:
77//usage:#define nc_notes_usage ""
78//usage: IF_NC_EXTRA(
79//usage: "To use netcat as a terminal emulator on a serial port:\n\n"
80//usage: "$ stty 115200 -F /dev/ttyS0\n"
81//usage: "$ stty raw -echo -ctlecho && nc -f /dev/ttyS0\n"
82//usage: )
83//usage:
84//usage:#define nc_example_usage
85//usage: "$ nc foobar.somedomain.com 25\n"
86//usage: "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n"
87//usage: "help\n"
88//usage: "214-Commands supported:\n"
89//usage: "214- HELO EHLO MAIL RCPT DATA AUTH\n"
90//usage: "214 NOOP QUIT RSET HELP\n"
91//usage: "quit\n"
92//usage: "221 foobar closing connection\n"
93//usage:
94//usage:#endif
95
Denis Vlasenko5d687242007-01-12 20:59:31 +000096/* Lots of small differences in features
97 * when compared to "standard" nc
98 */
99
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000100static void timeout(int signum UNUSED_PARAM)
Mike Frysinger60a5c382005-05-06 04:45:38 +0000101{
Denis Vlasenko13858992006-10-08 12:49:22 +0000102 bb_error_msg_and_die("timed out");
Mike Frysinger60a5c382005-05-06 04:45:38 +0000103}
104
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000105int nc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000106int nc_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000107{
Denis Vlasenko5d687242007-01-12 20:59:31 +0000108 /* sfd sits _here_ only because of "repeat" option (-l -l). */
Tanguy Pruvot6fef6a32012-05-05 15:26:43 +0200109 int sfd = 0;
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000110 int cfd = 0;
Denis Vlasenko31635552007-01-20 16:54:19 +0000111 unsigned lport = 0;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000112 IF_NOT_NC_SERVER(const) unsigned do_listen = 0;
113 IF_NOT_NC_EXTRA (const) unsigned wsecs = 0;
114 IF_NOT_NC_EXTRA (const) unsigned delay = 0;
115 IF_NOT_NC_EXTRA (const int execparam = 0;)
116 IF_NC_EXTRA (char **execparam = NULL;)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000117 fd_set readfds, testfds;
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000118 int opt; /* must be signed (getopt returns -1) */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000120 if (ENABLE_NC_SERVER || ENABLE_NC_EXTRA) {
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000121 /* getopt32 is _almost_ usable:
Denys Vlasenko77cc2c52010-06-27 04:22:02 +0200122 ** it cannot handle "... -e PROG -prog-opt" */
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000123 while ((opt = getopt(argc, argv,
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100124 "" IF_NC_SERVER("lp:") IF_NC_EXTRA("w:i:f:e:") )) > 0
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000125 ) {
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000126 if (ENABLE_NC_SERVER && opt == 'l')
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000127 IF_NC_SERVER(do_listen++);
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000128 else if (ENABLE_NC_SERVER && opt == 'p')
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000129 IF_NC_SERVER(lport = bb_lookup_port(optarg, "tcp", 0));
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000130 else if (ENABLE_NC_EXTRA && opt == 'w')
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000131 IF_NC_EXTRA( wsecs = xatou(optarg));
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000132 else if (ENABLE_NC_EXTRA && opt == 'i')
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000133 IF_NC_EXTRA( delay = xatou(optarg));
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000134 else if (ENABLE_NC_EXTRA && opt == 'f')
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000135 IF_NC_EXTRA( cfd = xopen(optarg, O_RDWR));
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000136 else if (ENABLE_NC_EXTRA && opt == 'e' && optind <= argc) {
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000137 /* We cannot just 'break'. We should let getopt finish.
138 ** Or else we won't be able to find where
139 ** 'host' and 'port' params are
Denys Vlasenko77cc2c52010-06-27 04:22:02 +0200140 ** (think "nc -w 60 host port -e PROG"). */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000141 IF_NC_EXTRA(
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000142 char **p;
143 // +2: one for progname (optarg) and one for NULL
144 execparam = xzalloc(sizeof(char*) * (argc - optind + 2));
145 p = execparam;
146 *p++ = optarg;
147 while (optind < argc) {
148 *p++ = argv[optind++];
149 }
150 )
maxwen27116ba2015-08-14 21:41:28 +0200151 /* optind points to argv[argc] (NULL) now.
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000152 ** FIXME: we assume that getopt will not count options
Denys Vlasenko77cc2c52010-06-27 04:22:02 +0200153 ** possibly present on "-e PROG ARGS" and will not
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000154 ** include them into final value of optind
155 ** which is to be used ... */
Rob Landley1cca9482006-07-10 19:45:20 +0000156 } else bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +0000157 }
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000158 argv += optind; /* ... here! */
159 argc -= optind;
160 // -l and -f don't mix
161 if (do_listen && cfd) bb_show_usage();
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000162 // File mode needs need zero arguments, listen mode needs zero or one,
163 // client mode needs one or two
164 if (cfd) {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000165 if (argc) bb_show_usage();
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000166 } else if (do_listen) {
167 if (argc > 1) bb_show_usage();
Denis Vlasenko5d687242007-01-12 20:59:31 +0000168 } else {
169 if (!argc || argc > 2) bb_show_usage();
170 }
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000171 } else {
172 if (argc != 3) bb_show_usage();
173 argc--;
174 argv++;
175 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000176
Mike Frysinger60a5c382005-05-06 04:45:38 +0000177 if (wsecs) {
178 signal(SIGALRM, timeout);
179 alarm(wsecs);
180 }
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000181
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000182 if (!cfd) {
Rob Landley1cca9482006-07-10 19:45:20 +0000183 if (do_listen) {
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000184 sfd = create_and_bind_stream_or_die(argv[0], lport);
Denis Vlasenko5d687242007-01-12 20:59:31 +0000185 xlisten(sfd, do_listen); /* can be > 1 */
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000186#if 0 /* nc-1.10 does not do this (without -v) */
Denis Vlasenko5d687242007-01-12 20:59:31 +0000187 /* If we didn't specify a port number,
188 * query and print it after listen() */
Rob Landley1cca9482006-07-10 19:45:20 +0000189 if (!lport) {
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000190 len_and_sockaddr lsa;
191 lsa.len = LSA_SIZEOF_SA;
192 getsockname(sfd, &lsa.u.sa, &lsa.len);
193 lport = get_nport(&lsa.u.sa);
Denis Vlasenko5d687242007-01-12 20:59:31 +0000194 fdprintf(2, "%d\n", ntohs(lport));
Rob Landley1cca9482006-07-10 19:45:20 +0000195 }
Denis Vlasenkof6b46852009-04-25 13:16:53 +0000196#endif
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000197 close_on_exec_on(sfd);
Denis Vlasenko5d687242007-01-12 20:59:31 +0000198 accept_again:
Denis Vlasenko703e2022007-01-22 14:12:08 +0000199 cfd = accept(sfd, NULL, 0);
Denis Vlasenko13858992006-10-08 12:49:22 +0000200 if (cfd < 0)
Rob Landley1cca9482006-07-10 19:45:20 +0000201 bb_perror_msg_and_die("accept");
Denis Vlasenko5d687242007-01-12 20:59:31 +0000202 if (!execparam)
203 close(sfd);
Rob Landley1cca9482006-07-10 19:45:20 +0000204 } else {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000205 cfd = create_and_connect_stream_or_die(argv[0],
206 argv[1] ? bb_lookup_port(argv[1], "tcp", 0) : 0);
Rob Landley1cca9482006-07-10 19:45:20 +0000207 }
Matt Kraai1d702672001-02-07 04:09:23 +0000208 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000209
Mike Frysinger60a5c382005-05-06 04:45:38 +0000210 if (wsecs) {
211 alarm(0);
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200212 /* Non-ignored signals revert to SIG_DFL on exec anyway */
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000213 /*signal(SIGALRM, SIG_DFL);*/
Mike Frysinger60a5c382005-05-06 04:45:38 +0000214 }
215
Eric Andersen1323c942002-04-26 23:59:12 +0000216 /* -e given? */
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000217 if (execparam) {
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200218 pid_t pid;
219 /* With more than one -l, repeatedly act as server */
Pascal Bellard926031b2010-07-04 15:32:38 +0200220 if (do_listen > 1 && (pid = xvfork()) != 0) {
221 /* parent */
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200222 /* prevent zombies */
223 signal(SIGCHLD, SIG_IGN);
224 close(cfd);
Denis Vlasenko5d687242007-01-12 20:59:31 +0000225 goto accept_again;
Rob Landley1cca9482006-07-10 19:45:20 +0000226 }
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200227 /* child, or main thread if only one -l */
Denis Vlasenkofa0b56d2008-07-01 16:09:07 +0000228 xmove_fd(cfd, 0);
229 xdup2(0, 1);
maxwen27116ba2015-08-14 21:41:28 +0200230 /*xdup2(0, 2); - original nc 1.10 does this, we don't */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000231 IF_NC_EXTRA(BB_EXECVP(execparam[0], execparam);)
maxwen27116ba2015-08-14 21:41:28 +0200232 IF_NC_EXTRA(bb_perror_msg_and_die("can't execute '%s'", execparam[0]);)
Rob Landley1cca9482006-07-10 19:45:20 +0000233 }
234
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200235 /* Select loop copying stdin to cfd, and cfd to stdout */
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000236
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237 FD_ZERO(&readfds);
Rob Landley1cca9482006-07-10 19:45:20 +0000238 FD_SET(cfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +0000239 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +0000240
Rob Landley1cca9482006-07-10 19:45:20 +0000241 for (;;) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000243 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000244 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +0000245
Erik Andersene49d5ec2000-02-08 19:58:47 +0000246 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +0000247
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200248 if (select(cfd + 1, &testfds, NULL, NULL, NULL) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000249 bb_perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +0000250
Denis Vlasenko74324c82007-06-04 10:16:52 +0000251#define iobuf bb_common_bufsiz1
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200252 fd = STDIN_FILENO;
253 while (1) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 if (FD_ISSET(fd, &testfds)) {
Denis Vlasenko74324c82007-06-04 10:16:52 +0000255 nread = safe_read(fd, iobuf, sizeof(iobuf));
Rob Landley1cca9482006-07-10 19:45:20 +0000256 if (fd == cfd) {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000257 if (nread < 1)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000258 exit(EXIT_SUCCESS);
Matt Kraaibfa79672000-12-15 22:34:34 +0000259 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000260 } else {
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200261 if (nread < 1) {
262 /* Close outgoing half-connection so they get EOF,
263 * but leave incoming alone so we can see response */
maxwen27116ba2015-08-14 21:41:28 +0200264 shutdown(cfd, SHUT_WR);
Paul Fox7b71d742005-07-18 22:23:16 +0000265 FD_CLR(STDIN_FILENO, &readfds);
266 }
Rob Landley1cca9482006-07-10 19:45:20 +0000267 ofd = cfd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000268 }
Denis Vlasenko74324c82007-06-04 10:16:52 +0000269 xwrite(ofd, iobuf, nread);
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200270 if (delay > 0)
271 sleep(delay);
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000272 }
Tomoya Adachi63416cc2009-08-03 02:59:22 +0200273 if (fd == cfd)
274 break;
275 fd = cfd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 }
277 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000278}
Denis Vlasenko29fe7262007-04-05 20:26:28 +0000279#endif