]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/telnet/telnetd/telnetd.c
This commit was generated by cvs2svn to compensate for changes in r158795,
[FreeBSD/FreeBSD.git] / contrib / telnet / telnetd / telnetd.c
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
36 static 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 #include <utmp.h>
51
52 #include <arpa/inet.h>
53
54 #ifdef  AUTHENTICATION
55 #include <libtelnet/auth.h>
56 int     auth_level = 0;
57 #endif
58 #ifdef  ENCRYPTION
59 #include <libtelnet/encrypt.h>
60 #endif
61 #include <libtelnet/misc.h>
62
63 char    remote_hostname[MAXHOSTNAMELEN];
64 size_t  utmp_len = sizeof(remote_hostname) - 1;
65 int     registerd_host_only = 0;
66
67
68 /*
69  * I/O data buffers,
70  * pointers, and counters.
71  */
72 char    ptyibuf[BUFSIZ], *ptyip = ptyibuf;
73 char    ptyibuf2[BUFSIZ];
74
75 int readstream(int, char *, int);
76 void doit(struct sockaddr *);
77 int terminaltypeok(char *);
78
79 int     hostinfo = 1;                   /* do we print login banner? */
80
81 static int debug = 0;
82 int keepalive = 1;
83 const char *altlogin;
84
85 void doit(struct sockaddr *);
86 int terminaltypeok(char *);
87 void startslave(char *, int, char *);
88 extern void usage(void);
89 static void _gettermname(void);
90
91 /*
92  * The string to pass to getopt().  We do it this way so
93  * that only the actual options that we support will be
94  * passed off to getopt().
95  */
96 char valid_opts[] = {
97         'd', ':', 'h', 'k', 'n', 'p', ':', 'S', ':', 'u', ':', 'U',
98         '4', '6',
99 #ifdef  AUTHENTICATION
100         'a', ':', 'X', ':',
101 #endif
102 #ifdef BFTPDAEMON
103         'B',
104 #endif
105 #ifdef DIAGNOSTICS
106         'D', ':',
107 #endif
108 #ifdef  ENCRYPTION
109         'e', ':',
110 #endif
111 #ifdef  LINEMODE
112         'l',
113 #endif
114         '\0'
115 };
116
117 int family = AF_INET;
118
119 #ifndef MAXHOSTNAMELEN
120 #define MAXHOSTNAMELEN 256
121 #endif  /* MAXHOSTNAMELEN */
122
123 char *hostname;
124 char host_name[MAXHOSTNAMELEN];
125
126 extern void telnet(int, int, char *);
127
128 int level;
129 char user_name[256];
130
131 int
132 main(int argc, char *argv[])
133 {
134         u_long ultmp;
135         struct sockaddr_storage from;
136         int on = 1, fromlen;
137         int ch;
138 #if     defined(IPPROTO_IP) && defined(IP_TOS)
139         int tos = -1;
140 #endif
141         char *ep;
142
143         pfrontp = pbackp = ptyobuf;
144         netip = netibuf;
145         nfrontp = nbackp = netobuf;
146 #ifdef  ENCRYPTION
147         nclearto = 0;
148 #endif  /* ENCRYPTION */
149
150         /*
151          * This initialization causes linemode to default to a configuration
152          * that works on all telnet clients, including the FreeBSD client.
153          * This is not quite the same as the telnet client issuing a "mode
154          * character" command, but has most of the same benefits, and is
155          * preferable since some clients (like usofts) don't have the
156          * mode character command anyway and linemode breaks things.
157          * The most notable symptom of fix is that csh "set filec" operations
158          * like <ESC> (filename completion) and ^D (choices) keys now work
159          * in telnet sessions and can be used more than once on the same line.
160          * CR/LF handling is also corrected in some termio modes.  This 
161          * change resolves problem reports bin/771 and bin/1037.
162          */
163
164         linemode=1;     /*Default to mode that works on bulk of clients*/
165
166         while ((ch = getopt(argc, argv, valid_opts)) != -1) {
167                 switch(ch) {
168
169 #ifdef  AUTHENTICATION
170                 case 'a':
171                         /*
172                          * Check for required authentication level
173                          */
174                         if (strcmp(optarg, "debug") == 0) {
175                                 extern int auth_debug_mode;
176                                 auth_debug_mode = 1;
177                         } else if (strcasecmp(optarg, "none") == 0) {
178                                 auth_level = 0;
179                         } else if (strcasecmp(optarg, "other") == 0) {
180                                 auth_level = AUTH_OTHER;
181                         } else if (strcasecmp(optarg, "user") == 0) {
182                                 auth_level = AUTH_USER;
183                         } else if (strcasecmp(optarg, "valid") == 0) {
184                                 auth_level = AUTH_VALID;
185                         } else if (strcasecmp(optarg, "off") == 0) {
186                                 /*
187                                  * This hack turns off authentication
188                                  */
189                                 auth_level = -1;
190                         } else {
191                                 warnx("unknown authorization level for -a");
192                         }
193                         break;
194 #endif  /* AUTHENTICATION */
195
196 #ifdef BFTPDAEMON
197                 case 'B':
198                         bftpd++;
199                         break;
200 #endif /* BFTPDAEMON */
201
202                 case 'd':
203                         if (strcmp(optarg, "ebug") == 0) {
204                                 debug++;
205                                 break;
206                         }
207                         usage();
208                         /* NOTREACHED */
209                         break;
210
211 #ifdef DIAGNOSTICS
212                 case 'D':
213                         /*
214                          * Check for desired diagnostics capabilities.
215                          */
216                         if (!strcmp(optarg, "report")) {
217                                 diagnostic |= TD_REPORT|TD_OPTIONS;
218                         } else if (!strcmp(optarg, "exercise")) {
219                                 diagnostic |= TD_EXERCISE;
220                         } else if (!strcmp(optarg, "netdata")) {
221                                 diagnostic |= TD_NETDATA;
222                         } else if (!strcmp(optarg, "ptydata")) {
223                                 diagnostic |= TD_PTYDATA;
224                         } else if (!strcmp(optarg, "options")) {
225                                 diagnostic |= TD_OPTIONS;
226                         } else {
227                                 usage();
228                                 /* NOT REACHED */
229                         }
230                         break;
231 #endif /* DIAGNOSTICS */
232
233 #ifdef  ENCRYPTION
234                 case 'e':
235                         if (strcmp(optarg, "debug") == 0) {
236                                 extern int encrypt_debug_mode;
237                                 encrypt_debug_mode = 1;
238                                 break;
239                         }
240                         usage();
241                         /* NOTREACHED */
242                         break;
243 #endif  /* ENCRYPTION */
244
245                 case 'h':
246                         hostinfo = 0;
247                         break;
248
249 #ifdef  LINEMODE
250                 case 'l':
251                         alwayslinemode = 1;
252                         break;
253 #endif  /* LINEMODE */
254
255                 case 'k':
256 #if     defined(LINEMODE) && defined(KLUDGELINEMODE)
257                         lmodetype = NO_AUTOKLUDGE;
258 #else
259                         /* ignore -k option if built without kludge linemode */
260 #endif  /* defined(LINEMODE) && defined(KLUDGELINEMODE) */
261                         break;
262
263                 case 'n':
264                         keepalive = 0;
265                         break;
266
267                 case 'p':
268                         altlogin = optarg;
269                         break;
270
271                 case 'S':
272 #ifdef  HAS_GETTOS
273                         if ((tos = parsetos(optarg, "tcp")) < 0)
274                                 warnx("%s%s%s",
275                                         "bad TOS argument '", optarg,
276                                         "'; will try to use default TOS");
277 #else
278 #define MAXTOS  255
279                         ultmp = strtoul(optarg, &ep, 0);
280                         if (*ep || ep == optarg || ultmp > MAXTOS)
281                                 warnx("%s%s%s",
282                                         "bad TOS argument '", optarg,
283                                         "'; will try to use default TOS");
284                         else
285                                 tos = ultmp;
286 #endif
287                         break;
288
289                 case 'u':
290                         utmp_len = (size_t)atoi(optarg);
291                         if (utmp_len >= sizeof(remote_hostname))
292                                 utmp_len = sizeof(remote_hostname) - 1;
293                         break;
294
295                 case 'U':
296                         registerd_host_only = 1;
297                         break;
298
299 #ifdef  AUTHENTICATION
300                 case 'X':
301                         /*
302                          * Check for invalid authentication types
303                          */
304                         auth_disable_name(optarg);
305                         break;
306 #endif  /* AUTHENTICATION */
307
308                 case '4':
309                         family = AF_INET;
310                         break;
311
312 #ifdef INET6
313                 case '6':
314                         family = AF_INET6;
315                         break;
316 #endif
317
318                 default:
319                         warnx("%c: unknown option", ch);
320                         /* FALLTHROUGH */
321                 case '?':
322                         usage();
323                         /* NOTREACHED */
324                 }
325         }
326
327         argc -= optind;
328         argv += optind;
329
330         if (debug) {
331             int s, ns, foo, error;
332             const char *service = "telnet";
333             struct addrinfo hints, *res;
334
335             if (argc > 1) {
336                 usage();
337                 /* NOT REACHED */
338             } else if (argc == 1)
339                 service = *argv;
340
341             memset(&hints, 0, sizeof(hints));
342             hints.ai_flags = AI_PASSIVE;
343             hints.ai_family = family;
344             hints.ai_socktype = SOCK_STREAM;
345             hints.ai_protocol = 0;
346             error = getaddrinfo(NULL, service, &hints, &res);
347
348             if (error) {
349                 errx(1, "tcp/%s: %s\n", service, gai_strerror(error));
350                 if (error == EAI_SYSTEM)
351                     errx(1, "tcp/%s: %s\n", service, strerror(errno));
352                 usage();
353             }
354
355             s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
356             if (s < 0)
357                     err(1, "socket");
358             (void) setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
359                                 (char *)&on, sizeof(on));
360             if (debug > 1)
361                 (void) setsockopt(s, SOL_SOCKET, SO_DEBUG,
362                                 (char *)&on, sizeof(on));
363             if (bind(s, res->ai_addr, res->ai_addrlen) < 0)
364                 err(1, "bind");
365             if (listen(s, 1) < 0)
366                 err(1, "listen");
367             foo = res->ai_addrlen;
368             ns = accept(s, res->ai_addr, &foo);
369             if (ns < 0)
370                 err(1, "accept");
371             (void) setsockopt(ns, SOL_SOCKET, SO_DEBUG,
372                                 (char *)&on, sizeof(on));
373             (void) dup2(ns, 0);
374             (void) close(ns);
375             (void) close(s);
376 #ifdef convex
377         } else if (argc == 1) {
378                 ; /* VOID*/             /* Just ignore the host/port name */
379 #endif
380         } else if (argc > 0) {
381                 usage();
382                 /* NOT REACHED */
383         }
384
385         openlog("telnetd", LOG_PID | LOG_ODELAY, LOG_DAEMON);
386         fromlen = sizeof (from);
387         if (getpeername(0, (struct sockaddr *)&from, &fromlen) < 0) {
388                 warn("getpeername");
389                 _exit(1);
390         }
391         if (keepalive &&
392             setsockopt(0, SOL_SOCKET, SO_KEEPALIVE,
393                         (char *)&on, sizeof (on)) < 0) {
394                 syslog(LOG_WARNING, "setsockopt (SO_KEEPALIVE): %m");
395         }
396
397 #if     defined(IPPROTO_IP) && defined(IP_TOS)
398         if (from.ss_family == AF_INET) {
399 # if    defined(HAS_GETTOS)
400                 struct tosent *tp;
401                 if (tos < 0 && (tp = gettosbyname("telnet", "tcp")))
402                         tos = tp->t_tos;
403 # endif
404                 if (tos < 0)
405                         tos = 020;      /* Low Delay bit */
406                 if (tos
407                    && (setsockopt(0, IPPROTO_IP, IP_TOS,
408                                   (char *)&tos, sizeof(tos)) < 0)
409                    && (errno != ENOPROTOOPT) )
410                         syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
411         }
412 #endif  /* defined(IPPROTO_IP) && defined(IP_TOS) */
413         net = 0;
414         doit((struct sockaddr *)&from);
415         /* NOTREACHED */
416         return(0);
417 }  /* end of main */
418
419         void
420 usage()
421 {
422         fprintf(stderr, "usage: telnetd");
423 #ifdef  AUTHENTICATION
424         fprintf(stderr,
425             " [-4] [-6] [-a (debug|other|user|valid|off|none)]\n\t");
426 #endif
427 #ifdef BFTPDAEMON
428         fprintf(stderr, " [-B]");
429 #endif
430         fprintf(stderr, " [-debug]");
431 #ifdef DIAGNOSTICS
432         fprintf(stderr, " [-D (options|report|exercise|netdata|ptydata)]\n\t");
433 #endif
434 #ifdef  AUTHENTICATION
435         fprintf(stderr, " [-edebug]");
436 #endif
437         fprintf(stderr, " [-h]");
438 #if     defined(LINEMODE) && defined(KLUDGELINEMODE)
439         fprintf(stderr, " [-k]");
440 #endif
441 #ifdef LINEMODE
442         fprintf(stderr, " [-l]");
443 #endif
444         fprintf(stderr, " [-n]");
445         fprintf(stderr, "\n\t");
446 #ifdef  HAS_GETTOS
447         fprintf(stderr, " [-S tos]");
448 #endif
449 #ifdef  AUTHENTICATION
450         fprintf(stderr, " [-X auth-type]");
451 #endif
452         fprintf(stderr, " [-u utmp_hostname_length] [-U]");
453         fprintf(stderr, " [port]\n");
454         exit(1);
455 }
456
457 /*
458  * getterminaltype
459  *
460  *      Ask the other end to send along its terminal type and speed.
461  * Output is the variable terminaltype filled in.
462  */
463 static unsigned char ttytype_sbbuf[] = {
464         IAC, SB, TELOPT_TTYPE, TELQUAL_SEND, IAC, SE
465 };
466
467
468 #ifndef AUTHENTICATION
469 #define undef2 __unused
470 #else
471 #define undef2
472 #endif
473
474 static int
475 getterminaltype(char *name undef2)
476 {
477     int retval = -1;
478
479     settimer(baseline);
480 #ifdef  AUTHENTICATION
481     /*
482      * Handle the Authentication option before we do anything else.
483      */
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 #endif
491
492 #ifdef  ENCRYPTION
493     send_will(TELOPT_ENCRYPT, 1);
494 #endif  /* ENCRYPTION */
495     send_do(TELOPT_TTYPE, 1);
496     send_do(TELOPT_TSPEED, 1);
497     send_do(TELOPT_XDISPLOC, 1);
498     send_do(TELOPT_NEW_ENVIRON, 1);
499     send_do(TELOPT_OLD_ENVIRON, 1);
500     while (
501 #ifdef  ENCRYPTION
502            his_do_dont_is_changing(TELOPT_ENCRYPT) ||
503 #endif  /* ENCRYPTION */
504            his_will_wont_is_changing(TELOPT_TTYPE) ||
505            his_will_wont_is_changing(TELOPT_TSPEED) ||
506            his_will_wont_is_changing(TELOPT_XDISPLOC) ||
507            his_will_wont_is_changing(TELOPT_NEW_ENVIRON) ||
508            his_will_wont_is_changing(TELOPT_OLD_ENVIRON)) {
509         ttloop();
510     }
511 #ifdef  ENCRYPTION
512     /*
513      * Wait for the negotiation of what type of encryption we can
514      * send with.  If autoencrypt is not set, this will just return.
515      */
516     if (his_state_is_will(TELOPT_ENCRYPT)) {
517         encrypt_wait();
518     }
519 #endif  /* ENCRYPTION */
520     if (his_state_is_will(TELOPT_TSPEED)) {
521         static unsigned char sb[] =
522                         { IAC, SB, TELOPT_TSPEED, TELQUAL_SEND, IAC, SE };
523
524         output_datalen(sb, sizeof sb);
525         DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
526     }
527     if (his_state_is_will(TELOPT_XDISPLOC)) {
528         static unsigned char sb[] =
529                         { IAC, SB, TELOPT_XDISPLOC, TELQUAL_SEND, IAC, SE };
530
531         output_datalen(sb, sizeof sb);
532         DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
533     }
534     if (his_state_is_will(TELOPT_NEW_ENVIRON)) {
535         static unsigned char sb[] =
536                         { IAC, SB, TELOPT_NEW_ENVIRON, TELQUAL_SEND, IAC, SE };
537
538         output_datalen(sb, sizeof sb);
539         DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
540     }
541     else if (his_state_is_will(TELOPT_OLD_ENVIRON)) {
542         static unsigned char sb[] =
543                         { IAC, SB, TELOPT_OLD_ENVIRON, TELQUAL_SEND, IAC, SE };
544
545         output_datalen(sb, sizeof sb);
546         DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
547     }
548     if (his_state_is_will(TELOPT_TTYPE)) {
549
550         output_datalen(ttytype_sbbuf, sizeof ttytype_sbbuf);
551         DIAG(TD_OPTIONS, printsub('>', ttytype_sbbuf + 2,
552                                         sizeof ttytype_sbbuf - 2););
553     }
554     if (his_state_is_will(TELOPT_TSPEED)) {
555         while (sequenceIs(tspeedsubopt, baseline))
556             ttloop();
557     }
558     if (his_state_is_will(TELOPT_XDISPLOC)) {
559         while (sequenceIs(xdisplocsubopt, baseline))
560             ttloop();
561     }
562     if (his_state_is_will(TELOPT_NEW_ENVIRON)) {
563         while (sequenceIs(environsubopt, baseline))
564             ttloop();
565     }
566     if (his_state_is_will(TELOPT_OLD_ENVIRON)) {
567         while (sequenceIs(oenvironsubopt, baseline))
568             ttloop();
569     }
570     if (his_state_is_will(TELOPT_TTYPE)) {
571         char first[256], last[256];
572
573         while (sequenceIs(ttypesubopt, baseline))
574             ttloop();
575
576         /*
577          * If the other side has already disabled the option, then
578          * we have to just go with what we (might) have already gotten.
579          */
580         if (his_state_is_will(TELOPT_TTYPE) && !terminaltypeok(terminaltype)) {
581             (void) strncpy(first, terminaltype, sizeof(first)-1);
582             first[sizeof(first)-1] = '\0';
583             for(;;) {
584                 /*
585                  * Save the unknown name, and request the next name.
586                  */
587                 (void) strncpy(last, terminaltype, sizeof(last)-1);
588                 last[sizeof(last)-1] = '\0';
589                 _gettermname();
590                 if (terminaltypeok(terminaltype))
591                     break;
592                 if ((strncmp(last, terminaltype, sizeof(last)) == 0) ||
593                     his_state_is_wont(TELOPT_TTYPE)) {
594                     /*
595                      * We've hit the end.  If this is the same as
596                      * the first name, just go with it.
597                      */
598                     if (strncmp(first, terminaltype, sizeof(first)) == 0)
599                         break;
600                     /*
601                      * Get the terminal name one more time, so that
602                      * RFC1091 compliant telnets will cycle back to
603                      * the start of the list.
604                      */
605                      _gettermname();
606                     if (strncmp(first, terminaltype, sizeof(first)) != 0) {
607                         (void) strncpy(terminaltype, first, sizeof(terminaltype)-1);
608                         terminaltype[sizeof(terminaltype)-1] = '\0';
609                     }
610                     break;
611                 }
612             }
613         }
614     }
615     return(retval);
616 }  /* end of getterminaltype */
617
618 static void
619 _gettermname(void)
620 {
621     /*
622      * If the client turned off the option,
623      * we can't send another request, so we
624      * just return.
625      */
626     if (his_state_is_wont(TELOPT_TTYPE))
627         return;
628     settimer(baseline);
629     output_datalen(ttytype_sbbuf, sizeof ttytype_sbbuf);
630     DIAG(TD_OPTIONS, printsub('>', ttytype_sbbuf + 2,
631                                         sizeof ttytype_sbbuf - 2););
632     while (sequenceIs(ttypesubopt, baseline))
633         ttloop();
634 }
635
636 int
637 terminaltypeok(char *s)
638 {
639     char buf[1024];
640
641     if (terminaltype == NULL)
642         return(1);
643
644     /*
645      * tgetent() will return 1 if the type is known, and
646      * 0 if it is not known.  If it returns -1, it couldn't
647      * open the database.  But if we can't open the database,
648      * it won't help to say we failed, because we won't be
649      * able to verify anything else.  So, we treat -1 like 1.
650      */
651     if (tgetent(buf, s) == 0)
652         return(0);
653     return(1);
654 }
655
656 /*
657  * Get a pty, scan input lines.
658  */
659 void
660 doit(struct sockaddr *who)
661 {
662         int err_; /* XXX */
663         int ptynum;
664
665         /*
666          * Find an available pty to use.
667          */
668 #ifndef convex
669         pty = getpty(&ptynum);
670         if (pty < 0)
671                 fatal(net, "All network ports in use");
672 #else
673         for (;;) {
674                 char *lp;
675
676                 if ((lp = getpty()) == NULL)
677                         fatal(net, "Out of ptys");
678
679                 if ((pty = open(lp, 2)) >= 0) {
680                         strlcpy(line,lp,sizeof(line));
681                         line[5] = 't';
682                         break;
683                 }
684         }
685 #endif
686
687         /* get name of connected client */
688         if (realhostname_sa(remote_hostname, sizeof(remote_hostname) - 1,
689             who, who->sa_len) == HOSTNAME_INVALIDADDR && registerd_host_only)
690                 fatal(net, "Couldn't resolve your address into a host name.\r\n\
691         Please contact your net administrator");
692         remote_hostname[sizeof(remote_hostname) - 1] = '\0';
693
694         trimdomain(remote_hostname, UT_HOSTSIZE);
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  */
732 void
733 telnet(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  */
1165 void
1166 interrupt(void)
1167 {
1168         ptyflush();     /* half-hearted */
1169
1170 #ifdef  TCSIG
1171         (void) ioctl(pty, TCSIG, (char *)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  */
1184 void
1185 sendbrk(void)
1186 {
1187         ptyflush();     /* half-hearted */
1188 #ifdef  TCSIG
1189         (void) ioctl(pty, TCSIG, (char *)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
1197 void
1198 sendsusp(void)
1199 {
1200 #ifdef  SIGTSTP
1201         ptyflush();     /* half-hearted */
1202 # ifdef TCSIG
1203         (void) ioctl(pty, TCSIG, (char *)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  */
1215 void
1216 recv_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, (char *)SIGINFO);
1221                 return;
1222         }
1223 #endif
1224         output_data("\r\n[Yes]\r\n");
1225 }
1226
1227 void
1228 doeof(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 }