blob: 85148c4a713be973ae535e64af84c5c7dcfc6578 [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;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000051
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000052#define buf bb_common_bufsiz1
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000053
Mike Frysinger7dc7f402005-05-06 05:00:34 +000054#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
55 char *pr00gie = NULL;
Eric Andersen1323c942002-04-26 23:59:12 +000056#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000057
Erik Andersene49d5ec2000-02-08 19:58:47 +000058 struct sockaddr_in address;
59 struct hostent *hostinfo;
Eric Andersencc8ed391999-10-05 16:24:54 +000060
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 fd_set readfds, testfds;
62
Mike Frysinger60a5c382005-05-06 04:45:38 +000063 while ((opt = getopt(argc, argv, "lp:i:e:w:")) > 0) {
Matt Kraai1d702672001-02-07 04:09:23 +000064 switch (opt) {
65 case 'l':
66 do_listen++;
67 break;
68 case 'p':
Glenn L McGrath036dbaa2004-01-17 05:03:31 +000069 lport = bb_lookup_port(optarg, "tcp", 0);
Matt Kraai1d702672001-02-07 04:09:23 +000070 break;
Eric Andersen1323c942002-04-26 23:59:12 +000071 case 'i':
72 delay = atoi(optarg);
73 break;
Mike Frysinger7dc7f402005-05-06 05:00:34 +000074#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
Eric Andersen1323c942002-04-26 23:59:12 +000075 case 'e':
76 pr00gie = optarg;
77 break;
78#endif
Mike Frysinger60a5c382005-05-06 04:45:38 +000079 case 'w':
80 wsecs = atoi(optarg);
81 break;
Matt Kraai1d702672001-02-07 04:09:23 +000082 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +000083 bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000084 }
Erik Andersen5e1189e2000-04-15 16:34:54 +000085 }
Eric Andersenb6a44b81999-11-13 04:47:09 +000086
Matt Kraai1d702672001-02-07 04:09:23 +000087 if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc))
Manuel Novoa III cad53642003-03-19 09:13:01 +000088 bb_show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000089
Matt Kraaibfa79672000-12-15 22:34:34 +000090 if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 bb_perror_msg_and_die("socket");
Eric Andersenf63a20a2002-05-05 03:40:14 +000092 x = 1;
Mike Frysinger9c85ecd2005-05-07 06:45:29 +000093 if (setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof (x)) == -1)
94 bb_perror_msg_and_die("reuseaddr");
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 address.sin_family = AF_INET;
Eric Andersencc8ed391999-10-05 16:24:54 +000096
Mike Frysinger60a5c382005-05-06 04:45:38 +000097 if (wsecs) {
98 signal(SIGALRM, timeout);
99 alarm(wsecs);
100 }
101
Matt Kraai1d702672001-02-07 04:09:23 +0000102 if (lport != 0) {
103 memset(&address.sin_addr, 0, sizeof(address.sin_addr));
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000104 address.sin_port = lport;
Matt Kraai1d702672001-02-07 04:09:23 +0000105
106 if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 bb_perror_msg_and_die("bind");
Matt Kraai1d702672001-02-07 04:09:23 +0000108 }
109
110 if (do_listen) {
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000111 socklen_t addrlen = sizeof(address);
112
Matt Kraai1d702672001-02-07 04:09:23 +0000113 if (listen(sfd, 1) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000114 bb_perror_msg_and_die("listen");
Matt Kraai1d702672001-02-07 04:09:23 +0000115
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000116 if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &addrlen)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000117 bb_perror_msg_and_die("accept");
Matt Kraai1d702672001-02-07 04:09:23 +0000118
119 close(sfd);
120 sfd = tmpfd;
121 } else {
Matt Kraaic55b8d42001-05-16 15:40:51 +0000122 hostinfo = xgethostbyname(argv[optind]);
Matt Kraai1d702672001-02-07 04:09:23 +0000123
124 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000125 address.sin_port = bb_lookup_port(argv[optind+1], "tcp", 0);
Matt Kraai1d702672001-02-07 04:09:23 +0000126
127 if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128 bb_perror_msg_and_die("connect");
Matt Kraai1d702672001-02-07 04:09:23 +0000129 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000130
Mike Frysinger60a5c382005-05-06 04:45:38 +0000131 if (wsecs) {
132 alarm(0);
133 signal(SIGALRM, SIG_DFL);
134 }
135
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000136#ifdef CONFIG_NC_GAPING_SECURITY_HOLE
Eric Andersen1323c942002-04-26 23:59:12 +0000137 /* -e given? */
138 if (pr00gie) {
139 dup2(sfd, 0);
140 close(sfd);
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000141 dup2(0, 1);
142 dup2(0, 2);
143 execl(pr00gie, pr00gie, NULL);
Eric Andersen1323c942002-04-26 23:59:12 +0000144 /* Don't print stuff or it will go over the wire.... */
145 _exit(-1);
146 }
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000147#endif /* CONFIG_NC_GAPING_SECURITY_HOLE */
Eric Andersen1323c942002-04-26 23:59:12 +0000148
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149 FD_ZERO(&readfds);
150 FD_SET(sfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +0000151 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +0000152
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153 while (1) {
154 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000155 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +0000157
Erik Andersene49d5ec2000-02-08 19:58:47 +0000158 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +0000159
Matt Kraaibfa79672000-12-15 22:34:34 +0000160 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161 bb_perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +0000162
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 for (fd = 0; fd < FD_SETSIZE; fd++) {
164 if (FD_ISSET(fd, &testfds)) {
Matt Kraaibfa79672000-12-15 22:34:34 +0000165 if ((nread = safe_read(fd, buf, sizeof(buf))) < 0)
Mike Frysinger9c85ecd2005-05-07 06:45:29 +0000166 bb_perror_msg_and_die(bb_msg_read_error);
Eric Andersencc8ed391999-10-05 16:24:54 +0000167
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 if (fd == sfd) {
169 if (nread == 0)
170 exit(0);
Matt Kraaibfa79672000-12-15 22:34:34 +0000171 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 } else {
Paul Fox7b71d742005-07-18 22:23:16 +0000173 if (nread <= 0) {
174 shutdown(sfd, 1 /* send */ );
175 close(STDIN_FILENO);
176 FD_CLR(STDIN_FILENO, &readfds);
177 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000178 ofd = sfd;
179 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000180
Manuel Novoa III cad53642003-03-19 09:13:01 +0000181 if (bb_full_write(ofd, buf, nread) < 0)
Mike Frysinger9c85ecd2005-05-07 06:45:29 +0000182 bb_perror_msg_and_die(bb_msg_write_error);
Eric Andersen1323c942002-04-26 23:59:12 +0000183 if (delay > 0) {
184 sleep(delay);
185 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000186 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000187 }
188 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000189}