2004-08-05 16:47:46 +02:00
|
|
|
$NetBSD: patch-ad,v 1.3 2004/08/05 14:47:46 drochner Exp $
|
2002-08-21 08:31:57 +02:00
|
|
|
|
2004-08-05 16:47:46 +02:00
|
|
|
--- netcat.c.orig 2004-08-05 16:17:46.000000000 +0200
|
2002-10-08 16:29:36 +02:00
|
|
|
+++ netcat.c
|
|
|
|
@@ -151,6 +151,7 @@ unsigned char * stage = NULL; /* hexdump
|
2002-08-21 08:31:57 +02:00
|
|
|
|
2002-10-08 16:29:36 +02:00
|
|
|
/* global cmd flags: */
|
|
|
|
USHORT o_alla = 0;
|
|
|
|
+USHORT o_allowbroad = 0;
|
|
|
|
unsigned int o_interval = 0;
|
|
|
|
USHORT o_listen = 0;
|
|
|
|
USHORT o_nflag = 0;
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -160,6 +161,7 @@ USHORT o_udpmode = 0;
|
|
|
|
USHORT o_verbose = 0;
|
|
|
|
unsigned int o_wait = 0;
|
|
|
|
USHORT o_zero = 0;
|
|
|
|
+int o_quit = -1; /* 0 == quit-now; >0 == quit after o_quit seconds */
|
|
|
|
/* o_tn in optional section */
|
|
|
|
|
|
|
|
/* Debug macro: squirt whatever message and sleep a bit so we can see it go
|
|
|
|
@@ -225,6 +227,14 @@ void catch ()
|
|
|
|
bail (" punt!");
|
|
|
|
}
|
|
|
|
|
|
|
|
+/* quit :
|
|
|
|
+ handler for a "-q" timeout (exit 0 instead of 1) */
|
|
|
|
+void quit()
|
|
|
|
+{
|
|
|
|
+ close(netfd);
|
|
|
|
+ exit(0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
/* timeout and other signal handling cruft */
|
|
|
|
void tmtravel ()
|
|
|
|
{
|
|
|
|
@@ -333,6 +343,7 @@ HINF * gethostpoop (name, numeric)
|
2002-10-08 16:29:36 +02:00
|
|
|
struct in_addr iaddr;
|
|
|
|
register HINF * poop = NULL;
|
|
|
|
register int x;
|
|
|
|
+ int rc;
|
2002-08-21 08:31:57 +02:00
|
|
|
|
2002-10-08 16:29:36 +02:00
|
|
|
/* I really want to strangle the twit who dreamed up all these sockaddr and
|
|
|
|
hostent abstractions, and then forced them all to be incompatible with
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -361,9 +372,9 @@ HINF * gethostpoop (name, numeric)
|
2002-10-08 16:29:36 +02:00
|
|
|
bail ("gethostpoop fuxored");
|
|
|
|
strcpy (poop->name, unknown); /* preload it */
|
|
|
|
/* see wzv:workarounds.c for dg/ux return-a-struct inet_addr lossage */
|
|
|
|
- iaddr.s_addr = inet_addr (name);
|
|
|
|
+ rc = inet_aton(name, &iaddr);
|
|
|
|
|
|
|
|
- if (iaddr.s_addr == INADDR_NONE) { /* here's the great split: names... */
|
|
|
|
+ if (rc == 0) { /* here's the great split: names... */
|
|
|
|
if (numeric)
|
|
|
|
bail ("Can't parse %s as an IP address", name);
|
|
|
|
hostent = gethostbyname (name);
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -620,6 +631,13 @@ newskt:
|
2002-10-08 16:29:36 +02:00
|
|
|
rr = setsockopt (nnetfd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof (x));
|
|
|
|
if (rr == -1)
|
|
|
|
holler ("nnetfd reuseaddr failed"); /* ??? */
|
|
|
|
+#ifdef SO_BROADCAST
|
|
|
|
+ if (o_allowbroad) {
|
|
|
|
+ rr = setsockopt (nnetfd, SOL_SOCKET, SO_BROADCAST, &x, sizeof (x));
|
|
|
|
+ if (rr == -1)
|
|
|
|
+ holler ("nnetfd reuseaddr failed"); /* ??? */
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
#ifdef SO_REUSEPORT /* doesnt exist everywhere... */
|
|
|
|
rr = setsockopt (nnetfd, SOL_SOCKET, SO_REUSEPORT, &x, sizeof (x));
|
|
|
|
if (rr == -1)
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -1216,6 +1234,18 @@ Debug (("got %d from the net, errno %d",
|
|
|
|
if (rr <= 0) { /* at end, or fukt, or ... */
|
|
|
|
FD_CLR (0, ding1); /* disable and close stdin */
|
|
|
|
close (0);
|
|
|
|
+ /* if the user asked to exit on EOF, do it */
|
|
|
|
+ if (o_quit == 0) {
|
|
|
|
+ shutdown(netfd, 1);
|
|
|
|
+ close (fd);
|
|
|
|
+ exit (0);
|
|
|
|
+ }
|
|
|
|
+ /* if user asked to die after a while, arrange for it */
|
|
|
|
+ if (o_quit > 0) {
|
|
|
|
+ shutdown(netfd, 1);
|
|
|
|
+ signal (SIGALRM, quit);
|
|
|
|
+ alarm(o_quit);
|
|
|
|
+ }
|
|
|
|
} else {
|
|
|
|
rzleft = rr;
|
|
|
|
zp = bigbuf_in;
|
|
|
|
@@ -1314,10 +1344,6 @@ main (argc, argv)
|
2002-10-08 16:29:36 +02:00
|
|
|
USHORT curport = 0;
|
|
|
|
char * randports = NULL;
|
|
|
|
|
|
|
|
-#ifdef HAVE_BIND
|
|
|
|
-/* can *you* say "cc -yaddayadda netcat.c -lresolv -l44bsd" on SunLOSs? */
|
|
|
|
- res_init();
|
|
|
|
-#endif
|
|
|
|
/* I was in this barbershop quartet in Skokie IL ... */
|
|
|
|
/* round up the usual suspects, i.e. malloc up all the stuff we need */
|
|
|
|
lclend = (SAI *) Hmalloc (sizeof (SA));
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -1354,7 +1380,8 @@ main (argc, argv)
|
|
|
|
argv[1] = cp; /* head of new arg block */
|
|
|
|
fprintf (stderr, "Cmd line: ");
|
|
|
|
fflush (stderr); /* I dont care if it's unbuffered or not! */
|
|
|
|
- insaved = read (0, cp, BIGSIZ); /* we're gonna fake fgets() here */
|
|
|
|
+ insaved = read (0, cp, BIGSIZ-1); /* we're gonna fake fgets() here */
|
|
|
|
+ cp[BIGSIZ-1] = '\0';
|
|
|
|
if (insaved <= 0)
|
|
|
|
bail ("wrong");
|
|
|
|
x = findline (cp, insaved);
|
|
|
|
@@ -1389,12 +1416,14 @@ main (argc, argv)
|
2002-10-08 16:29:36 +02:00
|
|
|
|
|
|
|
/* If your shitbox doesn't have getopt, step into the nineties already. */
|
|
|
|
/* optarg, optind = next-argv-component [i.e. flag arg]; optopt = last-char */
|
|
|
|
- while ((x = getopt (argc, argv, "ae:g:G:hi:lno:p:rs:tuvw:z")) != EOF) {
|
2004-08-05 16:47:46 +02:00
|
|
|
+ while ((x = getopt (argc, argv, "abe:g:G:hi:lno:p:q:rs:tuvw:z")) != EOF) {
|
2002-10-08 16:29:36 +02:00
|
|
|
/* Debug (("in go: x now %c, optarg %x optind %d", x, optarg, optind)) */
|
|
|
|
switch (x) {
|
|
|
|
case 'a':
|
|
|
|
bail ("all-A-records NIY");
|
|
|
|
o_alla++; break;
|
|
|
|
+ case 'b':
|
|
|
|
+ o_allowbroad++; break;
|
|
|
|
#ifdef GAPING_SECURITY_HOLE
|
|
|
|
case 'e': /* prog to exec */
|
|
|
|
pr00gie = optarg;
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -1443,6 +1472,8 @@ main (argc, argv)
|
|
|
|
break;
|
|
|
|
case 'r': /* randomize various things */
|
|
|
|
o_random++; break;
|
|
|
|
+ case 'q': /* quit after stdin does EOF */
|
|
|
|
+ o_quit = atoi(optarg); break;
|
|
|
|
case 's': /* local source address */
|
|
|
|
/* do a full lookup [since everything else goes through the same mill],
|
|
|
|
unless -n was previously specified. In fact, careful placement of -n can
|
|
|
|
@@ -1642,6 +1673,7 @@ options:");
|
2002-10-08 16:29:36 +02:00
|
|
|
-e prog program to exec after connect [dangerous!!]");
|
|
|
|
#endif
|
|
|
|
holler ("\
|
|
|
|
+ -b allow broadcasts\n\
|
|
|
|
-g gateway source-routing hop point[s], up to 8\n\
|
|
|
|
-G num source-routing pointer: 4, 8, 12, ...\n\
|
|
|
|
-h this cruft\n\
|
2004-08-05 16:47:46 +02:00
|
|
|
@@ -1651,6 +1683,7 @@ options:");
|
|
|
|
-o file hex dump of traffic\n\
|
|
|
|
-p port local port number\n\
|
|
|
|
-r randomize local and remote ports\n\
|
|
|
|
+ -q secs quit after EOF on stdin and delay of secs\n\
|
|
|
|
-s addr local source address");
|
|
|
|
#ifdef TELNET
|
|
|
|
holler ("\
|