3
0

nc.c 5.3 KB

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