blob: bb6373fd3e51d29202f2aca67d8f006802f78203 [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
Mike Frysinger7dc7f402005-05-06 05:00:34 +000085#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
Eric Andersen1323c942002-04-26 23:59:12 +000086 if (pr00gie) {
87 /* won't need stdin */
Eric Andersen70060d22004-03-27 10:02:48 +000088 close (STDIN_FILENO);
Eric Andersen1323c942002-04-26 23:59:12 +000089 }
Mike Frysinger7dc7f402005-05-06 05:00:34 +000090#endif /* CONFIG_NC_GAPING_SECURITY_HOLE */
Eric Andersen1323c942002-04-26 23:59:12 +000091
Matt Kraai1d702672001-02-07 04:09:23 +000092 if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc))
Manuel Novoa III cad53642003-03-19 09:13:01 +000093 bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000094
Matt Kraaibfa79672000-12-15 22:34:34 +000095 if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 bb_perror_msg_and_die("socket");
Eric Andersenf63a20a2002-05-05 03:40:14 +000097 x = 1;
98 if (setsockopt (sfd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof (x)) == -1)
Manuel Novoa III cad53642003-03-19 09:13:01 +000099 bb_perror_msg_and_die ("reuseaddr failed");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100 address.sin_family = AF_INET;
Eric Andersencc8ed391999-10-05 16:24:54 +0000101
Mike Frysinger60a5c382005-05-06 04:45:38 +0000102 if (wsecs) {
103 signal(SIGALRM, timeout);
104 alarm(wsecs);
105 }
106
Matt Kraai1d702672001-02-07 04:09:23 +0000107 if (lport != 0) {
108 memset(&address.sin_addr, 0, sizeof(address.sin_addr));
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000109 address.sin_port = lport;
Matt Kraai1d702672001-02-07 04:09:23 +0000110
111 if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000112 bb_perror_msg_and_die("bind");
Matt Kraai1d702672001-02-07 04:09:23 +0000113 }
114
115 if (do_listen) {
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000116 socklen_t addrlen = sizeof(address);
117
Matt Kraai1d702672001-02-07 04:09:23 +0000118 if (listen(sfd, 1) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_perror_msg_and_die("listen");
Matt Kraai1d702672001-02-07 04:09:23 +0000120
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000121 if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &addrlen)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000122 bb_perror_msg_and_die("accept");
Matt Kraai1d702672001-02-07 04:09:23 +0000123
124 close(sfd);
125 sfd = tmpfd;
126 } else {
Matt Kraaic55b8d42001-05-16 15:40:51 +0000127 hostinfo = xgethostbyname(argv[optind]);
Matt Kraai1d702672001-02-07 04:09:23 +0000128
129 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000130 address.sin_port = bb_lookup_port(argv[optind+1], "tcp", 0);
Matt Kraai1d702672001-02-07 04:09:23 +0000131
132 if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000133 bb_perror_msg_and_die("connect");
Matt Kraai1d702672001-02-07 04:09:23 +0000134 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000135
Mike Frysinger60a5c382005-05-06 04:45:38 +0000136 if (wsecs) {
137 alarm(0);
138 signal(SIGALRM, SIG_DFL);
139 }
140
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000141#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
Eric Andersen1323c942002-04-26 23:59:12 +0000142 /* -e given? */
143 if (pr00gie) {
144 dup2(sfd, 0);
145 close(sfd);
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000146 dup2(0, 1);
147 dup2(0, 2);
148 execl(pr00gie, pr00gie, NULL);
Eric Andersen1323c942002-04-26 23:59:12 +0000149 /* Don't print stuff or it will go over the wire.... */
150 _exit(-1);
151 }
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000152#endif /* CONFIG_NC_GAPING_SECURITY_HOLE */
Eric Andersen1323c942002-04-26 23:59:12 +0000153
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 FD_ZERO(&readfds);
155 FD_SET(sfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +0000156 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +0000157
Erik Andersene49d5ec2000-02-08 19:58:47 +0000158 while (1) {
159 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000160 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +0000162
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +0000164
Matt Kraaibfa79672000-12-15 22:34:34 +0000165 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166 bb_perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +0000167
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 for (fd = 0; fd < FD_SETSIZE; fd++) {
169 if (FD_ISSET(fd, &testfds)) {
Matt Kraaibfa79672000-12-15 22:34:34 +0000170 if ((nread = safe_read(fd, buf, sizeof(buf))) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 bb_perror_msg_and_die("read");
Eric Andersencc8ed391999-10-05 16:24:54 +0000172
Erik Andersene49d5ec2000-02-08 19:58:47 +0000173 if (fd == sfd) {
174 if (nread == 0)
175 exit(0);
Matt Kraaibfa79672000-12-15 22:34:34 +0000176 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177 } else {
Matt Kraai95fa0ea2000-12-14 04:34:58 +0000178 if (nread == 0)
179 shutdown(sfd, 1);
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000180 ofd = sfd;
181 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000182
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183 if (bb_full_write(ofd, buf, nread) < 0)
184 bb_perror_msg_and_die("write");
Eric Andersen1323c942002-04-26 23:59:12 +0000185 if (delay > 0) {
186 sleep(delay);
187 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000188 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189 }
190 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000191}