telnetd.c revision 1.37 1 1.37 itojun /* $NetBSD: telnetd.c,v 1.37 2003/05/17 21:28:53 itojun Exp $ */
2 1.17 thorpej
3 1.16 itojun /*
4 1.16 itojun * Copyright (C) 1997 and 1998 WIDE Project.
5 1.16 itojun * All rights reserved.
6 1.16 itojun *
7 1.16 itojun * Redistribution and use in source and binary forms, with or without
8 1.16 itojun * modification, are permitted provided that the following conditions
9 1.16 itojun * are met:
10 1.16 itojun * 1. Redistributions of source code must retain the above copyright
11 1.16 itojun * notice, this list of conditions and the following disclaimer.
12 1.16 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.16 itojun * notice, this list of conditions and the following disclaimer in the
14 1.16 itojun * documentation and/or other materials provided with the distribution.
15 1.16 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.16 itojun * may be used to endorse or promote products derived from this software
17 1.16 itojun * without specific prior written permission.
18 1.16 itojun *
19 1.16 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.16 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.16 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.16 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.16 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.16 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.16 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.16 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.16 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.16 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.16 itojun * SUCH DAMAGE.
30 1.16 itojun */
31 1.16 itojun
32 1.1 cgd /*
33 1.3 cgd * Copyright (c) 1989, 1993
34 1.3 cgd * The Regents of the University of California. All rights reserved.
35 1.1 cgd *
36 1.1 cgd * Redistribution and use in source and binary forms, with or without
37 1.1 cgd * modification, are permitted provided that the following conditions
38 1.1 cgd * are met:
39 1.1 cgd * 1. Redistributions of source code must retain the above copyright
40 1.1 cgd * notice, this list of conditions and the following disclaimer.
41 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer in the
43 1.1 cgd * documentation and/or other materials provided with the distribution.
44 1.1 cgd * 3. All advertising materials mentioning features or use of this software
45 1.1 cgd * must display the following acknowledgement:
46 1.1 cgd * This product includes software developed by the University of
47 1.1 cgd * California, Berkeley and its contributors.
48 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
49 1.1 cgd * may be used to endorse or promote products derived from this software
50 1.1 cgd * without specific prior written permission.
51 1.1 cgd *
52 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 1.1 cgd * SUCH DAMAGE.
63 1.1 cgd */
64 1.1 cgd
65 1.9 mrg #include <sys/cdefs.h>
66 1.1 cgd #ifndef lint
67 1.9 mrg __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
68 1.9 mrg The Regents of the University of California. All rights reserved.\n");
69 1.5 thorpej #if 0
70 1.5 thorpej static char sccsid[] = "@(#)telnetd.c 8.4 (Berkeley) 5/30/95";
71 1.5 thorpej #else
72 1.37 itojun __RCSID("$NetBSD: telnetd.c,v 1.37 2003/05/17 21:28:53 itojun Exp $");
73 1.5 thorpej #endif
74 1.1 cgd #endif /* not lint */
75 1.1 cgd
76 1.1 cgd #include "telnetd.h"
77 1.1 cgd #include "pathnames.h"
78 1.1 cgd
79 1.9 mrg #include <arpa/inet.h>
80 1.9 mrg
81 1.16 itojun #include <err.h>
82 1.10 lukem #include <termcap.h>
83 1.9 mrg
84 1.20 ad #include <limits.h>
85 1.20 ad
86 1.4 jtk #define P __P
87 1.4 jtk
88 1.3 cgd #if defined(_SC_CRAY_SECURE_SYS) && !defined(SCM_SECURITY)
89 1.3 cgd /*
90 1.3 cgd * UNICOS 6.0/6.1 do not have SCM_SECURITY defined, so we can
91 1.3 cgd * use it to tell us to turn off all the socket security code,
92 1.3 cgd * since that is only used in UNICOS 7.0 and later.
93 1.3 cgd */
94 1.3 cgd # undef _SC_CRAY_SECURE_SYS
95 1.3 cgd #endif
96 1.3 cgd
97 1.3 cgd #if defined(_SC_CRAY_SECURE_SYS)
98 1.3 cgd #include <sys/sysv.h>
99 1.3 cgd #include <sys/secdev.h>
100 1.3 cgd # ifdef SO_SEC_MULTI /* 8.0 code */
101 1.3 cgd #include <sys/secparm.h>
102 1.3 cgd #include <sys/usrv.h>
103 1.3 cgd # endif /* SO_SEC_MULTI */
104 1.3 cgd int secflag;
105 1.3 cgd char tty_dev[16];
106 1.3 cgd struct secdev dv;
107 1.3 cgd struct sysv sysv;
108 1.3 cgd # ifdef SO_SEC_MULTI /* 8.0 code */
109 1.3 cgd struct socksec ss;
110 1.3 cgd # else /* SO_SEC_MULTI */ /* 7.0 code */
111 1.3 cgd struct socket_security ss;
112 1.3 cgd # endif /* SO_SEC_MULTI */
113 1.3 cgd #endif /* _SC_CRAY_SECURE_SYS */
114 1.3 cgd
115 1.21 thorpej #if defined(KRB5)
116 1.21 thorpej #define Authenticator k5_Authenticator
117 1.21 thorpej #include <krb5.h>
118 1.21 thorpej #undef Authenticator
119 1.21 thorpej #include <com_err.h>
120 1.21 thorpej #endif
121 1.21 thorpej
122 1.3 cgd #if defined(AUTHENTICATION)
123 1.1 cgd int auth_level = 0;
124 1.1 cgd #endif
125 1.21 thorpej
126 1.21 thorpej #if defined(AUTHENTICATION) || defined(ENCRYPTION)
127 1.21 thorpej #include <libtelnet/misc.h>
128 1.21 thorpej #endif
129 1.21 thorpej
130 1.15 dean #if defined(SECURELOGIN)
131 1.15 dean int require_secure_login = 0;
132 1.1 cgd #endif
133 1.1 cgd
134 1.33 christos #if !defined(UTMPX) && !(defined(CRAY) || defined(__hpux)) && BSD <= 43
135 1.3 cgd extern int utmp_len;
136 1.33 christos #endif
137 1.25 christos extern int require_hwpreauth;
138 1.25 christos #ifdef KRB5
139 1.25 christos extern krb5_context telnet_context;
140 1.25 christos #endif
141 1.3 cgd int registerd_host_only = 0;
142 1.3 cgd
143 1.3 cgd #ifdef STREAMSPTY
144 1.3 cgd # include <stropts.h>
145 1.3 cgd # include <termio.h>
146 1.3 cgd /* make sure we don't get the bsd version */
147 1.3 cgd # include "/usr/include/sys/tty.h"
148 1.3 cgd # include <sys/ptyvar.h>
149 1.3 cgd
150 1.3 cgd /*
151 1.3 cgd * Because of the way ptyibuf is used with streams messages, we need
152 1.28 wiz * ptyibuf+1 to be on a full-word boundary. The following weirdness
153 1.3 cgd * is simply to make that happen.
154 1.3 cgd */
155 1.3 cgd long ptyibufbuf[BUFSIZ/sizeof(long)+1];
156 1.3 cgd char *ptyibuf = ((char *)&ptyibufbuf[1])-1;
157 1.3 cgd char *ptyip = ((char *)&ptyibufbuf[1])-1;
158 1.20 ad char ptyibuf2[BUFSIZ*4];
159 1.3 cgd unsigned char ctlbuf[BUFSIZ];
160 1.3 cgd struct strbuf strbufc, strbufd;
161 1.3 cgd
162 1.3 cgd int readstream();
163 1.3 cgd
164 1.3 cgd #else /* ! STREAMPTY */
165 1.3 cgd
166 1.1 cgd /*
167 1.1 cgd * I/O data buffers,
168 1.1 cgd * pointers, and counters.
169 1.1 cgd */
170 1.1 cgd char ptyibuf[BUFSIZ], *ptyip = ptyibuf;
171 1.1 cgd char ptyibuf2[BUFSIZ];
172 1.1 cgd
173 1.3 cgd #endif /* ! STREAMPTY */
174 1.3 cgd
175 1.1 cgd int hostinfo = 1; /* do we print login banner? */
176 1.1 cgd
177 1.1 cgd #ifdef CRAY
178 1.1 cgd extern int newmap; /* nonzero if \n maps to ^M^J */
179 1.1 cgd int lowpty = 0, highpty; /* low, high pty numbers */
180 1.1 cgd #endif /* CRAY */
181 1.1 cgd
182 1.1 cgd int debug = 0;
183 1.1 cgd int keepalive = 1;
184 1.6 tls char *gettyname = "default";
185 1.1 cgd char *progname;
186 1.1 cgd
187 1.9 mrg int main __P((int, char *[]));
188 1.9 mrg void usage __P((void));
189 1.9 mrg int getterminaltype __P((char *));
190 1.9 mrg int getent __P((char *, char *));
191 1.16 itojun void doit __P((struct sockaddr *));
192 1.9 mrg void _gettermname __P((void));
193 1.9 mrg int terminaltypeok __P((char *));
194 1.26 itojun char *getstr __P((const char *, char **));
195 1.1 cgd
196 1.3 cgd /*
197 1.3 cgd * The string to pass to getopt(). We do it this way so
198 1.3 cgd * that only the actual options that we support will be
199 1.3 cgd * passed off to getopt().
200 1.3 cgd */
201 1.3 cgd char valid_opts[] = {
202 1.6 tls 'd', ':', 'g', ':', 'h', 'k', 'n', 'S', ':', 'u', ':', 'U',
203 1.16 itojun '4', '6',
204 1.3 cgd #ifdef AUTHENTICATION
205 1.3 cgd 'a', ':', 'X', ':',
206 1.3 cgd #endif
207 1.3 cgd #ifdef BFTPDAEMON
208 1.3 cgd 'B',
209 1.3 cgd #endif
210 1.21 thorpej #ifdef ENCRYPTION
211 1.21 thorpej 'e', ':',
212 1.21 thorpej #endif
213 1.3 cgd #ifdef DIAGNOSTICS
214 1.3 cgd 'D', ':',
215 1.3 cgd #endif
216 1.3 cgd #ifdef LINEMODE
217 1.3 cgd 'l',
218 1.3 cgd #endif
219 1.3 cgd #ifdef CRAY
220 1.3 cgd 'r', ':',
221 1.3 cgd #endif
222 1.15 dean #ifdef SECURELOGIN
223 1.3 cgd 's',
224 1.3 cgd #endif
225 1.21 thorpej #ifdef KRB5
226 1.21 thorpej 'R', ':', 'H',
227 1.21 thorpej #endif
228 1.3 cgd '\0'
229 1.3 cgd };
230 1.3 cgd
231 1.16 itojun int family = AF_INET;
232 1.16 itojun
233 1.9 mrg int
234 1.1 cgd main(argc, argv)
235 1.14 msaitoh int argc;
236 1.1 cgd char *argv[];
237 1.1 cgd {
238 1.16 itojun struct sockaddr_storage from;
239 1.1 cgd int on = 1, fromlen;
240 1.1 cgd register int ch;
241 1.1 cgd #if defined(IPPROTO_IP) && defined(IP_TOS)
242 1.1 cgd int tos = -1;
243 1.1 cgd #endif
244 1.1 cgd
245 1.1 cgd pfrontp = pbackp = ptyobuf;
246 1.1 cgd netip = netibuf;
247 1.1 cgd nfrontp = nbackp = netobuf;
248 1.21 thorpej #ifdef ENCRYPTION
249 1.21 thorpej nclearto = 0;
250 1.21 thorpej #endif /* ENCRYPTION */
251 1.1 cgd
252 1.1 cgd progname = *argv;
253 1.1 cgd
254 1.1 cgd #ifdef CRAY
255 1.1 cgd /*
256 1.1 cgd * Get number of pty's before trying to process options,
257 1.1 cgd * which may include changing pty range.
258 1.1 cgd */
259 1.1 cgd highpty = getnpty();
260 1.1 cgd #endif /* CRAY */
261 1.1 cgd
262 1.7 enami while ((ch = getopt(argc, argv, valid_opts)) != -1) {
263 1.8 enami switch (ch) {
264 1.1 cgd
265 1.3 cgd #ifdef AUTHENTICATION
266 1.1 cgd case 'a':
267 1.1 cgd /*
268 1.1 cgd * Check for required authentication level
269 1.1 cgd */
270 1.1 cgd if (strcmp(optarg, "debug") == 0) {
271 1.1 cgd auth_debug_mode = 1;
272 1.1 cgd } else if (strcasecmp(optarg, "none") == 0) {
273 1.1 cgd auth_level = 0;
274 1.1 cgd } else if (strcasecmp(optarg, "other") == 0) {
275 1.1 cgd auth_level = AUTH_OTHER;
276 1.1 cgd } else if (strcasecmp(optarg, "user") == 0) {
277 1.1 cgd auth_level = AUTH_USER;
278 1.1 cgd } else if (strcasecmp(optarg, "valid") == 0) {
279 1.1 cgd auth_level = AUTH_VALID;
280 1.1 cgd } else if (strcasecmp(optarg, "off") == 0) {
281 1.1 cgd /*
282 1.1 cgd * This hack turns off authentication
283 1.1 cgd */
284 1.1 cgd auth_level = -1;
285 1.1 cgd } else {
286 1.1 cgd fprintf(stderr,
287 1.1 cgd "telnetd: unknown authorization level for -a\n");
288 1.1 cgd }
289 1.1 cgd break;
290 1.3 cgd #endif /* AUTHENTICATION */
291 1.1 cgd
292 1.1 cgd #ifdef BFTPDAEMON
293 1.1 cgd case 'B':
294 1.1 cgd bftpd++;
295 1.1 cgd break;
296 1.1 cgd #endif /* BFTPDAEMON */
297 1.1 cgd
298 1.1 cgd case 'd':
299 1.1 cgd if (strcmp(optarg, "ebug") == 0) {
300 1.1 cgd debug++;
301 1.1 cgd break;
302 1.1 cgd }
303 1.1 cgd usage();
304 1.1 cgd /* NOTREACHED */
305 1.1 cgd break;
306 1.1 cgd
307 1.1 cgd #ifdef DIAGNOSTICS
308 1.1 cgd case 'D':
309 1.1 cgd /*
310 1.1 cgd * Check for desired diagnostics capabilities.
311 1.1 cgd */
312 1.1 cgd if (!strcmp(optarg, "report")) {
313 1.1 cgd diagnostic |= TD_REPORT|TD_OPTIONS;
314 1.1 cgd } else if (!strcmp(optarg, "exercise")) {
315 1.1 cgd diagnostic |= TD_EXERCISE;
316 1.1 cgd } else if (!strcmp(optarg, "netdata")) {
317 1.1 cgd diagnostic |= TD_NETDATA;
318 1.1 cgd } else if (!strcmp(optarg, "ptydata")) {
319 1.1 cgd diagnostic |= TD_PTYDATA;
320 1.1 cgd } else if (!strcmp(optarg, "options")) {
321 1.1 cgd diagnostic |= TD_OPTIONS;
322 1.1 cgd } else {
323 1.1 cgd usage();
324 1.1 cgd /* NOT REACHED */
325 1.1 cgd }
326 1.1 cgd break;
327 1.1 cgd #endif /* DIAGNOSTICS */
328 1.1 cgd
329 1.21 thorpej #ifdef ENCRYPTION
330 1.21 thorpej case 'e':
331 1.21 thorpej if (strcmp(optarg, "debug") == 0) {
332 1.21 thorpej encrypt_debug_mode = 1;
333 1.21 thorpej break;
334 1.21 thorpej }
335 1.21 thorpej usage();
336 1.21 thorpej /* NOTREACHED */
337 1.21 thorpej break;
338 1.21 thorpej #endif /* ENCRYPTION */
339 1.21 thorpej
340 1.6 tls case 'g':
341 1.6 tls gettyname = optarg;
342 1.6 tls break;
343 1.1 cgd
344 1.1 cgd case 'h':
345 1.1 cgd hostinfo = 0;
346 1.1 cgd break;
347 1.1 cgd
348 1.21 thorpej #ifdef KRB5
349 1.21 thorpej case 'H':
350 1.21 thorpej {
351 1.21 thorpej require_hwpreauth = 1;
352 1.21 thorpej break;
353 1.21 thorpej }
354 1.21 thorpej #endif /* KRB5 */
355 1.21 thorpej
356 1.1 cgd
357 1.1 cgd #ifdef LINEMODE
358 1.1 cgd case 'l':
359 1.1 cgd alwayslinemode = 1;
360 1.1 cgd break;
361 1.1 cgd #endif /* LINEMODE */
362 1.1 cgd
363 1.3 cgd case 'k':
364 1.3 cgd #if defined(LINEMODE) && defined(KLUDGELINEMODE)
365 1.3 cgd lmodetype = NO_AUTOKLUDGE;
366 1.3 cgd #else
367 1.3 cgd /* ignore -k option if built without kludge linemode */
368 1.3 cgd #endif /* defined(LINEMODE) && defined(KLUDGELINEMODE) */
369 1.3 cgd break;
370 1.3 cgd
371 1.1 cgd case 'n':
372 1.1 cgd keepalive = 0;
373 1.1 cgd break;
374 1.1 cgd
375 1.1 cgd #ifdef CRAY
376 1.1 cgd case 'r':
377 1.1 cgd {
378 1.1 cgd char *strchr();
379 1.1 cgd char *c;
380 1.1 cgd
381 1.1 cgd /*
382 1.1 cgd * Allow the specification of alterations
383 1.1 cgd * to the pty search range. It is legal to
384 1.1 cgd * specify only one, and not change the
385 1.1 cgd * other from its default.
386 1.1 cgd */
387 1.1 cgd c = strchr(optarg, '-');
388 1.1 cgd if (c) {
389 1.1 cgd *c++ = '\0';
390 1.1 cgd highpty = atoi(c);
391 1.1 cgd }
392 1.1 cgd if (*optarg != '\0')
393 1.1 cgd lowpty = atoi(optarg);
394 1.1 cgd if ((lowpty > highpty) || (lowpty < 0) ||
395 1.1 cgd (highpty > 32767)) {
396 1.1 cgd usage();
397 1.1 cgd /* NOT REACHED */
398 1.1 cgd }
399 1.1 cgd break;
400 1.1 cgd }
401 1.1 cgd #endif /* CRAY */
402 1.1 cgd
403 1.21 thorpej #ifdef KRB5
404 1.21 thorpej case 'R':
405 1.21 thorpej {
406 1.21 thorpej krb5_error_code retval;
407 1.21 thorpej
408 1.21 thorpej if (telnet_context == 0) {
409 1.21 thorpej retval = krb5_init_context(&telnet_context);
410 1.21 thorpej if (retval) {
411 1.21 thorpej com_err("telnetd", retval,
412 1.21 thorpej "while initializing krb5");
413 1.21 thorpej exit(1);
414 1.21 thorpej }
415 1.21 thorpej }
416 1.21 thorpej krb5_set_default_realm(telnet_context, optarg);
417 1.21 thorpej break;
418 1.21 thorpej }
419 1.21 thorpej #endif /* KRB5 */
420 1.21 thorpej
421 1.15 dean #ifdef SECURELOGIN
422 1.1 cgd case 's':
423 1.15 dean /* Secure login required */
424 1.15 dean require_secure_login = 1;
425 1.1 cgd break;
426 1.15 dean #endif /* SECURELOGIN */
427 1.1 cgd case 'S':
428 1.1 cgd #ifdef HAS_GETTOS
429 1.1 cgd if ((tos = parsetos(optarg, "tcp")) < 0)
430 1.1 cgd fprintf(stderr, "%s%s%s\n",
431 1.1 cgd "telnetd: Bad TOS argument '", optarg,
432 1.1 cgd "'; will try to use default TOS");
433 1.1 cgd #else
434 1.1 cgd fprintf(stderr, "%s%s\n", "TOS option unavailable; ",
435 1.1 cgd "-S flag not supported\n");
436 1.1 cgd #endif
437 1.1 cgd break;
438 1.1 cgd
439 1.3 cgd case 'u':
440 1.33 christos #if !defined(UTMPX) && !(defined(CRAY) || defined(__hpux)) && BSD <= 43
441 1.3 cgd utmp_len = atoi(optarg);
442 1.33 christos #else
443 1.33 christos fprintf(stderr, "telnetd: -u option unneeded\n");
444 1.33 christos #endif
445 1.3 cgd break;
446 1.3 cgd
447 1.3 cgd case 'U':
448 1.3 cgd registerd_host_only = 1;
449 1.3 cgd break;
450 1.3 cgd
451 1.3 cgd #ifdef AUTHENTICATION
452 1.1 cgd case 'X':
453 1.1 cgd /*
454 1.1 cgd * Check for invalid authentication types
455 1.1 cgd */
456 1.1 cgd auth_disable_name(optarg);
457 1.1 cgd break;
458 1.3 cgd #endif /* AUTHENTICATION */
459 1.1 cgd
460 1.16 itojun case '4':
461 1.16 itojun family = AF_INET;
462 1.16 itojun break;
463 1.18 thorpej
464 1.16 itojun case '6':
465 1.16 itojun family = AF_INET6;
466 1.16 itojun break;
467 1.18 thorpej
468 1.1 cgd default:
469 1.3 cgd fprintf(stderr, "telnetd: %c: unknown option\n", ch);
470 1.1 cgd /* FALLTHROUGH */
471 1.1 cgd case '?':
472 1.1 cgd usage();
473 1.1 cgd /* NOTREACHED */
474 1.1 cgd }
475 1.1 cgd }
476 1.1 cgd
477 1.1 cgd argc -= optind;
478 1.1 cgd argv += optind;
479 1.1 cgd
480 1.1 cgd if (debug) {
481 1.16 itojun int s, ns, foo, error;
482 1.16 itojun char *service = "telnet";
483 1.16 itojun struct addrinfo hints, *res;
484 1.1 cgd
485 1.1 cgd if (argc > 1) {
486 1.1 cgd usage();
487 1.1 cgd /* NOT REACHED */
488 1.16 itojun } else if (argc == 1)
489 1.16 itojun service = *argv;
490 1.16 itojun
491 1.16 itojun memset(&hints, 0, sizeof(hints));
492 1.16 itojun hints.ai_flags = AI_PASSIVE;
493 1.16 itojun hints.ai_family = family;
494 1.16 itojun hints.ai_socktype = SOCK_STREAM;
495 1.16 itojun hints.ai_protocol = 0;
496 1.16 itojun error = getaddrinfo(NULL, service, &hints, &res);
497 1.16 itojun
498 1.16 itojun if (error) {
499 1.22 itojun fprintf(stderr, "tcp/%s: %s\n", service, gai_strerror(error));
500 1.22 itojun exit(1);
501 1.1 cgd }
502 1.1 cgd
503 1.16 itojun s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
504 1.1 cgd if (s < 0) {
505 1.28 wiz perror("telnetd: socket");
506 1.22 itojun exit(1);
507 1.1 cgd }
508 1.3 cgd (void) setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
509 1.3 cgd (char *)&on, sizeof(on));
510 1.16 itojun if (bind(s, res->ai_addr, res->ai_addrlen) < 0) {
511 1.1 cgd perror("bind");
512 1.1 cgd exit(1);
513 1.1 cgd }
514 1.1 cgd if (listen(s, 1) < 0) {
515 1.1 cgd perror("listen");
516 1.1 cgd exit(1);
517 1.1 cgd }
518 1.16 itojun foo = res->ai_addrlen;
519 1.16 itojun ns = accept(s, res->ai_addr, &foo);
520 1.1 cgd if (ns < 0) {
521 1.1 cgd perror("accept");
522 1.1 cgd exit(1);
523 1.1 cgd }
524 1.1 cgd (void) dup2(ns, 0);
525 1.1 cgd (void) close(ns);
526 1.1 cgd (void) close(s);
527 1.1 cgd #ifdef convex
528 1.1 cgd } else if (argc == 1) {
529 1.1 cgd ; /* VOID*/ /* Just ignore the host/port name */
530 1.1 cgd #endif
531 1.1 cgd } else if (argc > 0) {
532 1.1 cgd usage();
533 1.1 cgd /* NOT REACHED */
534 1.1 cgd }
535 1.1 cgd
536 1.3 cgd #if defined(_SC_CRAY_SECURE_SYS)
537 1.3 cgd secflag = sysconf(_SC_CRAY_SECURE_SYS);
538 1.3 cgd
539 1.3 cgd /*
540 1.3 cgd * Get socket's security label
541 1.3 cgd */
542 1.3 cgd if (secflag) {
543 1.3 cgd int szss = sizeof(ss);
544 1.3 cgd #ifdef SO_SEC_MULTI /* 8.0 code */
545 1.3 cgd int sock_multi;
546 1.3 cgd int szi = sizeof(int);
547 1.3 cgd #endif /* SO_SEC_MULTI */
548 1.3 cgd
549 1.4 jtk memset((char *)&dv, 0, sizeof(dv));
550 1.3 cgd
551 1.3 cgd if (getsysv(&sysv, sizeof(struct sysv)) != 0) {
552 1.3 cgd perror("getsysv");
553 1.3 cgd exit(1);
554 1.3 cgd }
555 1.3 cgd
556 1.3 cgd /*
557 1.3 cgd * Get socket security label and set device values
558 1.3 cgd * {security label to be set on ttyp device}
559 1.3 cgd */
560 1.3 cgd #ifdef SO_SEC_MULTI /* 8.0 code */
561 1.3 cgd if ((getsockopt(0, SOL_SOCKET, SO_SECURITY,
562 1.3 cgd (char *)&ss, &szss) < 0) ||
563 1.3 cgd (getsockopt(0, SOL_SOCKET, SO_SEC_MULTI,
564 1.3 cgd (char *)&sock_multi, &szi) < 0)) {
565 1.3 cgd perror("getsockopt");
566 1.3 cgd exit(1);
567 1.3 cgd } else {
568 1.3 cgd dv.dv_actlvl = ss.ss_actlabel.lt_level;
569 1.3 cgd dv.dv_actcmp = ss.ss_actlabel.lt_compart;
570 1.3 cgd if (!sock_multi) {
571 1.3 cgd dv.dv_minlvl = dv.dv_maxlvl = dv.dv_actlvl;
572 1.3 cgd dv.dv_valcmp = dv.dv_actcmp;
573 1.3 cgd } else {
574 1.3 cgd dv.dv_minlvl = ss.ss_minlabel.lt_level;
575 1.3 cgd dv.dv_maxlvl = ss.ss_maxlabel.lt_level;
576 1.3 cgd dv.dv_valcmp = ss.ss_maxlabel.lt_compart;
577 1.3 cgd }
578 1.3 cgd dv.dv_devflg = 0;
579 1.3 cgd }
580 1.3 cgd #else /* SO_SEC_MULTI */ /* 7.0 code */
581 1.3 cgd if (getsockopt(0, SOL_SOCKET, SO_SECURITY,
582 1.3 cgd (char *)&ss, &szss) >= 0) {
583 1.3 cgd dv.dv_actlvl = ss.ss_slevel;
584 1.3 cgd dv.dv_actcmp = ss.ss_compart;
585 1.3 cgd dv.dv_minlvl = ss.ss_minlvl;
586 1.3 cgd dv.dv_maxlvl = ss.ss_maxlvl;
587 1.3 cgd dv.dv_valcmp = ss.ss_maxcmp;
588 1.3 cgd }
589 1.3 cgd #endif /* SO_SEC_MULTI */
590 1.3 cgd }
591 1.3 cgd #endif /* _SC_CRAY_SECURE_SYS */
592 1.3 cgd
593 1.24 lukem openlog("telnetd", LOG_PID, LOG_DAEMON);
594 1.1 cgd fromlen = sizeof (from);
595 1.1 cgd if (getpeername(0, (struct sockaddr *)&from, &fromlen) < 0) {
596 1.1 cgd fprintf(stderr, "%s: ", progname);
597 1.1 cgd perror("getpeername");
598 1.1 cgd _exit(1);
599 1.1 cgd }
600 1.1 cgd if (keepalive &&
601 1.3 cgd setsockopt(0, SOL_SOCKET, SO_KEEPALIVE,
602 1.3 cgd (char *)&on, sizeof (on)) < 0) {
603 1.1 cgd syslog(LOG_WARNING, "setsockopt (SO_KEEPALIVE): %m");
604 1.1 cgd }
605 1.1 cgd
606 1.1 cgd #if defined(IPPROTO_IP) && defined(IP_TOS)
607 1.19 itojun if (((struct sockaddr *)&from)->sa_family == AF_INET) {
608 1.1 cgd # if defined(HAS_GETTOS)
609 1.1 cgd struct tosent *tp;
610 1.1 cgd if (tos < 0 && (tp = gettosbyname("telnet", "tcp")))
611 1.1 cgd tos = tp->t_tos;
612 1.1 cgd # endif
613 1.1 cgd if (tos < 0)
614 1.1 cgd tos = 020; /* Low Delay bit */
615 1.1 cgd if (tos
616 1.3 cgd && (setsockopt(0, IPPROTO_IP, IP_TOS,
617 1.3 cgd (char *)&tos, sizeof(tos)) < 0)
618 1.1 cgd && (errno != ENOPROTOOPT) )
619 1.1 cgd syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
620 1.1 cgd }
621 1.1 cgd #endif /* defined(IPPROTO_IP) && defined(IP_TOS) */
622 1.16 itojun
623 1.1 cgd net = 0;
624 1.16 itojun doit((struct sockaddr *)&from);
625 1.1 cgd /* NOTREACHED */
626 1.9 mrg #ifdef __GNUC__
627 1.9 mrg exit(0);
628 1.9 mrg #endif
629 1.1 cgd } /* end of main */
630 1.1 cgd
631 1.1 cgd void
632 1.1 cgd usage()
633 1.1 cgd {
634 1.1 cgd fprintf(stderr, "Usage: telnetd");
635 1.3 cgd #ifdef AUTHENTICATION
636 1.3 cgd fprintf(stderr, " [-a (debug|other|user|valid|off|none)]\n\t");
637 1.1 cgd #endif
638 1.1 cgd #ifdef BFTPDAEMON
639 1.1 cgd fprintf(stderr, " [-B]");
640 1.1 cgd #endif
641 1.1 cgd fprintf(stderr, " [-debug]");
642 1.1 cgd #ifdef DIAGNOSTICS
643 1.1 cgd fprintf(stderr, " [-D (options|report|exercise|netdata|ptydata)]\n\t");
644 1.1 cgd #endif
645 1.31 wiz #ifdef ENCRYPTION
646 1.1 cgd fprintf(stderr, " [-edebug]");
647 1.1 cgd #endif
648 1.1 cgd fprintf(stderr, " [-h]");
649 1.3 cgd #if defined(LINEMODE) && defined(KLUDGELINEMODE)
650 1.3 cgd fprintf(stderr, " [-k]");
651 1.3 cgd #endif
652 1.1 cgd #ifdef LINEMODE
653 1.1 cgd fprintf(stderr, " [-l]");
654 1.1 cgd #endif
655 1.1 cgd fprintf(stderr, " [-n]");
656 1.1 cgd #ifdef CRAY
657 1.1 cgd fprintf(stderr, " [-r[lowpty]-[highpty]]");
658 1.1 cgd #endif
659 1.3 cgd fprintf(stderr, "\n\t");
660 1.15 dean #ifdef SECURELOGIN
661 1.1 cgd fprintf(stderr, " [-s]");
662 1.1 cgd #endif
663 1.3 cgd #ifdef HAS_GETTOS
664 1.3 cgd fprintf(stderr, " [-S tos]");
665 1.3 cgd #endif
666 1.3 cgd #ifdef AUTHENTICATION
667 1.1 cgd fprintf(stderr, " [-X auth-type]");
668 1.1 cgd #endif
669 1.3 cgd fprintf(stderr, " [-u utmp_hostname_length] [-U]");
670 1.1 cgd fprintf(stderr, " [port]\n");
671 1.1 cgd exit(1);
672 1.1 cgd }
673 1.1 cgd
674 1.1 cgd /*
675 1.1 cgd * getterminaltype
676 1.1 cgd *
677 1.1 cgd * Ask the other end to send along its terminal type and speed.
678 1.1 cgd * Output is the variable terminaltype filled in.
679 1.1 cgd */
680 1.3 cgd static unsigned char ttytype_sbbuf[] = {
681 1.3 cgd IAC, SB, TELOPT_TTYPE, TELQUAL_SEND, IAC, SE
682 1.3 cgd };
683 1.1 cgd
684 1.1 cgd int
685 1.1 cgd getterminaltype(name)
686 1.1 cgd char *name;
687 1.1 cgd {
688 1.1 cgd int retval = -1;
689 1.1 cgd
690 1.1 cgd settimer(baseline);
691 1.3 cgd #if defined(AUTHENTICATION)
692 1.1 cgd /*
693 1.1 cgd * Handle the Authentication option before we do anything else.
694 1.1 cgd */
695 1.1 cgd send_do(TELOPT_AUTHENTICATION, 1);
696 1.1 cgd while (his_will_wont_is_changing(TELOPT_AUTHENTICATION))
697 1.1 cgd ttloop();
698 1.1 cgd if (his_state_is_will(TELOPT_AUTHENTICATION)) {
699 1.1 cgd retval = auth_wait(name);
700 1.1 cgd }
701 1.1 cgd #endif
702 1.1 cgd
703 1.21 thorpej #ifdef ENCRYPTION
704 1.21 thorpej send_will(TELOPT_ENCRYPT, 1);
705 1.21 thorpej #endif /* ENCRYPTION */
706 1.1 cgd send_do(TELOPT_TTYPE, 1);
707 1.1 cgd send_do(TELOPT_TSPEED, 1);
708 1.1 cgd send_do(TELOPT_XDISPLOC, 1);
709 1.3 cgd send_do(TELOPT_NEW_ENVIRON, 1);
710 1.3 cgd send_do(TELOPT_OLD_ENVIRON, 1);
711 1.1 cgd while (
712 1.21 thorpej #ifdef ENCRYPTION
713 1.21 thorpej his_do_dont_is_changing(TELOPT_ENCRYPT) ||
714 1.21 thorpej #endif /* ENCRYPTION */
715 1.1 cgd his_will_wont_is_changing(TELOPT_TTYPE) ||
716 1.1 cgd his_will_wont_is_changing(TELOPT_TSPEED) ||
717 1.1 cgd his_will_wont_is_changing(TELOPT_XDISPLOC) ||
718 1.3 cgd his_will_wont_is_changing(TELOPT_NEW_ENVIRON) ||
719 1.3 cgd his_will_wont_is_changing(TELOPT_OLD_ENVIRON)) {
720 1.1 cgd ttloop();
721 1.1 cgd }
722 1.1 cgd if (his_state_is_will(TELOPT_TSPEED)) {
723 1.3 cgd static unsigned char sb[] =
724 1.3 cgd { IAC, SB, TELOPT_TSPEED, TELQUAL_SEND, IAC, SE };
725 1.1 cgd
726 1.27 wiz output_datalen((const char *)sb, sizeof sb);
727 1.4 jtk DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
728 1.1 cgd }
729 1.21 thorpej #ifdef ENCRYPTION
730 1.21 thorpej /*
731 1.21 thorpej * Wait for the negotiation of what type of encryption we can
732 1.21 thorpej * send with. If autoencrypt is not set, this will just return.
733 1.21 thorpej */
734 1.21 thorpej if (his_state_is_will(TELOPT_ENCRYPT)) {
735 1.21 thorpej encrypt_wait();
736 1.21 thorpej }
737 1.21 thorpej #endif /* ENCRYPTION */
738 1.1 cgd if (his_state_is_will(TELOPT_XDISPLOC)) {
739 1.3 cgd static unsigned char sb[] =
740 1.3 cgd { IAC, SB, TELOPT_XDISPLOC, TELQUAL_SEND, IAC, SE };
741 1.3 cgd
742 1.27 wiz output_datalen((const char *)sb, sizeof sb);
743 1.4 jtk DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
744 1.3 cgd }
745 1.3 cgd if (his_state_is_will(TELOPT_NEW_ENVIRON)) {
746 1.3 cgd static unsigned char sb[] =
747 1.3 cgd { IAC, SB, TELOPT_NEW_ENVIRON, TELQUAL_SEND, IAC, SE };
748 1.1 cgd
749 1.27 wiz output_datalen((const char *)sb, sizeof sb);
750 1.4 jtk DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
751 1.1 cgd }
752 1.3 cgd else if (his_state_is_will(TELOPT_OLD_ENVIRON)) {
753 1.3 cgd static unsigned char sb[] =
754 1.3 cgd { IAC, SB, TELOPT_OLD_ENVIRON, TELQUAL_SEND, IAC, SE };
755 1.1 cgd
756 1.27 wiz output_datalen((const char *)sb, sizeof sb);
757 1.4 jtk DIAG(TD_OPTIONS, printsub('>', sb + 2, sizeof sb - 2););
758 1.1 cgd }
759 1.1 cgd if (his_state_is_will(TELOPT_TTYPE)) {
760 1.1 cgd
761 1.27 wiz output_datalen((const char *)ttytype_sbbuf, sizeof ttytype_sbbuf);
762 1.4 jtk DIAG(TD_OPTIONS, printsub('>', ttytype_sbbuf + 2,
763 1.4 jtk sizeof ttytype_sbbuf - 2););
764 1.1 cgd }
765 1.1 cgd if (his_state_is_will(TELOPT_TSPEED)) {
766 1.1 cgd while (sequenceIs(tspeedsubopt, baseline))
767 1.1 cgd ttloop();
768 1.1 cgd }
769 1.1 cgd if (his_state_is_will(TELOPT_XDISPLOC)) {
770 1.1 cgd while (sequenceIs(xdisplocsubopt, baseline))
771 1.1 cgd ttloop();
772 1.1 cgd }
773 1.3 cgd if (his_state_is_will(TELOPT_NEW_ENVIRON)) {
774 1.1 cgd while (sequenceIs(environsubopt, baseline))
775 1.1 cgd ttloop();
776 1.1 cgd }
777 1.3 cgd if (his_state_is_will(TELOPT_OLD_ENVIRON)) {
778 1.3 cgd while (sequenceIs(oenvironsubopt, baseline))
779 1.3 cgd ttloop();
780 1.3 cgd }
781 1.1 cgd if (his_state_is_will(TELOPT_TTYPE)) {
782 1.1 cgd char first[256], last[256];
783 1.1 cgd
784 1.1 cgd while (sequenceIs(ttypesubopt, baseline))
785 1.1 cgd ttloop();
786 1.1 cgd
787 1.1 cgd /*
788 1.1 cgd * If the other side has already disabled the option, then
789 1.1 cgd * we have to just go with what we (might) have already gotten.
790 1.1 cgd */
791 1.1 cgd if (his_state_is_will(TELOPT_TTYPE) && !terminaltypeok(terminaltype)) {
792 1.37 itojun (void) strlcpy(first, terminaltype, sizeof(first));
793 1.1 cgd for(;;) {
794 1.1 cgd /*
795 1.1 cgd * Save the unknown name, and request the next name.
796 1.1 cgd */
797 1.37 itojun (void) strlcpy(last, terminaltype, sizeof(last));
798 1.1 cgd _gettermname();
799 1.1 cgd if (terminaltypeok(terminaltype))
800 1.1 cgd break;
801 1.1 cgd if ((strncmp(last, terminaltype, sizeof(last)) == 0) ||
802 1.1 cgd his_state_is_wont(TELOPT_TTYPE)) {
803 1.1 cgd /*
804 1.1 cgd * We've hit the end. If this is the same as
805 1.1 cgd * the first name, just go with it.
806 1.1 cgd */
807 1.1 cgd if (strncmp(first, terminaltype, sizeof(first)) == 0)
808 1.1 cgd break;
809 1.1 cgd /*
810 1.1 cgd * Get the terminal name one more time, so that
811 1.1 cgd * RFC1091 compliant telnets will cycle back to
812 1.1 cgd * the start of the list.
813 1.1 cgd */
814 1.1 cgd _gettermname();
815 1.21 thorpej if (strncmp(first, terminaltype, sizeof(first)) != 0) {
816 1.37 itojun (void) strlcpy(terminaltype, first, sizeof(first));
817 1.21 thorpej }
818 1.1 cgd break;
819 1.1 cgd }
820 1.1 cgd }
821 1.1 cgd }
822 1.1 cgd }
823 1.1 cgd return(retval);
824 1.1 cgd } /* end of getterminaltype */
825 1.1 cgd
826 1.1 cgd void
827 1.1 cgd _gettermname()
828 1.1 cgd {
829 1.1 cgd /*
830 1.1 cgd * If the client turned off the option,
831 1.1 cgd * we can't send another request, so we
832 1.1 cgd * just return.
833 1.1 cgd */
834 1.1 cgd if (his_state_is_wont(TELOPT_TTYPE))
835 1.1 cgd return;
836 1.1 cgd settimer(baseline);
837 1.27 wiz output_datalen((const char *)ttytype_sbbuf, sizeof ttytype_sbbuf);
838 1.4 jtk DIAG(TD_OPTIONS, printsub('>', ttytype_sbbuf + 2,
839 1.4 jtk sizeof ttytype_sbbuf - 2););
840 1.1 cgd while (sequenceIs(ttypesubopt, baseline))
841 1.1 cgd ttloop();
842 1.1 cgd }
843 1.1 cgd
844 1.1 cgd int
845 1.1 cgd terminaltypeok(s)
846 1.1 cgd char *s;
847 1.1 cgd {
848 1.1 cgd char buf[1024];
849 1.1 cgd
850 1.1 cgd if (terminaltype == NULL)
851 1.1 cgd return(1);
852 1.1 cgd
853 1.1 cgd /*
854 1.1 cgd * tgetent() will return 1 if the type is known, and
855 1.1 cgd * 0 if it is not known. If it returns -1, it couldn't
856 1.1 cgd * open the database. But if we can't open the database,
857 1.1 cgd * it won't help to say we failed, because we won't be
858 1.1 cgd * able to verify anything else. So, we treat -1 like 1.
859 1.1 cgd */
860 1.1 cgd if (tgetent(buf, s) == 0)
861 1.1 cgd return(0);
862 1.1 cgd return(1);
863 1.1 cgd }
864 1.1 cgd
865 1.1 cgd #ifndef MAXHOSTNAMELEN
866 1.1 cgd #define MAXHOSTNAMELEN 64
867 1.1 cgd #endif /* MAXHOSTNAMELEN */
868 1.1 cgd
869 1.1 cgd char *hostname;
870 1.13 mrg char host_name[MAXHOSTNAMELEN + 1];
871 1.13 mrg char remote_host_name[MAXHOSTNAMELEN + 1];
872 1.1 cgd
873 1.1 cgd #ifndef convex
874 1.1 cgd extern void telnet P((int, int));
875 1.1 cgd #else
876 1.1 cgd extern void telnet P((int, int, char *));
877 1.1 cgd #endif
878 1.1 cgd
879 1.1 cgd /*
880 1.1 cgd * Get a pty, scan input lines.
881 1.1 cgd */
882 1.9 mrg void
883 1.1 cgd doit(who)
884 1.16 itojun struct sockaddr *who;
885 1.1 cgd {
886 1.9 mrg char *host;
887 1.16 itojun int error;
888 1.1 cgd int level;
889 1.3 cgd int ptynum;
890 1.36 christos int flags;
891 1.1 cgd char user_name[256];
892 1.1 cgd
893 1.1 cgd /*
894 1.1 cgd * Find an available pty to use.
895 1.1 cgd */
896 1.1 cgd #ifndef convex
897 1.3 cgd pty = getpty(&ptynum);
898 1.1 cgd if (pty < 0)
899 1.1 cgd fatal(net, "All network ports in use");
900 1.1 cgd #else
901 1.1 cgd for (;;) {
902 1.1 cgd char *lp;
903 1.1 cgd
904 1.1 cgd if ((lp = getpty()) == NULL)
905 1.1 cgd fatal(net, "Out of ptys");
906 1.1 cgd
907 1.1 cgd if ((pty = open(lp, 2)) >= 0) {
908 1.23 christos (void)strlcpy(line, lp, sizeof(NULL16STR));
909 1.1 cgd line[5] = 't';
910 1.1 cgd break;
911 1.1 cgd }
912 1.1 cgd }
913 1.1 cgd #endif
914 1.1 cgd
915 1.3 cgd #if defined(_SC_CRAY_SECURE_SYS)
916 1.3 cgd /*
917 1.4 jtk * set ttyp line security label
918 1.3 cgd */
919 1.3 cgd if (secflag) {
920 1.3 cgd char slave_dev[16];
921 1.3 cgd
922 1.3 cgd sprintf(tty_dev, "/dev/pty/%03d", ptynum);
923 1.3 cgd if (setdevs(tty_dev, &dv) < 0)
924 1.3 cgd fatal(net, "cannot set pty security");
925 1.3 cgd sprintf(slave_dev, "/dev/ttyp%03d", ptynum);
926 1.3 cgd if (setdevs(slave_dev, &dv) < 0)
927 1.3 cgd fatal(net, "cannot set tty security");
928 1.3 cgd }
929 1.3 cgd #endif /* _SC_CRAY_SECURE_SYS */
930 1.3 cgd
931 1.36 christos flags = registerd_host_only ? NI_NAMEREQD : 0;
932 1.36 christos
933 1.1 cgd /* get name of connected client */
934 1.32 itojun error = getnameinfo(who, who->sa_len, remote_host_name,
935 1.36 christos sizeof(remote_host_name), NULL, 0, flags);
936 1.32 itojun
937 1.33 christos #if !defined(UTMPX) && !(defined(CRAY) || defined(__hpux)) && BSD <= 43
938 1.32 itojun if (!error && strlen(remote_host_name) > utmp_len)
939 1.32 itojun error = getnameinfo(who, who->sa_len, remote_host_name,
940 1.32 itojun sizeof(remote_host_name), NULL, 0, NI_NUMERICHOST);
941 1.33 christos #endif
942 1.3 cgd
943 1.16 itojun if (error) {
944 1.3 cgd fatal(net, "Couldn't resolve your address into a host name.\r\n\
945 1.4 jtk Please contact your net administrator");
946 1.9 mrg #ifdef __GNUC__
947 1.9 mrg host = NULL; /* XXX gcc */
948 1.9 mrg #endif
949 1.3 cgd }
950 1.16 itojun
951 1.1 cgd remote_host_name[sizeof(remote_host_name)-1] = 0;
952 1.1 cgd host = remote_host_name;
953 1.1 cgd
954 1.13 mrg (void)gethostname(host_name, sizeof (host_name));
955 1.13 mrg host_name[sizeof(host_name) - 1] = '\0';
956 1.1 cgd hostname = host_name;
957 1.1 cgd
958 1.21 thorpej #if defined(AUTHENTICATION) || defined(ENCRYPTION)
959 1.1 cgd auth_encrypt_init(hostname, host, "TELNETD", 1);
960 1.1 cgd #endif
961 1.1 cgd
962 1.1 cgd init_env();
963 1.1 cgd /*
964 1.1 cgd * get terminal type.
965 1.1 cgd */
966 1.1 cgd *user_name = 0;
967 1.1 cgd level = getterminaltype(user_name);
968 1.1 cgd setenv("TERM", terminaltype ? terminaltype : "network", 1);
969 1.1 cgd
970 1.1 cgd /*
971 1.1 cgd * Start up the login process on the slave side of the terminal
972 1.1 cgd */
973 1.1 cgd #ifndef convex
974 1.1 cgd startslave(host, level, user_name);
975 1.1 cgd
976 1.3 cgd #if defined(_SC_CRAY_SECURE_SYS)
977 1.3 cgd if (secflag) {
978 1.3 cgd if (setulvl(dv.dv_actlvl) < 0)
979 1.3 cgd fatal(net,"cannot setulvl()");
980 1.3 cgd if (setucmp(dv.dv_actcmp) < 0)
981 1.3 cgd fatal(net, "cannot setucmp()");
982 1.3 cgd }
983 1.3 cgd #endif /* _SC_CRAY_SECURE_SYS */
984 1.3 cgd
985 1.1 cgd telnet(net, pty); /* begin server processing */
986 1.1 cgd #else
987 1.1 cgd telnet(net, pty, host);
988 1.1 cgd #endif
989 1.1 cgd /*NOTREACHED*/
990 1.1 cgd } /* end of doit */
991 1.1 cgd
992 1.1 cgd
993 1.1 cgd /*
994 1.1 cgd * Main loop. Select from pty and network, and
995 1.1 cgd * hand data to telnet receiver finite state machine.
996 1.1 cgd */
997 1.1 cgd void
998 1.1 cgd #ifndef convex
999 1.1 cgd telnet(f, p)
1000 1.1 cgd #else
1001 1.1 cgd telnet(f, p, host)
1002 1.1 cgd #endif
1003 1.1 cgd int f, p;
1004 1.1 cgd #ifdef convex
1005 1.1 cgd char *host;
1006 1.1 cgd #endif
1007 1.1 cgd {
1008 1.1 cgd int on = 1;
1009 1.1 cgd #define TABBUFSIZ 512
1010 1.1 cgd char defent[TABBUFSIZ];
1011 1.1 cgd char defstrs[TABBUFSIZ];
1012 1.1 cgd #undef TABBUFSIZ
1013 1.20 ad char *HE, *HN, *IM, *IF, *ptyibuf2ptr;
1014 1.35 mycroft struct pollfd set[2];
1015 1.1 cgd
1016 1.1 cgd /*
1017 1.1 cgd * Initialize the slc mapping table.
1018 1.1 cgd */
1019 1.1 cgd get_slc_defaults();
1020 1.1 cgd
1021 1.1 cgd /*
1022 1.1 cgd * Do some tests where it is desireable to wait for a response.
1023 1.1 cgd * Rather than doing them slowly, one at a time, do them all
1024 1.1 cgd * at once.
1025 1.1 cgd */
1026 1.1 cgd if (my_state_is_wont(TELOPT_SGA))
1027 1.1 cgd send_will(TELOPT_SGA, 1);
1028 1.1 cgd /*
1029 1.1 cgd * Is the client side a 4.2 (NOT 4.3) system? We need to know this
1030 1.1 cgd * because 4.2 clients are unable to deal with TCP urgent data.
1031 1.1 cgd *
1032 1.1 cgd * To find out, we send out a "DO ECHO". If the remote system
1033 1.1 cgd * answers "WILL ECHO" it is probably a 4.2 client, and we note
1034 1.1 cgd * that fact ("WILL ECHO" ==> that the client will echo what
1035 1.1 cgd * WE, the server, sends it; it does NOT mean that the client will
1036 1.1 cgd * echo the terminal input).
1037 1.1 cgd */
1038 1.1 cgd send_do(TELOPT_ECHO, 1);
1039 1.1 cgd
1040 1.1 cgd #ifdef LINEMODE
1041 1.1 cgd if (his_state_is_wont(TELOPT_LINEMODE)) {
1042 1.1 cgd /* Query the peer for linemode support by trying to negotiate
1043 1.1 cgd * the linemode option.
1044 1.1 cgd */
1045 1.1 cgd linemode = 0;
1046 1.1 cgd editmode = 0;
1047 1.1 cgd send_do(TELOPT_LINEMODE, 1); /* send do linemode */
1048 1.1 cgd }
1049 1.1 cgd #endif /* LINEMODE */
1050 1.1 cgd
1051 1.1 cgd /*
1052 1.1 cgd * Send along a couple of other options that we wish to negotiate.
1053 1.1 cgd */
1054 1.1 cgd send_do(TELOPT_NAWS, 1);
1055 1.1 cgd send_will(TELOPT_STATUS, 1);
1056 1.3 cgd flowmode = 1; /* default flow control state */
1057 1.3 cgd restartany = -1; /* uninitialized... */
1058 1.1 cgd send_do(TELOPT_LFLOW, 1);
1059 1.1 cgd
1060 1.1 cgd /*
1061 1.1 cgd * Spin, waiting for a response from the DO ECHO. However,
1062 1.1 cgd * some REALLY DUMB telnets out there might not respond
1063 1.1 cgd * to the DO ECHO. So, we spin looking for NAWS, (most dumb
1064 1.1 cgd * telnets so far seem to respond with WONT for a DO that
1065 1.1 cgd * they don't understand...) because by the time we get the
1066 1.1 cgd * response, it will already have processed the DO ECHO.
1067 1.1 cgd * Kludge upon kludge.
1068 1.1 cgd */
1069 1.1 cgd while (his_will_wont_is_changing(TELOPT_NAWS))
1070 1.1 cgd ttloop();
1071 1.1 cgd
1072 1.1 cgd /*
1073 1.1 cgd * But...
1074 1.1 cgd * The client might have sent a WILL NAWS as part of its
1075 1.1 cgd * startup code; if so, we'll be here before we get the
1076 1.1 cgd * response to the DO ECHO. We'll make the assumption
1077 1.1 cgd * that any implementation that understands about NAWS
1078 1.1 cgd * is a modern enough implementation that it will respond
1079 1.1 cgd * to our DO ECHO request; hence we'll do another spin
1080 1.1 cgd * waiting for the ECHO option to settle down, which is
1081 1.1 cgd * what we wanted to do in the first place...
1082 1.1 cgd */
1083 1.1 cgd if (his_want_state_is_will(TELOPT_ECHO) &&
1084 1.1 cgd his_state_is_will(TELOPT_NAWS)) {
1085 1.1 cgd while (his_will_wont_is_changing(TELOPT_ECHO))
1086 1.1 cgd ttloop();
1087 1.1 cgd }
1088 1.1 cgd /*
1089 1.1 cgd * On the off chance that the telnet client is broken and does not
1090 1.1 cgd * respond to the DO ECHO we sent, (after all, we did send the
1091 1.1 cgd * DO NAWS negotiation after the DO ECHO, and we won't get here
1092 1.1 cgd * until a response to the DO NAWS comes back) simulate the
1093 1.1 cgd * receipt of a will echo. This will also send a WONT ECHO
1094 1.1 cgd * to the client, since we assume that the client failed to
1095 1.1 cgd * respond because it believes that it is already in DO ECHO
1096 1.1 cgd * mode, which we do not want.
1097 1.1 cgd */
1098 1.1 cgd if (his_want_state_is_will(TELOPT_ECHO)) {
1099 1.1 cgd DIAG(TD_OPTIONS,
1100 1.26 itojun {output_data("td: simulating recv\r\n");});
1101 1.1 cgd willoption(TELOPT_ECHO);
1102 1.1 cgd }
1103 1.1 cgd
1104 1.1 cgd /*
1105 1.1 cgd * Finally, to clean things up, we turn on our echo. This
1106 1.1 cgd * will break stupid 4.2 telnets out of local terminal echo.
1107 1.1 cgd */
1108 1.1 cgd
1109 1.1 cgd if (my_state_is_wont(TELOPT_ECHO))
1110 1.1 cgd send_will(TELOPT_ECHO, 1);
1111 1.1 cgd
1112 1.3 cgd #ifndef STREAMSPTY
1113 1.1 cgd /*
1114 1.1 cgd * Turn on packet mode
1115 1.1 cgd */
1116 1.1 cgd (void) ioctl(p, TIOCPKT, (char *)&on);
1117 1.3 cgd #endif
1118 1.3 cgd
1119 1.1 cgd #if defined(LINEMODE) && defined(KLUDGELINEMODE)
1120 1.1 cgd /*
1121 1.1 cgd * Continuing line mode support. If client does not support
1122 1.1 cgd * real linemode, attempt to negotiate kludge linemode by sending
1123 1.1 cgd * the do timing mark sequence.
1124 1.1 cgd */
1125 1.1 cgd if (lmodetype < REAL_LINEMODE)
1126 1.1 cgd send_do(TELOPT_TM, 1);
1127 1.1 cgd #endif /* defined(LINEMODE) && defined(KLUDGELINEMODE) */
1128 1.1 cgd
1129 1.1 cgd /*
1130 1.1 cgd * Call telrcv() once to pick up anything received during
1131 1.1 cgd * terminal type negotiation, 4.2/4.3 determination, and
1132 1.1 cgd * linemode negotiation.
1133 1.1 cgd */
1134 1.1 cgd telrcv();
1135 1.1 cgd
1136 1.1 cgd (void) ioctl(f, FIONBIO, (char *)&on);
1137 1.1 cgd (void) ioctl(p, FIONBIO, (char *)&on);
1138 1.1 cgd
1139 1.1 cgd #if defined(SO_OOBINLINE)
1140 1.34 mycroft (void) setsockopt(f, SOL_SOCKET, SO_OOBINLINE,
1141 1.3 cgd (char *)&on, sizeof on);
1142 1.1 cgd #endif /* defined(SO_OOBINLINE) */
1143 1.1 cgd
1144 1.1 cgd #ifdef SIGTSTP
1145 1.1 cgd (void) signal(SIGTSTP, SIG_IGN);
1146 1.1 cgd #endif
1147 1.1 cgd #ifdef SIGTTOU
1148 1.1 cgd /*
1149 1.1 cgd * Ignoring SIGTTOU keeps the kernel from blocking us
1150 1.1 cgd * in ttioct() in /sys/tty.c.
1151 1.1 cgd */
1152 1.1 cgd (void) signal(SIGTTOU, SIG_IGN);
1153 1.1 cgd #endif
1154 1.1 cgd
1155 1.1 cgd (void) signal(SIGCHLD, cleanup);
1156 1.1 cgd
1157 1.1 cgd
1158 1.1 cgd #ifdef TIOCNOTTY
1159 1.1 cgd {
1160 1.1 cgd register int t;
1161 1.1 cgd t = open(_PATH_TTY, O_RDWR);
1162 1.1 cgd if (t >= 0) {
1163 1.1 cgd (void) ioctl(t, TIOCNOTTY, (char *)0);
1164 1.1 cgd (void) close(t);
1165 1.1 cgd }
1166 1.1 cgd }
1167 1.1 cgd #endif
1168 1.1 cgd
1169 1.1 cgd
1170 1.1 cgd /*
1171 1.1 cgd * Show banner that getty never gave.
1172 1.1 cgd *
1173 1.1 cgd * We put the banner in the pty input buffer. This way, it
1174 1.1 cgd * gets carriage return null processing, etc., just like all
1175 1.1 cgd * other pty --> client data.
1176 1.1 cgd */
1177 1.1 cgd
1178 1.1 cgd if (getenv("USER"))
1179 1.1 cgd hostinfo = 0;
1180 1.1 cgd
1181 1.6 tls if (getent(defent, gettyname) == 1) {
1182 1.1 cgd char *cp=defstrs;
1183 1.1 cgd
1184 1.1 cgd HE = getstr("he", &cp);
1185 1.1 cgd HN = getstr("hn", &cp);
1186 1.1 cgd IM = getstr("im", &cp);
1187 1.20 ad IF = getstr("if", &cp);
1188 1.1 cgd if (HN && *HN)
1189 1.23 christos (void)strlcpy(host_name, HN, sizeof(host_name));
1190 1.1 cgd if (IM == 0)
1191 1.1 cgd IM = "";
1192 1.1 cgd } else {
1193 1.1 cgd IM = DEFAULT_IM;
1194 1.1 cgd HE = 0;
1195 1.1 cgd }
1196 1.1 cgd edithost(HE, host_name);
1197 1.20 ad ptyibuf2ptr = ptyibuf2;
1198 1.20 ad if (hostinfo) {
1199 1.20 ad if (IF) {
1200 1.20 ad char buf[_POSIX2_LINE_MAX];
1201 1.20 ad FILE *fd;
1202 1.20 ad
1203 1.20 ad if ((fd = fopen(IF, "r")) != NULL) {
1204 1.20 ad while (fgets(buf, sizeof(buf) - 1, fd) != NULL)
1205 1.20 ad ptyibuf2ptr = putf(buf, ptyibuf2ptr);
1206 1.20 ad fclose(fd);
1207 1.20 ad }
1208 1.20 ad }
1209 1.20 ad if (*IM)
1210 1.20 ad ptyibuf2ptr = putf(IM, ptyibuf2ptr);
1211 1.20 ad }
1212 1.1 cgd
1213 1.1 cgd if (pcc)
1214 1.20 ad strncpy(ptyibuf2ptr, ptyip, pcc+1);
1215 1.1 cgd ptyip = ptyibuf2;
1216 1.1 cgd pcc = strlen(ptyip);
1217 1.1 cgd #ifdef LINEMODE
1218 1.1 cgd /*
1219 1.1 cgd * Last check to make sure all our states are correct.
1220 1.1 cgd */
1221 1.1 cgd init_termbuf();
1222 1.1 cgd localstat();
1223 1.1 cgd #endif /* LINEMODE */
1224 1.1 cgd
1225 1.1 cgd DIAG(TD_REPORT,
1226 1.26 itojun {output_data("td: Entering processing loop\r\n");});
1227 1.1 cgd
1228 1.1 cgd #ifdef convex
1229 1.1 cgd startslave(host);
1230 1.1 cgd #endif
1231 1.1 cgd
1232 1.35 mycroft set[0].fd = f;
1233 1.35 mycroft set[1].fd = p;
1234 1.1 cgd for (;;) {
1235 1.1 cgd register int c;
1236 1.1 cgd
1237 1.1 cgd if (ncc < 0 && pcc < 0)
1238 1.1 cgd break;
1239 1.1 cgd
1240 1.1 cgd /*
1241 1.1 cgd * Never look for input if there's still
1242 1.1 cgd * stuff in the corresponding output buffer
1243 1.1 cgd */
1244 1.34 mycroft set[0].events = 0;
1245 1.34 mycroft set[1].events = 0;
1246 1.34 mycroft if (nfrontp - nbackp || pcc > 0)
1247 1.34 mycroft set[0].events |= POLLOUT;
1248 1.34 mycroft else
1249 1.34 mycroft set[1].events |= POLLIN;
1250 1.34 mycroft if (pfrontp - pbackp || ncc > 0)
1251 1.34 mycroft set[1].events |= POLLOUT;
1252 1.34 mycroft else
1253 1.34 mycroft set[0].events |= POLLIN;
1254 1.34 mycroft if (!SYNCHing)
1255 1.34 mycroft set[0].events |= POLLPRI;
1256 1.34 mycroft
1257 1.34 mycroft if ((c = poll(set, 2, INFTIM)) < 1) {
1258 1.1 cgd if (c == -1) {
1259 1.1 cgd if (errno == EINTR) {
1260 1.1 cgd continue;
1261 1.1 cgd }
1262 1.1 cgd }
1263 1.1 cgd sleep(5);
1264 1.1 cgd continue;
1265 1.1 cgd }
1266 1.1 cgd
1267 1.1 cgd /*
1268 1.1 cgd * Any urgent data?
1269 1.1 cgd */
1270 1.34 mycroft if (set[0].revents & POLLPRI) {
1271 1.1 cgd SYNCHing = 1;
1272 1.1 cgd }
1273 1.1 cgd
1274 1.1 cgd /*
1275 1.1 cgd * Something to read from the network...
1276 1.1 cgd */
1277 1.34 mycroft if (set[0].revents && POLLIN) {
1278 1.1 cgd #if !defined(SO_OOBINLINE)
1279 1.1 cgd /*
1280 1.1 cgd * In 4.2 (and 4.3 beta) systems, the
1281 1.1 cgd * OOB indication and data handling in the kernel
1282 1.1 cgd * is such that if two separate TCP Urgent requests
1283 1.1 cgd * come in, one byte of TCP data will be overlaid.
1284 1.1 cgd * This is fatal for Telnet, but we try to live
1285 1.1 cgd * with it.
1286 1.1 cgd *
1287 1.1 cgd * In addition, in 4.2 (and...), a special protocol
1288 1.1 cgd * is needed to pick up the TCP Urgent data in
1289 1.1 cgd * the correct sequence.
1290 1.1 cgd *
1291 1.1 cgd * What we do is: if we think we are in urgent
1292 1.1 cgd * mode, we look to see if we are "at the mark".
1293 1.1 cgd * If we are, we do an OOB receive. If we run
1294 1.1 cgd * this twice, we will do the OOB receive twice,
1295 1.1 cgd * but the second will fail, since the second
1296 1.1 cgd * time we were "at the mark", but there wasn't
1297 1.1 cgd * any data there (the kernel doesn't reset
1298 1.1 cgd * "at the mark" until we do a normal read).
1299 1.1 cgd * Once we've read the OOB data, we go ahead
1300 1.1 cgd * and do normal reads.
1301 1.1 cgd *
1302 1.1 cgd * There is also another problem, which is that
1303 1.1 cgd * since the OOB byte we read doesn't put us
1304 1.1 cgd * out of OOB state, and since that byte is most
1305 1.1 cgd * likely the TELNET DM (data mark), we would
1306 1.1 cgd * stay in the TELNET SYNCH (SYNCHing) state.
1307 1.1 cgd * So, clocks to the rescue. If we've "just"
1308 1.1 cgd * received a DM, then we test for the
1309 1.1 cgd * presence of OOB data when the receive OOB
1310 1.1 cgd * fails (and AFTER we did the normal mode read
1311 1.1 cgd * to clear "at the mark").
1312 1.1 cgd */
1313 1.1 cgd if (SYNCHing) {
1314 1.1 cgd int atmark;
1315 1.1 cgd
1316 1.34 mycroft (void) ioctl(f, SIOCATMARK, (char *)&atmark);
1317 1.1 cgd if (atmark) {
1318 1.34 mycroft ncc = recv(f, netibuf, sizeof (netibuf), MSG_OOB);
1319 1.1 cgd if ((ncc == -1) && (errno == EINVAL)) {
1320 1.34 mycroft ncc = read(f, netibuf, sizeof (netibuf));
1321 1.1 cgd if (sequenceIs(didnetreceive, gotDM)) {
1322 1.34 mycroft SYNCHing = stilloob(f);
1323 1.1 cgd }
1324 1.1 cgd }
1325 1.1 cgd } else {
1326 1.34 mycroft ncc = read(f, netibuf, sizeof (netibuf));
1327 1.1 cgd }
1328 1.1 cgd } else {
1329 1.34 mycroft ncc = read(f, netibuf, sizeof (netibuf));
1330 1.1 cgd }
1331 1.1 cgd settimer(didnetreceive);
1332 1.1 cgd #else /* !defined(SO_OOBINLINE)) */
1333 1.34 mycroft ncc = read(f, netibuf, sizeof (netibuf));
1334 1.1 cgd #endif /* !defined(SO_OOBINLINE)) */
1335 1.1 cgd if (ncc < 0 && errno == EWOULDBLOCK)
1336 1.1 cgd ncc = 0;
1337 1.1 cgd else {
1338 1.1 cgd if (ncc <= 0) {
1339 1.1 cgd break;
1340 1.1 cgd }
1341 1.1 cgd netip = netibuf;
1342 1.1 cgd }
1343 1.1 cgd DIAG((TD_REPORT | TD_NETDATA),
1344 1.26 itojun {output_data("td: netread %d chars\r\n", ncc);});
1345 1.1 cgd DIAG(TD_NETDATA, printdata("nd", netip, ncc));
1346 1.1 cgd }
1347 1.1 cgd
1348 1.1 cgd /*
1349 1.1 cgd * Something to read from the pty...
1350 1.1 cgd */
1351 1.34 mycroft if (set[1].revents & POLLIN) {
1352 1.3 cgd #ifndef STREAMSPTY
1353 1.1 cgd pcc = read(p, ptyibuf, BUFSIZ);
1354 1.3 cgd #else
1355 1.3 cgd pcc = readstream(p, ptyibuf, BUFSIZ);
1356 1.3 cgd #endif
1357 1.1 cgd /*
1358 1.1 cgd * On some systems, if we try to read something
1359 1.1 cgd * off the master side before the slave side is
1360 1.1 cgd * opened, we get EIO.
1361 1.1 cgd */
1362 1.3 cgd if (pcc < 0 && (errno == EWOULDBLOCK ||
1363 1.3 cgd #ifdef EAGAIN
1364 1.3 cgd errno == EAGAIN ||
1365 1.3 cgd #endif
1366 1.3 cgd errno == EIO)) {
1367 1.1 cgd pcc = 0;
1368 1.1 cgd } else {
1369 1.1 cgd if (pcc <= 0)
1370 1.1 cgd break;
1371 1.1 cgd #ifdef LINEMODE
1372 1.1 cgd /*
1373 1.1 cgd * If ioctl from pty, pass it through net
1374 1.1 cgd */
1375 1.1 cgd if (ptyibuf[0] & TIOCPKT_IOCTL) {
1376 1.1 cgd copy_termbuf(ptyibuf+1, pcc-1);
1377 1.1 cgd localstat();
1378 1.1 cgd pcc = 1;
1379 1.1 cgd }
1380 1.1 cgd #endif /* LINEMODE */
1381 1.1 cgd if (ptyibuf[0] & TIOCPKT_FLUSHWRITE) {
1382 1.1 cgd netclear(); /* clear buffer back */
1383 1.1 cgd #ifndef NO_URGENT
1384 1.1 cgd /*
1385 1.1 cgd * There are client telnets on some
1386 1.1 cgd * operating systems get screwed up
1387 1.1 cgd * royally if we send them urgent
1388 1.1 cgd * mode data.
1389 1.1 cgd */
1390 1.26 itojun output_data("%c%c", IAC, DM);
1391 1.26 itojun neturg = nfrontp - 1; /* off by one XXX */
1392 1.4 jtk DIAG(TD_OPTIONS,
1393 1.4 jtk printoption("td: send IAC", DM));
1394 1.4 jtk
1395 1.1 cgd #endif
1396 1.1 cgd }
1397 1.1 cgd if (his_state_is_will(TELOPT_LFLOW) &&
1398 1.1 cgd (ptyibuf[0] &
1399 1.1 cgd (TIOCPKT_NOSTOP|TIOCPKT_DOSTOP))) {
1400 1.3 cgd int newflow =
1401 1.3 cgd ptyibuf[0] & TIOCPKT_DOSTOP ? 1 : 0;
1402 1.3 cgd if (newflow != flowmode) {
1403 1.3 cgd flowmode = newflow;
1404 1.26 itojun (void) output_data(
1405 1.3 cgd "%c%c%c%c%c%c",
1406 1.3 cgd IAC, SB, TELOPT_LFLOW,
1407 1.3 cgd flowmode ? LFLOW_ON
1408 1.3 cgd : LFLOW_OFF,
1409 1.3 cgd IAC, SE);
1410 1.4 jtk DIAG(TD_OPTIONS, printsub('>',
1411 1.26 itojun (unsigned char *)nfrontp - 4,
1412 1.4 jtk 4););
1413 1.3 cgd }
1414 1.1 cgd }
1415 1.1 cgd pcc--;
1416 1.1 cgd ptyip = ptyibuf+1;
1417 1.1 cgd }
1418 1.1 cgd }
1419 1.1 cgd
1420 1.1 cgd while (pcc > 0) {
1421 1.1 cgd if ((&netobuf[BUFSIZ] - nfrontp) < 2)
1422 1.1 cgd break;
1423 1.1 cgd c = *ptyip++ & 0377, pcc--;
1424 1.1 cgd if (c == IAC)
1425 1.26 itojun output_data("%c", c);
1426 1.26 itojun output_data("%c", c);
1427 1.1 cgd if ((c == '\r') && (my_state_is_wont(TELOPT_BINARY))) {
1428 1.1 cgd if (pcc > 0 && ((*ptyip & 0377) == '\n')) {
1429 1.26 itojun output_data("%c", *ptyip++ & 0377);
1430 1.1 cgd pcc--;
1431 1.1 cgd } else
1432 1.26 itojun output_datalen("\0", 1);
1433 1.1 cgd }
1434 1.1 cgd }
1435 1.1 cgd
1436 1.34 mycroft if (set[0].revents & POLLOUT && (nfrontp - nbackp) > 0)
1437 1.1 cgd netflush();
1438 1.1 cgd if (ncc > 0)
1439 1.1 cgd telrcv();
1440 1.34 mycroft if (set[1].revents & POLLOUT && (pfrontp - pbackp) > 0)
1441 1.1 cgd ptyflush();
1442 1.1 cgd }
1443 1.1 cgd cleanup(0);
1444 1.1 cgd } /* end of telnet */
1445 1.4 jtk
1446 1.1 cgd #ifndef TCSIG
1447 1.1 cgd # ifdef TIOCSIG
1448 1.1 cgd # define TCSIG TIOCSIG
1449 1.1 cgd # endif
1450 1.1 cgd #endif
1451 1.3 cgd
1452 1.3 cgd #ifdef STREAMSPTY
1453 1.3 cgd
1454 1.3 cgd int flowison = -1; /* current state of flow: -1 is unknown */
1455 1.3 cgd
1456 1.3 cgd int readstream(p, ibuf, bufsize)
1457 1.3 cgd int p;
1458 1.3 cgd char *ibuf;
1459 1.3 cgd int bufsize;
1460 1.3 cgd {
1461 1.3 cgd int flags = 0;
1462 1.3 cgd int ret = 0;
1463 1.3 cgd struct termios *tsp;
1464 1.3 cgd struct termio *tp;
1465 1.3 cgd struct iocblk *ip;
1466 1.3 cgd char vstop, vstart;
1467 1.3 cgd int ixon;
1468 1.3 cgd int newflow;
1469 1.3 cgd
1470 1.3 cgd strbufc.maxlen = BUFSIZ;
1471 1.3 cgd strbufc.buf = (char *)ctlbuf;
1472 1.3 cgd strbufd.maxlen = bufsize-1;
1473 1.3 cgd strbufd.len = 0;
1474 1.3 cgd strbufd.buf = ibuf+1;
1475 1.3 cgd ibuf[0] = 0;
1476 1.3 cgd
1477 1.3 cgd ret = getmsg(p, &strbufc, &strbufd, &flags);
1478 1.3 cgd if (ret < 0) /* error of some sort -- probably EAGAIN */
1479 1.3 cgd return(-1);
1480 1.3 cgd
1481 1.3 cgd if (strbufc.len <= 0 || ctlbuf[0] == M_DATA) {
1482 1.3 cgd /* data message */
1483 1.3 cgd if (strbufd.len > 0) { /* real data */
1484 1.3 cgd return(strbufd.len + 1); /* count header char */
1485 1.3 cgd } else {
1486 1.3 cgd /* nothing there */
1487 1.3 cgd errno = EAGAIN;
1488 1.3 cgd return(-1);
1489 1.3 cgd }
1490 1.3 cgd }
1491 1.3 cgd
1492 1.3 cgd /*
1493 1.3 cgd * It's a control message. Return 1, to look at the flag we set
1494 1.3 cgd */
1495 1.3 cgd
1496 1.3 cgd switch (ctlbuf[0]) {
1497 1.3 cgd case M_FLUSH:
1498 1.3 cgd if (ibuf[1] & FLUSHW)
1499 1.3 cgd ibuf[0] = TIOCPKT_FLUSHWRITE;
1500 1.3 cgd return(1);
1501 1.3 cgd
1502 1.3 cgd case M_IOCTL:
1503 1.3 cgd ip = (struct iocblk *) (ibuf+1);
1504 1.3 cgd
1505 1.3 cgd switch (ip->ioc_cmd) {
1506 1.3 cgd case TCSETS:
1507 1.3 cgd case TCSETSW:
1508 1.3 cgd case TCSETSF:
1509 1.3 cgd tsp = (struct termios *)
1510 1.3 cgd (ibuf+1 + sizeof(struct iocblk));
1511 1.3 cgd vstop = tsp->c_cc[VSTOP];
1512 1.3 cgd vstart = tsp->c_cc[VSTART];
1513 1.3 cgd ixon = tsp->c_iflag & IXON;
1514 1.3 cgd break;
1515 1.3 cgd case TCSETA:
1516 1.3 cgd case TCSETAW:
1517 1.3 cgd case TCSETAF:
1518 1.3 cgd tp = (struct termio *) (ibuf+1 + sizeof(struct iocblk));
1519 1.3 cgd vstop = tp->c_cc[VSTOP];
1520 1.3 cgd vstart = tp->c_cc[VSTART];
1521 1.4 jtk ixon = tp->c_iflag & IXON;
1522 1.3 cgd break;
1523 1.3 cgd default:
1524 1.3 cgd errno = EAGAIN;
1525 1.3 cgd return(-1);
1526 1.3 cgd }
1527 1.3 cgd
1528 1.3 cgd newflow = (ixon && (vstart == 021) && (vstop == 023)) ? 1 : 0;
1529 1.3 cgd if (newflow != flowison) { /* it's a change */
1530 1.3 cgd flowison = newflow;
1531 1.3 cgd ibuf[0] = newflow ? TIOCPKT_DOSTOP : TIOCPKT_NOSTOP;
1532 1.3 cgd return(1);
1533 1.3 cgd }
1534 1.3 cgd }
1535 1.3 cgd
1536 1.3 cgd /* nothing worth doing anything about */
1537 1.3 cgd errno = EAGAIN;
1538 1.3 cgd return(-1);
1539 1.3 cgd }
1540 1.3 cgd #endif /* STREAMSPTY */
1541 1.1 cgd
1542 1.1 cgd /*
1543 1.1 cgd * Send interrupt to process on other side of pty.
1544 1.1 cgd * If it is in raw mode, just write NULL;
1545 1.1 cgd * otherwise, write intr char.
1546 1.1 cgd */
1547 1.1 cgd void
1548 1.1 cgd interrupt()
1549 1.1 cgd {
1550 1.1 cgd ptyflush(); /* half-hearted */
1551 1.1 cgd
1552 1.4 jtk #if defined(STREAMSPTY) && defined(TIOCSIGNAL)
1553 1.4 jtk /* Streams PTY style ioctl to post a signal */
1554 1.4 jtk {
1555 1.4 jtk int sig = SIGINT;
1556 1.4 jtk (void) ioctl(pty, TIOCSIGNAL, &sig);
1557 1.4 jtk (void) ioctl(pty, I_FLUSH, FLUSHR);
1558 1.4 jtk }
1559 1.4 jtk #else
1560 1.1 cgd #ifdef TCSIG
1561 1.1 cgd (void) ioctl(pty, TCSIG, (char *)SIGINT);
1562 1.1 cgd #else /* TCSIG */
1563 1.1 cgd init_termbuf();
1564 1.1 cgd *pfrontp++ = slctab[SLC_IP].sptr ?
1565 1.1 cgd (unsigned char)*slctab[SLC_IP].sptr : '\177';
1566 1.1 cgd #endif /* TCSIG */
1567 1.4 jtk #endif
1568 1.1 cgd }
1569 1.1 cgd
1570 1.1 cgd /*
1571 1.1 cgd * Send quit to process on other side of pty.
1572 1.1 cgd * If it is in raw mode, just write NULL;
1573 1.1 cgd * otherwise, write quit char.
1574 1.1 cgd */
1575 1.1 cgd void
1576 1.1 cgd sendbrk()
1577 1.1 cgd {
1578 1.1 cgd ptyflush(); /* half-hearted */
1579 1.1 cgd #ifdef TCSIG
1580 1.1 cgd (void) ioctl(pty, TCSIG, (char *)SIGQUIT);
1581 1.1 cgd #else /* TCSIG */
1582 1.1 cgd init_termbuf();
1583 1.1 cgd *pfrontp++ = slctab[SLC_ABORT].sptr ?
1584 1.1 cgd (unsigned char)*slctab[SLC_ABORT].sptr : '\034';
1585 1.1 cgd #endif /* TCSIG */
1586 1.1 cgd }
1587 1.1 cgd
1588 1.1 cgd void
1589 1.1 cgd sendsusp()
1590 1.1 cgd {
1591 1.1 cgd #ifdef SIGTSTP
1592 1.1 cgd ptyflush(); /* half-hearted */
1593 1.1 cgd # ifdef TCSIG
1594 1.1 cgd (void) ioctl(pty, TCSIG, (char *)SIGTSTP);
1595 1.1 cgd # else /* TCSIG */
1596 1.1 cgd *pfrontp++ = slctab[SLC_SUSP].sptr ?
1597 1.1 cgd (unsigned char)*slctab[SLC_SUSP].sptr : '\032';
1598 1.1 cgd # endif /* TCSIG */
1599 1.1 cgd #endif /* SIGTSTP */
1600 1.1 cgd }
1601 1.1 cgd
1602 1.1 cgd /*
1603 1.1 cgd * When we get an AYT, if ^T is enabled, use that. Otherwise,
1604 1.1 cgd * just send back "[Yes]".
1605 1.1 cgd */
1606 1.1 cgd void
1607 1.1 cgd recv_ayt()
1608 1.1 cgd {
1609 1.1 cgd #if defined(SIGINFO) && defined(TCSIG)
1610 1.1 cgd if (slctab[SLC_AYT].sptr && *slctab[SLC_AYT].sptr != _POSIX_VDISABLE) {
1611 1.1 cgd (void) ioctl(pty, TCSIG, (char *)SIGINFO);
1612 1.1 cgd return;
1613 1.1 cgd }
1614 1.1 cgd #endif
1615 1.26 itojun (void) output_data("\r\n[Yes]\r\n");
1616 1.1 cgd }
1617 1.1 cgd
1618 1.1 cgd void
1619 1.1 cgd doeof()
1620 1.1 cgd {
1621 1.1 cgd init_termbuf();
1622 1.1 cgd
1623 1.1 cgd #if defined(LINEMODE) && defined(USE_TERMIO) && (VEOF == VMIN)
1624 1.1 cgd if (!tty_isediting()) {
1625 1.1 cgd extern char oldeofc;
1626 1.1 cgd *pfrontp++ = oldeofc;
1627 1.1 cgd return;
1628 1.1 cgd }
1629 1.1 cgd #endif
1630 1.1 cgd *pfrontp++ = slctab[SLC_EOF].sptr ?
1631 1.1 cgd (unsigned char)*slctab[SLC_EOF].sptr : '\004';
1632 1.1 cgd }
1633