More cleanups.
[oweals/busybox.git] / nc.c
1 /* vi: set sw=4 ts=4: */
2 /*  nc: mini-netcat - built from the ground up for LRP
3     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.
7     0.0.3           Uses select()       
8
9     19980918 Busy Boxed! Dave Cinege
10     19990512 Uses Select. Charles P. Wright
11     19990513 Fixes stdin stupidity and uses buffers.  Charles P. Wright
12
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 */
28 #include "internal.h"
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32
33 #include <sys/types.h>
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <arpa/inet.h>
37 #include <netdb.h>
38 #include <sys/time.h>
39 #include <sys/ioctl.h>
40
41 #define BUFSIZE 100
42
43 static const char nc_usage[] = "nc [IP] [port]\n" 
44 #ifndef BB_FEATURE_TRIVIAL_HELP
45         "\nNetcat opens a pipe to IP:port\n"
46 #endif
47         ;
48
49 int nc_main(int argc, char **argv)
50 {
51         int sfd;
52         int result;
53         int len;
54         char ch[BUFSIZE];
55
56         struct sockaddr_in address;
57         struct hostent *hostinfo;
58
59         fd_set readfds, testfds;
60
61         argc--;
62         argv++;
63         if (argc < 2 || **(argv + 1) == '-') {
64                 usage(nc_usage);
65         }
66
67         sfd = socket(AF_INET, SOCK_STREAM, 0);
68
69         hostinfo = (struct hostent *) gethostbyname(*argv);
70
71         if (!hostinfo) {
72                 fatalError("cannot resolve %s\n", *argv);
73         }
74
75         address.sin_family = AF_INET;
76         address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
77         address.sin_port = htons(atoi(*(++argv)));
78
79         len = sizeof(address);
80
81         result = connect(sfd, (struct sockaddr *) &address, len);
82
83         if (result < 0) {
84                 perror("nc: connect");
85                 exit(2);
86         }
87
88         FD_ZERO(&readfds);
89         FD_SET(sfd, &readfds);
90         FD_SET(fileno(stdin), &readfds);
91
92         while (1) {
93                 int fd;
94                 int ofd;
95                 int nread;
96
97                 testfds = readfds;
98
99                 result =
100                         select(FD_SETSIZE, &testfds, (fd_set *) NULL, (fd_set *) NULL,
101                                    (struct timeval *) 0);
102
103                 if (result < 1) {
104                         perror("nc: select");
105                         exit(3);
106                 }
107
108                 for (fd = 0; fd < FD_SETSIZE; fd++) {
109                         if (FD_ISSET(fd, &testfds)) {
110                                 int trn = 0;
111                                 int rn;
112
113                                 ioctl(fd, FIONREAD, &nread);
114
115                                 if (fd == sfd) {
116                                         if (nread == 0)
117                                                 exit(0);
118                                         ofd = fileno(stdout);
119                                 } else {
120                                         ofd = sfd;
121                                 }
122
123
124
125                                 do {
126                                         rn = (BUFSIZE < nread - trn) ? BUFSIZE : nread - trn;
127                                         trn += rn;
128                                         read(fd, ch, rn);
129                                         write(ofd, ch, rn);
130                                 }
131                                 while (trn < nread);
132                         }
133                 }
134         }
135 }