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