Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 2 | /* nc: mini-netcat - built from the ground up for LRP |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 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. |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 7 | 0.0.3 Uses select() |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 8 | |
| 9 | 19980918 Busy Boxed! Dave Cinege |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 10 | 19990512 Uses Select. Charles P. Wright |
| 11 | 19990513 Fixes stdin stupidity and uses buffers. Charles P. Wright |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 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 | */ |
Eric Andersen | 6705986 | 2001-01-22 22:48:42 +0000 | [diff] [blame] | 28 | |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 29 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 30 | #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 Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 42 | int nc_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 43 | { |
Matt Kraai | 1d70267 | 2001-02-07 04:09:23 +0000 | [diff] [blame] | 44 | int do_listen = 0, lport = 0, tmpfd, opt, sfd; |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 45 | char buf[BUFSIZ]; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 46 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 47 | struct sockaddr_in address; |
| 48 | struct hostent *hostinfo; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 49 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 50 | fd_set readfds, testfds; |
| 51 | |
Matt Kraai | 1d70267 | 2001-02-07 04:09:23 +0000 | [diff] [blame] | 52 | while ((opt = getopt(argc, argv, "lp:")) > 0) { |
| 53 | switch (opt) { |
| 54 | case 'l': |
| 55 | do_listen++; |
| 56 | break; |
| 57 | case 'p': |
| 58 | lport = atoi(optarg); |
| 59 | break; |
| 60 | default: |
| 61 | usage(nc_usage); |
| 62 | } |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 63 | } |
Eric Andersen | b6a44b8 | 1999-11-13 04:47:09 +0000 | [diff] [blame] | 64 | |
Matt Kraai | 1d70267 | 2001-02-07 04:09:23 +0000 | [diff] [blame] | 65 | if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc)) |
| 66 | usage(nc_usage); |
| 67 | |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 68 | if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0) |
| 69 | perror_msg_and_die("socket"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 70 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 71 | address.sin_family = AF_INET; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 72 | |
Matt Kraai | 1d70267 | 2001-02-07 04:09:23 +0000 | [diff] [blame] | 73 | if (lport != 0) { |
| 74 | memset(&address.sin_addr, 0, sizeof(address.sin_addr)); |
| 75 | address.sin_port = htons(lport); |
| 76 | |
| 77 | if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0) |
| 78 | perror_msg_and_die("bind"); |
| 79 | } |
| 80 | |
| 81 | if (do_listen) { |
| 82 | if (listen(sfd, 1) < 0) |
| 83 | perror_msg_and_die("listen"); |
| 84 | |
| 85 | if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &opt)) < 0) |
| 86 | perror_msg_and_die("accept"); |
| 87 | |
| 88 | close(sfd); |
| 89 | sfd = tmpfd; |
| 90 | } else { |
| 91 | if ((hostinfo = gethostbyname(argv[optind])) == NULL) |
| 92 | error_msg_and_die("cannot resolve %s\n", argv[optind]); |
| 93 | |
| 94 | address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list; |
| 95 | address.sin_port = htons(atoi(argv[optind+1])); |
| 96 | |
| 97 | if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0) |
| 98 | perror_msg_and_die("connect"); |
| 99 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 100 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 101 | FD_ZERO(&readfds); |
| 102 | FD_SET(sfd, &readfds); |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 103 | FD_SET(STDIN_FILENO, &readfds); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 104 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 105 | while (1) { |
| 106 | int fd; |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 107 | int ofd; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 108 | int nread; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 109 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 110 | testfds = readfds; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 111 | |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 112 | if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0) |
| 113 | perror_msg_and_die("select"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 114 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 115 | for (fd = 0; fd < FD_SETSIZE; fd++) { |
| 116 | if (FD_ISSET(fd, &testfds)) { |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 117 | if ((nread = safe_read(fd, buf, sizeof(buf))) < 0) |
| 118 | perror_msg_and_die("read"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 119 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 120 | if (fd == sfd) { |
| 121 | if (nread == 0) |
| 122 | exit(0); |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 123 | ofd = STDOUT_FILENO; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 124 | } else { |
Matt Kraai | 95fa0ea | 2000-12-14 04:34:58 +0000 | [diff] [blame] | 125 | if (nread == 0) |
| 126 | shutdown(sfd, 1); |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 127 | ofd = sfd; |
| 128 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 129 | |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 130 | if (full_write(ofd, buf, nread) < 0) |
| 131 | perror_msg_and_die("write"); |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 132 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 133 | } |
| 134 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 135 | } |