summaryrefslogtreecommitdiffstats
path: root/eBones
diff options
context:
space:
mode:
authorpst <pst@FreeBSD.org>1995-09-05 19:31:06 +0000
committerpst <pst@FreeBSD.org>1995-09-05 19:31:06 +0000
commit8693020356d8ccb2f64ca15348ec4ae177ce1841 (patch)
treed99de6b03de90550de0a91b6f22917299b6f170d /eBones
parentb68227ec080e9cc7ba0a76e75f607f3709c60040 (diff)
downloadFreeBSD-src-8693020356d8ccb2f64ca15348ec4ae177ce1841.zip
FreeBSD-src-8693020356d8ccb2f64ca15348ec4ae177ce1841.tar.gz
Avoid race condition with telnet options processing (login: prompt lost).
Submitted by: John Capo & Peter Wemm
Diffstat (limited to 'eBones')
-rw-r--r--eBones/libexec/telnetd/telnetd.c29
1 files changed, 7 insertions, 22 deletions
diff --git a/eBones/libexec/telnetd/telnetd.c b/eBones/libexec/telnetd/telnetd.c
index bfed2c2..86efc5b 100644
--- a/eBones/libexec/telnetd/telnetd.c
+++ b/eBones/libexec/telnetd/telnetd.c
@@ -780,11 +780,7 @@ char *hostname;
char host_name[MAXHOSTNAMELEN];
char remote_host_name[MAXHOSTNAMELEN];
-#ifndef convex
-extern void telnet P((int, int));
-#else
extern void telnet P((int, int, char *));
-#endif
/*
* Get a pty, scan input lines.
@@ -875,12 +871,6 @@ doit(who)
level = getterminaltype(user_name);
setenv("TERM", terminaltype ? terminaltype : "network", 1);
- /*
- * Start up the login process on the slave side of the terminal
- */
-#ifndef convex
- startslave(host, level, user_name);
-
#if defined(_SC_CRAY_SECURE_SYS)
if (secflag) {
if (setulvl(dv.dv_actlvl) < 0)
@@ -890,10 +880,8 @@ doit(who)
}
#endif /* _SC_CRAY_SECURE_SYS */
- telnet(net, pty); /* begin server processing */
-#else
- telnet(net, pty, host);
-#endif
+ telnet(net, pty, host); /* begin server process */
+
/*NOTREACHED*/
} /* end of doit */
@@ -917,15 +905,9 @@ Xterm_output(ibufp, obuf, icountp, ocount)
* hand data to telnet receiver finite state machine.
*/
void
-#ifndef convex
-telnet(f, p)
-#else
telnet(f, p, host)
-#endif
int f, p;
-#ifdef convex
char *host;
-#endif
{
int on = 1;
#define TABBUFSIZ 512
@@ -1162,9 +1144,12 @@ telnet(f, p, host)
{sprintf(nfrontp, "td: Entering processing loop\r\n");
nfrontp += strlen(nfrontp);});
-#ifdef convex
+ /*
+ * Startup the login process on the slave side of the terminal
+ * now. We delay this until here to insure option negotiation
+ * is complete.
+ */
startslave(host);
-#endif
nfd = ((f > p) ? f : p) + 1;
for (;;) {
OpenPOWER on IntegriCloud