blob: 7de4015ac24d50ee06c101a8a566dffe3d297862 [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 Andersen3570a342000-09-25 21:45:58 +000029#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000030#include <stdio.h>
31#include <stdlib.h>
32#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>
41
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000042int nc_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000043{
Erik Andersene49d5ec2000-02-08 19:58:47 +000044 int sfd;
Matt Kraaibfa79672000-12-15 22:34:34 +000045 char buf[BUFSIZ];
Eric Andersencc8ed391999-10-05 16:24:54 +000046
Erik Andersene49d5ec2000-02-08 19:58:47 +000047 struct sockaddr_in address;
48 struct hostent *hostinfo;
Eric Andersencc8ed391999-10-05 16:24:54 +000049
Erik Andersene49d5ec2000-02-08 19:58:47 +000050 fd_set readfds, testfds;
51
Eric Andersenb6a44b81999-11-13 04:47:09 +000052 argc--;
53 argv++;
Matt Kraaibfa79672000-12-15 22:34:34 +000054 if (argc < 2 || **argv == '-') {
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000055 usage(nc_usage);
Erik Andersen5e1189e2000-04-15 16:34:54 +000056 }
Eric Andersenb6a44b81999-11-13 04:47:09 +000057
Matt Kraaibfa79672000-12-15 22:34:34 +000058 if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
59 perror_msg_and_die("socket");
Eric Andersencc8ed391999-10-05 16:24:54 +000060
Matt Kraaibfa79672000-12-15 22:34:34 +000061 if ((hostinfo = gethostbyname(*argv)) == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +000062 error_msg_and_die("cannot resolve %s\n", *argv);
Eric Andersencc8ed391999-10-05 16:24:54 +000063
Erik Andersene49d5ec2000-02-08 19:58:47 +000064 address.sin_family = AF_INET;
65 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
66 address.sin_port = htons(atoi(*(++argv)));
Eric Andersencc8ed391999-10-05 16:24:54 +000067
Matt Kraaibfa79672000-12-15 22:34:34 +000068 if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
69 perror_msg_and_die("connect");
Eric Andersencc8ed391999-10-05 16:24:54 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 FD_ZERO(&readfds);
72 FD_SET(sfd, &readfds);
Matt Kraaibfa79672000-12-15 22:34:34 +000073 FD_SET(STDIN_FILENO, &readfds);
Eric Andersencc8ed391999-10-05 16:24:54 +000074
Erik Andersene49d5ec2000-02-08 19:58:47 +000075 while (1) {
76 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +000077 int ofd;
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 int nread;
Eric Andersencc8ed391999-10-05 16:24:54 +000079
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 testfds = readfds;
Eric Andersencc8ed391999-10-05 16:24:54 +000081
Matt Kraaibfa79672000-12-15 22:34:34 +000082 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
83 perror_msg_and_die("select");
Eric Andersencc8ed391999-10-05 16:24:54 +000084
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 for (fd = 0; fd < FD_SETSIZE; fd++) {
86 if (FD_ISSET(fd, &testfds)) {
Matt Kraaibfa79672000-12-15 22:34:34 +000087 if ((nread = safe_read(fd, buf, sizeof(buf))) < 0)
88 perror_msg_and_die("read");
Eric Andersencc8ed391999-10-05 16:24:54 +000089
Erik Andersene49d5ec2000-02-08 19:58:47 +000090 if (fd == sfd) {
91 if (nread == 0)
92 exit(0);
Matt Kraaibfa79672000-12-15 22:34:34 +000093 ofd = STDOUT_FILENO;
Erik Andersene49d5ec2000-02-08 19:58:47 +000094 } else {
Matt Kraai95fa0ea2000-12-14 04:34:58 +000095 if (nread == 0)
96 shutdown(sfd, 1);
Eric Andersen2ce1edc1999-10-12 15:42:48 +000097 ofd = sfd;
98 }
Eric Andersencc8ed391999-10-05 16:24:54 +000099
Matt Kraaibfa79672000-12-15 22:34:34 +0000100 if (full_write(ofd, buf, nread) < 0)
101 perror_msg_and_die("write");
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000102 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103 }
104 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000105}