blob: 1bdecaf5eb8018092deeddf1a773aabe8abce445 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen7ab9c7e2000-05-12 19:41:47 +00002/* nc: mini-netcat - built from the ground up for LRP
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00003 *
Rob Landley1cca9482006-07-10 19:45:20 +00004 * Copyright (C) 1998, 1999 Charles P. Wright
5 * Copyright (C) 1998 Dave Cinege
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00006 *
Rob Landley1cca9482006-07-10 19:45:20 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */
Eric Andersencc8ed391999-10-05 16:24:54 +00009
Eric Andersencbe31da2001-02-20 06:14:08 +000010#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000011
Denis Vlasenko5d687242007-01-12 20:59:31 +000012/* Lots of small differences in features
13 * when compared to "standard" nc
14 */
15
Mike Frysinger60a5c382005-05-06 04:45:38 +000016static void timeout(int signum)
17{
Denis Vlasenko13858992006-10-08 12:49:22 +000018 bb_error_msg_and_die("timed out");
Mike Frysinger60a5c382005-05-06 04:45:38 +000019}
20
Denis Vlasenko06af2162007-02-03 17:28:39 +000021int nc_main(int argc, char **argv);
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000022int nc_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000023{
Denis Vlasenko5d687242007-01-12 20:59:31 +000024 /* sfd sits _here_ only because of "repeat" option (-l -l). */
25 int sfd = sfd; /* for gcc */
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000026 int cfd = 0;
Denis Vlasenko31635552007-01-20 16:54:19 +000027 unsigned lport = 0;
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000028 SKIP_NC_SERVER(const) unsigned do_listen = 0;
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000029 SKIP_NC_EXTRA (const) unsigned wsecs = 0;
30 SKIP_NC_EXTRA (const) unsigned delay = 0;
31 SKIP_NC_EXTRA (const int execparam = 0;)
32 USE_NC_EXTRA (char **execparam = NULL;)
Denis Vlasenko5d687242007-01-12 20:59:31 +000033 len_and_sockaddr *lsa;
Erik Andersene49d5ec2000-02-08 19:58:47 +000034 fd_set readfds, testfds;
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000035 int opt; /* must be signed (getopt returns -1) */
Erik Andersene49d5ec2000-02-08 19:58:47 +000036
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000037 if (ENABLE_NC_SERVER || ENABLE_NC_EXTRA) {
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000038 /* getopt32 is _almost_ usable:
39 ** it cannot handle "... -e prog -prog-opt" */
40 while ((opt = getopt(argc, argv,
41 "" USE_NC_SERVER("lp:") USE_NC_EXTRA("w:i:f:e:") )) > 0
42 ) {
43 if (ENABLE_NC_SERVER && opt=='l') USE_NC_SERVER(do_listen++);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +000044 else if (ENABLE_NC_SERVER && opt=='p') {
45 USE_NC_SERVER(lport = bb_lookup_port(optarg, "tcp", 0));
Denis Vlasenko6536a9b2007-01-12 10:35:23 +000046 }
Denis Vlasenko703e2022007-01-22 14:12:08 +000047 else if (ENABLE_NC_EXTRA && opt=='w') USE_NC_EXTRA( wsecs = xatou(optarg));
48 else if (ENABLE_NC_EXTRA && opt=='i') USE_NC_EXTRA( delay = xatou(optarg));
49 else if (ENABLE_NC_EXTRA && opt=='f') USE_NC_EXTRA( cfd = xopen(optarg, O_RDWR));
50 else if (ENABLE_NC_EXTRA && opt=='e' && optind<=argc) {
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000051 /* We cannot just 'break'. We should let getopt finish.
52 ** Or else we won't be able to find where
53 ** 'host' and 'port' params are
54 ** (think "nc -w 60 host port -e prog"). */
55 USE_NC_EXTRA(
56 char **p;
57 // +2: one for progname (optarg) and one for NULL
58 execparam = xzalloc(sizeof(char*) * (argc - optind + 2));
59 p = execparam;
60 *p++ = optarg;
61 while (optind < argc) {
62 *p++ = argv[optind++];
63 }
64 )
65 /* optind points to argv[arvc] (NULL) now.
66 ** FIXME: we assume that getopt will not count options
67 ** possibly present on "-e prog args" and will not
68 ** include them into final value of optind
69 ** which is to be used ... */
Rob Landley1cca9482006-07-10 19:45:20 +000070 } else bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000071 }
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000072 argv += optind; /* ... here! */
73 argc -= optind;
74 // -l and -f don't mix
75 if (do_listen && cfd) bb_show_usage();
76 // Listen or file modes need zero arguments, client mode needs 2
Denis Vlasenko5d687242007-01-12 20:59:31 +000077 if (do_listen || cfd) {
78 if (argc) bb_show_usage();
79 } else {
80 if (!argc || argc > 2) bb_show_usage();
81 }
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000082 } else {
83 if (argc != 3) bb_show_usage();
84 argc--;
85 argv++;
86 }
Eric Andersencc8ed391999-10-05 16:24:54 +000087
Mike Frysinger60a5c382005-05-06 04:45:38 +000088 if (wsecs) {
89 signal(SIGALRM, timeout);
90 alarm(wsecs);
91 }
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000092
Denis Vlasenkod0e70af2006-10-16 01:10:28 +000093 if (!cfd) {
Rob Landley1cca9482006-07-10 19:45:20 +000094 if (do_listen) {
Denis Vlasenko5d687242007-01-12 20:59:31 +000095 /* create_and_bind_stream_or_die(NULL, lport)
96 * would've work wonderfully, but we need
97 * to know lsa */
98 sfd = xsocket_stream(&lsa);
99 if (lport)
100 set_nport(lsa, htons(lport));
101 setsockopt_reuseaddr(sfd);
102 xbind(sfd, &lsa->sa, lsa->len);
103 xlisten(sfd, do_listen); /* can be > 1 */
104 /* If we didn't specify a port number,
105 * query and print it after listen() */
Rob Landley1cca9482006-07-10 19:45:20 +0000106 if (!lport) {
Denis Vlasenko703e2022007-01-22 14:12:08 +0000107 socklen_t addrlen = lsa->len;
Denis Vlasenko5d687242007-01-12 20:59:31 +0000108 getsockname(sfd, &lsa->sa, &addrlen);
109 lport = get_nport(lsa);
110 fdprintf(2, "%d\n", ntohs(lport));
Rob Landley1cca9482006-07-10 19:45:20 +0000111 }
Denis Vlasenko5d687242007-01-12 20:59:31 +0000112 fcntl(sfd, F_SETFD, FD_CLOEXEC);
113 accept_again:
Denis Vlasenko703e2022007-01-22 14:12:08 +0000114 cfd = accept(sfd, NULL, 0);
Denis Vlasenko13858992006-10-08 12:49:22 +0000115 if (cfd < 0)
Rob Landley1cca9482006-07-10 19:45:20 +0000116 bb_perror_msg_and_die("accept");
Denis Vlasenko5d687242007-01-12 20:59:31 +0000117 if (!execparam)
118 close(sfd);
Rob Landley1cca9482006-07-10 19:45:20 +0000119 } else {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000120 cfd = create_and_connect_stream_or_die(argv[0],
121 argv[1] ? bb_lookup_port(argv[1], "tcp", 0) : 0);
Rob Landley1cca9482006-07-10 19:45:20 +0000122 }
Matt Kraai1d702672001-02-07 04:09:23 +0000123 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000124
Mike Frysinger60a5c382005-05-06 04:45:38 +0000125 if (wsecs) {
126 alarm(0);
127 signal(SIGALRM, SIG_DFL);
128 }
129
Eric Andersen1323c942002-04-26 23:59:12 +0000130 /* -e given? */
Denis Vlasenkod0e70af2006-10-16 01:10:28 +0000131 if (execparam) {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000132 signal(SIGCHLD, SIG_IGN);
Rob Landley1cca9482006-07-10 19:45:20 +0000133 // With more than one -l, repeatedly act as server.
Denis Vlasenko13858992006-10-08 12:49:22 +0000134 if (do_listen > 1 && vfork()) {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000135 /* parent */
Rob Landley1cca9482006-07-10 19:45:20 +0000136 // This is a bit weird as cleanup goes, since we wind up with no
137 // stdin/stdout/stderr. But it's small and shouldn't hurt anything.
138 // We check for cfd == 0 above.
Denis Vlasenko13858992006-10-08 12:49:22 +0000139 logmode = LOGMODE_NONE;
Rob Landley1cca9482006-07-10 19:45:20 +0000140 close(0);
141 close(1);
142 close(2);
Denis Vlasenko5d687242007-01-12 20:59:31 +0000143 goto accept_again;
Rob Landley1cca9482006-07-10 19:45:20 +0000144 }
Denis Vlasenko5d687242007-01-12 20:59:31 +0000145 /* child (or main thread if no multiple -l) */
146 if (cfd) {
147 dup2(cfd, 0);
148 close(cfd);
149 }
150 dup2(0, 1);
151 dup2(0, 2);
Denis Vlasenko1d76f432007-02-06 01:20:12 +0000152 USE_NC_EXTRA(BB_EXECVP(execparam[0], execparam);)
Rob Landley1cca9482006-07-10 19:45:20 +0000153 /* Don't print stuff or it will go over the wire.... */
154 _exit(127);
155 }
156
157 // Select loop copying stdin to cfd, and cfd to stdout.
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000158
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 FD_ZERO(&readfds);
Rob Landley1cca9482006-07-10 19:45:20 +0000160 FD_SET(cfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +0000161 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +0000162
Rob Landley1cca9482006-07-10 19:45:20 +0000163 for (;;) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000165 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +0000167
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +0000169
Matt Kraaibfa79672000-12-15 22:34:34 +0000170 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 bb_perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +0000172
Erik Andersene49d5ec2000-02-08 19:58:47 +0000173 for (fd = 0; fd < FD_SETSIZE; fd++) {
174 if (FD_ISSET(fd, &testfds)) {
Rob Landley53437472006-07-16 08:14:35 +0000175 nread = safe_read(fd, bb_common_bufsiz1,
176 sizeof(bb_common_bufsiz1));
Eric Andersencc8ed391999-10-05 16:24:54 +0000177
Rob Landley1cca9482006-07-10 19:45:20 +0000178 if (fd == cfd) {
Denis Vlasenko5d687242007-01-12 20:59:31 +0000179 if (nread < 1)
180 exit(0);
Matt Kraaibfa79672000-12-15 22:34:34 +0000181 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000182 } else {
Rob Landley53437472006-07-16 08:14:35 +0000183 if (nread<1) {
Rob Landley1cca9482006-07-10 19:45:20 +0000184 // Close outgoing half-connection so they get EOF, but
185 // leave incoming alone so we can see response.
186 shutdown(cfd, 1);
Paul Fox7b71d742005-07-18 22:23:16 +0000187 FD_CLR(STDIN_FILENO, &readfds);
188 }
Rob Landley1cca9482006-07-10 19:45:20 +0000189 ofd = cfd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000190 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000191
Rob Landley53437472006-07-16 08:14:35 +0000192 xwrite(ofd, bb_common_bufsiz1, nread);
Rob Landley1cca9482006-07-10 19:45:20 +0000193 if (delay > 0) sleep(delay);
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000194 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000195 }
196 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000197}