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