netcat.c
上传用户:shhspump
上传日期:2007-01-07
资源大小:85k
文件大小:57k
源码类别:

远程控制编程

开发平台:

Visual C++

  1. /* Netcat 1.00 951010
  2.    A damn useful little "backend" utility begun 950915 or thereabouts,
  3.    as *Hobbit*'s first real stab at some sockets programming.  Something that
  4.    should have and indeed may have existed ten years ago, but never became a
  5.    standard Unix utility.  IMHO, "nc" could take its place right next to cat,
  6.    cp, rm, mv, dd, ls, and all those other cryptic and Unix-like things.
  7.    Read the README for the whole story, doc, applications, etc.
  8.    Layout:
  9. conditional includes:
  10. includes:
  11. handy defines:
  12. globals:
  13. malloced globals:
  14. cmd-flag globals:
  15. support routines:
  16. main:
  17.   todo:
  18. more of the portability swamp, and an updated generic.h
  19. frontend progs to generate various packets, raw or otherwise...
  20. char-mode [cbreak, fcntl-unbuffered, etc...]
  21. connect-to-all-A-records hack
  22.   bluesky:
  23. RAW mode!
  24. backend progs to grab a pty and look like a real telnetd?!
  25. */
  26. #include "generic.h" /* same as with L5, skey, etc */
  27. /* conditional includes -- a very messy section: */
  28. /* #undef _POSIX_SOURCE /* might need this for something? */
  29. #define HAVE_BIND /* XXX -- for now, see below... */
  30. #define HAVE_HELP /* undefine if you dont want the help text */
  31. /* #define ANAL /* if you want case-sensitive DNS matching */
  32. #ifdef HAVE_STDLIB_H
  33. #include <stdlib.h>
  34. #else
  35. #include <malloc.h> /* xxx: or does it live in sys/ ?? */
  36. #endif
  37. /* have to do this *before* including types.h. xxx: Linux still has it wrong */
  38. #ifdef FD_SETSIZE /* should be in types.h, butcha never know. */
  39. #undef FD_SETSIZE /* if we ever need more than 16 active */
  40. #endif /* fd's, something is horribly wrong! */
  41. #ifdef WIN32
  42. #define FD_SETSIZE 64 /* WIN32 does this as an array not a bitfield and it likes 64 */
  43. #else
  44. #define FD_SETSIZE 16 /* <-- this'll give us a long anyways, wtf */
  45. #endif
  46. #include <sys/types.h> /* *now* do it.  Sigh, this is broken */
  47. #ifdef WIN32
  48. #undef HAVE_RANDOM
  49. #undef IP_OPTIONS
  50. #undef SO_REUSEPORT
  51. #endif
  52. #ifdef HAVE_RANDOM
  53. #define SRAND srandom
  54. #define RAND random
  55. #else
  56. #define SRAND srand
  57. #define RAND rand
  58. #endif /* HAVE_RANDOM */
  59. /* xxx: these are rsh leftovers, move to new generic.h */
  60. /* will we even need any nonblocking shit?  Doubt it. */
  61. /* get FIONBIO from sys/filio.h, so what if it is a compatibility feature */
  62. /* #include <sys/filio.h> */
  63. /*
  64. #include <sys/ioctl.h>
  65. #include <sys/file.h>
  66. */
  67. /* includes: */
  68. #ifdef WIN32
  69. #include "getopt.h"
  70. #define sleep _sleep
  71. #define strcasecmp strcmpi
  72. #define EADDRINUSE WSAEADDRINUSE
  73. #define ETIMEDOUT WSAETIMEDOUT
  74. #define ECONNREFUSED WSAECONNREFUSED
  75. #endif
  76. #ifndef WIN32
  77. #include <sys/time.h> /* timeval, time_t */
  78. #else
  79. #include <time.h>
  80. #endif
  81. #include <setjmp.h> /* jmp_buf et al */
  82. #ifndef WIN32
  83. #include <sys/socket.h> /* basics, SO_ and AF_ defs, sockaddr, ... */
  84. #include <netinet/in.h> /* sockaddr_in, htons, in_addr */
  85. #include <netinet/in_systm.h> /* misc crud that netinet/ip.h references */
  86. #include <netinet/ip.h> /* IPOPT_LSRR, header stuff */
  87. #include <netdb.h> /* hostent, gethostby*, getservby* */
  88. #include <arpa/inet.h> /* inet_ntoa */
  89. #else
  90. #include <fcntl.h>
  91. #include <io.h>
  92. #include <conio.h>
  93. #include <winsock.h>
  94. #endif
  95. #include <stdio.h>
  96. #include <string.h> /* strcpy, strchr, yadda yadda */
  97. #include <errno.h>
  98. #include <signal.h>
  99. /* handy stuff: */
  100. #define SA struct sockaddr /* socket overgeneralization braindeath */
  101. #define SAI struct sockaddr_in /* ... whoever came up with this model */
  102. #define IA struct in_addr /* ... should be taken out and shot, */
  103. /* ... not that TLI is any better.  sigh.. */
  104. #define SLEAZE_PORT 31337 /* for UDP-scan RTT trick, change if ya want */
  105. #define USHORT unsigned short /* use these for options an' stuff */
  106. #define BIGSIZ 8192 /* big buffers */
  107. #define SMALLSIZ 256 /* small buffers, hostnames, etc */
  108. #ifndef INADDR_NONE
  109. #define INADDR_NONE 0xffffffff
  110. #endif
  111. #ifdef MAXHOSTNAMELEN
  112. #undef MAXHOSTNAMELEN /* might be too small on aix, so fix it */
  113. #endif
  114. #define MAXHOSTNAMELEN 256
  115. struct host_poop {
  116.   char name[MAXHOSTNAMELEN]; /* dns name */
  117.   char addrs[8][24]; /* ascii-format IP addresses */
  118.   struct in_addr iaddrs[8]; /* real addresses: in_addr.s_addr: ulong */
  119. };
  120. #define HINF struct host_poop
  121. struct port_poop {
  122.   char name [64]; /* name in /etc/services */
  123.   char anum [8]; /* ascii-format number */
  124.   USHORT num; /* real host-order number */
  125. };
  126. #define PINF struct port_poop
  127. /* globals: */
  128. jmp_buf jbuf; /* timer crud */
  129. int jval = 0; /* timer crud */
  130. int netfd = -1;
  131. static char unknown[] = "(UNKNOWN)";
  132. static char p_tcp[] = "tcp"; /* for getservby* */
  133. static char p_udp[] = "udp";
  134. #ifndef WIN32
  135. #ifdef HAVE_BIND
  136. extern int h_errno;
  137. #endif
  138. #endif
  139. int gatesidx = 0; /* LSRR hop count */
  140. int gatesptr = 4; /* initial LSRR pointer, settable */
  141. USHORT Single = 1; /* zero if scanning */
  142. unsigned int insaved = 0; /* stdin-buffer size for multi-mode */
  143. unsigned int wrote_out = 0; /* total stdout bytes */
  144. unsigned int wrote_net = 0; /* total net bytes */
  145. /* will malloc up the following globals: */
  146. struct timeval * timer1 = NULL;
  147. struct timeval * timer2 = NULL;
  148. SAI * lclend = NULL; /* sockaddr_in structs */
  149. SAI * remend = NULL;
  150. HINF ** gates = NULL; /* LSRR hop hostpoop */
  151. char * optbuf = NULL; /* LSRR or sockopts */
  152. char * bigbuf_in; /* data buffers */
  153. char * bigbuf_net;
  154. fd_set * ding1; /* for select loop */
  155. fd_set * ding2;
  156. PINF * portpoop = NULL; /* for getportpoop / getservby* */
  157. #ifdef WIN32
  158.   char * setsockopt_c;
  159. #endif
  160. /* global cmd flags: */
  161. USHORT o_alla = 0;
  162. unsigned int o_interval = 0;
  163. USHORT o_listen = 0;
  164. USHORT o_nflag = 0;
  165. USHORT o_random = 0;
  166. USHORT o_udpmode = 0;
  167. USHORT o_verbose = 0;
  168. unsigned int o_wait = 0;
  169. USHORT o_zero = 0;
  170. /* Debug macro: squirt whatever to stderr and sleep a bit so we can see it go
  171.    by.  need to call like Debug ((stuff)) [with no ; ] so macro args match!
  172.    Beware: writes to stdOUT... */
  173. #ifdef DEBUG
  174. #define Debug(x) printf x; printf ("n"); fflush (stdout); sleep (1);
  175. #else
  176. #define Debug(x) /* nil... */
  177. #endif
  178. /* support routines -- the bulk of this thing.  Placed in such an order that
  179.    we don't have to forward-declare anything: */
  180. #ifdef WIN32
  181. /* res_init
  182.    winsock needs to be initialized. Might as well do it as the res_init
  183.    call for Win32 */
  184. void res_init()
  185. {
  186. WORD wVersionRequested; 
  187. WSADATA wsaData; 
  188. int err; 
  189. wVersionRequested = MAKEWORD(1, 1); 
  190.  
  191. err = WSAStartup(wVersionRequested, &wsaData); 
  192.  
  193. if (err != 0) 
  194.     /* Tell the user that we couldn't find a useable */ 
  195.     /* winsock.dll.     */ 
  196.     return; 
  197.  
  198. /* Confirm that the Windows Sockets DLL supports 1.1.*/ 
  199. /* Note that if the DLL supports versions greater */ 
  200. /* than 1.1 in addition to 1.1, it will still return */ 
  201. /* 1.1 in wVersion since that is the version we */ 
  202. /* requested. */ 
  203.  
  204. if ( LOBYTE( wsaData.wVersion ) != 1 || 
  205.         HIBYTE( wsaData.wVersion ) != 1 ) { 
  206.     /* Tell the user that we couldn't find a useable */ 
  207.     /* winsock.dll. */ 
  208.     WSACleanup(); 
  209.     return; 
  210.     }
  211.  
  212. }
  213. /* winsockstr
  214.    Windows Sockets cannot report errors through perror() so we need to define
  215.    our own error strings to print. Someday all the string should be prettied up.
  216.    Prettied the errors I usually get */
  217. char * winsockstr(error)
  218. int error;
  219. {
  220. switch (error)
  221. {
  222. case WSAEINTR          : return("INTR          ");
  223. case WSAEBADF          : return("BADF          ");
  224. case WSAEACCES         : return("ACCES         ");
  225. case WSAEFAULT         : return("FAULT         ");
  226. case WSAEINVAL         : return("INVAL         ");
  227. case WSAEMFILE         : return("MFILE         ");
  228. case WSAEWOULDBLOCK    : return("WOULDBLOCK    ");
  229. case WSAEINPROGRESS    : return("INPROGRESS    ");
  230. case WSAEALREADY       : return("ALREADY       ");
  231. case WSAENOTSOCK       : return("NOTSOCK       ");
  232. case WSAEDESTADDRREQ   : return("DESTADDRREQ   ");
  233. case WSAEMSGSIZE       : return("MSGSIZE       ");
  234. case WSAEPROTOTYPE     : return("PROTOTYPE     ");
  235. case WSAENOPROTOOPT    : return("NOPROTOOPT    ");
  236. case WSAEPROTONOSUPPORT: return("PROTONOSUPPORT");
  237. case WSAESOCKTNOSUPPORT: return("SOCKTNOSUPPORT");
  238. case WSAEOPNOTSUPP     : return("OPNOTSUPP     ");
  239. case WSAEPFNOSUPPORT   : return("PFNOSUPPORT   ");
  240. case WSAEAFNOSUPPORT   : return("AFNOSUPPORT   ");
  241. case WSAEADDRINUSE     : return("ADDRINUSE     ");
  242. case WSAEADDRNOTAVAIL  : return("ADDRNOTAVAIL  ");
  243. case WSAENETDOWN       : return("NETDOWN       ");
  244. case WSAENETUNREACH    : return("NETUNREACH    ");
  245. case WSAENETRESET      : return("NETRESET      ");
  246. case WSAECONNABORTED   : return("CONNABORTED   ");
  247. case WSAECONNRESET     : return("CONNRESET     ");
  248. case WSAENOBUFS        : return("NOBUFS        ");
  249. case WSAEISCONN        : return("ISCONN        ");
  250. case WSAENOTCONN       : return("NOTCONN       ");
  251. case WSAESHUTDOWN      : return("SHUTDOWN      ");
  252. case WSAETOOMANYREFS   : return("TOOMANYREFS   ");
  253. case WSAETIMEDOUT      : return("TIMEDOUT      ");
  254. case WSAECONNREFUSED   : return("connection refused");
  255. case WSAELOOP          : return("LOOP          ");
  256. case WSAENAMETOOLONG   : return("NAMETOOLONG   ");
  257. case WSAEHOSTDOWN      : return("HOSTDOWN      ");
  258. case WSAEHOSTUNREACH   : return("HOSTUNREACH   ");
  259. case WSAENOTEMPTY      : return("NOTEMPTY      ");
  260. case WSAEPROCLIM       : return("PROCLIM       ");
  261. case WSAEUSERS         : return("USERS         ");
  262. case WSAEDQUOT         : return("DQUOT         ");
  263. case WSAESTALE         : return("STALE         ");
  264. case WSAEREMOTE        : return("REMOTE        ");
  265. case WSAEDISCON        : return("DISCON        ");
  266. case WSASYSNOTREADY    : return("SYSNOTREADY    ");
  267. case WSAVERNOTSUPPORTED: return("VERNOTSUPPORTED");
  268. case WSANOTINITIALISED : return("NOTINITIALISED ");
  269. case WSAHOST_NOT_FOUND : return("HOST_NOT_FOUND ");
  270. case WSATRY_AGAIN      : return("TRY_AGAIN      ");
  271. case WSANO_RECOVERY    : return("NO_RECOVERY    ");
  272. case WSANO_DATA        : return("NO_DATA        ");
  273. default : return("unknown socket error");
  274. }
  275. }
  276. #endif
  277. /* holler :
  278.    fake varargs -- need to do this way because we wind up calling through
  279.    more levels of indirection than vanilla varargs can handle, and not all
  280.    machines have vfprintf/vsyslog/whatever!  6 params oughta be enough. */
  281. void holler (str, p1, p2, p3, p4, p5, p6)
  282.   char * str;
  283.   char * p1, * p2, * p3, * p4, * p5, * p6;
  284. {
  285.   if (o_verbose) {
  286.     fprintf (stderr, str, p1, p2, p3, p4, p5, p6);
  287. #ifdef WIN32
  288. if (h_errno)
  289. fprintf (stderr, ": %sn",winsockstr(h_errno));
  290. #else
  291.     if (errno) { /* this gives funny-looking messages, but */
  292.       perror (" "); /* it's more portable than sys_errlist[]... */
  293.     } /* xxx: do something better.  */
  294. #endif
  295. else
  296.       fprintf (stderr, "n");
  297.     fflush (stderr);
  298.   }
  299. } /* holler */
  300. /* bail :
  301.    error-exit handler, callable from anywhere */
  302. void bail (str, p1, p2, p3, p4, p5, p6)
  303.   char * str;
  304.   char * p1, * p2, * p3, * p4, * p5, * p6;
  305. {
  306.   o_verbose = 1;
  307.   holler (str, p1, p2, p3, p4, p5, p6);
  308. #ifdef WIN32
  309.   closesocket (netfd);
  310. #else
  311.   close (netfd);
  312. #endif
  313.   sleep (1);
  314.   exit (1);
  315. } /* bail */
  316. /* catch :
  317.    no-brainer interrupt handler */
  318. void catch ()
  319. {
  320.   errno = 0;
  321.   bail (" punt!");
  322. }
  323. /* timeout and other signal handling cruft */
  324. void tmtravel ()
  325. {
  326. #ifdef NTFIXTHIS
  327.   signal (SIGALRM, SIG_IGN);
  328.   alarm (0);
  329. #endif
  330.   if (jval == 0)
  331.     bail ("spurious timer interrupt!");
  332.   longjmp (jbuf, jval);
  333. }
  334. /* arm :
  335.    set the timer.  Zero secs arg means unarm */
  336. void arm (num, secs)
  337.   unsigned int num;
  338.   unsigned int secs;
  339. {
  340.   if (secs == 0) { /* reset */
  341. #ifdef NTFIXTHIS
  342.     signal (SIGALRM, SIG_IGN);
  343.     alarm (0);
  344. #endif
  345.     jval = 0;
  346.   } else { /* set */
  347. #ifdef NTFIXTHIS
  348.     signal (SIGALRM, tmtravel);
  349.     alarm (secs);
  350. #endif
  351.     jval = num;
  352.   } /* if secs */
  353. } /* arm */
  354. /* Hmalloc :
  355.    malloc up what I want, rounded up to *4, and pre-zeroed.  Either succeeds
  356.    or bails out on its own, so that callers don't have to worry about it. */
  357. char * Hmalloc (size)
  358.   unsigned int size;
  359. {
  360.   unsigned int s = (size + 4) & 0xfffffffc; /* 4GB?! */
  361.   char * p = malloc (s);
  362.   if (p != NULL)
  363.     memset (p, 0, s);
  364.   else
  365.     bail ("Hmalloc %d failed", s);
  366.   return (p);
  367. } /* Hmalloc */
  368. /* findline :
  369.    find the next newline in a buffer; return inclusive size of that "line",
  370.    or the entire buffer size, so the caller knows how much to then write().
  371.    Not distinguishing n vs rn for the nonce; it just works as is... */
  372. unsigned int findline (buf, siz)
  373.   char * buf;
  374.   unsigned int siz;
  375. {
  376.   register char * p;
  377.   register int x;
  378.   if (! buf) /* various sanity checks... */
  379.     return (0);
  380.   if (siz > BIGSIZ)
  381.     return (0);
  382.   x = siz;
  383.   for (p = buf; x > 0; x--) {
  384.     if (*p == 'n') {
  385.       x = (int) (p - buf);
  386.       x++; /* 'sokay if it points just past the end! */
  387. Debug (("findline returning %d", x))
  388.       return (x);
  389.     }
  390.     p++;
  391.   } /* for */
  392. Debug (("findline returning whole thing: %d", siz))
  393.   return (siz);
  394. } /* findline */
  395. /* comparehosts :
  396.    cross-check the host_poop we have so far against new gethostby*() info,
  397.    and holler about mismatches.  Perhaps gratuitous, but it can't hurt to
  398.    point out when someone's DNS is fukt.  Returns 1 if mismatch, in case
  399.    someone else wants to do something about it. */
  400. int comparehosts (poop, hp)
  401.   HINF * poop;
  402.   struct hostent * hp;
  403. {
  404.   errno = 0;
  405. /* The DNS spec is officially case-insensitive, but for those times when you
  406.    *really* wanna see any and all discrepancies, by all means define this. */
  407. #ifdef ANAL
  408.   if (strcmp (poop->name, hp->h_name) != 0) { /* case-sensitive */
  409. #else
  410.   if (strcasecmp (poop->name, hp->h_name) != 0) { /* normal */
  411. #endif
  412.     holler ("DNS fwd/rev mismatch: %s != %s", poop->name, hp->h_name);
  413.     return (1);
  414.   }
  415.   return (0);
  416. /* ... do we need to do anything over and above that?? */
  417. } /* comparehosts */
  418. /* gethostpoop :
  419.    resolve a host 8 ways from sunday; return a new host_poop struct with its
  420.    info.  The argument can be a name or [ascii] IP address; it will try its
  421.    damndest to deal with it.  "numeric" governs whether we do any DNS at all,
  422.    and we also check o_verbose for what's appropriate work to do. */
  423. HINF * gethostpoop (name, numeric)
  424.   char * name;
  425.   USHORT numeric;
  426. {
  427.   struct hostent * hostent;
  428.   struct in_addr iaddr;
  429.   register HINF * poop = NULL;
  430.   register int x;
  431. /* I really want to strangle the twit who dreamed up all these sockaddr and
  432.    hostent abstractions, and then forced them all to be incompatible with
  433.    each other so you *HAVE* to do all this ridiculous casting back and forth.
  434.    If that wasn't bad enough, all the doc insists on referring to local ports
  435.    and addresses as "names", which makes NO sense down at the bare metal.
  436.    What an absolutely horrid paradigm, and to think of all the people who
  437.    have been wasting significant amounts of time fighting with this stupid
  438.    deliberate obfuscation over the last 10 years... then again, I like
  439.    languages wherein a pointer is a pointer, what you put there is your own
  440.    business, the compiler stays out of your face, and sheep are nervous.
  441.    Maybe that's why my C code reads like assembler half the time... */
  442. /* If we want to see all the DNS stuff, do the following hair --
  443.    if inet_addr, do reverse and forward with any warnings; otherwise try
  444.    to do forward and reverse with any warnings.  In other words, as long
  445.    as we're here, do a complete DNS check on these clowns.  Yes, it slows
  446.    things down a bit for a first run, but once it's cached, who cares? */
  447.   errno = 0;
  448.   if (name)
  449.     poop = (HINF *) Hmalloc (sizeof (HINF));
  450.   if (! poop)
  451.     bail ("gethostpoop fuxored");
  452.   strcpy (poop->name, unknown); /* preload it */
  453. /* see wzv:workarounds.c for dg/ux return-a-struct inet_addr lossage */
  454.   iaddr.s_addr = inet_addr (name);
  455.   if (iaddr.s_addr == INADDR_NONE) { /* here's the great split: names... */
  456.     if (numeric)
  457.       bail ("Can't parse %s as an IP address", name);
  458.     hostent = gethostbyname (name);
  459.     if (! hostent)
  460. /* failure to look up a name is fatal, since we can't do anything with it */
  461. /* XXX: h_errno only if BIND?  look up how telnet deals with this */
  462.       bail ("%s: forward host lookup failed: h_errno %d", name, h_errno);
  463.     strncpy (poop->name, hostent->h_name, sizeof (poop->name));
  464.     for (x = 0; hostent->h_addr_list[x] && (x < 8); x++) {
  465.       memcpy (&poop->iaddrs[x], hostent->h_addr_list[x], sizeof (IA));
  466.       strncpy (poop->addrs[x], inet_ntoa (poop->iaddrs[x]),
  467. sizeof (poop->addrs[0]));
  468.     } /* for x -> addrs, part A */
  469.     if (! o_verbose) /* if we didn't want to see the */
  470.       return (poop); /* inverse stuff, we're done. */
  471. /* do inverse lookups in separate loop based on our collected forward addrs,
  472.    since gethostby* tends to crap into the same buffer over and over */
  473.     for (x = 0; poop->iaddrs[x].s_addr && (x < 8); x++) {
  474.       hostent = gethostbyaddr ((char *)&poop->iaddrs[x],
  475. sizeof (IA), AF_INET);
  476.       if ((! hostent) || (! hostent-> h_name))
  477. holler ("Warning: inverse host lookup failed for %s: h_errno %d",
  478.   poop->addrs[x], h_errno);
  479.       else
  480. (void) comparehosts (poop, hostent);
  481.     } /* for x -> addrs, part B */
  482.   } else { /* not INADDR_NONE: numeric addresses... */
  483.     memcpy (poop->iaddrs, &iaddr, sizeof (IA));
  484.     strncpy (poop->addrs[0], inet_ntoa (iaddr), sizeof (poop->addrs));
  485.     if (numeric) /* if numeric-only, we're done */
  486.       return (poop);
  487.     if (! o_verbose) /* likewise if we don't want */
  488.       return (poop); /* the full DNS hair */
  489.     hostent = gethostbyaddr ((char *) &iaddr, sizeof (IA), AF_INET);
  490. /* numeric or not, failure to look up a PTR is *not* considered fatal */
  491.     if (! hostent)
  492. holler ("%s: inverse host lookup failed: h_errno %d", name, h_errno);
  493.     else {
  494. strncpy (poop->name, hostent->h_name, MAXHOSTNAMELEN - 2);
  495. hostent = gethostbyname (poop->name);
  496. if ((! hostent) || (! hostent->h_addr_list[0]))
  497.   holler ("Warning: forward host lookup failed for %s: h_errno %d",
  498. poop->name, h_errno);
  499. else
  500.   (void) comparehosts (poop, hostent);
  501.     } /* if hostent */
  502.   } /* INADDR_NONE Great Split */
  503. /* whatever-all went down previously, we should now have a host_poop struct
  504.    with at least one IP address in it. */
  505.   return (poop);
  506. } /* gethostpoop */
  507. /* getportpoop :
  508.    Same general idea as gethostpoop -- look up a port in /etc/services, fill
  509.    in global port_poop, but return the actual port *number*.  Pass ONE of:
  510. pstring to resolve stuff like "23" or "exec";
  511. pnum to reverse-resolve something that's already a number.
  512.    If o_nflag is on, fill in what we can but skip the getservby??? stuff.
  513.    Might as well have consistent behavior here... */
  514. USHORT getportpoop (pstring, pnum)
  515.   char * pstring;
  516.   unsigned int pnum;
  517. {
  518.   struct servent * servent;
  519.   register int x;
  520.   register int y;
  521.   char * whichp = p_tcp;
  522.   if (o_udpmode)
  523.     whichp = p_udp;
  524.   portpoop->name[0] = '?'; /* fast preload */
  525.   portpoop->name[1] = '';
  526. /* case 1: reverse-lookup of a number; placed first since this case is much
  527.    more frequent if we're scanning */
  528.   if (pnum) {
  529.     if (pstring) /* one or the other, pleeze */
  530.       return (0);
  531.     x = pnum;
  532.     if (o_nflag) /* go faster, skip getservbyblah */
  533.       goto gp_finish;
  534.     y = htons (x); /* gotta do this -- see Fig.1 below */
  535.     servent = getservbyport (y, whichp);
  536.     if (servent) {
  537.       y = ntohs (servent->s_port);
  538.       if (x != y) /* "never happen" */
  539. holler ("Warning: port-bynum mismatch, %d != %d", x, y);
  540.       strncpy (portpoop->name, servent->s_name, sizeof (portpoop->name));
  541.     } /* if servent */
  542.     goto gp_finish;
  543.   } /* if pnum */
  544. /* case 2: resolve a string, but we still give preference to numbers instead
  545.    of trying to resolve conflicts.  None of the entries in *my* extensive
  546.    /etc/services begins with a digit, so this should "always work" unless
  547.    you're at 3com and have some company-internal services defined... */
  548.   if (pstring) {
  549.     if (pnum) /* one or the other, pleeze */
  550.       return (0);
  551.     x = atoi (pstring);
  552.     if (x)
  553.       return (getportpoop (NULL, x)); /* recurse for numeric-string-arg */
  554.     if (o_nflag) /* can't use names! */
  555.       return (0);
  556.     servent = getservbyname (pstring, whichp);
  557.     if (servent) {
  558.       strncpy (portpoop->name, servent->s_name, sizeof (portpoop->name));
  559.       x = ntohs (servent->s_port);
  560.       goto gp_finish;
  561.     } /* if servent */
  562.   } /* if pstring */
  563.   return (0); /* catches any problems so far */
  564. /* Obligatory netdb.h-inspired rant: servent.s_port is supposed to be an int.
  565.    Despite this, we still have to treat it as a short when copying it around.
  566.    Not only that, but we have to convert it *back* into net order for
  567.    getservbyport to work.  Manpages generally aren't clear on all this, but
  568.    there are plenty of examples in which it is just quietly done.  More BSD
  569.    lossage... since everything getserv* ever deals with is local to our own
  570.    host, why bother with all this network-order/host-order crap at all?!
  571.    That should be saved for when we want to actually plug the port[s] into
  572.    some real network calls -- and guess what, we have to *re*-convert at that
  573.    point as well.  Fuckheads. */
  574. gp_finish:
  575. /* Fall here whether or not we have a valid servent at this point, with
  576.    x containing our [host-order and therefore useful, dammit] port number */
  577.   sprintf (portpoop->anum, "%d", x); /* always load any numeric specs! */
  578.   portpoop->num = (x & 0xffff); /* ushort, remember... */
  579.   return (portpoop->num);
  580. } /* getportpoop */
  581. /* nextport :
  582.    Come up with the next port to try, be it random or whatever.  "block" is
  583.    a ptr to randports array, whose bytes [so far] carry these meanings:
  584. 0 ignore
  585. 1 to be tested
  586. 2 tested [which is set as we find them here]
  587.    returns a USHORT random port, or 0 if all the t-b-t ones are used up. */
  588. USHORT nextport (block)
  589.   char * block;
  590. {
  591.   register unsigned int x;
  592.   register unsigned int y;
  593.   y = 70000; /* high safety count for rnd-tries */
  594.   while (y > 0) {
  595.     x = (RAND() & 0xffff);
  596.     if (block[x] == 1) { /* try to find a not-done one... */
  597.       block[x] = 2;
  598.       break;
  599.     }
  600.     x = 0; /* bummer. */
  601.     y--;
  602.   } /* while y */
  603.   if (x)
  604.     return (x);
  605.   y = 65535; /* no random one, try linear downsearch */
  606.   while (y > 0) { /* if they're all used, we *must* be sure! */
  607.     if (block[y] == 1) {
  608.       block[y] = 2;
  609.       break;
  610.     }
  611.     y--;
  612.   } /* while y */
  613.   if (y)
  614.     return (y); /* at least one left */
  615.   return (0); /* no more left! */
  616. } /* nextport */
  617. /* loadports :
  618.    set "to be tested" indications in BLOCK, from LO to HI.  Almost too small
  619.    to be a separate routine, but makes main() a little cleaner... */
  620. void loadports (block, lo, hi)
  621.   char * block;
  622.   USHORT lo;
  623.   USHORT hi;
  624. {
  625.   USHORT x;
  626.   if (! block)
  627.     bail ("loadports: no block?!");
  628.   if ((! lo) || (! hi))
  629.     bail ("loadports: bogus values %d, %d", lo, hi);
  630.   x = hi;
  631.   while (lo <= x) {
  632.     block[x] = 1;
  633.     x--;
  634.   }
  635. } /* loadports */
  636. #ifdef GAPING_SECURITY_HOLE
  637. char * pr00gie = NULL; /* global ptr to -e arg */
  638. /* doexec :
  639.    fiddle all the file descriptors around, and hand off to another prog.  Sort
  640.    of like a one-off "poor man's inetd".  This is the only section of code
  641.    that would be security-critical, which is why it's ifdefed out by default.
  642.    Use at your own hairy risk; if you leave shells lying around behind open
  643.    listening ports you deserve to lose!! */
  644. doexec (fd)
  645.   int fd;
  646. {
  647.   register char * p;
  648.   dup2 (fd, 0); /* the precise order of fiddlage */
  649. #ifdef WIN32
  650.   closesocket (fd);
  651. #else
  652.   close (fd); /* is apparently crucial; this is */
  653. #endif
  654.   dup2 (0, 1); /* swiped directly out of "inetd". */
  655.   dup2 (0, 2);
  656.   p = strrchr (pr00gie, '/'); /* shorter argv[0] */
  657.   if (p)
  658.     p++;
  659.   else
  660.     p = pr00gie;
  661. Debug (("gonna exec %s as %s...", pr00gie, p))
  662.   execl (pr00gie, p, NULL);
  663.   bail ("exec %s failed", pr00gie); /* this gets sent out.  Hmm... */
  664. } /* doexec */
  665. #endif /* GAPING_SECURITY_HOLE */
  666. /* doconnect :
  667.    do all the socket stuff, and return an fd for one of
  668. an open outbound TCP connection
  669. a UDP stub-socket thingie
  670.    with appropriate socket options set up if we wanted source-routing, or
  671. an unconnected TCP or UDP socket to listen on.
  672.    Examines various global o_blah flags to figure out what-all to do. */
  673. int doconnect (rad, rp, lad, lp)
  674.   IA * rad;
  675.   USHORT rp;
  676.   IA * lad;
  677.   USHORT lp;
  678. {
  679.   register int nnetfd;
  680.   register int rr;
  681.   int x, y;
  682.   errno = 0;
  683. /* grab a socket; set opts */
  684.   if (o_udpmode)
  685.     nnetfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_UDP);
  686.   else
  687.     nnetfd = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
  688.   if (nnetfd < 0)
  689.     bail ("Can't get socket");
  690.   if (nnetfd == 0) /* might *be* zero if stdin was closed! */
  691.     nnetfd = dup (nnetfd); /* so fix it.  Leave the old 0 hanging. */
  692. #ifdef WIN32
  693.   rr = setsockopt (nnetfd, SOL_SOCKET, SO_REUSEADDR, (const char FAR *)setsockopt_c, sizeof (setsockopt_c));
  694. #else
  695.   x = 1;
  696.   rr = setsockopt (nnetfd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof (x));
  697. #endif
  698.   if (rr == -1)
  699.     holler ("nnetfd reuseaddr failed"); /* ??? */
  700. #ifdef SO_REUSEPORT /* doesnt exist everywhere... */
  701. #ifdef WIN32
  702.   rr = setsockopt (nnetfd, SOL_SOCKET, SO_REUSEPORT, &c, sizeof (c));
  703. #else
  704.   rr = setsockopt (nnetfd, SOL_SOCKET, SO_REUSEPORT, &x, sizeof (x));
  705. #endif
  706.   if (rr == -1)
  707.     holler ("nnetfd reuseport failed"); /* ??? */
  708. #endif
  709. /* fill in all the right sockaddr crud */
  710.   lclend->sin_family = AF_INET;
  711.   remend->sin_family = AF_INET;
  712. /* if lad/lp, do appropriate binding */
  713.   if (lad)
  714.     memcpy (&lclend->sin_addr.s_addr, lad, sizeof (IA));
  715.   if (lp)
  716.     lclend->sin_port = htons (lp);
  717.   rr = 0;
  718.   if (lad || lp) {
  719.     x = (int) lp;
  720. /* try a few times for the local bind, a la ftp-data-port... */
  721.     for (y = 4; y > 0; y--) {
  722.       rr = bind (nnetfd, (SA *)lclend, sizeof (SA));
  723.       if (rr == 0)
  724. break;
  725.       if (errno != EADDRINUSE)
  726. break;
  727.       else {
  728. holler ("retrying local %s:%d", inet_ntoa (lclend->sin_addr), lp);
  729. sleep (1);
  730. errno = 0; /* clear from sleep */
  731.       } /* if EADDRINUSE */
  732.     } /* for y counter */
  733.   } /* if lad or lp */
  734.   if (rr)
  735.     bail ("Can't grab %s:%d with bind",
  736. inet_ntoa(lclend->sin_addr), lp);
  737.   if (o_listen)
  738.     return (nnetfd); /* thanks, that's all for today */
  739.   memcpy (&remend->sin_addr.s_addr, rad, sizeof (IA));
  740.   remend->sin_port = htons (rp);
  741. /* if any -g arguments were given, set up source-routing.  We hit this after
  742.    the gates are all looked up and ready to rock, any -G pointer is set,
  743.    and gatesidx is now the *number* of hops */
  744.   if (gatesidx) { /* if we wanted any srcrt hops ... */
  745. /* don't even bother compiling if we can't do IP options here! */
  746. //#ifdef IP_OPTIONS 
  747. #ifndef WIN32 
  748.     if (! optbuf) { /* and don't already *have* a srcrt set */
  749.       char * opp; /* then do all this setup hair */
  750.       optbuf = Hmalloc (48);
  751.       opp = optbuf;
  752.       *opp++ = IPOPT_LSRR; /* option */
  753.       *opp++ = (char)
  754. (((gatesidx + 1) * sizeof (IA)) + 3) & 0xff; /* length */
  755.       *opp++ = gatesptr; /* pointer */
  756. /* opp now points at first hop addr -- insert the intermediate gateways */
  757.       for ( x = 0; x < gatesidx; x++) {
  758. memcpy (opp, gates[x]->iaddrs, sizeof (IA));
  759. opp += sizeof (IA);
  760.       }
  761. /* and tack the final destination on the end [needed!] */
  762.       memcpy (opp, rad, sizeof (IA));
  763.       opp += sizeof (IA);
  764.       *opp = IPOPT_NOP; /* alignment filler */
  765.     } /* if empty optbuf */
  766. /* calculate length of whole option mess, which is (3 + [hops] + [final] + 1),
  767.    and apply it [have to do this every time through, of course] */
  768.     x = ((gatesidx + 1) * sizeof (IA)) + 4;
  769.     rr = setsockopt (nnetfd, IPPROTO_IP, IP_OPTIONS, optbuf, x);
  770.     if (rr == -1)
  771.       bail ("srcrt setsockopt fuxored");
  772. #else /* IP_OPTIONS */
  773.     holler ("Warning: source routing unavailable on this machine, ignoring");
  774. #endif /* IP_OPTIONS*/
  775.   } /* if gatesidx */
  776. /* wrap connect inside a timer, and hit it */
  777.   arm (1, o_wait);
  778.   if (setjmp (jbuf) == 0) {
  779.     rr = connect (nnetfd, (SA *)remend, sizeof (SA));
  780.   } else { /* setjmp: connect failed... */
  781.     rr = -1;
  782. #ifdef WIN32
  783.     WSASetLastError(WSAETIMEDOUT); /* fake it */
  784. #else
  785.     errno = ETIMEDOUT; /* fake it */
  786. #endif
  787.   }
  788.   arm (0, 0);
  789.   if (rr == 0)
  790.     return (nnetfd);
  791. #ifdef WIN32
  792.   errno = h_errno;
  793.   closesocket (netfd);
  794.   WSASetLastError(errno); // don't want to lose connect error
  795. #else
  796.   close (nnetfd); /* clean up junked socket FD!! */
  797. #endif
  798.   return (-1);
  799. } /* doconnect */
  800. /* dolisten :
  801.    just like doconnect, and in fact calls a hunk of doconnect, but listens for
  802.    incoming and returns an open connection *from* someplace.  If we were
  803.    given host/port args, any connections from elsewhere are rejected.  This
  804.    in conjunction with local-address binding should limit things nicely... */
  805. int dolisten (rad, rp, lad, lp)
  806.   IA * rad;
  807.   USHORT rp;
  808.   IA * lad;
  809.   USHORT lp;
  810. {
  811.   register int nnetfd;
  812.   register int rr;
  813.   HINF * whozis = NULL;
  814.   int x;
  815.   USHORT z;
  816.   errno = 0;
  817. /* Pass everything off to doconnect, who in o_listen mode just gets a socket */
  818.   nnetfd = doconnect (rad, rp, lad, lp);
  819.   if (nnetfd <= 0)
  820.     return (-1);
  821.   if (o_udpmode) { /* apparently UDP can listen ON */
  822.     if (! lp) /* "port 0",  but that's not useful */
  823.       bail ("UDP listen needs -p arg");
  824.   } else {
  825.     rr = listen (nnetfd, 1); /* gotta listen() before we can get */
  826.     if (rr < 0) /* our local random port.  sheesh. */
  827.       bail ("local listen fuxored");
  828.   }
  829. /* I can't believe I have to do all this to get my own goddamn bound address
  830.    and port number.  It should just get filled in during bind() or something.
  831.    All this is only useful if we didn't say -p for listening, since if we
  832.    said -p we *know* what port we're listening on.  At any rate we won't bother
  833.    with it all unless we wanted to see it, although listening quietly on a
  834.    random unknown port is probably not very useful without "netstat". */
  835.   if (o_verbose) {
  836.     x = sizeof (SA); /* how 'bout getsockNUM instead, pinheads?! */
  837.     rr = getsockname (nnetfd, (SA *) lclend, &x);
  838.       if (rr < 0)
  839. holler ("local getsockname failed");
  840.     strcpy (bigbuf_net, "listening on ["); /* buffer reuse... */
  841.       if (lclend->sin_addr.s_addr)
  842. strcat (bigbuf_net, inet_ntoa (lclend->sin_addr));
  843.       else
  844. strcat (bigbuf_net, "any");
  845.     strcat (bigbuf_net, "] %d ...");
  846.     z = ntohs (lclend->sin_port);
  847.     holler (bigbuf_net, z);
  848.   } /* verbose -- whew!! */
  849. /* UDP is a speeeeecial case -- we have to do I/O *and* get the calling
  850.    party's particulars all at once, listen() and accept() don't apply.
  851.    At least in the BSD universe, however, recvfrom/PEEK is enough to tell
  852.    us something came in, and we can set things up so straight read/write
  853.    actually does work after all.  Yow.  YMMV on strange platforms!  */
  854.   if (o_udpmode) {
  855.     x = sizeof (SA); /* retval for recvfrom */
  856.     arm (2, o_wait); /* might as well timeout this, too */
  857.     if (setjmp (jbuf) == 0) { /* do timeout for initial connect */
  858.       rr = recvfrom /* and here we block... */
  859. (nnetfd, bigbuf_net, BIGSIZ, MSG_PEEK, (SA *) remend, &x);
  860. Debug (("dolisten/recvfrom ding, rr = %d, netbuf %s ", rr, bigbuf_net))
  861.     } else
  862.       goto dol_tmo; /* timeout */
  863.     arm (0, 0);
  864. /* I'm not completely clear on how this works -- BSD seems to make UDP
  865.    just magically work in a connect()ed context, but we'll undoubtedly run
  866.    into systems this deal doesn't work on.  For now, we apparently have to
  867.    issue a connect() on our just-tickled socket so we can write() back.
  868.    Again, why the fuck doesn't it just get filled in and taken care of?!
  869.    This hack is anything but optimal.  Basically, if you want your listener
  870.    to also be able to send data back, you need this connect() line, which
  871.    also has the side effect that now anything from a different source or even a
  872.    different port on the other end won't show up and will cause ICMP errors.
  873.    I guess that's what they meant by "connect".
  874.    Let's try to remember what the "U" is *really* for, eh?
  875. */
  876.     rr = connect (nnetfd, (SA *)remend, sizeof (SA));
  877.     goto whoisit;
  878.   } /* o_udpmode */
  879. /* fall here for TCP */
  880.   x = sizeof (SA); /* retval for accept */
  881.   arm (2, o_wait); /* wrap this in a timer, too; 0 = forever */
  882.   if (setjmp (jbuf) == 0) {
  883.     rr = accept (nnetfd, (SA *)remend, &x);
  884.   } else
  885.     goto dol_tmo; /* timeout */
  886.   arm (0, 0);
  887. #ifdef WIN32
  888.   closesocket (netfd);
  889. #else
  890.   close (nnetfd); /* dump the old socket */
  891. #endif
  892.   nnetfd = rr; /* here's our new one */
  893. whoisit:
  894.   if (rr < 0)
  895.     goto dol_err; /* bail out if any errors so far */
  896. /* Various things that follow temporarily trash bigbuf_net, which might contain
  897.    a copy of any recvfrom()ed packet, but we'll read() another copy later. */
  898. /* If we can, look for any IP options.  Useful for testing the receiving end of
  899.    such things, and is a good exercise in dealing with it.  We do this before
  900.    the connect message, to ensure that the connect msg is uniformly the LAST
  901.    thing to emerge after all the intervening crud.  Doesn't work for UDP on
  902.    any machines I've tested, but feel free to surprise me. */
  903. //#ifdef IP_OPTIONS
  904. #ifndef WIN32
  905.   if (! o_verbose) /* if we wont see it, we dont care */
  906.     goto dol_noop;
  907.   optbuf = Hmalloc (40);
  908.   x = 40;
  909.   rr = getsockopt (nnetfd, IPPROTO_IP, IP_OPTIONS, optbuf, &x);
  910.   if (rr < 0)
  911.     holler ("getsockopt failed");
  912. Debug (("ipoptions ret len %d", x))
  913.   if (x) { /* we've got options, lessee em... */
  914.     unsigned char * q = (unsigned char *) optbuf;
  915.     char * p = bigbuf_net; /* local variables, yuk! */
  916.     char * pp = &bigbuf_net[128]; /* get random space farther out... */
  917.     memset (bigbuf_net, 0, 256); /* clear it all first */
  918.     while (x > 0) {
  919. sprintf (pp, "%2.2x ", *q); /* clumsy, but works: turn into hex */
  920. strcat (p, pp); /* and build the final string */
  921. q++; p++;
  922. x--;
  923.     }
  924.     holler ("IP options: %s", bigbuf_net);
  925.   } /* if x, i.e. any options */
  926. dol_noop:
  927. #endif /* IP_OPTIONS */
  928. /* now check out who it is.  We don't care about mismatched DNS names here,
  929.    but any ADDR and PORT we specified had better fucking well match the caller.
  930.    Converting from addr to inet_ntoa and back again is a bit of a kludge, but
  931.    gethostpoop wants a string and there's much gnarlier code out there already,
  932.    so I don't feel bad.
  933.    The *real* question is why BFD sockets wasn't designed to allow listens for
  934.    connections *from* specific hosts/ports, instead of requiring the caller to
  935.    accept the connection and then reject undesireable ones by closing. */
  936.   z = ntohs (remend->sin_port);
  937.   strcpy (bigbuf_net, inet_ntoa (remend->sin_addr));
  938.   whozis = gethostpoop (bigbuf_net, o_nflag);
  939.   x = 0; /* use as a flag... */
  940.   if (rad)
  941.     if (memcmp (rad, whozis->iaddrs, sizeof (SA)))
  942.       x = 1;
  943.   if (rp)
  944.     if (z != rp)
  945.       x = 1;
  946.   if (x) /* guilty! */
  947.     bail ("invalid connection from %s [%s] %d",
  948. whozis->name, whozis->addrs[0], z);
  949.   holler ("connect from %s [%s] %d", /* oh, you're okay.. */
  950. whozis->name, whozis->addrs[0], z);
  951.   return (nnetfd); /* open! */
  952. dol_tmo:
  953.   errno = ETIMEDOUT; /* fake it */
  954. dol_err:
  955. #ifdef WIN32
  956.   closesocket (netfd);
  957. #else
  958.   close (nnetfd);
  959. #endif
  960.   return (-1);
  961. } /* dolisten */
  962. /* udptest :
  963.    fire a couple of packets at a UDP target port, just to see if it's really
  964.    there.  On BSD kernels, ICMP host/port-unreachable errors get delivered to
  965.    our socket as ECONNREFUSED write errors.  On SV kernels, we lose; we'll have
  966.    to collect and analyze raw ICMP ourselves a la satan's probe_udp_ports
  967.    backend.  Guess where could swipe the appropriate code from...
  968.    Use the time delay between writes if given, otherwise use the "tcp ping"
  969.    trick for getting the RTT.  [I got that idea from pluvius, and warped it.]
  970.    Return either the original fd, or clean up and return -1. */
  971. udptest (fd, where)
  972.   int fd;
  973.   IA * where;
  974. {
  975.   register int rr;
  976. #ifdef WIN32
  977.   rr = send (fd, bigbuf_in, 1, 0);
  978. #else
  979.   rr = write (fd, bigbuf_in, 1);
  980. #endif
  981.   if (rr != 1)
  982.     holler ("udptest first write failed?! errno %d", errno);
  983.   if (o_wait)
  984.     sleep (o_wait);
  985.   else {
  986. /* use the tcp-ping trick: try connecting to a normally refused port, which
  987.    causes us to block for the time that SYN gets there and RST gets back.
  988.    Not completely reliable, but it *does* mostly work. */
  989.     o_udpmode = 0; /* so doconnect does TCP this time */
  990. /* Set a temporary connect timeout, so packet filtration doesnt cause
  991.    us to hang forever, and hit it */
  992.     o_wait = 5; /* XXX: enough to notice?? */
  993.     rr = doconnect (where, SLEAZE_PORT, 0, 0);
  994.     if (rr > 0)
  995. #ifdef WIN32
  996.   closesocket (rr);
  997. #else
  998.       close (rr); /* in case it *did* open */
  999. #endif
  1000.     o_wait = 0; /* reset it */
  1001.     o_udpmode++; /* we *are* still doing UDP, right? */
  1002.   } /* if o_wait */
  1003.   errno = 0; /* clear from sleep */
  1004. #ifdef WIN32
  1005.   rr = send (fd, bigbuf_in, 1, 0);
  1006. #else
  1007.   rr = write (fd, bigbuf_in, 1);
  1008. #endif
  1009.   if (rr == 1) /* if write error, no UDP listener */
  1010.     return (fd);
  1011. #ifdef WIN32
  1012.   closesocket (fd);
  1013. #else
  1014.   close (fd); /* use it or lose it! */
  1015. #endif
  1016.   return (-1);
  1017. } /* udptest */
  1018. /* readwrite :
  1019.    handle stdin/stdout/network I/O.  Bwahaha!! -- the select loop from hell.
  1020.    In this instance, return what might become our exit status. */
  1021. int readwrite (fd)
  1022. #ifdef WIN32
  1023.   unsigned int fd;
  1024. #else
  1025.   int fd;
  1026. #endif
  1027. {
  1028.   register int rr;
  1029.   register char * zp; /* stdin buf ptr */
  1030.   register char * np; /* net-in buf ptr */
  1031.   unsigned int rzleft;
  1032.   unsigned int rnleft;
  1033.   USHORT netretry; /* net-read retry counter */
  1034.   USHORT wretry; /* net-write sanity counter */
  1035. #ifdef WIN32 /* (weld) WIN32 must poll because of weak stdin handling so we need a
  1036. short timer */
  1037.   struct timeval timer3;
  1038.   int istty;
  1039.   timer3.tv_sec = 0;
  1040.   timer3.tv_usec = 100;
  1041.   _setmode( 0, _O_BINARY ); /* (weld) I think we want to do this */
  1042.   _setmode( 1, _O_BINARY ); /* sets stdin and stdout to binary so no crlf translation */
  1043.   istty = _isatty( 0 ); /* WIN32 treats tty stdin differently, what'd ya expect? */
  1044. #endif
  1045. /* if you don't have all this FD_* macro hair in sys/types.h, you'll have to
  1046.    either find it or do your own bit-bashing: *ding1 |= (1 << fd), etc... */
  1047. #ifndef WIN32  // fd is not implemented as a real file handle in WIN32
  1048.   if (fd > FD_SETSIZE) {
  1049.     holler ("Preposterous fd value %d", fd);
  1050.     return (1);
  1051.   }
  1052. #endif
  1053.   FD_SET (fd, ding1); /* global: the net is open */
  1054.   netretry = 2;
  1055.   rzleft = rnleft = 0;
  1056.   if (insaved) {
  1057.     rzleft = insaved; /* preload multi-mode fakeouts */
  1058.     zp = bigbuf_in;
  1059.   }
  1060.   if (o_interval)
  1061.     sleep (o_interval); /* pause *before* sending stuff, too */
  1062.   errno = 0; /* clear from sleep */
  1063. /* and now the big ol' select shoveling loop ... */
  1064.   while (FD_ISSET (fd, ding1)) { /* i.e. till the *net* closes! */
  1065.     *ding2 = *ding1; /* FD_COPY ain't portable... */
  1066.     wretry = 8200; /* more than we'll ever hafta write */
  1067. /* some systems, notably linux, crap into their select timers on return, so
  1068.    we create a expendable copy and give *that* to select.  *Fuck* me ... */
  1069.     if (timer1)
  1070.       memcpy (timer2, timer1, sizeof (struct timeval));
  1071. #ifdef WIN32 /* (weld)we must use our own small timeval to poll */
  1072.     rr = select (16, ding2, 0, 0, &timer3); /* here it is, kiddies */
  1073. #else
  1074.     rr = select (16, ding2, 0, 0, timer2); /* here it is, kiddies */
  1075. #endif
  1076.     if (rr < 0) {
  1077. #ifdef WIN32
  1078. if (h_errno != WSAEINTR) { /* might have gotten ^Zed, etc ?*/
  1079. #else
  1080. if (errno != EINTR) { /* might have gotten ^Zed, etc ?*/
  1081. #endif
  1082.   holler ("select fuxored");
  1083. #ifdef WIN32
  1084.   closesocket (fd);
  1085. #else
  1086.   close (fd);
  1087. #endif
  1088.   return (1);
  1089. }
  1090.     } /* select fuckup */
  1091. /* if we have a timeout AND stdin is closed AND we haven't heard anything
  1092.    from the net during that time, assume it's dead and close it too. */
  1093. #ifndef WIN32  /* (weld) need to write some code here */
  1094.     if (rr == 0) {
  1095. if (! FD_ISSET (0, ding1))
  1096.   netretry--; /* we actually try a coupla times. */
  1097. if (! netretry) {
  1098.   if (o_verbose > 1) /* normally we don't care */
  1099.     holler ("net timeout");
  1100. #ifdef WIN32
  1101.   closesocket (fd);
  1102. #else
  1103.   close (fd);
  1104. #endif
  1105.   return (0); /* not an error! */
  1106. }
  1107.     } /* select timeout */
  1108. #endif
  1109. /* xxx: should we check the exception fds too?  The read fds seem to give
  1110.    us the right info, and none of the examples I found bothered. */
  1111. /* Ding!!  Something arrived, go check all the incoming hoppers, net first */
  1112.     if (FD_ISSET (fd, ding2)) { /* net: ding! */
  1113. #ifdef WIN32
  1114. rr = recv (fd, bigbuf_net, BIGSIZ, 0);
  1115. #else
  1116. rr = read (fd, bigbuf_net, BIGSIZ);
  1117. #endif
  1118. if (rr <= 0) {
  1119.   FD_CLR (fd, ding1); /* net closed, we'll finish up... */
  1120.   rzleft = 0; /* can't write anymore: broken pipe */
  1121. } else {
  1122.   rnleft = rr;
  1123.   np = bigbuf_net;
  1124. }
  1125. Debug (("got %d from the net, errno %d", rr, errno))
  1126.     } /* net:ding */
  1127. /* if we're in "slowly" mode there's probably still stuff in the stdin
  1128.    buffer, so don't read unless we really need MORE INPUT!  MORE INPUT! */
  1129.     if (rzleft)
  1130. goto shovel;
  1131. /* okay, suck more stdin */
  1132. #ifndef WIN32
  1133.     if (FD_ISSET (0, ding2)) { /* stdin: ding! */
  1134. rr = read (0, bigbuf_in, BIGSIZ);
  1135. /* xxx: maybe make reads here smaller for UDP mode, so that the subsequent
  1136.    writes are smaller -- 1024 or something?  "oh, frag it", etc, although
  1137.    mobygrams are kinda fun and exercise the reassembler. */
  1138. if (rr <= 0) { /* at end, or fukt, or ... */
  1139.   FD_CLR (0, ding1); /* disable and close stdin */
  1140.   close (0);
  1141. } else {
  1142.   rzleft = rr;
  1143.   zp = bigbuf_in;
  1144. /* special case for multi-mode -- we'll want to send this one buffer to every
  1145.    open TCP port or every UDP attempt, so save its size and clean up stdin */
  1146.   if (! Single) { /* we might be scanning... */
  1147.     insaved = rr; /* save len */
  1148.     FD_CLR (0, ding1); /* disable further junk from stdin */
  1149.     close (0); /* really, I mean it */
  1150.   } /* Single */
  1151. } /* if rr/read */
  1152.     } /* stdin:ding */
  1153. #else
  1154. if (istty) {
  1155. /* (weld) cool, we can actually peek a tty and not have to block */
  1156. /* needs to be cleaned up */
  1157. if (kbhit()) {
  1158. // bigbuf_in[0] = getche();
  1159. gets(bigbuf_in);
  1160. strcat(bigbuf_in, "rn");
  1161. rr = strlen(bigbuf_in);
  1162. rzleft = rr;
  1163. zp = bigbuf_in;
  1164. /* special case for multi-mode -- we'll want to send this one buffer to every
  1165.    open TCP port or every UDP attempt, so save its size and clean up stdin */
  1166. if (! Single) { /* we might be scanning... */
  1167. insaved = rr; /* save len */
  1168. close (0); /* really, I mean it */
  1169. }
  1170. }
  1171. } else {
  1172. /* (weld) this is gonna block until a <cr> so it kinda sucks */
  1173. rr = read (0, bigbuf_in, BIGSIZ);
  1174. if (rr <= 0) { /* at end, or fukt, or ... */
  1175. close (0);
  1176. } else {
  1177. rzleft = rr;
  1178. zp = bigbuf_in;
  1179. /* special case for multi-mode -- we'll want to send this one buffer to every
  1180.    open TCP port or every UDP attempt, so save its size and clean up stdin */
  1181. if (! Single) { /* we might be scanning... */
  1182. insaved = rr; /* save len */
  1183. close (0); /* really, I mean it */
  1184. } /* Single */
  1185. } /* if rr/read */
  1186. }
  1187. #endif
  1188. shovel:
  1189. /* now that we've dingdonged all our thingdings, send off the results.
  1190.    Geez, why does this look an awful lot like the big loop in "rsh"? ...
  1191.    not sure if the order of this matters, but write net -> stdout first. */
  1192. /* sanity check.  Works because they're both unsigned... */
  1193.     if ((rzleft > 8200) || (rnleft > 8200)) {
  1194. holler ("Preposterous Pointers: %d, %d", rzleft, rnleft);
  1195. rzleft = rnleft = 0;
  1196.     }
  1197. /* net write retries sometimes happen on UDP connections */
  1198.     if (! wretry) { /* is something hung? */
  1199. holler ("too many output retries");
  1200. return (1);
  1201.     }
  1202.     if (rnleft) {
  1203. rr = write (1, np, rnleft);
  1204. if (rr > 0) {
  1205.   np += rr; /* fix up ptrs and whatnot */
  1206.   rnleft -= rr; /* will get sanity-checked above */
  1207.   wrote_out += rr; /* global count */
  1208. }
  1209. Debug (("wrote %d to stdout, errno %d", rr, errno))
  1210.     } /* rnleft */
  1211.     if (rzleft) {
  1212. if (o_interval) /* in "slowly" mode ?? */
  1213.   rr = findline (zp, rzleft);
  1214. else
  1215.   rr = rzleft;
  1216. #ifdef WIN32
  1217. rr = send (fd, zp, rr, 0); /* one line, or the whole buffer */
  1218. #else
  1219. rr = write (fd, zp, rr); /* one line, or the whole buffer */
  1220. #endif
  1221. if (rr > 0) {
  1222.   zp += rr;
  1223.   rzleft -= rr;
  1224.   wrote_net += rr; /* global count */
  1225. }
  1226. Debug (("wrote %d to net, errno %d", rr, errno))
  1227.     } /* rzleft */
  1228.     if (o_interval) { /* cycle between slow lines, or ... */
  1229. sleep (o_interval);
  1230. errno = 0; /* clear from sleep */
  1231. continue; /* ...with hairy select loop... */
  1232.     }
  1233.     if ((rzleft) || (rnleft)) { /* shovel that shit till they ain't */
  1234. wretry--; /* none left, and get another load */
  1235. goto shovel;
  1236.     }
  1237.   } /* while ding1:netfd is open */
  1238. /* XXX: maybe want a more graceful shutdown() here, or screw around with
  1239.    linger times??  I suspect that I don't need to since I'm always doing
  1240.    blocking reads and writes and my own manual "last ditch" efforts to read
  1241.    the net again after a timeout.  I haven't seen any screwups yet, but it's
  1242.    not like my test network is particularly busy... */
  1243. #ifdef WIN32
  1244.   closesocket (fd);
  1245. #else
  1246.   close (fd);
  1247. #endif
  1248.   return (0);
  1249. } /* readwrite */
  1250. /* main :
  1251.    now we pull it all together... */
  1252. main (argc, argv)
  1253.   int argc;
  1254.   char ** argv;
  1255. {
  1256. #ifndef HAVE_GETOPT
  1257.   extern char * optarg;
  1258.   extern int optind, optopt;
  1259. #endif
  1260.   register int x;
  1261.   register char *cp;
  1262.   HINF * gp;
  1263.   HINF * whereto = NULL;
  1264.   HINF * wherefrom = NULL;
  1265.   IA * ouraddr = NULL;
  1266.   IA * themaddr = NULL;
  1267.   USHORT o_lport = 0;
  1268.   USHORT ourport = 0;
  1269.   USHORT loport = 0; /* for scanning stuff */
  1270.   USHORT hiport = 0;
  1271.   USHORT curport = 0;
  1272.   char * randports = NULL;
  1273. #ifdef HAVE_BIND
  1274. /* can *you* say "cc -yaddayadda netcat.c -lresolv -l44bsd" on SunLOSs? */
  1275.   res_init();
  1276. #endif
  1277. /* I was in this barbershop quartet in Skokie IL ... */
  1278. /* round up the usual suspects, i.e. malloc up all the stuff we need */
  1279.   lclend = (SAI *) Hmalloc (sizeof (SA));
  1280.   remend = (SAI *) Hmalloc (sizeof (SA));
  1281.   bigbuf_in = Hmalloc (BIGSIZ);
  1282.   bigbuf_net = Hmalloc (BIGSIZ);
  1283.   ding1 = (fd_set *) Hmalloc (sizeof (fd_set));
  1284.   ding2 = (fd_set *) Hmalloc (sizeof (fd_set));
  1285.   portpoop = (PINF *) Hmalloc (sizeof (PINF));
  1286. #ifdef WIN32
  1287.   setsockopt_c = (char *)malloc(sizeof(char));
  1288.   *setsockopt_c = 1;
  1289. #endif
  1290.   errno = 0;
  1291.   gatesptr = 4;
  1292. /* catch a signal or two for cleanup */
  1293.   signal (SIGINT, catch);
  1294. #ifdef NTFIXTHIS
  1295.   signal (SIGQUIT, catch);
  1296. #endif
  1297.   signal (SIGTERM, catch);
  1298. #ifdef NTFIXTHIS
  1299.   signal (SIGURG, SIG_IGN);
  1300. #endif
  1301. /* if no args given at all, get 'em from stdin and construct an argv. */
  1302.   if (argc == 1) {
  1303.     cp = argv[0];
  1304.     argv = (char **) Hmalloc (128 * sizeof (char *)); /* XXX: 128? */
  1305.     argv[0] = cp; /* leave old prog name intact */
  1306.     cp = Hmalloc (BIGSIZ);
  1307.     argv[1] = cp; /* head of new arg block */
  1308.     fprintf (stderr, "Cmd line: ");
  1309.     fflush (stderr); /* I dont care if it's unbuffered or not! */
  1310.     cp = fgets (cp, BIGSIZ - 8, stdin); /* xxx: causes a big stdin read() */
  1311.     if (! cp)
  1312. bail ("wrong");
  1313.     cp = strchr (argv[1], 'n');
  1314.     if (cp)
  1315.       *cp = '';
  1316.     cp = strchr (argv[1], 'r'); /* look for ^M too */
  1317.     if (cp)
  1318.       *cp = '';
  1319. /* find and stash pointers to remaining new "args" */
  1320.     cp = argv[1];
  1321.     cp++; /* skip past first char */
  1322.     x = 2; /* we know argv 0 and 1 already */
  1323.     for (; *cp != ''; cp++) {
  1324.       if (*cp == ' ') {
  1325. *cp = ''; /* smash all spaces */
  1326. continue;
  1327.       } else {
  1328. if (*(cp-1) == '') {
  1329.   argv[x] = cp;
  1330.   x++;
  1331. }
  1332.       } /* if space */
  1333.     } /* for cp */
  1334.     argc = x;
  1335.   } /* if no args given */
  1336. /* If your shitbox doesn't have getopt, step into the nineties already. */
  1337. /* optarg, optind = next-argv-component [i.e. flag arg]; optopt = last-char */
  1338.   while ((x = getopt (argc, argv, "ae:g:G:hi:lnp:rs:uvw:z")) != EOF) {
  1339. /* Debug (("in go: x now %c, optarg %x optind %d", x, optarg, optind)) */
  1340.     switch (x) {
  1341.       case 'a':
  1342. bail ("all-A-records NIY");
  1343. o_alla++; break;
  1344. #ifdef GAPING_SECURITY_HOLE
  1345.       case 'e': /* prog to exec */
  1346. pr00gie = optarg;
  1347. close (0); /* won't need stdin... */
  1348. break;
  1349. #endif
  1350.       case 'G': /* srcrt gateways pointer val */
  1351. x = atoi (optarg);
  1352. if ((x) && (x == (x & 0x1c))) /* mask off bits of fukt values */
  1353.   gatesptr = x;
  1354. else
  1355.   bail ("invalid hop pointer %d, must be multiple of 4 <= 28", x);
  1356. break;
  1357.       case 'g': /* srcroute hop[s] */
  1358. if (gatesidx > 8)
  1359.   bail ("too many -g hops");
  1360. if (gates == NULL) /* eat this, Billy-boy */
  1361.   gates = (HINF **) Hmalloc (sizeof (HINF *) * 10);
  1362. gp = gethostpoop (optarg, o_nflag);
  1363. if (gp)
  1364.   gates[gatesidx] = gp;
  1365. gatesidx++;
  1366. break;
  1367.       case 'h':
  1368. errno = 0;
  1369. #ifdef HAVE_HELP
  1370. helpme(); /* exits by itself */
  1371. #else
  1372. bail ("no help available, dork -- RTFS");
  1373. #endif
  1374.       case 'i': /* line-interval time */
  1375. /* xxx: maybe want to parse xxx.yyy, create a timeval, and do microtiming via
  1376.    setitimer instead of alarm/sleep.  [is setitimer at all portable?!]
  1377.    also, the interval time only applies to stdin so far -- do we want it to
  1378.    work for the net, too???  probably not */
  1379. o_interval = atoi (optarg) & 0xffff;
  1380. if (! o_interval)
  1381.   bail ("invalid interval time %s", optarg);
  1382. break;
  1383.       case 'l': /* listen mode */
  1384. o_listen++; break;
  1385.       case 'n': /* numeric-only, no DNS lookups */
  1386. o_nflag++; break;
  1387.       case 'p': /* local source port */
  1388. o_lport = getportpoop (optarg, 0);
  1389. if (o_lport == 0)
  1390.   bail ("invalid local port %s", optarg);
  1391. break;
  1392.       case 'r': /* randomize various things */
  1393. o_random++; break;
  1394.       case 's': /* local source address */
  1395. /* do a full lookup [since everything else goes through the same mill],
  1396.    unless -n was previously specified.  In fact, careful placement of -n can
  1397.    be useful, so we'll still pass o_nflag here instead of forcing numeric.  */
  1398. wherefrom = gethostpoop (optarg, o_nflag);
  1399. ouraddr = &wherefrom->iaddrs[0];
  1400. break;
  1401.       case 'u': /* use UDP */
  1402. o_udpmode++; break;
  1403.       case 'v': /* verbose */
  1404. o_verbose++; break;
  1405.       case 'w': /* wait time */
  1406. o_wait = atoi (optarg);
  1407. if (o_wait <= 0)
  1408.   bail ("invalid wait-time %s", optarg);
  1409. timer1 = (struct timeval *) Hmalloc (sizeof (struct timeval));
  1410. timer2 = (struct timeval *) Hmalloc (sizeof (struct timeval));
  1411. timer1->tv_sec = o_wait; /* we need two.  see readwrite()... */
  1412. break;
  1413.       case 'z': /* little or no data xfer */
  1414. o_zero++;
  1415. close (0); /* won't need stdin */
  1416. break;
  1417.       default:
  1418. errno = 0;
  1419. bail ("nc -h for help");
  1420.     } /* switch x */
  1421.   } /* while getopt */
  1422. /* other misc initialization */
  1423. #ifndef WIN32  // Win32 doesn't like to mix file handles and sockets
  1424.   FD_SET (0, ding1); /* stdin *is* initially open */
  1425. #endif
  1426.   if (o_random) {
  1427.     SRAND (time (0));
  1428.     randports = Hmalloc (65536); /* big flag array for ports */
  1429.   }
  1430.   errno = 0;
  1431. /* optind is now index of first non -x arg */
  1432. Debug (("after go: x now %c, optarg %x optind %d", x, optarg, optind))
  1433. /* Debug (("optind up to %d at host-arg %s", optind, argv[optind])) */
  1434. /* gonna only use first addr of host-list, like our IQ was normal; if you wanna
  1435.    get fancy with addresses, look up the list yourself and plug 'em in for now.
  1436.    unless we finally implement -a, that is. */
  1437.   if (argv[optind])
  1438.     whereto = gethostpoop (argv[optind], o_nflag);
  1439.   if (whereto && whereto->iaddrs)
  1440.     themaddr = &whereto->iaddrs[0];
  1441.   if (themaddr)
  1442.     optind++; /* skip past valid host lookup */
  1443. /* Handle listen mode here, and exit afterward.  Only does one connect;
  1444.    this is arguably the right thing to do.  A "persistent listen-and-fork"
  1445.    mode a la inetd has been thought about, but not implemented.  A tiny
  1446.    wrapper script can handle such things... */
  1447.   if (o_listen) {
  1448.     curport = 0; /* rem port *can* be zero here... */
  1449.     if (argv[optind]) { /* any rem-port-args? */
  1450.       curport = getportpoop (argv[optind], 0);
  1451.       if (curport == 0) /* if given, demand correctness */
  1452. bail ("invalid port %s", argv[optind]);
  1453.     } /* if port-arg */
  1454.     netfd = dolisten (themaddr, curport, ouraddr, o_lport);
  1455. /* dolisten does its own connect reporting, so we don't holler anything here */
  1456.     if (netfd > 0) {
  1457. #ifdef GAPING_SECURITY_HOLE
  1458.       if (pr00gie) /* -e given? */
  1459. doexec (netfd);
  1460. #endif /* GAPING_SECURITY_HOLE */
  1461.       x = readwrite (netfd); /* it even works with UDP! */
  1462.       exit (x); /* "pack out yer trash" */
  1463.     } else
  1464.       bail ("no connection");
  1465.   } /* o_listen */
  1466. /* fall thru to outbound connects.  Now we're more picky about args... */
  1467.   if (! themaddr)
  1468.     bail ("no destination");
  1469.   if (argv[optind] == NULL)
  1470.     bail ("no port[s] to connect to");
  1471.   if (argv[optind + 1]) /* look ahead: any more port args given? */
  1472.     Single = 0; /* multi-mode, case A */
  1473.   ourport = o_lport; /* which can be 0 */
  1474. /* everything from here down is treated as as ports and/or ranges thereof, so
  1475.    it's all enclosed in this big ol' argv-parsin' loop.  Any randomization is
  1476.    done within each given *range*, but in separate chunks per each succeeding
  1477.    argument, so we can control the pattern somewhat. */
  1478.   while (argv[optind]) {
  1479.     hiport = loport = 0;
  1480.     cp = strchr (argv[optind], '-'); /* nn-mm range? */
  1481.     if (cp) {
  1482.       *cp = '';
  1483.       cp++;
  1484.       hiport = getportpoop (cp, 0);
  1485.       if (hiport == 0)
  1486. bail ("invalid port %s", cp);
  1487.     } /* if found a dash */
  1488.     loport = getportpoop (argv[optind], 0);
  1489.     if (loport == 0)
  1490.       bail ("invalid port %s", argv[optind]);
  1491.     if (hiport > loport) { /* was it genuinely a range? */
  1492.       Single = 0; /* multi-mode, case B */
  1493.       curport = hiport; /* start high by default */
  1494.       if (o_random) { /* maybe populate the random array */
  1495. loadports (randports, loport, hiport);
  1496. curport = nextport (randports);
  1497.       }
  1498.     } else /* not a range, including args like "25-25" */
  1499.       curport = loport;
  1500. Debug (("Single %d, curport %d", Single, curport))
  1501. /* Now start connecting to these things.  curport is already preloaded. */
  1502.     while (loport <= curport) {
  1503.       if ((! o_lport) && (o_random)) { /* -p overrides random local-port */
  1504. ourport = (RAND() & 0xffff); /* random local-bind -- well above */
  1505. if (ourport < 8192) /* resv and any likely listeners??? */
  1506.   ourport += 8192; /* xxx: may still conflict; use -s? */
  1507.       }
  1508.       curport = getportpoop (NULL, curport);
  1509.       netfd = doconnect (themaddr, curport, ouraddr, ourport);
  1510. Debug (("netfd %d from port %d to port %d", netfd, ourport, curport))
  1511.       if (netfd > 0)
  1512. if (o_zero && o_udpmode) /* if UDP scanning... */
  1513.   netfd = udptest (netfd, themaddr);
  1514.       if (netfd > 0) { /* Yow, are we OPEN YET?! */
  1515. holler ("%s [%s] %d (%s) open",
  1516.   whereto->name, whereto->addrs[0], curport, portpoop->name);
  1517. if (! o_zero)
  1518.   x = readwrite (netfd); /* go shovel shit */
  1519.       } else { /* no netfd... */
  1520. x = 1; /* preload exit status for later */
  1521. /* if we're scanning at a "one -v" verbosity level, don't print refusals.
  1522.    Give it another -v if you want to see everything. */
  1523. #ifdef WIN32
  1524. if ((Single || (o_verbose > 1)) || (h_errno != WSAECONNREFUSED))
  1525. #else
  1526. if ((Single || (o_verbose > 1)) || (errno != ECONNREFUSED))
  1527. #endif
  1528.   holler ("%s [%s] %d (%s)",
  1529.     whereto->name, whereto->addrs[0], curport, portpoop->name);
  1530.       } /* if netfd */
  1531. #ifdef WIN32
  1532.       closesocket (netfd); /* just in case we didn't already */
  1533. #else
  1534.       close (netfd); /* just in case we didn't already */
  1535. #endif
  1536.       if (o_interval)
  1537. sleep (o_interval); /* if -i, delay between ports too */
  1538.       if (o_random)
  1539. curport = nextport (randports);
  1540.       else
  1541. curport--; /* just decrement... */
  1542.     } /* while curport within current range */
  1543.     optind++;
  1544.   } /* while remaining port-args -- end of big argv-ports loop*/
  1545.   errno = 0;
  1546.   if (o_verbose > 1) /* normally we don't care */
  1547.     holler ("sent %d, rcvd %d", wrote_net, wrote_out);
  1548.   if (Single)
  1549.     exit (x); /* give us status on one connection */
  1550.   exit (0); /* otherwise, we're just done */
  1551. } /* main */
  1552. #ifdef HAVE_HELP /* unless we wanna be *really* cryptic */
  1553. /* helpme :
  1554.    the obvious */
  1555. helpme()
  1556. {
  1557.   o_verbose = 1;
  1558.   holler ("
  1559. connect to somewhere: nc [-options] hostname port[s] [ports] ... n
  1560. listen for inbound: nc -l -p port [options] [hostname] [port]n
  1561. options:");
  1562. #ifdef GAPING_SECURITY_HOLE /* needs to be separate holler() */
  1563.   holler ("
  1564. -e prog inbound program to exec [dangerous!!]");
  1565. #endif
  1566.   holler ("
  1567. -g gateway source-routing hop point[s], up to 8n
  1568. -G num source-routing pointer: 4, 8, 12, ...n
  1569. -h this cruftn
  1570. -i secs delay interval for lines sent, ports scannedn
  1571. -l listen mode, for inbound connectsn
  1572. -n numeric-only IP addresses, no DNSn
  1573. -p port local port numbern
  1574. -r randomize local and remote portsn
  1575. -s addr local source addressn
  1576. -u UDP moden
  1577. -v verbose [use twice to be more verbose]n
  1578. -w secs timeout for connects and final net readsn
  1579. -z zero-I/O mode [used for scanning]");
  1580.   bail ("port numbers can be individual or ranges: m-n");
  1581. } /* helpme */
  1582. #endif /* HAVE_HELP */
  1583. /* None genuine without this seal!  _H*/