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
|
char *protv = /* -*-C-*- */
"C-Kermit Protocol Module 6.1.106, 8 February 1998";
/* C K C P R O -- C-Kermit Protocol Module, in Wart preprocessor notation. */
/*
Author: Frank da Cruz <fdc@columbia.edu>,
Columbia University Academic Information Systems, New York City.
Copyright (C) 1985, 1998, Trustees of Columbia University in the City of New
York. The C-Kermit software may not be, in whole or in part, licensed or
sold for profit as a software product itself, nor may it be included in or
distributed with commercial products or otherwise distributed by commercial
concerns to their clients or customers without written permission of the
Office of Kermit Development and Distribution, Columbia University. This
copyright notice must not be removed, altered, or obscured.
*/
#include "ckcsym.h"
#include "ckcdeb.h"
#include "ckcasc.h"
#include "ckcker.h"
#ifdef OS2
#ifndef NT
#define INCL_NOPM
#define INCL_VIO /* Needed for ckocon.h */
#include <os2.h>
#undef COMMENT
#endif /* NT */
#include "ckocon.h"
#endif /* OS2 */
/*
Note -- This file may also be preprocessed by the UNIX Lex program, but
you must indent the above #include statements before using Lex, and then
restore them to the left margin in the resulting C program before compilation.
Also, the invocation of the "wart()" function below must be replaced by an
invocation of the "yylex()" function. It might also be necessary to remove
comments in the %%...%% section.
*/
/* State definitions for Wart (or Lex) */
%states ipkt rfile rattr rdata ssinit ssfile ssattr ssdata sseof sseot
%states serve generic get rgen
/* External C-Kermit variable declarations */
extern char *versio, *srvtxt, *cmarg, *cmarg2, **cmlist, *rf_err;
extern char * snd_move, * snd_rename;
extern char filnam[], fspec[], ttname[];
extern CHAR sstate, *rpar(), *srvptr, *data;
extern int timint, rtimo, nfils, hcflg, xflg, flow, mdmtyp, network;
extern int rejection, moving, fncact, bye_active, urserver;
extern int protocol, prefixing, filcnt, carrier, fnspath;
extern int recursive;
extern struct ck_p ptab[];
extern int remfile, rempipe, xferstat, filestatus;
extern char * remdest;
static int s_timint = -1; /* For saving timeout value */
#ifdef STREAMING
extern int streaming, streamok;
static int cancel = 0;
static VOID
streamon() {
if (streamok) {
debug(F100,"streamon","",0);
streaming = 1;
timint = 0; /* No timeouts while streaming. */
}
}
static VOID
streamoff() {
if (streaming) {
debug(F100,"streamoff","",0);
streaming = 0;
timint = s_timint; /* Restore timeout */
}
}
#else
#define streamon()
#define streamoff()
#endif /* STREAMING */
#ifndef NOSPL
_PROTOTYP( int addmac, (char *, char *) );
_PROTOTYP( int zzstring, (char *, char **, int *) );
#endif /* NOSPL */
#ifndef NOICP
_PROTOTYP( int cmdsrc, (void) );
#endif /* NOICP */
#ifndef NOSERVER
extern char * x_user, * x_passwd, * x_acct;
extern int x_login, x_logged;
#endif /* NOSERVER */
#ifdef CK_SPEED
extern int ttnproto; /* Network protocol */
extern short ctlp[]; /* Control-character prefix table */
#endif /* CK_SPEED */
#ifdef NETCONN
#ifdef TCPSOCKET
#include "ckcnet.h"
extern int me_binary, tn_b_nlm, tn_nlm;
#endif /* TCPSOCKET */
#endif /* NETCONN */
#ifdef TCPSOCKET
#ifndef NOLISTEN
extern int tcpsrfd;
#endif /* NOLISTEN */
#endif /* TCPSOCKET */
extern int cxseen, czseen, server, srvdis, local, displa, bctu, bctr, bctl;
extern int quiet, tsecs, parity, backgrd, nakstate, atcapu, wslotn, winlo;
extern int wslots, success, xitsta, rprintf, discard, cdtimo, keep, fdispla;
extern int timef, stdinf, rscapu, sendmode, epktflg, epktrcvd, epktsent;
extern int binary, fncnv;
extern long speed, ffc, crc16, calibrate, dest;
extern char *DIRCMD, *DIRCM2, *DELCMD, *TYPCMD, *SPACMD, *SPACM2, *WHOCMD;
extern CHAR *rdatap;
extern struct zattr iattr;
#ifdef VMS
extern int batch;
#endif /* VMS */
#ifdef GFTIMER
extern CKFLOAT fptsecs;
#endif /* GFTIMER */
extern CHAR *srvcmd;
extern CHAR *epktmsg;
#ifdef CK_TMPDIR
extern int f_tmpdir; /* Directory changed temporarily */
extern char savdir[]; /* For saving current directory */
extern char * dldir;
#endif /* CK_TMPDIR */
#ifndef NOSPL
extern int cmdlvl;
char querybuf[QBUFL+1] = { NUL, NUL }; /* QUERY response buffer */
char *qbufp = querybuf; /* Pointer to it */
int qbufn = 0; /* Length of data in it */
extern int query; /* Query-active flag */
#else
extern int tlevel;
#endif /* NOSPL */
#ifdef NT
extern int escape;
#endif /* NT */
/*
If the following flag is nonzero when the protocol module is entered,
then server mode persists for exactly one transaction, rather than
looping until BYE or FINISH is received.
*/
int justone = 0;
static int r_save = -1;
static int p_save = -1;
_PROTOTYP(static VOID xxproto,(void));
_PROTOTYP(static int sgetinit,(int));
_PROTOTYP(int sndspace,(int));
_PROTOTYP(int wart,(void));
/* Flags for the ENABLE and DISABLE commands */
extern int
en_cpy, en_cwd, en_del, en_dir, en_fin, en_get, en_bye, en_mai, en_pri,
en_hos, en_ren, en_sen, en_spa, en_set, en_typ, en_who, en_ret,
en_mkd, en_rmd;
#ifndef NOSPL
extern int en_asg, en_que;
#endif /* NOSPL */
/* Global variables declared here */
int what = W_INIT; /* What I am doing */
int whatru = 0; /* What are you */
/* Local variables */
static char vstate = 0; /* Saved State */
static char vcmd = 0; /* Saved Command */
static int reget = 0; /* Flag for executing REGET */
static int retrieve = 0; /* Flag for executing RETRIEVE */
static int x; /* General-purpose integer */
static char *s; /* General-purpose string pointer */
/* Macros - Note, BEGIN is predefined by Wart (and Lex) as "state = ", */
/* BEGIN is NOT a GOTO! */
#define TINIT if (tinit() < 0) return(-9)
#define SERVE TINIT; resetc(); nakstate=1; what=W_NOTHING; cmarg2=""; \
sendmode=SM_SEND; recursive=r_save; fnspath=p_save; BEGIN serve;
#define RESUME if (!server) { return(0); } else \
if (justone) { justone=0; return(0); } else { SERVE; }
#ifdef GFTIMER
#define QUIT x=quiet; quiet=1; clsif(); clsof(1); tsecs=gtimer(); \
fptsecs=gftimer(); quiet=x; return(success)
#else
#define QUIT x=quiet; quiet=1; clsif(); clsof(1); tsecs=gtimer(); quiet=x; \
return(success)
#endif /* GFTIMER */
%%
/*
Protocol entry points, one for each start state (sstate).
The lowercase letters are internal "inputs" from the user interface.
NOTE: The start state letters that appear on the left margin immediately
below can NOT be used as packet types OR as G-packet subcodes.
*/
s { TINIT; /* Send file(s) */
if (sinit() > 0) BEGIN ssinit;
else RESUME; }
v { TINIT; nakstate = 1; BEGIN get; } /* Receive file(s) */
r { /* Client sends a GET command */
TINIT;
vstate = get;
reget = 0;
retrieve = 0;
vcmd = 0;
if (sipkt('I') >= 0)
BEGIN ipkt;
else
RESUME;
}
h { /* Client sends a RETRIEVE command */
TINIT;
vstate = get;
reget = 0;
retrieve = 1;
vcmd = 0;
if (sipkt('I') >= 0)
BEGIN ipkt;
else
RESUME;
}
j { /* Client sends a REGET command */
TINIT;
vstate = get;
reget = 1;
retrieve = 0;
vcmd = 0;
if (sipkt('I') >= 0)
BEGIN ipkt;
else
RESUME;
}
c { /* Client sends a Host command */
TINIT;
vstate = rgen;
vcmd = 'C';
if (sipkt('I') >= 0)
BEGIN ipkt;
else
RESUME;
}
k { TINIT; /* Client sends a Kermit command */
vstate = rgen;
vcmd = 'K';
if (sipkt('I') >= 0)
BEGIN ipkt;
else
RESUME;
}
g { /* Client sends a REMOTE command */
TINIT;
vstate = rgen;
vcmd = 'G';
if (sipkt('I') >= 0)
BEGIN ipkt;
else
RESUME;
}
x { /* Enter server mode */
int x;
x = justone;
debug(F101,"x justone 1","",justone);
SERVE; /* tinit() clears justone... */
debug(F101,"x justone 2","",justone);
justone = x;
}
a {
int b1 = 0, b2 = 0;
if (!data) TINIT; /* "ABEND" -- Tell other side. */
#ifndef pdp11
if (epktflg) { /* If because of E-PACKET command */
b1 = bctl; b2 = bctu; /* Save block check type */
bctl = bctu = 1; /* set it to 1 */
}
#endif /* pdp11 */
errpkt((CHAR *)"User cancelled"); /* Send the packet */
#ifndef pdp11
if (epktflg) { /* Restore the block check */
epktflg = 0;
bctl = b1; bctu = b2;
}
#endif /* pdp11 */
success = 0;
return(0); /* Return from protocol. */
}
/*
Dynamic states: <current-states>input-character { action }
nakstate != 0 means we're in a receiving state, in which we send ACKs & NAKs.
*/
<rgen,get,serve>S { /* Receive Send-Init packet. */
#ifndef NOSERVER
if (state == rgen)
urserver = 1;
if (state == serve && x_login && !x_logged) {
errpkt((CHAR *)"Login required");
SERVE;
} else
#endif /* NOSERVER */
if (state == serve && !ENABLED(en_sen)) { /* Not in server mode */
errpkt((CHAR *)"SEND disabled"); /* when SEND is disabled. */
RESUME;
} else { /* OK to go ahead. */
#ifdef CK_TMPDIR
if (dldir && !f_tmpdir) { /* If they have a download directory */
debug(F110,"receive download dir",dldir,0);
if (s = zgtdir()) { /* Get current directory */
debug(F110,"receive current dir",s,0);
if (zchdir(dldir)) { /* Change to download directory */
debug(F100,"receive zchdir ok","",0);
strncpy(savdir,s,TMPDIRLEN);
f_tmpdir = 1; /* Remember that we did this */
} else
debug(F100,"receive zchdir failed","",0);
}
}
#endif /* CK_TMPDIR */
nakstate = 1; /* Can send NAKs from here. */
rinit(rdatap); /* Set parameters */
bctu = bctr; /* Switch to agreed-upon block check */
bctl = (bctu == 4) ? 2 : bctu; /* Set block-check length */
what = W_RECV; /* Remember we're receiving */
resetc(); /* Reset counters */
rtimer(); /* Reset timer */
#ifdef GFTIMER
rftimer();
#endif /* GFTIMER */
streamon();
BEGIN rfile; /* Go into receive-file state */
}
}
/* States in which we get replies back from commands sent to a server. */
/* Complicated because direction of protocol changes, packet number */
/* stays at zero through I-G-S sequence, and complicated even more by */
/* sliding windows buffer allocation. */
<ipkt>Y { /* Get ack for I-packet */
int x = 0;
spar(rdatap); /* Set parameters */
winlo = 0; /* Set window-low back to zero */
urserver = 1; /* So I know I'm talking to a server */
if (vcmd) { /* If sending a generic command */
TINIT;
x = scmd(vcmd,(CHAR *)cmarg); /* Do that */
debug(F111,"Sent G packet",cmarg,x);
vcmd = 0; /* and then un-remember it. */
} else if (vstate == get) {
debug(F101,"REGET sstate","",sstate);
x = srinit(reget, retrieve); /* GET or REGET */
}
if (x < 0) { /* If command was too long */
errpkt((CHAR *)"Command too long for server"); /* cancel both sides. */
success = 0;
RESUME;
} else {
rtimer(); /* Reset the elapsed seconds timer. */
#ifdef GFTIMER
rftimer();
#endif /* GFTIMER */
winlo = 0; /* Window back to 0, again. */
nakstate = 1; /* Can send NAKs from here. */
BEGIN vstate; /* Switch to desired state */
}
}
<ipkt>E { /* Ignore Error reply to I packet */
int x = 0;
winlo = 0; /* Set window-low back to zero */
if (vcmd) { /* In case other Kermit doesn't */
TINIT;
x = scmd(vcmd,(CHAR *)cmarg); /* understand I-packets. */
vcmd = 0; /* Otherwise act as above... */
} else if (vstate == get) x = srinit(reget, retrieve);
if (x < 0) { /* If command was too long */
errpkt((CHAR *)"Command too long for server"); /* cancel both sides. */
success = 0;
RESUME;
} else {
winlo = 0; /* Back to packet 0 again. */
freerpkt(winlo); /* Discard the Error packet. */
nakstate = 1; /* Can send NAKs from here. */
BEGIN vstate;
}
}
<get>Y { /* Resend of previous I-pkt ACK, same seq number! */
srinit(reget, retrieve); /* Send the GET packet again. */
}
/* States in which we're being a server */
<serve,get>I { /* Get I-packet */
#ifndef NOSERVER
spar(rdatap); /* Set parameters from it */
ack1(rpar()); /* Respond with our own parameters */
pktinit(); /* Reinitialize packet numbers */
#endif /* NOSERVER */
}
<serve>R { /* Get Receive-Init (GET) */
#ifndef NOSERVER
if (x_login && !x_logged) {
errpkt((CHAR *)"Login required");
SERVE;
} else if (sgetinit(0) < 0) {
RESUME;
} else {
BEGIN ssinit;
}
#endif /* NOSERVER */
}
<serve>H { /* GET and DELETE ("retrieve") */
#ifndef NOSERVER
if (x_login && !x_logged) {
errpkt((CHAR *)"Login required");
RESUME;
} else if (!ENABLED(en_del)) {
errpkt((CHAR *)"Deleting files is disabled");
RESUME;
} else if (sgetinit(0) < 0) {
RESUME;
} else {
moving = 1;
BEGIN ssinit;
}
#endif /* NOSERVER */
}
<serve>V { /* GET recursively */
#ifndef NOSERVER
#ifdef RECURSIVE
recursive = 1;
if (fnspath == PATH_OFF)
fnspath = PATH_REL;
if (x_login && !x_logged) {
errpkt((CHAR *)"Login required");
RESUME;
} else if (sgetinit(0) < 0) {
RESUME;
} else {
BEGIN ssinit;
}
#endif /* RECURSIVE */
#endif /* NOSERVER */
}
<serve>W { /* GET recursively and delete */
#ifndef NOSERVER
#ifdef RECURSIVE
recursive = 1; /* Set these before sgetinit() */
if (fnspath == PATH_OFF)
fnspath = PATH_REL; /* Don't worry, they will be */
moving = 1; /* reset next time through. */
if (x_login && !x_logged) {
errpkt((CHAR *)"Login required");
RESUME;
} else if (!ENABLED(en_del)) {
errpkt((CHAR *)"Deleting files is disabled");
RESUME;
} else if (sgetinit(0) < 0) {
RESUME;
} else {
BEGIN ssinit;
}
#endif /* RECURSIVE */
#endif /* NOSERVER */
}
<serve>J { /* Get REGET */
#ifndef NOSERVER
if (x_login && !x_logged) {
errpkt((CHAR *)"Login required");
SERVE;
} else if (sgetinit(1) < 0) {
RESUME;
} else {
BEGIN ssinit;
}
#endif /* NOSERVER */
}
<serve>G { /* Generic server command */
#ifndef NOSERVER
srvptr = srvcmd; /* Point to command buffer */
decode(rdatap,putsrv,0); /* Decode packet data into it */
putsrv(NUL); /* Insert a couple nulls */
putsrv(NUL); /* for termination */
if (srvcmd[0]) {
sstate = srvcmd[0]; /* Set requested start state */
if (x_login && !x_logged && sstate != 'I') {
errpkt((CHAR *)"Login required");
SERVE;
} else {
nakstate = 0; /* Now I'm the sender. */
what = W_REMO; /* Doing a REMOTE command. */
#ifdef STREAMING
if (!streaming)
#endif /* STREAMING */
if (timint < 1)
timint = chktimo(rtimo,timef); /* Switch to per-packet timer */
binary = XYFT_T; /* Switch to text mode */
BEGIN generic; /* Switch to generic command state */
}
} else {
errpkt((CHAR *)"Badly formed server command"); /* report error */
RESUME; /* & go back to server command wait */
}
#endif /* NOSERVER */
}
<serve>C { /* Receive Host command */
#ifndef NOSERVER
if (x_login && !x_logged) {
errpkt((CHAR *)"Login required");
SERVE;
} else
if (!ENABLED(en_hos)) {
errpkt((CHAR *)"REMOTE HOST disabled");
RESUME;
} else {
srvptr = srvcmd; /* Point to command buffer */
decode(rdatap,putsrv,0); /* Decode command packet into it */
putsrv(NUL); /* Null-terminate */
nakstate = 0; /* Now sending, not receiving */
binary = XYFT_T; /* Switch to text mode */
if (syscmd((char *)srvcmd,"")) { /* Try to execute the command */
what = W_REMO; /* Doing a REMOTE command. */
#ifdef STREAMING
if (!streaming)
#endif /* STREAMING */
if (timint < 1)
timint = chktimo(rtimo,timef); /* Switch to per-packet timer */
BEGIN ssinit; /* If OK, send back its output */
} else { /* Otherwise */
errpkt((CHAR *)"Can't do system command"); /* report error */
RESUME; /* & go back to server command wait */
}
}
#endif /* NOSERVER */
}
<serve>q { /* User typed Ctrl-C... */
xitsta |= what;
#ifndef NOSERVER
if (!ENABLED(en_fin)) {
errpkt((CHAR *)"QUIT disabled");
RESUME;
} else {
success = 0;
QUIT;
}
#endif /* NOSERVER */
}
<serve>N { /* Server got a NAK in command-wait */
#ifndef NOSERVER
errpkt((CHAR *)"Did you say RECEIVE instead of GET?");
RESUME;
#endif /* NOSERVER */
}
<serve>. { /* Any other command in this state */
#ifndef NOSERVER
if (c != ('E' - SP) && c != ('Y' - SP)) /* except E and Y packets. */
errpkt((CHAR *)"Unimplemented server function");
/* If we answer an E with an E, we get an infinite loop. */
/* A Y (ACK) can show up here if we sent back a short-form reply to */
/* a G packet and it was echoed. ACKs can be safely ignored here. */
RESUME; /* Go back to server command wait. */
#endif /* NOSERVER */
}
<generic>I { /* Login/out */
#ifndef NOSERVER
char f1[LOGINLEN+1], f2[LOGINLEN+1], f3[LOGINLEN+1];
CHAR *p;
int len, i;
f1[0] = NUL; f2[0] = NUL; f3[0] = NUL;
if (x_login) { /* Login required */
len = 0;
if (srvcmd[1]) /* First length field */
len = xunchar(srvcmd[1]); /* Separate the parameters */
if (len > 0 && len <= LOGINLEN) { /* Have username */
p = srvcmd + 2; /* Point to it */
for (i = 0; i < len; i++) /* Copy it */
f1[i] = p[i];
f1[len] = NUL; /* Terminate it */
p += len; /* Point to next length field */
if (*p) { /* If we have one */
len = xunchar(*p++); /* decode it */
if (len > 0 && len <= LOGINLEN) {
for (i = 0; i < len; i++) /* Same deal for password */
f2[i] = p[i];
f2[len] = NUL;
p += len; /* And account */
if (*p) {
len = xunchar(*p++);
if (len > 0 && len <= LOGINLEN) {
for (i = 0; i < len; i++)
f3[i] = p[i];
f3[len] = NUL;
}
}
}
}
}
debug(F110,"XXX user",f1,0);
debug(F110,"XXX pass",f2,0);
debug(F110,"XXX acct",f3,0);
if (!f1[0]) {
if (x_logged) {
tlog(F110,"Logged out",x_user,0);
ack1((CHAR *)"Logged out");
} else {
ack1((CHAR *)"You were not logged in");
}
x_logged = 0;
} else {
x_logged = 0;
if (x_user && x_passwd) { /* Username and password must match */
if (!strcmp(x_user,f1))
if (!strcmp(x_passwd,f2))
x_logged = 1;
} else if (x_user) { /* Only username must match */
if (!strcmp(x_user,f1))
x_logged = 1;
}
if (x_logged) {
tlog(F110,"Logged in", x_user, 0);
ack1((CHAR *)"Logged in");
} else {
tlog(F110,"Login failed", f1, 0);
ack1((CHAR *)"Login failed");
}
}
} else {
ack1((CHAR *)"No login required");
}
SERVE;
#endif /* NOSERVER */
}
<generic>C { /* Got REMOTE CD command */
#ifndef NOSERVER
if (!ENABLED(en_cwd)) {
errpkt((CHAR *)"REMOTE CD disabled");
RESUME;
} else {
if (!cwd((char *)(srvcmd+1))) errpkt((CHAR *)"Can't change directory");
RESUME; /* Back to server command wait */
}
#endif /* NOSERVER */
}
<generic>A { /* Got REMOTE PWD command */
#ifndef NOSERVER
if (!ENABLED(en_cwd)) {
errpkt((CHAR *)"REMOTE CD disabled");
RESUME;
} else {
if (encstr((CHAR *)zgtdir()) > -1) /* Get & encode current directory */
ack1(data); /* If it fits, send it back in ACK */
RESUME; /* Back to server command wait */
}
#endif /* NOSERVER */
}
<generic>D { /* REMOTE DIRECTORY command */
#ifndef NOSERVER
char *n2;
if (!ENABLED(en_dir)) { /* If DIR is disabled, */
errpkt((CHAR *)"REMOTE DIRECTORY disabled"); /* refuse. */
RESUME;
} else { /* DIR is enabled. */
if (!ENABLED(en_cwd)) { /* But CWD is disabled */
zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
if (strcmp((char *)(srvcmd+2),n2)) { /* so refuse. */
errpkt((CHAR *)"Access denied");
RESUME; /* Remember, this is not a goto! */
}
}
if (state == generic) { /* It's OK to go ahead. */
#ifdef COMMENT
n2 = (*(srvcmd+2)) ? DIRCMD : DIRCM2;
if (syscmd(n2,(char *)(srvcmd+2))) /* If it can be done */
#else
if (snddir((char*)(srvcmd+2)))
#endif /* COMMENT */
{
BEGIN ssinit; /* send the results back; */
} else { /* otherwise */
errpkt((CHAR *)"Can't list directory"); /* report failure, */
RESUME; /* return to server command wait */
}
}
}
#endif /* NOSERVER */
}
<generic>E { /* REMOTE DELETE (Erase) command */
#ifndef NOSERVER
char *n2;
if (!ENABLED(en_del)) {
errpkt((CHAR *)"REMOTE DELETE disabled");
RESUME;
} else { /* DELETE is enabled */
if (!ENABLED(en_cwd)) { /* but CWD is disabled */
zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
if (strcmp((char *)(srvcmd+2),n2)) { /* so refuse. */
errpkt((CHAR *)"Access denied");
RESUME; /* Remember, this is not a goto! */
}
} else if (isdir((char *)(srvcmd+2))) { /* A directory name? */
errpkt((CHAR *)"It's a directory");
RESUME;
}
if (state == generic) { /* It's OK to go ahead. */
if (
#ifdef COMMENT
syscmd(DELCMD,(char *)(srvcmd+2)) /* Old way */
#else
snddel((char*)(srvcmd+2)) /* New way */
#endif /* COMMENT */
) {
BEGIN ssinit; /* If OK send results back */
} else { /* otherwise */
errpkt((CHAR *)"Can't remove file"); /* report failure */
RESUME; /* & return to server command wait */
}
}
}
#endif /* NOSERVER */
}
<generic>F { /* FINISH */
#ifndef NOSERVER
if (!ENABLED(en_fin)) {
errpkt((CHAR *)"FINISH disabled");
RESUME;
} else {
ack(); /* Acknowledge */
xxscreen(SCR_TC,0,0L,""); /* Display */
return(0); /* Done */
}
#endif /* NOSERVER */
}
<generic>L { /* BYE (Logout) */
#ifndef NOSERVER
if (!ENABLED(en_bye)) {
errpkt((CHAR *)"BYE disabled");
RESUME;
} else {
ack(); /* Acknowledge */
msleep(500);
ttres(); /* Reset the terminal */
xxscreen(SCR_TC,0,0L,""); /* Display */
doclean(); /* Clean up files, etc */
#ifdef DEBUG
debug(F100,"C-Kermit BYE - Loggin out...","",0);
zclose(ZDFILE);
#endif /* DEBUG */
return(zkself()); /* Try to log self out */
}
#endif /* NOSERVER */
}
<generic>H { /* REMOTE HELP */
#ifndef NOSERVER
if (sndhlp(NULL)) {
BEGIN ssinit; /* try to send it */
} else { /* If not ok, */
errpkt((CHAR *)"Can't send help"); /* send error message instead */
RESUME; /* and return to server command wait */
}
#endif /* NOSERVER */
}
<generic>R { /* REMOTE RENAME */
#ifndef NOSERVER
#ifdef ZRENAME
if (!ENABLED(en_ren)) {
errpkt((CHAR *)"REMOTE RENAME disabled");
RESUME;
} else { /* RENAME is enabled */
char *str1, *str2, f1[256], f2[256];
int len1, len2;
len1 = xunchar(srvcmd[1]); /* Separate the parameters */
len2 = xunchar(srvcmd[2+len1]);
strncpy(f1,(char *)(srvcmd+2),len1);
f1[len1] = NUL;
strncpy(f2,(char *)(srvcmd+3+len1),len2);
f2[len2] = NUL;
len2 = xunchar(srvcmd[2+len1]);
strncpy(f1,(char *)(srvcmd+2),len1);
f1[len1] = NUL;
strncpy(f2,(char *)(srvcmd+3+len1),len2);
f2[len2] = NUL;
if (!ENABLED(en_cwd)) { /* If CWD is disabled */
zstrip(f1,&str1); /* and they included a pathname, */
zstrip(f2,&str2);
if ( strcmp(f1,str1) || strcmp(f2,str2) ) { /* refuse. */
errpkt((CHAR *)"Access denied");
RESUME; /* Remember, this is not a goto! */
}
}
if (state == generic) { /* It's OK to go ahead. */
if (zrename(f1,f2)) { /* Try */
errpkt((CHAR *)"Can't rename file"); /* Give error msg */
} else ack();
RESUME; /* Wait for next server command */
}
}
#else /* no ZRENAME */
/* Give error message */
errpkt((CHAR *)"REMOTE RENAME not available");
RESUME; /* Wait for next server command */
#endif /* ZRENAME */
#endif /* NOSERVER */
}
<generic>K { /* REMOTE COPY */
#ifndef NOSERVER
#ifdef ZCOPY
if (!ENABLED(en_cpy)) {
errpkt((CHAR *)"REMOTE COPY disabled");
RESUME;
} else {
char *str1, *str2, f1[256], f2[256];
int len1, len2;
len1 = xunchar(srvcmd[1]); /* Separate the parameters */
len2 = xunchar(srvcmd[2+len1]);
strncpy(f1,(char *)(srvcmd+2),len1);
f1[len1] = NUL;
strncpy(f2,(char *)(srvcmd+3+len1),len2);
f2[len2] = NUL;
if (!ENABLED(en_cwd)) { /* If CWD is disabled */
zstrip(f1,&str1); /* and they included a pathname, */
zstrip(f2,&str2);
if (strcmp(f1,str1) || strcmp(f2,str2)) { /* Refuse. */
errpkt((CHAR *)"Access denied");
RESUME; /* Remember, this is not a goto! */
}
}
if (state == generic) { /* It's OK to go ahead. */
if (zcopy(f1,f2)) { /* Try */
errpkt((CHAR *)"Can't copy file"); /* give error message */
} else ack();
RESUME; /* wait for next server command */
}
}
#else /* no ZCOPY */
errpkt((CHAR *)"REMOTE COPY not available"); /* give error message */
RESUME; /* wait for next server command */
#endif /* ZCOPY */
#endif /* NOSERVER */
}
<generic>S { /* REMOTE SET */
#ifndef NOSERVER
if (!ENABLED(en_set)) {
errpkt((CHAR *)"REMOTE SET disabled");
RESUME;
} else {
if (remset((char *)(srvcmd+1))) /* Try to do what they ask */
ack(); /* If OK, then acknowledge */
else /* Otherwise */
errpkt((CHAR *)"Unknown REMOTE SET parameter"); /* give error msg */
RESUME; /* Return to server command wait */
}
#endif /* NOSERVER */
}
<generic>T { /* REMOTE TYPE */
#ifndef NOSERVER
char *n2;
if (!ENABLED(en_typ)) {
errpkt((CHAR *)"REMOTE TYPE disabled");
RESUME;
} else {
if (!ENABLED(en_cwd)) { /* If CWD disabled */
zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
if (strcmp((char *)(srvcmd+2),n2)) { /* refuse. */
errpkt((CHAR *)"Access denied");
RESUME; /* Remember, this is not a goto! */
}
}
if (state == generic) { /* It's OK to go ahead. */
binary = XYFT_T; /* Use text mode for this. */
if ( /* (RESUME didn't change state) */
#ifdef COMMENT
syscmd(TYPCMD,(char *)(srvcmd+2)) /* Old way */
#else
sndtype((char *)(srvcmd+2)) /* New way */
#endif /* COMMENT */
)
BEGIN ssinit; /* OK */
else { /* not OK */
errpkt((CHAR *)"Can't type file"); /* give error message */
RESUME; /* wait for next server command */
}
}
}
#endif /* NOSERVER */
}
<generic>m { /* REMOTE MKDIR */
#ifndef NOSERVER
#ifdef CK_MKDIR
if (!ENABLED(en_mkd)) {
errpkt((CHAR *)"REMOTE MKDIR disabled");
RESUME;
} else if (!ENABLED(en_cwd)) { /* If CWD disabled */
errpkt((CHAR *)"Directory access restricted");
RESUME; /* Remember, this is not a goto! */
}
if (state == generic) { /* OK to go ahead. */
char *p = NULL;
x = ckmkdir(0,(char *)(srvcmd+2),&p,0,1); /* Make the directory */
if (!p) p = "";
if (x > -1) {
encstr((CHAR *)p); /* OK - encode the name */
ack1(data); /* Send short-form response */
RESUME;
} else { /* not OK */
if (!*p) p = "Directory creation failure";
errpkt((CHAR *)p); /* give error message */
RESUME; /* Wait for next server command */
}
}
#else
errpkt((CHAR *)"REMOTE MKDIR not available");
RESUME;
#endif /* CK_MKDIR */
#endif /* NOSERVER */
}
<generic>d { /* REMOTE RMDIR */
#ifndef NOSERVER
#ifdef CK_MKDIR
if (!ENABLED(en_rmd)) {
errpkt((CHAR *)"REMOTE RMDIR disabled");
RESUME;
} else if (!ENABLED(en_cwd)) { /* If CWD disabled */
errpkt((CHAR *)"Directory access restricted");
RESUME; /* Remember, this is not a goto! */
}
if (state == generic) { /* OK to go ahead. */
char *p = NULL;
x = ckmkdir(1,(char *)(srvcmd+2),&p,0,1);
if (!p) p = "";
if (x > -1) {
encstr((CHAR *)p); /* OK - encode the name */
ack1(data); /* Send short-form response */
RESUME;
} else { /* not OK */
if (!*p) p = "Directory removal failure";
errpkt((CHAR *)p); /* give error message */
RESUME; /* Wait for next server command */
}
}
#else
errpkt((CHAR *)"REMOTE RMDIR not available");
RESUME;
#endif /* CK_MKDIR */
#endif /* NOSERVER */
}
<generic>U { /* REMOTE SPACE */
#ifndef NOSERVER
if (!ENABLED(en_spa)) {
errpkt((CHAR *)"REMOTE SPACE disabled");
RESUME;
} else {
x = srvcmd[1]; /* Get area to check */
x = ((x == NUL) || (x == SP)
#ifdef OS2
|| (x == '!') || (srvcmd[3] == ':')
#endif /* OS2 */
);
if (!x && !ENABLED(en_cwd)) { /* CWD disabled */
errpkt((CHAR *)"Access denied"); /* and non-default area given, */
RESUME; /* refuse. */
} else {
#ifdef OS2
_PROTOTYP(int sndspace,(int));
if (sndspace(x ? toupper(srvcmd[2]) : 0)) {
BEGIN ssinit; /* send the report. */
} else { /* If not ok, */
errpkt((CHAR *)"Can't send space"); /* send error message */
RESUME; /* and return to server command wait */
}
#else
x = (x ? syscmd(SPACMD,"") : syscmd(SPACM2,(char *)(srvcmd+2)));
if (x) { /* If we got the info */
BEGIN ssinit; /* send it */
} else { /* otherwise */
errpkt((CHAR *)"Can't check space"); /* send error message */
RESUME; /* and await next server command */
}
#endif /* OS2 */
}
}
#endif /* NOSERVER */
}
<generic>W { /* REMOTE WHO */
#ifndef NOSERVER
if (!ENABLED(en_who)) {
errpkt((CHAR *)"REMOTE WHO disabled");
RESUME;
} else {
#ifdef OS2
_PROTOTYP(int sndwho,(char *));
if (sndwho((char *)(srvcmd+2))) {
BEGIN ssinit; /* try to send it */
} else { /* If not ok, */
errpkt((CHAR *)"Can't do who command"); /* send error msg */
RESUME; /* and return to server command wait */
}
#else
if (syscmd(WHOCMD,(char *)(srvcmd+2))) {
BEGIN ssinit;
} else {
errpkt((CHAR *)"Can't do who command");
RESUME;
}
#endif /* OS2 */
}
#endif /* NOSERVER */
}
<generic>V { /* Variable query or set */
#ifndef NOSERVER
#ifndef NOSPL
char c;
c = *(srvcmd+2); /* Q = Query, S = Set */
if (c == 'Q') { /* Query */
if (!ENABLED(en_que)) { /* Security */
errpkt((CHAR *)"REMOTE QUERY disabled");
RESUME;
} else { /* Query allowed */
int n; char *p, *q;
qbufp = querybuf; /* Wipe out old stuff */
qbufn = 0;
querybuf[0] = NUL;
p = (char *) srvcmd + 3; /* Pointer for making wrapper */
n = strlen((char *)srvcmd); /* Position of end */
c = *(srvcmd+4); /* Which type of variable */
if (*(srvcmd+6) == CMDQ) { /* Starts with command quote? */
p = (char *) srvcmd + 6; /* Take it literally */
if (*p == CMDQ) p++;
} else { /* They played by the rules */
if (c == 'K') { /* Kermit variable */
int k;
k = (int) strlen(p);
if (k > 0 && p[k-1] == ')') {
p = (char *)(srvcmd + 4);
*(srvcmd+4) = CMDQ;
*(srvcmd+5) = 'f'; /* Function, so make it \f...() */
} else {
*(srvcmd+3) = CMDQ; /* Stuff wrapping into buffer */
*(srvcmd+4) = 'v'; /* Variable, so make it \v(...) */
*(srvcmd+5) = '('; /* around variable name */
*(srvcmd+n) = ')';
*(srvcmd+n+1) = NUL;
}
} else {
*(srvcmd+3) = CMDQ; /* Stuff wrapping into buffer */
*(srvcmd+4) = 'v'; /* Variable, so make it \v(...) */
*(srvcmd+5) = '('; /* around variable name */
*(srvcmd+n) = ')';
*(srvcmd+n+1) = NUL;
if (c == 'S') { /* System variable */
*(srvcmd+4) = '$'; /* so it's \$(...) */
} else if (c == 'G') { /* Non-\ Global variable */
*(srvcmd+4) = 'm'; /* so wrap it in \m(...) */
}
}
} /* Now evaluate it */
n = QBUFL; /* Max length */
q = querybuf; /* Where to put it */
if (zzstring(p,&q,&n) < 0) {
errpkt((n > 0) ? (CHAR *)"Can't get value"
: (CHAR *)"Value too long"
);
RESUME;
} else {
if (encstr((CHAR *)querybuf) > -1) { /* Encode it */
ack1(data); /* If it fits, send it back in ACK */
RESUME;
} else if (sndstring(querybuf)) { /* Long form response */
BEGIN ssinit;
} else { /* sndhlp() fails */
errpkt((CHAR *)"Can't send value");
RESUME;
}
}
}
} else if (c == 'S') { /* Set (assign) */
if (!ENABLED(en_asg)) { /* Security */
errpkt((CHAR *)"REMOTE ASSIGN disabled");
RESUME;
} else { /* OK */
int n;
n = xunchar(*(srvcmd+3)); /* Length of name */
n = 3 + n + 1; /* Position of length of value */
*(srvcmd+n) = NUL; /* Don't need it */
if (addmac((char *)(srvcmd+4),(char *)(srvcmd+n+1)) < 0)
errpkt((CHAR *)"REMOTE ASSIGN failed");
else
ack();
RESUME;
}
} else {
errpkt((CHAR *)"Badly formed server command");
RESUME;
}
#else
errpkt((CHAR *)"Variable query/set not available");
RESUME;
#endif /* NOSPL */
#endif /* NOSERVER */
}
<generic>q {
#ifndef NOSERVER
if (!ENABLED(en_fin)) { /* Ctrl-C typed */
errpkt((CHAR *)"QUIT disabled");
RESUME;
} else {
success = 0;
QUIT;
}
#endif /* NOSERVER */
}
<generic>. { /* Anything else in this state... */
#ifndef NOSERVER
errpkt((CHAR *)"Unimplemented REMOTE command"); /* Complain */
RESUME; /* and return to server command wait */
#endif /* NOSERVER */
}
<rgen>Y { /* Short-Form reply */
urserver = 1;
#ifndef NOSERVER
#ifndef NOSPL
if (query) { /* If to query, */
qbufp = querybuf; /* initialize query response buffer */
qbufn = 0;
querybuf[0] = NUL;
}
#endif /* NOSPL */
rf_err = "Can't open file";
x = 1;
if (remfile) { /* Response redirected to file */
if (rempipe) /* or pipe */
#ifndef NOPUSH
x = zxcmd(ZOFILE,remdest); /* Pipe: Start command */
#else
x = 0;
#endif /* NOPUSH */
else
x = opena(remdest,&iattr); /* File: Open with attributes */
} else {
x = opent(&iattr); /* "open" the screen */
}
if (x) { /* If file was opened ok */
if (decode(rdatap,
#ifndef NOSPL
(query || !remfile) ? puttrm :
#else
!remfile ? puttrm :
#endif /* NOSPL */
zputfil, 1) < 0) { /* Note: zputfil, not putfil. */
errpkt((CHAR *)"Error writing data");
RESUME;
} else {
if (rdatap) /* If we had data */
if (*rdatap) /* add a line terminator */
if (remfile) { /* to file */
zsoutl(ZOFILE,"");
} else { /* or to screen. */
conoll("");
}
if (bye_active && network) { /* I sent a BYE command and got */
msleep(500); /* the ACK... */
tthang();
}
clsof(0);
success = 1;
RESUME;
}
} else { /* otherwise */
errpkt((CHAR *) rf_err); /* send error message */
RESUME; /* and quit. */
}
#endif /* NOSERVER */
}
<rgen,rfile>F { /* File header */
char *n2;
xflg = 0; /* Not screen data */
cancel = 0; /* Reset cancellation counter */
#ifdef CALIBRATE
if (dest == DEST_N)
calibrate = 1;
#endif /* CALIBRATE */
if (!rcvfil(filnam)) { /* Figure out local filename */
errpkt((CHAR *)rf_err); /* Trouble */
RESUME;
} else { /* Real file, OK to receive */
if (filcnt == 1) /* rcvfil set this to 1 for 1st file */
crc16 = 0L; /* Clear file CRC */
#ifndef NOFULLNAME
#ifdef ZFNQFP /* Because of zfnqfp() */
#ifdef BIGBUFOK /* Because it's another 1K buffer */
#define USEFULLNAME /* Memory to burn - do it */
#else
#ifdef datageneral
#define USEFULLNAME
#endif /* datageneral */
#endif /* BIGBUFOK */
#endif /* ZFNQFP */
#endif /* NOFULLNAME */
#ifdef USEFULLNAME /* Name to send back in ACK */
if (!isabsolute(filnam)
#ifdef CALIBRATE
&& !calibrate
#endif /* CALIBRATE */
) {
CHAR tmpbuf[91]; /* Must fit in ACK Data field */
struct zfnfp * fnp;
fnp = zfnqfp(filnam,90,(char *)tmpbuf);
encstr(fnp ? tmpbuf: (CHAR *)filnam); /* Send the full pathname */
} else
#endif /* USEFULLNAME */
encstr((CHAR *)filnam); /* Encode the local filename */
ack1(data); /* Send it back in ACK */
initattr(&iattr); /* Clear file attribute structure */
streamon();
if (window(wslotn) < 0) { /* Allocate negotiated window slots */
errpkt((CHAR *)"Can't open window");
RESUME;
}
BEGIN rattr; /* Now expect Attribute packets */
}
}
<rgen,rfile>X { /* X-packet instead of file header */
xflg = 1; /* Screen data */
cancel = 0; /* Reset cancellation counter */
ack(); /* Acknowledge the X-packet */
initattr(&iattr); /* Initialize attribute structure */
streamon();
if (window(wslotn) < 0) { /* allocate negotiated window slots */
errpkt((CHAR *)"Can't open window");
RESUME;
}
#ifndef NOSPL
if (query) { /* If this is the response to */
qbufp = querybuf; /* a query that we sent, initialize */
qbufn = 0; /* the response buffer */
querybuf[0] = NUL;
}
#endif /* NOSPL */
what = W_REMO; /* we're doing a REMOTE command */
BEGIN rattr; /* Expect Attribute packets */
}
<rattr>A { /* Attribute packet */
if (gattr(rdatap,&iattr) == 0) { /* Read into attribute structure */
#ifdef CK_RESEND
ack1((CHAR *)iattr.reply.val); /* Reply with data */
#else
ack(); /* If OK, acknowledge */
#endif /* CK_RESEND */
} else { /* Otherwise */
extern long fsize;
char *r;
r = getreason(iattr.reply.val);
ack1((CHAR *)iattr.reply.val); /* refuse to accept the file */
xxscreen(SCR_ST,ST_REFU,0L,r); /* reason */
#ifdef TLOG
if (tralog && !tlogfmt)
doxlog(what,filnam,fsize,binary,1,r);
#endif /* TLOG */
}
}
<rattr>D { /* First data packet */
if (discard) { /* if we're discarding the file */
ack1((CHAR *)"X"); /* just ack the data like this. */
cancel++; /* and count it */
BEGIN rdata; /* and wait for more data packets. */
} else { /* Not discarding. */
rf_err = "Can't open file";
if (xflg) { /* If screen data */
if (remfile) { /* redirected to file */
if (rempipe) /* or pipe */
x = openc(ZOFILE,remdest); /* Pipe: start command */
else
x = opena(remdest,&iattr); /* File: open with attributes */
} else { /* otherwise */
x = opent(&iattr); /* "open" the screen */
}
} else { /* otherwise */
#ifdef CALIBRATE
if (calibrate) { /* If calibration run */
x = ckopenx(&iattr); /* open nothing */
#ifdef STREAMING
if (streaming) /* Streaming */
fastack(); /* ACK without ACKing. */
else
#endif /* STREAMING */
ack(); /* Send real ACK */
BEGIN rdata; /* Proceed to next state */
} else
#endif /* CALIBRATE */
#ifdef UNIX
/*
In UNIX we can pipe the file data into the mail program, which is to be
preferred to writing it out to a temp file and then mailing it afterwards.
This depends rather heavily on all UNIXes having a mail command that
accepts '-s "subject"' on the command line. MAILCMD (e.g. mail, Mail, mailx)
is defined in ckufio.c.
*/
if (*(iattr.disp.val) == 'M') {
char *s;
char tmp[1024];
extern char ofn1[], *MAILCMD;
s = iattr.disp.val + 1;
sprintf(tmp,"%s -s %c%s%c %s", MAILCMD, '"', ofn1, '"', s);
x = openc(ZOFILE,(char *)tmp);
} else if (*(iattr.disp.val) == 'P') { /* Ditto for print */
char tmp[1024];
extern char *PRINTCMD;
sprintf(tmp,"%s %s", PRINTCMD, iattr.disp.val + 1);
x = openc(ZOFILE,(char *)tmp);
} else
#endif /* UNIX */
x = opena(filnam,&iattr); /* open the file, with attributes */
}
if (x) { /* If file was opened ok */
int rc, qf;
#ifndef NOSPL
qf = query;
#else
qf = 0;
#endif /* NOSPL */
#ifdef CKTUNING
rc = (binary && !parity) ?
bdecode(rdatap,putfil):
decode(rdatap, qf ? puttrm : putfil, 1);
#else
rc = decode(rdatap, qf ? puttrm : putfil, 1);
#endif /* CKTUNING */
if (rc < 0) {
errpkt((CHAR *)"Error writing data");
RESUME;
}
#ifdef STREAMING
if (streaming) /* Streaming was negotiated */
fastack(); /* ACK without ACKing. */
else
#endif /* STREAMING */
ack(); /* acknowledge it */
BEGIN rdata; /* and switch to receive-data state */
} else { /* otherwise */
errpkt((CHAR *) rf_err); /* send error packet */
RESUME; /* and quit. */
}
}
}
<rfile>B { /* EOT, no more files */
ack(); /* Acknowledge the B packet */
reot(); /* Do EOT things */
#ifdef CK_TMPDIR
/* If we were cd'd temporarily to another device or directory ... */
if (f_tmpdir) {
int x;
x = zchdir((char *) savdir); /* ... restore previous directory */
f_tmpdir = 0; /* and remember we did it. */
debug(F111,"ckcpro.w B tmpdir restoring",savdir,x);
}
#endif /* CK_TMPDIR */
RESUME; /* and quit */
}
<rdata>D { /* Data packet */
if (cxseen || discard) { /* If file interrupt */
#ifdef STREAMING
if (streaming) {
if (cancel++ == 0)
ack1((CHAR *)"X"); /* put "X" in ACK */
else
fastack();
} else
#endif /* STREAMING */
ack1((CHAR *)"X"); /* put "X" in ACK */
} else if (czseen) { /* If file-group interrupt */
#ifdef STREAMING
if (streaming) {
if (cancel++ == 0)
ack1((CHAR *)"Z"); /* put "Z" in ACK */
else
fastack();
} else
#endif /* STREAMING */
ack1((CHAR *)"Z"); /* put "Z" in ACK */
} else {
int rc, qf;
#ifndef NOSPL
qf = query;
#else
qf = 0;
#endif /* NOSPL */
#ifdef CKTUNING
rc = (binary && !parity) ?
bdecode(rdatap,putfil):
decode(rdatap, qf ? puttrm : putfil, 1);
#else
rc = decode(rdatap, qf ? puttrm : putfil, 1);
#endif /* CKTUNING */
if (rc < 0) {
discard = !keep;
errpkt((CHAR *)"Error writing data"); /* If failure, */
RESUME;
} else /* Data written OK, send ACK */
#ifdef STREAMING
if (streaming)
fastack();
else
#endif /* STREAMING */
ack();
}
}
<rattr>Z { /* EOF immediately after A-Packet. */
rf_err = "Can't create file";
timint = s_timint;
if (discard) { /* Discarding a real file... */
x = 1;
} else if (xflg) { /* If screen data */
if (remfile) { /* redirected to file */
if (rempipe) /* or pipe */
x = openc(ZOFILE,remdest); /* Pipe: start command */
else
x = opena(remdest,&iattr); /* File: open with attributes */
} else { /* otherwise */
x = opent(&iattr); /* "open" the screen */
}
#ifdef CALIBRATE
} else if (calibrate) { /* If calibration run */
x = ckopenx(&iattr); /* do this */
#endif /* CALIBRATE */
} else { /* otherwise */
x = opena(filnam,&iattr); /* open the file, with attributes */
}
if (!x || reof(filnam, &iattr) < 0) { /* Now close & dispose of the file */
errpkt((CHAR *) rf_err); /* If problem, send error msg */
RESUME; /* and quit */
} else { /* otherwise */
ack(); /* acknowledge the EOF packet */
BEGIN rfile; /* and await another file */
}
}
<rdata>q { /* Ctrl-C or connection loss. */
timint = s_timint;
window(1); /* Set window size back to 1... */
cxseen = 1;
x = clsof(1); /* Close file */
return(success = 0); /* Failed */
}
<rdata>Z { /* End Of File (EOF) Packet */
/* wslots = 1; */ /* (don't set) Window size back to 1 */
#ifndef COHERENT /* Coherent compiler blows up on this switch() statement. */
x = reof(filnam, &iattr); /* Handle the EOF packet */
switch (x) { /* reof() sets the success flag */
case -3: /* If problem, send error msg */
errpkt((CHAR *)"Can't print file"); /* Fatal */
RESUME;
break;
case -2:
errpkt((CHAR *)"Can't mail file"); /* Fatal */
RESUME;
break;
case 2:
case 3:
xxscreen(SCR_EM,0,0L,"Can't delete temp file"); /* Not fatal */
RESUME;
break;
default:
if (x < 0) { /* Fatal */
errpkt((CHAR *)"Can't close file");
RESUME;
} else { /* Success */
#ifndef NOSPL
if (query) /* Query reponses generally */
conoll(""); /* don't have line terminators */
#endif /* NOSPL */
ack(); /* Acknowledge the EOF packet */
BEGIN rfile; /* and await another file */
}
}
#else
if (reof(filnam, &iattr) < 0) { /* Close the file */
errpkt((CHAR *)"Error at end of file");
RESUME;
} else { /* reof() sets success flag */
ack();
BEGIN rfile;
}
#endif /* COHERENT */
}
<ssinit>Y { /* ACK for Send-Init */
spar(rdatap); /* set parameters from it */
bctu = bctr; /* switch to agreed-upon block check */
bctl = (bctu == 4) ? 2 : bctu; /* Set block-check length */
#ifdef CK_RESEND
if ((sendmode == SM_RESEND) && (!atcapu || !rscapu)) { /* RESEND */
errpkt((CHAR *) "RESEND capabilities not negotiated");
RESUME;
} else {
#endif /* CK_RESEND */
what = W_SEND; /* Remember we're sending */
x = sfile(xflg); /* Send X or F header packet */
cancel = 0; /* Reset cancellation counter */
if (x) { /* If the packet was sent OK */
if (!xflg && filcnt == 1) /* and it's a real file */
crc16 = 0L; /* Clear the file CRC */
resetc(); /* reset per-transaction counters */
rtimer(); /* reset timers */
#ifdef GFTIMER
rftimer();
#endif /* GFTIMER */
streamon(); /* turn on streaming */
BEGIN ssfile; /* and switch to receive-file state */
} else { /* otherwise send error msg & quit */
s = xflg ? "Can't execute command" : (char *)epktmsg;
if (!*s) s = "Can't open file";
errpkt((CHAR *)s);
RESUME;
}
#ifdef CK_RESEND
}
#endif /* CK_RESEND */
}
/*
These states are necessary to handle the case where we get a server command
packet (R, G, or C) reply with an S packet, but the client retransmits the
command packet. The input() function doesn't catch this because the packet
number is still zero.
*/
<ssinit>R { /* R packet was retransmitted. */
xsinit(); /* Resend packet 0 */
}
<ssinit>G { /* Same deal if G packet comes again */
xsinit();
}
<ssinit>C { /* Same deal if C packet comes again */
xsinit();
}
<ssfile>Y { /* ACK for F or X packet */
srvptr = srvcmd; /* Point to string buffer */
decode(rdatap,putsrv,0); /* Decode data field, if any */
putsrv(NUL); /* Terminate with null */
ffc = 0L; /* Reset file byte counter */
if (*srvcmd) { /* If remote name was recorded */
if (sendmode != SM_RESEND) {
extern char * srfspec;
if (fdispla == XYFD_C || fdispla == XYFD_S)
xxscreen(SCR_AN,0,0L,(char *)srvcmd);
tlog(F110," remote name:",(char *) srvcmd,0L);
makestr(&srfspec,(char *)srvcmd);
}
}
if (atcapu) { /* If attributes are to be used */
if (sattr(xflg | stdinf, 1) < 0) { /* send them */
errpkt((CHAR *)"Can't send attributes"); /* if problem, say so */
RESUME; /* and quit */
} else BEGIN ssattr; /* if ok, switch to attribute state */
} else { /* Attributes not negotiated */
if (window(wslotn) < 0) { /* Open window */
errpkt((CHAR *)"Can't open window");
RESUME;
}
if ((x = sdata()) == -2) { /* Send first data packet data */
window(1); /* Failed, put window size back to 1 */
x = clsif(); /* Close input file */
return(success = 0); /* Return failure */
} else if (x == -9) { /* User interrupted */
errpkt((CHAR *)"User cancelled"); /* Send Error packet */
window(1); /* Set window size back to 1... */
timint = s_timint; /* Restore timeout */
return(success = 0); /* Failed */
} else if (x == -1) { /* EOF (empty file) */
window(1); /* put window size back to 1, */
x = clsif(); /* If not ok, close input file, */
if (x < 0)
cxseen = 1;
seof((CHAR *)""); /* send EOF packet, */
BEGIN sseof; /* and switch to EOF state. */
} else { /* First data sent OK */
BEGIN ssdata; /* All ok, switch to send-data state */
}
}
}
<ssattr>Y { /* Got ACK to A packet */
ffc = 0L; /* Reset file byte counter */
if (rsattr(rdatap) < 0) { /* Was the file refused? */
discard = 1; /* Set the discard flag */
clsif(); /* Close the file */
sxeof((CHAR *)"D"); /* send EOF with "discard" code */
BEGIN sseof; /* switch to send-EOF state */
} else if ((x = sattr(xflg | stdinf, 0)) < 0) { /* Send more? */
errpkt((CHAR *)"Can't send attributes"); /* Trouble... */
RESUME;
} else if (x == 0) { /* No more to send so now the data */
if (window(wslotn) < 0) { /* Allocate negotiated window slots */
errpkt((CHAR *)"Can't open window");
RESUME;
}
if ((x = sdata()) == -2) { /* File accepted, send first data */
return(success = 0); /* Failed */
} else if (x == -9) { /* User interrupted */
errpkt((CHAR *)"User cancelled"); /* Send Error packet */
window(1); /* Set window size back to 1... */
timint = s_timint; /* Restore timeout */
return(success = 0); /* Failed */
} else if (x == -1) { /* EOF */
window(1); /* put window size back to 1, */
x = clsif(); /* If not ok, close input file, */
if (x < 0)
cxseen = 1;
seof((CHAR *)""); /* send EOF packet, */
BEGIN sseof; /* and switch to EOF state. */
} else {
BEGIN ssdata; /* All ok, switch to send-data state */
}
}
}
<ssdata>q { /* Ctrl-C or connection loss. */
window(1); /* Set window size back to 1... */
cxseen = 1; /* To indicate interruption */
x = clsif(); /* Close file */
return(success = 0); /* Failed */
}
<ssdata>Y { /* Got ACK to Data packet */
canned(rdatap); /* Check if file transfer cancelled */
if ((x = sdata()) == -2) { /* Try to send next data */
window(1); /* Set window size back to 1... */
x = clsif(); /* Close file */
return(success = 0); /* Failed */
} else if (x == -9) { /* User interrupted */
errpkt((CHAR *)"User cancelled"); /* Send Error packet */
window(1); /* Set window size back to 1... */
timint = s_timint; /* Restore original timeout */
return(success = 0); /* Failed */
} else if (x == -1) { /* EOF - finished sending data */
window(1); /* Set window size back to 1... */
x = clsif(); /* Close file */
if (x < 0) /* Handle failure */
cxseen = 1; /* this way */
if (cxseen || czseen) /* If interrupted */
seof((CHAR *)"D"); /* send special EOF packet */
else /* otherwise */
seof((CHAR *)""); /* regular EOF packet */
BEGIN sseof; /* and enter send-eof state */
}
}
<sseof>Y { /* Got ACK to EOF */
success = (cxseen == 0 && czseen == 0); /* Transfer status... */
if (success && rejection > 0) /* If rejected, succeed if */
if (rejection != '#' && /* reason was date */
rejection != 1 && rejection != '?') /* or name; */
success = 0; /* fail otherwise. */
cxseen = 0; /* This goes back to zero. */
if (success) { /* Only if transfer succeeded... */
if (moving) { /* If MOVE'ing */
tlog(F110," deleting",filnam,0); /* delete the file */
zdelet(filnam);
} else if (snd_move) { /* Or move it */
tlog(F110," moving source to",snd_move,0);
zrename(filnam,snd_move);
} else if (snd_rename) { /* Or rename it */
char *s = snd_rename; /* Renaming string */
#ifndef NOSPL
int y; /* Pass it thru the evaluator */
extern int cmd_quoting; /* for \v(filename) */
if (cmd_quoting) { /* But only if cmd_quoting is on */
y = MAXRP;
s = (char *)srvcmd;
zzstring(snd_rename,&s,&y);
s = (char *)srvcmd;
}
#endif /* NOSPL */
if (s) if (*s) {
if (zrename(filnam,s) > -1)
tlog(F110," renaming source to",s,0);
*s = NUL;
}
}
}
if (gnfile() > 0) { /* Any more files to send? */
if (sfile(xflg)) /* Yes, try to send next file header */
BEGIN ssfile; /* if ok, enter send-file state */
else { /* otherwise */
s = xflg ? "Can't execute command" : (char *)epktmsg;
if (!*s) s = "Can't open file";
errpkt((CHAR *)s); /* send error message */
RESUME; /* and quit */
}
} else { /* No next file */
tsecs = gtimer(); /* get statistics timers */
#ifdef GFTIMER
fptsecs = gftimer();
#endif /* GFTIMER */
seot(); /* send EOT packet */
BEGIN sseot; /* enter send-eot state */
}
}
<sseot>Y { /* Got ACK to EOT */
debug(F101,"sseot justone","",justone);
RESUME; /* All done, just quit */
}
E { /* Got Error packet, in any state */
char *s = "";
window(1); /* Close window */
timint = s_timint; /* Restore original timeout */
if (*epktmsg) /* Message from Error packet */
s = (char *)epktmsg;
if (!*s) { /* If not there then maybe here */
s = (char *)rdatap;
strncpy((char *)epktmsg,(char *)rdatap,PKTMSGLEN);
}
if (!*s) /* Hopefully we'll never see this. */
s = "Unknown error";
success = 0; /* For IF SUCCESS/FAIL. */
debug(F101,"ckcpro.w justone at E pkt","",justone);
x = quiet; quiet = 1; /* Close files silently, */
epktrcvd = 1; /* Prevent messages from clsof() */
clsif(); clsof(1); /* discarding any output file. */
success = 0; /* Transfer failed */
xferstat = success; /* Remember transfer status */
ermsg(s); /* Issue the message (calls screen). */
tstats(); /* Get stats */
quiet = x; /* Restore quiet state */
/*
If we are executing commands from a command file or macro, let the command
file or macro decide whether to exit, based on SET { TAKE, MACRO } ERROR.
*/
if (
#ifndef NOICP
!cmdsrc() &&
#endif /* NOICP */
backgrd && !server)
fatal("Protocol error");
xitsta |= what; /* Save this for doexit(). */
#ifdef CK_TMPDIR
/* If we were cd'd temporarily to another device or directory ... */
if (f_tmpdir) {
int x;
x = zchdir((char *) savdir); /* ... restore previous directory */
f_tmpdir = 0; /* and remember we did it. */
debug(F111,"ckcpro.w E tmpdir restored",savdir,x);
}
#endif /* CK_TMPDIR */
RESUME;
}
q { success = 0; QUIT; } /* Ctrl-C or connection loss. */
. { /* Anything not accounted for above */
errpkt((CHAR *)"Unexpected packet type"); /* Give error message */
window(1);
xitsta |= what; /* Save this for doexit(). */
RESUME; /* and quit */
}
%%
/* P R O T O -- Protocol entry function */
#ifdef CK_SPEED
int f_ctlp = 0; /* Control-character prefix table */
#ifdef COMMENT
short s_ctlp[256];
#endif /* COMMENT */
#endif /* CK_SPEED */
/*
This is simply a wrapper for the real protocol function just below,
that saves any items that might be changed automatically by protocol
negotiations and then restores them upon exit from protocol mode.
*/
VOID
proto() {
extern int b_save, f_save, c_save, ss_save, slostart, reliable, urclear;
#ifdef PIPESEND
extern int pipesend;
#endif /* PIPESEND */
#ifdef OS2
extern int cursorena[], cursor_save, term_io;
extern BYTE vmode;
extern int display_demo;
int term_io_save;
#endif /* OS2 */
#ifdef IKS_OPTION
extern int ttnproto, network, me_iks;
int iks_sent = 0;
#endif /* IKS_OPTION */
int i;
#ifdef OS2
cursor_save = cursorena[vmode];
cursorena[vmode] = 0;
term_io_save = term_io;
term_io = 0;
#endif /* OS2 */
b_save = binary; /* SET FILE TYPE */
f_save = fncnv; /* SET FILE NAMES */
c_save = bctr;
p_save = fnspath;
r_save = recursive;
s_timint = timint;
ss_save = slostart;
#ifdef COMMENT
/* Don't do this because then user can never find out what happened. */
#ifdef CK_SPEED
for (i = 0; i < 256; i++)
s_ctlp[i] = ctlp[i];
f_ctlp = 1;
#endif /* CK_SPEED */
#endif /* COMMENT */
if (reliable)
slostart = 0;
#ifdef IKS_OPTION
if (network && ttnproto == NP_TELNET && me_iks && sstate == 'x') {
tn_siks(0); /* Send Kermit-Server Start */
iks_sent = 1;
}
#endif /* IKS_OPTION */
xxproto(); /* Call the real protocol function */
xferstat = success; /* Remember transfer status */
#ifdef IKS_OPTION
if (iks_sent) tn_siks(1); /* Send Kermit-Server Stop */
#endif /* IKS_OPTION */
#ifdef STREAMING
streaming = 0;
streamok = 0;
#endif /* STREAMING */
#ifdef COMMENT
#ifdef CK_SPEED
for (i = 0; i < 256; i++)
ctlp[i] = s_ctlp[i];
f_ctlp = 0;
#endif /* CK_SPEED */
#endif /* COMMENT */
urclear = 0;
if (!success) {
xitsta |= what;
tlog(F110," failed:",(char *)epktmsg,0);
}
debug(F111,"proto xferstat",epktmsg,xferstat);
slostart = ss_save;
if (s_timint > -1) { /* Because of REMOTE SET */
timint = s_timint;
s_timint = -1;
}
recursive = r_save;
fnspath = p_save;
if (c_save > -1) { /* Because of REMOTE SET */
bctr = c_save;
c_save = -1;
}
fncnv = f_save;
binary = b_save;
#ifdef PIPESEND
pipesend = 0; /* Next time might not be pipesend */
#endif /* PIPESEND */
#ifdef OS2
cursorena[vmode] = cursor_save;
term_io = term_io_save;
display_demo = 1;
#endif /* OS2 */
}
static VOID
xxproto() {
int x;
long lx;
#ifdef CK_XYZ
#ifdef XYZ_INTERNAL
_PROTOTYP( int pxyz, (int) );
#endif /* XYZ_INTERNAL */
#endif /* CK_XYZ */
char xss[2]; /* String representation of sstate */
xss[0] = sstate;
xss[1] = NUL;
s_timint = timint;
debug(F101,"xxproto entry justone","",justone);
success = 0;
if (local && ttchk() < 0) { /* Giving BYE or FIN */
if (bye_active) /* but there is no connection */
return;
if (sstate == 'g' && cmarg) {
if (*cmarg == 'L' || *cmarg == 'F')
return;
}
}
/* Set up the communication line for file transfer. */
if (local && (speed < 0L) && (network == 0)) {
xxscreen(SCR_EM,0,0L,"Sorry, you must 'set speed' first");
return;
}
x = -1;
if (ttopen(ttname,&x,mdmtyp,cdtimo) < 0) {
debug(F111,"failed: proto ttopen local",ttname,local);
xxscreen(SCR_EM,0,0L,"Can't open line");
return;
}
if (x > -1) local = x;
debug(F111,"proto ttopen local",ttname,local);
lx = (local && !network) ? speed : -1;
#ifdef NETCONN
#ifdef CK_SPEED
if (network && ttnproto == NP_TELNET) {
ctlp[255] = ctlp[CR] = 1;
if (parity == 'e' || parity == 'm') ctlp[127] = 1;
if (flow == FLO_XONX) { /* Also watch out for Xon/Xoff */
ctlp[17] = ctlp[19] = 1;
ctlp[17+128] = ctlp[19+128] = 1;
}
}
#endif /* CK_SPEED */
#endif /* NETCONN */
if (ttpkt(lx,flow,parity) < 0) { /* Put line in packet mode, */
xxscreen(SCR_EM,0,0L,"Can't condition line");
return;
}
if (local && !network && carrier != CAR_OFF) {
int x; /* Serial connection */
x = ttgmdm(); /* with carrier checking */
if (x > -1) {
if (!(x & BM_DCD)) {
debug(F101,"proto ttgmdm","",0);
xxscreen(SCR_EM,0,0L,"Carrier required but not detected");
return;
}
}
}
/* Send remote side's "receive" or "server" startup string, if any */
if (local && ckindex((char *)xss,"srgcjhk",0,0,1)) {
char *s = NULL;
extern char * srvstring;
if (sstate == 's') { /* Sending file(s) */
s = binary ? ptab[protocol].h_b_init : ptab[protocol].h_t_init;
} else if (protocol == PROTO_K) { /* Command for server */
s = srvstring;
}
#ifdef CK_SPEED
#ifndef UNPREFIXZERO
if (protocol == PROTO_K) /* Because of C-strings... */
ctlp[0] = 1;
#endif /* UNPREFIXZERO */
#endif /* CK_SPEED */
if (s) if (*s) { /* If we have a command to send... */
char tmpbuf[356];
int stuff = -1, stuff2 = -1, len = 0;
extern int tnlm;
strcpy(tmpbuf,s);
if (sstate == 's') /* Sending file(s) */
sprintf(tmpbuf, s, cmarg2[0] ? cmarg2 : cmarg); /* For XMODEM */
else /* Command for server */
sprintf(tmpbuf, s);
strcat(tmpbuf, "\015");
if (tnlm) /* TERMINAL NEWLINE ON */
stuff = LF; /* Stuff LF */
#ifdef NETCONN
#ifdef TCPSOCKET
/* TELNET NEWLINE MODE */
if (network) {
if (ttnproto == NP_TELNET) {
switch (me_binary ? tn_b_nlm : tn_nlm) {
case TNL_CR:
break;
case TNL_CRNUL:
break;
case TNL_CRLF:
stuff2 = stuff;
stuff = LF;
break;
}
}
#ifdef RLOGCODE
else if (ttnproto == NP_RLOGIN) {
switch (tn_b_nlm) { /* Always BINARY */
case TNL_CR:
break;
case TNL_CRNUL:
stuff2 = stuff;
stuff = NUL;
break;
case TNL_CRLF:
stuff2 = stuff;
stuff = LF;
break;
}
}
#endif /* RLOGCODE */
}
#endif /* TCPSOCKET */
#endif /* NETCONN */
len = strlen(tmpbuf);
if (stuff >= 0) {
tmpbuf[len++] = stuff;
if (stuff2 >= 0)
tmpbuf[len++] = stuff2;
tmpbuf[len] = NUL;
}
ttol((CHAR *)tmpbuf,len);
if (protocol == PROTO_K) /* Give remote Kermit time to start */
msleep(400);
}
}
#ifdef CK_XYZ
if (protocol != PROTO_K) { /* Non-Kermit protocol selected */
char tmpbuf[356];
char * s = "";
#ifdef XYZ_INTERNAL /* Internal */
success = !pxyz(sstate);
#else
#ifdef CK_REDIR /* External */
switch (sstate) {
case 's': /* 'Tis better to SEND... */
s = binary ? ptab[protocol].p_b_scmd : ptab[protocol].p_t_scmd;
break;
case 'v': /* ... than RECEIVE */
s = binary ? ptab[protocol].p_b_rcmd : ptab[protocol].p_t_rcmd;
break;
}
if (!s) s = "";
if (*s) {
sprintf(tmpbuf,s,(sstate == 's') ? fspec : cmarg2);
debug(F110,"ckcpro ttruncmd",tmpbuf,0);
success = ttruncmd(tmpbuf);
} else {
printf("?Sorry, no external protocol defined for %s\r\n",
ptab[protocol].p_name
);
}
#else
printf(
"Sorry, only Kermit protocol is supported in this version of Kermit\n"
);
#endif /* CK_REDIR */
#endif /* XYZ_INTERNAL */
return;
}
#endif /* CK_XYZ */
#ifdef NTSIGX
conraw();
connoi();
#else
if (!local)
connoi(); /* No console interrupts if remote */
#endif /* NTSIG */
if (sstate == 'x') { /* If entering server mode, */
server = 1; /* set flag, */
debug(F101,"server backgrd","",backgrd);
debug(F101,"server quiet","",quiet);
debug(F100,"SHOULD NOT SEE THIS IF IN BACKGROUND!","",0);
if (!local) { /* and issue appropriate message. */
if (!quiet && !backgrd) {
conoll(srvtxt);
conoll("KERMIT READY TO SERVE...");
}
} else {
conol("Entering server mode on ");
conoll(ttname);
conoll("Type Ctrl-C to quit.");
if (srvdis) intmsg(-1L);
#ifdef TCPSOCKET
#ifndef NOLISTEN
if (network && tcpsrfd > 0)
ttol((CHAR *)"KERMIT READY TO SERVE...\015\012",26);
#endif /* NOLISTEN */
#endif /* TCPSOCKET */
}
} else
server = 0;
#ifdef VMS
if (!quiet && !backgrd) /* So message doesn't overwrite prompt */
conoll("");
if (local) conres(); /* So Ctrl-C will work */
#endif /* VMS */
/*
If in remote mode, not shushed, not in background, and at top command level,
issue a helpful message telling what to do...
*/
if (!local && !quiet && !backgrd) {
if (sstate == 'v') {
conoll("Return to your local Kermit and give a SEND command.");
conoll("");
conoll("KERMIT READY TO RECEIVE...");
} else if (sstate == 's') {
conoll("Return to your local Kermit and give a RECEIVE command.");
conoll("");
conoll("KERMIT READY TO SEND...");
} else if ( sstate == 'g' || sstate == 'r' || sstate == 'h' ||
sstate == 'j' || sstate == 'c' ) {
conoll("Return to your local Kermit and give a SERVER command.");
conoll("");
conoll((sstate == 'r' || sstate == 'j' || sstate == 'h') ?
"KERMIT READY TO GET..." :
"KERMIT READY TO SEND SERVER COMMAND...");
}
}
#ifdef COMMENT
if (!local) sleep(1);
#endif /* COMMENT */
/*
The 'wart()' function is generated by the wart program. It gets a
character from the input() routine and then based on that character and
the current state, selects the appropriate action, according to the state
table above, which is transformed by the wart program into a big case
statement. The function is active for one transaction.
*/
rtimer(); /* Reset elapsed-time timer */
#ifdef GFTIMER
rftimer();
#endif /* GFTIMER */
resetc(); /* & other per-transaction counters. */
debug(F101,"proto calling wart, justone","",justone);
wart(); /* Enter the state table switcher. */
/*
Note: the following is necessary in case we have just done a remote-mode
file transfer, in which case the controlling terminal modes have been
changed by ttpkt(). In particular, special characters like Ctrl-C and
Ctrl-\ might have been turned off (see ttpkt). So this call to ttres() is
essential.
*/
#ifdef OS2
ttres(); /* Reset the communication device */
#else
if (!local) {
msleep(500);
ttres(); /* Reset the communication device */
}
#endif /* OS2 */
xxscreen(SCR_TC,0,0L,""); /* Transaction complete */
x = quiet;
quiet=1;
clsif(); /* Failsafe in case we missed */
clsof(1); /* a case in the state machine. */
quiet = x;
if (server) { /* Back from packet protocol. */
if (!quiet && !backgrd) { /* Give appropriate message */
conoll("");
conoll("C-Kermit server done");
}
server = 0; /* Not a server any more */
}
}
static int
sgetinit(reget) int reget; { /* Server end of GET command */
#ifdef PIPESEND
extern int usepipes, pipesend;
#endif /* PIPESEND */
if (!ENABLED(en_get)) { /* Only if not disabled! */
errpkt((CHAR *)"GET disabled");
return(-1);
} else { /* OK to go ahead. */
#ifdef WHATAMI
debug(F101,"sgetinit whatru","",whatru);
if (whatru & WMI_FLAG) { /* Did we get WHATAMI info? */
debug(F101,"sgetinit binary (1)","",binary);
#ifdef VMS
if (binary != XYFT_I && binary != XYFT_L)
#else
#ifdef OS2
if (binary != XYFT_L)
#endif /* OS2 */
#endif /* VMS */
binary = (whatru & WMI_FMODE) ? /* Yes, set transfer mode */
XYFT_B : XYFT_T; /* automatically */
debug(F101,"sgetinit binary (2)","",binary);
fncnv = (whatru & WMI_FNAME) ? 1 : 0; /* And name conversion */
}
#endif /* WHATAMI */
srvptr = srvcmd; /* Point to server command buffer */
decode(rdatap,putsrv,0); /* Decode the GET command into it */
/* Accept multiple filespecs */
cmarg2 = ""; /* Don't use cmarg2 */
cmarg = ""; /* Don't use cmarg */
#ifndef NOMSEND /* New way. */
{
int n = 0; /* But first check for quoted name */
if ((n = strlen((char *)srvcmd)) > 1) {
/* Note: this does not allow for multiple quoted names */
if ((srvcmd[0] == '{' && srvcmd[n-1] == '}') ||
(srvcmd[0] == '"' && srvcmd[n-1] == '"')) {
int i;
srvcmd[n-1] = '\0';
debug(F111,"sgetinit unquoting srvcmd",srvcmd,n);
for (i = 0; i < n-1; i++) /* Move over */
srvcmd[i] = srvcmd[i+1];
} else
n = 0;
}
if (n == 0) {
nfils = fnparse((char *)srvcmd); /* Use cmlist instead */
} else {
nfils = 0 - zxpand((char *)srvcmd);
cmarg = (char *)srvcmd;
}
}
#endif /* NOMSEND */
#ifdef PIPESEND
debug(F111,"sgetinit",srvcmd,usepipes);
if (usepipes && ENABLED(en_hos) && *srvcmd == '!') {
cmarg = (char *)srvcmd + 1; /* Point past the bang */
*srvcmd = NUL;
nfils = -1;
pipesend = 1;
debug(F111,"sgetinit pipesend",cmarg,pipesend);
}
#endif /* PIPESEND */
#ifdef NOMSEND
#ifdef PIPESEND
if (!pipesend)
#endif /* PIPESEND */
{
nfils = 0 - zxpand((char *)srvcmd);
cmarg = (char *)srvcmd;
}
#endif /* NOMSEND */
nakstate = 0; /* Now I'm the sender! */
if (reget) sendmode = SM_RESEND;
if (sinit() > 0) { /* Send Send-Init */
#ifdef STREAMING
if (!streaming)
#endif /* STREAMING */
timint = chktimo(rtimo,timef); /* Switch to per-packet timer */
return(0); /* If successful, switch state */
} else return(-1); /* Else back to server command wait */
}
}
|