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
|
/*
sredird: RFC 2217 compliant serial port redirector
Version 2.2.1, 20 February 2004
Copyright (C) 1999 - 2003 InfoTecna s.r.l.
Copyright (C) 2001, 2002 Trustees of Columbia University
in the City of New York
This program 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 2 of the License, or
(at your option) any later version.
This program 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, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
To contact the authors:
Denis Sbragion
InfoTecna
Tel, Fax: +39 0362 805396
URL: http://www.infotecna.it
E-Mail: d.sbragion@infotecna.it
Jeffrey Altman
The Kermit Project
Columbia University
URL: http://www.kermit-project.org/
E-mail: jaltman@columbia.edu
Current design issues:
. does not properly check implement BREAK handling. Need to figure
out how to turn a BREAK on and then off based upon receipt of
COM-PORT Subnegotiations
. does not properly use select to handle input, output and
errors on all devices.
. Lack of login processing
. Lack of Telnet START_TLS to protect the data stream
. Lack of Telnet AUTHENTICATION
. LineState processing is not implemented
. The code probably won't compile on most versions of Unix due to the
highly platform dependent nature of the serial apis.
Fixed in 2.0.0:
. Telnet DO ECHO should not be refused. The modem handles the echoing
if necessary.
. Cisco IOS returns 0 to the client when INBOUND flow control is SET but
not supported seperately from OUTBOUND.
. Track the state of the telnet negotiations
. Add support for BINARY mode translations
Fixed in 2.1.0:
. GetPortFlowControl should return 1 to indicate NO FLOW CONTROL
instead of 0.
. The Cisco IOS hack should become activated only if set by command-
line option [-i].
. Changed the order of checks in the EscWriteChar function for slightly
better performance
Fixed in 2.2.0:
Mario Viara
Email: mario@viara.info
. Fixed set port data size now work with 5 6 7 8 bits.
. Add version in get signature.
Russell Coker <russell@coker.com.au>
. Many minor changes and code cleanup
For other important changes from Russell Coker see the README file.
*/
/* Return NoError, which is 0, on success */
/* Standard library includes */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include <sys/time.h>
#include <sys/times.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <signal.h>
#include <fcntl.h>
#include <syslog.h>
#include <termios.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
/* Version id */
#define VersionId "2.2.2"
#define SRedirdVersionId "Version " VersionId ", 20 February 2004"
/* Locking constants */
#define LockOk 0
#define Locked 1
#define LockKo 2
/* Error conditions constants */
#define NoError 0
#define Error 1
#define OpenError -1
/* Maximum length of temporary strings */
#define TmpStrLen 512
/* Buffer size */
#define BufferSize 2048
/* File mode and file length for HDB (ASCII) stile lock file */
#define LockFileMode 0644
#define HDBHeaderLen 11
/* Base Telnet protocol constants (STD 8) */
#define TNSE ((unsigned char) 240)
#define TNNOP ((unsigned char) 241)
#define TNSB ((unsigned char) 250)
#define TNWILL ((unsigned char) 251)
#define TNWONT ((unsigned char) 252)
#define TNDO ((unsigned char) 253)
#define TNDONT ((unsigned char) 254)
#define TNIAC ((unsigned char) 255)
/* Base Telnet protocol options constants (STD 27, STD 28, STD 29) */
#define TN_TRANSMIT_BINARY ((unsigned char) 0)
#define TN_ECHO ((unsigned char) 1)
#define TN_SUPPRESS_GO_AHEAD ((unsigned char) 3)
/* Base Telnet Com Port Control (CPC) protocol constants (RFC 2217) */
#define TNCOM_PORT_OPTION ((unsigned char) 44)
/* CPC Client to Access Server constants */
#define TNCAS_SIGNATURE ((unsigned char) 0)
#define TNCAS_SET_BAUDRATE ((unsigned char) 1)
#define TNCAS_SET_DATASIZE ((unsigned char) 2)
#define TNCAS_SET_PARITY ((unsigned char) 3)
#define TNCAS_SET_STOPSIZE ((unsigned char) 4)
#define TNCAS_SET_CONTROL ((unsigned char) 5)
#define TNCAS_NOTIFY_LINESTATE ((unsigned char) 6)
#define TNCAS_NOTIFY_MODEMSTATE ((unsigned char) 7)
#define TNCAS_FLOWCONTROL_SUSPEND ((unsigned char) 8)
#define TNCAS_FLOWCONTROL_RESUME ((unsigned char) 9)
#define TNCAS_SET_LINESTATE_MASK ((unsigned char) 10)
#define TNCAS_SET_MODEMSTATE_MASK ((unsigned char) 11)
#define TNCAS_PURGE_DATA ((unsigned char) 12)
/* CPC Access Server to Client constants */
#define TNASC_SIGNATURE ((unsigned char) 100)
#define TNASC_SET_BAUDRATE ((unsigned char) 101)
#define TNASC_SET_DATASIZE ((unsigned char) 102)
#define TNASC_SET_PARITY ((unsigned char) 103)
#define TNASC_SET_STOPSIZE ((unsigned char) 104)
#define TNASC_SET_CONTROL ((unsigned char) 105)
#define TNASC_NOTIFY_LINESTATE ((unsigned char) 106)
#define TNASC_NOTIFY_MODEMSTATE ((unsigned char) 107)
#define TNASC_FLOWCONTROL_SUSPEND ((unsigned char) 108)
#define TNASC_FLOWCONTROL_RESUME ((unsigned char) 109)
#define TNASC_SET_LINESTATE_MASK ((unsigned char) 110)
#define TNASC_SET_MODEMSTATE_MASK ((unsigned char) 111)
#define TNASC_PURGE_DATA ((unsigned char) 112)
/* Modem state effective change mask */
#define ModemStateECMask ((unsigned char) 255)
#define LineStateECMask ((unsigned char) 255)
/* Default modem state polling in milliseconds (100 msec should be enough) */
#define ModemStatePolling 100
/* Standard boolean definition */
typedef enum { False, True } Boolean;
/* Cisco IOS bug compatibility */
Boolean CiscoIOSCompatible = False;
/* Buffer structure */
typedef
struct
{
unsigned char Buffer[BufferSize];
unsigned int RdPos;
unsigned int WrPos;
}
BufferType;
/* Complete lock file pathname */
static char * LockFileName;
/* Complete device file pathname */
static char * DeviceName;
/* True when the device has been opened */
Boolean DeviceOpened = False;
/* Device file descriptor */
int DeviceFd;
/* Com Port Control enabled flag */
Boolean TCPCEnabled = False;
/* True after retrieving the initial settings from the serial port */
Boolean InitPortRetrieved = False;
/* Initial serial port settings */
struct termios InitialPortSettings;
/* Maximum log level to log in the system log */
static int MaxLogLevel = LOG_DEBUG + 1;
/* Status enumeration for IAC escaping and interpretation */
typedef enum { IACNormal, IACReceived, IACComReceiving } IACState;
/* Effective status for IAC escaping and interpretation */
static IACState IACEscape = IACNormal;
/* Same as above during signature reception */
static IACState IACSigEscape;
/* Current IAC command begin received */
static unsigned char IACCommand[TmpStrLen];
/* Position of insertion into IACCommand[] */
static size_t IACPos;
/* Modem state mask set by the client */
static unsigned char ModemStateMask = ((unsigned char) 255);
/* Line state mask set by the client */
static unsigned char LineStateMask = ((unsigned char) 0);
#ifdef COMMENT
/* Current status of the line control lines */
static unsigned char LineState = ((unsigned char) 0);
#endif
/* Current status of the modem control lines */
static unsigned char ModemState = ((unsigned char) 0);
/* Break state flag */
Boolean BreakSignaled = False;
/* Input flow control flag */
Boolean InputFlow = True;
/* Telnet State Machine */
static
struct _tnstate
{
Boolean sent_will;
Boolean sent_do;
Boolean sent_wont;
Boolean sent_dont;
Boolean is_will;
Boolean is_do;
}
tnstate[256];
/* Function prototypes */
/* initialize Telnet State Machine */
void InitTelnetStateMachine(void);
/* Initialize a buffer for operation */
void InitBuffer(BufferType * B);
/* Check if the buffer is empty */
Boolean IsBufferEmpty(BufferType * B);
/* Check if the buffer is full */
Boolean IsBufferFull(BufferType * B);
/* Add a byte to a buffer */
void AddToBuffer(BufferType * B, unsigned char C);
/* Get a byte from a buffer */
unsigned char GetFromBuffer(BufferType * B);
/* Generic log function with log level control. Uses the same log levels
of the syslog(3) system call */
void LogMsg(int LogLevel, const char * const Msg);
/* Try to lock the file given in LockFile as pid LockPid using the classical
HDB (ASCII) file locking scheme */
int HDBLockFile(char * LockFile, pid_t LockPid);
/* Remove the lock file created with HDBLockFile */
void HDBUnlockFile(char * LockFile, pid_t LockPid);
/* Function executed when the program exits */
void ExitFunction(void);
/* Function called on many signals */
void SignalFunction(int unused);
/* Function called on break signal */
void BreakFunction(int unused);
/* Retrieves the port speed from PortFd */
unsigned long int GetPortSpeed(int PortFd);
/* Retrieves the data size from PortFd */
unsigned char GetPortDataSize(int PortFd);
/* Retrieves the parity settings from PortFd */
unsigned char GetPortParity(int PortFd);
/* Retrieves the stop bits size from PortFd */
unsigned char GetPortStopSize(int PortFd);
/* Retrieves the flow control status, including DTR and RTS status,
from PortFd */
unsigned char GetPortFlowControl(int PortFd, unsigned char Which);
/* Return the status of the modem control lines (DCD, CTS, DSR, RNG) */
unsigned char GetModemState(int PortFd,unsigned char PMState);
/* Set the serial port data size */
void SetPortDataSize(int PortFd, unsigned char DataSize);
/* Set the serial port parity */
void SetPortParity(int PortFd, unsigned char Parity);
/* Set the serial port stop bits size */
void SetPortStopSize(int PortFd, unsigned char StopSize);
/* Set the port flow control and DTR and RTS status */
void SetPortFlowControl(int PortFd,unsigned char How);
/* Set the serial port speed */
void SetPortSpeed(int PortFd, unsigned long BaudRate);
/* Send the signature Sig to the client */
void SendSignature(BufferType * B, char * Sig);
/* Write a char to SockFd performing IAC escaping */
void EscWriteChar(BufferType * B, unsigned char C);
/* Redirect char C to PortFd checking for IAC escape sequences */
void EscRedirectChar(BufferType * SockB, BufferType * DevB, int PortFd, unsigned char C);
/* Send the specific telnet option to SockFd using Command as command */
void SendTelnetOption(BufferType * B, unsigned char Command, char Option);
/* Send a string to SockFd performing IAC escaping */
void SendStr(BufferType * B, char * Str);
/* Send the baud rate BR to SockFd */
void SendBaudRate(BufferType * B, unsigned long int BR);
/* Send the flow control command Command */
void SendCPCFlowCommand(BufferType * B, unsigned char Command);
/* Send the CPC command Command using Parm as parameter */
void SendCPCByteCommand(BufferType * B, unsigned char Command, unsigned char Parm);
/* Handling of COM Port Control specific commands */
void HandleCPCCommand(BufferType * B, int PortFd, unsigned char * Command, size_t CSize);
/* Common telnet IAC commands handling */
void HandleIACCommand(BufferType * B, int PortFd, unsigned char * Command, size_t CSize);
/* Write a buffer to SockFd with IAC escaping */
void EscWriteBuffer(BufferType * B, unsigned char * Buffer, unsigned int BSize);
/* initialize Telnet State Machine */
void InitTelnetStateMachine(void)
{
int i;
for (i = 0;i < 256;i++)
{
tnstate[i].sent_do = False;
tnstate[i].sent_will = False;
tnstate[i].sent_wont = False;
tnstate[i].sent_dont = False;
tnstate[i].is_do = False;
tnstate[i].is_will = False;
}
}
/* Initialize a buffer for operation */
void InitBuffer(BufferType * B)
{
/* Set the initial buffer positions */
B->RdPos = 0;
B->WrPos = 0;
}
/* Check if the buffer is empty */
Boolean IsBufferEmpty(BufferType * B)
{
return((Boolean) B->RdPos == B->WrPos);
}
/* Check if the buffer is full */
Boolean IsBufferFull(BufferType * B)
{
/* We consider the buffer to be filled when there are 100 bytes left
This is so even a full buffer can safely have escaped characters
added to it.
*/
return((Boolean) B->WrPos == (B->RdPos + BufferSize - 101) % BufferSize);
}
/* Add a byte to a buffer */
void AddToBuffer(BufferType * B, unsigned char C)
{
B->Buffer[B->WrPos] = C;
B->WrPos = (B->WrPos + 1) % BufferSize;
}
void PushToBuffer(BufferType * B, unsigned char C)
{
if (B->RdPos > 0)
B->RdPos--;
else
B->RdPos = BufferSize - 1;
B->Buffer[B->RdPos] = C;
}
/* Get a byte from a buffer */
unsigned char GetFromBuffer(BufferType * B)
{
unsigned char C = B->Buffer[B->RdPos];
B->RdPos = (B->RdPos + 1) % BufferSize;
return(C);
}
/* Generic log function with log level control. Uses the same log levels
of the syslog(3) system call */
void LogMsg(int LogLevel, const char * const Msg)
{
if (LogLevel <= MaxLogLevel)
syslog(LogLevel,"%s",Msg);
}
/* Try to lock the file given in LockFile as pid LockPid using the classical
HDB (ASCII) file locking scheme */
int HDBLockFile(char * LockFile, pid_t LockPid)
{
pid_t Pid;
int FileDes;
int N;
char HDBBuffer[HDBHeaderLen + 1];
char LogStr[TmpStrLen];
/* Try to create the lock file */
while ((FileDes = open(LockFile,O_CREAT | O_WRONLY | O_EXCL,LockFileMode)) == OpenError)
{
/* Check the kind of error */
if ((errno == EEXIST) && ((FileDes = open(LockFile,O_RDONLY,0)) != OpenError))
{
/* Read the HDB header from the existing lockfile */
N = read(FileDes,HDBBuffer,HDBHeaderLen);
close(FileDes);
/* Check if the header has been read */
if (N <= 0)
{
/* Emtpy lock file or error: may be another application
was writing its pid in it */
snprintf(LogStr,TmpStrLen - 1,"Can't read pid from lock file %s.",LockFile);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_NOTICE,LogStr);
/* Lock process failed */
return(LockKo);
}
/* Gets the pid of the locking process */
HDBBuffer[N] = '\0';
Pid = atoi(HDBBuffer);
/* Check if it is our pid */
if (Pid == LockPid)
{
/* File already locked by us */
snprintf(LogStr,TmpStrLen - 1,"Read our pid from lock %s.",LockFile);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
/* Lock process succeded */
return(LockOk);
}
/* Check if hte HDB header is valid and if the locking process
is still alive */
if ((Pid == 0) || ((kill(Pid,0) != 0) && (errno == ESRCH)))
/* Invalid lock, remove it */
if (unlink(LockFile) == NoError)
{
snprintf(LogStr,TmpStrLen - 1,"Removed stale lock %s (pid %d).",
LockFile,Pid);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_NOTICE,LogStr);
}
else
{
snprintf(LogStr,TmpStrLen - 1,"Couldn't remove stale lock %s (pid %d).",
LockFile,Pid);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_ERR,LogStr);
return(LockKo);
}
else
{
/* The lock file is owned by another valid process */
snprintf(LogStr,TmpStrLen - 1,"Lock %s is owned by pid %d.",LockFile,Pid);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_INFO,LogStr);
/* Lock process failed */
return(Locked);
}
}
else
{
/* Lock file creation problem */
snprintf(LogStr,TmpStrLen - 1,"Can't create lock file %s.",LockFile);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_ERR,LogStr);
/* Lock process failed */
return(LockKo);
}
}
/* Prepare the HDB buffer with our pid */
sprintf(HDBBuffer,"%10d\n",(int) LockPid);
/* Fill the lock file with the HDB buffer */
if (write(FileDes,HDBBuffer,HDBHeaderLen) != HDBHeaderLen)
{
/* Lock file creation problem, remove it */
close(FileDes);
snprintf(LogStr,TmpStrLen - 1,"Can't write HDB header to lock file %s.",LockFile);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_ERR,LogStr);
unlink(LockFile);
/* Lock process failed */
return(LockKo);
}
/* Closes the lock file */
close(FileDes);
/* Lock process succeded */
return(LockOk);
}
/* Remove the lock file created with HDBLockFile */
void HDBUnlockFile(char * LockFile, pid_t LockPid)
{
char LogStr[TmpStrLen];
/* Check if the lock file is still owned by us */
if (HDBLockFile(LockFile,LockPid) == LockOk)
{
/* Remove the lock file */
unlink(LockFile);
snprintf(LogStr,TmpStrLen - 1,"Unlocked lock file %s.",LockFile);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_NOTICE,LogStr);
}
}
/* Function executed when the program exits */
void ExitFunction(void)
{
/* Restores initial port settings */
if (InitPortRetrieved == True)
tcsetattr(DeviceFd,TCSANOW,&InitialPortSettings);
/* Closes the device */
if (DeviceOpened == True)
close(DeviceFd);
/* Closes the sockets */
close(STDIN_FILENO);
close(STDOUT_FILENO);
/* Removes the lock file */
HDBUnlockFile(LockFileName,getpid());
/* Program termination notification */
LogMsg(LOG_NOTICE,"SRedird stopped.");
/* Closes the log */
closelog();
}
/* Function called on many signals */
void SignalFunction(int unused)
{
/* Just to avoid compilation warnings */
/* There's no performance penalty in doing this
because this function is almost never called */
unused = unused;
/* Same as the exit function */
ExitFunction();
signal(unused, SIG_DFL);
raise(unused);
}
/* Function called on break signal */
/* Unimplemented yet */
void BreakFunction(int unused)
{
#ifndef COMMENT
SignalFunction(unused);
#else /* COMMENT */
unsigned char LineState;
if (BreakSignaled == True)
{
BreakSignaled = False;
LineState = 0;
}
else
{
BreakSignaled = True;
LineState = 16;
}
/* Notify client of break change */
if ((LineStateMask & (unsigned char) 16) != 0)
{
LogMsg(LOG_DEBUG,"Notifying break change.");
SendCPCByteCommand(&ToNetBuf,TNASC_NOTIFY_LINESTATE,LineState);
}
#endif /* COMMENT */
}
/* Retrieves the port speed from PortFd */
unsigned long int GetPortSpeed(int PortFd)
{
struct termios PortSettings;
speed_t Speed;
tcgetattr(PortFd,&PortSettings);
Speed = cfgetospeed(&PortSettings);
switch (Speed)
{
case B50:
return(50UL);
case B75:
return(75UL);
case B110:
return(110UL);
case B134:
return(134UL);
case B150:
return(150UL);
case B200:
return(200UL);
case B300:
return(300UL);
case B600:
return(600UL);
case B1200:
return(1200UL);
case B1800:
return(1800UL);
case B2400:
return(2400UL);
case B4800:
return(4800UL);
case B9600:
return(9600UL);
case B19200:
return(19200UL);
case B38400:
return(38400UL);
case B57600:
return(57600UL);
case B115200:
return(115200UL);
case B230400:
return(230400UL);
case B460800:
return(460800UL);
default:
return(0UL);
}
}
/* Retrieves the data size from PortFd */
unsigned char GetPortDataSize(int PortFd)
{
struct termios PortSettings;
tcflag_t DataSize;
tcgetattr(PortFd,&PortSettings);
DataSize = PortSettings.c_cflag & CSIZE;
switch (DataSize)
{
case CS5:
return((unsigned char) 5);
case CS6:
return((unsigned char) 6);
case CS7:
return((unsigned char) 7);
case CS8:
return((unsigned char) 8);
default:
return((unsigned char) 0);
}
}
/* Retrieves the parity settings from PortFd */
unsigned char GetPortParity(int PortFd)
{
struct termios PortSettings;
tcgetattr(PortFd,&PortSettings);
if ((PortSettings.c_cflag & PARENB) == 0)
return((unsigned char) 1);
if ((PortSettings.c_cflag & PARENB) != 0 &&
(PortSettings.c_cflag & PARODD) != 0)
return((unsigned char) 2);
return((unsigned char) 3);
}
/* Retrieves the stop bits size from PortFd */
unsigned char GetPortStopSize(int PortFd)
{
struct termios PortSettings;
tcgetattr(PortFd,&PortSettings);
if ((PortSettings.c_cflag & CSTOPB) == 0)
return((unsigned char) 1);
else
return((unsigned char) 2);
}
/* Retrieves the flow control status, including DTR and RTS status,
from PortFd */
unsigned char GetPortFlowControl(int PortFd, unsigned char Which)
{
struct termios PortSettings;
int MLines;
/* Gets the basic informations from the port */
tcgetattr(PortFd,&PortSettings);
ioctl(PortFd,TIOCMGET,&MLines);
/* Check wich kind of information is requested */
switch (Which)
{
/* Com Port Flow Control Setting (outbound/both) */
case 0:
if (PortSettings.c_iflag & IXON)
return((unsigned char) 2);
if (PortSettings.c_cflag & CRTSCTS)
return((unsigned char) 3);
return((unsigned char) 1);
break;
/* BREAK State */
case 4:
if (BreakSignaled == True)
return((unsigned char) 5);
else
return((unsigned char) 6);
break;
/* DTR Signal State */
case 7:
if (MLines & TIOCM_DTR)
return((unsigned char) 8);
else
return((unsigned char) 9);
break;
/* RTS Signal State */
case 10:
if (MLines & TIOCM_RTS)
return((unsigned char) 11);
else
return((unsigned char) 12);
break;
/* Com Port Flow Control Setting (inbound) */
case 13:
if (PortSettings.c_iflag & IXOFF)
return((unsigned char) 15);
if (PortSettings.c_cflag & CRTSCTS)
return((unsigned char) 16);
return((unsigned char) 14);
break;
default:
if (PortSettings.c_iflag & IXON)
return((unsigned char) 2);
if (PortSettings.c_cflag & CRTSCTS)
return((unsigned char) 3);
return((unsigned char) 1);
break;
}
}
/* Return the status of the modem control lines (DCD, CTS, DSR, RNG) */
unsigned char GetModemState(int PortFd,unsigned char PMState)
{
int MLines;
unsigned char MState = (unsigned char) 0;
ioctl(PortFd,TIOCMGET,&MLines);
if ((MLines & TIOCM_CAR) != 0)
MState += (unsigned char) 128;
if ((MLines & TIOCM_RNG) != 0)
MState += (unsigned char) 64;
if ((MLines & TIOCM_DSR) != 0)
MState += (unsigned char) 32;
if ((MLines & TIOCM_CTS) != 0)
MState += (unsigned char) 16;
if ((MState & 128) != (PMState & 128))
MState += (unsigned char) 8;
if ((MState & 64) != (PMState & 64))
MState += (unsigned char) 4;
if ((MState & 32) != (PMState & 32))
MState += (unsigned char) 2;
if ((MState & 16) != (PMState & 16))
MState += (unsigned char) 1;
return(MState);
}
/* Set the serial port data size */
void SetPortDataSize(int PortFd, unsigned char DataSize)
{
struct termios PortSettings;
tcflag_t PDataSize;
switch (DataSize)
{
case 5:
PDataSize = CS5;
break;
case 6:
PDataSize = CS6;
break;
case 7:
PDataSize = CS7;
break;
case 8:
PDataSize = CS8;
break;
default:
PDataSize = CS8;
break;
}
tcgetattr(PortFd,&PortSettings);
PortSettings.c_cflag &= ~CSIZE;
PortSettings.c_cflag |= PDataSize & CSIZE;
tcsetattr(PortFd,TCSADRAIN,&PortSettings);
}
/* Set the serial port parity */
void SetPortParity(int PortFd, unsigned char Parity)
{
struct termios PortSettings;
tcgetattr(PortFd,&PortSettings);
switch (Parity)
{
case 1:
PortSettings.c_cflag = PortSettings.c_cflag & ~PARENB;
break;
case 2:
PortSettings.c_cflag = PortSettings.c_cflag | PARENB | PARODD;
break;
case 3:
PortSettings.c_cflag = (PortSettings.c_cflag | PARENB) & ~PARODD;
break;
/* There's no support for MARK and SPACE parity so sets no parity */
default:
LogMsg(LOG_WARNING,"Requested unsupported parity, set to no parity.");
PortSettings.c_cflag = PortSettings.c_cflag & ~PARENB;
break;
}
tcsetattr(PortFd,TCSADRAIN,&PortSettings);
}
/* Set the serial port stop bits size */
void SetPortStopSize(int PortFd, unsigned char StopSize)
{
struct termios PortSettings;
tcgetattr(PortFd,&PortSettings);
switch (StopSize)
{
case 1:
PortSettings.c_cflag = PortSettings.c_cflag & ~CSTOPB;
break;
case 2:
PortSettings.c_cflag = PortSettings.c_cflag | CSTOPB;
break;
case 3:
PortSettings.c_cflag = PortSettings.c_cflag & ~CSTOPB;
LogMsg(LOG_WARNING,"Requested unsupported 1.5 bits stop size, set to 1 bit stop size.");
break;
default:
PortSettings.c_cflag = PortSettings.c_cflag & ~CSTOPB;
break;
}
tcsetattr(PortFd,TCSADRAIN,&PortSettings);
}
/* Set the port flow control and DTR and RTS status */
void SetPortFlowControl(int PortFd,unsigned char How)
{
struct termios PortSettings;
int MLines;
/* Gets the base status from the port */
tcgetattr(PortFd,&PortSettings);
ioctl(PortFd,TIOCMGET,&MLines);
/* Check which settings to change */
switch (How)
{
/* No Flow Control (outbound/both) */
case 1:
PortSettings.c_iflag = PortSettings.c_iflag & ~IXON;
PortSettings.c_iflag = PortSettings.c_iflag & ~IXOFF;
PortSettings.c_cflag = PortSettings.c_cflag & ~CRTSCTS;
break;
/* XON/XOFF Flow Control (outbound/both) */
case 2:
PortSettings.c_iflag = PortSettings.c_iflag | IXON;
PortSettings.c_iflag = PortSettings.c_iflag | IXOFF;
PortSettings.c_cflag = PortSettings.c_cflag & ~CRTSCTS;
break;
/* HARDWARE Flow Control (outbound/both) */
case 3:
PortSettings.c_iflag = PortSettings.c_iflag & ~IXON;
PortSettings.c_iflag = PortSettings.c_iflag & ~IXOFF;
PortSettings.c_cflag = PortSettings.c_cflag | CRTSCTS;
break;
/* BREAK State ON */
case 5:
tcsendbreak(PortFd,1);
BreakSignaled = True;
break;
/* BREAK State OFF */
case 6:
/* Should not send another break */
/* tcsendbreak(PortFd,0); */
BreakSignaled = False;
break;
/* DTR Signal State ON */
case 8:
MLines = MLines | TIOCM_DTR;
break;
/* DTR Signal State OFF */
case 9:
MLines = MLines & ~TIOCM_DTR;
break;
/* RTS Signal State ON */
case 11:
MLines = MLines | TIOCM_RTS;
break;
/* RTS Signal State OFF */
case 12:
MLines = MLines & ~TIOCM_RTS;
break;
/* INBOUND FLOW CONTROL is ignored */
/* No Flow Control (inbound) */
case 14:
/* XON/XOFF Flow Control (inbound) */
case 15:
/* HARDWARE Flow Control (inbound) */
case 16:
LogMsg(LOG_WARNING,"Inbound flow control ignored.");
break;
default:
LogMsg(LOG_WARNING,"Requested unsupported flow control.");
break;
}
tcsetattr(PortFd,TCSADRAIN,&PortSettings);
ioctl(PortFd,TIOCMSET,&MLines);
}
/* Set the serial port speed */
void SetPortSpeed(int PortFd, unsigned long BaudRate)
{
struct termios PortSettings;
speed_t Speed;
switch (BaudRate)
{
case 50UL:
Speed = B50;
break;
case 75UL:
Speed = B75;
break;
case 110UL:
Speed = B110;
break;
case 134UL:
Speed = B134;
break;
case 150UL:
Speed = B150;
break;
case 200UL:
Speed = B200;
break;
case 300UL:
Speed = B300;
break;
case 600UL:
Speed = B600;
break;
case 1200UL:
Speed = B1200;
break;
case 1800UL:
Speed = B1800;
break;
case 2400UL:
Speed = B2400;
break;
case 4800UL:
Speed = B4800;
break;
case 9600UL:
Speed = B9600;
break;
case 19200UL:
Speed = B19200;
break;
case 38400UL:
Speed = B38400;
break;
case 57600UL:
Speed = B57600;
break;
case 115200UL:
Speed = B115200;
break;
case 230400UL:
Speed = B230400;
break;
case 460800UL:
Speed = B460800;
break;
default:
LogMsg(LOG_WARNING,"Unknwon baud rate requested, setting to 9600.");
Speed = B9600;
break;
}
tcgetattr(PortFd,&PortSettings);
cfsetospeed(&PortSettings,Speed);
cfsetispeed(&PortSettings,Speed);
tcsetattr(PortFd,TCSADRAIN,&PortSettings);
}
/* Send the signature Sig to the client */
void SendSignature(BufferType * B, char * Sig)
{
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSB);
AddToBuffer(B,TNCOM_PORT_OPTION);
AddToBuffer(B,TNASC_SIGNATURE);
SendStr(B,Sig);
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSE);
}
/* Write a char to socket performing IAC escaping */
void EscWriteChar(BufferType * B, unsigned char C)
{
/* Last received byte */
static unsigned char Last=0;
if (C == TNIAC)
AddToBuffer(B,C);
else
if (C != 0x0A && tnstate[TN_TRANSMIT_BINARY].is_will == False && Last == 0x0D)
AddToBuffer(B,0x00);
AddToBuffer(B,C);
/* Set last received byte */
Last = C;
}
/* Redirect char C to Device checking for IAC escape sequences */
void EscRedirectChar(BufferType * SockB, BufferType * DevB, int PortFd, unsigned char C)
{
/* Last received byte */
static unsigned char Last = 0;
/* Check the IAC escape status */
switch (IACEscape)
{
/* Normal status */
case IACNormal:
if (C == TNIAC)
IACEscape = IACReceived;
else
if (tnstate[TN_TRANSMIT_BINARY].is_do == False && C == 0x00 && Last == 0x0D)
/* Swallow the NUL after a CR if not receiving BINARY */
break;
else
AddToBuffer(DevB,C);
break;
/* IAC previously received */
case IACReceived:
if (C == TNIAC)
{
AddToBuffer(DevB,C);
IACEscape = IACNormal;
}
else
{
IACCommand[0] = TNIAC;
IACCommand[1] = C;
IACPos = 2;
IACEscape = IACComReceiving;
IACSigEscape = IACNormal;
}
break;
/* IAC Command reception */
case IACComReceiving:
/* Telnet suboption, could be only CPC */
if (IACCommand[1] == TNSB)
{
/* Get the suboption signature */
if (IACPos < 4)
{
IACCommand[IACPos] = C;
IACPos++;
}
else
{
/* Check which suboption we are dealing with */
switch (IACCommand[3])
{
/* Signature, which needs further escaping */
case TNCAS_SIGNATURE:
switch (IACSigEscape)
{
case IACNormal:
if (C == TNIAC)
IACSigEscape = IACReceived;
else
if (IACPos < TmpStrLen)
{
IACCommand[IACPos] = C;
IACPos++;
}
break;
case IACComReceiving:
IACSigEscape = IACNormal;
break;
case IACReceived:
if (C == TNIAC)
{
if (IACPos < TmpStrLen)
{
IACCommand[IACPos] = C;
IACPos++;
}
IACSigEscape = IACNormal;
}
else
{
if (IACPos < TmpStrLen)
{
IACCommand[IACPos] = TNIAC;
IACPos++;
}
if (IACPos < TmpStrLen)
{
IACCommand[IACPos] = C;
IACPos++;
}
HandleIACCommand(SockB,PortFd,IACCommand,IACPos);
IACEscape = IACNormal;
}
break;
}
break;
/* Set baudrate */
case TNCAS_SET_BAUDRATE:
IACCommand[IACPos] = C;
IACPos++;
if (IACPos == 10)
{
HandleIACCommand(SockB,PortFd,IACCommand,IACPos);
IACEscape = IACNormal;
}
break;
/* Flow control command */
case TNCAS_FLOWCONTROL_SUSPEND:
case TNCAS_FLOWCONTROL_RESUME:
IACCommand[IACPos] = C;
IACPos++;
if (IACPos == 6)
{
HandleIACCommand(SockB,PortFd,IACCommand,IACPos);
IACEscape = IACNormal;
}
break;
/* Normal CPC command with single byte parameter */
default:
IACCommand[IACPos] = C;
IACPos++;
if (IACPos == 7)
{
HandleIACCommand(SockB,PortFd,IACCommand,IACPos);
IACEscape = IACNormal;
}
break;
}
}
}
else
{
/* Normal 3 byte IAC option */
IACCommand[IACPos] = C;
IACPos++;
if (IACPos == 3)
{
HandleIACCommand(SockB,PortFd,IACCommand,IACPos);
IACEscape = IACNormal;
}
}
break;
}
/* Set last received byte */
Last = C;
}
/* Send the specific telnet option to SockFd using Command as command */
void SendTelnetOption(BufferType * B, unsigned char Command, char Option)
{
unsigned char IAC = TNIAC;
AddToBuffer(B,IAC);
AddToBuffer(B,Command);
AddToBuffer(B,Option);
}
/* Send a string to SockFd performing IAC escaping */
void SendStr(BufferType * B, char * Str)
{
size_t I;
size_t L;
L = strlen(Str);
for (I = 0; I < L;I++)
EscWriteChar(B,(unsigned char) Str[I]);
}
/* Send the baud rate BR to Buffer */
void SendBaudRate(BufferType *B, unsigned long int BR)
{
unsigned char *p;
unsigned long int NBR;
int i;
NBR = htonl(BR);
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSB);
AddToBuffer(B,TNCOM_PORT_OPTION);
AddToBuffer(B,TNASC_SET_BAUDRATE);
p = (unsigned char *) &NBR;
for (i = 0;i < (int) sizeof(NBR);i++)
EscWriteChar(B,p[i]);
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSE);
}
/* Send the flow control command Command */
void SendCPCFlowCommand(BufferType *B, unsigned char Command)
{
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSB);
AddToBuffer(B,TNCOM_PORT_OPTION);
AddToBuffer(B,Command);
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSE);
if (Command == TNASC_FLOWCONTROL_SUSPEND)
LogMsg(LOG_DEBUG,"Sent flow control suspend command.");
else
LogMsg(LOG_DEBUG,"Sent flow control resume command.");
}
/* Send the CPC command Command using Parm as parameter */
void SendCPCByteCommand(BufferType *B, unsigned char Command, unsigned char Parm)
{
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSB);
AddToBuffer(B,TNCOM_PORT_OPTION);
AddToBuffer(B,Command);
EscWriteChar(B,Parm);
AddToBuffer(B,TNIAC);
AddToBuffer(B,TNSE);
}
/* Handling of COM Port Control specific commands */
void HandleCPCCommand(BufferType *SockB, int PortFd, unsigned char * Command, size_t CSize)
{
char LogStr[TmpStrLen];
char SigStr[TmpStrLen];
unsigned long int BaudRate;
unsigned char DataSize;
unsigned char Parity;
unsigned char StopSize;
unsigned char FlowControl;
/* Check wich command has been requested */
switch (Command[3])
{
/* Signature */
case TNCAS_SIGNATURE:
if (CSize == 6)
{
/* Void signature, client is asking for our signature */
snprintf(SigStr,TmpStrLen - 1,"SRedird %s %s",VersionId,DeviceName);
SigStr[TmpStrLen - 1] = '\0';
SendSignature(SockB,SigStr);
snprintf(LogStr,TmpStrLen - 1,"Sent signature: %s",SigStr);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_INFO,LogStr);
}
else
{
/* Received client signature */
strncpy(SigStr,(char *) &Command[4],CSize - 6);
snprintf(LogStr,TmpStrLen - 1,"Received client signature: %s",SigStr);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_INFO,LogStr);
}
break;
/* Set serial baud rate */
case TNCAS_SET_BAUDRATE:
/* Retrieve the baud rate which is in network order */
BaudRate = ntohl(*((unsigned long int *) &Command[4]));
if (BaudRate == 0)
/* Client is asking for current baud rate */
LogMsg(LOG_DEBUG,"Baud rate notification received.");
else
{
/* Change the baud rate */
snprintf(LogStr,TmpStrLen - 1,"Port baud rate change to %lu requested.",BaudRate);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SetPortSpeed(PortFd,BaudRate);
}
/* Send confirmation */
BaudRate = GetPortSpeed(PortFd);
SendBaudRate(SockB,BaudRate);
snprintf(LogStr,TmpStrLen - 1,"Port baud rate: %lu",BaudRate);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
/* Set serial data size */
case TNCAS_SET_DATASIZE:
if (Command[4] == 0)
/* Client is asking for current data size */
LogMsg(LOG_DEBUG,"Data size notification requested.");
else
{
/* Set the data size */
snprintf(LogStr,TmpStrLen - 1,"Port data size change to %u requested.",
(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SetPortDataSize(PortFd,Command[4]);
}
/* Send confirmation */
DataSize = GetPortDataSize(PortFd);
SendCPCByteCommand(SockB,TNASC_SET_DATASIZE,DataSize);
snprintf(LogStr,TmpStrLen - 1,"Port data size: %u",(unsigned int) DataSize);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
/* Set the serial parity */
case TNCAS_SET_PARITY:
if (Command[4] == 0)
/* Client is asking for current parity */
LogMsg(LOG_DEBUG,"Parity notification requested.");
else
{
/* Set the parity */
snprintf(LogStr,TmpStrLen - 1,"Port parity change to %u requested",
(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SetPortParity(PortFd,Command[4]);
}
/* Send confirmation */
Parity = GetPortParity(PortFd);
SendCPCByteCommand(SockB,TNASC_SET_PARITY,Parity);
snprintf(LogStr,TmpStrLen - 1,"Port parity: %u",(unsigned int) Parity);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
/* Set the serial stop size */
case TNCAS_SET_STOPSIZE:
if (Command[4] == 0)
/* Client is asking for current stop size */
LogMsg(LOG_DEBUG,"Stop size notification requested.");
else
{
/* Set the stop size */
snprintf(LogStr,TmpStrLen - 1,"Port stop size change to %u requested.",
(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SetPortStopSize(PortFd,Command[4]);
}
/* Send confirmation */
StopSize = GetPortStopSize(PortFd);
SendCPCByteCommand(SockB,TNASC_SET_STOPSIZE,StopSize);
snprintf(LogStr,TmpStrLen - 1,"Port stop size: %u",(unsigned int) StopSize);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
/* Flow control and DTR/RTS handling */
case TNCAS_SET_CONTROL:
switch (Command[4])
{
case 0:
case 4:
case 7:
case 10:
case 13:
/* Client is asking for current flow control or DTR/RTS status */
LogMsg(LOG_DEBUG,"Flow control notification requested.");
FlowControl = GetPortFlowControl(PortFd,Command[4]);
SendCPCByteCommand(SockB,TNASC_SET_CONTROL,FlowControl);
snprintf(LogStr,TmpStrLen - 1,"Port flow control: %u",(unsigned int) FlowControl);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
case 5:
/* Break command */
tcsendbreak(PortFd,1);
BreakSignaled = True;
LogMsg(LOG_DEBUG,"Break Signal ON.");
SendCPCByteCommand(SockB,TNASC_SET_CONTROL,Command[4]);
break;
case 6:
BreakSignaled = False;
LogMsg(LOG_DEBUG,"Break Signal OFF.");
SendCPCByteCommand(SockB,TNASC_SET_CONTROL,Command[4]);
break;
default:
/* Set the flow control */
snprintf(LogStr,TmpStrLen - 1,"Port flow control change to %u requested.",(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SetPortFlowControl(PortFd,Command[4]);
/* Flow control status confirmation */
if (CiscoIOSCompatible && Command[4] >= 13 && Command[4] <=16)
/* INBOUND not supported separately.
Following the behavior of Cisco ISO 11.3
*/
FlowControl = 0;
else
/* Return the actual port flow control settings */
FlowControl = GetPortFlowControl(PortFd,0);
SendCPCByteCommand(SockB,TNASC_SET_CONTROL,FlowControl);
snprintf(LogStr,TmpStrLen - 1,"Port flow control: %u",(unsigned int) FlowControl);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
}
break;
/* Set the line state mask */
case TNCAS_SET_LINESTATE_MASK:
snprintf(LogStr,TmpStrLen - 1,"Line state set to %u",(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
/* Only break notification supported */
LineStateMask = Command[4] & (unsigned char) 16;
SendCPCByteCommand(SockB,TNASC_SET_LINESTATE_MASK,LineStateMask);
break;
/* Set the modem state mask */
case TNCAS_SET_MODEMSTATE_MASK:
snprintf(LogStr,TmpStrLen - 1,"Modem state mask set to %u",(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
ModemStateMask = Command[4];
SendCPCByteCommand(SockB,TNASC_SET_MODEMSTATE_MASK,ModemStateMask);
break;
/* Port flush requested */
case TNCAS_PURGE_DATA:
snprintf(LogStr,TmpStrLen - 1,"Port flush %u requested.",(unsigned int) Command[4]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
switch (Command[4])
{
/* Inbound flush */
case 1:
tcflush(PortFd,TCIFLUSH);
break;
/* Outbound flush */
case 2:
tcflush(PortFd,TCOFLUSH);
break;
/* Inbound/outbound flush */
case 3:
tcflush(PortFd,TCIOFLUSH);
break;
}
SendCPCByteCommand(SockB,TNASC_PURGE_DATA,Command[4]);
break;
/* Suspend output to the client */
case TNCAS_FLOWCONTROL_SUSPEND:
LogMsg(LOG_DEBUG,"Flow control suspend requested.");
InputFlow = False;
break;
/* Resume output to the client */
case TNCAS_FLOWCONTROL_RESUME:
LogMsg(LOG_DEBUG,"Flow control resume requested.");
InputFlow = True;
break;
/* Unknown request */
default:
snprintf(LogStr,TmpStrLen - 1,"Unhandled request %u",(unsigned int) Command[3]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
}
}
/* Common telnet IAC commands handling */
void HandleIACCommand(BufferType * SockB, int PortFd, unsigned char * Command, size_t CSize)
{
char LogStr[TmpStrLen];
/* Check which command */
switch(Command[1])
{
/* Suboptions */
case TNSB:
if (tnstate[Command[2]].is_will == False && tnstate[Command[2]].is_do == False)
break;
switch (Command[2])
{
/* RFC 2217 COM Port Control Protocol option */
case TNCOM_PORT_OPTION:
HandleCPCCommand(SockB,PortFd,Command,CSize);
break;
default:
snprintf(LogStr,TmpStrLen - 1,"Unknown suboption received: %u", (unsigned int) Command[2]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
break;
}
break;
/* Requests for options */
case TNWILL:
switch (Command[2])
{
/* COM Port Control Option */
case TNCOM_PORT_OPTION:
LogMsg(LOG_INFO,"Telnet COM Port Control Enabled (WILL).");
TCPCEnabled = True;
if (tnstate[Command[2]].sent_do == False)
{
SendTelnetOption(SockB,TNDO,Command[2]);
}
tnstate[Command[2]].is_do = True;
break;
/* Telnet Binary mode */
case TN_TRANSMIT_BINARY:
LogMsg(LOG_INFO,"Telnet Binary Transfer Enabled (WILL).");
if (tnstate[Command[2]].sent_do == False)
SendTelnetOption(SockB,TNDO,Command[2]);
tnstate[Command[2]].is_do = True;
break;
/* Echo request not handled */
case TN_ECHO:
LogMsg(LOG_INFO,"Rejecting Telnet Echo Option (WILL).");
if (tnstate[Command[2]].sent_do == False)
SendTelnetOption(SockB,TNDO,Command[2]);
tnstate[Command[2]].is_do = True;
break;
/* No go ahead needed */
case TN_SUPPRESS_GO_AHEAD:
LogMsg(LOG_INFO,"Suppressing Go Ahead characters (WILL).");
if (tnstate[Command[2]].sent_do == False)
SendTelnetOption(SockB,TNDO,Command[2]);
tnstate[Command[2]].is_do = True;
break;
/* Reject everything else */
default:
snprintf(LogStr,TmpStrLen - 1,"Rejecting option WILL: %u",(unsigned int) Command[2]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SendTelnetOption(SockB,TNDONT,Command[2]);
tnstate[Command[2]].is_do = False;
break;
}
tnstate[Command[2]].sent_do = False;
tnstate[Command[2]].sent_dont = False;
break;
/* Confirmations for options */
case TNDO:
switch (Command[2])
{
/* COM Port Control Option */
case TNCOM_PORT_OPTION:
LogMsg(LOG_INFO,"Telnet COM Port Control Enabled (DO).");
TCPCEnabled = True;
if (tnstate[Command[2]].sent_will == False)
SendTelnetOption(SockB,TNWILL,Command[2]);
tnstate[Command[2]].is_will = True;
break;
/* Telnet Binary mode */
case TN_TRANSMIT_BINARY:
LogMsg(LOG_INFO,"Telnet Binary Transfer Enabled (DO).");
if (tnstate[Command[2]].sent_will == False)
SendTelnetOption(SockB,TNWILL,Command[2]);
tnstate[Command[2]].is_will = True;
break;
/* Echo request handled. The modem will echo for the user. */
case TN_ECHO:
LogMsg(LOG_INFO,"Rejecting Telnet Echo Option (DO).");
if (tnstate[Command[2]].sent_will == False)
SendTelnetOption(SockB,TNWILL,Command[2]);
tnstate[Command[2]].is_will = True;
break;
/* No go ahead needed */
case TN_SUPPRESS_GO_AHEAD:
LogMsg(LOG_INFO,"Suppressing Go Ahead characters (DO).");
if (tnstate[Command[2]].sent_will == False)
SendTelnetOption(SockB,TNWILL,Command[2]);
tnstate[Command[2]].is_will = True;
break;
/* Reject everything else */
default:
snprintf(LogStr,TmpStrLen - 1,"Rejecting option DO: %u",(unsigned int) Command[2]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
SendTelnetOption(SockB,TNWONT,Command[2]);
tnstate[Command[2]].is_will = False;
break;
}
tnstate[Command[2]].sent_will = False;
tnstate[Command[2]].sent_wont = False;
break;
/* Notifications of rejections for options */
case TNDONT:
snprintf(LogStr,TmpStrLen - 1,"Received rejection for option: %u",(unsigned int) Command[2]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
if (tnstate[Command[2]].is_will == True)
{
SendTelnetOption(SockB,TNWONT,Command[2]);
tnstate[Command[2]].is_will = False;
}
tnstate[Command[2]].sent_will = False;
tnstate[Command[2]].sent_wont = False;
break;
case TNWONT:
if (Command[2] == TNCOM_PORT_OPTION)
{
LogMsg(LOG_ERR,"Client doesn't support Telnet COM Port "
"Protocol Option (RFC 2217), trying to serve anyway.");
}
else
{
snprintf(LogStr,TmpStrLen - 1,"Received rejection for option: %u",(unsigned int) Command[2]);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
}
if (tnstate[Command[2]].is_do == True)
{
SendTelnetOption(SockB,TNDONT,Command[2]);
tnstate[Command[2]].is_do = False;
}
tnstate[Command[2]].sent_do = False;
tnstate[Command[2]].sent_dont = False;
break;
}
}
/* Write a buffer to SockFd with IAC escaping */
void EscWriteBuffer(BufferType * B, unsigned char * Buffer, unsigned int BSize)
{
unsigned int I;
if (BSize > 0)
for (I = 0;I < BSize;I++)
{
if (Buffer[I] == TNIAC)
AddToBuffer(B,TNIAC);
AddToBuffer(B,Buffer[I]);
}
}
void Usage(void)
{
/* Write little usage information */
puts("sredird: RFC 2217 compliant serial port redirector");
puts(SRedirdVersionId);
puts("This program should be run only by the inetd superserver");
puts("Usage: sredird [-i] <loglevel> <device> <lockfile> [pollingterval]");
puts("-i indicates Cisco IOS Bug compatibility");
puts("Poll interval is in milliseconds, default is 100, "
"0 means no polling");
/* Same on the system log */
LogMsg(LOG_ERR,"sredird: RFC 2217 compliant serial port redirector.");
LogMsg(LOG_ERR,SRedirdVersionId);
LogMsg(LOG_ERR,"This program should be run only by the inetd superserver.");
LogMsg(LOG_ERR,"Usage: sredird [-i] <loglevel> <device> <lockfile> [pollingterval]");
LogMsg(LOG_ERR,"-i indicates Cisco IOS Bug compatibility");
LogMsg(LOG_ERR,"Poll interval is in milliseconds, default is 100, 0 means no polling.");
}
/* Main function */
int main(int argc, char * argv[])
{
/* Input fd set */
fd_set InFdSet;
/* Output fd set */
fd_set OutFdSet;
/* Char read */
unsigned char C;
/* Temporary string for logging */
char LogStr[TmpStrLen];
/* Actual port settings */
struct termios PortSettings;
/* Base timeout for stream reading */
struct timeval BTimeout;
/* Timeout for stream reading */
struct timeval RTimeout;
/* Pointer to timeout structure to set */
struct timeval * ETimeout = &RTimeout;
/* Remote flow control flag */
Boolean RemoteFlowOff = False;
/* Buffer to Device from Network */
BufferType ToDevBuf;
/* Buffer to Network from Device */
BufferType ToNetBuf;
/* Socket setup flag */
int SockParmEnable = 1;
/* Generic socket parameter */
int SockParm;
/* Out buffer clock ticks limit */
clock_t MaxBTicks;
/* Optional argument processing indexes */
int argi = 1;
int i;
/* Open the system log */
openlog("sredird",LOG_PID,LOG_USER);
/* Check the command line argument count */
if (argc < 4)
{
Usage();
return(Error);
}
/* Process optional switch arguments */
for (argi = 1;argi < argc && argv[argi][0] == '-';argi++)
{
i = 1;
while (argv[argi][i])
{
switch (argv[argi][i++])
{
/* Cisco IOS compatibility */
case 'i':
if (CiscoIOSCompatible)
{
/* Already set */
Usage();
return(Error);
}
else
CiscoIOSCompatible = True;
break;
default:
Usage();
return(Error);
break;
}
}
}
if (!(argv[argi] && argv[argi + 1] && argv[argi + 2]))
{
Usage();
return(Error);
}
/* Sets the log level */
MaxLogLevel = atoi(argv[argi++]);
/* Gets device and lock file names */
DeviceName = argv[argi++];
LockFileName = argv[argi++];
/* Retrieve the polling interval */
if (argc == argi + 1)
{
BTimeout.tv_sec = 0;
BTimeout.tv_usec = atol(argv[4]) * 1000;
MaxBTicks = (BTimeout.tv_usec * CLOCKS_PER_SEC) / (1000 * 1000);
if (BTimeout.tv_usec <= 0)
{
ETimeout = NULL;
MaxBTicks = 0;
}
}
else
{
BTimeout.tv_sec = 0;
BTimeout.tv_usec = ModemStatePolling * 1000;
MaxBTicks = (BTimeout.tv_usec * CLOCKS_PER_SEC) / (1000 * 1000);
}
/* Logs sredird start */
LogMsg(LOG_NOTICE,"SRedird started.");
/* Logs sredird log level */
snprintf(LogStr,TmpStrLen - 1,"Log level: %i",MaxLogLevel);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_INFO,LogStr);
/* Logs the polling interval */
snprintf(LogStr,TmpStrLen - 1,"Polling interval (ms): %u",(unsigned int) (BTimeout.tv_usec / 1000));
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_INFO,LogStr);
/* Register exit and signal handler functions */
atexit(ExitFunction);
signal(SIGHUP,SignalFunction);
signal(SIGQUIT,SignalFunction);
signal(SIGABRT,SignalFunction);
signal(SIGPIPE,SignalFunction);
signal(SIGTERM,SignalFunction);
/* Register the function to be called on break condition */
signal(SIGINT,BreakFunction);
/* Try to lock the device */
if (HDBLockFile(LockFileName,getpid()) != LockOk)
{
/* Lock failed */
snprintf(LogStr,TmpStrLen - 1,"Unable to lock %s. Exiting.",LockFileName);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_NOTICE,LogStr);
return(Error);
}
else
{
/* Lock succeeded */
snprintf(LogStr,TmpStrLen - 1,"Device %s locked.",DeviceName);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_INFO,LogStr);
}
/* Open the device */
if ((DeviceFd = open(DeviceName,O_RDWR | O_NOCTTY | O_NDELAY,0)) == OpenError)
{
/* Open failed */
snprintf(LogStr,TmpStrLen - 1,"Device in use. Come back later.\r\n");
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_ERR,LogStr);
snprintf(LogStr,TmpStrLen - 1,"Unable to open device %s. Exiting.",DeviceName);
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_ERR,LogStr);
return(Error);
}
else
DeviceOpened = True;
/* Get the actual port settings */
tcgetattr(DeviceFd,&InitialPortSettings);
InitPortRetrieved = True;
tcgetattr(DeviceFd,&PortSettings);
/* Set the serial port to raw mode */
cfmakeraw(&PortSettings);
/* Enable HANGUP on close and disable modem control line handling */
PortSettings.c_cflag = (PortSettings.c_cflag | HUPCL) | CLOCAL;
/* Enable break handling */
PortSettings.c_iflag = (PortSettings.c_iflag & ~IGNBRK) | BRKINT;
/* Write the port settings to device */
tcsetattr(DeviceFd,TCSANOW,&PortSettings);
/* Reset the device fd to blocking mode */
if (fcntl(DeviceFd,F_SETFL,fcntl(DeviceFd,F_GETFL) & ~(O_NDELAY)) == OpenError)
LogMsg(LOG_ERR,"Unable to reset device to non blocking mode, ignoring.");
/* Initialize the input buffer */
InitBuffer(&ToDevBuf);
InitBuffer(&ToNetBuf);
/* Setup sockets for low latency and automatic keepalive;
* doesn't check if anything fails because failure doesn't prevent
* correct functioning but only provides slightly worse behaviour
*/
SockParm = IPTOS_LOWDELAY;
setsockopt(STDIN_FILENO,SOL_SOCKET,SO_KEEPALIVE,&SockParmEnable,sizeof(SockParmEnable));
setsockopt(STDIN_FILENO,SOL_IP,IP_TOS,&SockParm,sizeof(SockParm));
setsockopt(STDIN_FILENO,SOL_SOCKET,SO_OOBINLINE,&SockParmEnable,sizeof(SockParmEnable));
setsockopt(STDOUT_FILENO,SOL_SOCKET,SO_KEEPALIVE,&SockParmEnable,sizeof(SockParmEnable));
setsockopt(STDOUT_FILENO,SOL_IP,IP_TOS,&SockParm,sizeof(SockParm));
/* Make reads/writes unblocking */
ioctl(STDOUT_FILENO,FIONBIO,&SockParmEnable);
ioctl(STDIN_FILENO,FIONBIO,&SockParmEnable);
ioctl(DeviceFd,FIONBIO,&SockParmEnable);
/* Send initial Telnet negotiations to the client */
InitTelnetStateMachine();
SendTelnetOption(&ToNetBuf,TNWILL,TN_TRANSMIT_BINARY);
tnstate[TN_TRANSMIT_BINARY].sent_will = True;
SendTelnetOption(&ToNetBuf,TNDO,TN_TRANSMIT_BINARY);
tnstate[TN_TRANSMIT_BINARY].sent_do = True;
SendTelnetOption(&ToNetBuf,TNWILL,TN_ECHO);
tnstate[TN_ECHO].sent_will = True;
SendTelnetOption(&ToNetBuf,TNWILL,TN_SUPPRESS_GO_AHEAD);
tnstate[TN_SUPPRESS_GO_AHEAD].sent_will = True;
SendTelnetOption(&ToNetBuf,TNDO,TN_SUPPRESS_GO_AHEAD);
tnstate[TN_SUPPRESS_GO_AHEAD].sent_do = True;
SendTelnetOption(&ToNetBuf,TNDO,TNCOM_PORT_OPTION);
tnstate[TNCOM_PORT_OPTION].sent_do = True;
/* Set up fd sets */
/* Initially we have to read from all, but we only have data to send
* to the network */
FD_ZERO(&InFdSet);
FD_SET(STDIN_FILENO,&InFdSet);
FD_SET(DeviceFd,&InFdSet);
FD_ZERO(&OutFdSet);
FD_SET(STDOUT_FILENO,&OutFdSet);
/* Set up timeout for modem status polling */
if (ETimeout != NULL)
*ETimeout = BTimeout;
/* Main loop with fd's control */
while (True)
{
if (select(DeviceFd + 1,&InFdSet,&OutFdSet,NULL,ETimeout) > 0)
{
/* Handle buffers in the following order
* Error
* Output
* Input
* In other words, ensure we can write, make room, read more data
*/
if (FD_ISSET(DeviceFd,&OutFdSet))
{
/* Write to serial port */
while (!IsBufferEmpty(&ToDevBuf))
{
int x;
C = GetFromBuffer(&ToDevBuf);
x = write(DeviceFd,&C,1);
if (x < 0 && errno == EWOULDBLOCK)
{
PushToBuffer(&ToDevBuf,C);
break;
}
else
if (x < 1)
{
LogMsg(LOG_NOTICE,"Error writing to device.");
return(NoError);
}
}
}
if (FD_ISSET(STDOUT_FILENO,&OutFdSet))
{
/* Write to network */
while (!IsBufferEmpty(&ToNetBuf))
{
int x;
C = GetFromBuffer(&ToNetBuf);
x = write(STDOUT_FILENO,&C,1);
if (x < 0 && errno == EWOULDBLOCK)
{
PushToBuffer(&ToNetBuf,C);
break;
}
else
if (x < 1)
{
LogMsg(LOG_NOTICE,"Error writing to network.");
return(NoError);
}
}
}
if (FD_ISSET(DeviceFd,&InFdSet))
{
/* Read from serial port */
while (!IsBufferFull(&ToNetBuf))
{
int x;
x = read(DeviceFd,&C,1);
if (x < 0 && errno == EWOULDBLOCK)
break;
else
if (x < 1)
{
LogMsg(LOG_NOTICE,"Error reading from device.");
return(NoError);
}
EscWriteChar(&ToNetBuf,C);
}
}
if (FD_ISSET(STDIN_FILENO,&InFdSet))
{
/* Read from network */
while (!IsBufferFull(&ToDevBuf))
{
int x;
x = read(STDIN_FILENO,&C,1);
if (x < 0 && errno == EWOULDBLOCK)
{
break;
}
else
if (x < 1)
{
LogMsg(LOG_NOTICE,"Error reading from network.");
return(NoError);
}
EscRedirectChar(&ToNetBuf,&ToDevBuf,DeviceFd,C);
}
}
/* Check if the buffer is not full and remote flow is off */
if (RemoteFlowOff == True && IsBufferFull(&ToDevBuf) == False)
{
/* Send a flow control resume command */
SendCPCFlowCommand(&ToNetBuf,TNASC_FLOWCONTROL_RESUME);
RemoteFlowOff = False;
}
}
/* Check the port state and notify the client if it's changed */
if (TCPCEnabled == True && InputFlow == True)
{
if ((GetModemState(DeviceFd,ModemState) & ModemStateMask &
ModemStateECMask) != (ModemState & ModemStateMask & ModemStateECMask))
{
ModemState = GetModemState(DeviceFd,ModemState);
SendCPCByteCommand(&ToNetBuf,TNASC_NOTIFY_MODEMSTATE,
(ModemState & ModemStateMask));
snprintf(LogStr,TmpStrLen - 1,"Sent modem state: %u",
(unsigned int) (ModemState & ModemStateMask));
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
}
#ifdef COMMENT
/* GetLineState() not yet implemented */
if ((GetLineState(DeviceFd,LineState) & LineStateMask &
LineStateECMask) != (LineState & LineStateMask & LineStateECMask))
{
LineState = GetLineState(DeviceFd,LineState);
SendCPCByteCommand(&ToNetBuf,TNASC_NOTIFY_LINESTATE,
(LineState & LineStateMask));
snprintf(LogStr,TmpStrLen - 1,"Sent line state: %u",
(unsigned int) (LineState & LineStateMask));
LogStr[TmpStrLen - 1] = '\0';
LogMsg(LOG_DEBUG,LogStr);
}
#endif /* COMMENT */
}
/* Resets the fd sets */
FD_ZERO(&InFdSet);
/* Check if the buffer is not full */
if (IsBufferFull(&ToDevBuf) == False)
{
FD_SET(STDIN_FILENO,&InFdSet);
}
else
if (RemoteFlowOff == False)
{
/* Send a flow control suspend command */
SendCPCFlowCommand(&ToNetBuf,TNASC_FLOWCONTROL_SUSPEND);
RemoteFlowOff = True;
}
/* If input flow has been disabled from the remote client
don't read from the device */
if (!IsBufferFull(&ToNetBuf) && InputFlow == True)
FD_SET(DeviceFd,&InFdSet);
FD_ZERO(&OutFdSet);
/* Check if there are characters available to write */
if (!IsBufferEmpty(&ToDevBuf))
FD_SET(DeviceFd,&OutFdSet);
if (!IsBufferEmpty(&ToNetBuf))
FD_SET(STDOUT_FILENO,&OutFdSet);
/* Set up timeout for modem status polling */
if (ETimeout != NULL)
*ETimeout = BTimeout;
}
}
|