1/*
2 * Copyright (c) 1989, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by the University of
16 *	California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 *    may be used to endorse or promote products derived from this software
19 *    without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#if 0
35#ifndef lint
36static const char sccsid[] = "@(#)telnetd.c	8.4 (Berkeley) 5/30/95";
37#endif
38#endif
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD$");
41
42#include "telnetd.h"
43#include "pathnames.h"
44
45#include <sys/mman.h>
46#include <err.h>
47#include <libutil.h>
48#include <paths.h>
49#include <termcap.h>
50
51#include <arpa/inet.h>
52
53#ifdef	AUTHENTICATION
54#include <libtelnet/auth.h>
55int	auth_level = 0;
56#endif
57#ifdef	ENCRYPTION
58#include <libtelnet/encrypt.h>
59#endif
60#include <libtelnet/misc.h>
61
62char	remote_hostname[MAXHOSTNAMELEN];
63size_t	utmp_len = sizeof(remote_hostname) - 1;
64int	registerd_host_only = 0;
65
66
67/*
68 * I/O data buffers,
69 * pointers, and counters.
70 */
71char	ptyibuf[BUFSIZ], *ptyip = ptyibuf;
72char	ptyibuf2[BUFSIZ];
73
74int readstream(int, char *, int);
75void doit(struct sockaddr *);
76int terminaltypeok(char *);
77
78int	hostinfo = 1;			/* do we print login banner? */
79
80static int debug = 0;
81int keepalive = 1;
82const char *altlogin;
83
84void doit(struct sockaddr *);
85int terminaltypeok(char *);
86void startslave(char *, int, char *);
87extern void usage(void);
88static void _gettermname(void);
89
90/*
91 * The string to pass to getopt().  We do it this way so
92 * that only the actual options that we support will be
93 * passed off to getopt().
94 */
95char valid_opts[] = {
96	'd', ':', 'h', 'k', 'n', 'p', ':', 'S', ':', 'u', ':', 'U',
97	'4', '6',
98#ifdef	AUTHENTICATION
99	'a', ':', 'X', ':',
100#endif
101#ifdef BFTPDAEMON
102	'B',
103#endif
104#ifdef DIAGNOSTICS
105	'D', ':',
106#endif
107#ifdef	ENCRYPTION
108	'e', ':',
109#endif
110#ifdef	LINEMODE
111	'l',
112#endif
113	'\0'
114};
115
116int family = AF_INET;
117
118#ifndef	MAXHOSTNAMELEN
119#define	MAXHOSTNAMELEN 256
120#endif	/* MAXHOSTNAMELEN */
121
122char *hostname;
123char host_name[MAXHOSTNAMELEN];
124
125extern void telnet(int, int, char *);
126
127int level;
128char user_name[256];
129
130int
131main(int argc, char *argv[])
132{
133	u_long ultmp;
134	struct sockaddr_storage from;
135	int on = 1, fromlen;
136	int ch;
137#if	defined(IPPROTO_IP) && defined(IP_TOS)
138	int tos = -1;
139#endif
140	char *ep;
141
142	pfrontp = pbackp = ptyobuf;
143	netip = netibuf;
144	nfrontp = nbackp = netobuf;
145#ifdef	ENCRYPTION
146	nclearto = 0;
147#endif	/* ENCRYPTION */
148
149	/*
150	 * This initialization causes linemode to default to a configuration
151	 * that works on all telnet clients, including the FreeBSD client.
152	 * This is not quite the same as the telnet client issuing a "mode
153	 * character" command, but has most of the same benefits, and is
154	 * preferable since some clients (like usofts) don't have the
155	 * mode character command anyway and linemode breaks things.
156	 * The most notable symptom of fix is that csh "set filec" operations
157	 * like <ESC> (filename completion) and ^D (choices) keys now work
158	 * in telnet sessions and can be used more than once on the same line.
159	 * CR/LF handling is also corrected in some termio modes.  This
160	 * change resolves problem reports bin/771 and bin/1037.
161	 */
162
163	linemode=1;	/*Default to mode that works on bulk of clients*/
164
165	while ((ch = getopt(argc, argv, valid_opts)) != -1) {
166		switch(ch) {
167
168#ifdef	AUTHENTICATION
169		case 'a':
170			/*
171			 * Check for required authentication level
172			 */
173			if (strcmp(optarg, "debug") == 0) {
174				extern int auth_debug_mode;
175				auth_debug_mode = 1;
176			} else if (strcasecmp(optarg, "none") == 0) {
177				auth_level = 0;
178			} else if (strcasecmp(optarg, "other") == 0) {
179				auth_level = AUTH_OTHER;
180			} else if (strcasecmp(optarg, "user") == 0) {
181				auth_level = AUTH_USER;
182			} else if (strcasecmp(optarg, "valid") == 0) {
183				auth_level = AUTH_VALID;
184			} else if (strcasecmp(optarg, "off") == 0) {
185				/*
186				 * This hack turns off authentication
187				 */
188				auth_level = -1;
189			} else {
190				warnx("unknown authorization level for -a");
191			}
192			break;
193#endif	/* AUTHENTICATION */
194
195#ifdef BFTPDAEMON
196		case 'B':
197			bftpd++;
198			break;
199#endif /* BFTPDAEMON */
200
201		case 'd':
202			if (strcmp(optarg, "ebug") == 0) {
203				debug++;
204				break;
205			}
206			usage();
207			/* NOTREACHED */
208			break;
209
210#ifdef DIAGNOSTICS
211		case 'D':
212			/*
213			 * Check for desired diagnostics capabilities.
214			 */
215			if (!strcmp(optarg, "report")) {
216				diagnostic |= TD_REPORT|TD_OPTIONS;
217			} else if (!strcmp(optarg, "exercise")) {
218				diagnostic |= TD_EXERCISE;
219			} else if (!strcmp(optarg, "netdata")) {
220				diagnostic |= TD_NETDATA;
221			} else if (!strcmp(optarg, "ptydata")) {
222				diagnostic |= TD_PTYDATA;
223			} else if (!strcmp(optarg, "options")) {
224				diagnostic |= TD_OPTIONS;
225			} else {
226				usage();
227				/* NOT REACHED */
228			}
229			break;
230#endif /* DIAGNOSTICS */
231
232#ifdef	ENCRYPTION
233		case 'e':
234			if (strcmp(optarg, "debug") == 0) {
235				extern int encrypt_debug_mode;
236				encrypt_debug_mode = 1;
237				break;
238			}
239			usage();
240			/* NOTREACHED */
241			break;
242#endif	/* ENCRYPTION */
243
244		case 'h':
245			hostinfo = 0;
246			break;
247
248#ifdef	LINEMODE
249		case 'l':
250			alwayslinemode = 1;
251			break;
252#endif	/* LINEMODE */
253
254		case 'k':
255#if	defined(LINEMODE) && defined(KLUDGELINEMODE)
256			lmodetype = NO_AUTOKLUDGE;
257#else
258			/* ignore -k option if built without kludge linemode */
259#endif	/* defined(LINEMODE) && defined(KLUDGELINEMODE) */
260			break;
261
262		case 'n':
263			keepalive = 0;
264			break;
265
266		case 'p':
267			altlogin = optarg;
268			break;
269
270		case 'S':
271#ifdef	HAS_GETTOS
272			if ((tos = parsetos(optarg, "tcp")) < 0)
273				warnx("%s%s%s",
274					"bad TOS argument '", optarg,
275					"'; will try to use default TOS");
276#else
277#define	MAXTOS	255
278			ultmp = strtoul(optarg, &ep, 0);
279			if (*ep || ep == optarg || ultmp > MAXTOS)
280				warnx("%s%s%s",
281					"bad TOS argument '", optarg,
282					"'; will try to use default TOS");
283			else
284				tos = ultmp;
285#endif
286			break;
287
288		case 'u':
289			utmp_len = (size_t)atoi(optarg);
290			if (utmp_len >= sizeof(remote_hostname))
291				utmp_len = sizeof(remote_hostname) - 1;
292			break;
293
294		case 'U':
295			registerd_host_only = 1;
296			break;
297
298#ifdef	AUTHENTICATION
299		case 'X':
300			/*
301			 * Check for invalid authentication types
302			 */
303			auth_disable_name(optarg);
304			break;
305#endif	/* AUTHENTICATION */
306
307		case '4':
308			family = AF_INET;
309			break;
310
311#ifdef INET6
312		case '6':
313			family = AF_INET6;
314			break;
315#endif
316
317		default:
318			warnx("%c: unknown option", ch);
319			/* FALLTHROUGH */
320		case '?':
321			usage();
322			/* NOTREACHED */
323		}
324	}
325
326	argc -= optind;
327	argv += optind;
328
329	if (debug) {
330	    int s, ns, foo, error;
331	    const char *service = "telnet";
332	    struct addrinfo hints, *res;
333
334	    if (argc > 1) {
335		usage();
336		/* NOT REACHED */
337	    } else if (argc == 1)
338		service = *argv;
339
340	    memset(&hints, 0, sizeof(hints));
341	    hints.ai_flags = AI_PASSIVE;
342	    hints.ai_family = family;
343	    hints.ai_socktype = SOCK_STREAM;
344	    hints.ai_protocol = 0;
345	    error = getaddrinfo(NULL, service, &hints, &res);
346
347	    if (error) {
348		errx(1, "tcp/%s: %s\n", service, gai_strerror(error));
349		if (error == EAI_SYSTEM)
350		    errx(1, "tcp/%s: %s\n", service, strerror(errno));
351		usage();
352	    }
353
354	    s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
355	    if (s < 0)
356		    err(1, "socket");
357	    (void) setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
358				(char *)&on, sizeof(on));
359	    if (debug > 1)
360	        (void) setsockopt(s, SOL_SOCKET, SO_DEBUG,
361				(char *)&on, sizeof(on));
362	    if (bind(s, res->ai_addr, res->ai_addrlen) < 0)
363		err(1, "bind");
364	    if (listen(s, 1) < 0)
365		err(1, "listen");
366	    foo = res->ai_addrlen;
367	    ns = accept(s, res->ai_addr, &foo);
368	    if (ns < 0)
369		err(1, "accept");
370	    (void) setsockopt(ns, SOL_SOCKET, SO_DEBUG,
371				(char *)&on, sizeof(on));
372	    (void) dup2(ns, 0);
373	    (void) close(ns);
374	    (void) close(s);
375#ifdef convex
376	} else if (argc == 1) {
377		; /* VOID*/		/* Just ignore the host/port name */
378#endif
379	} else if (argc > 0) {
380		usage();
381		/* NOT REACHED */
382	}
383
384	openlog("telnetd", LOG_PID | LOG_ODELAY, LOG_DAEMON);
385	fromlen = sizeof (from);
386	if (getpeername(0, (struct sockaddr *)&from, &fromlen) < 0) {
387		warn("getpeername");
388		_exit(1);
389	}
390	if (keepalive &&
391	    setsockopt(0, SOL_SOCKET, SO_KEEPALIVE,
392			(char *)&on, sizeof (on)) < 0) {
393		syslog(LOG_WARNING, "setsockopt (SO_KEEPALIVE): %m");
394	}
395
396#if	defined(IPPROTO_IP) && defined(IP_TOS)
397	if (from.ss_family == AF_INET) {
398# if	defined(HAS_GETTOS)
399		struct tosent *tp;
400		if (tos < 0 && (tp = gettosbyname("telnet", "tcp")))
401			tos = tp->t_tos;
402# endif
403		if (tos < 0)
404			tos = 020;	/* Low Delay bit */
405		if (tos
406		   && (setsockopt(0, IPPROTO_IP, IP_TOS,
407				  (char *)&tos, sizeof(tos)) < 0)
408		   && (errno != ENOPROTOOPT) )
409			syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
410	}
411#endif	/* defined(IPPROTO_IP) && defined(IP_TOS) */
412	net = 0;
413	doit((struct sockaddr *)&from);
414	/* NOTREACHED */
415	return(0);
416}  /* end of main */
417
418	void
419usage()
420{
421	fprintf(stderr, "usage: telnetd");
422#ifdef	AUTHENTICATION
423	fprintf(stderr,
424	    " [-4] [-6] [-a (debug|other|user|valid|off|none)]\n\t");
425#endif
426#ifdef BFTPDAEMON
427	fprintf(stderr, " [-B]");
428#endif
429	fprintf(stderr, " [-debug]");
430#ifdef DIAGNOSTICS
431	fprintf(stderr, " [-D (options|report|exercise|netdata|ptydata)]\n\t");
432#endif
433#ifdef	AUTHENTICATION
434	fprintf(stderr, " [-edebug]");
435#endif
436	fprintf(stderr, " [-h]");
437#if	defined(LINEMODE) && defined(KLUDGELINEMODE)
438	fprintf(stderr, " [-k]");
439#endif
440#ifdef LINEMODE
441	fprintf(stderr, " [-l]");
442#endif
443	fprintf(stderr, " [-n]");
444	fprintf(stderr, "\n\t");
445#ifdef	HAS_GETTOS
446	fprintf(stderr, " [-S tos]");
447#endif
448#ifdef	AUTHENTICATION
449	fprintf(stderr, " [-X auth-type]");
450#endif
451	fprintf(stderr, " [-u utmp_hostname_length] [-U]");
452	fprintf(stderr, " [port]\n");
453	exit(1);
454}
455
456/*
457 * getterminaltype
458 *
459 *	Ask the other end to send along its terminal type and speed.
460 * Output is the variable terminaltype filled in.
461 */
462static unsigned char ttytype_sbbuf[] = {
463	IAC, SB, TELOPT_TTYPE, TELQUAL_SEND, IAC, SE
464};
465
466
467#ifndef	AUTHENTICATION
468#define undef2 __unused
469#else
470#define undef2
471#endif
472
473static int
474getterminaltype(char *name undef2)
475{
476    int retval = -1;
477
478    settimer(baseline);
479#ifdef	AUTHENTICATION
480    /*
481     * Handle the Authentication option before we do anything else.
482     */
483    if (auth_level >= 0) {
484	send_do(TELOPT_AUTHENTICATION, 1);
485	while (his_will_wont_is_changing(TELOPT_AUTHENTICATION))
486	    ttloop();
487	if (his_state_is_will(TELOPT_AUTHENTICATION)) {
488	    retval = auth_wait(name);
489	}
490    }
491#endif
492
493#ifdef	ENCRYPTION
494    send_will(TELOPT_ENCRYPT, 1);
495#endif	/* ENCRYPTION */
496    send_do(TELOPT_TTYPE, 1);
497    send_do(TELOPT_TSPEED, 1);
498    send_do(TELOPT_XDISPLOC, 1);
499    send_do(TELOPT_NEW_ENVIRON, 1);
500    send_do(TELOPT_OLD_ENVIRON, 1);
501    while (
502#ifdef	ENCRYPTION
503	   his_do_dont_is_changing(TELOPT_ENCRYPT) ||
504#endif	/* ENCRYPTION */
505	   his_will_wont_is_changing(TELOPT_TTYPE) ||
506	   his_will_wont_is_changing(TELOPT_TSPEED) ||
507	   his_will_wont_is_changing(TELOPT_XDISPLOC) ||
508	   his_will_wont_is_changing(TELOPT_NEW_ENVIRON) ||
509	   his_will_wont_is_changing(TELOPT_OLD_ENVIRON)) {
510	ttloop();
511    }
512#ifdef	ENCRYPTION
513    /*
514     * Wait for the negotiation of what type of encryption we can
515     * send with.  If autoencrypt is not set, this will just return.
516     */
517    if (his_state_is_will(TELOPT_ENCRYPT)) {
518	encrypt_wait();
519    }
520#endif	/* ENCRYPTION */
521    if (his_state_is_will(TELOPT_TSPEED)) {
522	static unsigned char sb[] =
523			{ IAC, SB, TELOPT_TSPEED, TELQUAL_SEND, IAC, SE };
524
525	output_datalen(sb, sizeof sb);
526	DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
527    }
528    if (his_state_is_will(TELOPT_XDISPLOC)) {
529	static unsigned char sb[] =
530			{ IAC, SB, TELOPT_XDISPLOC, TELQUAL_SEND, IAC, SE };
531
532	output_datalen(sb, sizeof sb);
533	DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
534    }
535    if (his_state_is_will(TELOPT_NEW_ENVIRON)) {
536	static unsigned char sb[] =
537			{ IAC, SB, TELOPT_NEW_ENVIRON, TELQUAL_SEND, IAC, SE };
538
539	output_datalen(sb, sizeof sb);
540	DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
541    }
542    else if (his_state_is_will(TELOPT_OLD_ENVIRON)) {
543	static unsigned char sb[] =
544			{ IAC, SB, TELOPT_OLD_ENVIRON, TELQUAL_SEND, IAC, SE };
545
546	output_datalen(sb, sizeof sb);
547	DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
548    }
549    if (his_state_is_will(TELOPT_TTYPE)) {
550
551	output_datalen(ttytype_sbbuf, sizeof ttytype_sbbuf);
552	DIAG(TD_OPTIONS, printsub('>', ttytype_sbbuf + 2,
553					sizeof ttytype_sbbuf - 2););
554    }
555    if (his_state_is_will(TELOPT_TSPEED)) {
556	while (sequenceIs(tspeedsubopt, baseline))
557	    ttloop();
558    }
559    if (his_state_is_will(TELOPT_XDISPLOC)) {
560	while (sequenceIs(xdisplocsubopt, baseline))
561	    ttloop();
562    }
563    if (his_state_is_will(TELOPT_NEW_ENVIRON)) {
564	while (sequenceIs(environsubopt, baseline))
565	    ttloop();
566    }
567    if (his_state_is_will(TELOPT_OLD_ENVIRON)) {
568	while (sequenceIs(oenvironsubopt, baseline))
569	    ttloop();
570    }
571    if (his_state_is_will(TELOPT_TTYPE)) {
572	char first[256], last[256];
573
574	while (sequenceIs(ttypesubopt, baseline))
575	    ttloop();
576
577	/*
578	 * If the other side has already disabled the option, then
579	 * we have to just go with what we (might) have already gotten.
580	 */
581	if (his_state_is_will(TELOPT_TTYPE) && !terminaltypeok(terminaltype)) {
582	    (void) strncpy(first, terminaltype, sizeof(first)-1);
583	    first[sizeof(first)-1] = '\0';
584	    for(;;) {
585		/*
586		 * Save the unknown name, and request the next name.
587		 */
588		(void) strncpy(last, terminaltype, sizeof(last)-1);
589		last[sizeof(last)-1] = '\0';
590		_gettermname();
591		if (terminaltypeok(terminaltype))
592		    break;
593		if ((strncmp(last, terminaltype, sizeof(last)) == 0) ||
594		    his_state_is_wont(TELOPT_TTYPE)) {
595		    /*
596		     * We've hit the end.  If this is the same as
597		     * the first name, just go with it.
598		     */
599		    if (strncmp(first, terminaltype, sizeof(first)) == 0)
600			break;
601		    /*
602		     * Get the terminal name one more time, so that
603		     * RFC1091 compliant telnets will cycle back to
604		     * the start of the list.
605		     */
606		     _gettermname();
607		    if (strncmp(first, terminaltype, sizeof(first)) != 0) {
608			(void) strncpy(terminaltype, first, sizeof(terminaltype)-1);
609			terminaltype[sizeof(terminaltype)-1] = '\0';
610		    }
611		    break;
612		}
613	    }
614	}
615    }
616    return(retval);
617}  /* end of getterminaltype */
618
619static void
620_gettermname(void)
621{
622    /*
623     * If the client turned off the option,
624     * we can't send another request, so we
625     * just return.
626     */
627    if (his_state_is_wont(TELOPT_TTYPE))
628	return;
629    settimer(baseline);
630    output_datalen(ttytype_sbbuf, sizeof ttytype_sbbuf);
631    DIAG(TD_OPTIONS, printsub('>', ttytype_sbbuf + 2,
632					sizeof ttytype_sbbuf - 2););
633    while (sequenceIs(ttypesubopt, baseline))
634	ttloop();
635}
636
637int
638terminaltypeok(char *s)
639{
640    char buf[1024];
641
642    if (terminaltype == NULL)
643	return(1);
644
645    /*
646     * tgetent() will return 1 if the type is known, and
647     * 0 if it is not known.  If it returns -1, it couldn't
648     * open the database.  But if we can't open the database,
649     * it won't help to say we failed, because we won't be
650     * able to verify anything else.  So, we treat -1 like 1.
651     */
652    if (tgetent(buf, s) == 0)
653	return(0);
654    return(1);
655}
656
657/*
658 * Get a pty, scan input lines.
659 */
660void
661doit(struct sockaddr *who)
662{
663	int err_; /* XXX */
664	int ptynum;
665
666	/*
667	 * Find an available pty to use.
668	 */
669#ifndef	convex
670	pty = getpty(&ptynum);
671	if (pty < 0)
672		fatal(net, "All network ports in use");
673#else
674	for (;;) {
675		char *lp;
676
677		if ((lp = getpty()) == NULL)
678			fatal(net, "Out of ptys");
679
680		if ((pty = open(lp, 2)) >= 0) {
681			strlcpy(line,lp,sizeof(line));
682			line[5] = 't';
683			break;
684		}
685	}
686#endif
687
688	/* get name of connected client */
689	if (realhostname_sa(remote_hostname, sizeof(remote_hostname) - 1,
690	    who, who->sa_len) == HOSTNAME_INVALIDADDR && registerd_host_only)
691		fatal(net, "Couldn't resolve your address into a host name.\r\n\
692	Please contact your net administrator");
693	remote_hostname[sizeof(remote_hostname) - 1] = '\0';
694
695	if (!isdigit(remote_hostname[0]) && strlen(remote_hostname) > utmp_len)
696		err_ = getnameinfo(who, who->sa_len, remote_hostname,
697				  sizeof(remote_hostname), NULL, 0,
698				  NI_NUMERICHOST);
699		/* XXX: do 'err_' check */
700
701	(void) gethostname(host_name, sizeof(host_name) - 1);
702	host_name[sizeof(host_name) - 1] = '\0';
703	hostname = host_name;
704
705#ifdef	AUTHENTICATION
706#ifdef	ENCRYPTION
707/* The above #ifdefs should actually be "or"'ed, not "and"'ed.
708 * This is a byproduct of needing "#ifdef" and not "#if defined()"
709 * for unifdef. XXX MarkM
710 */
711	auth_encrypt_init(hostname, remote_hostname, "TELNETD", 1);
712#endif
713#endif
714
715	init_env();
716	/*
717	 * get terminal type.
718	 */
719	*user_name = 0;
720	level = getterminaltype(user_name);
721	setenv("TERM", terminaltype ? terminaltype : "network", 1);
722
723	telnet(net, pty, remote_hostname);	/* begin server process */
724
725	/*NOTREACHED*/
726}  /* end of doit */
727
728/*
729 * Main loop.  Select from pty and network, and
730 * hand data to telnet receiver finite state machine.
731 */
732void
733telnet(int f, int p, char *host)
734{
735	int on = 1;
736#define	TABBUFSIZ	512
737	char	defent[TABBUFSIZ];
738	char	defstrs[TABBUFSIZ];
739#undef	TABBUFSIZ
740	char *HE;
741	char *HN;
742	char *IM;
743	int nfd;
744
745	/*
746	 * Initialize the slc mapping table.
747	 */
748	get_slc_defaults();
749
750	/*
751	 * Do some tests where it is desireable to wait for a response.
752	 * Rather than doing them slowly, one at a time, do them all
753	 * at once.
754	 */
755	if (my_state_is_wont(TELOPT_SGA))
756		send_will(TELOPT_SGA, 1);
757	/*
758	 * Is the client side a 4.2 (NOT 4.3) system?  We need to know this
759	 * because 4.2 clients are unable to deal with TCP urgent data.
760	 *
761	 * To find out, we send out a "DO ECHO".  If the remote system
762	 * answers "WILL ECHO" it is probably a 4.2 client, and we note
763	 * that fact ("WILL ECHO" ==> that the client will echo what
764	 * WE, the server, sends it; it does NOT mean that the client will
765	 * echo the terminal input).
766	 */
767	send_do(TELOPT_ECHO, 1);
768
769#ifdef	LINEMODE
770	if (his_state_is_wont(TELOPT_LINEMODE)) {
771		/* Query the peer for linemode support by trying to negotiate
772		 * the linemode option.
773		 */
774		linemode = 0;
775		editmode = 0;
776		send_do(TELOPT_LINEMODE, 1);  /* send do linemode */
777	}
778#endif	/* LINEMODE */
779
780	/*
781	 * Send along a couple of other options that we wish to negotiate.
782	 */
783	send_do(TELOPT_NAWS, 1);
784	send_will(TELOPT_STATUS, 1);
785	flowmode = 1;		/* default flow control state */
786	restartany = -1;	/* uninitialized... */
787	send_do(TELOPT_LFLOW, 1);
788
789	/*
790	 * Spin, waiting for a response from the DO ECHO.  However,
791	 * some REALLY DUMB telnets out there might not respond
792	 * to the DO ECHO.  So, we spin looking for NAWS, (most dumb
793	 * telnets so far seem to respond with WONT for a DO that
794	 * they don't understand...) because by the time we get the
795	 * response, it will already have processed the DO ECHO.
796	 * Kludge upon kludge.
797	 */
798	while (his_will_wont_is_changing(TELOPT_NAWS))
799		ttloop();
800
801	/*
802	 * But...
803	 * The client might have sent a WILL NAWS as part of its
804	 * startup code; if so, we'll be here before we get the
805	 * response to the DO ECHO.  We'll make the assumption
806	 * that any implementation that understands about NAWS
807	 * is a modern enough implementation that it will respond
808	 * to our DO ECHO request; hence we'll do another spin
809	 * waiting for the ECHO option to settle down, which is
810	 * what we wanted to do in the first place...
811	 */
812	if (his_want_state_is_will(TELOPT_ECHO) &&
813	    his_state_is_will(TELOPT_NAWS)) {
814		while (his_will_wont_is_changing(TELOPT_ECHO))
815			ttloop();
816	}
817	/*
818	 * On the off chance that the telnet client is broken and does not
819	 * respond to the DO ECHO we sent, (after all, we did send the
820	 * DO NAWS negotiation after the DO ECHO, and we won't get here
821	 * until a response to the DO NAWS comes back) simulate the
822	 * receipt of a will echo.  This will also send a WONT ECHO
823	 * to the client, since we assume that the client failed to
824	 * respond because it believes that it is already in DO ECHO
825	 * mode, which we do not want.
826	 */
827	if (his_want_state_is_will(TELOPT_ECHO)) {
828		DIAG(TD_OPTIONS, output_data("td: simulating recv\r\n"));
829		willoption(TELOPT_ECHO);
830	}
831
832	/*
833	 * Finally, to clean things up, we turn on our echo.  This
834	 * will break stupid 4.2 telnets out of local terminal echo.
835	 */
836
837	if (my_state_is_wont(TELOPT_ECHO))
838		send_will(TELOPT_ECHO, 1);
839
840	/*
841	 * Turn on packet mode
842	 */
843	(void) ioctl(p, TIOCPKT, (char *)&on);
844
845#if	defined(LINEMODE) && defined(KLUDGELINEMODE)
846	/*
847	 * Continuing line mode support.  If client does not support
848	 * real linemode, attempt to negotiate kludge linemode by sending
849	 * the do timing mark sequence.
850	 */
851	if (lmodetype < REAL_LINEMODE)
852		send_do(TELOPT_TM, 1);
853#endif	/* defined(LINEMODE) && defined(KLUDGELINEMODE) */
854
855	/*
856	 * Call telrcv() once to pick up anything received during
857	 * terminal type negotiation, 4.2/4.3 determination, and
858	 * linemode negotiation.
859	 */
860	telrcv();
861
862	(void) ioctl(f, FIONBIO, (char *)&on);
863	(void) ioctl(p, FIONBIO, (char *)&on);
864
865#if	defined(SO_OOBINLINE)
866	(void) setsockopt(net, SOL_SOCKET, SO_OOBINLINE,
867				(char *)&on, sizeof on);
868#endif	/* defined(SO_OOBINLINE) */
869
870#ifdef	SIGTSTP
871	(void) signal(SIGTSTP, SIG_IGN);
872#endif
873#ifdef	SIGTTOU
874	/*
875	 * Ignoring SIGTTOU keeps the kernel from blocking us
876	 * in ttioct() in /sys/tty.c.
877	 */
878	(void) signal(SIGTTOU, SIG_IGN);
879#endif
880
881	(void) signal(SIGCHLD, cleanup);
882
883#ifdef  TIOCNOTTY
884	{
885		int t;
886		t = open(_PATH_TTY, O_RDWR);
887		if (t >= 0) {
888			(void) ioctl(t, TIOCNOTTY, (char *)0);
889			(void) close(t);
890		}
891	}
892#endif
893
894	/*
895	 * Show banner that getty never gave.
896	 *
897	 * We put the banner in the pty input buffer.  This way, it
898	 * gets carriage return null processing, etc., just like all
899	 * other pty --> client data.
900	 */
901
902	if (getent(defent, "default") == 1) {
903		char *cp=defstrs;
904
905		HE = Getstr("he", &cp);
906		HN = Getstr("hn", &cp);
907		IM = Getstr("im", &cp);
908		if (HN && *HN)
909			(void) strlcpy(host_name, HN, sizeof(host_name));
910		if (IM == 0)
911			IM = strdup("");
912	} else {
913		IM = strdup(DEFAULT_IM);
914		HE = 0;
915	}
916	edithost(HE, host_name);
917	if (hostinfo && *IM)
918		putf(IM, ptyibuf2);
919
920	if (pcc)
921		(void) strncat(ptyibuf2, ptyip, pcc+1);
922	ptyip = ptyibuf2;
923	pcc = strlen(ptyip);
924#ifdef	LINEMODE
925	/*
926	 * Last check to make sure all our states are correct.
927	 */
928	init_termbuf();
929	localstat();
930#endif	/* LINEMODE */
931
932	DIAG(TD_REPORT, output_data("td: Entering processing loop\r\n"));
933
934	/*
935	 * Startup the login process on the slave side of the terminal
936	 * now.  We delay this until here to insure option negotiation
937	 * is complete.
938	 */
939	startslave(host, level, user_name);
940
941	nfd = ((f > p) ? f : p) + 1;
942	for (;;) {
943		fd_set ibits, obits, xbits;
944		int c;
945
946		if (ncc < 0 && pcc < 0)
947			break;
948
949		FD_ZERO(&ibits);
950		FD_ZERO(&obits);
951		FD_ZERO(&xbits);
952		/*
953		 * Never look for input if there's still
954		 * stuff in the corresponding output buffer
955		 */
956		if (nfrontp - nbackp || pcc > 0) {
957			FD_SET(f, &obits);
958		} else {
959			FD_SET(p, &ibits);
960		}
961		if (pfrontp - pbackp || ncc > 0) {
962			FD_SET(p, &obits);
963		} else {
964			FD_SET(f, &ibits);
965		}
966		if (!SYNCHing) {
967			FD_SET(f, &xbits);
968		}
969		if ((c = select(nfd, &ibits, &obits, &xbits,
970						(struct timeval *)0)) < 1) {
971			if (c == -1) {
972				if (errno == EINTR) {
973					continue;
974				}
975			}
976			sleep(5);
977			continue;
978		}
979
980		/*
981		 * Any urgent data?
982		 */
983		if (FD_ISSET(net, &xbits)) {
984		    SYNCHing = 1;
985		}
986
987		/*
988		 * Something to read from the network...
989		 */
990		if (FD_ISSET(net, &ibits)) {
991#if	!defined(SO_OOBINLINE)
992			/*
993			 * In 4.2 (and 4.3 beta) systems, the
994			 * OOB indication and data handling in the kernel
995			 * is such that if two separate TCP Urgent requests
996			 * come in, one byte of TCP data will be overlaid.
997			 * This is fatal for Telnet, but we try to live
998			 * with it.
999			 *
1000			 * In addition, in 4.2 (and...), a special protocol
1001			 * is needed to pick up the TCP Urgent data in
1002			 * the correct sequence.
1003			 *
1004			 * What we do is:  if we think we are in urgent
1005			 * mode, we look to see if we are "at the mark".
1006			 * If we are, we do an OOB receive.  If we run
1007			 * this twice, we will do the OOB receive twice,
1008			 * but the second will fail, since the second
1009			 * time we were "at the mark", but there wasn't
1010			 * any data there (the kernel doesn't reset
1011			 * "at the mark" until we do a normal read).
1012			 * Once we've read the OOB data, we go ahead
1013			 * and do normal reads.
1014			 *
1015			 * There is also another problem, which is that
1016			 * since the OOB byte we read doesn't put us
1017			 * out of OOB state, and since that byte is most
1018			 * likely the TELNET DM (data mark), we would
1019			 * stay in the TELNET SYNCH (SYNCHing) state.
1020			 * So, clocks to the rescue.  If we've "just"
1021			 * received a DM, then we test for the
1022			 * presence of OOB data when the receive OOB
1023			 * fails (and AFTER we did the normal mode read
1024			 * to clear "at the mark").
1025			 */
1026		    if (SYNCHing) {
1027			int atmark;
1028
1029			(void) ioctl(net, SIOCATMARK, (char *)&atmark);
1030			if (atmark) {
1031			    ncc = recv(net, netibuf, sizeof (netibuf), MSG_OOB);
1032			    if ((ncc == -1) && (errno == EINVAL)) {
1033				ncc = read(net, netibuf, sizeof (netibuf));
1034				if (sequenceIs(didnetreceive, gotDM)) {
1035				    SYNCHing = stilloob(net);
1036				}
1037			    }
1038			} else {
1039			    ncc = read(net, netibuf, sizeof (netibuf));
1040			}
1041		    } else {
1042			ncc = read(net, netibuf, sizeof (netibuf));
1043		    }
1044		    settimer(didnetreceive);
1045#else	/* !defined(SO_OOBINLINE)) */
1046		    ncc = read(net, netibuf, sizeof (netibuf));
1047#endif	/* !defined(SO_OOBINLINE)) */
1048		    if (ncc < 0 && errno == EWOULDBLOCK)
1049			ncc = 0;
1050		    else {
1051			if (ncc <= 0) {
1052			    break;
1053			}
1054			netip = netibuf;
1055		    }
1056		    DIAG((TD_REPORT | TD_NETDATA),
1057			output_data("td: netread %d chars\r\n", ncc));
1058		    DIAG(TD_NETDATA, printdata("nd", netip, ncc));
1059		}
1060
1061		/*
1062		 * Something to read from the pty...
1063		 */
1064		if (FD_ISSET(p, &ibits)) {
1065			pcc = read(p, ptyibuf, BUFSIZ);
1066			/*
1067			 * On some systems, if we try to read something
1068			 * off the master side before the slave side is
1069			 * opened, we get EIO.
1070			 */
1071			if (pcc < 0 && (errno == EWOULDBLOCK ||
1072#ifdef	EAGAIN
1073					errno == EAGAIN ||
1074#endif
1075					errno == EIO)) {
1076				pcc = 0;
1077			} else {
1078				if (pcc <= 0)
1079					break;
1080#ifdef	LINEMODE
1081				/*
1082				 * If ioctl from pty, pass it through net
1083				 */
1084				if (ptyibuf[0] & TIOCPKT_IOCTL) {
1085					copy_termbuf(ptyibuf+1, pcc-1);
1086					localstat();
1087					pcc = 1;
1088				}
1089#endif	/* LINEMODE */
1090				if (ptyibuf[0] & TIOCPKT_FLUSHWRITE) {
1091					netclear();	/* clear buffer back */
1092#ifndef	NO_URGENT
1093					/*
1094					 * There are client telnets on some
1095					 * operating systems get screwed up
1096					 * royally if we send them urgent
1097					 * mode data.
1098					 */
1099					output_data("%c%c", IAC, DM);
1100					neturg = nfrontp-1; /* off by one XXX */
1101					DIAG(TD_OPTIONS,
1102					    printoption("td: send IAC", DM));
1103
1104#endif
1105				}
1106				if (his_state_is_will(TELOPT_LFLOW) &&
1107				    (ptyibuf[0] &
1108				     (TIOCPKT_NOSTOP|TIOCPKT_DOSTOP))) {
1109					int newflow =
1110					    ptyibuf[0] & TIOCPKT_DOSTOP ? 1 : 0;
1111					if (newflow != flowmode) {
1112						flowmode = newflow;
1113						output_data("%c%c%c%c%c%c",
1114							IAC, SB, TELOPT_LFLOW,
1115							flowmode ? LFLOW_ON
1116								 : LFLOW_OFF,
1117							IAC, SE);
1118						DIAG(TD_OPTIONS, printsub('>',
1119						    (unsigned char *)nfrontp-4,
1120						    4););
1121					}
1122				}
1123				pcc--;
1124				ptyip = ptyibuf+1;
1125			}
1126		}
1127
1128		while (pcc > 0) {
1129			if ((&netobuf[BUFSIZ] - nfrontp) < 2)
1130				break;
1131			c = *ptyip++ & 0377, pcc--;
1132			if (c == IAC)
1133				output_data("%c", c);
1134			output_data("%c", c);
1135			if ((c == '\r') && (my_state_is_wont(TELOPT_BINARY))) {
1136				if (pcc > 0 && ((*ptyip & 0377) == '\n')) {
1137					output_data("%c", *ptyip++ & 0377);
1138					pcc--;
1139				} else
1140					output_data("%c", '\0');
1141			}
1142		}
1143
1144		if (FD_ISSET(f, &obits) && (nfrontp - nbackp) > 0)
1145			netflush();
1146		if (ncc > 0)
1147			telrcv();
1148		if (FD_ISSET(p, &obits) && (pfrontp - pbackp) > 0)
1149			ptyflush();
1150	}
1151	cleanup(0);
1152}  /* end of telnet */
1153
1154#ifndef	TCSIG
1155# ifdef	TIOCSIG
1156#  define TCSIG TIOCSIG
1157# endif
1158#endif
1159
1160/*
1161 * Send interrupt to process on other side of pty.
1162 * If it is in raw mode, just write NULL;
1163 * otherwise, write intr char.
1164 */
1165void
1166interrupt(void)
1167{
1168	ptyflush();	/* half-hearted */
1169
1170#ifdef	TCSIG
1171	(void) ioctl(pty, TCSIG, SIGINT);
1172#else	/* TCSIG */
1173	init_termbuf();
1174	*pfrontp++ = slctab[SLC_IP].sptr ?
1175			(unsigned char)*slctab[SLC_IP].sptr : '\177';
1176#endif	/* TCSIG */
1177}
1178
1179/*
1180 * Send quit to process on other side of pty.
1181 * If it is in raw mode, just write NULL;
1182 * otherwise, write quit char.
1183 */
1184void
1185sendbrk(void)
1186{
1187	ptyflush();	/* half-hearted */
1188#ifdef	TCSIG
1189	(void) ioctl(pty, TCSIG, SIGQUIT);
1190#else	/* TCSIG */
1191	init_termbuf();
1192	*pfrontp++ = slctab[SLC_ABORT].sptr ?
1193			(unsigned char)*slctab[SLC_ABORT].sptr : '\034';
1194#endif	/* TCSIG */
1195}
1196
1197void
1198sendsusp(void)
1199{
1200#ifdef	SIGTSTP
1201	ptyflush();	/* half-hearted */
1202# ifdef	TCSIG
1203	(void) ioctl(pty, TCSIG, SIGTSTP);
1204# else	/* TCSIG */
1205	*pfrontp++ = slctab[SLC_SUSP].sptr ?
1206			(unsigned char)*slctab[SLC_SUSP].sptr : '\032';
1207# endif	/* TCSIG */
1208#endif	/* SIGTSTP */
1209}
1210
1211/*
1212 * When we get an AYT, if ^T is enabled, use that.  Otherwise,
1213 * just send back "[Yes]".
1214 */
1215void
1216recv_ayt(void)
1217{
1218#if	defined(SIGINFO) && defined(TCSIG)
1219	if (slctab[SLC_AYT].sptr && *slctab[SLC_AYT].sptr != _POSIX_VDISABLE) {
1220		(void) ioctl(pty, TCSIG, SIGINFO);
1221		return;
1222	}
1223#endif
1224	output_data("\r\n[Yes]\r\n");
1225}
1226
1227void
1228doeof(void)
1229{
1230	init_termbuf();
1231
1232#if	defined(LINEMODE) && defined(USE_TERMIO) && (VEOF == VMIN)
1233	if (!tty_isediting()) {
1234		extern char oldeofc;
1235		*pfrontp++ = oldeofc;
1236		return;
1237	}
1238#endif
1239	*pfrontp++ = slctab[SLC_EOF].sptr ?
1240			(unsigned char)*slctab[SLC_EOF].sptr : '\004';
1241}
1242