nc.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /* vi: set sw=4 ts=4: */
  2. /* nc: mini-netcat - built from the ground up for LRP
  3. *
  4. * Copyright (C) 1998, 1999 Charles P. Wright
  5. * Copyright (C) 1998 Dave Cinege
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  8. */
  9. #include "busybox.h"
  10. /* Lots of small differences in features
  11. * when compared to "standard" nc
  12. */
  13. static void timeout(int signum)
  14. {
  15. bb_error_msg_and_die("timed out");
  16. }
  17. int nc_main(int argc, char **argv)
  18. {
  19. /* sfd sits _here_ only because of "repeat" option (-l -l). */
  20. int sfd = sfd; /* for gcc */
  21. int cfd = 0;
  22. unsigned lport = 0;
  23. SKIP_NC_SERVER(const) unsigned do_listen = 0;
  24. SKIP_NC_EXTRA (const) unsigned wsecs = 0;
  25. SKIP_NC_EXTRA (const) unsigned delay = 0;
  26. SKIP_NC_EXTRA (const int execparam = 0;)
  27. USE_NC_EXTRA (char **execparam = NULL;)
  28. len_and_sockaddr *lsa;
  29. fd_set readfds, testfds;
  30. int opt; /* must be signed (getopt returns -1) */
  31. if (ENABLE_NC_SERVER || ENABLE_NC_EXTRA) {
  32. /* getopt32 is _almost_ usable:
  33. ** it cannot handle "... -e prog -prog-opt" */
  34. while ((opt = getopt(argc, argv,
  35. "" USE_NC_SERVER("lp:") USE_NC_EXTRA("w:i:f:e:") )) > 0
  36. ) {
  37. if (ENABLE_NC_SERVER && opt=='l') USE_NC_SERVER(do_listen++);
  38. else if (ENABLE_NC_SERVER && opt=='p') {
  39. USE_NC_SERVER(lport = bb_lookup_port(optarg, "tcp", 0));
  40. }
  41. else if (ENABLE_NC_EXTRA && opt=='w') USE_NC_EXTRA( wsecs = xatou(optarg));
  42. else if (ENABLE_NC_EXTRA && opt=='i') USE_NC_EXTRA( delay = xatou(optarg));
  43. else if (ENABLE_NC_EXTRA && opt=='f') USE_NC_EXTRA( cfd = xopen(optarg, O_RDWR));
  44. else if (ENABLE_NC_EXTRA && opt=='e' && optind<=argc) {
  45. /* We cannot just 'break'. We should let getopt finish.
  46. ** Or else we won't be able to find where
  47. ** 'host' and 'port' params are
  48. ** (think "nc -w 60 host port -e prog"). */
  49. USE_NC_EXTRA(
  50. char **p;
  51. // +2: one for progname (optarg) and one for NULL
  52. execparam = xzalloc(sizeof(char*) * (argc - optind + 2));
  53. p = execparam;
  54. *p++ = optarg;
  55. while (optind < argc) {
  56. *p++ = argv[optind++];
  57. }
  58. )
  59. /* optind points to argv[arvc] (NULL) now.
  60. ** FIXME: we assume that getopt will not count options
  61. ** possibly present on "-e prog args" and will not
  62. ** include them into final value of optind
  63. ** which is to be used ... */
  64. } else bb_show_usage();
  65. }
  66. argv += optind; /* ... here! */
  67. argc -= optind;
  68. // -l and -f don't mix
  69. if (do_listen && cfd) bb_show_usage();
  70. // Listen or file modes need zero arguments, client mode needs 2
  71. if (do_listen || cfd) {
  72. if (argc) bb_show_usage();
  73. } else {
  74. if (!argc || argc > 2) bb_show_usage();
  75. }
  76. } else {
  77. if (argc != 3) bb_show_usage();
  78. argc--;
  79. argv++;
  80. }
  81. if (wsecs) {
  82. signal(SIGALRM, timeout);
  83. alarm(wsecs);
  84. }
  85. if (!cfd) {
  86. if (do_listen) {
  87. socklen_t addrlen;
  88. /* create_and_bind_stream_or_die(NULL, lport)
  89. * would've work wonderfully, but we need
  90. * to know lsa */
  91. sfd = xsocket_stream(&lsa);
  92. if (lport)
  93. set_nport(lsa, htons(lport));
  94. setsockopt_reuseaddr(sfd);
  95. xbind(sfd, &lsa->sa, lsa->len);
  96. xlisten(sfd, do_listen); /* can be > 1 */
  97. /* If we didn't specify a port number,
  98. * query and print it after listen() */
  99. if (!lport) {
  100. addrlen = lsa->len;
  101. getsockname(sfd, &lsa->sa, &addrlen);
  102. lport = get_nport(lsa);
  103. fdprintf(2, "%d\n", ntohs(lport));
  104. }
  105. fcntl(sfd, F_SETFD, FD_CLOEXEC);
  106. accept_again:
  107. addrlen = lsa->len;
  108. cfd = accept(sfd, NULL, 0); /* &lsa->sa, &addrlen); */
  109. if (cfd < 0)
  110. bb_perror_msg_and_die("accept");
  111. if (!execparam)
  112. close(sfd);
  113. } else {
  114. cfd = create_and_connect_stream_or_die(argv[0],
  115. argv[1] ? bb_lookup_port(argv[1], "tcp", 0) : 0);
  116. }
  117. }
  118. if (wsecs) {
  119. alarm(0);
  120. signal(SIGALRM, SIG_DFL);
  121. }
  122. /* -e given? */
  123. if (execparam) {
  124. signal(SIGCHLD, SIG_IGN);
  125. // With more than one -l, repeatedly act as server.
  126. if (do_listen > 1 && vfork()) {
  127. /* parent */
  128. // This is a bit weird as cleanup goes, since we wind up with no
  129. // stdin/stdout/stderr. But it's small and shouldn't hurt anything.
  130. // We check for cfd == 0 above.
  131. logmode = LOGMODE_NONE;
  132. close(0);
  133. close(1);
  134. close(2);
  135. goto accept_again;
  136. }
  137. /* child (or main thread if no multiple -l) */
  138. if (cfd) {
  139. dup2(cfd, 0);
  140. close(cfd);
  141. }
  142. dup2(0, 1);
  143. dup2(0, 2);
  144. USE_NC_EXTRA(execvp(execparam[0], execparam);)
  145. /* Don't print stuff or it will go over the wire.... */
  146. _exit(127);
  147. }
  148. // Select loop copying stdin to cfd, and cfd to stdout.
  149. FD_ZERO(&readfds);
  150. FD_SET(cfd, &readfds);
  151. FD_SET(STDIN_FILENO, &readfds);
  152. for (;;) {
  153. int fd;
  154. int ofd;
  155. int nread;
  156. testfds = readfds;
  157. if (select(FD_SETSIZE, &testfds, NULL, NULL, NULL) < 0)
  158. bb_perror_msg_and_die("select");
  159. for (fd = 0; fd < FD_SETSIZE; fd++) {
  160. if (FD_ISSET(fd, &testfds)) {
  161. nread = safe_read(fd, bb_common_bufsiz1,
  162. sizeof(bb_common_bufsiz1));
  163. if (fd == cfd) {
  164. if (nread < 1)
  165. exit(0);
  166. ofd = STDOUT_FILENO;
  167. } else {
  168. if (nread<1) {
  169. // Close outgoing half-connection so they get EOF, but
  170. // leave incoming alone so we can see response.
  171. shutdown(cfd, 1);
  172. FD_CLR(STDIN_FILENO, &readfds);
  173. }
  174. ofd = cfd;
  175. }
  176. xwrite(ofd, bb_common_bufsiz1, nread);
  177. if (delay > 0) sleep(delay);
  178. }
  179. }
  180. }
  181. }