Move messages.c to libbb. Make each string in messages.c be its own .o file.
[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
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.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 #include "busybox.h"
42
43 int nc_main(int argc, char **argv)
44 {
45         int do_listen = 0, lport = 0, tmpfd, opt, sfd;
46         char buf[BUFSIZ];
47
48         struct sockaddr_in address;
49         struct hostent *hostinfo;
50
51         fd_set readfds, testfds;
52
53         while ((opt = getopt(argc, argv, "lp:")) > 0) {
54                 switch (opt) {
55                         case 'l':
56                                 do_listen++;
57                                 break;
58                         case 'p':
59                                 lport = atoi(optarg);
60                                 break;
61                         default:
62                                 show_usage();
63                 }
64         }
65
66         if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc))
67                 show_usage();
68
69         if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
70                 perror_msg_and_die("socket");
71
72         address.sin_family = AF_INET;
73
74         if (lport != 0) {
75                 memset(&address.sin_addr, 0, sizeof(address.sin_addr));
76                 address.sin_port = htons(lport);
77
78                 if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
79                         perror_msg_and_die("bind");
80         }
81
82         if (do_listen) {
83                 if (listen(sfd, 1) < 0)
84                         perror_msg_and_die("listen");
85
86                 if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &opt)) < 0)
87                         perror_msg_and_die("accept");
88
89                 close(sfd);
90                 sfd = tmpfd;
91         } else {
92                 if ((hostinfo = gethostbyname(argv[optind])) == NULL)
93                         error_msg_and_die("cannot resolve %s\n", argv[optind]);
94
95                 address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
96                 address.sin_port = htons(atoi(argv[optind+1]));
97
98                 if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
99                         perror_msg_and_die("connect");
100         }
101
102         FD_ZERO(&readfds);
103         FD_SET(sfd, &readfds);
104         FD_SET(STDIN_FILENO, &readfds);
105
106         while (1) {
107                 int fd;
108                 int ofd;
109                 int nread;
110
111                 testfds = readfds;
112
113                 if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
114                         perror_msg_and_die("select");
115
116                 for (fd = 0; fd < FD_SETSIZE; fd++) {
117                         if (FD_ISSET(fd, &testfds)) {
118                                 if ((nread = safe_read(fd, buf, sizeof(buf))) < 0)
119                                         perror_msg_and_die("read");
120
121                                 if (fd == sfd) {
122                                         if (nread == 0)
123                                                 exit(0);
124                                         ofd = STDOUT_FILENO;
125                                 } else {
126                                         if (nread == 0)
127                                                 shutdown(sfd, 1);
128                                         ofd = sfd;
129                                 }
130
131                                 if (full_write(ofd, buf, nread) < 0)
132                                         perror_msg_and_die("write");
133                         }
134                 }
135         }
136 }