pscan.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Pscan is a mini port scanner implementation for busybox
  3. *
  4. * Copyright 2007 Tito Ragusa <farmatito@tiscali.it>
  5. *
  6. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  7. */
  8. //config:config PSCAN
  9. //config: bool "pscan (6.6 kb)"
  10. //config: default y
  11. //config: help
  12. //config: Simple network port scanner.
  13. //applet:IF_PSCAN(APPLET(pscan, BB_DIR_USR_BIN, BB_SUID_DROP))
  14. //kbuild:lib-$(CONFIG_PSCAN) += pscan.o
  15. //usage:#define pscan_trivial_usage
  16. //usage: "[-cb] [-p MIN_PORT] [-P MAX_PORT] [-t TIMEOUT] [-T MIN_RTT] HOST"
  17. //usage:#define pscan_full_usage "\n\n"
  18. //usage: "Scan a host, print all open ports\n"
  19. //usage: "\n -c Show closed ports too"
  20. //usage: "\n -b Show blocked ports too"
  21. //usage: "\n -p Scan from this port (default 1)"
  22. //usage: "\n -P Scan up to this port (default 1024)"
  23. //usage: "\n -t Timeout (default 5000 ms)"
  24. //usage: "\n -T Minimum rtt (default 5 ms, increase for congested hosts)"
  25. #include "libbb.h"
  26. /* debugging */
  27. #ifdef DEBUG_PSCAN
  28. #define DMSG(...) bb_error_msg(__VA_ARGS__)
  29. #define DERR(...) bb_perror_msg(__VA_ARGS__)
  30. #else
  31. #define DMSG(...) ((void)0)
  32. #define DERR(...) ((void)0)
  33. #endif
  34. static const char *port_name(unsigned port)
  35. {
  36. struct servent *server;
  37. server = getservbyport(htons(port), NULL);
  38. if (server)
  39. return server->s_name;
  40. return "unknown";
  41. }
  42. /* We don't expect to see 1000+ seconds delay, unsigned is enough */
  43. #define MONOTONIC_US() ((unsigned)monotonic_us())
  44. int pscan_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  45. int pscan_main(int argc UNUSED_PARAM, char **argv)
  46. {
  47. const char *opt_max_port = "1024"; /* -P: default max port */
  48. const char *opt_min_port = "1"; /* -p: default min port */
  49. const char *opt_timeout = "5000"; /* -t: default timeout in msec */
  50. /* We estimate rtt and wait rtt*4 before concluding that port is
  51. * totally blocked. min rtt of 5 ms may be too low if you are
  52. * scanning an Internet host behind saturated/traffic shaped link.
  53. * Rule of thumb: with min_rtt of N msec, scanning 1000 ports
  54. * will take N seconds at absolute minimum */
  55. const char *opt_min_rtt = "5"; /* -T: default min rtt in msec */
  56. const char *result_str;
  57. len_and_sockaddr *lsap;
  58. int s;
  59. unsigned opt;
  60. unsigned port, max_port, nports;
  61. unsigned closed_ports = 0;
  62. unsigned open_ports = 0;
  63. /* all in usec */
  64. unsigned timeout;
  65. unsigned min_rtt;
  66. unsigned rtt_4;
  67. unsigned start, diff;
  68. opt_complementary = "=1"; /* exactly one non-option */
  69. opt = getopt32(argv, "cbp:P:t:T:", &opt_min_port, &opt_max_port, &opt_timeout, &opt_min_rtt);
  70. argv += optind;
  71. max_port = xatou_range(opt_max_port, 1, 65535);
  72. port = xatou_range(opt_min_port, 1, max_port);
  73. nports = max_port - port + 1;
  74. min_rtt = xatou_range(opt_min_rtt, 1, INT_MAX/1000 / 4) * 1000;
  75. timeout = xatou_range(opt_timeout, 1, INT_MAX/1000 / 4) * 1000;
  76. /* Initial rtt is BIG: */
  77. rtt_4 = timeout;
  78. DMSG("min_rtt %u timeout %u", min_rtt, timeout);
  79. lsap = xhost2sockaddr(*argv, port);
  80. printf("Scanning %s ports %u to %u\n Port\tProto\tState\tService\n",
  81. *argv, port, max_port);
  82. for (; port <= max_port; port++) {
  83. DMSG("rtt %u", rtt_4);
  84. /* The SOCK_STREAM socket type is implemented on the TCP/IP protocol. */
  85. set_nport(&lsap->u.sa, htons(port));
  86. s = xsocket(lsap->u.sa.sa_family, SOCK_STREAM, 0);
  87. /* We need unblocking socket so we don't need to wait for ETIMEOUT. */
  88. /* Nonblocking connect typically "fails" with errno == EINPROGRESS */
  89. ndelay_on(s);
  90. DMSG("connect to port %u", port);
  91. result_str = NULL;
  92. start = MONOTONIC_US();
  93. if (connect(s, &lsap->u.sa, lsap->len) == 0) {
  94. /* Unlikely, for me even localhost fails :) */
  95. DMSG("connect succeeded");
  96. goto open;
  97. }
  98. /* Check for untypical errors... */
  99. if (errno != EAGAIN && errno != EINPROGRESS
  100. && errno != ECONNREFUSED
  101. ) {
  102. bb_perror_nomsg_and_die();
  103. }
  104. diff = 0;
  105. while (1) {
  106. if (errno == ECONNREFUSED) {
  107. if (opt & 1) /* -c: show closed too */
  108. result_str = "closed";
  109. closed_ports++;
  110. break;
  111. }
  112. DERR("port %u errno %d @%u", port, errno, diff);
  113. if (diff > rtt_4) {
  114. if (opt & 2) /* -b: show blocked too */
  115. result_str = "blocked";
  116. break;
  117. }
  118. /* Can sleep (much) longer than specified delay.
  119. * We check rtt BEFORE we usleep, otherwise
  120. * on localhost we'll have no writes done (!)
  121. * before we exceed (rather small) rtt */
  122. usleep(rtt_4/8);
  123. open:
  124. diff = MONOTONIC_US() - start;
  125. DMSG("write to port %u @%u", port, diff - start);
  126. if (write(s, " ", 1) >= 0) { /* We were able to write to the socket */
  127. open_ports++;
  128. result_str = "open";
  129. break;
  130. }
  131. }
  132. DMSG("out of loop @%u", diff);
  133. if (result_str)
  134. printf("%5u" "\t" "tcp" "\t" "%s" "\t" "%s" "\n",
  135. port, result_str, port_name(port));
  136. /* Estimate new rtt - we don't want to wait entire timeout
  137. * for each port. *4 allows for rise in net delay.
  138. * We increase rtt quickly (rtt_4*4), decrease slowly
  139. * (diff is at least rtt_4/8, *4 == rtt_4/2)
  140. * because we don't want to accidentally miss ports. */
  141. rtt_4 = diff * 4;
  142. if (rtt_4 < min_rtt)
  143. rtt_4 = min_rtt;
  144. if (rtt_4 > timeout)
  145. rtt_4 = timeout;
  146. /* Clean up */
  147. close(s);
  148. }
  149. if (ENABLE_FEATURE_CLEAN_UP) free(lsap);
  150. printf("%u closed, %u open, %u timed out (or blocked) ports\n",
  151. closed_ports,
  152. open_ports,
  153. nports - (closed_ports + open_ports));
  154. return EXIT_SUCCESS;
  155. }