blob: 8f641ae4f9513d01b2c5f73bc4faa13004b8413d [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
Eric Andersencc8ed391999-10-05 16:24:54 +00003 Copyright (C) 1998 Charles P. Wright
4
5 0.0.1 6K It works.
6 0.0.2 5K Smaller and you can also check the exit condition if you wish.
Mike Frysinger7dc7f402005-05-06 05:00:34 +00007 0.0.3 Uses select()
Eric Andersencc8ed391999-10-05 16:24:54 +00008
9 19980918 Busy Boxed! Dave Cinege
Eric Andersen2ce1edc1999-10-12 15:42:48 +000010 19990512 Uses Select. Charles P. Wright
11 19990513 Fixes stdin stupidity and uses buffers. Charles P. Wright
Eric Andersencc8ed391999-10-05 16:24:54 +000012
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Eric Andersencc8ed391999-10-05 16:24:54 +000026*/
Eric Andersen67059862001-01-22 22:48:42 +000027
Eric Andersencc8ed391999-10-05 16:24:54 +000028#include <stdio.h>
29#include <stdlib.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000030#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000031#include <unistd.h>
Mike Frysinger60a5c382005-05-06 04:45:38 +000032#include <signal.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000033
34#include <sys/types.h>
35#include <sys/socket.h>
36#include <netinet/in.h>
37#include <arpa/inet.h>
38#include <netdb.h>
39#include <sys/time.h>
40#include <sys/ioctl.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000041#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Mike Frysinger60a5c382005-05-06 04:45:38 +000043static void timeout(int signum)
44{
45 bb_error_msg_and_die("Timed out");
46}
47
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000048int nc_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000049{
Mike Frysinger60a5c382005-05-06 04:45:38 +000050 int do_listen = 0, lport = 0, delay = 0, wsecs = 0, tmpfd, opt, sfd, x;
Matt Kraaibfa79672000-12-15 22:34:34 +000051 char buf[BUFSIZ];
Mike Frysinger7dc7f402005-05-06 05:00:34 +000052#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
53 char *pr00gie = NULL;
Eric Andersen1323c942002-04-26 23:59:12 +000054#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000055
Erik Andersene49d5ec2000-02-08 19:58:47 +000056 struct sockaddr_in address;
57 struct hostent *hostinfo;
Eric Andersencc8ed391999-10-05 16:24:54 +000058
Erik Andersene49d5ec2000-02-08 19:58:47 +000059 fd_set readfds, testfds;
60
Mike Frysinger60a5c382005-05-06 04:45:38 +000061 while ((opt = getopt(argc, argv, "lp:i:e:w:")) > 0) {
Matt Kraai1d702672001-02-07 04:09:23 +000062 switch (opt) {
63 case 'l':
64 do_listen++;
65 break;
66 case 'p':
Glenn L McGrath036dbaa2004-01-17 05:03:31 +000067 lport = bb_lookup_port(optarg, "tcp", 0);
Matt Kraai1d702672001-02-07 04:09:23 +000068 break;
Eric Andersen1323c942002-04-26 23:59:12 +000069 case 'i':
70 delay = atoi(optarg);
71 break;
Mike Frysinger7dc7f402005-05-06 05:00:34 +000072#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
Eric Andersen1323c942002-04-26 23:59:12 +000073 case 'e':
74 pr00gie = optarg;
75 break;
76#endif
Mike Frysinger60a5c382005-05-06 04:45:38 +000077 case 'w':
78 wsecs = atoi(optarg);
79 break;
Matt Kraai1d702672001-02-07 04:09:23 +000080 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000082 }
Erik Andersen5e1189e2000-04-15 16:34:54 +000083 }
Eric Andersenb6a44b81999-11-13 04:47:09 +000084
Matt Kraai1d702672001-02-07 04:09:23 +000085 if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc))
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000087
Matt Kraaibfa79672000-12-15 22:34:34 +000088 if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 bb_perror_msg_and_die("socket");
Eric Andersenf63a20a2002-05-05 03:40:14 +000090 x = 1;
Mike Frysinger9c85ecd2005-05-07 06:45:29 +000091 if (setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof (x)) == -1)
92 bb_perror_msg_and_die("reuseaddr");
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 address.sin_family = AF_INET;
Eric Andersencc8ed391999-10-05 16:24:54 +000094
Mike Frysinger60a5c382005-05-06 04:45:38 +000095 if (wsecs) {
96 signal(SIGALRM, timeout);
97 alarm(wsecs);
98 }
99
Matt Kraai1d702672001-02-07 04:09:23 +0000100 if (lport != 0) {
101 memset(&address.sin_addr, 0, sizeof(address.sin_addr));
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000102 address.sin_port = lport;
Matt Kraai1d702672001-02-07 04:09:23 +0000103
104 if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105 bb_perror_msg_and_die("bind");
Matt Kraai1d702672001-02-07 04:09:23 +0000106 }
107
108 if (do_listen) {
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000109 socklen_t addrlen = sizeof(address);
110
Matt Kraai1d702672001-02-07 04:09:23 +0000111 if (listen(sfd, 1) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000112 bb_perror_msg_and_die("listen");
Matt Kraai1d702672001-02-07 04:09:23 +0000113
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000114 if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &addrlen)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 bb_perror_msg_and_die("accept");
Matt Kraai1d702672001-02-07 04:09:23 +0000116
117 close(sfd);
118 sfd = tmpfd;
119 } else {
Matt Kraaic55b8d42001-05-16 15:40:51 +0000120 hostinfo = xgethostbyname(argv[optind]);
Matt Kraai1d702672001-02-07 04:09:23 +0000121
122 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000123 address.sin_port = bb_lookup_port(argv[optind+1], "tcp", 0);
Matt Kraai1d702672001-02-07 04:09:23 +0000124
125 if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 bb_perror_msg_and_die("connect");
Matt Kraai1d702672001-02-07 04:09:23 +0000127 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000128
Mike Frysinger60a5c382005-05-06 04:45:38 +0000129 if (wsecs) {
130 alarm(0);
131 signal(SIGALRM, SIG_DFL);
132 }
133
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000134#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
Eric Andersen1323c942002-04-26 23:59:12 +0000135 /* -e given? */
136 if (pr00gie) {
137 dup2(sfd, 0);
138 close(sfd);
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000139 dup2(0, 1);
140 dup2(0, 2);
141 execl(pr00gie, pr00gie, NULL);
Eric Andersen1323c942002-04-26 23:59:12 +0000142 /* Don't print stuff or it will go over the wire.... */
143 _exit(-1);
144 }
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000145#endif /* CONFIG_NC_GAPING_SECURITY_HOLE */
Eric Andersen1323c942002-04-26 23:59:12 +0000146
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147 FD_ZERO(&readfds);
148 FD_SET(sfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +0000149 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +0000150
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 while (1) {
152 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000153 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +0000155
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +0000157
Matt Kraaibfa79672000-12-15 22:34:34 +0000158 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159 bb_perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +0000160
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161 for (fd = 0; fd < FD_SETSIZE; fd++) {
162 if (FD_ISSET(fd, &testfds)) {
Matt Kraaibfa79672000-12-15 22:34:34 +0000163 if ((nread = safe_read(fd, buf, sizeof(buf))) < 0)
Mike Frysinger9c85ecd2005-05-07 06:45:29 +0000164 bb_perror_msg_and_die(bb_msg_read_error);
Eric Andersencc8ed391999-10-05 16:24:54 +0000165
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 if (fd == sfd) {
167 if (nread == 0)
168 exit(0);
Matt Kraaibfa79672000-12-15 22:34:34 +0000169 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170 } else {
Paul Fox7b71d742005-07-18 22:23:16 +0000171 if (nread <= 0) {
172 shutdown(sfd, 1 /* send */ );
173 close(STDIN_FILENO);
174 FD_CLR(STDIN_FILENO, &readfds);
175 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000176 ofd = sfd;
177 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000178
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 if (bb_full_write(ofd, buf, nread) < 0)
Mike Frysinger9c85ecd2005-05-07 06:45:29 +0000180 bb_perror_msg_and_die(bb_msg_write_error);
Eric Andersen1323c942002-04-26 23:59:12 +0000181 if (delay > 0) {
182 sleep(delay);
183 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000184 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 }
186 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000187}