nc.c 5.2 KB

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