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 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895
|
/*
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.
*/
#include <config.h>
#include <sys/types.h>
#if defined unix || defined __unix || defined __unix__
# include <signal.h>
/* By the way, we need to include curses.h before telnet.h since,
* among other things, telnet.h #defines 'DO', which is a variable
* declared in curses.h.
*/
#endif /* unix || __unix || __unix__ */
#include <arpa/telnet.h>
#include <ctype.h>
#include <stdlib.h>
#include <libinetutils.h>
#include "ring.h"
#include "defines.h"
#include "externs.h"
#include "types.h"
#include "general.h"
#ifdef HAVE_TERMCAP_TGETENT
# include <termcap.h>
#elif defined HAVE_CURSES_TGETENT
# include <curses.h>
# ifndef _XOPEN_CURSES
# include <term.h>
# endif
#endif
#ifdef AUTHENTICATION
# include <libtelnet/auth.h>
#endif
#ifdef ENCRYPTION
# include <libtelnet/encrypt.h>
#endif
#if defined AUTHENTICATION || defined ENCRYPTION
# include <libtelnet/misc.h>
#endif
#define strip(x) ((my_want_state_is_wont(TELOPT_BINARY)) ? ((x)&0x7f) : (x))
static unsigned char subbuffer[SUBBUFSIZE], *subpointer, *subend; /* buffer for sub-options */
#define SB_CLEAR() subpointer = subbuffer;
#define SB_TERM() { subend = subpointer; SB_CLEAR(); }
#define SB_ACCUM(c) if (subpointer < (subbuffer+sizeof subbuffer)) { \
*subpointer++ = (c); \
}
#define SB_GET() ((*subpointer++)&0xff)
#define SB_PEEK() ((*subpointer)&0xff)
#define SB_EOF() (subpointer >= subend)
#define SB_LEN() (subend - subpointer)
char options[256] = { 0 }; /* The combined options */
char do_dont_resp[256] = { 0 };
char will_wont_resp[256] = { 0 };
int eight = 0, autologin = 0, /* Autologin anyone? */
skiprc = 0, connected, showoptions, In3270, /* Are we in 3270 mode? */
ISend, /* trying to send network data in */
debug = 0, crmod, netdata, /* Print out network data flow */
crlf, /* Should '\r' be mapped to <CR><LF> (or <CR><NUL>)? */
#if defined TN3270
noasynchtty = 0, /* User specified "-noasynch" on command line */
noasynchnet = 0, /* User specified "-noasynch" on command line */
askedSGA = 0, /* We have talked about suppress go ahead */
#endif
/* defined(TN3270) */
telnetport, SYNCHing, /* we are in TELNET SYNCH mode */
flushout, /* flush output */
autoflush = 0, /* flush output when interrupting? */
autosynch, /* send interrupt characters with SYNCH? */
localflow, /* we handle flow control locally */
restartany, /* if flow control enabled, restart on any character */
localchars, /* we recognize interrupt/quit */
donelclchars, /* the user has set "localchars" */
donebinarytoggle, /* the user has put us in binary */
dontlecho, /* do we suppress local echoing right now? */
globalmode;
char *prompt = 0;
cc_t escape;
cc_t rlogin;
#ifdef KLUDGELINEMODE
cc_t echoc;
#endif
/*
* Telnet receiver states for fsm
*/
#define TS_DATA 0
#define TS_IAC 1
#define TS_WILL 2
#define TS_WONT 3
#define TS_DO 4
#define TS_DONT 5
#define TS_CR 6
#define TS_SB 7 /* sub-option collection */
#define TS_SE 8 /* looking for sub-option end */
static int telrcv_state;
#ifdef OLD_ENVIRON
unsigned char telopt_environ = TELOPT_NEW_ENVIRON;
#else
# define telopt_environ TELOPT_NEW_ENVIRON
#endif
jmp_buf toplevel;
jmp_buf peerdied;
int flushline;
int linemode;
#ifdef KLUDGELINEMODE
int kludgelinemode = 1;
#endif
/*
* The following are some clocks used to decide how to interpret
* the relationship between various variables.
*/
Clocks clocks;
/*
* Initialize telnet environment.
*/
void
init_telnet (void)
{
env_init ();
SB_CLEAR ();
connected = In3270 = ISend = localflow = donebinarytoggle = 0;
#if defined AUTHENTICATION || defined ENCRYPTION
auth_encrypt_connect (connected);
#endif /* defined(AUTHENTICATION) || defined(ENCRYPTION) */
restartany = -1;
SYNCHing = 0;
/* Don't change NetTrace */
escape = CONTROL (']');
rlogin = _POSIX_VDISABLE;
#ifdef KLUDGELINEMODE
echoc = CONTROL ('E');
#endif
flushline = 1;
telrcv_state = TS_DATA;
}
/*
* These routines are in charge of sending option negotiations
* to the other side.
*
* The basic idea is that we send the negotiation if either side
* is in disagreement as to what the current state should be.
*/
void
send_do (int c, int init)
{
if (init)
{
if (((do_dont_resp[c] == 0) && my_state_is_do (c)) ||
my_want_state_is_do (c))
return;
set_my_want_state_do (c);
do_dont_resp[c]++;
}
NET2ADD (IAC, DO);
NETADD (c);
printoption ("SENT", DO, c);
}
void
send_dont (int c, int init)
{
if (init)
{
if (((do_dont_resp[c] == 0) && my_state_is_dont (c)) ||
my_want_state_is_dont (c))
return;
set_my_want_state_dont (c);
do_dont_resp[c]++;
}
NET2ADD (IAC, DONT);
NETADD (c);
printoption ("SENT", DONT, c);
}
void
send_will (int c, int init)
{
if (init)
{
if (((will_wont_resp[c] == 0) && my_state_is_will (c)) ||
my_want_state_is_will (c))
return;
set_my_want_state_will (c);
will_wont_resp[c]++;
}
NET2ADD (IAC, WILL);
NETADD (c);
printoption ("SENT", WILL, c);
}
void
send_wont (int c, int init)
{
if (init)
{
if (((will_wont_resp[c] == 0) && my_state_is_wont (c)) ||
my_want_state_is_wont (c))
return;
set_my_want_state_wont (c);
will_wont_resp[c]++;
}
NET2ADD (IAC, WONT);
NETADD (c);
printoption ("SENT", WONT, c);
}
void
willoption (int option)
{
int new_state_ok = 0;
if (do_dont_resp[option])
{
--do_dont_resp[option];
if (do_dont_resp[option] && my_state_is_do (option))
--do_dont_resp[option];
}
if ((do_dont_resp[option] == 0) && my_want_state_is_dont (option))
{
switch (option)
{
case TELOPT_ECHO:
#if defined TN3270
/*
* The following is a pain in the rear-end.
* Various IBM servers (some versions of Wiscnet,
* possibly Fibronics/Spartacus, and who knows who
* else) will NOT allow us to send "DO SGA" too early
* in the setup proceedings. On the other hand,
* 4.2 servers (telnetd) won't set SGA correctly.
* So, we are stuck. Empirically (but, based on
* a VERY small sample), the IBM servers don't send
* out anything about ECHO, so we postpone our sending
* "DO SGA" until we see "WILL ECHO" (which 4.2 servers
* DO send).
*/
{
if (askedSGA == 0)
{
askedSGA = 1;
if (my_want_state_is_dont (TELOPT_SGA))
send_do (TELOPT_SGA, 1);
}
}
/* Fall through */
case TELOPT_EOR:
#endif /* defined(TN3270) */
case TELOPT_BINARY:
case TELOPT_SGA:
settimer (modenegotiated);
/* FALL THROUGH */
case TELOPT_STATUS:
#if defined AUTHENTICATION
case TELOPT_AUTHENTICATION:
#endif
#ifdef ENCRYPTION
case TELOPT_ENCRYPT:
#endif /* ENCRYPTION */
new_state_ok = 1;
break;
case TELOPT_TM:
if (flushout)
flushout = 0;
/*
* Special case for TM. If we get back a WILL,
* pretend we got back a WONT.
*/
set_my_want_state_dont (option);
set_my_state_dont (option);
return; /* Never reply to TM will's/wont's */
case TELOPT_LINEMODE:
default:
break;
}
if (new_state_ok)
{
set_my_want_state_do (option);
send_do (option, 0);
setconnmode (0); /* possibly set new tty mode */
}
else
{
do_dont_resp[option]++;
send_dont (option, 0);
}
}
set_my_state_do (option);
#ifdef ENCRYPTION
if (option == TELOPT_ENCRYPT)
encrypt_send_support ();
#endif /* ENCRYPTION */
}
void
wontoption (int option)
{
if (do_dont_resp[option])
{
--do_dont_resp[option];
if (do_dont_resp[option] && my_state_is_dont (option))
--do_dont_resp[option];
}
if ((do_dont_resp[option] == 0) && my_want_state_is_do (option))
{
switch (option)
{
#ifdef KLUDGELINEMODE
case TELOPT_SGA:
if (!kludgelinemode)
break;
/* FALL THROUGH */
#endif
case TELOPT_ECHO:
settimer (modenegotiated);
break;
case TELOPT_TM:
if (flushout)
flushout = 0;
set_my_want_state_dont (option);
set_my_state_dont (option);
return; /* Never reply to TM will's/wont's */
default:
break;
}
set_my_want_state_dont (option);
if (my_state_is_do (option))
send_dont (option, 0);
setconnmode (0); /* Set new tty mode */
}
else if (option == TELOPT_TM)
{
/*
* Special case for TM.
*/
if (flushout)
flushout = 0;
set_my_want_state_dont (option);
}
set_my_state_dont (option);
}
static void
dooption (int option)
{
int new_state_ok = 0;
if (will_wont_resp[option])
{
--will_wont_resp[option];
if (will_wont_resp[option] && my_state_is_will (option))
--will_wont_resp[option];
}
if (will_wont_resp[option] == 0)
{
if (my_want_state_is_wont (option))
{
switch (option)
{
case TELOPT_TM:
/*
* Special case for TM. We send a WILL, but pretend
* we sent WONT.
*/
send_will (option, 0);
set_my_want_state_wont (TELOPT_TM);
set_my_state_wont (TELOPT_TM);
return;
#if defined TN3270
case TELOPT_EOR: /* end of record */
#endif /* defined(TN3270) */
case TELOPT_BINARY: /* binary mode */
case TELOPT_NAWS: /* window size */
case TELOPT_TSPEED: /* terminal speed */
case TELOPT_LFLOW: /* local flow control */
case TELOPT_TTYPE: /* terminal type option */
case TELOPT_SGA: /* no big deal */
#ifdef ENCRYPTION
case TELOPT_ENCRYPT: /* encryption variable option */
#endif /* ENCRYPTION */
new_state_ok = 1;
break;
case TELOPT_NEW_ENVIRON: /* New environment variable option */
#ifdef OLD_ENVIRON
if (my_state_is_will (TELOPT_OLD_ENVIRON))
send_wont (TELOPT_OLD_ENVIRON, 1); /* turn off the old */
goto env_common;
case TELOPT_OLD_ENVIRON: /* Old environment variable option */
if (my_state_is_will (TELOPT_NEW_ENVIRON))
break; /* Don't enable if new one is in use! */
env_common:
telopt_environ = option;
#endif
new_state_ok = 1;
break;
#if defined AUTHENTICATION
case TELOPT_AUTHENTICATION:
if (autologin)
new_state_ok = 1;
break;
#endif
case TELOPT_XDISPLOC: /* X Display location */
if (env_getvalue ("DISPLAY"))
new_state_ok = 1;
break;
case TELOPT_LINEMODE:
#ifdef KLUDGELINEMODE
kludgelinemode = 0;
send_do (TELOPT_SGA, 1);
#endif
set_my_want_state_will (TELOPT_LINEMODE);
send_will (option, 0);
set_my_state_will (TELOPT_LINEMODE);
slc_init ();
return;
case TELOPT_ECHO: /* We're never going to echo... */
default:
break;
}
if (new_state_ok)
{
set_my_want_state_will (option);
send_will (option, 0);
setconnmode (0); /* Set new tty mode */
}
else
{
will_wont_resp[option]++;
send_wont (option, 0);
}
}
else
{
/*
* Handle options that need more things done after the
* other side has acknowledged the option.
*/
switch (option)
{
case TELOPT_LINEMODE:
#ifdef KLUDGELINEMODE
kludgelinemode = 0;
send_do (TELOPT_SGA, 1);
#endif
set_my_state_will (option);
slc_init ();
send_do (TELOPT_SGA, 0);
return;
}
}
}
set_my_state_will (option);
}
static void
dontoption (int option)
{
if (will_wont_resp[option])
{
--will_wont_resp[option];
if (will_wont_resp[option] && my_state_is_wont (option))
--will_wont_resp[option];
}
if ((will_wont_resp[option] == 0) && my_want_state_is_will (option))
{
switch (option)
{
case TELOPT_LINEMODE:
linemode = 0; /* put us back to the default state */
break;
#ifdef OLD_ENVIRON
case TELOPT_NEW_ENVIRON:
/*
* The new environ option wasn't recognized, try
* the old one.
*/
send_will (TELOPT_OLD_ENVIRON, 1);
telopt_environ = TELOPT_OLD_ENVIRON;
break;
#endif
}
/* we always accept a DONT */
set_my_want_state_wont (option);
if (my_state_is_will (option))
send_wont (option, 0);
setconnmode (0); /* Set new tty mode */
}
set_my_state_wont (option);
}
int
is_unique (char *name, char **as, char **ae)
{
char **ap;
int n;
n = strlen (name) + 1;
for (ap = as; ap < ae; ap++)
if (strncasecmp (*ap, name, n) == 0)
return (0);
return (1);
}
/*
* Given a buffer returned by tgetent(), this routine will turn
* the pipe separated list of names in the buffer into an array
* of pointers to null terminated names. We toss out any bad,
* duplicate, or verbose names (names with spaces).
*/
static char *name_unknown = "UNKNOWN";
static char *unknown[] = { 0, 0 };
char **
mklist (char *buf, char *name)
{
int n;
char c, *cp, **argvp, *cp2, **argv, **avt;
if (name)
{
if ((int) strlen (name) > 40)
{
name = 0;
unknown[0] = name_unknown;
}
else
{
unknown[0] = name;
upcase (name);
}
}
else
unknown[0] = name_unknown;
/*
* An empty capability buffer finishes the analysis.
*/
if (!buf || !*buf)
return (unknown);
/*
* Count the number of alias names.
* Stop at the first field separator, a colon.
*/
for (n = 1, cp = buf; *cp && *cp != ':'; cp++)
{
if (*cp == '|')
n++;
}
/*
* Allocate an array to hold the name pointers.
*/
argv = (char **) malloc ((n + 3) * sizeof (char *));
if (argv == 0)
return (unknown);
/*
* Fill the array of pointers with the established aliases.
* Reserve the first slot for the preferred name.
*/
argvp = argv + 1;
*argv = *argvp = 0;
n = 0; /* Positive: name uses white space. */
for (cp = cp2 = buf; (c = *cp); cp++)
{
if (c == '|' || c == ':') /* Delimiters */
{
*cp++ = '\0';
/*
* Skip entries that have spaces or are over 40
* characters long. If this is our environment
* name, then put it up front. Otherwise, as
* long as this is not a duplicate name (case
* insensitive) add it to the list.
*/
if (n || (cp - cp2 > 41))
; /* Ignore the just scanned name. */
else if (name && (strncasecmp (name, cp2, cp - cp2) == 0))
*argv = cp2; /* Preferred name, exact match. */
else if (is_unique (cp2, argv + 1, argvp))
{
*argvp++ = cp2;
*argvp = 0; /* Prevent looking forward. */
}
/* Abort parsing at first field delimiter. */
if (c == ':')
break;
/*
* Skip multiple delimiters. Reset CP2 to
* the beginning of the next name. Reset N,
* the flag for names with spaces.
*/
while ((c = *cp) == '|')
cp++;
cp2 = cp; /* Proceed to next alias name. */
n = 0;
}
/*
* Skip entries with spaces or non-ascii values.
* Convert lower case letters to upper case.
*/
if ((c == ' ') || !isascii (c))
n = 1;
else if (islower (c))
*cp = toupper (c);
}
/*
* Check for an old V6 2 character name. If the second
* name points to the beginning of the buffer, and is
* only 2 characters long, move it to the end of the array.
*/
if ((argv[1] == buf) && (strlen (argv[1]) == 2))
{
--argvp;
for (avt = &argv[1]; avt < argvp; avt++)
*avt = *(avt + 1);
*argvp++ = buf;
}
/*
* Duplicate last name, for TTYPE option, and null
* terminate the array. If we didn't find a match on
* our terminal name, put that name at the beginning.
*/
cp = *(argvp - 1);
*argvp++ = cp;
*argvp = 0;
if (*argv == 0)
{
if (name)
*argv = name;
else
{
--argvp;
for (avt = argv; avt < argvp; avt++)
*avt = *(avt + 1);
}
}
if (*argv)
return (argv);
else
return (unknown);
}
/* Claimed to be ignored by contemporary implementations,
* but still modified by FreeBSD and NetBSD.
* mklist will examine this buffer, so erase it
* to cover corner cases.
*/
char termbuf[2048] = { 0 };
static int
init_term (char *tname, int *errp)
{
int err = -1;
#ifdef HAVE_TGETENT
err = tgetent (termbuf, tname);
if (err == 1)
{
termbuf[sizeof (termbuf) - 1] = '\0';
if (errp)
*errp = 1;
return (0);
}
#endif /* HAVE_TGETENT */
if (errp)
*errp = 0;
return (-1);
}
int resettermname = 1;
char *
gettermname (void)
{
char *tname;
static char **tnamep = 0;
static char **next;
int err;
if (resettermname)
{
resettermname = 0;
if (tnamep && tnamep != unknown)
free (tnamep);
if ((tname = (char *) env_getvalue ("TERM")) &&
(init_term (tname, &err) == 0))
{
tnamep = mklist (termbuf, tname);
}
else
{
if (tname && ((int) strlen (tname) <= 40))
{
unknown[0] = tname;
upcase (tname);
}
else
unknown[0] = name_unknown;
tnamep = unknown;
}
next = tnamep;
}
if (*next == 0)
next = tnamep;
return (*next++);
}
/*
* suboption()
*
* Look at the sub-option buffer, and try to be helpful to the other
* side.
*
* Currently we recognize:
*
* Terminal type, send request.
* Terminal speed (send request).
* Local flow control (is request).
* Linemode
*/
static void
suboption (void)
{
unsigned char subchar;
printsub ('<', subbuffer, SB_LEN () + 2);
switch (subchar = SB_GET ())
{
case TELOPT_TTYPE:
if (my_want_state_is_wont (TELOPT_TTYPE))
return;
if (SB_EOF () || SB_GET () != TELQUAL_SEND)
{
return;
}
else
{
char *name;
unsigned char temp[50];
int len;
#if defined TN3270
if (tn3270_ttype ())
{
return;
}
#endif /* defined(TN3270) */
name = gettermname ();
len = strlen (name) + 4 + 2;
if ((len < NETROOM ()) && (len < (int) sizeof (temp)))
{
snprintf ((char *) temp, sizeof (temp), "%c%c%c%c%s%c%c",
IAC, SB, TELOPT_TTYPE, TELQUAL_IS, name, IAC, SE);
ring_supply_data (&netoring, temp, len);
printsub ('>', &temp[2], len - 2);
}
else
{
ExitString ("No room in buffer for terminal type.\n", 1);
}
}
break;
case TELOPT_TSPEED:
if (my_want_state_is_wont (TELOPT_TSPEED))
return;
if (SB_EOF ())
return;
if (SB_GET () == TELQUAL_SEND)
{
long ospeed, ispeed;
unsigned char temp[50]; /* Two six-digit integers plus 7. */
int len;
TerminalSpeeds (&ispeed, &ospeed);
snprintf ((char *) temp, sizeof (temp), "%c%c%c%c%d,%d%c%c",
IAC, SB, TELOPT_TSPEED, TELQUAL_IS,
(int) ospeed, (int) ispeed, IAC, SE);
len = strlen ((char *) temp + 4) + 4; /* temp[3] is 0 ... */
if (len < NETROOM ())
{
ring_supply_data (&netoring, temp, len);
printsub ('>', temp + 2, len - 2);
}
/*@*/
else
printf ("lm_will: not enough room in buffer\n");
}
break;
case TELOPT_LFLOW:
if (my_want_state_is_wont (TELOPT_LFLOW))
return;
if (SB_EOF ())
return;
switch (SB_GET ())
{
case LFLOW_RESTART_ANY:
restartany = 1;
break;
case LFLOW_RESTART_XON:
restartany = 0;
break;
case LFLOW_ON:
localflow = 1;
break;
case LFLOW_OFF:
localflow = 0;
break;
default:
return;
}
setcommandmode ();
setconnmode (0);
break;
case TELOPT_LINEMODE:
if (my_want_state_is_wont (TELOPT_LINEMODE))
return;
if (SB_EOF ())
return;
switch (SB_GET ())
{
case WILL:
lm_will (subpointer, SB_LEN ());
break;
case WONT:
lm_wont (subpointer, SB_LEN ());
break;
case DO:
lm_do (subpointer, SB_LEN ());
break;
case DONT:
lm_dont (subpointer, SB_LEN ());
break;
case LM_SLC:
slc (subpointer, SB_LEN ());
break;
case LM_MODE:
lm_mode (subpointer, SB_LEN (), 0);
break;
default:
break;
}
break;
#ifdef OLD_ENVIRON
case TELOPT_OLD_ENVIRON:
#endif
case TELOPT_NEW_ENVIRON:
if (SB_EOF ())
return;
switch (SB_PEEK ())
{
case TELQUAL_IS:
case TELQUAL_INFO:
if (my_want_state_is_dont (subchar))
return;
break;
case TELQUAL_SEND:
if (my_want_state_is_wont (subchar))
{
return;
}
break;
default:
return;
}
env_opt (subpointer, SB_LEN ());
break;
case TELOPT_XDISPLOC:
if (my_want_state_is_wont (TELOPT_XDISPLOC))
return;
if (SB_EOF ())
return;
if (SB_GET () == TELQUAL_SEND)
{
unsigned char temp[50], *dp;
int len;
if ((dp = env_getvalue ("DISPLAY")) == NULL)
{
/*
* Something happened, we no longer have a DISPLAY
* variable. So, turn off the option.
*/
send_wont (TELOPT_XDISPLOC, 1);
break;
}
/* Remote host, and display server must not be corrupted
* by truncation. In addition, every character of telnet
* protocol must remain unsevered. Check that DP fits in
* full within TEMP. Otherwise report buffer error and
* turn off the option.
*/
if (strlen ((char *) dp) >= sizeof (temp) - 4 - 2)
{
printf ("lm_will: not enough room in buffer for DISPLAY\n");
send_wont (TELOPT_XDISPLOC, 1);
break;
}
/* Go ahead safely. */
snprintf ((char *) temp, sizeof (temp), "%c%c%c%c%s%c%c",
IAC, SB, TELOPT_XDISPLOC, TELQUAL_IS, dp, IAC, SE);
len = strlen ((char *) temp + 4) + 4; /* temp[3] is 0 ... */
if (len < NETROOM ())
{
ring_supply_data (&netoring, temp, len);
printsub ('>', temp + 2, len - 2);
}
/*@*/
else
printf ("lm_will: not enough room in buffer\n");
}
break;
#if defined AUTHENTICATION
case TELOPT_AUTHENTICATION:
{
if (!autologin)
break;
if (SB_EOF ())
return;
switch (SB_GET ())
{
case TELQUAL_IS:
if (my_want_state_is_dont (TELOPT_AUTHENTICATION))
return;
auth_is (subpointer, SB_LEN ());
break;
case TELQUAL_SEND:
if (my_want_state_is_wont (TELOPT_AUTHENTICATION))
return;
auth_send (subpointer, SB_LEN ());
break;
case TELQUAL_REPLY:
if (my_want_state_is_wont (TELOPT_AUTHENTICATION))
return;
auth_reply (subpointer, SB_LEN ());
break;
case TELQUAL_NAME:
if (my_want_state_is_dont (TELOPT_AUTHENTICATION))
return;
auth_name (subpointer, SB_LEN ());
break;
}
}
break;
#endif
#ifdef ENCRYPTION
case TELOPT_ENCRYPT:
if (SB_EOF ())
return;
switch (SB_GET ())
{
case ENCRYPT_START:
if (my_want_state_is_dont (TELOPT_ENCRYPT))
return;
encrypt_start (subpointer, SB_LEN ());
break;
case ENCRYPT_END:
if (my_want_state_is_dont (TELOPT_ENCRYPT))
return;
encrypt_end ();
break;
case ENCRYPT_SUPPORT:
if (my_want_state_is_wont (TELOPT_ENCRYPT))
return;
encrypt_support (subpointer, SB_LEN ());
break;
case ENCRYPT_REQSTART:
if (my_want_state_is_wont (TELOPT_ENCRYPT))
return;
encrypt_request_start (subpointer, SB_LEN ());
break;
case ENCRYPT_REQEND:
if (my_want_state_is_wont (TELOPT_ENCRYPT))
return;
/*
* We can always send an REQEND so that we cannot
* get stuck encrypting. We should only get this
* if we have been able to get in the correct mode
* anyhow.
*/
encrypt_request_end ();
break;
case ENCRYPT_IS:
if (my_want_state_is_dont (TELOPT_ENCRYPT))
return;
encrypt_is (subpointer, SB_LEN ());
break;
case ENCRYPT_REPLY:
if (my_want_state_is_wont (TELOPT_ENCRYPT))
return;
encrypt_reply (subpointer, SB_LEN ());
break;
case ENCRYPT_ENC_KEYID:
if (my_want_state_is_dont (TELOPT_ENCRYPT))
return;
encrypt_enc_keyid (subpointer, SB_LEN ());
break;
case ENCRYPT_DEC_KEYID:
if (my_want_state_is_wont (TELOPT_ENCRYPT))
return;
encrypt_dec_keyid (subpointer, SB_LEN ());
break;
default:
break;
}
break;
#endif /* ENCRYPTION */
default:
break;
}
}
static unsigned char str_lm[] = { IAC, SB, TELOPT_LINEMODE, 0, 0, IAC, SE };
void
lm_will (unsigned char *cmd, int len)
{
if (len < 1)
{
/*@ */ printf ("lm_will: no command!!!\n");
/* Should not happen... */
return;
}
switch (cmd[0])
{
case LM_FORWARDMASK: /* We shouldn't ever get this... */
default:
str_lm[3] = DONT;
str_lm[4] = cmd[0];
if (NETROOM () > (int) sizeof (str_lm))
{
ring_supply_data (&netoring, str_lm, sizeof (str_lm));
printsub ('>', &str_lm[2], sizeof (str_lm) - 2);
}
/*@*/
else
printf ("lm_will: not enough room in buffer\n");
break;
}
}
void
lm_wont (unsigned char *cmd, int len)
{
if (len < 1)
{
/*@ */ printf ("lm_wont: no command!!!\n");
/* Should not happen... */
return;
}
switch (cmd[0])
{
case LM_FORWARDMASK: /* We shouldn't ever get this... */
default:
/* We are always DONT, so don't respond */
return;
}
}
void
lm_do (unsigned char *cmd, int len)
{
if (len < 1)
{
/*@ */ printf ("lm_do: no command!!!\n");
/* Should not happen... */
return;
}
switch (cmd[0])
{
case LM_FORWARDMASK:
default:
str_lm[3] = WONT;
str_lm[4] = cmd[0];
if (NETROOM () > (int) sizeof (str_lm))
{
ring_supply_data (&netoring, str_lm, sizeof (str_lm));
printsub ('>', &str_lm[2], sizeof (str_lm) - 2);
}
/*@*/
else
printf ("lm_do: not enough room in buffer\n");
break;
}
}
void
lm_dont (unsigned char *cmd, int len)
{
if (len < 1)
{
/*@ */ printf ("lm_dont: no command!!!\n");
/* Should not happen... */
return;
}
switch (cmd[0])
{
case LM_FORWARDMASK:
default:
/* we are always WONT, so don't respond */
break;
}
}
static unsigned char str_lm_mode[] = {
IAC, SB, TELOPT_LINEMODE, LM_MODE, 0, IAC, SE
};
void
lm_mode (unsigned char *cmd, int len, int init)
{
if (len != 1)
return;
if ((linemode & MODE_MASK & ~MODE_ACK) == *cmd)
return;
if (*cmd & MODE_ACK)
return;
linemode = *cmd & (MODE_MASK & ~MODE_ACK);
str_lm_mode[4] = linemode;
if (!init)
str_lm_mode[4] |= MODE_ACK;
if (NETROOM () > (int) sizeof (str_lm_mode))
{
ring_supply_data (&netoring, str_lm_mode, sizeof (str_lm_mode));
printsub ('>', &str_lm_mode[2], sizeof (str_lm_mode) - 2);
}
/*@*/
else
printf ("lm_mode: not enough room in buffer\n");
setconnmode (0); /* set changed mode */
}
/*
* slc()
* Handle special character suboption of LINEMODE.
*/
struct spc
{
cc_t val;
cc_t *valp;
char flags; /* Current flags & level */
char mylevel; /* Maximum level & flags */
} spc_data[NSLC + 1];
#define SLC_IMPORT 0
#define SLC_EXPORT 1
#define SLC_RVALUE 2
static int slc_mode = SLC_EXPORT;
void
slc_init (void)
{
struct spc *spcp;
localchars = 1;
for (spcp = spc_data; spcp < &spc_data[NSLC + 1]; spcp++)
{
spcp->val = 0;
spcp->valp = 0;
spcp->flags = spcp->mylevel = SLC_NOSUPPORT;
}
#define initfunc(func, flags) { \
spcp = &spc_data[func]; \
if ((spcp->valp = tcval(func))) { \
spcp->val = *spcp->valp; \
spcp->mylevel = SLC_VARIABLE|flags; \
} else { \
spcp->val = 0; \
spcp->mylevel = SLC_DEFAULT; \
} \
}
initfunc (SLC_SYNCH, 0);
/* No BRK */
initfunc (SLC_AO, 0);
initfunc (SLC_AYT, 0);
/* No EOR */
initfunc (SLC_ABORT, SLC_FLUSHIN | SLC_FLUSHOUT);
initfunc (SLC_EOF, 0);
#ifndef SYSV_TERMIO
initfunc (SLC_SUSP, SLC_FLUSHIN);
#endif
initfunc (SLC_EC, 0);
initfunc (SLC_EL, 0);
#ifndef SYSV_TERMIO
initfunc (SLC_EW, 0);
initfunc (SLC_RP, 0);
initfunc (SLC_LNEXT, 0);
#endif
initfunc (SLC_XON, 0);
initfunc (SLC_XOFF, 0);
#ifdef SYSV_TERMIO
spc_data[SLC_XON].mylevel = SLC_CANTCHANGE;
spc_data[SLC_XOFF].mylevel = SLC_CANTCHANGE;
#endif
initfunc (SLC_FORW1, 0);
#ifdef USE_TERMIO
initfunc (SLC_FORW2, 0);
/* No FORW2 */
#endif
initfunc (SLC_IP, SLC_FLUSHIN | SLC_FLUSHOUT);
#undef initfunc
if (slc_mode == SLC_EXPORT)
slc_export ();
else
slc_import (1);
}
void
slcstate (void)
{
printf ("Special characters are %s values\n",
slc_mode == SLC_IMPORT ? "remote default" :
slc_mode == SLC_EXPORT ? "local" : "remote");
}
void
slc_mode_export (int n)
{
slc_mode = SLC_EXPORT;
if (my_state_is_will (TELOPT_LINEMODE))
slc_export ();
}
void
slc_mode_import (int def)
{
slc_mode = def ? SLC_IMPORT : SLC_RVALUE;
if (my_state_is_will (TELOPT_LINEMODE))
slc_import (def);
}
unsigned char slc_import_val[] = {
IAC, SB, TELOPT_LINEMODE, LM_SLC, 0, SLC_VARIABLE, 0, IAC, SE
};
unsigned char slc_import_def[] = {
IAC, SB, TELOPT_LINEMODE, LM_SLC, 0, SLC_DEFAULT, 0, IAC, SE
};
void
slc_import (int def)
{
if (NETROOM () > (int) sizeof (slc_import_val))
{
if (def)
{
ring_supply_data (&netoring, slc_import_def,
sizeof (slc_import_def));
printsub ('>', &slc_import_def[2], sizeof (slc_import_def) - 2);
}
else
{
ring_supply_data (&netoring, slc_import_val,
sizeof (slc_import_val));
printsub ('>', &slc_import_val[2], sizeof (slc_import_val) - 2);
}
}
/*@*/
else
printf ("slc_import: not enough room\n");
}
void
slc_export (void)
{
struct spc *spcp;
TerminalDefaultChars ();
slc_start_reply ();
for (spcp = &spc_data[1]; spcp < &spc_data[NSLC + 1]; spcp++)
{
if (spcp->mylevel != SLC_NOSUPPORT)
{
if (spcp->val == (cc_t) (_POSIX_VDISABLE))
spcp->flags = SLC_NOSUPPORT;
else
spcp->flags = spcp->mylevel;
if (spcp->valp)
spcp->val = *spcp->valp;
slc_add_reply (spcp - spc_data, spcp->flags, spcp->val);
}
}
slc_end_reply ();
slc_update ();
setconnmode (1); /* Make sure the character values are set */
}
void
slc (unsigned char *cp, int len)
{
struct spc *spcp;
int func, level;
slc_start_reply ();
for (; len >= 3; len -= 3, cp += 3)
{
func = cp[SLC_FUNC];
if (func == 0)
{
/*
* Client side: always ignore 0 function.
*/
continue;
}
if (func > NSLC)
{
if ((cp[SLC_FLAGS] & SLC_LEVELBITS) != SLC_NOSUPPORT)
slc_add_reply (func, SLC_NOSUPPORT, 0);
continue;
}
spcp = &spc_data[func];
level = cp[SLC_FLAGS] & (SLC_LEVELBITS | SLC_ACK);
if ((cp[SLC_VALUE] == (unsigned char) spcp->val) &&
((level & SLC_LEVELBITS) == (spcp->flags & SLC_LEVELBITS)))
{
continue;
}
if (level == (SLC_DEFAULT | SLC_ACK))
{
/*
* This is an error condition, the SLC_ACK
* bit should never be set for the SLC_DEFAULT
* level. Our best guess to recover is to
* ignore the SLC_ACK bit.
*/
cp[SLC_FLAGS] &= ~SLC_ACK;
}
if (level == ((spcp->flags & SLC_LEVELBITS) | SLC_ACK))
{
spcp->val = (cc_t) cp[SLC_VALUE];
spcp->flags = cp[SLC_FLAGS]; /* include SLC_ACK */
continue;
}
level &= ~SLC_ACK;
if (level <= (spcp->mylevel & SLC_LEVELBITS))
{
spcp->flags = cp[SLC_FLAGS] | SLC_ACK;
spcp->val = (cc_t) cp[SLC_VALUE];
}
if (level == SLC_DEFAULT)
{
if ((spcp->mylevel & SLC_LEVELBITS) != SLC_DEFAULT)
spcp->flags = spcp->mylevel;
else
spcp->flags = SLC_NOSUPPORT;
}
slc_add_reply (func, spcp->flags, spcp->val);
}
slc_end_reply ();
if (slc_update ())
setconnmode (1); /* set the new character values */
}
void
slc_check (void)
{
struct spc *spcp;
slc_start_reply ();
for (spcp = &spc_data[1]; spcp < &spc_data[NSLC + 1]; spcp++)
{
if (spcp->valp && spcp->val != *spcp->valp)
{
spcp->val = *spcp->valp;
if (spcp->val == (cc_t) (_POSIX_VDISABLE))
spcp->flags = SLC_NOSUPPORT;
else
spcp->flags = spcp->mylevel;
slc_add_reply (spcp - spc_data, spcp->flags, spcp->val);
}
}
slc_end_reply ();
setconnmode (1);
}
unsigned char slc_reply[128];
unsigned char *slc_replyp;
void
slc_start_reply (void)
{
slc_replyp = slc_reply;
*slc_replyp++ = IAC;
*slc_replyp++ = SB;
*slc_replyp++ = TELOPT_LINEMODE;
*slc_replyp++ = LM_SLC;
}
void
slc_add_reply (unsigned int func, unsigned int flags, cc_t value)
{
if ((*slc_replyp++ = func) == IAC)
*slc_replyp++ = IAC;
if ((*slc_replyp++ = flags) == IAC)
*slc_replyp++ = IAC;
if ((*slc_replyp++ = (unsigned char) value) == IAC)
*slc_replyp++ = IAC;
}
void
slc_end_reply (void)
{
int len;
*slc_replyp++ = IAC;
*slc_replyp++ = SE;
len = slc_replyp - slc_reply;
if (len <= 6)
return;
if (NETROOM () > len)
{
ring_supply_data (&netoring, slc_reply, slc_replyp - slc_reply);
printsub ('>', &slc_reply[2], slc_replyp - slc_reply - 2);
}
/*@*/
else
printf ("slc_end_reply: not enough room\n");
}
int
slc_update (void)
{
struct spc *spcp;
int need_update = 0;
for (spcp = &spc_data[1]; spcp < &spc_data[NSLC + 1]; spcp++)
{
if (!(spcp->flags & SLC_ACK))
continue;
spcp->flags &= ~SLC_ACK;
if (spcp->valp && (*spcp->valp != spcp->val))
{
*spcp->valp = spcp->val;
need_update = 1;
}
}
return (need_update);
}
#ifdef OLD_ENVIRON
# ifdef ENV_HACK
/*
* Earlier version of telnet/telnetd from the BSD code had
* the definitions of VALUE and VAR reversed. To ensure
* maximum interoperability, we assume that the server is
* an older BSD server, until proven otherwise. The newer
* BSD servers should be able to handle either definition,
* so it is better to use the wrong values if we don't
* know what type of server it is.
*/
int env_auto = 1;
int old_env_var = OLD_ENV_VAR;
int old_env_value = OLD_ENV_VALUE;
# else
# define old_env_var OLD_ENV_VAR
# define old_env_value OLD_ENV_VALUE
# endif
#endif
void
env_opt (unsigned char *buf, int len)
{
unsigned char *ep = 0, *epc = 0;
int i;
switch (buf[0] & 0xff)
{
case TELQUAL_SEND:
env_opt_start ();
if (len == 1)
{
env_opt_add (NULL);
}
else
for (i = 1; i < len; i++)
{
switch (buf[i] & 0xff)
{
#ifdef OLD_ENVIRON
case OLD_ENV_VAR:
# ifdef ENV_HACK
if (telopt_environ == TELOPT_OLD_ENVIRON && env_auto)
{
/* Server has the same definitions */
old_env_var = OLD_ENV_VAR;
old_env_value = OLD_ENV_VALUE;
}
/* FALL THROUGH */
# endif
case OLD_ENV_VALUE:
/*
* Although OLD_ENV_VALUE is not legal, we will
* still recognize it, just in case it is an
* old server that has VAR & VALUE mixed up...
*/
/* FALL THROUGH */
#else
case NEW_ENV_VAR:
#endif
case ENV_USERVAR:
if (ep)
{
*epc = 0;
env_opt_add (ep);
}
ep = epc = &buf[i + 1];
break;
case ENV_ESC:
i++;
/*FALL THROUGH */
default:
if (epc)
*epc++ = buf[i];
break;
}
}
if (ep)
{
*epc = 0;
env_opt_add (ep);
}
env_opt_end (1);
break;
case TELQUAL_IS:
case TELQUAL_INFO:
/* Ignore for now. We shouldn't get it anyway. */
break;
default:
break;
}
}
#define OPT_REPLY_SIZE (2 * SUBBUFSIZE)
unsigned char *opt_reply = NULL;
unsigned char *opt_replyp;
unsigned char *opt_replyend;
void
env_opt_start (void)
{
if (opt_reply)
opt_reply = (unsigned char *) realloc (opt_reply, OPT_REPLY_SIZE);
else
opt_reply = (unsigned char *) malloc (OPT_REPLY_SIZE);
if (opt_reply == NULL)
{
/*@*/ printf ("env_opt_start: malloc()/realloc() failed!!!\n");
opt_reply = opt_replyp = opt_replyend = NULL;
return;
}
opt_replyp = opt_reply;
opt_replyend = opt_reply + OPT_REPLY_SIZE;
*opt_replyp++ = IAC;
*opt_replyp++ = SB;
*opt_replyp++ = telopt_environ;
*opt_replyp++ = TELQUAL_IS;
}
void
env_opt_start_info (void)
{
env_opt_start ();
if (opt_replyp)
opt_replyp[-1] = TELQUAL_INFO;
}
void
env_opt_add (unsigned char *ep)
{
unsigned char *vp, c;
if (opt_reply == NULL)
/*XXX*/ return;
/*XXX*/ if (ep == NULL || *ep == '\0')
{
/* Send user defined variables first. */
env_default (1, 0);
while ((ep = env_default (0, 0)))
env_opt_add (ep);
/* Now add the list of well know variables. */
env_default (1, 1);
while ((ep = env_default (0, 1)))
env_opt_add (ep);
return;
}
vp = env_getvalue ((char *) ep);
if (opt_replyp + (vp ? strlen ((char *) vp) : 0) +
strlen ((char *) ep) + 6 > opt_replyend)
{
int len;
opt_replyend += OPT_REPLY_SIZE;
len = opt_replyend - opt_reply;
opt_reply = (unsigned char *) realloc (opt_reply, len);
if (opt_reply == NULL)
{
/*@*/ printf ("env_opt_add: realloc() failed!!!\n");
opt_reply = opt_replyp = opt_replyend = NULL;
return;
}
opt_replyp = opt_reply + len - (opt_replyend - opt_replyp);
opt_replyend = opt_reply + len;
}
if (opt_welldefined ((char *) ep))
#ifdef OLD_ENVIRON
if (telopt_environ == TELOPT_OLD_ENVIRON)
*opt_replyp++ = old_env_var;
else
#endif
*opt_replyp++ = NEW_ENV_VAR;
else
*opt_replyp++ = ENV_USERVAR;
for (;;)
{
while ((c = *ep++))
{
if (opt_replyp + (2 + 2) > opt_replyend)
return;
switch (c & 0xff)
{
case IAC:
*opt_replyp++ = IAC;
break;
case NEW_ENV_VAR:
case NEW_ENV_VALUE:
case ENV_ESC:
case ENV_USERVAR:
*opt_replyp++ = ENV_ESC;
break;
}
*opt_replyp++ = c;
}
if ((ep = vp))
{
if (opt_replyp + (1 + 2 + 2) > opt_replyend)
return;
#ifdef OLD_ENVIRON
if (telopt_environ == TELOPT_OLD_ENVIRON)
*opt_replyp++ = old_env_value;
else
#endif
*opt_replyp++ = NEW_ENV_VALUE;
vp = NULL;
}
else
break;
}
}
int
opt_welldefined (char *ep)
{
if ((strcmp (ep, "USER") == 0) ||
(strcmp (ep, "DISPLAY") == 0) ||
(strcmp (ep, "PRINTER") == 0) ||
(strcmp (ep, "SYSTEMTYPE") == 0) ||
(strcmp (ep, "JOB") == 0) || (strcmp (ep, "ACCT") == 0))
return (1);
return (0);
}
void
env_opt_end (int emptyok)
{
int len;
if (opt_replyp + 2 > opt_replyend)
return;
len = opt_replyp - opt_reply + 2;
if (emptyok || len > 6)
{
*opt_replyp++ = IAC;
*opt_replyp++ = SE;
if (NETROOM () > len)
{
ring_supply_data (&netoring, opt_reply, len);
printsub ('>', &opt_reply[2], len - 2);
}
/*@*/
else
printf ("slc_end_reply: not enough room\n");
}
if (opt_reply)
{
free (opt_reply);
opt_reply = opt_replyp = opt_replyend = NULL;
}
}
int
telrcv (void)
{
int c;
int scc;
unsigned char *sbp;
int count;
int returnValue = 0;
scc = 0;
count = 0;
while (TTYROOM () > 2)
{
if (scc == 0)
{
if (count)
{
ring_consumed (&netiring, count);
returnValue = 1;
count = 0;
}
sbp = netiring.consume;
scc = ring_full_consecutive (&netiring);
if (scc == 0)
{
/* No more data coming in */
break;
}
}
c = *sbp++ & 0xff, scc--;
count++;
#ifdef ENCRYPTION
if (decrypt_input)
c = (*decrypt_input) (c);
#endif /* ENCRYPTION */
switch (telrcv_state)
{
case TS_CR:
telrcv_state = TS_DATA;
if (c == '\0')
{
break; /* Ignore \0 after CR */
}
else if ((c == '\n') && my_want_state_is_dont (TELOPT_ECHO)
&& !crmod)
{
TTYADD (c);
break;
}
/* Else, fall through */
case TS_DATA:
if (c == IAC)
{
telrcv_state = TS_IAC;
break;
}
#if defined TN3270
if (In3270)
{
*Ifrontp++ = c;
while (scc > 0)
{
c = *sbp++ & 0377, scc--;
count++;
# ifdef ENCRYPTION
if (decrypt_input)
c = (*decrypt_input) (c);
# endif/* ENCRYPTION */
if (c == IAC)
{
telrcv_state = TS_IAC;
break;
}
*Ifrontp++ = c;
}
}
else
#endif /* defined(TN3270) */
/*
* The 'crmod' hack (see following) is needed
* since we can't * set CRMOD on output only.
* Machines like MULTICS like to send \r without
* \n; since we must turn off CRMOD to get proper
* input, the mapping is done here (sigh).
*/
if ((c == '\r') && my_want_state_is_dont (TELOPT_BINARY))
{
if (scc > 0)
{
c = *sbp & 0xff;
#ifdef ENCRYPTION
if (decrypt_input)
c = (*decrypt_input) (c);
#endif /* ENCRYPTION */
if (c == 0)
{
sbp++, scc--;
count++;
/* a "true" CR */
TTYADD ('\r');
}
else if (my_want_state_is_dont (TELOPT_ECHO) && (c == '\n'))
{
sbp++, scc--;
count++;
TTYADD ('\n');
}
else
{
#ifdef ENCRYPTION
if (decrypt_input)
(*decrypt_input) (-1);
#endif /* ENCRYPTION */
TTYADD ('\r');
if (crmod)
{
TTYADD ('\n');
}
}
}
else
{
telrcv_state = TS_CR;
TTYADD ('\r');
if (crmod)
{
TTYADD ('\n');
}
}
}
else
{
TTYADD (c);
}
continue;
case TS_IAC:
process_iac:
switch (c)
{
case WILL:
telrcv_state = TS_WILL;
continue;
case WONT:
telrcv_state = TS_WONT;
continue;
case DO:
telrcv_state = TS_DO;
continue;
case DONT:
telrcv_state = TS_DONT;
continue;
case DM:
/*
* We may have missed an urgent notification,
* so make sure we flush whatever is in the
* buffer currently.
*/
printoption ("RCVD", IAC, DM);
SYNCHing = 1;
ttyflush (1);
SYNCHing = stilloob ();
settimer (gotDM);
break;
case SB:
SB_CLEAR ();
telrcv_state = TS_SB;
continue;
#if defined TN3270
case EOR:
if (In3270)
{
if (Ibackp == Ifrontp)
{
Ibackp = Ifrontp = Ibuf;
ISend = 0; /* should have been! */
}
else
{
Ibackp += DataFromNetwork (Ibackp, Ifrontp - Ibackp, 1);
ISend = 1;
}
}
printoption ("RCVD", IAC, EOR);
break;
#endif /* defined(TN3270) */
case IAC:
#if !defined TN3270
TTYADD (IAC);
#else /* !defined(TN3270) */
if (In3270)
{
*Ifrontp++ = IAC;
}
else
{
TTYADD (IAC);
}
#endif /* !defined(TN3270) */
break;
case NOP:
case GA:
default:
printoption ("RCVD", IAC, c);
break;
}
telrcv_state = TS_DATA;
continue;
case TS_WILL:
printoption ("RCVD", WILL, c);
willoption (c);
SetIn3270 ();
telrcv_state = TS_DATA;
continue;
case TS_WONT:
printoption ("RCVD", WONT, c);
wontoption (c);
SetIn3270 ();
telrcv_state = TS_DATA;
continue;
case TS_DO:
printoption ("RCVD", DO, c);
dooption (c);
SetIn3270 ();
if (c == TELOPT_NAWS)
{
sendnaws ();
}
else if (c == TELOPT_LFLOW)
{
localflow = 1;
setcommandmode ();
setconnmode (0);
}
telrcv_state = TS_DATA;
continue;
case TS_DONT:
printoption ("RCVD", DONT, c);
dontoption (c);
flushline = 1;
setconnmode (0); /* set new tty mode (maybe) */
SetIn3270 ();
telrcv_state = TS_DATA;
continue;
case TS_SB:
if (c == IAC)
{
telrcv_state = TS_SE;
}
else
{
SB_ACCUM (c);
}
continue;
case TS_SE:
if (c != SE)
{
if (c != IAC)
{
/*
* This is an error. We only expect to get
* "IAC IAC" or "IAC SE". Several things may
* have happened. An IAC was not doubled, the
* IAC SE was left off, or another option got
* inserted into the suboption are all possibilities.
* If we assume that the IAC was not doubled,
* and really the IAC SE was left off, we could
* get into an infinite loop here. So, instead,
* we terminate the suboption, and process the
* partial suboption if we can.
*/
SB_ACCUM (IAC);
SB_ACCUM (c);
subpointer -= 2;
SB_TERM ();
printoption ("In SUBOPTION processing, RCVD", IAC, c);
suboption (); /* handle sub-option */
SetIn3270 ();
telrcv_state = TS_IAC;
goto process_iac;
}
SB_ACCUM (c);
telrcv_state = TS_SB;
}
else
{
SB_ACCUM (IAC);
SB_ACCUM (SE);
subpointer -= 2;
SB_TERM ();
suboption (); /* handle sub-option */
SetIn3270 ();
telrcv_state = TS_DATA;
}
}
}
if (count)
ring_consumed (&netiring, count);
return returnValue || count;
}
static int bol = 1, local = 0;
int
rlogin_susp (void)
{
if (local)
{
local = 0;
bol = 1;
command (0, "z\n", 2);
return (1);
}
return (0);
}
static int
telsnd (void)
{
int tcc;
int count;
int returnValue = 0;
unsigned char *tbp;
tcc = 0;
count = 0;
while (NETROOM () > 2)
{
int sc;
int c;
if (tcc == 0)
{
if (count)
{
ring_consumed (&ttyiring, count);
returnValue = 1;
count = 0;
}
tbp = ttyiring.consume;
tcc = ring_full_consecutive (&ttyiring);
if (tcc == 0)
{
break;
}
}
c = *tbp++ & 0xff, sc = strip (c), tcc--;
count++;
if (rlogin != _POSIX_VDISABLE)
{
if (bol)
{
bol = 0;
if (sc == rlogin)
{
local = 1;
continue;
}
}
else if (local)
{
local = 0;
if (sc == '.' || c == termEofChar)
{
bol = 1;
command (0, "close\n", 6);
continue;
}
if (sc == termSuspChar)
{
bol = 1;
command (0, "z\n", 2);
continue;
}
if (sc == escape)
{
command (0, (char *) tbp, tcc);
bol = 1;
count += tcc;
tcc = 0;
flushline = 1;
break;
}
if (sc != rlogin)
{
++tcc;
--tbp;
--count;
c = sc = rlogin;
}
}
if ((sc == '\n') || (sc == '\r'))
bol = 1;
}
else if (escape != _POSIX_VDISABLE && sc == escape)
{
/*
* Double escape is a pass through of a single escape character.
*/
if (tcc && strip (*tbp) == escape)
{
tbp++;
tcc--;
count++;
bol = 0;
}
else
{
command (0, (char *) tbp, tcc);
bol = 1;
count += tcc;
tcc = 0;
flushline = 1;
break;
}
}
else
bol = 0;
#ifdef KLUDGELINEMODE
if (kludgelinemode && (globalmode & MODE_EDIT) && (sc == echoc))
{
if (tcc > 0 && strip (*tbp) == echoc)
{
tcc--;
tbp++;
count++;
}
else
{
dontlecho = !dontlecho;
settimer (echotoggle);
setconnmode (0);
flushline = 1;
break;
}
}
#endif
if (MODE_LOCAL_CHARS (globalmode))
{
if (TerminalSpecialChars (sc) == 0)
{
bol = 1;
break;
}
}
if (my_want_state_is_wont (TELOPT_BINARY))
{
switch (c)
{
case '\n':
/*
* If we are in CRMOD mode (\r ==> \n)
* on our local machine, then probably
* a newline (unix) is CRLF (TELNET).
*/
if (MODE_LOCAL_CHARS (globalmode))
{
NETADD ('\r');
}
NETADD ('\n');
bol = flushline = 1;
break;
case '\r':
if (!crlf)
{
NET2ADD ('\r', '\0');
}
else
{
NET2ADD ('\r', '\n');
}
bol = flushline = 1;
break;
case IAC:
NET2ADD (IAC, IAC);
break;
default:
NETADD (c);
break;
}
}
else if (c == IAC)
{
NET2ADD (IAC, IAC);
}
else
{
NETADD (c);
}
}
if (count)
ring_consumed (&ttyiring, count);
return returnValue || count; /* Non-zero if we did anything */
}
/*
* Scheduler()
*
* Try to do something.
*
* If we do something useful, return 1; else return 0.
*
*/
/* block; should we block in the select ? */
int
Scheduler (int block)
{
/* 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;
int netin, netout, netex, ttyin, ttyout;
/* Decide which rings should be processed */
netout = ring_full_count (&netoring) &&
(flushline || (my_want_state_is_wont (TELOPT_LINEMODE)
#ifdef KLUDGELINEMODE
&& (!kludgelinemode || my_want_state_is_do (TELOPT_SGA))
#endif
) || my_want_state_is_will (TELOPT_BINARY));
ttyout = ring_full_count (&ttyoring);
#if defined TN3270
ttyin = ring_empty_count (&ttyiring) && (shell_active == 0);
#else /* defined(TN3270) */
ttyin = ring_empty_count (&ttyiring);
#endif /* defined(TN3270) */
#if defined TN3270
netin = ring_empty_count (&netiring);
#else /* !defined(TN3270) */
netin = !ISend && ring_empty_count (&netiring);
#endif /* !defined(TN3270) */
netex = !SYNCHing;
/* If we have seen a signal recently, reset things */
#if defined TN3270 && (defined unix || defined __unix || defined __unix__)
if (HaveInput)
{
HaveInput = 0;
signal (SIGIO, inputAvailable);
}
#endif /* TN3270 && (unix || __unix || __unix__) */
/* Call to system code to process rings */
returnValue = process_rings (netin, netout, netex, ttyin, ttyout, !block);
/* Now, look at the input rings, looking for work to do. */
if (ring_full_count (&ttyiring))
{
#if defined TN3270
if (In3270)
{
int c;
c = DataFromTerminal (ttyiring.consume,
ring_full_consecutive (&ttyiring));
if (c)
{
returnValue = 1;
ring_consumed (&ttyiring, c);
}
}
else
{
#endif /* defined(TN3270) */
returnValue |= telsnd ();
#if defined TN3270
}
#endif /* defined(TN3270) */
}
if (ring_full_count (&netiring))
{
#if !defined TN3270
returnValue |= telrcv ();
#else /* !defined(TN3270) */
returnValue = Push3270 ();
#endif /* !defined(TN3270) */
}
return returnValue;
}
/*
* Select from tty and network...
*/
void
telnet (char *user)
{
sys_telnet_init ();
#if defined AUTHENTICATION || defined ENCRYPTION
{
static char *local_host = 0;
if (!local_host)
local_host = localhost ();
auth_encrypt_init (local_host, hostname, NULL, "TELNET", 0);
auth_encrypt_user (user);
}
#else /* !defined(AUTHENTICATION) && !defined(ENCRYPTION) */
(void) user;
#endif
#if !defined TN3270
if (telnetport)
{
# if defined AUTHENTICATION
if (autologin)
send_will (TELOPT_AUTHENTICATION, 1);
# endif
# ifdef ENCRYPTION
send_do (TELOPT_ENCRYPT, 1);
send_will (TELOPT_ENCRYPT, 1);
# endif/* ENCRYPTION */
send_do (TELOPT_SGA, 1);
send_will (TELOPT_TTYPE, 1);
send_will (TELOPT_NAWS, 1);
send_will (TELOPT_TSPEED, 1);
send_will (TELOPT_LFLOW, 1);
send_will (TELOPT_LINEMODE, 1);
send_will (TELOPT_NEW_ENVIRON, 1);
send_do (TELOPT_STATUS, 1);
if (env_getvalue ("DISPLAY"))
send_will (TELOPT_XDISPLOC, 1);
if (eight)
tel_enter_binary (eight);
}
#endif /* !defined(TN3270) */
#if !defined TN3270
for (;;)
{
int schedValue;
while ((schedValue = Scheduler (0)) != 0)
{
if (schedValue == -1)
{
setcommandmode ();
return;
}
}
if (Scheduler (1) == -1)
{
setcommandmode ();
return;
}
}
#else /* !defined(TN3270) */
for (;;)
{
int schedValue;
while (!In3270 && !shell_active)
{
if (Scheduler (1) == -1)
{
setcommandmode ();
return;
}
}
while ((schedValue = Scheduler (0)) != 0)
{
if (schedValue == -1)
{
setcommandmode ();
return;
}
}
/* If there is data waiting to go out to terminal, don't
* schedule any more data for the terminal.
*/
if (ring_full_count (&ttyoring))
{
schedValue = 1;
}
else
{
if (shell_active)
{
if (shell_continue () == 0)
{
ConnectScreen ();
}
}
else if (In3270)
{
schedValue = DoTerminalOutput ();
}
}
if (schedValue && (shell_active == 0))
{
if (Scheduler (1) == -1)
{
setcommandmode ();
return;
}
}
}
#endif /* !defined(TN3270) */
}
#if 0 /* XXX - this not being in is a bug */
/*
* nextitem()
*
* Return the address of the next "item" in the TELNET data
* stream. This will be the address of the next character if
* the current address is a user data character, or it will
* be the address of the character following the TELNET command
* if the current address is a TELNET IAC ("I Am a Command")
* character.
*/
static char *
nextitem (char *current)
{
if ((*current & 0xff) != IAC)
{
return current + 1;
}
switch (*(current + 1) & 0xff)
{
case DO:
case DONT:
case WILL:
case WONT:
return current + 3;
case SB: /* loop forever looking for the SE */
{
char *look = current + 2;
for (;;)
{
if ((*look++ & 0xff) == IAC)
{
if ((*look++ & 0xff) == SE)
{
return look;
}
}
}
}
default:
return current + 2;
}
}
#endif /* 0 */
/*
* netclear()
*
* We are about to do a TELNET SYNCH operation. Clear
* the path to the network.
*
* Things are a bit tricky since we may have sent the first
* byte or so of a previous TELNET command into the network.
* So, we have to scan the network buffer from the beginning
* until we are up to where we want to be.
*
* A side effect of what we do, just to keep things
* simple, is to clear the urgent data pointer. The principal
* caller should be setting the urgent data pointer AFTER calling
* us in any case.
*/
static void
netclear (void)
{
#if 0 /* XXX */
char *thisitem, *next;
char *good;
# define wewant(p) ((nfrontp > p) && ((*p&0xff) == IAC) && \
((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL))
thisitem = netobuf;
while ((next = nextitem (thisitem)) <= netobuf.send)
{
thisitem = next;
}
/* Now, thisitem is first before/at boundary. */
good = netobuf; /* where the good bytes go */
while (netoring.add > thisitem)
{
if (wewant (thisitem))
{
int length;
next = thisitem;
do
{
next = nextitem (next);
}
while (wewant (next) && (nfrontp > next));
length = next - thisitem;
memmove (good, thisitem, length);
good += length;
thisitem = next;
}
else
{
thisitem = nextitem (thisitem);
}
}
#endif /* 0 */
}
/*
* These routines add various telnet commands to the data stream.
*/
static void
doflush (void)
{
NET2ADD (IAC, DO);
NETADD (TELOPT_TM);
flushline = 1;
flushout = 1;
ttyflush (1); /* Flush/drop output */
/* do printoption AFTER flush, otherwise the output gets tossed... */
printoption ("SENT", DO, TELOPT_TM);
}
void
xmitAO (void)
{
NET2ADD (IAC, AO);
printoption ("SENT", IAC, AO);
if (autoflush)
{
doflush ();
}
}
void
xmitEL (void)
{
NET2ADD (IAC, EL);
printoption ("SENT", IAC, EL);
}
void
xmitEC (void)
{
NET2ADD (IAC, EC);
printoption ("SENT", IAC, EC);
}
int
dosynch (const char *s)
{
netclear (); /* clear the path to the network */
NETADD (IAC);
setneturg ();
NETADD (DM);
printoption ("SENT", IAC, DM);
return 1;
}
int want_status_response = 0;
int
get_status (const char *s)
{
unsigned char tmp[16];
unsigned char *cp;
if (my_want_state_is_dont (TELOPT_STATUS))
{
printf ("Remote side does not support STATUS option\n");
return 0;
}
cp = tmp;
*cp++ = IAC;
*cp++ = SB;
*cp++ = TELOPT_STATUS;
*cp++ = TELQUAL_SEND;
*cp++ = IAC;
*cp++ = SE;
if (NETROOM () >= cp - tmp)
{
ring_supply_data (&netoring, tmp, cp - tmp);
printsub ('>', tmp + 2, cp - tmp - 2);
}
++want_status_response;
return 1;
}
void
intp (void)
{
NET2ADD (IAC, IP);
printoption ("SENT", IAC, IP);
flushline = 1;
if (autoflush)
{
doflush ();
}
if (autosynch)
{
dosynch (NULL);
}
}
void
sendbrk (void)
{
NET2ADD (IAC, BREAK);
printoption ("SENT", IAC, BREAK);
flushline = 1;
if (autoflush)
{
doflush ();
}
if (autosynch)
{
dosynch (NULL);
}
}
void
sendabort (void)
{
NET2ADD (IAC, ABORT);
printoption ("SENT", IAC, ABORT);
flushline = 1;
if (autoflush)
{
doflush ();
}
if (autosynch)
{
dosynch (NULL);
}
}
void
sendsusp (void)
{
NET2ADD (IAC, SUSP);
printoption ("SENT", IAC, SUSP);
flushline = 1;
if (autoflush)
{
doflush ();
}
if (autosynch)
{
dosynch (NULL);
}
}
void
sendeof (void)
{
NET2ADD (IAC, xEOF);
printoption ("SENT", IAC, xEOF);
}
void
sendayt (void)
{
NET2ADD (IAC, AYT);
printoption ("SENT", IAC, AYT);
}
/*
* Send a window size update to the remote system.
*/
void
sendnaws (void)
{
long rows, cols;
unsigned char tmp[16];
unsigned char *cp;
if (my_state_is_wont (TELOPT_NAWS))
return;
#define PUTSHORT(cp, x) { if ((*cp++ = ((x)>>8)&0xff) == IAC) *cp++ = IAC; \
if ((*cp++ = ((x))&0xff) == IAC) *cp++ = IAC; }
if (TerminalWindowSize (&rows, &cols) == 0)
{ /* Failed */
return;
}
cp = tmp;
*cp++ = IAC;
*cp++ = SB;
*cp++ = TELOPT_NAWS;
PUTSHORT (cp, cols);
PUTSHORT (cp, rows);
*cp++ = IAC;
*cp++ = SE;
if (NETROOM () >= cp - tmp)
{
ring_supply_data (&netoring, tmp, cp - tmp);
printsub ('>', tmp + 2, cp - tmp - 2);
}
}
void
tel_enter_binary (int rw)
{
if (rw & 1)
send_do (TELOPT_BINARY, 1);
if (rw & 2)
send_will (TELOPT_BINARY, 1);
}
void
tel_leave_binary (int rw)
{
if (rw & 1)
send_dont (TELOPT_BINARY, 1);
if (rw & 2)
send_wont (TELOPT_BINARY, 1);
}
|