blob: 63d8c5b19db9b70b8f16527ac4a3f6e8ed7b5104 [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.
Eric Andersen2ce1edc1999-10-12 15:42:48 +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.
26
27*/
Eric Andersen67059862001-01-22 22:48:42 +000028
Eric Andersencc8ed391999-10-05 16:24:54 +000029#include <stdio.h>
30#include <stdlib.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000031#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000032#include <unistd.h>
33
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
Eric Andersen1323c942002-04-26 23:59:12 +000043#define GAPING_SECURITY_HOLE
44
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000045int nc_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000046{
Eric Andersenf63a20a2002-05-05 03:40:14 +000047 int do_listen = 0, lport = 0, delay = 0, tmpfd, opt, sfd, x;
Matt Kraaibfa79672000-12-15 22:34:34 +000048 char buf[BUFSIZ];
Eric Andersen1323c942002-04-26 23:59:12 +000049#ifdef GAPING_SECURITY_HOLE
50 char * pr00gie = NULL;
51#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000052
Erik Andersene49d5ec2000-02-08 19:58:47 +000053 struct sockaddr_in address;
54 struct hostent *hostinfo;
Eric Andersencc8ed391999-10-05 16:24:54 +000055
Erik Andersene49d5ec2000-02-08 19:58:47 +000056 fd_set readfds, testfds;
57
Eric Andersen1323c942002-04-26 23:59:12 +000058 while ((opt = getopt(argc, argv, "lp:i:e:")) > 0) {
Matt Kraai1d702672001-02-07 04:09:23 +000059 switch (opt) {
60 case 'l':
61 do_listen++;
62 break;
63 case 'p':
64 lport = atoi(optarg);
65 break;
Eric Andersen1323c942002-04-26 23:59:12 +000066 case 'i':
67 delay = atoi(optarg);
68 break;
69#ifdef GAPING_SECURITY_HOLE
70 case 'e':
71 pr00gie = optarg;
72 break;
73#endif
Matt Kraai1d702672001-02-07 04:09:23 +000074 default:
Eric Andersen67991cf2001-02-14 21:23:06 +000075 show_usage();
Matt Kraai1d702672001-02-07 04:09:23 +000076 }
Erik Andersen5e1189e2000-04-15 16:34:54 +000077 }
Eric Andersenb6a44b81999-11-13 04:47:09 +000078
Eric Andersen1323c942002-04-26 23:59:12 +000079#ifdef GAPING_SECURITY_HOLE
80 if (pr00gie) {
81 /* won't need stdin */
82 close (fileno(stdin));
83 }
84#endif /* GAPING_SECURITY_HOLE */
85
86
Matt Kraai1d702672001-02-07 04:09:23 +000087 if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc))
Eric Andersen67991cf2001-02-14 21:23:06 +000088 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)
91 perror_msg_and_die("socket");
Eric Andersenf63a20a2002-05-05 03:40:14 +000092 x = 1;
93 if (setsockopt (sfd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof (x)) == -1)
94 perror_msg_and_die ("reuseaddr failed");
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 address.sin_family = AF_INET;
Eric Andersencc8ed391999-10-05 16:24:54 +000096
Matt Kraai1d702672001-02-07 04:09:23 +000097 if (lport != 0) {
98 memset(&address.sin_addr, 0, sizeof(address.sin_addr));
99 address.sin_port = htons(lport);
100
101 if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
102 perror_msg_and_die("bind");
103 }
104
105 if (do_listen) {
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000106 socklen_t addrlen = sizeof(address);
107
Matt Kraai1d702672001-02-07 04:09:23 +0000108 if (listen(sfd, 1) < 0)
109 perror_msg_and_die("listen");
110
Matt Kraaibe9f44a2001-05-15 03:05:39 +0000111 if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &addrlen)) < 0)
Matt Kraai1d702672001-02-07 04:09:23 +0000112 perror_msg_and_die("accept");
113
114 close(sfd);
115 sfd = tmpfd;
116 } else {
Matt Kraaic55b8d42001-05-16 15:40:51 +0000117 hostinfo = xgethostbyname(argv[optind]);
Matt Kraai1d702672001-02-07 04:09:23 +0000118
119 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
120 address.sin_port = htons(atoi(argv[optind+1]));
121
122 if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
123 perror_msg_and_die("connect");
124 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000125
Eric Andersen1323c942002-04-26 23:59:12 +0000126#ifdef GAPING_SECURITY_HOLE
127 /* -e given? */
128 if (pr00gie) {
129 dup2(sfd, 0);
130 close(sfd);
131 dup2 (0, 1);
132 dup2 (0, 2);
133 execl (pr00gie, pr00gie, NULL);
134 /* Don't print stuff or it will go over the wire.... */
135 _exit(-1);
136 }
137#endif /* GAPING_SECURITY_HOLE */
138
139
Erik Andersene49d5ec2000-02-08 19:58:47 +0000140 FD_ZERO(&readfds);
141 FD_SET(sfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +0000142 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +0000143
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 while (1) {
145 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000146 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +0000148
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +0000150
Matt Kraaibfa79672000-12-15 22:34:34 +0000151 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
152 perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +0000153
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 for (fd = 0; fd < FD_SETSIZE; fd++) {
155 if (FD_ISSET(fd, &testfds)) {
Matt Kraaibfa79672000-12-15 22:34:34 +0000156 if ((nread = safe_read(fd, buf, sizeof(buf))) < 0)
157 perror_msg_and_die("read");
Eric Andersencc8ed391999-10-05 16:24:54 +0000158
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 if (fd == sfd) {
160 if (nread == 0)
161 exit(0);
Matt Kraaibfa79672000-12-15 22:34:34 +0000162 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 } else {
Matt Kraai95fa0ea2000-12-14 04:34:58 +0000164 if (nread == 0)
165 shutdown(sfd, 1);
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000166 ofd = sfd;
167 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000168
Matt Kraaibfa79672000-12-15 22:34:34 +0000169 if (full_write(ofd, buf, nread) < 0)
170 perror_msg_and_die("write");
Eric Andersen1323c942002-04-26 23:59:12 +0000171 if (delay > 0) {
172 sleep(delay);
173 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000174 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175 }
176 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000177}