blob: a9e66bebf31e3044f69152256beaf38ca01ce04c [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/* mnc: mini-netcat - built from the ground up for LRP
2 Copyright (C) 1998 Charles P. Wright
3
4 0.0.1 6K It works.
5 0.0.2 5K Smaller and you can also check the exit condition if you wish.
Eric Andersen2ce1edc1999-10-12 15:42:48 +00006 0.0.3 Uses select()
Eric Andersencc8ed391999-10-05 16:24:54 +00007
8 19980918 Busy Boxed! Dave Cinege
Eric Andersen2ce1edc1999-10-12 15:42:48 +00009 19990512 Uses Select. Charles P. Wright
10 19990513 Fixes stdin stupidity and uses buffers. Charles P. Wright
Eric Andersencc8ed391999-10-05 16:24:54 +000011
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26*/
27#include "internal.h"
28#include <stdio.h>
29#include <stdlib.h>
30#include <unistd.h>
31
32#include <sys/types.h>
33#include <sys/socket.h>
34#include <netinet/in.h>
35#include <arpa/inet.h>
36#include <netdb.h>
37#include <sys/time.h>
38#include <sys/ioctl.h>
39
Eric Andersen2ce1edc1999-10-12 15:42:48 +000040#define BUFSIZE 100
41
Eric Andersene77ae3a1999-10-19 20:03:34 +000042static const char mnc_usage[] =
Eric Andersen2ce1edc1999-10-12 15:42:48 +000043"mini-netcat 0.0.3 -- Open pipe to IP:port\n"
Eric Andersencc8ed391999-10-05 16:24:54 +000044"\tmnc [IP] [port]\n";
45
46int
Eric Andersen2ce1edc1999-10-12 15:42:48 +000047mnc_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000048{
Eric Andersencc8ed391999-10-05 16:24:54 +000049 int sfd;
50 int result;
51 int len;
Eric Andersen2ce1edc1999-10-12 15:42:48 +000052 char ch[BUFSIZE];
Eric Andersencc8ed391999-10-05 16:24:54 +000053
54 struct sockaddr_in address;
55 struct hostent *hostinfo;
56
Eric Andersencc8ed391999-10-05 16:24:54 +000057 fd_set readfds, testfds;
Eric Andersencc8ed391999-10-05 16:24:54 +000058
59 sfd = socket(AF_INET, SOCK_STREAM, 0);
60
61 hostinfo = (struct hostent *) gethostbyname(argv[1]);
62
63 if (!hostinfo)
64 {
65 exit(1);
66 }
67
68 address.sin_family = AF_INET;
69 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
70 address.sin_port = htons(atoi(argv[2]));
71
72 len = sizeof(address);
73
74 result = connect(sfd, (struct sockaddr *)&address, len);
75
76 if (result < 0)
77 {
78 exit(2);
79 }
80
Eric Andersencc8ed391999-10-05 16:24:54 +000081 FD_ZERO(&readfds);
82 FD_SET(sfd, &readfds);
83 FD_SET(fileno(stdin), &readfds);
84
85 while(1)
86 {
87 int fd;
Eric Andersen2ce1edc1999-10-12 15:42:48 +000088 int ofd;
Eric Andersencc8ed391999-10-05 16:24:54 +000089 int nread;
90
91 testfds = readfds;
92
93 result = select(FD_SETSIZE, &testfds, (fd_set *) NULL, (fd_set *) NULL, (struct timeval *) 0);
94
95 if(result < 1)
96 {
97 exit(3);
98 }
99
100 for(fd = 0; fd < FD_SETSIZE; fd++)
101 {
102 if(FD_ISSET(fd,&testfds))
103 {
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000104 int trn = 0;
105 int rn;
Eric Andersencc8ed391999-10-05 16:24:54 +0000106
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000107 ioctl(fd, FIONREAD, &nread);
Eric Andersencc8ed391999-10-05 16:24:54 +0000108
109 if(fd == sfd)
110 {
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000111 if (nread == 0)
112 exit(0);
113 ofd = fileno(stdout);
114 }
115 else
116 {
117 ofd = sfd;
118 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000119
Eric Andersencc8ed391999-10-05 16:24:54 +0000120
Eric Andersen2ce1edc1999-10-12 15:42:48 +0000121
122 do
123 {
124 rn = (BUFSIZE < nread - trn) ? BUFSIZE : nread - trn;
125 trn += rn;
126 read(fd, ch, rn);
127 write(ofd, ch, rn);
128 }
129 while (trn < nread);
130 }
131 }
132 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000133}