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