nc_bloaty.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  1. /* Based on netcat 1.10 RELEASE 960320 written by hobbit@avian.org.
  2. * Released into public domain by the author.
  3. *
  4. * Copyright (C) 2007 Denys Vlasenko.
  5. *
  6. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  7. */
  8. /* Author's comments from nc 1.10:
  9. * =====================
  10. * Netcat is entirely my own creation, although plenty of other code was used as
  11. * examples. It is freely given away to the Internet community in the hope that
  12. * it will be useful, with no restrictions except giving credit where it is due.
  13. * No GPLs, Berkeley copyrights or any of that nonsense. The author assumes NO
  14. * responsibility for how anyone uses it. If netcat makes you rich somehow and
  15. * you're feeling generous, mail me a check. If you are affiliated in any way
  16. * with Microsoft Network, get a life. Always ski in control. Comments,
  17. * questions, and patches to hobbit@avian.org.
  18. * ...
  19. * Netcat and the associated package is a product of Avian Research, and is freely
  20. * available in full source form with no restrictions save an obligation to give
  21. * credit where due.
  22. * ...
  23. * A damn useful little "backend" utility begun 950915 or thereabouts,
  24. * as *Hobbit*'s first real stab at some sockets programming. Something that
  25. * should have and indeed may have existed ten years ago, but never became a
  26. * standard Unix utility. IMHO, "nc" could take its place right next to cat,
  27. * cp, rm, mv, dd, ls, and all those other cryptic and Unix-like things.
  28. * =====================
  29. *
  30. * Much of author's comments are still retained in the code.
  31. *
  32. * Functionality removed (rationale):
  33. * - miltiple-port ranges, randomized port scanning (use nmap)
  34. * - telnet support (use telnet)
  35. * - source routing
  36. * - multiple DNS checks
  37. * Functionalty which is different from nc 1.10:
  38. * - Prog in '-e prog' can have prog's parameters and options.
  39. * Because of this -e option must be last.
  40. * - nc doesn't redirect stderr to the network socket for the -e prog.
  41. * - numeric addresses are printed in (), not [] (IPv6 looks better),
  42. * port numbers are inside (): (1.2.3.4:5678)
  43. * - network read errors are reported on verbose levels > 1
  44. * (nc 1.10 treats them as EOF)
  45. * - TCP connects from wrong ip/ports (if peer ip:port is specified
  46. * on the command line, but accept() says that it came from different addr)
  47. * are closed, but nc doesn't exit - continues to listen/accept.
  48. */
  49. /* done in nc.c: #include "libbb.h" */
  50. enum {
  51. SLEAZE_PORT = 31337, /* for UDP-scan RTT trick, change if ya want */
  52. BIGSIZ = 8192, /* big buffers */
  53. netfd = 3,
  54. ofd = 4,
  55. };
  56. struct globals {
  57. /* global cmd flags: */
  58. unsigned o_verbose;
  59. unsigned o_wait;
  60. #if ENABLE_NC_EXTRA
  61. unsigned o_interval;
  62. #endif
  63. /*int netfd;*/
  64. /*int ofd;*/ /* hexdump output fd */
  65. #if ENABLE_LFS
  66. #define SENT_N_RECV_M "sent %llu, rcvd %llu\n"
  67. unsigned long long wrote_out; /* total stdout bytes */
  68. unsigned long long wrote_net; /* total net bytes */
  69. #else
  70. #define SENT_N_RECV_M "sent %u, rcvd %u\n"
  71. unsigned wrote_out; /* total stdout bytes */
  72. unsigned wrote_net; /* total net bytes */
  73. #endif
  74. /* ouraddr is never NULL and goes through three states as we progress:
  75. 1 - local address before bind (IP/port possibly zero)
  76. 2 - local address after bind (port is nonzero)
  77. 3 - local address after connect??/recv/accept (IP and port are nonzero) */
  78. struct len_and_sockaddr *ouraddr;
  79. /* themaddr is NULL if no peer hostname[:port] specified on command line */
  80. struct len_and_sockaddr *themaddr;
  81. /* remend is set after connect/recv/accept to the actual ip:port of peer */
  82. struct len_and_sockaddr remend;
  83. jmp_buf jbuf; /* timer crud */
  84. /* will malloc up the following globals: */
  85. fd_set ding1; /* for select loop */
  86. fd_set ding2;
  87. char bigbuf_in[BIGSIZ]; /* data buffers */
  88. char bigbuf_net[BIGSIZ];
  89. };
  90. #define G (*ptr_to_globals)
  91. #define wrote_out (G.wrote_out )
  92. #define wrote_net (G.wrote_net )
  93. #define ouraddr (G.ouraddr )
  94. #define themaddr (G.themaddr )
  95. #define remend (G.remend )
  96. #define jbuf (G.jbuf )
  97. #define ding1 (G.ding1 )
  98. #define ding2 (G.ding2 )
  99. #define bigbuf_in (G.bigbuf_in )
  100. #define bigbuf_net (G.bigbuf_net)
  101. #define o_verbose (G.o_verbose )
  102. #define o_wait (G.o_wait )
  103. #if ENABLE_NC_EXTRA
  104. #define o_interval (G.o_interval)
  105. #else
  106. #define o_interval 0
  107. #endif
  108. #define INIT_G() do { \
  109. SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
  110. } while (0)
  111. /* Must match getopt32 call! */
  112. enum {
  113. OPT_h = (1 << 0),
  114. OPT_n = (1 << 1),
  115. OPT_p = (1 << 2),
  116. OPT_s = (1 << 3),
  117. OPT_u = (1 << 4),
  118. OPT_v = (1 << 5),
  119. OPT_w = (1 << 6),
  120. OPT_l = (1 << 7) * ENABLE_NC_SERVER,
  121. OPT_i = (1 << (7+ENABLE_NC_SERVER)) * ENABLE_NC_EXTRA,
  122. OPT_o = (1 << (8+ENABLE_NC_SERVER)) * ENABLE_NC_EXTRA,
  123. OPT_z = (1 << (9+ENABLE_NC_SERVER)) * ENABLE_NC_EXTRA,
  124. };
  125. #define o_nflag (option_mask32 & OPT_n)
  126. #define o_udpmode (option_mask32 & OPT_u)
  127. #if ENABLE_NC_SERVER
  128. #define o_listen (option_mask32 & OPT_l)
  129. #else
  130. #define o_listen 0
  131. #endif
  132. #if ENABLE_NC_EXTRA
  133. #define o_ofile (option_mask32 & OPT_o)
  134. #define o_zero (option_mask32 & OPT_z)
  135. #else
  136. #define o_ofile 0
  137. #define o_zero 0
  138. #endif
  139. /* Debug: squirt whatever message and sleep a bit so we can see it go by. */
  140. /* Beware: writes to stdOUT... */
  141. #if 0
  142. #define Debug(...) do { printf(__VA_ARGS__); printf("\n"); fflush(stdout); sleep(1); } while (0)
  143. #else
  144. #define Debug(...) do { } while (0)
  145. #endif
  146. #define holler_error(...) do { if (o_verbose) bb_error_msg(__VA_ARGS__); } while (0)
  147. #define holler_perror(...) do { if (o_verbose) bb_perror_msg(__VA_ARGS__); } while (0)
  148. /* catch: no-brainer interrupt handler */
  149. static void catch(int sig)
  150. {
  151. if (o_verbose > 1) /* normally we don't care */
  152. fprintf(stderr, SENT_N_RECV_M, wrote_net, wrote_out);
  153. fprintf(stderr, "punt!\n");
  154. kill_myself_with_sig(sig);
  155. }
  156. /* unarm */
  157. static void unarm(void)
  158. {
  159. signal(SIGALRM, SIG_IGN);
  160. alarm(0);
  161. }
  162. /* timeout and other signal handling cruft */
  163. static void tmtravel(int sig ATTRIBUTE_UNUSED)
  164. {
  165. unarm();
  166. longjmp(jbuf, 1);
  167. }
  168. /* arm: set the timer. */
  169. static void arm(unsigned secs)
  170. {
  171. signal(SIGALRM, tmtravel);
  172. alarm(secs);
  173. }
  174. /* findline:
  175. find the next newline in a buffer; return inclusive size of that "line",
  176. or the entire buffer size, so the caller knows how much to then write().
  177. Not distinguishing \n vs \r\n for the nonce; it just works as is... */
  178. static unsigned findline(char *buf, unsigned siz)
  179. {
  180. char * p;
  181. int x;
  182. if (!buf) /* various sanity checks... */
  183. return 0;
  184. if (siz > BIGSIZ)
  185. return 0;
  186. x = siz;
  187. for (p = buf; x > 0; x--) {
  188. if (*p == '\n') {
  189. x = (int) (p - buf);
  190. x++; /* 'sokay if it points just past the end! */
  191. Debug("findline returning %d", x);
  192. return x;
  193. }
  194. p++;
  195. } /* for */
  196. Debug("findline returning whole thing: %d", siz);
  197. return siz;
  198. } /* findline */
  199. /* doexec:
  200. fiddle all the file descriptors around, and hand off to another prog. Sort
  201. of like a one-off "poor man's inetd". This is the only section of code
  202. that would be security-critical, which is why it's ifdefed out by default.
  203. Use at your own hairy risk; if you leave shells lying around behind open
  204. listening ports you deserve to lose!! */
  205. static int doexec(char **proggie) ATTRIBUTE_NORETURN;
  206. static int doexec(char **proggie)
  207. {
  208. xmove_fd(netfd, 0);
  209. dup2(0, 1);
  210. /* dup2(0, 2); - do we *really* want this? NO!
  211. * exec'ed prog can do it yourself, if needed */
  212. execvp(proggie[0], proggie);
  213. bb_perror_msg_and_die("exec");
  214. }
  215. /* connect_w_timeout:
  216. return an fd for one of
  217. an open outbound TCP connection, a UDP stub-socket thingie, or
  218. an unconnected TCP or UDP socket to listen on.
  219. Examines various global o_blah flags to figure out what to do.
  220. lad can be NULL, then socket is not bound to any local ip[:port] */
  221. static int connect_w_timeout(int fd)
  222. {
  223. int rr;
  224. /* wrap connect inside a timer, and hit it */
  225. arm(o_wait);
  226. if (setjmp(jbuf) == 0) {
  227. rr = connect(fd, &themaddr->u.sa, themaddr->len);
  228. unarm();
  229. } else { /* setjmp: connect failed... */
  230. rr = -1;
  231. errno = ETIMEDOUT; /* fake it */
  232. }
  233. return rr;
  234. }
  235. /* dolisten:
  236. listens for
  237. incoming and returns an open connection *from* someplace. If we were
  238. given host/port args, any connections from elsewhere are rejected. This
  239. in conjunction with local-address binding should limit things nicely... */
  240. static void dolisten(void)
  241. {
  242. int rr;
  243. if (!o_udpmode)
  244. xlisten(netfd, 1); /* TCP: gotta listen() before we can get */
  245. /* Various things that follow temporarily trash bigbuf_net, which might contain
  246. a copy of any recvfrom()ed packet, but we'll read() another copy later. */
  247. /* I can't believe I have to do all this to get my own goddamn bound address
  248. and port number. It should just get filled in during bind() or something.
  249. All this is only useful if we didn't say -p for listening, since if we
  250. said -p we *know* what port we're listening on. At any rate we won't bother
  251. with it all unless we wanted to see it, although listening quietly on a
  252. random unknown port is probably not very useful without "netstat". */
  253. if (o_verbose) {
  254. char *addr;
  255. rr = getsockname(netfd, &ouraddr->u.sa, &ouraddr->len);
  256. if (rr < 0)
  257. bb_perror_msg_and_die("getsockname after bind");
  258. addr = xmalloc_sockaddr2dotted(&ouraddr->u.sa);
  259. fprintf(stderr, "listening on %s ...\n", addr);
  260. free(addr);
  261. }
  262. if (o_udpmode) {
  263. /* UDP is a speeeeecial case -- we have to do I/O *and* get the calling
  264. party's particulars all at once, listen() and accept() don't apply.
  265. At least in the BSD universe, however, recvfrom/PEEK is enough to tell
  266. us something came in, and we can set things up so straight read/write
  267. actually does work after all. Yow. YMMV on strange platforms! */
  268. /* I'm not completely clear on how this works -- BSD seems to make UDP
  269. just magically work in a connect()ed context, but we'll undoubtedly run
  270. into systems this deal doesn't work on. For now, we apparently have to
  271. issue a connect() on our just-tickled socket so we can write() back.
  272. Again, why the fuck doesn't it just get filled in and taken care of?!
  273. This hack is anything but optimal. Basically, if you want your listener
  274. to also be able to send data back, you need this connect() line, which
  275. also has the side effect that now anything from a different source or even a
  276. different port on the other end won't show up and will cause ICMP errors.
  277. I guess that's what they meant by "connect".
  278. Let's try to remember what the "U" is *really* for, eh? */
  279. /* If peer address is specified, connect to it */
  280. remend.len = LSA_SIZEOF_SA;
  281. if (themaddr) {
  282. remend = *themaddr;
  283. xconnect(netfd, &themaddr->u.sa, themaddr->len);
  284. }
  285. /* peek first packet and remember peer addr */
  286. arm(o_wait); /* might as well timeout this, too */
  287. if (setjmp(jbuf) == 0) { /* do timeout for initial connect */
  288. /* (*ouraddr) is prefilled with "default" address */
  289. /* and here we block... */
  290. rr = recv_from_to(netfd, NULL, 0, MSG_PEEK, /*was bigbuf_net, BIGSIZ*/
  291. &remend.u.sa, &ouraddr->u.sa, ouraddr->len);
  292. if (rr < 0)
  293. bb_perror_msg_and_die("recvfrom");
  294. unarm();
  295. } else
  296. bb_error_msg_and_die("timeout");
  297. /* Now we learned *to which IP* peer has connected, and we want to anchor
  298. our socket on it, so that our outbound packets will have correct local IP.
  299. Unfortunately, bind() on already bound socket will fail now (EINVAL):
  300. xbind(netfd, &ouraddr->u.sa, ouraddr->len);
  301. Need to read the packet, save data, close this socket and
  302. create new one, and bind() it. TODO */
  303. if (!themaddr)
  304. xconnect(netfd, &remend.u.sa, ouraddr->len);
  305. } else {
  306. /* TCP */
  307. arm(o_wait); /* wrap this in a timer, too; 0 = forever */
  308. if (setjmp(jbuf) == 0) {
  309. again:
  310. remend.len = LSA_SIZEOF_SA;
  311. rr = accept(netfd, &remend.u.sa, &remend.len);
  312. if (rr < 0)
  313. bb_perror_msg_and_die("accept");
  314. if (themaddr && memcmp(&remend.u.sa, &themaddr->u.sa, remend.len) != 0) {
  315. /* nc 1.10 bails out instead, and its error message
  316. * is not suppressed by o_verbose */
  317. if (o_verbose) {
  318. char *remaddr = xmalloc_sockaddr2dotted(&remend.u.sa);
  319. bb_error_msg("connect from wrong ip/port %s ignored", remaddr);
  320. free(remaddr);
  321. }
  322. close(rr);
  323. goto again;
  324. }
  325. unarm();
  326. } else
  327. bb_error_msg_and_die("timeout");
  328. xmove_fd(rr, netfd); /* dump the old socket, here's our new one */
  329. /* find out what address the connection was *to* on our end, in case we're
  330. doing a listen-on-any on a multihomed machine. This allows one to
  331. offer different services via different alias addresses, such as the
  332. "virtual web site" hack. */
  333. rr = getsockname(netfd, &ouraddr->u.sa, &ouraddr->len);
  334. if (rr < 0)
  335. bb_perror_msg_and_die("getsockname after accept");
  336. }
  337. if (o_verbose) {
  338. char *lcladdr, *remaddr, *remhostname;
  339. #if ENABLE_NC_EXTRA && defined(IP_OPTIONS)
  340. /* If we can, look for any IP options. Useful for testing the receiving end of
  341. such things, and is a good exercise in dealing with it. We do this before
  342. the connect message, to ensure that the connect msg is uniformly the LAST
  343. thing to emerge after all the intervening crud. Doesn't work for UDP on
  344. any machines I've tested, but feel free to surprise me. */
  345. char optbuf[40];
  346. int x = sizeof(optbuf);
  347. rr = getsockopt(netfd, IPPROTO_IP, IP_OPTIONS, optbuf, &x);
  348. if (rr < 0)
  349. bb_perror_msg("getsockopt failed");
  350. else if (x) { /* we've got options, lessee em... */
  351. bin2hex(bigbuf_net, optbuf, x);
  352. bigbuf_net[2*x] = '\0';
  353. fprintf(stderr, "IP options: %s\n", bigbuf_net);
  354. }
  355. #endif
  356. /* now check out who it is. We don't care about mismatched DNS names here,
  357. but any ADDR and PORT we specified had better fucking well match the caller.
  358. Converting from addr to inet_ntoa and back again is a bit of a kludge, but
  359. gethostpoop wants a string and there's much gnarlier code out there already,
  360. so I don't feel bad.
  361. The *real* question is why BFD sockets wasn't designed to allow listens for
  362. connections *from* specific hosts/ports, instead of requiring the caller to
  363. accept the connection and then reject undesireable ones by closing.
  364. In other words, we need a TCP MSG_PEEK. */
  365. /* bbox: removed most of it */
  366. lcladdr = xmalloc_sockaddr2dotted(&ouraddr->u.sa);
  367. remaddr = xmalloc_sockaddr2dotted(&remend.u.sa);
  368. remhostname = o_nflag ? remaddr : xmalloc_sockaddr2host(&remend.u.sa);
  369. fprintf(stderr, "connect to %s from %s (%s)\n",
  370. lcladdr, remhostname, remaddr);
  371. free(lcladdr);
  372. free(remaddr);
  373. if (!o_nflag)
  374. free(remhostname);
  375. }
  376. }
  377. /* udptest:
  378. fire a couple of packets at a UDP target port, just to see if it's really
  379. there. On BSD kernels, ICMP host/port-unreachable errors get delivered to
  380. our socket as ECONNREFUSED write errors. On SV kernels, we lose; we'll have
  381. to collect and analyze raw ICMP ourselves a la satan's probe_udp_ports
  382. backend. Guess where one could swipe the appropriate code from...
  383. Use the time delay between writes if given, otherwise use the "tcp ping"
  384. trick for getting the RTT. [I got that idea from pluvius, and warped it.]
  385. Return either the original fd, or clean up and return -1. */
  386. #if ENABLE_NC_EXTRA
  387. static int udptest(void)
  388. {
  389. int rr;
  390. rr = write(netfd, bigbuf_in, 1);
  391. if (rr != 1)
  392. bb_perror_msg("udptest first write");
  393. if (o_wait)
  394. sleep(o_wait); // can be interrupted! while (t) nanosleep(&t)?
  395. else {
  396. /* use the tcp-ping trick: try connecting to a normally refused port, which
  397. causes us to block for the time that SYN gets there and RST gets back.
  398. Not completely reliable, but it *does* mostly work. */
  399. /* Set a temporary connect timeout, so packet filtration doesnt cause
  400. us to hang forever, and hit it */
  401. o_wait = 5; /* enough that we'll notice?? */
  402. rr = xsocket(ouraddr->u.sa.sa_family, SOCK_STREAM, 0);
  403. set_nport(themaddr, htons(SLEAZE_PORT));
  404. connect_w_timeout(rr);
  405. /* don't need to restore themaddr's port, it's not used anymore */
  406. close(rr);
  407. o_wait = 0; /* restore */
  408. }
  409. rr = write(netfd, bigbuf_in, 1);
  410. return (rr != 1); /* if rr == 1, return 0 (success) */
  411. }
  412. #else
  413. int udptest(void);
  414. #endif
  415. /* oprint:
  416. Hexdump bytes shoveled either way to a running logfile, in the format:
  417. D offset - - - - --- 16 bytes --- - - - - # .... ascii .....
  418. where "which" sets the direction indicator, D:
  419. 0 -- sent to network, or ">"
  420. 1 -- rcvd and printed to stdout, or "<"
  421. and "buf" and "n" are data-block and length. If the current block generates
  422. a partial line, so be it; we *want* that lockstep indication of who sent
  423. what when. Adapted from dgaudet's original example -- but must be ripping
  424. *fast*, since we don't want to be too disk-bound... */
  425. #if ENABLE_NC_EXTRA
  426. static void oprint(int direction, unsigned char *p, unsigned bc)
  427. {
  428. unsigned obc; /* current "global" offset */
  429. unsigned x;
  430. unsigned char *op; /* out hexdump ptr */
  431. unsigned char *ap; /* out asc-dump ptr */
  432. unsigned char stage[100];
  433. if (bc == 0)
  434. return;
  435. obc = wrote_net; /* use the globals! */
  436. if (direction == '<')
  437. obc = wrote_out;
  438. stage[0] = direction;
  439. stage[59] = '#'; /* preload separator */
  440. stage[60] = ' ';
  441. do { /* for chunk-o-data ... */
  442. x = 16;
  443. if (bc < 16) {
  444. /* memset(&stage[bc*3 + 11], ' ', 16*3 - bc*3); */
  445. memset(&stage[11], ' ', 16*3);
  446. x = bc;
  447. }
  448. sprintf(&stage[1], " %8.8x ", obc); /* xxx: still slow? */
  449. bc -= x; /* fix current count */
  450. obc += x; /* fix current offset */
  451. op = &stage[11]; /* where hex starts */
  452. ap = &stage[61]; /* where ascii starts */
  453. do { /* for line of dump, however long ... */
  454. *op++ = 0x20 | bb_hexdigits_upcase[*p >> 4];
  455. *op++ = 0x20 | bb_hexdigits_upcase[*p & 0x0f];
  456. *op++ = ' ';
  457. if ((*p > 31) && (*p < 127))
  458. *ap = *p; /* printing */
  459. else
  460. *ap = '.'; /* nonprinting, loose def */
  461. ap++;
  462. p++;
  463. } while (--x);
  464. *ap++ = '\n'; /* finish the line */
  465. xwrite(ofd, stage, ap - stage);
  466. } while (bc);
  467. }
  468. #else
  469. void oprint(int direction, unsigned char *p, unsigned bc);
  470. #endif
  471. /* readwrite:
  472. handle stdin/stdout/network I/O. Bwahaha!! -- the select loop from hell.
  473. In this instance, return what might become our exit status. */
  474. static int readwrite(void)
  475. {
  476. int rr;
  477. char *zp = zp; /* gcc */ /* stdin buf ptr */
  478. char *np = np; /* net-in buf ptr */
  479. unsigned rzleft;
  480. unsigned rnleft;
  481. unsigned netretry; /* net-read retry counter */
  482. unsigned wretry; /* net-write sanity counter */
  483. unsigned wfirst; /* one-shot flag to skip first net read */
  484. /* if you don't have all this FD_* macro hair in sys/types.h, you'll have to
  485. either find it or do your own bit-bashing: *ding1 |= (1 << fd), etc... */
  486. FD_SET(netfd, &ding1); /* global: the net is open */
  487. netretry = 2;
  488. wfirst = 0;
  489. rzleft = rnleft = 0;
  490. if (o_interval)
  491. sleep(o_interval); /* pause *before* sending stuff, too */
  492. errno = 0; /* clear from sleep, close, whatever */
  493. /* and now the big ol' select shoveling loop ... */
  494. while (FD_ISSET(netfd, &ding1)) { /* i.e. till the *net* closes! */
  495. wretry = 8200; /* more than we'll ever hafta write */
  496. if (wfirst) { /* any saved stdin buffer? */
  497. wfirst = 0; /* clear flag for the duration */
  498. goto shovel; /* and go handle it first */
  499. }
  500. ding2 = ding1; /* FD_COPY ain't portable... */
  501. /* some systems, notably linux, crap into their select timers on return, so
  502. we create a expendable copy and give *that* to select. */
  503. if (o_wait) {
  504. struct timeval tmp_timer;
  505. tmp_timer.tv_sec = o_wait;
  506. tmp_timer.tv_usec = 0;
  507. /* highest possible fd is netfd (3) */
  508. rr = select(netfd+1, &ding2, NULL, NULL, &tmp_timer);
  509. } else
  510. rr = select(netfd+1, &ding2, NULL, NULL, NULL);
  511. if (rr < 0 && errno != EINTR) { /* might have gotten ^Zed, etc */
  512. holler_perror("select");
  513. close(netfd);
  514. return 1;
  515. }
  516. /* if we have a timeout AND stdin is closed AND we haven't heard anything
  517. from the net during that time, assume it's dead and close it too. */
  518. if (rr == 0) {
  519. if (!FD_ISSET(0, &ding1))
  520. netretry--; /* we actually try a coupla times. */
  521. if (!netretry) {
  522. if (o_verbose > 1) /* normally we don't care */
  523. fprintf(stderr, "net timeout\n");
  524. close(netfd);
  525. return 0; /* not an error! */
  526. }
  527. } /* select timeout */
  528. /* xxx: should we check the exception fds too? The read fds seem to give
  529. us the right info, and none of the examples I found bothered. */
  530. /* Ding!! Something arrived, go check all the incoming hoppers, net first */
  531. if (FD_ISSET(netfd, &ding2)) { /* net: ding! */
  532. rr = read(netfd, bigbuf_net, BIGSIZ);
  533. if (rr <= 0) {
  534. if (rr < 0 && o_verbose > 1) {
  535. /* nc 1.10 doesn't do this */
  536. bb_perror_msg("net read");
  537. }
  538. FD_CLR(netfd, &ding1); /* net closed, we'll finish up... */
  539. rzleft = 0; /* can't write anymore: broken pipe */
  540. } else {
  541. rnleft = rr;
  542. np = bigbuf_net;
  543. }
  544. Debug("got %d from the net, errno %d", rr, errno);
  545. } /* net:ding */
  546. /* if we're in "slowly" mode there's probably still stuff in the stdin
  547. buffer, so don't read unless we really need MORE INPUT! MORE INPUT! */
  548. if (rzleft)
  549. goto shovel;
  550. /* okay, suck more stdin */
  551. if (FD_ISSET(0, &ding2)) { /* stdin: ding! */
  552. rr = read(0, bigbuf_in, BIGSIZ);
  553. /* Considered making reads here smaller for UDP mode, but 8192-byte
  554. mobygrams are kinda fun and exercise the reassembler. */
  555. if (rr <= 0) { /* at end, or fukt, or ... */
  556. FD_CLR(0, &ding1); /* disable and close stdin */
  557. close(0);
  558. } else {
  559. rzleft = rr;
  560. zp = bigbuf_in;
  561. }
  562. } /* stdin:ding */
  563. shovel:
  564. /* now that we've dingdonged all our thingdings, send off the results.
  565. Geez, why does this look an awful lot like the big loop in "rsh"? ...
  566. not sure if the order of this matters, but write net -> stdout first. */
  567. /* sanity check. Works because they're both unsigned... */
  568. if ((rzleft > 8200) || (rnleft > 8200)) {
  569. holler_error("bogus buffers: %u, %u", rzleft, rnleft);
  570. rzleft = rnleft = 0;
  571. }
  572. /* net write retries sometimes happen on UDP connections */
  573. if (!wretry) { /* is something hung? */
  574. holler_error("too many output retries");
  575. return 1;
  576. }
  577. if (rnleft) {
  578. rr = write(1, np, rnleft);
  579. if (rr > 0) {
  580. if (o_ofile)
  581. oprint('<', np, rr); /* log the stdout */
  582. np += rr; /* fix up ptrs and whatnot */
  583. rnleft -= rr; /* will get sanity-checked above */
  584. wrote_out += rr; /* global count */
  585. }
  586. Debug("wrote %d to stdout, errno %d", rr, errno);
  587. } /* rnleft */
  588. if (rzleft) {
  589. if (o_interval) /* in "slowly" mode ?? */
  590. rr = findline(zp, rzleft);
  591. else
  592. rr = rzleft;
  593. rr = write(netfd, zp, rr); /* one line, or the whole buffer */
  594. if (rr > 0) {
  595. if (o_ofile)
  596. oprint('>', zp, rr); /* log what got sent */
  597. zp += rr;
  598. rzleft -= rr;
  599. wrote_net += rr; /* global count */
  600. }
  601. Debug("wrote %d to net, errno %d", rr, errno);
  602. } /* rzleft */
  603. if (o_interval) { /* cycle between slow lines, or ... */
  604. sleep(o_interval);
  605. errno = 0; /* clear from sleep */
  606. continue; /* ...with hairy select loop... */
  607. }
  608. if ((rzleft) || (rnleft)) { /* shovel that shit till they ain't */
  609. wretry--; /* none left, and get another load */
  610. goto shovel;
  611. }
  612. } /* while ding1:netfd is open */
  613. /* XXX: maybe want a more graceful shutdown() here, or screw around with
  614. linger times?? I suspect that I don't need to since I'm always doing
  615. blocking reads and writes and my own manual "last ditch" efforts to read
  616. the net again after a timeout. I haven't seen any screwups yet, but it's
  617. not like my test network is particularly busy... */
  618. close(netfd);
  619. return 0;
  620. } /* readwrite */
  621. /* main: now we pull it all together... */
  622. int nc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  623. int nc_main(int argc, char **argv)
  624. {
  625. char *str_p, *str_s;
  626. USE_NC_EXTRA(char *str_i, *str_o;)
  627. char *themdotted = themdotted; /* gcc */
  628. char **proggie;
  629. int x;
  630. unsigned o_lport = 0;
  631. INIT_G();
  632. /* catch a signal or two for cleanup */
  633. bb_signals(0
  634. + (1 << SIGINT)
  635. + (1 << SIGQUIT)
  636. + (1 << SIGTERM)
  637. , catch);
  638. /* and suppress others... */
  639. bb_signals(0
  640. #ifdef SIGURG
  641. + (1 << SIGURG)
  642. #endif
  643. + (1 << SIGPIPE) /* important! */
  644. , SIG_IGN);
  645. proggie = argv;
  646. while (*++proggie) {
  647. if (strcmp(*proggie, "-e") == 0) {
  648. *proggie = NULL;
  649. argc = proggie - argv;
  650. proggie++;
  651. goto e_found;
  652. }
  653. }
  654. proggie = NULL;
  655. e_found:
  656. // -g -G -t -r deleted, unimplemented -a deleted too
  657. opt_complementary = "?2:vv:w+"; /* max 2 params; -v is a counter; -w N */
  658. getopt32(argv, "hnp:s:uvw:" USE_NC_SERVER("l")
  659. USE_NC_EXTRA("i:o:z"),
  660. &str_p, &str_s, &o_wait
  661. USE_NC_EXTRA(, &str_i, &str_o, &o_verbose));
  662. argv += optind;
  663. #if ENABLE_NC_EXTRA
  664. if (option_mask32 & OPT_i) /* line-interval time */
  665. o_interval = xatou_range(str_i, 1, 0xffff);
  666. #endif
  667. //if (option_mask32 & OPT_l) /* listen mode */
  668. //if (option_mask32 & OPT_n) /* numeric-only, no DNS lookups */
  669. //if (option_mask32 & OPT_o) /* hexdump log */
  670. if (option_mask32 & OPT_p) { /* local source port */
  671. o_lport = bb_lookup_port(str_p, o_udpmode ? "udp" : "tcp", 0);
  672. if (!o_lport)
  673. bb_error_msg_and_die("bad local port '%s'", str_p);
  674. }
  675. //if (option_mask32 & OPT_r) /* randomize various things */
  676. //if (option_mask32 & OPT_u) /* use UDP */
  677. //if (option_mask32 & OPT_v) /* verbose */
  678. //if (option_mask32 & OPT_w) /* wait time */
  679. //if (option_mask32 & OPT_z) /* little or no data xfer */
  680. /* We manage our fd's so that they are never 0,1,2 */
  681. /*bb_sanitize_stdio(); - not needed */
  682. if (argv[0]) {
  683. themaddr = xhost2sockaddr(argv[0],
  684. argv[1]
  685. ? bb_lookup_port(argv[1], o_udpmode ? "udp" : "tcp", 0)
  686. : 0);
  687. }
  688. /* create & bind network socket */
  689. x = (o_udpmode ? SOCK_DGRAM : SOCK_STREAM);
  690. if (option_mask32 & OPT_s) { /* local address */
  691. /* if o_lport is still 0, then we will use random port */
  692. ouraddr = xhost2sockaddr(str_s, o_lport);
  693. #ifdef BLOAT
  694. /* prevent spurious "UDP listen needs !0 port" */
  695. o_lport = get_nport(ouraddr);
  696. o_lport = ntohs(o_lport);
  697. #endif
  698. x = xsocket(ouraddr->u.sa.sa_family, x, 0);
  699. } else {
  700. /* We try IPv6, then IPv4, unless addr family is
  701. * implicitly set by way of remote addr/port spec */
  702. x = xsocket_type(&ouraddr,
  703. (themaddr ? themaddr->u.sa.sa_family : AF_UNSPEC),
  704. x);
  705. if (o_lport)
  706. set_nport(ouraddr, htons(o_lport));
  707. }
  708. xmove_fd(x, netfd);
  709. setsockopt_reuseaddr(netfd);
  710. if (o_udpmode)
  711. socket_want_pktinfo(netfd);
  712. xbind(netfd, &ouraddr->u.sa, ouraddr->len);
  713. #if 0
  714. setsockopt(netfd, SOL_SOCKET, SO_RCVBUF, &o_rcvbuf, sizeof o_rcvbuf);
  715. setsockopt(netfd, SOL_SOCKET, SO_SNDBUF, &o_sndbuf, sizeof o_sndbuf);
  716. #endif
  717. #ifdef BLOAT
  718. if (OPT_l && (option_mask32 & (OPT_u|OPT_l)) == (OPT_u|OPT_l)) {
  719. /* apparently UDP can listen ON "port 0",
  720. but that's not useful */
  721. if (!o_lport)
  722. bb_error_msg_and_die("UDP listen needs nonzero -p port");
  723. }
  724. #endif
  725. FD_SET(0, &ding1); /* stdin *is* initially open */
  726. if (proggie) {
  727. close(0); /* won't need stdin */
  728. option_mask32 &= ~OPT_o; /* -o with -e is meaningless! */
  729. }
  730. #if ENABLE_NC_EXTRA
  731. if (o_ofile)
  732. xmove_fd(xopen(str_o, O_WRONLY|O_CREAT|O_TRUNC), ofd);
  733. #endif
  734. if (o_listen) {
  735. dolisten();
  736. /* dolisten does its own connect reporting */
  737. if (proggie) /* -e given? */
  738. doexec(proggie);
  739. x = readwrite(); /* it even works with UDP! */
  740. } else {
  741. /* Outbound connects. Now we're more picky about args... */
  742. if (!themaddr)
  743. bb_error_msg_and_die("no destination");
  744. remend = *themaddr;
  745. if (o_verbose)
  746. themdotted = xmalloc_sockaddr2dotted(&themaddr->u.sa);
  747. x = connect_w_timeout(netfd);
  748. if (o_zero && x == 0 && o_udpmode) /* if UDP scanning... */
  749. x = udptest();
  750. if (x == 0) { /* Yow, are we OPEN YET?! */
  751. if (o_verbose)
  752. fprintf(stderr, "%s (%s) open\n", argv[0], themdotted);
  753. if (proggie) /* exec is valid for outbound, too */
  754. doexec(proggie);
  755. if (!o_zero)
  756. x = readwrite();
  757. } else { /* connect or udptest wasn't successful */
  758. x = 1; /* exit status */
  759. /* if we're scanning at a "one -v" verbosity level, don't print refusals.
  760. Give it another -v if you want to see everything. */
  761. if (o_verbose > 1 || (o_verbose && errno != ECONNREFUSED))
  762. bb_perror_msg("%s (%s)", argv[0], themdotted);
  763. }
  764. }
  765. if (o_verbose > 1) /* normally we don't care */
  766. fprintf(stderr, SENT_N_RECV_M, wrote_net, wrote_out);
  767. return x;
  768. }