sys_bsd.c revision 1.21 1 /* $NetBSD: sys_bsd.c,v 1.21 2002/09/23 03:29:10 itojun Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #include <sys/cdefs.h>
37 #ifndef lint
38 #if 0
39 from: static char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
40 #else
41 __RCSID("$NetBSD: sys_bsd.c,v 1.21 2002/09/23 03:29:10 itojun Exp $");
42 #endif
43 #endif /* not lint */
44
45 /*
46 * The following routines try to encapsulate what is system dependent
47 * (at least between 4.x and dos) which is used in telnet.c.
48 */
49
50
51 #include <fcntl.h>
52 #include <sys/types.h>
53 #include <sys/time.h>
54 #include <sys/socket.h>
55 #include <signal.h>
56 #include <stdlib.h>
57 #include <unistd.h>
58 #include <errno.h>
59 #include <poll.h>
60 #include <arpa/telnet.h>
61
62 #include "ring.h"
63
64 #include "fdset.h"
65
66 #include "defines.h"
67 #include "externs.h"
68 #include "types.h"
69
70 #if defined(CRAY) || (defined(USE_TERMIO) && !defined(SYSV_TERMIO))
71 #define SIG_FUNC_RET void
72 #else
73 #define SIG_FUNC_RET int
74 #endif
75
76 #ifdef SIGTSTP
77 SIG_FUNC_RET susp(int);
78 #endif /* SIGTSTP */
79 #ifdef SIGINFO
80 SIG_FUNC_RET ayt(int);
81 #endif
82
83 SIG_FUNC_RET intr(int);
84 SIG_FUNC_RET intr2(int);
85 SIG_FUNC_RET sendwin(int);
86 SIG_FUNC_RET deadpeer(int);
87
88
89 int
90 tout, /* Output file descriptor */
91 tin, /* Input file descriptor */
92 net;
93
94 #ifndef USE_TERMIO
95 struct tchars otc = { 0 }, ntc = { 0 };
96 struct ltchars oltc = { 0 }, nltc = { 0 };
97 struct sgttyb ottyb = { 0 }, nttyb = { 0 };
98 int olmode = 0;
99 # define cfgetispeed(ptr) (ptr)->sg_ispeed
100 # define cfgetospeed(ptr) (ptr)->sg_ospeed
101 # define old_tc ottyb
102
103 #else /* USE_TERMIO */
104 struct termio old_tc = { 0 };
105 extern struct termio new_tc;
106
107 # ifndef TCSANOW
108 # ifdef TCSETS
109 # define TCSANOW TCSETS
110 # define TCSADRAIN TCSETSW
111 # define tcgetattr(f, t) ioctl(f, TCGETS, (char *)t)
112 # else
113 # ifdef TCSETA
114 # define TCSANOW TCSETA
115 # define TCSADRAIN TCSETAW
116 # define tcgetattr(f, t) ioctl(f, TCGETA, (char *)t)
117 # else
118 # define TCSANOW TIOCSETA
119 # define TCSADRAIN TIOCSETAW
120 # define tcgetattr(f, t) ioctl(f, TIOCGETA, (char *)t)
121 # endif
122 # endif
123 # define tcsetattr(f, a, t) ioctl(f, a, (char *)t)
124 # define cfgetospeed(ptr) ((ptr)->c_cflag&CBAUD)
125 # ifdef CIBAUD
126 # define cfgetispeed(ptr) (((ptr)->c_cflag&CIBAUD) >> IBSHIFT)
127 # else
128 # define cfgetispeed(ptr) cfgetospeed(ptr)
129 # endif
130 # endif /* TCSANOW */
131 # ifdef sysV88
132 # define TIOCFLUSH TC_PX_DRAIN
133 # endif
134 #endif /* USE_TERMIO */
135
136
137 void
138 init_sys()
139 {
140 tout = fileno(stdout);
141 tin = fileno(stdin);
142
143 errno = 0;
144 }
145
146
147 int
148 TerminalWrite(buf, n)
149 char *buf;
150 int n;
151 {
152 return write(tout, buf, n);
153 }
154
155 int
156 TerminalRead(buf, n)
157 unsigned char *buf;
158 int n;
159 {
160 return read(tin, buf, n);
161 }
162
163 /*
164 *
165 */
166
167 int
168 TerminalAutoFlush()
169 {
170 #if defined(LNOFLSH)
171 int flush;
172
173 ioctl(0, TIOCLGET, (char *)&flush);
174 return !(flush&LNOFLSH); /* if LNOFLSH, no autoflush */
175 #else /* LNOFLSH */
176 return 1;
177 #endif /* LNOFLSH */
178 }
179
180 #ifdef KLUDGELINEMODE
181 extern int kludgelinemode;
182 #endif
183 /*
184 * TerminalSpecialChars()
185 *
186 * Look at an input character to see if it is a special character
187 * and decide what to do.
188 *
189 * Output:
190 *
191 * 0 Don't add this character.
192 * 1 Do add this character
193 */
194
195 int
196 TerminalSpecialChars(c)
197 int c;
198 {
199 if (c == termIntChar) {
200 intp();
201 return 0;
202 } else if (c == termQuitChar) {
203 #ifdef KLUDGELINEMODE
204 if (kludgelinemode)
205 sendbrk();
206 else
207 #endif
208 sendabort();
209 return 0;
210 } else if (c == termEofChar) {
211 if (my_want_state_is_will(TELOPT_LINEMODE)) {
212 sendeof();
213 return 0;
214 }
215 return 1;
216 } else if (c == termSuspChar) {
217 sendsusp();
218 return(0);
219 } else if (c == termFlushChar) {
220 xmitAO(); /* Transmit Abort Output */
221 return 0;
222 } else if (!MODE_LOCAL_CHARS(globalmode)) {
223 if (c == termKillChar) {
224 xmitEL();
225 return 0;
226 } else if (c == termEraseChar) {
227 xmitEC(); /* Transmit Erase Character */
228 return 0;
229 }
230 }
231 return 1;
232 }
233
234
235 /*
236 * Flush output to the terminal
237 */
238
239 void
240 TerminalFlushOutput()
241 {
242 #ifdef TIOCFLUSH
243 (void) ioctl(fileno(stdout), TIOCFLUSH, (char *) 0);
244 #else
245 (void) ioctl(fileno(stdout), TCFLSH, (char *) 0);
246 #endif
247 }
248
249 void
250 TerminalSaveState()
251 {
252 #ifndef USE_TERMIO
253 ioctl(0, TIOCGETP, (char *)&ottyb);
254 ioctl(0, TIOCGETC, (char *)&otc);
255 ioctl(0, TIOCGLTC, (char *)&oltc);
256 ioctl(0, TIOCLGET, (char *)&olmode);
257
258 ntc = otc;
259 nltc = oltc;
260 nttyb = ottyb;
261
262 #else /* USE_TERMIO */
263 tcgetattr(0, &old_tc);
264
265 new_tc = old_tc;
266
267 #ifndef VDISCARD
268 termFlushChar = CONTROL('O');
269 #endif
270 #ifndef VWERASE
271 termWerasChar = CONTROL('W');
272 #endif
273 #ifndef VREPRINT
274 termRprntChar = CONTROL('R');
275 #endif
276 #ifndef VLNEXT
277 termLiteralNextChar = CONTROL('V');
278 #endif
279 #ifndef VSTART
280 termStartChar = CONTROL('Q');
281 #endif
282 #ifndef VSTOP
283 termStopChar = CONTROL('S');
284 #endif
285 #ifndef VSTATUS
286 termAytChar = CONTROL('T');
287 #endif
288 #endif /* USE_TERMIO */
289 }
290
291 cc_t *
292 tcval(func)
293 int func;
294 {
295 switch(func) {
296 case SLC_IP: return(&termIntChar);
297 case SLC_ABORT: return(&termQuitChar);
298 case SLC_EOF: return(&termEofChar);
299 case SLC_EC: return(&termEraseChar);
300 case SLC_EL: return(&termKillChar);
301 case SLC_XON: return(&termStartChar);
302 case SLC_XOFF: return(&termStopChar);
303 case SLC_FORW1: return(&termForw1Char);
304 #ifdef USE_TERMIO
305 case SLC_FORW2: return(&termForw2Char);
306 # ifdef VDISCARD
307 case SLC_AO: return(&termFlushChar);
308 # endif
309 # ifdef VSUSP
310 case SLC_SUSP: return(&termSuspChar);
311 # endif
312 # ifdef VWERASE
313 case SLC_EW: return(&termWerasChar);
314 # endif
315 # ifdef VREPRINT
316 case SLC_RP: return(&termRprntChar);
317 # endif
318 # ifdef VLNEXT
319 case SLC_LNEXT: return(&termLiteralNextChar);
320 # endif
321 # ifdef VSTATUS
322 case SLC_AYT: return(&termAytChar);
323 # endif
324 #endif
325
326 case SLC_SYNCH:
327 case SLC_BRK:
328 case SLC_EOR:
329 default:
330 return((cc_t *)0);
331 }
332 }
333
334 void
335 TerminalDefaultChars()
336 {
337 #ifndef USE_TERMIO
338 ntc = otc;
339 nltc = oltc;
340 nttyb.sg_kill = ottyb.sg_kill;
341 nttyb.sg_erase = ottyb.sg_erase;
342 #else /* USE_TERMIO */
343 memmove(new_tc.c_cc, old_tc.c_cc, sizeof(old_tc.c_cc));
344 # ifndef VDISCARD
345 termFlushChar = CONTROL('O');
346 # endif
347 # ifndef VWERASE
348 termWerasChar = CONTROL('W');
349 # endif
350 # ifndef VREPRINT
351 termRprntChar = CONTROL('R');
352 # endif
353 # ifndef VLNEXT
354 termLiteralNextChar = CONTROL('V');
355 # endif
356 # ifndef VSTART
357 termStartChar = CONTROL('Q');
358 # endif
359 # ifndef VSTOP
360 termStopChar = CONTROL('S');
361 # endif
362 # ifndef VSTATUS
363 termAytChar = CONTROL('T');
364 # endif
365 #endif /* USE_TERMIO */
366 }
367
368 #ifdef notdef
369 void
370 TerminalRestoreState()
371 {
372 }
373 #endif
374
375 /*
376 * TerminalNewMode - set up terminal to a specific mode.
377 * MODE_ECHO: do local terminal echo
378 * MODE_FLOW: do local flow control
379 * MODE_TRAPSIG: do local mapping to TELNET IAC sequences
380 * MODE_EDIT: do local line editing
381 *
382 * Command mode:
383 * MODE_ECHO|MODE_EDIT|MODE_FLOW|MODE_TRAPSIG
384 * local echo
385 * local editing
386 * local xon/xoff
387 * local signal mapping
388 *
389 * Linemode:
390 * local/no editing
391 * Both Linemode and Single Character mode:
392 * local/remote echo
393 * local/no xon/xoff
394 * local/no signal mapping
395 */
396
397
398 void
399 TerminalNewMode(f)
400 int f;
401 {
402 static int prevmode = 0;
403 #ifndef USE_TERMIO
404 struct tchars tc;
405 struct ltchars ltc;
406 struct sgttyb sb;
407 int lmode;
408 #else /* USE_TERMIO */
409 struct termio tmp_tc;
410 #endif /* USE_TERMIO */
411 int onoff;
412 int old;
413 cc_t esc;
414
415 globalmode = f&~MODE_FORCE;
416 if (prevmode == f)
417 return;
418
419 /*
420 * Write any outstanding data before switching modes
421 * ttyflush() returns 0 only when there is no more data
422 * left to write out, it returns -1 if it couldn't do
423 * anything at all, otherwise it returns 1 + the number
424 * of characters left to write.
425 #ifndef USE_TERMIO
426 * We would really like ask the kernel to wait for the output
427 * to drain, like we can do with the TCSADRAIN, but we don't have
428 * that option. The only ioctl that waits for the output to
429 * drain, TIOCSETP, also flushes the input queue, which is NOT
430 * what we want (TIOCSETP is like TCSADFLUSH).
431 #endif
432 */
433 old = ttyflush(SYNCHing|flushout);
434 if (old < 0 || old > 1) {
435 #ifdef USE_TERMIO
436 tcgetattr(tin, &tmp_tc);
437 #endif /* USE_TERMIO */
438 do {
439 /*
440 * Wait for data to drain, then flush again.
441 */
442 #ifdef USE_TERMIO
443 tcsetattr(tin, TCSADRAIN, &tmp_tc);
444 #endif /* USE_TERMIO */
445 old = ttyflush(SYNCHing|flushout);
446 } while (old < 0 || old > 1);
447 }
448
449 old = prevmode;
450 prevmode = f&~MODE_FORCE;
451 #ifndef USE_TERMIO
452 sb = nttyb;
453 tc = ntc;
454 ltc = nltc;
455 lmode = olmode;
456 #else
457 tmp_tc = new_tc;
458 #endif
459
460 if (f&MODE_ECHO) {
461 #ifndef USE_TERMIO
462 sb.sg_flags |= ECHO;
463 #else
464 tmp_tc.c_lflag |= ECHO;
465 tmp_tc.c_oflag |= ONLCR;
466 if (crlf)
467 tmp_tc.c_iflag |= ICRNL;
468 #endif
469 } else {
470 #ifndef USE_TERMIO
471 sb.sg_flags &= ~ECHO;
472 #else
473 tmp_tc.c_lflag &= ~ECHO;
474 tmp_tc.c_oflag &= ~ONLCR;
475 # ifdef notdef
476 if (crlf)
477 tmp_tc.c_iflag &= ~ICRNL;
478 # endif
479 #endif
480 }
481
482 if ((f&MODE_FLOW) == 0) {
483 #ifndef USE_TERMIO
484 tc.t_startc = _POSIX_VDISABLE;
485 tc.t_stopc = _POSIX_VDISABLE;
486 #else
487 tmp_tc.c_iflag &= ~(IXOFF|IXON); /* Leave the IXANY bit alone */
488 } else {
489 if (restartany < 0) {
490 tmp_tc.c_iflag |= IXOFF|IXON; /* Leave the IXANY bit alone */
491 } else if (restartany > 0) {
492 tmp_tc.c_iflag |= IXOFF|IXON|IXANY;
493 } else {
494 tmp_tc.c_iflag |= IXOFF|IXON;
495 tmp_tc.c_iflag &= ~IXANY;
496 }
497 #endif
498 }
499
500 if ((f&MODE_TRAPSIG) == 0) {
501 #ifndef USE_TERMIO
502 tc.t_intrc = _POSIX_VDISABLE;
503 tc.t_quitc = _POSIX_VDISABLE;
504 tc.t_eofc = _POSIX_VDISABLE;
505 ltc.t_suspc = _POSIX_VDISABLE;
506 ltc.t_dsuspc = _POSIX_VDISABLE;
507 #else
508 tmp_tc.c_lflag &= ~ISIG;
509 #endif
510 localchars = 0;
511 } else {
512 #ifdef USE_TERMIO
513 tmp_tc.c_lflag |= ISIG;
514 #endif
515 localchars = 1;
516 }
517
518 if (f&MODE_EDIT) {
519 #ifndef USE_TERMIO
520 sb.sg_flags &= ~CBREAK;
521 sb.sg_flags |= CRMOD;
522 #else
523 tmp_tc.c_lflag |= ICANON;
524 #endif
525 } else {
526 #ifndef USE_TERMIO
527 sb.sg_flags |= CBREAK;
528 if (f&MODE_ECHO)
529 sb.sg_flags |= CRMOD;
530 else
531 sb.sg_flags &= ~CRMOD;
532 #else
533 tmp_tc.c_lflag &= ~ICANON;
534 tmp_tc.c_iflag &= ~ICRNL;
535 tmp_tc.c_cc[VMIN] = 1;
536 tmp_tc.c_cc[VTIME] = 0;
537 #endif
538 }
539
540 if ((f&(MODE_EDIT|MODE_TRAPSIG)) == 0) {
541 #ifndef USE_TERMIO
542 ltc.t_lnextc = _POSIX_VDISABLE;
543 #else
544 tmp_tc.c_lflag &= ~IEXTEN;
545 #endif
546 }
547
548 if (f&MODE_SOFT_TAB) {
549 #ifndef USE_TERMIO
550 sb.sg_flags |= XTABS;
551 #else
552 # ifdef OXTABS
553 tmp_tc.c_oflag |= OXTABS;
554 # endif
555 # ifdef TABDLY
556 tmp_tc.c_oflag &= ~TABDLY;
557 tmp_tc.c_oflag |= TAB3;
558 # endif
559 #endif
560 } else {
561 #ifndef USE_TERMIO
562 sb.sg_flags &= ~XTABS;
563 #else
564 # ifdef OXTABS
565 tmp_tc.c_oflag &= ~OXTABS;
566 # endif
567 # ifdef TABDLY
568 tmp_tc.c_oflag &= ~TABDLY;
569 # endif
570 #endif
571 }
572
573 if (f&MODE_LIT_ECHO) {
574 #ifndef USE_TERMIO
575 lmode &= ~LCTLECH;
576 #else
577 # ifdef ECHOCTL
578 tmp_tc.c_lflag &= ~ECHOCTL;
579 # endif
580 #endif
581 } else {
582 #ifndef USE_TERMIO
583 lmode |= LCTLECH;
584 #else
585 # ifdef ECHOCTL
586 tmp_tc.c_lflag |= ECHOCTL;
587 # endif
588 #endif
589 }
590
591 if (f == -1) {
592 onoff = 0;
593 } else {
594 #ifndef USE_TERMIO
595 if (f & MODE_OUTBIN)
596 lmode |= LLITOUT;
597 else
598 lmode &= ~LLITOUT;
599
600 if (f & MODE_INBIN)
601 lmode |= LPASS8;
602 else
603 lmode &= ~LPASS8;
604 #else
605 if (f & MODE_INBIN)
606 tmp_tc.c_iflag &= ~ISTRIP;
607 else
608 tmp_tc.c_iflag |= ISTRIP;
609 if (f & MODE_OUTBIN) {
610 tmp_tc.c_cflag &= ~(CSIZE|PARENB);
611 tmp_tc.c_cflag |= CS8;
612 tmp_tc.c_oflag &= ~OPOST;
613 } else {
614 tmp_tc.c_cflag &= ~(CSIZE|PARENB);
615 tmp_tc.c_cflag |= old_tc.c_cflag & (CSIZE|PARENB);
616 tmp_tc.c_oflag |= OPOST;
617 }
618 #endif
619 onoff = 1;
620 }
621
622 if (f != -1) {
623 #ifdef SIGTSTP
624 (void) signal(SIGTSTP, susp);
625 #endif /* SIGTSTP */
626 #ifdef SIGINFO
627 (void) signal(SIGINFO, ayt);
628 #endif
629 #if defined(USE_TERMIO) && defined(NOKERNINFO)
630 tmp_tc.c_lflag |= NOKERNINFO;
631 #endif
632 /*
633 * We don't want to process ^Y here. It's just another
634 * character that we'll pass on to the back end. It has
635 * to process it because it will be processed when the
636 * user attempts to read it, not when we send it.
637 */
638 #ifndef USE_TERMIO
639 ltc.t_dsuspc = _POSIX_VDISABLE;
640 #else
641 # ifdef VDSUSP
642 tmp_tc.c_cc[VDSUSP] = (cc_t)(_POSIX_VDISABLE);
643 # endif
644 #endif
645 #ifdef USE_TERMIO
646 /*
647 * If the VEOL character is already set, then use VEOL2,
648 * otherwise use VEOL.
649 */
650 esc = (rlogin != _POSIX_VDISABLE) ? rlogin : escape;
651 if ((tmp_tc.c_cc[VEOL] != esc)
652 # ifdef VEOL2
653 && (tmp_tc.c_cc[VEOL2] != esc)
654 # endif
655 ) {
656 if (tmp_tc.c_cc[VEOL] == (cc_t)(_POSIX_VDISABLE))
657 tmp_tc.c_cc[VEOL] = esc;
658 # ifdef VEOL2
659 else if (tmp_tc.c_cc[VEOL2] == (cc_t)(_POSIX_VDISABLE))
660 tmp_tc.c_cc[VEOL2] = esc;
661 # endif
662 }
663 #else
664 if (tc.t_brkc == (cc_t)(_POSIX_VDISABLE))
665 tc.t_brkc = esc;
666 #endif
667 } else {
668 #ifdef SIGINFO
669 (void) signal(SIGINFO, (void (*)(int)) ayt_status);
670 #endif
671 #ifdef SIGTSTP
672 (void) signal(SIGTSTP, SIG_DFL);
673 # ifndef SOLARIS
674 (void) sigsetmask(sigblock(0) & ~(1<<(SIGTSTP-1)));
675 # else /* SOLARIS */
676 (void) sigrelse(SIGTSTP);
677 # endif /* SOLARIS */
678 #endif /* SIGTSTP */
679 #ifndef USE_TERMIO
680 ltc = oltc;
681 tc = otc;
682 sb = ottyb;
683 lmode = olmode;
684 #else
685 tmp_tc = old_tc;
686 #endif
687 }
688 #ifndef USE_TERMIO
689 ioctl(tin, TIOCLSET, (char *)&lmode);
690 ioctl(tin, TIOCSLTC, (char *)<c);
691 ioctl(tin, TIOCSETC, (char *)&tc);
692 ioctl(tin, TIOCSETN, (char *)&sb);
693 #else
694 if (tcsetattr(tin, TCSADRAIN, &tmp_tc) < 0)
695 tcsetattr(tin, TCSANOW, &tmp_tc);
696 #endif
697
698 #if (!defined(TN3270)) || ((!defined(NOT43)) || defined(PUTCHAR))
699 # if !defined(sysV88)
700 ioctl(tin, FIONBIO, (char *)&onoff);
701 ioctl(tout, FIONBIO, (char *)&onoff);
702 # endif
703 #endif /* (!defined(TN3270)) || ((!defined(NOT43)) || defined(PUTCHAR)) */
704 #if defined(TN3270)
705 if (noasynchtty == 0) {
706 ioctl(tin, FIOASYNC, (char *)&onoff);
707 }
708 #endif /* defined(TN3270) */
709
710 }
711
712 /*
713 * Try to guess whether speeds are "encoded" (4.2BSD) or just numeric (4.4BSD).
714 */
715 #if B4800 != 4800
716 #define DECODE_BAUD
717 #endif
718
719 #ifdef DECODE_BAUD
720 #ifndef B7200
721 #define B7200 B4800
722 #endif
723
724 #ifndef B14400
725 #define B14400 B9600
726 #endif
727
728 #ifndef B19200
729 # define B19200 B14400
730 #endif
731
732 #ifndef B28800
733 #define B28800 B19200
734 #endif
735
736 #ifndef B38400
737 # define B38400 B28800
738 #endif
739
740 #ifndef B57600
741 #define B57600 B38400
742 #endif
743
744 #ifndef B76800
745 #define B76800 B57600
746 #endif
747
748 #ifndef B115200
749 #define B115200 B76800
750 #endif
751
752 #ifndef B230400
753 #define B230400 B115200
754 #endif
755
756
757 /*
758 * This code assumes that the values B0, B50, B75...
759 * are in ascending order. They do not have to be
760 * contiguous.
761 */
762 struct termspeeds {
763 long speed;
764 long value;
765 } termspeeds[] = {
766 { 0, B0 }, { 50, B50 }, { 75, B75 },
767 { 110, B110 }, { 134, B134 }, { 150, B150 },
768 { 200, B200 }, { 300, B300 }, { 600, B600 },
769 { 1200, B1200 }, { 1800, B1800 }, { 2400, B2400 },
770 { 4800, B4800 }, { 7200, B7200 }, { 9600, B9600 },
771 { 14400, B14400 }, { 19200, B19200 }, { 28800, B28800 },
772 { 38400, B38400 }, { 57600, B57600 }, { 115200, B115200 },
773 { 230400, B230400 }, { -1, B230400 }
774 };
775 #endif /* DECODE_BAUD */
776
777 void
778 TerminalSpeeds(ispeed, ospeed)
779 long *ispeed;
780 long *ospeed;
781 {
782 #ifdef DECODE_BAUD
783 struct termspeeds *tp;
784 #endif /* DECODE_BAUD */
785 long in, out;
786
787 out = cfgetospeed(&old_tc);
788 in = cfgetispeed(&old_tc);
789 if (in == 0)
790 in = out;
791
792 #ifdef DECODE_BAUD
793 tp = termspeeds;
794 while ((tp->speed != -1) && (tp->value < in))
795 tp++;
796 *ispeed = tp->speed;
797
798 tp = termspeeds;
799 while ((tp->speed != -1) && (tp->value < out))
800 tp++;
801 *ospeed = tp->speed;
802 #else /* DECODE_BAUD */
803 *ispeed = in;
804 *ospeed = out;
805 #endif /* DECODE_BAUD */
806 }
807
808 int
809 TerminalWindowSize(rows, cols)
810 long *rows, *cols;
811 {
812 #ifdef TIOCGWINSZ
813 struct winsize ws;
814
815 if (ioctl(fileno(stdin), TIOCGWINSZ, (char *)&ws) >= 0) {
816 *rows = ws.ws_row;
817 *cols = ws.ws_col;
818 return 1;
819 }
820 #endif /* TIOCGWINSZ */
821 return 0;
822 }
823
824 int
825 NetClose(fd)
826 int fd;
827 {
828 return close(fd);
829 }
830
831
832 void
833 NetNonblockingIO(fd, onoff)
834 int fd;
835 int onoff;
836 {
837 ioctl(fd, FIONBIO, (char *)&onoff);
838 }
839
840 #if defined(TN3270)
841 void
842 NetSigIO(fd, onoff)
843 int fd;
844 int onoff;
845 {
846 ioctl(fd, FIOASYNC, (char *)&onoff); /* hear about input */
847 }
848
849 void
850 NetSetPgrp(fd)
851 int fd;
852 {
853 int myPid;
854
855 myPid = getpid();
856 fcntl(fd, F_SETOWN, myPid);
857 }
858 #endif /*defined(TN3270)*/
859
860 /*
862 * Various signal handling routines.
863 */
864
865 /* ARGSUSED */
866 SIG_FUNC_RET
867 deadpeer(sig)
868 int sig;
869 {
870 setcommandmode();
871 longjmp(peerdied, -1);
872 }
873
874 /* ARGSUSED */
875 SIG_FUNC_RET
876 intr(sig)
877 int sig;
878 {
879 if (localchars) {
880 intp();
881 return;
882 }
883 setcommandmode();
884 longjmp(toplevel, -1);
885 }
886
887 /* ARGSUSED */
888 SIG_FUNC_RET
889 intr2(sig)
890 int sig;
891 {
892 if (localchars) {
893 #ifdef KLUDGELINEMODE
894 if (kludgelinemode)
895 sendbrk();
896 else
897 #endif
898 sendabort();
899 return;
900 }
901 }
902
903 #ifdef SIGTSTP
904 /* ARGSUSED */
905 SIG_FUNC_RET
906 susp(sig)
907 int sig;
908 {
909 if ((rlogin != _POSIX_VDISABLE) && rlogin_susp())
910 return;
911 if (localchars)
912 sendsusp();
913 }
914 #endif
915
916 #ifdef SIGWINCH
917 /* ARGSUSED */
918 SIG_FUNC_RET
919 sendwin(sig)
920 int sig;
921 {
922 if (connected) {
923 sendnaws();
924 }
925 }
926 #endif
927
928 #ifdef SIGINFO
929 /* ARGSUSED */
930 SIG_FUNC_RET
931 ayt(sig)
932 int sig;
933 {
934 if (connected)
935 sendayt();
936 else
937 ayt_status();
938 }
939 #endif
940
941
942 void
944 sys_telnet_init()
945 {
946 (void) signal(SIGINT, intr);
947 (void) signal(SIGQUIT, intr2);
948 (void) signal(SIGPIPE, deadpeer);
949 #ifdef SIGWINCH
950 (void) signal(SIGWINCH, sendwin);
951 #endif
952 #ifdef SIGTSTP
953 (void) signal(SIGTSTP, susp);
954 #endif
955 #ifdef SIGINFO
956 (void) signal(SIGINFO, ayt);
957 #endif
958
959 setconnmode(0);
960
961 NetNonblockingIO(net, 1);
962
963 #if defined(TN3270)
964 if (noasynchnet == 0) { /* DBX can't handle! */
965 NetSigIO(net, 1);
966 NetSetPgrp(net);
967 }
968 #endif /* defined(TN3270) */
969
970 #if defined(SO_OOBINLINE)
971 if (SetSockOpt(net, SOL_SOCKET, SO_OOBINLINE, 1) == -1) {
972 perror("SetSockOpt");
973 }
974 #endif /* defined(SO_OOBINLINE) */
975 }
976
977 /*
978 * Process rings -
979 *
980 * This routine tries to fill up/empty our various rings.
981 *
982 * The parameter specifies whether this is a poll operation,
983 * or a block-until-something-happens operation.
984 *
985 * The return value is 1 if something happened, 0 if not.
986 */
987
988 int
989 process_rings(netin, netout, netex, ttyin, ttyout, dopoll)
990 int netin, netout, netex, ttyin, ttyout;
991 int dopoll; /* If 0, then block until something to do */
992 {
993 struct pollfd set[3];
994 int c;
995 /* One wants to be a bit careful about setting returnValue
996 * to one, since a one implies we did some useful work,
997 * and therefore probably won't be called to block next
998 * time (TN3270 mode only).
999 */
1000 int returnValue = 0;
1001
1002 set[0].fd = net;
1003 set[0].events = (netout ? POLLOUT : 0) | (netin ? POLLIN : 0) |
1004 (netex ? POLLPRI : 0);
1005 set[1].fd = tout;
1006 set[1].events = ttyout ? POLLOUT : 0;
1007 set[2].fd = tin;
1008 set[2].events = ttyin ? POLLIN : 0;
1009
1010 if ((c = poll(set, 3, dopoll ? 0 : INFTIM)) < 0) {
1011 if (c == -1) {
1012 /*
1013 * we can get EINTR if we are in line mode,
1014 * and the user does an escape (TSTP), or
1015 * some other signal generator.
1016 */
1017 if (errno == EINTR) {
1018 return 0;
1019 }
1020 # if defined(TN3270)
1021 /*
1022 * we can get EBADF if we were in transparent
1023 * mode, and the transcom process died.
1024 */
1025 if (errno == EBADF)
1026 return 0;
1027 # endif /* defined(TN3270) */
1028 /* I don't like this, does it ever happen? */
1029 printf("sleep(5) from telnet, after select\r\n");
1030 sleep(5);
1031 }
1032 return 0;
1033 }
1034
1035 /*
1036 * Any urgent data?
1037 */
1038 if (set[0].revents & POLLPRI) {
1039 SYNCHing = 1;
1040 (void) ttyflush(1); /* flush already enqueued data */
1041 }
1042
1043 /*
1044 * Something to read from the network...
1045 */
1046 if (set[0].revents & POLLIN) {
1047 int canread;
1048
1049 canread = ring_empty_consecutive(&netiring);
1050 #if !defined(SO_OOBINLINE)
1051 /*
1052 * In 4.2 (and some early 4.3) systems, the
1053 * OOB indication and data handling in the kernel
1054 * is such that if two separate TCP Urgent requests
1055 * come in, one byte of TCP data will be overlaid.
1056 * This is fatal for Telnet, but we try to live
1057 * with it.
1058 *
1059 * In addition, in 4.2 (and...), a special protocol
1060 * is needed to pick up the TCP Urgent data in
1061 * the correct sequence.
1062 *
1063 * What we do is: if we think we are in urgent
1064 * mode, we look to see if we are "at the mark".
1065 * If we are, we do an OOB receive. If we run
1066 * this twice, we will do the OOB receive twice,
1067 * but the second will fail, since the second
1068 * time we were "at the mark", but there wasn't
1069 * any data there (the kernel doesn't reset
1070 * "at the mark" until we do a normal read).
1071 * Once we've read the OOB data, we go ahead
1072 * and do normal reads.
1073 *
1074 * There is also another problem, which is that
1075 * since the OOB byte we read doesn't put us
1076 * out of OOB state, and since that byte is most
1077 * likely the TELNET DM (data mark), we would
1078 * stay in the TELNET SYNCH (SYNCHing) state.
1079 * So, clocks to the rescue. If we've "just"
1080 * received a DM, then we test for the
1081 * presence of OOB data when the receive OOB
1082 * fails (and AFTER we did the normal mode read
1083 * to clear "at the mark").
1084 */
1085 if (SYNCHing) {
1086 int atmark;
1087 static int bogus_oob = 0, first = 1;
1088
1089 ioctl(net, SIOCATMARK, (char *)&atmark);
1090 if (atmark) {
1091 c = recv(net, netiring.supply, canread, MSG_OOB);
1092 if ((c == -1) && (errno == EINVAL)) {
1093 c = recv(net, netiring.supply, canread, 0);
1094 if (clocks.didnetreceive < clocks.gotDM) {
1095 SYNCHing = stilloob(net);
1096 }
1097 } else if (first && c > 0) {
1098 /*
1099 * Bogosity check. Systems based on 4.2BSD
1100 * do not return an error if you do a second
1101 * recv(MSG_OOB). So, we do one. If it
1102 * succeeds and returns exactly the same
1103 * data, then assume that we are running
1104 * on a broken system and set the bogus_oob
1105 * flag. (If the data was different, then
1106 * we probably got some valid new data, so
1107 * increment the count...)
1108 */
1109 int i;
1110 i = recv(net, netiring.supply + c, canread - c, MSG_OOB);
1111 if (i == c &&
1112 memcmp(netiring.supply, netiring.supply + c, i) == 0) {
1113 bogus_oob = 1;
1114 first = 0;
1115 } else if (i < 0) {
1116 bogus_oob = 0;
1117 first = 0;
1118 } else
1119 c += i;
1120 }
1121 if (bogus_oob && c > 0) {
1122 int i;
1123 /*
1124 * Bogosity. We have to do the read
1125 * to clear the atmark to get out of
1126 * an infinite loop.
1127 */
1128 i = read(net, netiring.supply + c, canread - c);
1129 if (i > 0)
1130 c += i;
1131 }
1132 } else {
1133 c = recv(net, netiring.supply, canread, 0);
1134 }
1135 } else {
1136 c = recv(net, netiring.supply, canread, 0);
1137 }
1138 settimer(didnetreceive);
1139 #else /* !defined(SO_OOBINLINE) */
1140 c = recv(net, (char *)netiring.supply, canread, 0);
1141 #endif /* !defined(SO_OOBINLINE) */
1142 if (c < 0 && errno == EWOULDBLOCK) {
1143 c = 0;
1144 } else if (c <= 0) {
1145 return -1;
1146 }
1147 if (netdata) {
1148 Dump('<', netiring.supply, c);
1149 }
1150 if (c)
1151 ring_supplied(&netiring, c);
1152 returnValue = 1;
1153 }
1154
1155 /*
1156 * Something to read from the tty...
1157 */
1158 if (set[2].revents & POLLIN) {
1159 c = TerminalRead(ttyiring.supply, ring_empty_consecutive(&ttyiring));
1160 if (c < 0 && errno == EIO)
1161 c = 0;
1162 if (c < 0 && errno == EWOULDBLOCK) {
1163 c = 0;
1164 } else {
1165 if (c < 0) {
1166 return -1;
1167 }
1168 if (c == 0) {
1169 /* must be an EOF... */
1170 if (MODE_LOCAL_CHARS(globalmode) && isatty(tin)) {
1171 *ttyiring.supply = termEofChar;
1172 c = 1;
1173 } else {
1174 clienteof = 1;
1175 shutdown(net, 1);
1176 return 0;
1177 }
1178 }
1179 if (termdata) {
1180 Dump('<', ttyiring.supply, c);
1181 }
1182 ring_supplied(&ttyiring, c);
1183 }
1184 returnValue = 1; /* did something useful */
1185 }
1186
1187 if (set[0].revents & POLLOUT) {
1188 returnValue |= netflush();
1189 }
1190 if (set[1].revents & POLLOUT) {
1191 returnValue |= (ttyflush(SYNCHing|flushout) > 0);
1192 }
1193
1194 return returnValue;
1195 }
1196