1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624
|
/* protz.c Version 1.5, 92Apr24 */
/* Modified by Ian Lance Taylor for Taylor UUCP 1.04 92Aug4. */
/*
* Doug Evans, dje@sspiff.UUCP or dje@ersys.edmonton.ab.ca
*
* This file provides the Zmodem protocol (by Chuck Forsberg) for
* Ian Taylor's UUCP package.
*
* It was originally developed to establish a uucp link between myself and my
* employer: Ivation Datasystems, Inc. of Ottawa.
*
* My thanks to Ivation for letting me release this to the public. Given that
* Zmodem is in the public domain, no additional copyrights have been added.
*
*****************************************************************************
*
* It's been difficult fitting Zmodem into the UUCP world. I have been guided
* mostly by trying to plug it into Taylor UUCP. Where "the Zmodem way of doing
* things" conflicted with "the UUCP way of doing things", I have err'd on the
* side of UUCP. At the end of it all, I have achieved something that will plug
* into Taylor UUCP very easily, but some might argue that I have corrupted Z
* too much. At any rate, compatibility with sz/rz was sacrificed to achieve a
* clean UUCP protocol. Given that, I took the opportunity to start from
* scratch when defining protocol constants (EG: ZBIN).
*
* 1) I wasn't quite sure how to enhance Zmodem to handle send+receive in one
* session, so I added a 'g' protocol like initialization sequence. This
* also gets this stuff out of the way, in case we ever try to support
* full-duplex.
*
* Caller Callee
* ------ ------
* ZINIT --> <-- ZINIT
* ZDATA (ZCRCF) --> <-- ZDATA (ZCRCF)
* ZACK --> <-- ZACK
* ZINITEND --> <-- ZINITEND
*
* ZINIT is a combination of ZRINIT and ZSINIT and is intended to exchange
* simple protocol information (flags) and the protocol version number.
* ZDATA is intended to include window size information as well as the
* "Myattn" string (although at the moment it doesn't contain anything).
* ZDATA may contain at most 1k bytes of data and is sent out as one ZCRCF
* packet. Two ack's (ZACK + ZINITEND) are needed to ensure both sides have
* received ZDATA.
*
* 2) I've hardcoded several protocol parameters, like 32 bit CRC's for data.
* Others are not supported (we don't need them).
*
* 3) ZHEX headers use 32 bit CRC's.
*
* 4) Zmodem sends the ZFILE message "in one chunk". If there are errors, the
* entire string is resent. I have continued this practice. All UUCP
* commands are sent "in one chunk". This can be changed down the road if
* necessary.
*
* 5) The ZEOF message has been replaced with a new ZCRCx value: ZCRCF. ZCRCF
* is identical to ZCRCW except that it indicates the end of the message.
* The protocol here is *not* a file transfer protocol. It is an end to end
* transport protocol (that preserves message boundaries).
*
* 6) Zmodem handles restarting a file transfer, but as best as I can tell UUCP
* does not. At least Taylor UUCP doesn't. And if UUCP does start handling
* file restart, can it be plugged into the existing Zmodem way with zero
* changes? Beats me. Therefore I have removed this part of the code. One
* can always put it back in if and when UUCP handles it. Ditto for other
* pieces of removed code: there's no point in overly complicating this code
* when supporting all the bells and whistles requires enhancements to UUCP
* itself.
*
* *** It is easier to put code back in in an upward compatible manner ***
* *** than it is to correct for misunderstood code or poorly merged ***
* *** (Zmodem vs UUCP) code. ***
*
* 7) For the character in the initial "protocol selection" sequence, I have
* chosen 'a'. I'm told 'z' is already in use for something that isn't
* Zmodem. It's entirely reasonable to believe that if Zmodem ever becomes a
* standard UUCP protocol, this won't be it (so I'll leave z/Z for them).
* Publicly, this is the 'a' protocol. Internally, it is refered to as 'z'.
* A little confusing, I know. Maybe in time I'll refer to it internally as
* 'a', or maybe in time this will be *the* 'z' protocol.
*
* 8) Since we are writing a transport protocol, which isn't supposed to know
* anything about what is being transferred or where it is coming from, the
* header data value has changed meaning. It no longer means "file position"
* but instead means "window position". It is a running counter of the bytes
* transferred. Each "message" begins on a 1k boundary so the count isn't a
* precise byte count. The counter wraps every 4 gigabytes, although this
* wrapping isn't supported yet.
*
* FIXME: At present the max data transferred per session is 4 gigabytes.
*
****************************************************************************
*
* A typical message sequence is (master sending file to slave):
*
* Master Slave
* ------ -----
* ZDATA (S, ZCRCF) -->
* <-- ZACK
* <-- ZDATA (SY, ZCRCF)
* ZACK -->
* ZDATA -->
* ... <-- ZACK/ZRPOS
* ZDATA (ZCRCF) -->
* <-- ZACK
* <-- ZDATA (CY, ZCRCF)
* ZACK -->
*
* A typical message sequence is (master receiving file from slave):
*
* Master Slave
* ------ -----
* ZDATA (R, ZCRCF) -->
* <-- ZACK
* <-- ZDATA (RY, ZCRCF)
* ZACK -->
* <-- ZDATA
* ZACK/ZRPOS ... -->
* <-- ZDATA (ZCRCF)
* ZACK -->
* ZDATA (CY, ZCRCF) -->
* <-- ZACK
*
*****************************************************************************
*
* Notes:
* 1) For future bidirectional concerns, keep packet types "unidirectional".
* Sender always uses: ZDATA, ZNAK
* Receiver always uses: ZRPOS, ZACK
* There is no intersection.
*
* I'm not sure if this is necessary or even useful, but it seems to be.
*
* 2) I use to store the byte count / 32 in the data header. This left 5 bits
* unused for future concerns. I removed this because of the following
* situation when sending a file:
*
* ZDATA (ZCRCG, xx bytes) - received ok
* ZDATA (ZCRCF, 0 bytes) - corrupted
*
* At this point the receiver would like to send back a ZRPOS with a value
* of the size of the file. However, it can't because the value is divided
* by 32, and it would have to round up to the next multiple of 32. This
* seemed a little ugly, so I went with using the entire header to store
* the byte count.
*
*****************************************************************************
*
* Source version:
*
* 1.1,2,3
* Protocol version 0
* Early attempts, completely rewritten later.
*
* 1.4 Protocol version 1
* Beta test sent to Ian for analysis 92Apr18.
*
* 1.5 Protocol version 1
* Released 92Apr24.
*
*****************************************************************************
*
* Protocol version:
*
* A version number is exchanged in the ZINIT message, so it is possible to
* correct or enhance the protocol, without breaking existing versions.
* The purpose of this section is to document these versions as they come out.
* Remember, this is the protocol version, not the source version.
*
* 0 Initial version.
* Zmodem controlled file transfer. This was more of a "plug Z
* into UUCP as is" port.
*
* 1 Complete rewrite.
* Made Z more of a transport protocol. UUCP now controls transfer and Z
* is on the same footing as the other UUCP protocols.
* Theoretically, there will be little pain when UUCP goes bidirectional.
*/
#include "uucp.h"
#if USE_RCS_ID
const char protz_rcsid[] = "$Id: protz.c,v 1.11 2002/02/08 10:35:52 ian Rel $";
#endif
#include <errno.h>
#include "uudefs.h"
#include "uuconf.h"
#include "conn.h"
#include "trans.h"
#include "system.h"
#include "prot.h"
#define ZPROTOCOL_VERSION 1
/*
* Control message characters ...
*/
#define ZPAD '*' /* Padding character begins frames */
#define ZDLE 030 /* Ctrl-X Zmodem escape - `ala BISYNC DLE */
#define ZBIN 'A' /* Binary frame indicator */
#define ZHEX 'B' /* HEX frame indicator */
/*
* Frame types (see array "frametypes" in zm.c) ...
*
* Note that the numbers here have been reorganized, as we don't support
* all of them (nor do we need to).
*
* WARNING: The init sequence assumes ZINIT < ZDATA < ZACK < ZINITEND.
*/
#define ZINIT 0 /* Init (contains protocol version, flags) */
#define ZDATA 1 /* Data packet(s) follow */
#define ZRPOS 2 /* Resume data trans at this position */
#define ZACK 3 /* ACK to above */
#define ZNAK 4 /* Last packet was garbled */
#define Zreserved 5 /* reserved (for future concerns) */
#define ZINITEND 6 /* end of init sequence */
#define ZFIN 7 /* Finish session */
/*
* ZDLE sequences ...
*
* Note addition of ZCRCF: "end of message".
*/
#define ZCRCE 'h' /* CRC next, frame ends, header packet follows */
#define ZCRCG 'i' /* CRC next, frame continues nonstop */
#define ZCRCQ 'j' /* CRC next, frame continues, ZACK expected */
#define ZCRCW 'k' /* CRC next, ZACK expected, end of frame */
#define ZCRCF 'l' /* CRC next, ZACK expected, end of message */
#define ZRUB0 'm' /* Translate to rubout 0177 */
#define ZRUB1 'n' /* Translate to rubout 0377 */
/*
* zdlread return values (internal) ...
* Other values are ZM_ERROR, ZM_TIMEOUT, ZM_RCDO.
*/
#define GOTOR 0400
#define GOTCRCE (ZCRCE | GOTOR) /* ZDLE-ZCRCE received */
#define GOTCRCG (ZCRCG | GOTOR) /* ZDLE-ZCRCG received */
#define GOTCRCQ (ZCRCQ | GOTOR) /* ZDLE-ZCRCQ received */
#define GOTCRCW (ZCRCW | GOTOR) /* ZDLE-ZCRCW received */
#define GOTCRCF (ZCRCF | GOTOR) /* ZDLE-ZCRCF received */
/*
* Byte positions within header array ...
*/
#define ZF0 3 /* First flags byte */
#define ZF1 2
#define ZF2 1
#define ZF3 0
#define ZP0 0 /* Low order 8 bits of position */
#define ZP1 1
#define ZP2 2
#define ZP3 3 /* High order 8 bits of position */
/*
* Bit Masks for ZRQINIT flags byte ZF0 ...
*/
#define TX_ESCCTL 1 /* Tx will escape control chars */
/*
* Possible errors when running ZMODEM ...
*/
#define ZM_ERROR (-1) /* crc error, etc. */
#define ZM_TIMEOUT (-2)
#define ZM_RCDO (-3) /* Carrier Lost */
/*
* ASCII characters ...
*/
#define LF 012
#define CR 015
#define XON 021
#define XOFF 023
#define XON_WAIT 10 /* seconds */
/*
* Packet sizes ...
*
* FIXME: CPACKETSIZE is hardcoded in a lot of places.
* It's not clear to me whether changing it's value would be a
* "good thing" or not. But of course that doesn't excuse the hardcoding.
*/
#define CPACKETSIZE 1024 /* max packet size (data only) */
#define CFRAMELEN 12 /* header size */
#define CSUFFIXLEN 10 /* suffix at end of data packets */
#define CEXCHANGE_INIT_RETRIES 4
/* The header CRC value. */
#if ANSI_C
#define IHDRCRC 0xDEBB20E3UL
#else
#define IHDRCRC ((unsigned long) 0xDEBB20E3L)
#endif
/* packet buffer size */
#define CPACKBUFSIZE (CFRAMELEN + 2 * CPACKETSIZE + CSUFFIXLEN + 42 /*slop*/)
/*
* Data types ...
*/
typedef unsigned char achdrval_t[4];
typedef unsigned long hdrval_t;
typedef unsigned long winpos_t;
/*
* Configurable parms ...
*
* FIXME: <cZrx_buf_len> isn't used yet. It may not be needed.
*/
#define CTIMEOUT 10
#define CRETRIES 10
#define CSTARTUP_RETRIES 4
#define CGARBAGE 2400
#define CSEND_WINDOW 16384
#define FESCAPE_CONTROL FALSE
static int cZtimeout = CTIMEOUT; /* (seconds) */
static int cZretries = CRETRIES;
static int cZstartup_retries = CSTARTUP_RETRIES;
static int cZmax_garbage = CGARBAGE; /* max garbage before header */
static int cZtx_window = CSEND_WINDOW; /* our transmission window */
static int cZrx_buf_len = 0; /* our reception buffer size */
static boolean fZesc_ctl = FESCAPE_CONTROL; /* escape control chars */
struct uuconf_cmdtab asZproto_params[] =
{
{"timeout", UUCONF_CMDTABTYPE_INT, (pointer) & cZtimeout, NULL},
{"retries", UUCONF_CMDTABTYPE_INT, (pointer) & cZretries, NULL},
{"startup-retries", UUCONF_CMDTABTYPE_INT,
(pointer) & cZstartup_retries, NULL},
{"garbage", UUCONF_CMDTABTYPE_INT, (pointer) & cZmax_garbage, NULL},
{"send-window", UUCONF_CMDTABTYPE_INT, (pointer) & cZtx_window, NULL},
{"escape-control", UUCONF_CMDTABTYPE_BOOLEAN, (pointer) & fZesc_ctl,
NULL},
{NULL, 0, NULL, NULL}
};
/*
* Variables for statistic gathering ...
*
* We use <wpZtxpos, wpZrxbytes> to record the number of "packets"
* sent/received. Packets is in double quotes because some of them aren't full.
*/
static unsigned long cZheaders_sent;
static unsigned long cZheaders_received;
static unsigned long cZbytes_resent;
static unsigned long cZtimeouts;
static unsigned long cZerrors;
/*
* Data buffers ...
*/
static char *zZtx_buf; /* transmit buffer */
static char *zZtx_packet_buf; /* raw outgoing packet data */
static char *zZrx_packet_buf; /* raw incoming packet data */
/*
* Transmitter state variables ...
*/
static unsigned cZblklen; /* data length in sent/received packets */
static unsigned cZtxwspac; /* spacing between ZCRCQ requests */
/*static unsigned cZblklen_override;*//* override value for <cZblklen> */
static unsigned cZtxwcnt; /* counter used to space ack requests */
static unsigned cZrxwcnt; /* counter used to watch receiver's buf size */
static winpos_t wpZtxstart; /* <wpZtxpos> when message started */
static winpos_t wpZtxpos; /* transmitter position */
static winpos_t wpZlastsync; /* last offset to which we got a ZRPOS */
static winpos_t wpZlrxpos; /* receiver's last reported offset */
static winpos_t wpZrxpos; /* receiver file position */
static int iZlast_tx_data_packet; /* type of last ZDATA packet (ZCRCx) */
static int iZjunk_count; /* amount of garbage characters received */
static int iZtleft; /* for dynamic packet resizing */
static int iZbeenhereb4; /* times we've been ZRPOS'd to same place */
/*
* Receiver state variables ...
*/
static winpos_t wpZrxbytes; /* receiver byte count */
static int iZlast_rx_data_packet; /* last successfully received ZCRCx packet */
/*
* Misc. globals ...
*/
static char xon = XON;
#ifdef DJE_TESTING
int uucptest = -1;
int uucptest2;
int uucptestseed;
#endif
/*
* Kludge!!!
* See fzfinish_tx(). Basically the next two globals are used to record the
* fact that we got a ZDATA, but aren't quite ready to process it.
*/
static int iZpkt_rcvd_kludge; /* -1 if not valid */
static hdrval_t hvZpkt_hdrval_kludge;
/*
* Packet types ...
*/
static const char *azZframe_types[] = {
"Carrier Lost", /* -3 */
"Timeout", /* -2 */
"Error", /* -1 */
#define FTOFFSET 3
"ZINIT",
"ZDATA",
"ZRPOS",
"ZACK",
"ZNAK",
"Zreserved",
"ZINITEND",
"ZFIN",
"UNKNOWN!!!"
};
#define FTNUMBER (sizeof(azZframe_types) / sizeof(char *))
#ifndef min
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif
#define ZZHEADER_NAME(itype) \
azZframe_types[min((size_t) ((itype) + FTOFFSET), FTNUMBER - 1)]
/*
* Local functions ...
*/
static boolean fzsend_data P((struct sdaemon *qdaemon, char *zdata,
size_t cdata, boolean fendofmessage));
static boolean fzprocess P((struct sdaemon *qdaemon));
static boolean fzstart_proto P((struct sdaemon *qdaemon));
static int izexchange_init P((struct sdaemon *qdaemon, int send_type,
achdrval_t send_val, achdrval_t recv_val));
static boolean fzshutdown_proto P((struct sdaemon *qdaemon));
static boolean fzstart_tx P((void));
static boolean fzfinish_tx P((struct sdaemon *qdaemon, long *plredo));
static boolean fzstart_rx P((void));
static boolean fzfinish_rx P((struct sdaemon *qdaemon));
static boolean fzsend_hdr P((struct sdaemon *qdaemon, int ipkttype,
int ihdrtype, hdrval_t hdrval,
boolean fcheckreceive));
static boolean fzsend_data_packet P((struct sdaemon *qdaemon, char *zdata,
size_t cdata, int frameend,
boolean fcheckreceive));
static int czbuild_header P((char *zresult, int ipkttype, int ihdrtype,
hdrval_t hdrval));
static int czbuild_data_packet P((char *zresult, const char *zdata,
size_t cdata, int frameend));
/*
* The rest of the functions do not follow Ian's naming style. I have left
* the names the same as the original zm source. Over time, they may change.
*/
static int izrecv_hdr P((struct sdaemon *qdaemon, achdrval_t hdr));
static int zrbhdr32 P((struct sdaemon *qdaemon, achdrval_t hdr));
static int zrhhdr P((struct sdaemon *qdaemon, achdrval_t hdr));
static int zrdat32 P((struct sdaemon *qdaemon, char *buf, int length,
int *iprxcount));
static int getinsync P((struct sdaemon *qdaemon, boolean flag));
static char *zputhex P((char *p, int ch));
static char *zputchar P((char *p, int ch));
static int zgethex P((struct sdaemon *qdaemon));
static int zdlread P((struct sdaemon *qdaemon));
static int noxrd7 P((struct sdaemon *qdaemon));
static int realreadchar P((struct sdaemon *qdaemon, int timeout));
static boolean fzreceive_ready P((void));
static void stohdr P((hdrval_t pos, achdrval_t hdr));
static hdrval_t rclhdr P((achdrval_t hdr));
static hdrval_t hvzencode_data_hdr P((winpos_t cbytes));
static void zdecode_data_hdr P((hdrval_t hdrval, winpos_t *pcbytes));
static winpos_t lzupdate_rxpos P((achdrval_t rx_hdr, winpos_t rxpos,
winpos_t lrxpos, winpos_t txpos));
/*
* This macro replaces readchar() because it achieves a noticable speed up. The
* readchar() function has been renamed realreadchar(). Thanks to Ian for
* running this stuff through a profiler to find this out. Ian suggests further
* speed ups may be obtained by doing a similar thing in zrdat32().
*/
/* Assign the next character to b. */
#define READCHAR(qdaemon, b, i) \
(iPrecstart != iPrecend \
? ((b) = BUCHAR (abPrecbuf[iPrecstart]), \
iPrecstart = (iPrecstart + 1) % CRECBUFLEN) \
: ((b) = realreadchar ((qdaemon), (i))))
/************************************************************************/
/*
* Start the protocol ...
*/
boolean
fzstart(qdaemon, pzlog)
struct sdaemon *qdaemon;
char **pzlog;
{
*pzlog = zbufalc (sizeof "protocol 'a' starting: , , , , , " + 100);
sprintf (*pzlog, "protocol 'a' starting: %d, %d, %d, %d, %d, %d",
cZtimeout, cZretries, cZstartup_retries,
cZmax_garbage, cZtx_window, fZesc_ctl);
if (! fconn_set (qdaemon->qconn, PARITYSETTING_NONE,
STRIPSETTING_EIGHTBITS, XONXOFF_OFF))
return FALSE;
/*
* For now, we place tight restrictions on the size of the transmit
* window. This might be relaxed in the future. If it is relaxed,
* some of these tests will stay, some will go. That is why it is
* coded like it is.
*/
if (cZtx_window % 1024 != 0 ||
cZtx_window < 4096 || cZtx_window > 65536 ||
65536 % cZtx_window != 0
) {
ulog (LOG_ERROR,
"fzstart: cZtx_window not one of 4096, 8192, 16384, 32768, 65536");
return FALSE;
}
zZtx_buf = (char *) xmalloc (CPACKETSIZE);
zZtx_packet_buf = (char *) xmalloc (CPACKBUFSIZE);
zZrx_packet_buf = (char *) xmalloc (CPACKBUFSIZE);
iZlast_tx_data_packet = -1;
iZlast_rx_data_packet = -1;
wpZtxpos = wpZlrxpos = wpZrxpos = wpZrxbytes = 0;
cZtxwspac = cZtx_window / 4;
cZheaders_sent = cZheaders_received = cZbytes_resent = 0;
cZtimeouts = cZerrors = 0;
iZpkt_rcvd_kludge = -1;
#if 0
/*
* We ensure <cZtx_window> is at least 4k, so the following is
* unnecessary. It can be put back in later if needed.
*/
if (cZblklen_override > cZtxwspac
|| (!cZblklen_override && cZtxwspac < 1024))
cZblklen_override = cZtxwspac;
#endif
#ifdef DJE_TESTING
{
extern int uucptest,uucptest2,uucptestseed;
FILE *f;
if (uucptest == -1) {
f = fopen ("/usr/local/src/bin/uucp/uucptest", "r");
if (f != NULL) {
fscanf (f, "%d %d %d",
&uucptestseed, &uucptest, &uucptest2);
fclose (f);
}
srand (uucptestseed);
}
}
#endif
/*
* Fire up the protocol (exchange init messages) ...
*/
if (!fzstart_proto (qdaemon))
return FALSE;
return TRUE;
}
/*
* Stop the protocol ...
*/
boolean
fzshutdown(qdaemon)
struct sdaemon *qdaemon;
{
(void) fzshutdown_proto (qdaemon);
xfree ((pointer) zZtx_buf);
xfree ((pointer) zZtx_packet_buf);
xfree ((pointer) zZrx_packet_buf);
zZtx_buf = NULL;
zZtx_packet_buf = NULL;
zZrx_packet_buf = NULL;
/*
* Print some informative statistics ...
*
* I use the word "messages" here instead of "headers" because the
* latter is jargonese.
*/
ulog (LOG_NORMAL,
"Protocol 'a' messages: sent %lu, received %lu",
cZheaders_sent, cZheaders_received);
ulog (LOG_NORMAL,
"Protocol 'a' packets: sent %lu, received %lu",
wpZtxpos / 1024, wpZrxbytes / 1024);
if (cZbytes_resent != 0 || cZtimeouts != 0 || cZerrors != 0)
ulog (LOG_NORMAL,
"Protocol 'a' errors: bytes resent %lu, timeouts %lu, errors %lu",
cZbytes_resent, cZtimeouts, cZerrors);
/*
* Reset all the parameters to their default values, so that the
* protocol parameters used for this connection do not affect the
* next one.
*/
cZtimeout = CTIMEOUT;
cZretries = CRETRIES;
cZstartup_retries = CSTARTUP_RETRIES;
cZmax_garbage = CGARBAGE;
cZtx_window = CSEND_WINDOW;
fZesc_ctl = FESCAPE_CONTROL;
cZheaders_sent = cZheaders_received = cZbytes_resent = 0;
cZtimeouts = cZerrors = 0;
return TRUE;
}
/*
* Send a command string ...
* We send everything up to and including the null byte.
*
* We assume the command will fit in the outgoing data buffer.
* FIXME: A valid assumption?
*/
/*ARGSUSED*/
boolean
fzsendcmd(qdaemon, z, ilocal, iremote)
struct sdaemon *qdaemon;
const char *z;
int ilocal ATTRIBUTE_UNUSED;
int iremote ATTRIBUTE_UNUSED;
{
size_t n,clen;
long lredo;
char *zbuf;
clen = strlen (z) + 1;
DEBUG_MESSAGE1 (DEBUG_PROTO, "fzsendcmd: sending command %s", z);
if (!fzstart_tx ()) /* must be called before zzgetspace() */
return FALSE;
if ((zbuf = zzgetspace (qdaemon, &n)) == NULL)
return FALSE;
#if DEBUG > 0
if (clen > n)
ulog (LOG_FATAL, "fzsendcmd: clen > n");
#endif
strcpy (zbuf, z);
/*
* Send it out ...
*/
do {
if (!fzsend_data (qdaemon, zbuf, clen, TRUE))
return FALSE;
if (!fzfinish_tx (qdaemon, &lredo))
return FALSE;
} while (lredo >= 0);
return fzprocess (qdaemon);
}
/*
* Allocate a packet to send out ...
*
* Note that 'z' has dynamic packet resizing and that <cZblklen> will range
* from 32 to 1024, in multiples of 2.
*/
/*ARGSUSED*/
char *
zzgetspace(qdaemon, pclen)
struct sdaemon *qdaemon ATTRIBUTE_UNUSED;
size_t *pclen;
{
*pclen = cZblklen;
return zZtx_buf;
}
/*
* Send a block of data ...
*
* If (cdata == 0) then the end of the file has been reached.
*/
/*ARGSUSED*/
boolean
fzsenddata(qdaemon, zdata, cdata, ilocal, iremote, ipos)
struct sdaemon *qdaemon;
char *zdata;
size_t cdata;
int ilocal ATTRIBUTE_UNUSED;
int iremote ATTRIBUTE_UNUSED;
long ipos ATTRIBUTE_UNUSED;
{
DEBUG_MESSAGE1 (DEBUG_PROTO, "fzsenddata: %d bytes", cdata);
if (! fzsend_data (qdaemon, zdata, cdata, cdata == 0))
return FALSE;
return fzprocess (qdaemon);
}
/*
* Send a block of data (command or file) ...
*/
/* This should buffer the data internally. Until it does, it needs to
be able to reset the file position when it is called. This is
really ugly. */
extern struct stransfer *qTsend;
static boolean
fzsend_data(qdaemon, zdata, cdata, fendofmessage)
struct sdaemon *qdaemon;
char *zdata;
size_t cdata;
boolean fendofmessage;
{
size_t n;
if (iZlast_tx_data_packet == -1 || iZlast_tx_data_packet == ZCRCW) {
cZtxwcnt = cZrxwcnt = 0;
iZjunk_count = 0;
if (!fzsend_hdr (qdaemon, ZBIN, ZDATA,
hvzencode_data_hdr (wpZtxpos), TRUE))
return FALSE;
}
n = cdata;
if (fendofmessage)
iZlast_tx_data_packet = ZCRCF;
else if (iZjunk_count > 3)
iZlast_tx_data_packet = ZCRCW;
else if (wpZtxpos == wpZlastsync)
iZlast_tx_data_packet = ZCRCW;
else if (cZrx_buf_len && (cZrxwcnt += n) >= (size_t) cZrx_buf_len)
iZlast_tx_data_packet = ZCRCW;
else if ((cZtxwcnt += n) >= cZtxwspac) {
iZlast_tx_data_packet = ZCRCQ;
cZtxwcnt = 0;
} else
iZlast_tx_data_packet = ZCRCG;
if (++iZtleft > 3) {
iZtleft = 0;
if (cZblklen < 1024)
cZblklen *= 2;
#if 0 /* <cZblklen_override> is currently unnecessary */
if (cZblklen_override && cZblklen > cZblklen_override)
cZblklen = cZblklen_override;
#endif
if (cZblklen > 1024)
cZblklen = 1024;
if (cZrx_buf_len && cZblklen > (size_t) cZrx_buf_len)
cZblklen = cZrx_buf_len;
}
#if DEBUG > 1
if (FDEBUGGING(DEBUG_PROTO)) {
const char *type;
switch (iZlast_tx_data_packet) {
case ZCRCW: type = "ZCRCW"; break;
case ZCRCG: type = "ZCRCG"; break;
case ZCRCQ: type = "ZCRCQ"; break;
case ZCRCE: type = "ZCRCE"; break;
case ZCRCF: type = "ZCRCF"; break;
default : type = "UNKNOWN!!!"; break;
}
DEBUG_MESSAGE3 (DEBUG_PROTO,
"fzsend_data: %s, pos 0x%lx, %d bytes",
type, wpZtxpos, n);
}
#endif
if (!fzsend_data_packet (qdaemon, zdata, n, iZlast_tx_data_packet,
TRUE))
return FALSE;
wpZtxpos += n;
if (iZlast_tx_data_packet == ZCRCW) {
/*
* FIXME: Ideally this would be done in fzprocess. However, it
* is only called if there is data pending which there
* may not be yet. I could have patched fploop() a bit but
* for now, I've done it like this.
*/
switch (getinsync (qdaemon, FALSE)) {
case ZACK:
break;
case ZRPOS:
if (qTsend == NULL
|| ! ffileisopen (qTsend->e)) {
ulog (LOG_ERROR, "Can't reset non-file");
return FALSE;
}
iZlast_tx_data_packet = -1; /* trigger ZDATA */
DEBUG_MESSAGE1 (DEBUG_PROTO,
"fzsend_data: Seeking to %ld",
(long) (wpZrxpos - wpZtxstart));
if (!ffileseek (qTsend->e, wpZrxpos - wpZtxstart)) {
ulog (LOG_ERROR, "seek: %s", strerror (errno));
return FALSE;
}
break;
default:
return FALSE;
}
return TRUE;
}
/*
* If we've reached the maximum transmit window size, let the
* receiver catch up ...
*
* I use (cZtx_window - 2048) to play it safe.
*/
while (wpZtxpos - wpZlrxpos >= (size_t) cZtx_window - 2048) {
if (iZlast_tx_data_packet != ZCRCQ) {
if (!fzsend_data_packet (qdaemon, zdata, (size_t) 0,
iZlast_tx_data_packet = ZCRCQ,
TRUE))
return FALSE;
}
/*
* FIXME: I'd rather not call ffileseek() in this file. When we
* start buffering the outgoing data, the following
* ffileseek() will disappear.
*/
switch (getinsync (qdaemon, TRUE)) {
case ZACK:
break;
case ZRPOS:
if (qTsend == NULL
|| ! ffileisopen (qTsend->e)) {
ulog (LOG_ERROR, "Can't reset non-file");
return FALSE;
}
iZlast_tx_data_packet = -1; /* trigger ZDATA */
DEBUG_MESSAGE1 (DEBUG_PROTO,
"fzsend_data: Seeking to %ld",
(long) (wpZrxpos - wpZtxstart));
if (!ffileseek (qTsend->e, wpZrxpos - wpZtxstart)) {
ulog (LOG_ERROR, "seek: %s", strerror (errno));
return FALSE;
}
break;
default:
return FALSE;
}
}
return TRUE;
}
/*
* Process existing data ...
*/
static boolean
fzprocess(qdaemon)
struct sdaemon *qdaemon;
{
int c,ch;
while (fzreceive_ready ()) {
READCHAR (qdaemon, ch, 1);
switch (ch) {
case ZPAD:
/* see if we're detecting ZRPOS packets quickly */
DEBUG_MESSAGE0 (DEBUG_PROTO,
"fzprocess: possible ZRPOS packet");
/* We just ate the ZPAD char that getinsync
expects, so put it back. */
iPrecstart = ((iPrecstart + CRECBUFLEN - 1)
% CRECBUFLEN);
c = getinsync (qdaemon, TRUE);
if (c == ZACK)
break;
/* FIXME: sz does a TCFLSH here */
#if 0 /* FIXME: Not sure if this is needed, or where to put it. */
/* ZCRCE - dinna wanna starta ping-pong game */
if (!fzsend_data_packet (qdaemon, zZtx_packet_buf,
0, ZCRCE, TRUE))
return FALSE;
#endif
if (c == ZRPOS) {
if (qTsend == NULL
|| ! ffileisopen (qTsend->e)) {
ulog (LOG_ERROR,
"Attempt to back up non-file");
return FALSE;
}
if (! ffileseek (qTsend->e,
wpZrxpos - wpZtxstart)) {
ulog (LOG_ERROR,
"seek: %s", strerror (errno));
return FALSE;
}
iZlast_tx_data_packet = -1; /* trigger ZDATA */
break; /* not returning is intentional */
}
return FALSE;
case XOFF:
case XOFF | 0200:
READCHAR (qdaemon, ch, XON_WAIT);
break;
case CR:
break;
default:
iZjunk_count++;
break;
}
}
return TRUE;
}
/*
* Wait for data to come in.
*
* This continues processing until a complete file or command has been
* received.
*/
boolean
fzwait(qdaemon)
struct sdaemon *qdaemon;
{
int c,cerr,rxcount;
boolean fexit;
achdrval_t rx_hdr;
if (!fzstart_rx ())
return FALSE;
cerr = cZretries;
goto nxthdr;
for (;;) {
if (!fzsend_hdr (qdaemon, ZHEX, ZRPOS,
hvzencode_data_hdr (wpZrxbytes), FALSE))
return FALSE;
nxthdr:
c = izrecv_hdr (qdaemon, rx_hdr);
switch (c) {
case ZM_TIMEOUT:
case ZNAK:
if (--cerr < 0) {
ulog (LOG_ERROR, "fzwait: retries exhausted");
return FALSE;
}
continue;
case ZM_ERROR:
if (--cerr < 0) {
ulog (LOG_ERROR, "fzwait: retries exhausted");
return FALSE;
}
/*fport_break ();*/
continue;
case ZM_RCDO:
case ZFIN:
return FALSE;
case ZRPOS:
case ZACK:
goto nxthdr; /* ignore, partner is out of sync */
case ZDATA: {
winpos_t rx_bytes;
zdecode_data_hdr (rclhdr (rx_hdr), &rx_bytes);
DEBUG_MESSAGE2 (DEBUG_PROTO,
"fzwait: bytes(us,them) 0x%lx,0x%lx",
wpZrxbytes, rx_bytes);
if (rx_bytes != wpZrxbytes) {
if (--cerr < 0) {
ulog (LOG_ERROR,
"fzwait: retries exhausted");
return FALSE;
}
(void) zrdat32 (qdaemon, zZrx_packet_buf,
1024, &rxcount);
/*fport_break ();*/
/*
* FIXME: Seems to me we should ignore this one
* and go for a timeout, the theory being
* that the appropriate ZRPOS has already
* been sent. We're obviously out of sync.
* /dje 92Mar10
*/
continue; /* goto nxthdr? */
}
moredata:
/*
* Do not call fgot_data() with (rxcount == 0) if it's
* not ZCRCF. fgot_data() will erroneously think this
* is the end of the message.
*/
c = zrdat32 (qdaemon, zZrx_packet_buf, 1024,
&rxcount);
#if DEBUG > 1
if (FDEBUGGING(DEBUG_PROTO)) {
const char *msg;
if (c < 0) {
msg = ZZHEADER_NAME(c);
} else {
switch (c) {
case GOTCRCW: msg = "ZCRCW"; break;
case GOTCRCG: msg = "ZCRCG"; break;
case GOTCRCQ: msg = "ZCRCQ"; break;
case GOTCRCE: msg = "ZCRCE"; break;
case GOTCRCF: msg = "ZCRCF"; break;
default : msg = NULL; break;
}
}
if (msg != NULL)
DEBUG_MESSAGE2 (DEBUG_PROTO,
"fzwait: zrdat32: %s, %d bytes",
msg, rxcount);
else
DEBUG_MESSAGE2 (DEBUG_PROTO,
"fzwait: zrdat32: %d, %d bytes",
c, rxcount);
}
#endif
switch (c) {
case ZM_ERROR: /* CRC error */
cZerrors++;
if (--cerr < 0) {
ulog (LOG_ERROR,
"fzwait: retries exhausted");
return FALSE;
}
/*fport_break ();*/
continue;
case ZM_TIMEOUT:
cZtimeouts++;
if (--cerr < 0) {
ulog (LOG_ERROR,
"fzwait: retries exhausted");
return FALSE;
}
continue;
case ZM_RCDO:
return FALSE;
case GOTCRCW:
iZlast_rx_data_packet = ZCRCW;
cerr = cZretries;
if (rxcount != 0
&& !fgot_data (qdaemon, zZrx_packet_buf,
(size_t) rxcount,
(const char *) NULL,
(size_t) 0,
-1, -1, (long) -1,
TRUE, &fexit))
return FALSE;
wpZrxbytes += rxcount;
if (!fzsend_hdr (qdaemon, ZHEX, ZACK,
hvzencode_data_hdr (wpZrxbytes),
FALSE))
return FALSE;
if (! fsend_data (qdaemon->qconn, &xon,
(size_t) 1, FALSE))
return FALSE;
goto nxthdr;
case GOTCRCQ:
iZlast_rx_data_packet = ZCRCQ;
cerr = cZretries;
if (rxcount != 0
&& !fgot_data (qdaemon, zZrx_packet_buf,
(size_t) rxcount,
(const char *) NULL,
(size_t) 0,
-1, -1, (long) -1,
TRUE, &fexit))
return FALSE;
wpZrxbytes += rxcount;
if (!fzsend_hdr (qdaemon, ZHEX, ZACK,
hvzencode_data_hdr (wpZrxbytes),
FALSE))
return FALSE;
goto moredata;
case GOTCRCG:
iZlast_rx_data_packet = ZCRCG;
cerr = cZretries;
if (rxcount != 0
&& !fgot_data (qdaemon, zZrx_packet_buf,
(size_t) rxcount,
(const char *) NULL,
(size_t) 0,
-1, -1, (long) -1,
TRUE, &fexit))
return FALSE;
wpZrxbytes += rxcount;
goto moredata;
case GOTCRCE:
iZlast_rx_data_packet = ZCRCE;
cerr = cZretries;
if (rxcount != 0
&& !fgot_data (qdaemon, zZrx_packet_buf,
(size_t) rxcount,
(const char *) NULL,
(size_t) 0,
-1, -1, (long) -1,
TRUE, &fexit))
return FALSE;
wpZrxbytes += rxcount;
goto nxthdr;
case GOTCRCF:
iZlast_rx_data_packet = ZCRCF;
/*
* fzfinish_rx() must be called before
* fgot_data() because fgot_data() will send
* out a UUCP-command but the sender won't be
* ready for it until it receives our final
* ZACK.
*/
cerr = cZretries;
wpZrxbytes += rxcount;
if (!fzfinish_rx (qdaemon))
return FALSE;
if (!fgot_data (qdaemon, zZrx_packet_buf,
(size_t) rxcount,
(const char *) NULL,
(size_t) 0, -1, -1,
(long) -1, TRUE, &fexit))
return FALSE;
/*
* FIXME: Examine <fexit>?
* Or maybe ensure it's TRUE?
*/
return TRUE;
}
return FALSE;
}
default:
ulog (LOG_FATAL, "fzwait: received header %s",
ZZHEADER_NAME(c));
return FALSE;
}
}
}
/*
* File level routine. Called when initiating/terminating file transfers.
*
* When starting to send a file: (TRUE, TRUE, cbytes)
* When starting to receive a file: (TRUE, FALSE, -1)
* When send EOF, check resend: (FALSE, TRUE, -1)
* When receive EOF, check re-receive: (FALSE, FALSE, -1)
*/
boolean
fzfile(qdaemon, qtrans, fstart, fsend, cbytes, pfhandled)
struct sdaemon *qdaemon;
struct stransfer *qtrans;
boolean fstart;
boolean fsend;
long cbytes ATTRIBUTE_UNUSED;
boolean *pfhandled;
{
long iredo;
*pfhandled = FALSE;
DEBUG_MESSAGE2 (DEBUG_PROTO, "fzfile: fstart=%d, fsend=%d", fstart,
fsend);
if (fsend) {
if (fstart)
return fzstart_tx ();
if (! fzfinish_tx (qdaemon, &iredo))
return FALSE;
if (iredo >= 0) {
if (! ffileisopen (qtrans->e)) {
ulog (LOG_ERROR,
"Attempt to back up non-file");
return FALSE;
}
if (! ffileseek (qtrans->e, iredo)) {
ulog (LOG_ERROR,
"seek: %s", strerror (errno));
return FALSE;
}
*pfhandled = TRUE;
qtrans->fsendfile = TRUE;
return fqueue_send (qdaemon, qtrans);
}
}
return TRUE;
}
/****************************************************************************/
#if 0 /* not used, we only use 32 bit crc's */
/*
* crctab calculated by Mark G. Mendel, Network Systems Corporation
*/
static unsigned short crctab[256] = {
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,
0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,
0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4,
0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,
0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,
0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,
0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12,
0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41,
0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,
0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,
0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,
0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,
0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,
0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,
0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,
0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,
0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,
0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,
0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,
0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,
0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,
0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,
0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,
0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,
0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0
};
#endif /* crctab */
/*
* Copyright (C) 1986 Gary S. Brown. You may use this program, or
* code or tables extracted from it, as desired without restriction.
*/
/* First, the polynomial itself and its table of feedback terms. The */
/* polynomial is */
/* X^32+X^26+X^23+X^22+X^16+X^12+X^11+X^10+X^8+X^7+X^5+X^4+X^2+X^1+X^0 */
/* Note that we take it "backwards" and put the highest-order term in */
/* the lowest-order bit. The X^32 term is "implied"; the LSB is the */
/* X^31 term, etc. The X^0 term (usually shown as "+1") results in */
/* the MSB being 1. */
/* Note that the usual hardware shift register implementation, which */
/* is what we're using (we're merely optimizing it by doing eight-bit */
/* chunks at a time) shifts bits into the lowest-order term. In our */
/* implementation, that means shifting towards the right. Why do we */
/* do it this way? Because the calculated CRC must be transmitted in */
/* order from highest-order term to lowest-order term. UARTs transmit */
/* characters in order from LSB to MSB. By storing the CRC this way, */
/* we hand it to the UART in the order low-byte to high-byte; the UART */
/* sends each low-bit to hight-bit; and the result is transmission bit */
/* by bit from highest- to lowest-order term without requiring any bit */
/* shuffling on our part. Reception works similarly. */
/* The feedback terms table consists of 256, 32-bit entries. Notes: */
/* */
/* The table can be generated at runtime if desired; code to do so */
/* is shown later. It might not be obvious, but the feedback */
/* terms simply represent the results of eight shift/xor opera- */
/* tions for all combinations of data and CRC register values. */
/* */
/* The values must be right-shifted by eight bits by the "updcrc" */
/* logic; the shift must be unsigned (bring in zeroes). On some */
/* hardware you could probably optimize the shift in assembler by */
/* using byte-swap instructions. */
static unsigned long crc_32_tab[] = { /* CRC polynomial 0xedb88320 */
0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL,
0x076dc419L, 0x706af48fL, 0xe963a535L, 0x9e6495a3L,
0x0edb8832L, 0x79dcb8a4L, 0xe0d5e91eL, 0x97d2d988L,
0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, 0x90bf1d91L,
0x1db71064L, 0x6ab020f2L, 0xf3b97148L, 0x84be41deL,
0x1adad47dL, 0x6ddde4ebL, 0xf4d4b551L, 0x83d385c7L,
0x136c9856L, 0x646ba8c0L, 0xfd62f97aL, 0x8a65c9ecL,
0x14015c4fL, 0x63066cd9L, 0xfa0f3d63L, 0x8d080df5L,
0x3b6e20c8L, 0x4c69105eL, 0xd56041e4L, 0xa2677172L,
0x3c03e4d1L, 0x4b04d447L, 0xd20d85fdL, 0xa50ab56bL,
0x35b5a8faL, 0x42b2986cL, 0xdbbbc9d6L, 0xacbcf940L,
0x32d86ce3L, 0x45df5c75L, 0xdcd60dcfL, 0xabd13d59L,
0x26d930acL, 0x51de003aL, 0xc8d75180L, 0xbfd06116L,
0x21b4f4b5L, 0x56b3c423L, 0xcfba9599L, 0xb8bda50fL,
0x2802b89eL, 0x5f058808L, 0xc60cd9b2L, 0xb10be924L,
0x2f6f7c87L, 0x58684c11L, 0xc1611dabL, 0xb6662d3dL,
0x76dc4190L, 0x01db7106L, 0x98d220bcL, 0xefd5102aL,
0x71b18589L, 0x06b6b51fL, 0x9fbfe4a5L, 0xe8b8d433L,
0x7807c9a2L, 0x0f00f934L, 0x9609a88eL, 0xe10e9818L,
0x7f6a0dbbL, 0x086d3d2dL, 0x91646c97L, 0xe6635c01L,
0x6b6b51f4L, 0x1c6c6162L, 0x856530d8L, 0xf262004eL,
0x6c0695edL, 0x1b01a57bL, 0x8208f4c1L, 0xf50fc457L,
0x65b0d9c6L, 0x12b7e950L, 0x8bbeb8eaL, 0xfcb9887cL,
0x62dd1ddfL, 0x15da2d49L, 0x8cd37cf3L, 0xfbd44c65L,
0x4db26158L, 0x3ab551ceL, 0xa3bc0074L, 0xd4bb30e2L,
0x4adfa541L, 0x3dd895d7L, 0xa4d1c46dL, 0xd3d6f4fbL,
0x4369e96aL, 0x346ed9fcL, 0xad678846L, 0xda60b8d0L,
0x44042d73L, 0x33031de5L, 0xaa0a4c5fL, 0xdd0d7cc9L,
0x5005713cL, 0x270241aaL, 0xbe0b1010L, 0xc90c2086L,
0x5768b525L, 0x206f85b3L, 0xb966d409L, 0xce61e49fL,
0x5edef90eL, 0x29d9c998L, 0xb0d09822L, 0xc7d7a8b4L,
0x59b33d17L, 0x2eb40d81L, 0xb7bd5c3bL, 0xc0ba6cadL,
0xedb88320L, 0x9abfb3b6L, 0x03b6e20cL, 0x74b1d29aL,
0xead54739L, 0x9dd277afL, 0x04db2615L, 0x73dc1683L,
0xe3630b12L, 0x94643b84L, 0x0d6d6a3eL, 0x7a6a5aa8L,
0xe40ecf0bL, 0x9309ff9dL, 0x0a00ae27L, 0x7d079eb1L,
0xf00f9344L, 0x8708a3d2L, 0x1e01f268L, 0x6906c2feL,
0xf762575dL, 0x806567cbL, 0x196c3671L, 0x6e6b06e7L,
0xfed41b76L, 0x89d32be0L, 0x10da7a5aL, 0x67dd4accL,
0xf9b9df6fL, 0x8ebeeff9L, 0x17b7be43L, 0x60b08ed5L,
0xd6d6a3e8L, 0xa1d1937eL, 0x38d8c2c4L, 0x4fdff252L,
0xd1bb67f1L, 0xa6bc5767L, 0x3fb506ddL, 0x48b2364bL,
0xd80d2bdaL, 0xaf0a1b4cL, 0x36034af6L, 0x41047a60L,
0xdf60efc3L, 0xa867df55L, 0x316e8eefL, 0x4669be79L,
0xcb61b38cL, 0xbc66831aL, 0x256fd2a0L, 0x5268e236L,
0xcc0c7795L, 0xbb0b4703L, 0x220216b9L, 0x5505262fL,
0xc5ba3bbeL, 0xb2bd0b28L, 0x2bb45a92L, 0x5cb36a04L,
0xc2d7ffa7L, 0xb5d0cf31L, 0x2cd99e8bL, 0x5bdeae1dL,
0x9b64c2b0L, 0xec63f226L, 0x756aa39cL, 0x026d930aL,
0x9c0906a9L, 0xeb0e363fL, 0x72076785L, 0x05005713L,
0x95bf4a82L, 0xe2b87a14L, 0x7bb12baeL, 0x0cb61b38L,
0x92d28e9bL, 0xe5d5be0dL, 0x7cdcefb7L, 0x0bdbdf21L,
0x86d3d2d4L, 0xf1d4e242L, 0x68ddb3f8L, 0x1fda836eL,
0x81be16cdL, 0xf6b9265bL, 0x6fb077e1L, 0x18b74777L,
0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL,
0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L,
0xa00ae278L, 0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L,
0xa7672661L, 0xd06016f7L, 0x4969474dL, 0x3e6e77dbL,
0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L, 0x37d83bf0L,
0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L,
0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L,
0xbad03605L, 0xcdd70693L, 0x54de5729L, 0x23d967bfL,
0xb3667a2eL, 0xc4614ab8L, 0x5d681b02L, 0x2a6f2b94L,
0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL, 0x2d02ef8dL
};
/*
* updcrc macro derived from article Copyright (C) 1986 Stephen Satchell.
* NOTE: First argument must be in range 0 to 255.
* Second argument is referenced twice.
*
* Programmers may incorporate any or all code into their programs,
* giving proper credit within the source. Publication of the
* source routines is permitted so long as proper credit is given
* to Stephen Satchell, Satchell Evaluations and Chuck Forsberg,
* Omen Technology.
*/
#define updcrc(cp, crc) (crctab[((crc >> 8) & 255)] ^ (crc << 8) ^ cp)
#define UPDC32(b, crc) \
(crc_32_tab[((unsigned)(crc) ^ (unsigned)(b)) & 0xff] \
^ (((crc) >> 8) & 0x00ffffffL))
/****************************************************************************/
/*
* This section contains the guts of the Zmodem protocol. The intention
* is to leave as much of it alone as possible at the start. Overtime it
* will be cleaned up (EG: I'd like to clean up the naming of the globals).
* Also, Zmodem has a different coding style. Over time this will be converted
* to the Taylor UUCP coding style.
*/
/*
* Start the protocol (exchange init packets) ...
*
* UUCP can transfer files in both directions in one session. Therefore the
* init sequence is a little different.
*
* 1) ZINIT packets are exchanged
* - contains protocol version and protocol flags
* 2) ZDATA packets are exchanged
* - is intended to contain various numeric and string information
* 3) ZACK packets are exchanged
* 4) ZINITEND packets are exchanged
*/
static boolean
fzstart_proto(qdaemon)
struct sdaemon *qdaemon;
{
int i;
achdrval_t tx_hdr,rx_hdr;
for (i = 0; i < cZstartup_retries; i++) {
stohdr (0L, tx_hdr);
tx_hdr[ZF0] = ZPROTOCOL_VERSION;
if (fZesc_ctl)
tx_hdr[ZF1] |= TX_ESCCTL;
switch (izexchange_init (qdaemon, ZINIT, tx_hdr, rx_hdr)) {
case -1: return FALSE;
case 0: continue;
case 1: break;
}
#if 0 /* can't work, but kept for documentation */
if (rx_hdr[ZF0] == 0) {
ulog (LOG_ERROR, "Old protocol version, init failed");
return FALSE;
}
#endif
fZesc_ctl = fZesc_ctl || (rx_hdr[ZF1] & TX_ESCCTL) != 0;
stohdr (0L, tx_hdr);
switch (izexchange_init (qdaemon, ZDATA, tx_hdr, rx_hdr)) {
case -1: return FALSE;
case 0: continue;
case 1: break;
}
stohdr (0L, tx_hdr);
switch (izexchange_init (qdaemon, ZACK, tx_hdr, rx_hdr)) {
case -1: return FALSE;
case 0: continue;
case 1: break;
}
stohdr (0L, tx_hdr);
switch (izexchange_init (qdaemon, ZINITEND, tx_hdr, rx_hdr)) {
case -1: return FALSE;
case 0: continue;
case 1: break;
}
DEBUG_MESSAGE0 (DEBUG_PROTO,
"fzstart_proto: Protocol started");
return TRUE;
/* FIXME: see protg.c regarding sequencing here. */
}
ulog (LOG_ERROR, "Protocol init failed");
return FALSE;
}
/*
* Exchange init messages. This is based on 'g'.
* See the comments concerning fgexchange_init() in protg.c.
*
* We return 1 for success, 0 for restart, -1 for comm failure (terminate).
*/
static int
izexchange_init(qdaemon, send_type, send_val, recv_val)
struct sdaemon *qdaemon;
int send_type;
achdrval_t send_val;
achdrval_t recv_val;
{
int i,recv_type,count;
for (i = 0; i < CEXCHANGE_INIT_RETRIES; i++) {
if (!fzsend_hdr (qdaemon, send_type == ZDATA ? ZBIN : ZHEX,
send_type, rclhdr (send_val), FALSE))
return -1;
/*
* The ZDATA packet is intended to contain the <Attn> string
* (eventually, if it's ever usable) and allow for anything
* else that will need to be thrown in.
*/
if (send_type == ZDATA) {
count = czbuild_data_packet (zZtx_packet_buf, "",
(size_t) 1, ZCRCF);
if (!fsend_data (qdaemon->qconn, zZtx_packet_buf,
(size_t) count, FALSE))
return -1;
}
recv_type = izrecv_hdr (qdaemon, recv_val);
switch (recv_type) {
case ZM_TIMEOUT:
case ZM_ERROR:
continue;
case ZM_RCDO:
case ZFIN:
return -1;
case ZINIT:
case ZACK:
case ZINITEND:
break;
case ZDATA:
if (zrdat32 (qdaemon, zZrx_packet_buf, 1024, &count)
== GOTCRCF)
break;
continue;
default:
continue;
}
if (recv_type == send_type)
return 1;
/*
* If the other side is farther along than we are, we have lost
* a packet. Fall immediately back to ZINIT (but don't fail
* if we are already doing ZINIT, since that would count
* against cStart_retries more than it should).
*
* FIXME: The ">" test is "<" in protg.c. Check who's right.
*/
if (recv_type > send_type && send_type != ZINIT)
return 0;
/*
* If we are sending ZINITEND and we receive an ZINIT, the
* other side has falled back (we know this because we have
* seen a ZINIT from them). Fall back ourselves to start
* the whole handshake over again.
*/
if (recv_type == ZINIT && send_type == ZINITEND)
return 0;
}
return 0;
}
/*
* Shut down the protocol ...
*/
static boolean
fzshutdown_proto(qdaemon)
struct sdaemon *qdaemon;
{
(void) fzsend_hdr (qdaemon, ZHEX, ZFIN, 0L, FALSE);
return TRUE;
}
/*
* Reset the transmitter side for sending a new message ...
*/
static boolean
fzstart_tx()
{
iZlast_tx_data_packet = -1;
/*
* <wpZlastsync> is set to -1L to suppress ZCRCW request otherwise
* triggered by (wpZlastsync == wpZtxpos).
*/
cZblklen = 1024;
wpZlastsync = -1L;
iZbeenhereb4 = 0;
iZtleft = 0;
iZjunk_count = 0;
wpZtxpos = (wpZtxpos + 1024L) & ~1023L; /* next packet boundary */
wpZlrxpos = wpZrxpos = wpZtxpos;
wpZtxstart = wpZtxpos; /* so we can compute the "file offset" */
return TRUE;
}
/*
* Finish the sending of a message ...
*
* Basically, we wait for some indication that the receiver received our last
* message. If the receiver tells us to restart from some point, we set
* *plredo to that point.
*
* FIXME: This function is a major kludge at the moment. It is taken from
* getinsync(). It is necessary because I don't yet buffer outgoing data.
* It will go away when we do (buffer outgoing data).
*/
static boolean
fzfinish_tx(qdaemon, plredo)
struct sdaemon *qdaemon;
long *plredo;
{
int c,cerr,ctimeouts;
achdrval_t rx_hdr;
winpos_t rx_bytes;
*plredo = -1;
cerr = cZretries;
ctimeouts = 0;
DEBUG_MESSAGE4 (DEBUG_PROTO,
"fzfinish_tx: txpos=0x%lx, rxpos=0x%lx, lrxpos=0x%lx, rxbytes=0x%lx",
wpZtxpos, wpZrxpos, wpZlrxpos, wpZrxbytes);
for (;;) {
c = izrecv_hdr (qdaemon, rx_hdr);
switch (c) {
case ZRPOS:
wpZrxpos = lzupdate_rxpos (rx_hdr, wpZrxpos,
wpZlrxpos, wpZtxpos);
/*
* If the receiver sends a ZRPOS for the 1k block after
* the one we're currently at, we lost the final ZACK.
* We cheat and ignore this ZRPOS. Remember: the theory
* is that this entire function will go away when we
* begin buffering the outgoing data. Of course, one
* can reword the protocol definition and say this
* isn't cheating at all.
*/
if (((wpZtxpos + 1024) & ~1023) == wpZrxpos)
return TRUE;
cZbytes_resent += wpZtxpos - wpZrxpos;
wpZlrxpos = wpZtxpos = wpZrxpos;
if (wpZlastsync == wpZrxpos) {
if (++iZbeenhereb4 > 4)
if (cZblklen > 32)
cZblklen /= 2;
/* FIXME: shouldn't we reset iZbeenhereb4? */
}
wpZlastsync = wpZrxpos;
iZlast_tx_data_packet = ZCRCW; /* force a timeout */
*plredo = wpZrxpos - wpZtxstart;
return TRUE;
case ZACK:
wpZrxpos = lzupdate_rxpos (rx_hdr, wpZrxpos,
wpZlrxpos, wpZtxpos);
wpZlrxpos = wpZrxpos;
if (wpZtxpos == wpZrxpos) /* the ACK we want? */
return TRUE;
break;
case ZDATA:
/*
* We cheat here and take advantage of UUCP's current
* half duplex nature. If we get a ZDATA starting on
* the next 1k boundary, we lost the ZACK. We cheat and
* tuck it away so that izrecv_hdr() can later detect
* it. Remember: see above.
*/
zdecode_data_hdr (rclhdr (rx_hdr), &rx_bytes);
if (((wpZrxbytes + 1024L) & ~1023L) == rx_bytes) {
iZpkt_rcvd_kludge = ZDATA;
hvZpkt_hdrval_kludge = rclhdr (rx_hdr);
return TRUE;
}
break; /* ignore, out of sync (old) */
case ZNAK:
/*
* We cheat here and take advantage of UUCP's current
* half duplex nature. If we get a ZNAK starting on
* the next 1k boundary, we lost the ZACK. We cheat and
* throw the ZNAK away. Remember: see above.
*
* On the other hand, if (rx_bytes == wpZrxbytes) then
* the other side is also in fzfinish_tx(). He must
* have lost our ZACK, so we send him another.
*/
zdecode_data_hdr (rclhdr (rx_hdr), &rx_bytes);
if (((wpZrxbytes + 1024L) & ~1023L) == rx_bytes)
return TRUE;
if (rx_bytes == wpZrxbytes) {
if (!fzsend_hdr (qdaemon, ZHEX, ZACK,
hvzencode_data_hdr (wpZrxbytes),
TRUE))
return FALSE;
}
break; /* ignore, out of sync (old) */
case ZFIN:
case ZM_RCDO:
return FALSE;
case ZM_TIMEOUT:
if (--cerr < 0) {
ulog (LOG_ERROR,
"fzfinish_tx: retries exhausted");
return FALSE;
}
/*
* Normally the sender doesn't send NAK's for timeouts.
* We have to here because of the following scenario:
*
* - We send ZDATA/ZCRCF
* - They send ZACK (corrupted)
* - They send ZDATA/ZCRCF (corrupted)
*
* At this point, both sides are in fzfinish_tx().
* We only send ZNAK every second timeout to increase
* our timeout delay vs. our partner. This tries to
* avoid ZRPOS and ZNAK "passing in transit".
*/
if (++ctimeouts % 2 == 0)
if (!fzsend_hdr (qdaemon, ZHEX, ZNAK,
hvzencode_data_hdr (wpZtxpos),
TRUE))
return FALSE;
break;
case ZM_ERROR:
default:
if (--cerr < 0) {
ulog (LOG_ERROR,
"fzfinish_tx: retries exhausted");
return FALSE;
}
if (!fzsend_hdr (qdaemon, ZHEX, ZNAK,
hvzencode_data_hdr (wpZtxpos),
TRUE))
return FALSE;
break;
}
}
}
/*
* Initialize the receiver ...
*/
static boolean
fzstart_rx()
{
wpZrxbytes = (wpZrxbytes + 1024L) & ~1023L; /* next packet boundary */
return TRUE;
}
/*
* Terminate the receiver ...
*
* Acknowledge the last packet received.
*/
static boolean
fzfinish_rx(qdaemon)
struct sdaemon *qdaemon;
{
DEBUG_MESSAGE0 (DEBUG_PROTO, "fzfinish_rx: message/file received");
return fzsend_hdr (qdaemon, ZHEX, ZACK,
hvzencode_data_hdr (wpZrxbytes), FALSE);
}
/*
* Send a Zmodem header to our partner ...
*/
static boolean
fzsend_hdr(qdaemon, ipkttype, ihdrtype, hdrval, fcheckreceive)
struct sdaemon *qdaemon;
int ipkttype;
int ihdrtype;
hdrval_t hdrval;
boolean fcheckreceive;
{
int cpacketlen;
DEBUG_MESSAGE2 (DEBUG_PROTO, "fzsend_hdr: %s, data = 0x%lx",
ZZHEADER_NAME(ihdrtype), hdrval);
cpacketlen = czbuild_header (zZtx_packet_buf, ipkttype,
ihdrtype, hdrval);
#ifdef DJE_TESTING
#if 0
if (ihdrtype == ZACK && rand () % 100 < uucptest2) {
cZheaders_sent++;
return TRUE;
}
#else
if (ihdrtype == ZACK || ihdrtype == ZDATA) {
boolean fresult;
int old;
extern int uucptest,uucptest2;
old = uucptest;
uucptest = uucptest2;
cZheaders_sent++;
fresult = fsend_data (qdaemon->qconn, zZtx_packet_buf,
(size_t) cpacketlen, fcheckreceive);
uucptest = old;
return fresult;
}
#endif
#endif
cZheaders_sent++;
return fsend_data (qdaemon->qconn, zZtx_packet_buf,
(size_t) cpacketlen, fcheckreceive);
}
/*
* Send a data packet to our partner ...
* <frameend> is one of ZCRCx.
*/
static boolean
fzsend_data_packet(qdaemon, zdata, cdata, frameend, fcheckreceive)
struct sdaemon *qdaemon;
char *zdata;
size_t cdata;
int frameend;
boolean fcheckreceive;
{
int cpacketlen;
cpacketlen = czbuild_data_packet (zZtx_packet_buf, zdata, cdata,
frameend);
return fsend_data (qdaemon->qconn, zZtx_packet_buf,
(size_t) cpacketlen, fcheckreceive);
}
/*
* Build Zmodem headers ...
*
* Note that we use 32 bit CRC's for ZHEX headers.
*
* This function is a combination of zm fns: zsbhdr(), zsbh32(), and zshhdr().
*/
static int
czbuild_header(zresult, ipkttype, ihdrtype, hdrval)
char *zresult;
int ipkttype;
int ihdrtype;
hdrval_t hdrval;
{
char *p;
int i;
unsigned long crc;
achdrval_t achdrval;
p = zresult;
switch (ipkttype) {
case ZBIN:
*p++ = ZPAD;
*p++ = ZDLE;
*p++ = ZBIN;
p = zputchar (p, ihdrtype);
crc = ICRCINIT;
crc = UPDC32 (ihdrtype, crc);
stohdr (hdrval, achdrval);
for (i = 0; i < 4; i++) {
p = zputchar (p, achdrval[i]);
crc = UPDC32 (achdrval[i], crc);
}
crc = ~crc;
for (i = 0; i < 4; i++) {
p = zputchar (p, (char) crc);
crc >>= 8;
}
break;
case ZHEX: /* build hex header */
*p++ = ZPAD;
*p++ = ZPAD;
*p++ = ZDLE;
*p++ = ZHEX;
p = zputhex (p, ihdrtype);
crc = ICRCINIT;
crc = UPDC32 (ihdrtype, crc);
stohdr (hdrval, achdrval);
for (i = 0; i < 4; i++) {
p = zputhex (p, achdrval[i]);
crc = UPDC32 (achdrval[i], crc);
}
crc = ~crc;
for (i = 0; i < 4; i++) {
p = zputhex (p, (char) crc);
crc >>= 8;
}
*p++ = CR;
/*
* Uncork the remote in case a fake XOFF has stopped data flow.
*/
if (ihdrtype != ZFIN && ihdrtype != ZACK) /* FIXME: why? */
*p++ = XON;
break;
default:
ulog (LOG_FATAL, "czbuild_header: ipkttype == %d", ipkttype);
break;
}
return p - zresult;
}
/*
* Build Zmodem data packets ...
*
* This function is zsdata() and zsda32() from the zm source.
*/
static int
czbuild_data_packet(zresult, zdata, cdata, frameend)
char *zresult;
const char *zdata;
size_t cdata;
int frameend;
{
char *p;
unsigned long crc;
p = zresult;
crc = ICRCINIT;
for ( ; cdata-- != 0; zdata++) {
char c;
c = *zdata;
if (c & 0140)
*p++ = c;
else
p = zputchar (p, c);
crc = UPDC32 ((unsigned char) c, crc);
}
*p++ = ZDLE;
*p++ = frameend;
crc = UPDC32 (frameend, crc);
crc = ~crc;
for (cdata = 0; cdata < 4; cdata++) {
p = zputchar (p, (char) crc);
crc >>= 8;
}
if (frameend == ZCRCW || frameend == ZCRCE || frameend == ZCRCF) {
*p++ = CR;
*p++ = XON;
}
return p - zresult;
}
/*
* Read in a header ...
*
* This is function zgethdr() from the Zmodem source.
*/
static int
izrecv_hdr(qdaemon, hdr)
struct sdaemon *qdaemon;
achdrval_t hdr;
{
int c,cerr;
/*
* Kludge alert! If another part of the program received a packet but
* wasn't ready to handle it, it is tucked away for us to handle now.
*/
if (iZpkt_rcvd_kludge != -1) {
c = iZpkt_rcvd_kludge;
iZpkt_rcvd_kludge = -1;
stohdr (hvZpkt_hdrval_kludge, hdr);
DEBUG_MESSAGE2 (DEBUG_PROTO,
"izrecv_hdr: queued %s, data = 0x%lx",
ZZHEADER_NAME(c), rclhdr (hdr));
cZheaders_received++;
return c;
}
cerr = cZmax_garbage; /* Max bytes before start of frame */
again:
switch (c = noxrd7 (qdaemon)) {
case ZM_TIMEOUT:
case ZM_ERROR:
case ZM_RCDO:
goto fifi;
case ZPAD: /* This is what we want */
break;
case CR: /* padding at end of previous header */
default:
if (--cerr < 0) {
c = ZM_ERROR;
goto fifi;
}
goto again;
}
splat:
switch (c = noxrd7 (qdaemon)) {
case ZPAD:
if (--cerr < 0) {
c = ZM_ERROR;
goto fifi;
}
goto splat;
case ZM_TIMEOUT:
case ZM_RCDO:
goto fifi;
case ZDLE: /* This is what we want */
break;
default:
if (--cerr < 0) {
c = ZM_ERROR;
goto fifi;
}
goto again;
}
switch (c = noxrd7 (qdaemon)) {
case ZM_TIMEOUT:
case ZM_RCDO:
goto fifi;
case ZBIN:
c = zrbhdr32 (qdaemon, hdr);
break;
case ZHEX:
c = zrhhdr (qdaemon, hdr);
break;
default:
if (--cerr < 0) {
c = ZM_ERROR;
goto fifi;
}
goto again;
}
fifi:
switch (c) {
case ZM_TIMEOUT:
cZtimeouts++;
break;
case ZM_ERROR:
cZerrors++;
break;
case ZM_RCDO:
break;
default:
cZheaders_received++;
break;
}
DEBUG_MESSAGE2 (DEBUG_PROTO, "izrecv_hdr: %s, data = 0x%lx",
ZZHEADER_NAME(c), rclhdr (hdr));
return c;
}
/*
* Receive a binary style header (type and position) with 32 bit FCS ...
*/
static int
zrbhdr32(qdaemon, hdr)
struct sdaemon *qdaemon;
achdrval_t hdr;
{
int c,i,type;
unsigned long crc;
if ((c = zdlread (qdaemon)) & ~0377)
return c;
type = c;
crc = ICRCINIT;
crc = UPDC32 (c, crc);
for (i = 0; i < 4; i++) {
if ((c = zdlread (qdaemon)) & ~0377)
return c;
crc = UPDC32 (c, crc);
hdr[i] = (char) c;
}
for (i = 0; i < 4; i++) {
if ((c = zdlread (qdaemon)) & ~0377)
return c;
crc = UPDC32 (c, crc);
}
if (crc != IHDRCRC)
return ZM_ERROR;
return type;
}
/*
* Receive a hex style header (type and position) ...
*/
static int
zrhhdr(qdaemon, hdr)
struct sdaemon *qdaemon;
achdrval_t hdr;
{
int c,i,type;
unsigned long crc;
if ((c = zgethex (qdaemon)) < 0)
return c;
type = c;
crc = ICRCINIT;
crc = UPDC32 (c, crc);
for (i = 0; i < 4; i++) {
if ((c = zgethex (qdaemon)) < 0)
return c;
crc = UPDC32 (c, crc);
hdr[i] = (char) c;
}
for (i = 0; i < 4; i++) {
if ((c = zgethex (qdaemon)) < 0)
return c;
crc = UPDC32 (c, crc);
}
if (crc != IHDRCRC)
return ZM_ERROR;
return type;
}
/*
* Receive a data packet ...
*/
static int
zrdat32(qdaemon, buf, length, iprxcount)
struct sdaemon *qdaemon;
char *buf;
int length;
int *iprxcount;
{
int c,d;
unsigned long crc;
char *end;
crc = ICRCINIT;
*iprxcount = 0;
end = buf + length;
while (buf <= end) {
if ((c = zdlread (qdaemon)) & ~0377) {
crcfoo:
switch (c) {
case GOTCRCE:
case GOTCRCG:
case GOTCRCQ:
case GOTCRCW:
case GOTCRCF:
d = c;
c &= 0377;
crc = UPDC32 (c, crc);
if ((c = zdlread (qdaemon)) & ~0377)
goto crcfoo;
crc = UPDC32 (c, crc);
if ((c = zdlread (qdaemon)) & ~0377)
goto crcfoo;
crc = UPDC32 (c, crc);
if ((c = zdlread (qdaemon)) & ~0377)
goto crcfoo;
crc = UPDC32 (c, crc);
if ((c = zdlread (qdaemon)) & ~0377)
goto crcfoo;
crc = UPDC32 (c, crc);
if (crc != IHDRCRC)
return ZM_ERROR;
*iprxcount = length - (end - buf);
return d;
case ZM_TIMEOUT:
case ZM_RCDO:
return c;
default:
return ZM_ERROR;
}
}
*buf++ = (char) c;
crc = UPDC32 (c, crc);
}
return ZM_ERROR; /* bad packet, too long */
}
/*
* Respond to receiver's complaint, get back in sync with receiver ...
*/
static int
getinsync(qdaemon, flag)
struct sdaemon *qdaemon;
boolean flag;
{
int c,cerr;
achdrval_t rx_hdr;
cerr = cZretries;
for (;;) {
c = izrecv_hdr (qdaemon, rx_hdr);
switch (c) {
case ZRPOS:
wpZrxpos = lzupdate_rxpos (rx_hdr, wpZrxpos,
wpZlrxpos, wpZtxpos);
cZbytes_resent += wpZtxpos - wpZrxpos;
wpZlrxpos = wpZtxpos = wpZrxpos;
if (wpZlastsync == wpZrxpos) {
if (++iZbeenhereb4 > 4)
if (cZblklen > 32)
cZblklen /= 2;
/* FIXME: shouldn't we reset iZbeenhereb4? */
}
wpZlastsync = wpZrxpos;
return ZRPOS;
case ZACK:
wpZrxpos = lzupdate_rxpos (rx_hdr, wpZrxpos,
wpZlrxpos, wpZtxpos);
wpZlrxpos = wpZrxpos;
if (flag || wpZtxpos == wpZrxpos)
return ZACK;
break;
case ZNAK: {
winpos_t rx_bytes;
/*
* Our partner is in fzfinish_tx() and is waiting
* for ZACK ...
*/
zdecode_data_hdr (rclhdr (rx_hdr), &rx_bytes);
if (rx_bytes == wpZrxbytes) {
if (!fzsend_hdr (qdaemon, ZHEX, ZACK,
hvzencode_data_hdr (wpZrxbytes),
TRUE))
return FALSE;
}
break;
}
case ZFIN:
case ZM_RCDO:
return c;
case ZM_TIMEOUT:
if (--cerr < 0) {
ulog (LOG_ERROR,
"getinsync: retries exhausted");
return ZM_ERROR;
}
break; /* sender doesn't send ZNAK for timeout */
case ZM_ERROR:
default:
if (--cerr < 0) {
ulog (LOG_ERROR,
"getinsync: retries exhausted");
return ZM_ERROR;
}
if (!fzsend_hdr (qdaemon, ZHEX, ZNAK,
hvzencode_data_hdr (wpZtxpos),
TRUE))
return ZM_ERROR;
break;
}
}
}
/*
* Send a byte as two hex digits ...
*/
static char *
zputhex(p, ch)
char *p;
int ch;
{
static char digits[] = "0123456789abcdef";
*p++ = digits[(ch & 0xF0) >> 4];
*p++ = digits[ch & 0xF];
return p;
}
/*
* Send character c with ZMODEM escape sequence encoding ...
*
* Escape XON, XOFF.
* FIXME: Escape CR following @ (Telenet net escape) ... disabled for now
* Will need to put back references to <lastsent>.
*/
static char *
zputchar(p, ch)
char *p;
int ch;
{
char c = ch;
/* Quick check for non control characters */
if (c & 0140) {
*p++ = c;
} else {
switch (c & 0377) {
case ZDLE:
*p++ = ZDLE;
*p++ = c ^ 0100;
break;
case CR:
#if 0
if (!fZesc_ctl && (lastsent & 0177) != '@')
goto sendit;
#endif
/* fall through */
case 020: /* ^P */
case XON:
case XOFF:
*p++ = ZDLE;
c ^= 0100;
/*sendit:*/
*p++ = c;
break;
default:
if (fZesc_ctl && !(c & 0140)) {
*p++ = ZDLE;
c ^= 0100;
}
*p++ = c;
break;
}
}
return p;
}
/*
* Decode two lower case hex digits into an 8 bit byte value ...
*/
static int
zgethex(qdaemon)
struct sdaemon *qdaemon;
{
int c,n;
if ((c = noxrd7 (qdaemon)) < 0)
return c;
n = c - '0';
if (n > 9)
n -= ('a' - ':');
if (n & ~0xF)
return ZM_ERROR;
if ((c = noxrd7 (qdaemon)) < 0)
return c;
c -= '0';
if (c > 9)
c -= ('a' - ':');
if (c & ~0xF)
return ZM_ERROR;
c += (n << 4);
return c;
}
/*
* Read a byte, checking for ZMODEM escape encoding ...
*/
static int
zdlread(qdaemon)
struct sdaemon *qdaemon;
{
int c;
again:
READCHAR (qdaemon, c, cZtimeout);
if (c < 0)
return c;
if (c & 0140) /* quick check for non control characters */
return c;
switch (c) {
case ZDLE:
break;
case XON:
goto again;
case XOFF:
READCHAR (qdaemon, c, XON_WAIT);
goto again;
default:
if (fZesc_ctl && !(c & 0140))
goto again;
return c;
}
again2:
READCHAR (qdaemon, c, cZtimeout);
if (c < 0)
return c;
switch (c) {
case ZCRCE:
case ZCRCG:
case ZCRCQ:
case ZCRCW:
case ZCRCF:
return c | GOTOR;
case ZRUB0: /* FIXME: This is never generated. */
return 0177;
case ZRUB1: /* FIXME: This is never generated. */
return 0377;
case XON:
goto again2;
case XOFF:
READCHAR (qdaemon, c, XON_WAIT);
goto again2;
default:
if (fZesc_ctl && !(c & 0140))
goto again2; /* FIXME: why again2? */
if ((c & 0140) == 0100)
return c ^ 0100;
break;
}
return ZM_ERROR;
}
/*
* Read a character from the modem line with timeout ...
* Eat parity bit, XON and XOFF characters.
*/
static int
noxrd7(qdaemon)
struct sdaemon *qdaemon;
{
int c;
for (;;) {
READCHAR (qdaemon, c, cZtimeout);
if (c < 0)
return c;
switch (c &= 0177) {
case XON:
continue;
case XOFF:
READCHAR (qdaemon, c, XON_WAIT);
continue;
case CR:
case ZDLE:
return c;
default:
if (fZesc_ctl && !(c & 0140))
continue;
return c;
}
}
}
/*
* Read a character from the receive buffer, or from the line if empty ...
*
* <timeout> is in seconds (maybe make it tenths of seconds like in Zmodem?)
*/
static int
realreadchar(qdaemon, timeout)
struct sdaemon *qdaemon;
int timeout;
{
int c;
if ((c = breceive_char (qdaemon->qconn, timeout, TRUE)) >= 0)
return c;
switch (c) {
case -1:
return ZM_TIMEOUT;
case -2:
return ZM_RCDO;
}
ulog (LOG_FATAL, "realreadchar: breceive_char() returned %d", c);
return ZM_ERROR;
}
/*
* Check if the receive channel has any characters in it.
*
* At present we can only test the receive buffer. No mechanism is available
* to go to the hardware. This should not be a problem though, as long as all
* appropriate calls to fsend_data() set <fdoread> to TRUE.
*/
static boolean
fzreceive_ready()
{
return iPrecstart != iPrecend;
}
/*
* Store integer value in an achdrval_t ...
*/
static void
stohdr(val, hdr)
hdrval_t val;
achdrval_t hdr;
{
hdr[ZP0] = (char) val;
hdr[ZP1] = (char) (val >> 8);
hdr[ZP2] = (char) (val >> 16);
hdr[ZP3] = (char) (val >> 24);
}
/*
* Recover an integer from a header ...
*/
static hdrval_t
rclhdr(hdr)
achdrval_t hdr;
{
hdrval_t v;
v = hdr[ZP3] & 0377;
v = (v << 8) | (hdr[ZP2] & 0377);
v = (v << 8) | (hdr[ZP1] & 0377);
v = (v << 8) | (hdr[ZP0] & 0377);
return v;
}
/*
* Encode a <hdrval_t> from the byte count ...
*
* We use to store the byte count / 32 and a message sequence number which
* made this function very useful. Don't remove it.
* FIXME: Well, maybe remove it later.
*/
static hdrval_t
hvzencode_data_hdr(cbytes)
winpos_t cbytes;
{
return (hdrval_t) cbytes;
}
/*
* Decode a <hdrval_t> into a byte count ...
*
* We use to store the byte count / 32 and a message sequence number which
* made this function very useful. Don't remove it.
* FIXME: Well, maybe remove it later.
*/
static void
zdecode_data_hdr(hdrval, pcbytes)
hdrval_t hdrval;
winpos_t *pcbytes;
{
*pcbytes = hdrval;
}
/*
* Update <wpZrxpos> from the received data header value ...
*
* FIXME: Here is where we'd handle wrapping around at 4 gigabytes.
*/
static winpos_t
lzupdate_rxpos(rx_hdr, rxpos, lrxpos, txpos)
achdrval_t rx_hdr;
winpos_t rxpos,lrxpos,txpos;
{
winpos_t rx_pktpos;
zdecode_data_hdr (rclhdr (rx_hdr), &rx_pktpos);
DEBUG_MESSAGE4 (DEBUG_PROTO,
"lzupdate_rxpos: rx_pktpos=0x%lx, rxpos=0x%lx, lrxpos=0x%lx, txpos=0x%lx",
rx_pktpos, rxpos, lrxpos, txpos);
/*
* Check if <rx_pktpos> valid. It could be old.
*/
if (rx_pktpos < wpZlrxpos
|| rx_pktpos > ((wpZtxpos + 1024L) & ~1023L))
return rxpos;
return rx_pktpos;
}
|