1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165
|
char *fnsv = "C-Kermit functions, 9.0.233, 3 Jun 2011";
char *nm[] = { "Disabled", "Local only", "Remote only", "Enabled" };
/* C K C F N S -- System-independent Kermit protocol support functions. */
/* ...Part 1 (others moved to ckcfn2,3 to make this module smaller) */
/*
Author: Frank da Cruz <fdc@columbia.edu>,
Columbia University Academic Information Systems, New York City.
Copyright (C) 1985, 2011,
Trustees of Columbia University in the City of New York.
All rights reserved. See the C-Kermit COPYING.TXT file or the
copyright text in the ckcmai.c module for disclaimer and permissions.
*/
/*
System-dependent primitives defined in:
ck?tio.c -- terminal (communications) i/o
cx?fio.c -- file i/o, directory structure
*/
#include "ckcsym.h" /* Needed for Stratus VOS */
#include "ckcasc.h" /* ASCII symbols */
#include "ckcdeb.h" /* Debug formats, typedefs, etc. */
#include "ckcker.h" /* Symbol definitions for Kermit */
#include "ckcxla.h" /* Character set symbols */
#include "ckcnet.h" /* VMS definition of TCPSOCKET */
#ifdef OS2
#ifdef OS2ONLY
#include <os2.h>
#endif /* OS2ONLY */
#include "ckocon.h"
#endif /* OS2 */
int docrc = 0; /* Accumulate CRC for \v(crc16) */
long crc16 = 0L; /* File CRC = \v(crc16) */
int gnferror = 0; /* gnfile() failure reason */
extern CHAR feol;
extern int byteorder, xflg, what, fmask, cxseen, czseen, nscanfile, sysindex;
extern int xcmdsrc, dispos, matchfifo;
extern int inserver;
extern int nolinks;
#ifdef VMSORUNIX
extern int zgfs_dir;
#ifdef CKSYMLINK
extern int zgfs_link;
#endif /* CKSYMLINK */
#endif /* VMSORUNIX */
#ifndef NOXFER
#ifndef NOICP
#ifndef NOSPL
extern char * clcmds;
extern int haveurl;
#ifdef CK_APC
extern int apcactive, adl_ask;
#endif /* CK_APC */
#endif /* NOSPL */
#endif /* NOICP */
extern int remfile;
/* (move these prototypes to the appropriate .h files...) */
#ifdef COMMENT
/* Not used */
#ifdef VMS
_PROTOTYP( int getvnum, (char *) );
#endif /* VMS */
#endif /* COMMENT */
_PROTOTYP( static int bgetpkt, (int) );
#ifndef NOCSETS
_PROTOTYP( int lookup, (struct keytab[], char *, int, int *) );
#endif /* NOCSETS */
#ifndef NOSPL
_PROTOTYP( int zzstring, (char *, char **, int *) );
#endif /* NOSPL */
#ifdef OS2
#include <io.h>
#ifdef OS2ONLY
#include <os2.h>
#endif /* OS2ONLY */
#endif /* OS2 */
#ifdef VMS
#include <errno.h>
#endif /* VMS */
/* Externals from ckcmai.c */
extern int srvcdmsg, srvidl, idletmo;
extern char * cdmsgfile[];
extern int spsiz, spmax, rpsiz, timint, srvtim, rtimo, npad, ebq, ebqflg,
rpt, rptq, rptflg, capas, keep, fncact, pkttim, autopar, spsizr, xitsta;
extern int pktnum, bctr, bctu, bctf, bctl, clfils, sbufnum, protocol,
size, osize, spktl, nfils, ckwarn, timef, spsizf, sndtyp, rcvtyp, success;
extern int parity, turn, network, whatru, fsecs, justone, slostart,
ckdelay, displa, mypadn, moving, recursive, nettype;
extern long filcnt;
extern CK_OFF_T
tfc, fsize, sendstart, rs_len, flci, flco, tlci, tlco, calibrate;
extern long filrej, oldcps, cps, peakcps, ccu, ccp, filestatus;
extern int fblksiz, frecl, frecfm, forg, fcctrl, fdispla, skipbup;
extern int spackets, rpackets, timeouts, retrans, crunched, wmax, wcur;
extern int hcflg, binary, fncnv, b_save, f_save, server;
extern int nakstate, discard, rejection, local, xfermode, interrupted;
extern int rq, rqf, sq, wslots, wslotn, wslotr, winlo, urpsiz, rln;
extern int fnspath, fnrpath, eofmethod, diractive, whatru2, wearealike;
extern int atcapr, atcapb, atcapu;
extern int lpcapr, lpcapb, lpcapu;
extern int swcapr, swcapb, swcapu;
extern int lscapr, lscapb, lscapu;
extern int rscapr, rscapb, rscapu;
extern int rptena, rptmin;
extern int sseqtbl[];
extern int numerrs, nzxopts;
extern long rptn;
extern int maxtry;
extern int stdouf;
extern int sendmode;
extern int carrier, ttprty;
extern int g_fnrpath;
#ifdef TCPSOCKET
extern int ttnproto;
#endif /* TCPSOCKET */
#ifndef NOSPL
extern int sndxin, sndxhi, sndxlo;
#endif /* NOSPL */
extern int g_binary, g_fncnv;
#ifdef GFTIMER
extern CKFLOAT fpfsecs;
#endif /* GFTIMER */
#ifdef OS2
extern struct zattr iattr;
#endif /* OS2 */
#ifdef PIPESEND
extern int usepipes;
#endif /* PIPESEND */
extern int pipesend;
#ifdef STREAMING
extern int streamrq, streaming, streamed, streamok;
#endif /* STREAMING */
extern int reliable, clearrq, cleared, urclear;
extern int
atenci, atenco, atdati, atdato, atleni, atleno, atblki, atblko,
attypi, attypo, atsidi, atsido, atsysi, atsyso, atdisi, atdiso;
extern int bigsbsiz, bigrbsiz;
extern char *versio;
extern char *filefile;
extern char whoareu[], * cksysid;
#ifndef NOSERVER
extern int ngetpath;
extern char * getpath[];
extern int fromgetpath;
#endif /* NOSERVER */
#ifdef CK_LOGIN
extern int isguest;
#endif /* CK_LOGIN */
extern int srvcmdlen;
extern CHAR *srvcmd, * epktmsg;
extern CHAR padch, mypadc, eol, seol, ctlq, myctlq, sstate, myrptq;
extern CHAR *data, padbuf[], stchr, mystch;
extern CHAR *srvptr;
extern CHAR *rdatap;
extern char *cmarg, *cmarg2, **cmlist, filnam[], ofilnam[];
extern char *rfspec, *prfspec, *rrfspec, *prrfspec, *sfspec, *psfspec, *rfspec;
extern char fspec[];
extern int fspeclen;
#ifndef NOMSEND
extern struct filelist * filehead, * filenext;
extern int addlist;
#endif /* NOMSEND */
_PROTOTYP( int lslook, (unsigned int b) ); /* Locking Shift Lookahead */
_PROTOTYP( int szeof, (CHAR *s) );
_PROTOTYP( VOID fnlist, (void) );
#endif /* NOXFER */
extern CK_OFF_T ffc;
/* Character set Translation */
#ifndef NOCSETS
extern int tcharset, fcharset, dcset7, dcset8;
extern int fcs_save, tcs_save;
extern int ntcsets, xlatype, cseqtab[];
extern struct csinfo tcsinfo[], fcsinfo[];
extern int r_cset, s_cset, afcset[];
#ifdef UNICODE
extern int ucsorder, fileorder;
#endif /* UNICODE */
_PROTOTYP( CHAR ident, (CHAR) ); /* Identity translation function */
/* Arrays of and pointers to character translation functions */
#ifdef CK_ANSIC
extern CHAR (*rx)(CHAR); /* Pointer to input character translation function */
extern CHAR (*sx)(CHAR); /* Pointer to output character translation function */
extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* Byte-to-Byte Send */
extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* Byte-to-Byte Recv */
#ifdef UNICODE
extern int (*xut)(USHORT); /* Translation function UCS to TCS */
extern int (*xuf)(USHORT); /* Translation function UCS to FCS */
extern USHORT (*xtu)(CHAR); /* Translation function TCS to UCS */
extern USHORT (*xfu)(CHAR); /* Translation function FCS to UCS */
#endif /* UNICODE */
#else /* The same declarations again for non-ANSI comilers... */
extern CHAR (*rx)();
extern CHAR (*sx)();
extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])();
extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])();
#ifdef UNICODE
extern int (*xut)();
extern int (*xuf)();
extern USHORT (*xtu)();
extern USHORT (*xfu)();
#endif /* UNICODE */
#endif /* CK_ANSIC */
#endif /* NOCSETS */
/* (PWP) external def. of things used in buffered file input and output */
#ifdef DYNAMIC
extern char *zinbuffer, *zoutbuffer;
#else
extern char zinbuffer[], zoutbuffer[];
#endif /* DYNAMIC */
extern char *zinptr, *zoutptr;
extern int zincnt, zoutcnt, zobufsize, xfrxla;
extern long crcta[], crctb[]; /* CRC-16 generation tables */
extern int rseqtbl[]; /* Rec'd-packet sequence # table */
#ifndef NOXFER
/* Criteria used by gnfile()... */
char sndafter[19] = { NUL, NUL };
char sndbefore[19] = { NUL, NUL };
char sndnafter[19] = { NUL, NUL };
char sndnbefore[19] = { NUL, NUL };
char *sndexcept[NSNDEXCEPT] = { NULL, NULL };
char *rcvexcept[NSNDEXCEPT] = { NULL, NULL };
CK_OFF_T sndsmaller = (CK_OFF_T)-1;
CK_OFF_T sndlarger = (CK_OFF_T)-1;
/* Variables defined in this module but shared by other modules. */
int xfrbel = 1;
char * ofperms = ""; /* Output file permissions */
int autopath = 0; /* SET RECEIVE PATHNAMES AUTO flag */
#ifdef CALIBRATE
#define CAL_O 3
#define CAL_M 253
int cal_j = 0;
CHAR
cal_a[] = {
16, 45, 98, 3, 52, 41, 14, 7, 76,165,122, 11,104, 77,166, 15,
160, 93, 18, 19,112, 85, 54, 23,232,213, 90, 27, 12, 81,126, 31,
4,205, 34, 35,144, 73,110, 39, 28,133,218, 43,156, 65,102, 47,
84, 61, 50, 51,208,117, 86, 55, 8,245, 74, 59, 44,125,222, 63,
80, 1,162, 67,116,105,206, 71,120, 9,250, 75, 88, 97, 6, 79,
100,221, 82, 83, 36, 89, 94, 87, 40, 21,106, 91,236,145,150, 95,
228, 33,130, 99,148,137,198,103,108,169, 42,107,184,129, 78,111,
0, 49,114,115, 32,121,254,119,172, 57,138,123,152,177, 22,127,
240,193, 2,131,176, 5, 38,135,204,229, 10,139,200,161,174,143,
128, 17,146,147, 68,153, 30,151, 72,217,170,155, 24,209, 62,159,
64,225,194,163,244,201, 70,167,216,197,234,171,188,109,230,175,
212,113,178,179,132,185,190,183,136,249,202,187, 92,241,118,191,
48,237, 66,195, 96,233,142,199,248, 37, 58,203, 60, 13,134,207,
20, 29,210,211,164,149,182,215,220, 25, 26,219,124,157,246,223,
180,141,226,227,192,101,238,231, 56, 69,154,235,252,173, 46,239,
224,253,242,243,196, 53,214,247,168,181,186,251,140,189,158,255
};
#endif /* CALIBRATE */
char * rf_err = "Error receiving file"; /* rcvfil() error message */
#ifdef CK_SPEED
short ctlp[256] = { /* Control-Prefix table */
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* C0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* G0 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, /* DEL */
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* C1 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* G1 */
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 /* 255 */
};
#endif /* CK_SPEED */
int sndsrc; /* Flag for where to get names of files to send: */
/* -1: znext() function */
/* 0: stdin */
/* >0: list in cmlist or other list */
/* -9: calibrate */
int memstr; /* Flag for input from memory string */
int funcstr; /* Flag for input from function */
int bestlen = 0;
int maxsend = 0;
int gnf_binary = 0; /* Prevailing xfer mode for gnfile */
#ifdef pdp11
#define MYINITLEN 32
#else
#define MYINITLEN 100
#endif /* pdp11 */
CHAR myinit[MYINITLEN]; /* Copy of my Send-Init data */
/* Variables local to this module */
#ifdef TLOG
#ifndef XYZ_INTERNAL
static
#endif /* XYZ_INTERNAL */
char *fncnam[] = {
"rename", "replace", "backup", "append", "discard", "ask",
"update", "dates-differ", ""
};
#endif /* TLOG */
static char *memptr; /* Pointer for memory strings */
#ifdef VMS
extern int batch;
#else
extern int backgrd;
#endif /* VMS */
#ifdef CK_CTRLZ
static int lastchar = 0;
#endif /* CK_CTRLZ */
#ifdef CK_ANSIC
static int (*funcptr)(void); /* Pointer for function strings */
#else
static int (*funcptr)();
#endif /* CK_ANSIC */
#ifdef pdp11
#define CMDSTRL 50
static char cmdstr[50]; /* System command string. */
#else
#ifdef BIGBUFOK
#define CMDSTRL 1024
#else
#define CMDSTRL 256
#endif /* BIGBUFOK */
static char cmdstr[CMDSTRL+1];
#endif /* pdp11 */
static int drain; /* For draining stacked-up ACKs. */
static int first; /* Flag for first char from input */
static CHAR t; /* Current character */
#ifdef COMMENT
static CHAR next; /* Next character */
#endif /* COMMENT */
static int ebqsent = 0; /* 8th-bit prefix bid that I sent */
static int lsstate = 0; /* Locking shift state */
static int lsquote = 0; /* Locking shift quote */
extern int quiet;
/* E N C S T R -- Encode a string from memory. */
/*
Call this instead of getpkt() if source is a string, rather than a file.
Note: Character set translation is never done in this case.
*/
#ifdef COMMENT
#define ENCBUFL 200
#ifndef pdp11
CHAR encbuf[ENCBUFL];
#else
/* This is gross, but the pdp11 root segment is out of space */
/* Will allocate it in ckuusr.c. */
extern CHAR encbuf[];
#endif /* pdp11 */
#endif /* COMMENT */
/*
Encode packet data from a string in memory rather than from a file.
Returns the length of the encoded string on success, -1 if the string
could not be completely encoded into the currently negotiated data
field length.
*/
int
#ifdef CK_ANSIC
encstr(CHAR *s)
#else /* CK_ANSIC */
encstr(s) CHAR* s;
#endif /* CK_ANSIC */
{
/*
Recoded 30 Jul 94 to use the regular data buffer and the negotiated
maximum packet size. Previously we were limited to the length of encbuf[].
Also, to return a failure code if the entire encoded string would not fit.
Modified 14 Jul 98 to return length of encoded string.
*/
int m, rc, slen; char *p;
if (!data) { /* Watch out for null pointers. */
debug(F100,"SERIOUS ERROR: encstr data == NULL","",0);
return(-1);
}
if (!s) s = (CHAR *)""; /* Ditto. */
slen = strlen((char *)s); /* Length of source string. */
debug(F111,"encstr",s,slen);
rc = 0; /* Return code. */
m = memstr; p = memptr; /* Save these. */
memptr = (char *)s; /* Point to the string. */
/* debug(F101,"encstr memptr 1","",memptr); */
memstr = 1; /* Flag memory string as source. */
first = 1; /* Initialize character lookahead. */
*data = NUL; /* In case s is empty */
debug(F101,"encstr spsiz","",spsiz);
rc = getpkt(spsiz,0); /* Fill a packet from the string. */
debug(F101,"encstr getpkt rc","",rc);
if (rc > -1 && memptr < (char *)(s + slen)) { /* Means we didn't encode */
rc = -1; /* the whole string. */
debug(F101,"encstr string too big","",size);
}
debug(F101,"encstr getpkt rc","",rc);
memstr = m; /* Restore memory string flag */
memptr = p; /* and pointer */
first = 1; /* Put this back as we found it. */
return(rc);
}
/* Output functions passed to 'decode': */
int /* Put character in server command buffer */
#ifdef CK_ANSIC
putsrv(char c)
#else
putsrv(c) register char c;
#endif /* CK_ANSIC */
/* putsrv */ {
*srvptr++ = c;
*srvptr = '\0'; /* Make sure buffer is null-terminated */
return(0);
}
int /* Output character to console. */
#ifdef CK_ANSIC
puttrm(char c)
#else
puttrm(c) register char c;
#endif /* CK_ANSIC */
/* puttrm */ {
extern int rcdactive;
#ifndef NOSPL
extern char * qbufp; /* If REMOTE QUERY active, */
extern int query, qbufn; /* also store response in */
if (query && qbufn++ < 1024) { /* query buffer. */
*qbufp++ = c;
*qbufp = NUL;
}
if (!query || !xcmdsrc)
#endif /* NOSPL */
/*
This routine is used (among other things) for printing the server's answer
to a REMOTE command. But REMOTE CD is special because it isn't really
asking for an answer from the server. Thus some people want to suppress
the confirmation message (e.g. when the server sends back the actual path
of the directory CD'd to), and expect to be able to do this with SET QUIET
ON. But they would not want SET QUIET ON to suppress the other server
replies, which are pointless without their answers. Thus the "rcdactive"
flag (REMOTE CD command is active). Thu Oct 10 16:38:21 2002
*/
if (!(quiet && rcdactive)) /* gross, yuk */
conoc(c);
return(0);
}
#endif /* NOXFER */
int /* Output char to file. */
#ifdef CK_ANSIC
putmfil(char c) /* Just like putfil but to ZMFILE */
#else /* rather than ZOFILE... */
putmfil(c) register char c;
#endif /* CK_ANSIC */
/* putmfil */ {
debug(F000,"putfil","",c);
if (zchout(ZMFILE, (char) (c & fmask)) < 0) {
czseen = 1;
debug(F101,"putfil zchout write error, setting czseen","",1);
return(-1);
}
return(0);
}
int /* Output char to nowhere. */
#ifdef CK_ANSIC
putnowhere(char c)
#else
putnowhere(c) register char c;
#endif /* CK_ANSIC */
/* putnowhere */ {
return(0);
}
int /* Output char to file. */
#ifdef CK_ANSIC
putfil(char c)
#else
putfil(c) register char c;
#endif /* CK_ANSIC */
/* putfil */ {
debug(F000,"putfil","",c);
if (zchout(ZOFILE, (char) (c & fmask)) < 0) {
czseen = 1; /* If write error... */
debug(F101,"putfil zchout write error, setting czseen","",1);
return(-1);
}
return(0);
}
/*
The following function is a wrapper for putfil(). The only reason for its
existence is to be passed as a function pointer to decode(), which treats
putfil() itself specially -- bypassing it and using an internal macro
instead to speed things up. Use zputfil() instead of putfil() in cases where
we do not want this to happen, e.g. when we need to send output to the file
with a mixture of zchout() and zsout()/zsoutl() calls (as is the case with
incoming short-form REMOTE command replies redirected to a file), which would
otherwise result in data written to the file out of order.
*/
int
#ifdef CK_ANSIC
zputfil(char c)
#else
zputfil(c) register char c;
#endif /* CK_ANSIC */
/* zputfil */ {
return(putfil(c));
}
#ifndef NOXFER
/* D E C O D E -- Kermit packet decoding procedure */
/*
Call with string to be decoded and an output function.
Returns 0 on success, -1 on failure (e.g. disk full).
This is the "inner loop" when receiving files, and must be coded as
efficiently as possible. Note some potential problems: if a packet
is badly formed, having a prefixed sequence ending prematurely, this
function, as coded, could read past the end of the packet. This has
never happened, thus the additional (time-consuming) tests have not
been added.
*/
static CHAR *xdbuf; /* Global version of decode()'s buffer pointer */
/* for use by translation functions. */
/* Function for pushing a character onto decode()'s input stream. */
VOID
#ifdef CK_ANSIC
zdstuff(CHAR c)
#else
zdstuff(c) CHAR c;
#endif /* CK_ANSIC */
/* zdstuff */ {
xdbuf--; /* Back up the pointer. */
*xdbuf = c; /* Stuff the character. */
}
#ifdef CKTUNING
/*
Trimmed-down packet decoder for binary-mode no-parity transfers.
decode() is the full version.
*/
int
#ifdef CK_ANSIC
bdecode(CHAR *buf, int (*fn)(char))
#else
bdecode(buf,fn) register CHAR *buf; register int (*fn)();
#endif /* CK_ANSIC */
/* bdecode */ {
register unsigned int a, a7; /* Various copies of current char */
int ccpflg; /* For Ctrl-unprefixing stats */
int t; /* Int version of character */
int len;
long z; /* For CRC calculation */
CHAR c; /* Current character */
if (!binary || parity || fn != putfil) /* JUST IN CASE */
return(decode(buf,fn,1));
debug(F100,"BDECODE","",0);
xdbuf = buf; /* Global copy of source pointer. */
len = rln; /* Number of bytes in data field */
while (len > 0) {
a = *xdbuf++ & 0xff; /* Get next character */
len--;
rpt = 0; /* Initialize repeat count. */
if (a == rptq && rptflg) { /* Got a repeat prefix? */
rpt = xunchar(*xdbuf++ & 0xFF); /* Yes, get the repeat count, */
rptn += rpt;
a = *xdbuf++ & 0xFF; /* and get the prefixed character. */
len -= 2;
}
ccpflg = 0; /* Control prefix flag. */
if (a == ctlq) { /* If control prefix, */
a = *xdbuf++ & 0xFF; /* get its operand */
len--;
a7 = a & 0x7F; /* and its low 7 bits. */
if ((a7 >= 0100 && a7 <= 0137) || a7 == '?') { /* Controllify */
a = ctl(a); /* if in control range. */
a7 = a & 0x7F;
ccpflg = 1; /* Note that we did this */
ccp++; /* Count for stats */
}
} else a7 = a & 0x7f; /* Not control quote */
if (a7 < 32 || a7 == 127) /* A bare control character? */
if (!ccpflg) ccu++; /* Count it */
if (!rpt) rpt = 1;
for (; rpt > 0; rpt--) { /* Output the char RPT times */
#ifdef CALIBRATE
if (calibrate) {
ffc++;
continue;
}
#endif /* CALIBRATE */
#ifdef OS2
if (xflg && !remfile) { /* Write to virtual screen */
char _a;
_a = a & fmask;
t = conoc(_a);
if (t < 1)
t = -1;
} else
#endif /* OS2 */
t = zmchout(a & fmask); /* zmchout is a macro */
if (t < 0) {
debug(F101,"bdecode write error - errno","",errno);
return(-1);
}
ffc++; /* Count the character */
if (docrc && !remfile) { /* Update file CRC */
c = a; /* Force conversion to unsigned char */
z = crc16 ^ (long)c;
crc16 = (crc16 >> 8) ^
(crcta[(z & 0xF0) >> 4] ^ crctb[z & 0x0F]);
}
}
#ifdef CK_CTRLZ
lastchar = a;
#endif /* CK_CTRLZ */
}
return(0);
}
#endif /* CKTUNING */
#endif /* NOXFER */
/* P N B Y T E -- Output next byte to file or other destination */
static CK_OFF_T offc = 0L;
static int
#ifdef CK_ANSIC
pnbyte(CHAR c, int (*fn)(char))
#else
pnbyte(c,fn) CHAR c; int (*fn)();
#endif /* CK_ANSIC */
/* pnbyte */ {
int rc;
long z;
#ifdef OS2
#ifndef NOXFER
if (xflg && !remfile) { /* Write to virtual screen */
char _a;
_a = c & fmask;
rc = conoc(_a);
if (rc < 1)
return(-1);
} else
#endif /* NOXFER */
#endif /* OS2 */
{
if (fn == putfil) { /* Execute output function */
rc = zmchout(c); /* to-file macro (fast) */
} else if (!fn) {
rc = putchar(c); /* to-screen macro (fast) */
} else {
rc = (*fn)(c); /* function call (not as fast) */
}
if (rc < 0)
return(rc);
}
/*
Both xgnbyte() and xpnbyte() increment ffc (the file byte counter).
During file transfer, only one of these functions is called. However,
the TRANSLATE command is likely to call them both. offc, therefore,
contains the output byte count, necessary for handling the UCS-2 BOM.
NOTE: It might be safe to just test for W_SEND, FTP or not.
*/
if ((what & (W_FTP|W_SEND)) != (W_FTP|W_SEND)) {
offc++; /* Count the byte */
ffc++; /* Count the byte */
}
#ifndef NOXFER
if (docrc && !xflg && !remfile) { /* Update file CRC */
z = crc16 ^ (long)c;
crc16 = (crc16 >> 8) ^
(crcta[(z & 0xF0) >> 4] ^ crctb[z & 0x0F]);
}
#endif /* NOXFER */
return(1);
}
/*
X P N B Y T E -- Translate and put next byte to file.
Only for Unicode. Call with next untranslated byte from incoming
byte stream, which can be in any Transfer Character Set: UCS-2, UTF-8,
Latin-1, Latin-Hebrew, etc. Translates to the file character set and
writes bytes to the output file. Call with character to translate
as an int, plus the transfer character set (to translate from) and the
file character set (to translate to), or -1,0,0 to reset the UCS-2 byte
number (which should be done at the beginning of a file). If the transfer
(source) character-set is UCS-2, bytes MUST arrive in Big-Endian order.
Returns:
-1: On error
0: Nothing to write (mid-sequence)
>0: Number of bytes written.
*/
#ifdef KANJI
static int jstate = 0, jx = 0; /* For outputting JIS-7 */
static char jbuf[16] = { NUL, NUL };
#endif /* KANJI */
int
#ifdef CK_ANSIC
xpnbyte(int a, int tcs, int fcs, int (*fn)(char))
#else
xpnbyte(a,tcs,fcs,fn) int a, tcs, fcs; int (*fn)();
#endif /* CK_ANSIC */
/* xpnbyte */ {
#ifdef UNICODE
extern int ucsbom; /* Byte order */
#endif /* UNICODE */
/* CHAR c; */ /* Unsigned char worker */
static union ck_short uc, eu, sj; /* UCS-2, EUC, and Shift-JIS workers */
USHORT ch; /* ditto... */
USHORT * us = NULL; /* ditto... */
int c7, rc, haveuc = 0; /* Return code and UCS-2 flag */
int utferror = 0; /* UTF-8 error */
static int bn = 0; /* UCS-2 byte number */
int swapping = 0; /* Swapping UCS bytes to output? */
/* swapping must be 0 or 1 */
if (a == -1 && (tcs | fcs) == 0) { /* Reset in case previous run */
bn = 0; /* left bn at 1... */
offc = (CK_OFF_T)0;
debug(F101,"xpnbyte RESET","",bn);
return(0);
}
debug(F001,"xpnbyte a","",a);
#ifdef UNICODE
/*
byteorder = hardware byte order of this machine.
ucsorder = override by SET FILE UCS BYTE-ORDER command.
fileorder = byte order of UCS-2 input file detected from BOM.
swapping applies only when output charset is UCS-2.
*/
if (ucsorder != 1 && ucsorder != 0) /* Also just in case... */
ucsorder = byteorder;
if ((byteorder && !ucsorder) || (!byteorder && fileorder))
swapping = 1; /* Swapping bytes to output */
#ifdef COMMENT
debug(F101,"xpnbyte ucsorder","",ucsorder);
debug(F101,"xpnbyte swapping","",swapping);
#endif /* COMMENT */
if (tcs == TC_UTF8) { /* 'a' is from a UTF-8 stream */
ch = a;
if (fcs == TC_UTF8) /* Output is UTF-8 too */
return(pnbyte(ch,fn)); /* so just copy. */
rc = utf8_to_ucs2(ch,&us); /* Otherwise convert to UCS-2 */
if (rc == 0) { /* Done with this sequence */
uc.x_short = *us; /* We have a Unicode */
haveuc = 1;
} else if (rc < 0) { /* Error */
debug(F101,"xpnbyte UTF-8 conversion error","",rc);
haveuc = 1; /* Replace by U+FFFD */
uc.x_short = *us;
utferror = 1;
} else /* Sequence incomplete */
return(0);
} else if (tcs == TC_UCS2) { /* 'a' is UCS-2 */
/* Here we have incoming UCS-2 in guaranteed Big Endian order */
/* so we must exchange bytes if local machine is Little Endian. */
switch (bn) { /* Which byte? */
case 0: /* High... */
uc.x_char[byteorder] = (unsigned)a & 0xff;
bn++;
return(0); /* Wait for next */
case 1: /* Low... */
uc.x_char[1-byteorder] = (unsigned)a & 0xff;
bn = 0; /* Done with sequence */
haveuc = 1; /* Have a Unicode */
}
} else
#endif /* UNICODE */
#ifdef KANJI /* Whether UNICODE is defined or not */
if (tcs == TC_JEUC) { /* Incoming Japanese EUC */
int bad = 0;
static int kanji = 0; /* Flags set in case 0 for case 1 */
static int kana = 0;
switch (bn) { /* Byte number */
case 0: /* Byte 0 */
eu.x_short = 0;
if ((a & 0x80) == 0) {
sj.x_short = (unsigned)a & 0xff; /* Single byte */
kanji = kana = 0;
} else { /* Double byte */
c7 = a & 0x7f;
if (c7 > 0x20 && c7 < 0x7f) { /* Kanji */
eu.x_char[byteorder] = (CHAR) a; /* Store first byte */
bn++; /* Set up for second byte */
kanji = 1;
kana = 0;
return(0);
} else if (a == 0x8e) { /* SS2 -- Katakana prefix */
eu.x_char[byteorder] = (CHAR) a; /* Save it */
bn++;
kana = 1;
kanji = 0;
return(0);
} else {
bad++;
}
}
break;
case 1: /* Byte 1 */
bn = 0;
if (kanji) {
eu.x_char[1-byteorder] = (CHAR) a;
sj.x_short = eu_to_sj(eu.x_short);
break;
} else if (kana) {
sj.x_short = (CHAR) (a | 0x80);
break;
} else { /* (shouldn't happen) */
bad++;
}
}
/* Come here with one Shift-JIS character */
#ifdef UNICODE
if (bad) {
uc.x_short = 0xfffd;
} else {
uc.x_short = sj_to_un(sj.x_short); /* Convert to Unicode */
}
haveuc = 1;
#endif /* UNICODE */
} else
#endif /* KANJI */
#ifdef UNICODE
uc.x_short = (unsigned)a & 0xff; /* Latin-1 or whatever... */
/* Come here with uc = the character to be translated. */
/* If (haveuc) it's UCS-2 in native order, otherwise it's a byte. */
debug(F101,"xpnbyte haveuc","",haveuc);
if (haveuc) { /* If we have a Unicode... */
debug(F001,"xpnbyte uc.x_short","[A]",uc.x_short);
debug(F101,"xpnbyte feol","",feol);
if (what & W_XFER) { /* If transferring a file */
if (feol && uc.x_short == CR) { /* handle eol conversion. */
return(0);
} else if (feol && uc.x_short == LF) {
uc.x_short = feol;
}
}
debug(F001,"xpnbyte uc.x_short","[B]",uc.x_short);
if (fcs == FC_UCS2) { /* And FCS is UCS-2 */
/* Write out the bytes in the appropriate byte order */
int count = 0;
#ifndef IKSDONLY
#ifdef OS2
extern int k95stdout,wherex[],wherey[];
extern unsigned char colorcmd;
union {
USHORT ucs2;
UCHAR bytes[2];
} output;
#endif /* OS2 */
#endif /* IKSDONLY */
if (!offc && ucsbom) { /* Beginning of file? */
#ifndef IKSDONLY
#ifdef OS2
if (fn == NULL && !k95stdout && !inserver) {
offc++;
#ifdef COMMENT
/* Don't print the BOM to the display */
output.bytes[0] = (!ucsorder ? 0xff : 0xfe);
output.bytes[1] = (!ucsorder ? 0xfe : 0xff);
VscrnWrtUCS2StrAtt(VCMD,
&output.ucs2,
1,
wherey[VCMD],
wherex[VCMD],
&colorcmd
);
#endif /* COMMENT */
} else
#endif /* OS2 */
#endif /* IKSDONLY */
{
if ((rc = pnbyte((ucsorder ? 0xff : 0xfe),fn)) < 0)
return(rc); /* BOM */
if ((rc = pnbyte((ucsorder ? 0xfe : 0xff),fn)) < 0)
return(rc);
}
count += 2;
}
if (utferror) {
#ifndef IKSDONLY
#ifdef OS2
if (fn == NULL && !k95stdout && !inserver) {
offc++;
output.bytes[0] = (!ucsorder ? 0xfd : 0xff);
output.bytes[1] = (!ucsorder ? 0xff : 0xfd);
VscrnWrtUCS2StrAtt(VCMD,
&output.ucs2,
1,
wherey[VCMD],
wherex[VCMD],
&colorcmd
);
} else
#endif /* OS2 */
#endif /* IKSDONLY */
{
if ((rc = pnbyte((ucsorder ? 0xfd : 0xff),fn)) < 0)
return(rc);
if ((rc = pnbyte((ucsorder ? 0xff : 0xfd),fn)) < 0)
return(rc);
}
count += 2;
}
#ifndef IKSDONLY
#ifdef OS2
if (fn == NULL && !k95stdout && !inserver) {
offc++;
output.bytes[0] = uc.x_char[swapping];
output.bytes[1] = uc.x_char[1-swapping];
VscrnWrtUCS2StrAtt(VCMD,
&output.ucs2,
1,
wherey[VCMD],
wherex[VCMD],
&colorcmd
);
} else
#endif /* OS2 */
#endif /* IKSDONLY */
{
if ((rc = pnbyte(uc.x_char[swapping],fn)) < 0)
return(rc);
if ((rc = pnbyte(uc.x_char[1-swapping],fn)) < 0)
return(rc);
}
count += 2;
return(count);
} else if (fcs == FC_UTF8) { /* Convert to UTF-8 */
CHAR * buf = NULL;
int i, count;
if (utferror) {
if ((rc = pnbyte((ucsorder ? 0xbd : 0xff),fn)) < 0)
return(rc);
if ((rc = pnbyte((ucsorder ? 0xff : 0xbd),fn)) < 0)
return(rc);
}
if ((count = ucs2_to_utf8(uc.x_short,&buf)) < 1)
return(-1);
debug(F011,"xpnbyte buf",buf,count);
for (i = 0; i < count; i++)
if ((rc = pnbyte(buf[i],fn)) < 0)
return(rc);
if (utferror)
count += 2;
return(count);
} else { /* Translate UCS-2 to byte */
if (uc.x_short == 0x2028 || uc.x_short == 0x2029) {
if (utferror)
pnbyte(UNK,fn);
if (feol)
return(pnbyte((CHAR)feol,fn));
if ((rc = pnbyte((CHAR)CR,fn)) < 0)
return(rc);
if ((rc = pnbyte((CHAR)LF,fn)) < 0)
return(rc);
else
return(utferror ? 3 : 2);
} else if (xuf) { /* UCS-to-FCS function */
int x = 0;
if (utferror)
pnbyte(UNK,fn);
if ((rc = (*xuf)(uc.x_short)) < 0) /* These can fail... */
ch = UNK;
else
ch = (unsigned)((unsigned)rc & 0xffff);
x = pnbyte(ch,fn);
if (x < 0)
return(x);
else if (utferror)
x++;
return(x);
#ifdef KANJI
/* Also see the non-Unicode Kanji section further down in this function. */
} else if (fcsinfo[fcs].alphabet == AL_JAPAN) {
/* Translate UCS-2 to Japanese set */
debug(F001,"xpnbyte uc","",uc.x_short);
sj.x_short = un_to_sj(uc.x_short); /* First to Shift-JIS */
debug(F001,"xpnbyte sj","",sj.x_short);
switch (fcs) { /* File character set */
case FC_SHJIS: /* Shift-JIS -- just output it */
if (sj.x_char[byteorder]) /* But not high byte if zero */
if ((rc = pnbyte((CHAR)sj.x_char[byteorder],fn)) < 0)
return(rc);
if ((rc = pnbyte((CHAR)sj.x_char[1-byteorder],fn)) < 0)
return(rc);
return(2);
case FC_JEUC: /* EUC-JP */
eu.x_short = sj_to_eu(sj.x_short); /* Shift-JIS to EUC */
debug(F001,"xpnbyte eu","",eu.x_short);
if (eu.x_short == 0xffff) { /* Bad */
if ((rc = pnbyte(UNK,fn)) < 0)
return(rc);
return(1);
} else { /* Good */
int count = 0; /* Write high byte if not zero */
if (eu.x_char[byteorder]) {
if ((rc=pnbyte((CHAR)eu.x_char[byteorder],fn)) < 0)
return(rc);
count++;
}
/* Always write low byte */
if ((rc = pnbyte((CHAR)eu.x_char[1-byteorder],fn)) < 0)
return(rc);
count++;
return(count);
}
break;
case FC_JIS7: /* JIS-7 */
case FC_JDEC: /* DEC Kanji */
eu.x_short = sj_to_eu(sj.x_short); /* Shift-JIS to EUC */
if (eu.x_short == 0xffff) { /* Bad */
debug(F001,"xpnbyte bad eu","",eu.x_short);
if ((rc = pnbyte(UNK,fn)) < 0)
return(rc);
return(1);
} else { /* Good */
int i;
/* Use another name - 'a' hides parameter */
/* It's OK as is but causes compiler warnings */
char a = eu.x_char[1-byteorder]; /* Low byte */
debug(F001,"xpnbyte eu","",eu.x_short);
if (eu.x_char[byteorder] == 0) { /* Roman */
switch (jstate) {
case 1: /* Current state is Katakana */
jbuf[0] = 0x0f; /* SI */
jbuf[1] = a;
jx = 2;
break;
case 2: /* Current state is Kanji */
jbuf[0] = 0x1b; /* ESC */
jbuf[1] = 0x28; /* ( */
jbuf[2] = 0x4a; /* J */
jbuf[3] = a;
jx = 4;
break;
default: /* Current state is Roman */
jbuf[0] = a;
jx = 1;
break;
}
jstate = 0; /* New state is Roman */
} else if (eu.x_char[byteorder] == 0x8e) { /* Kana */
jx = 0;
switch (jstate) {
case 2: /* from Kanji */
jbuf[jx++] = 0x1b; /* ESC */
jbuf[jx++] = 0x28; /* ( */
jbuf[jx++] = 0x4a; /* J */
case 0: /* from Roman */
jbuf[jx++] = 0x0e; /* SO */
default: /* State is already Kana*/
jbuf[jx++] = (a & 0x7f); /* and the char */
break;
}
jstate = 1; /* New state is Katakana */
} else { /* Kanji */
jx = 0;
switch (jstate) {
case 1: /* Current state is Katakana */
jbuf[jx++] = 0x0f; /* SI */
case 0: /* Current state is Roman */
jbuf[jx++] = 0x1b; /* ESC */
jbuf[jx++] = 0x24; /* $ */
jbuf[jx++] = 0x42; /* B */
default: /* Current state is already Kanji */
jbuf[jx++] = eu.x_char[byteorder] & 0x7f;
jbuf[jx++] = eu.x_char[1-byteorder] & 0x7f;
break;
}
jstate = 2; /* Set state to Kanji */
}
for (i = 0; i < jx; i++) /* Output the result */
if ((rc = pnbyte(jbuf[i],fn)) < 0)
return(rc);
return(jx); /* Return its length */
}
}
#endif /* KANJI */
} else { /* No translation function */
int count = 0;
if (utferror) {
if ((rc = pnbyte((ucsorder ? 0xfd : 0xff),fn)) < 0)
return(rc);
if ((rc = pnbyte((ucsorder ? 0xff : 0xfd),fn)) < 0)
return(rc);
count += 2;
}
if ((rc = pnbyte(uc.x_char[swapping],fn)) < 0)
return(rc);
if ((rc = pnbyte(uc.x_char[1-swapping],fn)) < 0)
return(rc);
count += 2;
return(count);
}
}
} else { /* Byte to Unicode */
if (xtu) { /* TCS-to-UCS function */
if (((tcsinfo[tcs].size > 128) && (uc.x_short & 0x80)) ||
tcsinfo[tcs].size <= 128)
uc.x_short = (*xtu)(uc.x_short);
}
if (fcs == FC_UCS2) { /* And FCS is UCS-2 */
/* Write out the bytes in the appropriate byte order */
if (!offc && ucsbom) { /* Beginning of file? */
if ((rc = pnbyte((ucsorder ? 0xff : 0xfe),fn)) < 0) /* BOM */
return(rc);
if ((rc = pnbyte((ucsorder ? 0xfe : 0xff),fn)) < 0)
return(rc);
}
if ((rc = pnbyte(uc.x_char[swapping],fn)) < 0)
return(rc);
if ((rc = pnbyte(uc.x_char[1-swapping],fn)) < 0)
return(rc);
return(2);
} else if (fcs == FC_UTF8) { /* Convert to UTF-8 */
CHAR * buf = NULL;
int i, count;
if ((count = ucs2_to_utf8(uc.x_short,&buf)) < 1)
return(-1);
for (i = 0; i < count; i++)
if ((rc = pnbyte(buf[i],fn)) < 0)
return(rc);
return(count);
} else {
debug(F100,"xpnbyte impossible combination","",0);
return(-1);
}
}
#else
#ifdef KANJI
/*
This almost, but not quite, duplicates the Kanji section above.
There is no doubt a way to combine the sections more elegantly,
but probably only at the expense of additional execution overhead.
As matters stand, be careful to reflect any changes in this section
to the other Kanji section above.
*/
if (tcs == TC_JEUC) { /* Incoming Japanese EUC */
int count = 0;
switch (fcs) { /* File character set */
case FC_SHJIS: /* Shift-JIS -- just output it */
if (sj.x_char[byteorder]) /* But not high byte if zero */
if ((rc = pnbyte((CHAR)sj.x_char[byteorder],fn)) < 0)
return(rc);
count++;
if ((rc = pnbyte((CHAR)sj.x_char[1-byteorder],fn)) < 0)
return(rc);
count++;
return(count);
case FC_JEUC: /* EUC-JP */
eu.x_short = sj_to_eu(sj.x_short); /* Shift-JIS to EUC */
debug(F001,"xpnbyte FC_JEUC eu","",eu.x_short);
if (eu.x_short == 0xffff) { /* Bad */
if ((rc = pnbyte(UNK,fn)) < 0)
return(rc);
return(1);
} else { /* Good */
int count = 0; /* Write high byte if not zero */
if (eu.x_char[byteorder]) {
if ((rc = pnbyte((CHAR)eu.x_char[byteorder],fn)) < 0)
return(rc);
count++;
}
/* Always write low byte */
if ((rc = pnbyte((CHAR)eu.x_char[1-byteorder],fn)) < 0)
return(rc);
count++;
return(count);
}
break;
case FC_JIS7: /* JIS-7 */
case FC_JDEC: /* DEC Kanji */
eu.x_short = sj_to_eu(sj.x_short); /* Shift-JIS to EUC */
if (eu.x_short == 0xffff) { /* Bad */
debug(F001,"xpnbyte FC_JIS7 bad eu","",eu.x_short);
if ((rc = pnbyte(UNK,fn)) < 0)
return(rc);
return(1);
} else { /* Good */
int i;
char a = eu.x_char[1-byteorder]; /* Low byte */
debug(F001,"xpnbyte FC_JIS7 eu","",eu.x_short);
if (eu.x_char[byteorder] == 0) { /* Roman */
switch (jstate) {
case 1: /* Current state is Katakana */
jbuf[0] = 0x0f; /* SI */
jbuf[1] = a;
jx = 2;
break;
case 2: /* Current state is Kanji */
jbuf[0] = 0x1b; /* ESC */
jbuf[1] = 0x28; /* ( */
jbuf[2] = 0x4a; /* J */
jbuf[3] = a;
jx = 4;
break;
default: /* Current state is Roman */
jbuf[0] = a;
jx = 1;
break;
}
jstate = 0; /* New state is Roman */
} else if (eu.x_char[byteorder] == 0x8e) { /* Kana */
jx = 0;
switch (jstate) {
case 2: /* from Kanji */
jbuf[jx++] = 0x1b; /* ESC */
jbuf[jx++] = 0x28; /* ( */
jbuf[jx++] = 0x4a; /* J */
case 0: /* from Roman */
jbuf[jx++] = 0x0e; /* SO */
default: /* State is already Kana*/
jbuf[jx++] = (a & 0x7f); /* and the char */
break;
}
jstate = 1; /* New state is Katakana */
} else { /* Kanji */
jx = 0;
switch (jstate) {
case 1: /* Current state is Katakana */
jbuf[jx++] = 0x0f; /* SI */
case 0: /* Current state is Roman */
jbuf[jx++] = 0x1b; /* ESC */
jbuf[jx++] = 0x24; /* $ */
jbuf[jx++] = 0x42; /* B */
default: /* Current state is already Kanji */
jbuf[jx++] = eu.x_char[byteorder] & 0x7f;
jbuf[jx++] = eu.x_char[1-byteorder] & 0x7f;
break;
}
jstate = 2; /* Set state to Kanji */
}
for (i = 0; i < jx; i++) /* Output the result */
if ((rc = pnbyte(jbuf[i],fn)) < 0)
return(rc);
return(jx); /* Return its length */
}
default:
if (sj.x_short < 0x80)
return(sj.x_short);
else
return('?');
}
}
#endif /* KANJI */
#endif /* UNICODE */
debug(F100,"xpnbyte BAD FALLTHRU","",0);
return(-1);
}
#ifndef NOXFER
/* D E C O D E -- Kermit Data-packet decoder */
int
#ifdef CK_ANSIC
decode(CHAR *buf, int (*fn)(char), int xlate)
#else
decode(buf,fn,xlate) register CHAR *buf; register int (*fn)(); int xlate;
#endif /* CK_ANSIC */
/* decode */ {
register unsigned int a, a7, a8, b8; /* Various copies of current char */
int t; /* Int version of character */
int ssflg; /* Character was single-shifted */
int ccpflg; /* For Ctrl-unprefixing stats */
int len;
long z;
CHAR c;
/*
Catch the case in which we are asked to decode into a file that is not open,
for example, if the user interrupted the transfer, but the other Kermit
keeps sending.
*/
if ((cxseen || czseen || discard) && (fn == putfil))
return(0);
#ifdef COMMENT
#ifdef CKTUNING
if (binary && !parity)
return(bdecode(buf,fn));
#endif /* CKTUNING */
#endif /* COMMENT */
debug(F100,"DECODE","",0);
xdbuf = buf; /* Make global copy of pointer. */
rpt = 0; /* Initialize repeat count. */
len = rln; /* Number of bytes in data field */
while (len > 0) { /* Loop for each byte */
a = *xdbuf++ & 0xff; /* Get next character */
len--;
if (a == rptq && rptflg) { /* Got a repeat prefix? */
rpt = xunchar(*xdbuf++ & 0xFF); /* Yes, get the repeat count, */
rptn += rpt;
a = *xdbuf++ & 0xFF; /* and get the prefixed character. */
len -= 2;
}
b8 = lsstate ? 0200 : 0; /* 8th-bit value from SHIFT-STATE */
if (ebqflg && a == ebq) { /* Have 8th-bit prefix? */
b8 ^= 0200; /* Yes, invert the 8th bit's value, */
ssflg = 1; /* remember we did this, */
a = *xdbuf++ & 0xFF; /* and get the prefixed character. */
len--;
} else ssflg = 0;
ccpflg = 0;
if (a == ctlq) { /* If control prefix, */
a = *xdbuf++ & 0xFF; /* get its operand */
len--;
a7 = a & 0x7F; /* and its low 7 bits. */
if ((a7 >= 0100 && a7 <= 0137) || a7 == '?') { /* Controllify */
a = ctl(a); /* if in control range. */
a7 = a & 0x7F;
ccpflg = 1; /* Note that we did this */
ccp++; /* Count for stats */
}
} else a7 = a & 0x7f; /* Not control quote */
if (a7 < 32 || a7 == 127) { /* Control character? */
if (!ccpflg) ccu++; /* A bare one, count it */
if (lscapu) { /* If doing locking shifts... */
if (lsstate) /* If SHIFTED */
a8 = (a & ~b8) & 0xFF; /* Invert meaning of 8th bit */
else /* otherwise */
a8 = a | b8; /* OR in 8th bit */
/* If we're not in a quoted sequence */
if (!lsquote && (!lsstate || !ssflg)) {
if (a8 == DLE) { /* Check for DLE quote */
lsquote = 1; /* prefixed by single shift! */
continue;
} else if (a8 == SO) { /* Check for Shift-Out */
lsstate = 1; /* SHIFT-STATE = SHIFTED */
continue;
} else if (a8 == SI) { /* or Shift-In */
lsstate = 0; /* SHIFT-STATE = UNSHIFTED */
continue;
}
} else lsquote = 0;
}
}
a |= b8; /* OR in the 8th bit */
if (rpt == 0) rpt = 1; /* If no repeats, then one */
#ifndef NOCSETS
if (!binary) { /* If in text mode, */
if (tcharset != TC_UCS2) {
if (feol && a == CR) /* Convert CRLF to newline char */
continue;
if (feol && a == LF)
a = feol;
}
if (xlatype == XLA_BYTE) /* Byte-for-byte - do it now */
if (xlate && rx) a = (*rx)((CHAR) a);
}
#endif /* NOCSETS */
/* (PWP) Decoding speedup via buffered output and a macro... */
if (fn == putfil) {
for (; rpt > 0; rpt--) { /* Output the char RPT times */
#ifdef CALIBRATE
if (calibrate) {
ffc++;
continue;
}
#endif /* CALIBRATE */
/* Note: The Unicode and Kanji sections can probably be combined now; */
/* the Unicode method (xpnbyte()) covers Kanji too. */
#ifdef UNICODE
if (!binary && xlatype == XLA_UNICODE)
t = xpnbyte((unsigned)((unsigned)a & 0xff),
tcharset,
fcharset,
fn
);
else
#endif /* UNICODE */
#ifdef KANJI
if (!binary && tcharset == TC_JEUC &&
fcharset != FC_JEUC) { /* Translating from J-EUC */
if (!ffc) xkanjf();
if (xkanji(a,fn) < 0) /* to something else? */
return(-1);
else t = 1;
} else
#endif /* KANJI */
{
#ifdef OS2
if (xflg && !remfile) { /* Write to virtual screen */
char _a;
_a = a & fmask;
t = conoc(_a);
if (t < 1)
t = -1;
} else
#endif /* OS2 */
t = zmchout(a & fmask); /* zmchout is a macro */
}
if (t < 0) {
debug(F101,"decode write errno","",errno);
return(-1);
}
#ifdef UNICODE
if (xlatype != XLA_UNICODE || binary) {
ffc++; /* Count the character */
if (docrc && !xflg && !remfile) { /* Update file CRC */
c = a; /* Force conversion to unsigned char */
z = crc16 ^ (long)c;
crc16 = (crc16 >> 8) ^
(crcta[(z & 0xF0) >> 4] ^ crctb[z & 0x0F]);
}
}
#endif /* UNICODE */
}
} else { /* Output to something else. */
a &= fmask; /* Apply file mask */
for (; rpt > 0; rpt--) { /* Output the char RPT times */
#ifdef CALIBRATE
if (calibrate) {
ffc++;
continue;
}
#endif /* CALIBRATE */
if ((*fn)((char) a) < 0) return(-1); /* Send to output func. */
}
}
#ifdef CK_CTRLZ
lastchar = a;
#endif /* CK_CTRLZ */
}
return(0);
}
/* G E T P K T -- Fill a packet data field */
/*
Gets characters from the current source -- file or memory string.
Encodes the data into the packet, filling the packet optimally.
Set first = 1 when calling for the first time on a given input stream
(string or file).
Call with:
bufmax -- current send-packet size
xlate -- flag: 0 to skip character-set translation, 1 to translate
Uses global variables:
t -- current character.
first -- flag: 1 to start up, 0 for input in progress, -1 for EOF.
next -- next character (not used any more).
data -- pointer to the packet data buffer.
size -- number of characters in the data buffer.
memstr - flag that input is coming from a memory string instead of a file.
memptr - pointer to string in memory.
(*sx)() character set translation function
Returns:
The size as value of the function, and also sets global "size",
and fills (and null-terminates) the global data array.
Returns:
0 on EOF.
-1 on fatal (internal) error.
-3 on timeout (e.g. when reading data from a pipe).
Rewritten by Paul W. Placeway (PWP) of Ohio State University, March 1989.
Incorporates old getchx() and encode() inline to reduce function calls,
uses buffered input for much-improved efficiency, and clears up some
confusion with line termination (CRLF vs LF vs CR).
Rewritten again by Frank da Cruz to incorporate locking shift mechanism,
May 1991. And again in 1998 for efficiency, etc, with a separate
bgetpkt() split out for binary-mode no-parity transfers.
*/
/*
Note: Separate Kanji support dates from circa 1991 and now (1999) can most
likely be combined with the the Unicode support: the xgnbyte()/xpnbyte()
mechanism works for both Unicode and Kanji.
*/
#ifdef KANJI
int
kgetf(
#ifdef CK_ANSIC
VOID
#endif /* CK_ANSIC */
) {
if (funcstr)
return((*funcptr)());
else
return(zminchar());
}
int
kgetm(
#ifdef CK_ANSIC
VOID
#endif /* CK_ANSIC */
) {
int x;
if ((x = *memptr++)) return(x);
else return(-1);
}
#endif /* KANJI */
/*
Lookahead function to decide whether locking shift is worth it. Looks at
the next four input characters to see if all of their 8th bits match the
argument. Call with 0 or 0200. Returns 1 on match, 0 if they don't match.
If we don't happen to have at least 4 more characters waiting in the input
buffer, returns 1. Note that zinptr points two characters ahead of the
current character because of repeat-count lookahead.
*/
int
lslook(b) unsigned int b; { /* Locking Shift Lookahead */
int i;
if (zincnt < 3) /* If not enough chars in buffer, */
return(1); /* force shift-state switch. */
b &= 0200; /* Force argument to proper form. */
for (i = -1; i < 3; i++) /* Look at next 5 characters to */
if (((*(zinptr+i)) & 0200) != b) /* see if all their 8th bits match. */
return(0); /* They don't. */
return(1); /* They do. */
}
/* Routine to compute maximum data length for packet to be filled */
int
maxdata() { /* Get maximum data length */
int n, len;
debug(F101,"maxdata spsiz 1","",spsiz);
if (spsiz < 0) /* How could this happen? */
spsiz = DSPSIZ;
debug(F101,"maxdata spsiz 2","",spsiz);
n = spsiz - 5; /* Space for Data and Checksum */
if (n > 92 && n < 96) n = 92; /* "Short" Long packets don't pay */
if (n > 92 && lpcapu == 0) /* If long packets needed, */
n = 92; /* make sure they've been negotiated */
len = n - bctl; /* Space for data */
if (n > 92) len -= 3; /* Long packet needs header chksum */
debug(F101,"maxdata len 1","",len);
if (len < 0) len = 10;
debug(F101,"maxdata len 2","",len);
return(len);
}
static CHAR leftover[9] = { '\0','\0','\0','\0','\0','\0','\0','\0','\0' };
static int nleft = 0;
#ifdef CKTUNING
/*
When CKTUNING is defined we use this special trimmed-down version of getpkt
to speed up binary-mode no-parity transfers. When CKTUNING is not defined,
or for text-mode or parity transfers, we use the regular getpkt() function.
Call just like getpkt() but test first for transfer mode and parity. NOTE:
This routine is only to be called when sending a real file -- not for
filenames, server responses, etc, because it only reads from the input file.
See getpkt() for more detailed commentary.
*/
static int
bgetpkt(bufmax) int bufmax; {
register CHAR rt = t, rnext;
register CHAR *dp, *odp, *p1, *p2;
register int x = 0, a7;
CHAR xxrc, xxcq; /* Pieces of prefixed sequence */
long z; /* A long worker (for CRC) */
if (!binary || parity || memstr) /* JUST IN CASE caller didn't test */
return(getpkt(bufmax,!binary));
if (!data) {
debug(F100,"SERIOUS ERROR: bgetpkt data == NULL","",0);
return(-1);
}
dp = data; /* Point to packet data buffer */
size = 0; /* And initialize its size */
bufmax = maxdata(); /* Get maximum data length */
#ifdef DEBUG
if (deblog)
debug(F101,"bgetpkt bufmax","",bufmax);
#endif /* DEBUG */
if (first == 1) { /* If first character of this file.. */
ffc = (CK_OFF_T)0; /* reset file character counter */
#ifdef COMMENT
/* Moved to below */
first = 0; /* Next character won't be first */
#endif /* COMMENT */
*leftover = '\0'; /* Discard any interrupted leftovers */
nleft = 0;
/* Get first character of file into rt, watching out for null file */
#ifdef CALIBRATE
if (calibrate) {
#ifdef NORANDOM
rt = 17;
#else
rt = cal_a[rand() & 0xff];
#endif /* NORANDOM */
first = 0;
} else
#endif /* CALIBRATE */
if ((x = zminchar()) < 0) { /* EOF or error */
if (x == -3) { /* Timeout. */
size = (dp - data);
debug(F101,"bgetpkt timeout size","",size);
return((size == 0) ? x : size);
}
first = -1;
size = 0;
if (x == -2) { /* Error */
debug(F100,"bgetpkt: input error","",0);
cxseen = 1; /* Interrupt the file transfer */
} else {
debug(F100,"bgetpkt empty file","",0);
}
return(0);
}
first = 0; /* Next char will not be the first */
ffc++; /* Count a file character */
rt = (CHAR) x; /* Convert int to char */
if (docrc && (what & W_SEND)) { /* Accumulate file crc */
z = crc16 ^ (long)rt;
crc16 = (crc16 >> 8) ^
(crcta[(z & 0xF0) >> 4] ^ crctb[z & 0x0F]);
}
rt &= fmask; /* Apply SET FILE BYTESIZE mask */
} else if (first == -1 && nleft == 0) { /* EOF from last time */
return(size = 0);
}
/*
Here we handle characters that were encoded for the last packet but
did not fit, and so were saved in the "leftover" array.
*/
if (nleft) {
for (p1 = leftover; nleft > 0; nleft--) /* Copy leftovers */
*dp++ = *p1++;
*leftover = '\0'; /* Delete leftovers */
nleft = 0;
}
if (first == -1) /* Handle EOF */
return(size = (dp - data));
/* Now fill up the rest of the packet. */
rpt = 0; /* Initialize character repeat count */
while (first > -1) { /* Until EOF... */
#ifdef CALIBRATE
if (calibrate) { /* We generate our own "file" */
if (ffc >= calibrate) { /* EOF */
first = -1;
ffc--;
} else { /* Generate next character */
if (cal_j > CAL_M * ffc)
cal_j = cal_a[ffc & 0xff];
x = (unsigned)cal_a[(cal_j & 0xff)];
if (x == rt) x ^= 2;
}
ffc++;
cal_j += (unsigned int)(ffc + CAL_O);
} else
#endif /* CALIBRATE */
if ((x = zminchar()) < 0) { /* Check for EOF */
if (x == -3) { /* Timeout. */
t = rt;
size = (dp-data);
debug(F101,"bgetpkt timeout size","",size);
return((size == 0) ? x : size);
}
first = -1; /* Flag eof for next time. */
if (x == -2) cxseen = 1; /* If error, cancel this file. */
} else {
ffc++; /* Count the character */
if (docrc && (what & W_SEND)) { /* Accumulate file crc */
z = crc16 ^ (long)((CHAR)x & 0xff);
crc16 = (crc16 >> 8) ^
(crcta[(z & 0xF0) >> 4] ^ crctb[z & 0x0F]);
}
}
rnext = (CHAR) (x & fmask); /* Apply file mask */
/*
At this point, the character we just read is in rnext,
and the character we are about to encode into the packet is in rt.
*/
odp = dp; /* Remember where we started. */
xxrc = xxcq = NUL; /* Clear these. */
/*
Now encode the character according to the options that are in effect:
ctlp[]: whether this control character needs prefixing.
rptflg: repeat counts enabled.
Other options don't apply in this routine.
*/
if (rptflg && (rt == rnext) && (first == 0)) { /* Got a run... */
if (++rpt < 94) { /* Below max, just count */
continue; /* go back and get another */
} else if (rpt == 94) { /* Reached max, must dump */
xxrc = (CHAR) tochar(rpt); /* Put the repeat count here */
rptn += rpt; /* Accumulate it for statistics */
rpt = 0; /* And reset it */
}
} else if (rpt > 0) { /* End of run */
xxrc = (CHAR)tochar(++rpt); /* The count */
rptn += rpt; /* For stats */
rpt = 0; /* Reset repeat count */
}
a7 = rt & 0177; /* Get low 7 bits of character */
if (
#ifdef CK_SPEED
ctlp[(unsigned)(rt & 0xff)] /* Lop off any "sign" extension */
#else
(a7 < SP) || (a7 == DEL)
#endif /* CK_SPEED */
) { /* Do control prefixing if necessary */
xxcq = myctlq; /* The prefix */
ccp++; /* Count it */
rt = (CHAR) ctl(rt); /* Uncontrollify the character */
}
#ifdef CK_SPEED
else if ((a7 < SP) || (a7 == DEL)) /* Count an unprefixed one */
ccu++;
#endif /* CK_SPEED */
if (a7 == myctlq) /* Always prefix the control prefix */
xxcq = myctlq;
if ((rptflg) && (a7 == rptq)) /* If it's the repeat prefix, */
xxcq = myctlq; /* prefix it if doing repeat counts */
/* Now construct the prefixed sequence */
if (xxrc) { /* Repeat count */
#ifdef COMMENT
if (xxrc == (CHAR) '"' && !xxcq) { /* 2 in a row & not prefixed */
*dp++ = rt; /* So just do this */
} else { /* More than two or prefixed */
*dp++ = (CHAR) rptq; *dp++ = xxrc; /* Emit repeat sequence */
}
#else /* CHECK THIS */
if (xxrc == (CHAR) '"' && !xxcq) { /* 2 in a row & not prefixed */
if (dp == data) {
*dp++ = rt; /* So just do this */
} else if (*(dp-1) == rt) {
*dp++ = (CHAR) rptq;
*dp++ = xxrc; /* Emit repeat sequence */
} else {
*dp++ = rt; /* So just do this */
}
} else { /* More than two or prefixed */
*dp++ = (CHAR) rptq;
*dp++ = xxrc; /* Emit repeat sequence */
}
#endif /* COMMENT */
}
if (xxcq) { *dp++ = myctlq; } /* Control prefix */
*dp++ = rt; /* Finally, the character itself */
rt = rnext; /* Next character is now current. */
/* Done encoding the character. Now take care of packet buffer overflow. */
size = dp - data; /* How many bytes we put in buffer. */
if (size >= bufmax) { /* If too big, save some for next. */
*dp = '\0'; /* Mark the end. */
if (size > bufmax) { /* if packet is overfull */
/* Copy the part that doesn't fit into the leftover buffer, */
/* taking care not to split a prefixed sequence. */
int i;
nleft = dp - odp;
p1 = leftover;
p2 = odp;
for (i = 0; i < nleft; i++)
*p1++ = *p2++;
size = odp - data; /* Return truncated packet. */
*odp = '\0'; /* Mark the new end */
}
t = rt; /* Save for next time */
return(size);
}
} /* Otherwise, keep filling. */
size = dp - data; /* End of file */
*dp = '\0'; /* Mark the end of the data. */
return(size); /* Return partially filled last packet. */
}
#endif /* CKTUNING */
VOID
dofilcrc(c) int c; { /* Accumulate file crc */
long z;
z = crc16 ^ (long)c;
crc16 = (crc16 >> 8) ^
(crcta[(z & 0xF0) >> 4] ^ crctb[z & 0x0F]);
}
/* For SENDing from an array... */
int
agnbyte() { /* Get next byte from array */
#ifndef NOSPL
char c;
static int save = 0; /* For CRLF */
static char ** ap = NULL; /* Array pointer */
static char * p = NULL; /* Character pointer */
static int i = 0, n = 0; /* Array index and limit */
extern int a_dim[]; /* Array dimension */
if (!ap) { /* First time thru */
ap = sndarray; /* Set up array pointers */
if (!ap || (i = sndxlo) > a_dim[sndxin]) {
sndarray = NULL;
ap = NULL;
return(-1);
}
p = ap[i]; /* Point to first element in range */
n = sndxhi; /* Index of last element in range */
if (sndxhi > a_dim[sndxin]) /* Adjust if necessary */
n = a_dim[sndxin];
}
if (save) { /* If anything saved */
c = save; /* unsave it */
save = 0; /* and return it */
return(c & 0xff);
}
if (i > n) { /* No more elements */
sndarray = NULL;
ap = NULL;
return(-1);
}
if (!p) /* Source pointer is NULL */
c = NUL; /* this means an empty line */
else /* Source pointer not NULL */
c = *p++; /* Next char */
if (!c) { /* Char is empty? */
if (!binary) { /* Text: end of line. */
if (feol) { /* Supply NL */
c = feol;
} else { /* or CRLF */
save = LF;
c = CR;
}
p = ap[++i];
return(c & 0xff);
}
while (i++ < n) { /* Binary - get next element */
p = ap[i];
if (!p) /* Empty line? */
continue; /* Ignore it and get another */
c = *p++; /* Get next char */
if (!c) /* Emtpy char? */
continue; /* Ignore it and get another */
return(c & 0xff); /* Not empty - return it */
}
sndarray = NULL;
ap = NULL;
return(-1); /* Done */
}
return(c & 0xff); /* Char is not empty */
#else
sndarray = NULL;
return(-1);
#endif /* NOSPL */
}
#endif /* NOXFER */
#ifndef NOCSETS
static CHAR xlabuf[32] = { 0, 0, 0, 0, 0, 0, 0, 0 };
static int xlacount = 0;
static int xlaptr = 0;
/* static USHORT lastucs2 = 0; */
/*
X G N B Y T E -- Get next translated byte from the input file.
Returns the next byte that is to be put into the packet, already translated.
This isolates getpkt() from having to know anything about translation,
single- vs multibyte character sets, one-to-many vs many-to-one, etc, but it
has rather high overhead, so don't call it unless you know translation is
needed to or from Unicode, Japanese, or other multibyte character set.
Call with:
fcs: File character set (source, file we are reading from)
tcs: Target character set (use an FC_xxx code, not a TC_xxx code)
Returns:
>= 0: A translated byte suitable for writing.
< 0: Fatal error (such as EOF on input source).
As of Sat Sep 7 18:37:41 2002:
When the output character-set is UCS-2, bytes are ALWAYS returned in
big-endian order (previously they could also be returned in LE order
under certain conditions, which was just way too confusing).
*/
int
#ifdef CK_ANSIC
xgnbyte(int tcs, int fcs, int (*fn)(void))
#else /* CK_ANSIC */
xgnbyte(tcs,fcs,fn) int tcs, fcs, (*fn)();
#endif /* CK_ANSIC */
/* xgnbyte */ {
_PROTOTYP( int (*xx), (USHORT) ) = NULL;
int haveuc = 0; /* Flag for have Unicode character */
#ifdef KANJI
int havesj = 0; /* Have Shift-JIS character */
int haveeu = 0; /* Have EUC-JP character */
#endif /* KANJI */
int rc = -1, x = 0, flag = 0;
int utferror = 0;
int eolflag = 0;
unsigned int xc, thischar;
static int swapping = 0;
CHAR rt;
/* USHORT ch; */
#ifdef UNICODE
union ck_short uc;
#endif /* UNICODE */
#ifdef KANJI
union ck_short sj, eu; /* Shift-JIS character */
#endif /* KANJI */
#ifdef KANJI
sj.x_short = 0;
#endif /* KANJI */
#ifdef DEBUG
if (deblog && !ffc) {
debug(F101,"xgnbyte initial swap","",swapping);
}
#endif /* DEBUG */
if (xlacount-- > 0) { /* We already have some */
x = xlabuf[xlaptr++];
debug(F001,"xgnbyte from buf","",x);
return(x);
}
if (xlatype != XLA_NONE) { /* Not not translating... */
haveuc = 0;
#ifdef UNICODE
if (fcs == FC_UCS2) { /* UCS-2: Read two bytes */
if (!ffc) /* Beginning of file? */
swapping = 0; /* Reset byte-swapping flag */
uc.x_short = 0;
bomskip:
x = fn ? (*fn)() : zminchar(); /* Get first byte */
debug(F001,"zminchar swapping","",swapping);
debug(F001,"zminchar C0","",x);
flag = 1; /* Remember we called zminchar() */
if (x > -1) { /* Didn't fail */
ffc++; /* Count a file byte */
uc.x_char[swapping] = x & 0xff;
#ifndef NOXFER
if (docrc && (what & W_SEND))
dofilcrc(x);
#endif /* NOXFER */
x = fn ? (*fn)() : zminchar(); /* Get second byte */
if (x > -1) { /* If didn't fail */
debug(F001,"zminchar C1","",x);
ffc++; /* count another file byte */
uc.x_char[1-swapping] = x & 0xff;
haveuc = 1; /* And remember we have Unicode */
#ifndef NOXFER
if (docrc && (what & W_SEND))
dofilcrc(x);
#endif /* NOXFER */
if (ffc == (CK_OFF_T)2) { /* Second char of file */
debug(F001,"xgnbyte 1st UCS2","",uc.x_short);
debug(F111,"xgnbyte fileorder","A",fileorder);
if (fileorder < 0) /* Byte order of this file */
fileorder = ucsorder; /* Default is ucsorder */
if (fileorder > 1)
fileorder = 1;
debug(F111,"xgnbyte fileorder","B",fileorder);
if (uc.x_short == (USHORT)0xfeff) {
swapping = 0;
debug(F101,
"xgnbyte UCS2 goodbom swap","",swapping);
fileorder = byteorder; /* Note: NOT 0 */
goto bomskip;
} else if (uc.x_short == (USHORT)0xfffe) {
swapping = 1;
debug(F101,
"xgnbyte UCS2 badbom swap","",swapping);
fileorder = (1 - byteorder); /* Note: NOT 1 */
goto bomskip;
} else if ((byteorder && !fileorder) || /* No BOM */
(!byteorder && fileorder > 0)) {
/* fileorder might have been set by scanfile() */
CHAR c;
c = uc.x_char[0];
uc.x_char[0] = uc.x_char[1];
uc.x_char[1] = c;
swapping = 1;
debug(F111,"xgnbyte UCS2 noBOM swap","A",swapping);
} else {
swapping = 0;
debug(F111,"xgnbyte UCS2 noBOM swap","B",swapping);
}
debug(F111,"xgnbyte fileorder","C",fileorder);
}
} else
return(x);
} else
return(x);
debug(F001,"xgnbyte UCS2","",uc.x_short);
} else if (fcs == FC_UTF8) { /* File is UTF-8 */
CHAR ch = 0; /* Data types needed for API... */
USHORT * us = NULL;
uc.x_short = 0;
flag = 1; /* We (will) have called zminchar() */
/* Read source bytes */
while ((x = fn ? (*fn)() : zminchar()) > -1) {
ffc++; /* Got a byte - count it */
#ifndef NOXFER
if (docrc && (what & W_SEND))
dofilcrc(x);
#endif /* NOXFER */
ch = x;
rc = utf8_to_ucs2(ch,&us); /* Convert to UCS-2 */
if (rc == 0) { /* Done */
uc.x_short = *us;
haveuc = 1;
break;
} else if (rc < 0) { /* Error */
utferror = 1;
debug(F101,"xgnbyte UTF-8 input error","",rc);
haveuc = 1;
uc.x_short = *us;
break;
}
}
if (x < 0)
return(x);
debug(F001,"xgnbyte UTF8->UCS2","",uc.x_short);
}
#endif /* UNICODE */
#ifdef KANJI
#ifdef UNICODE
else
#endif /* UNICODE */
if (fcsinfo[fcs].alphabet == AL_JAPAN) { /* Japanese source file */
int c7, x, y;
if (fcs == FC_JIS7) { /* If file charset is JIS-7 */
if (!ffc) /* If first byte of file */
j7init(); /* Initialize JIS-7 parser */
x = getj7(); /* Get a JIS-7 byte */
} else /* Otherwise */
x = fn ? (*fn)() : zminchar(); /* Just get byte */
if (x < 0) { /* Propogate EOF or error */
debug(F100,"XGNBYTE EOF","",0);
return(x);
}
debug(F001,"XGNBYTE x","",x);
ffc++; /* Count */
#ifndef NOXFER
if (docrc && (what & W_SEND)) dofilcrc(x); /* Do CRC */
#endif /* NOXFER */
switch (fcs) { /* What next depends on charset */
case FC_SHJIS: /* Shift-JIS */
if ((x <= 0x80) || /* Any 7-bit char... */
(x >= 0xa0 && x <= 0xdf)) { /* or halfwidth Katakana */
sj.x_short = (USHORT) x; /* we read one byte. */
} else { /* Anything else */
if ((y = fn ? (*fn)() : zminchar()) < 0) /* get another */
return(y);
#ifndef NOXFER
if (docrc && (what & W_SEND)) dofilcrc(y);
#endif /* NOXFER */
ffc++;
sj.x_char[byteorder] = (CHAR) x;
sj.x_char[1-byteorder] = (CHAR) y;
}
break;
case FC_JIS7: /* JIS-7 */
case FC_JDEC: /* DEC Kanji */
case FC_JEUC: /* EUC-JP */
if ((x & 0x80) == 0) { /* Convert to Shift-JIS */
sj.x_short = (USHORT) x; /* C0 or G0: one byte */
eu.x_short = (USHORT) x;
haveeu = 1;
} else {
c7 = x & 0x7f;
if (c7 > 0x20 && c7 < 0x7f) { /* Kanji: two bytes */
if ((y = (fcs == FC_JEUC) ?
(fn ? (*fn)() : zminchar()) :
getj7() /* ^^^ */
) < 0)
return(y);
ffc++;
#ifndef NOXFER
if (docrc && (what & W_SEND)) dofilcrc(y);
#endif /* NOXFER */
eu.x_char[byteorder] = (CHAR) x;
eu.x_char[1-byteorder] = (CHAR) y;
sj.x_short = eu_to_sj(eu.x_short);
haveeu = 1;
} else if (x == 0x8e) { /* SS2 Katakana prefix: 2 bytes */
if ((y = (fcs == FC_JIS7) ?
getj7() : /* ^^^ */
(fn ? (*fn)() : zminchar())
) < 0)
return(y);
ffc++;
#ifndef NOXFER
if (docrc && (what & W_SEND)) dofilcrc(y);
#endif /* NOXFER */
sj.x_short = y | 0x80;
debug(F001,"XGNBYTE KANA SJ","",sj.x_short);
} else {
/* Something that translates to U+FFFD */
sj.x_short = UNKSJIS;
}
}
break;
}
havesj = 1; /* Have Shift-JIS */
#ifdef UNICODE
uc.x_short = sj_to_un(sj.x_short); /* Translate to UCS-2 */
haveuc = 1; /* Have Unicode */
#endif /* UNICODE */
flag = 1; /* Have a char */
}
#endif /* KANJI */
}
if (!flag) { /* If no character was read yet... */
if ((x = (fn ? (*fn)() : zminchar())) > -1) /* read one now */
ffc++;
debug(F101,"xgnbyte zminchar 1","",x);
if (x < 0)
return(x);
haveuc = 0;
}
#ifdef UNICODE
if (haveuc) {
thischar = uc.x_short;
/* lastucs2 = uc.x_short; */
} else
#endif /* UNICODE */
thischar = x;
debug(F001,"xgnbyte thischar",haveuc ? "[UNICODE]" : "[other]",thischar);
#ifdef CK_CTRLZ /* SET EOF CTRLZ */
if (eofmethod == XYEOF_Z && !binary && thischar == 26) {
debug(F100,"xgnbyte EOF on Ctrl-Z 1","",0);
return(-1);
}
#endif /* CK_CTRLZ */
#ifdef UNICODE
if (!haveuc) /* If not Unicode... */
#endif /* UNICODE */
x &= fmask; /* Apply SET FILE BYTESIZE mask */
switch (xlatype) { /* Translation type... */
#ifdef UNICODE
case XLA_UNICODE: { /* Unicode is involved */
xc = 0;
/*
Here we must choose the appropriate translation function. If we are being
called by getpkt() (i.e. when transferring a file), we are translating from
Unicode to the Transfer Character Set and therefore must use the function
pointed to by xut. Otherwise, e.g. during TRANSLATE, CONNECT, TRANSMIT, etc,
we are translating from Unicode to the File Character Set and so must call
the function pointed to by xuf. There might be a cleaner way to set this
up but I don't think so. For example, setxlatype() might have been called
too soon and so might not have known whether it was a file transfer or a
local operation.
*/
/*
(Many years later...) In testing this code I noticed that TRANSLATE'ing
Russian text from UTF-8 to ISO Latin/Cyrillic produced all question marks.
Rereading the previous paragraph it seems to me we are (I am) overloading
this function with responsibilites, satisfying the needs of file transfer
(local file charset -> transfer charset for outbound packet) and local file
conversion. In the case of TRANSLATE, we call (xgnbyte(), xpnbyte()) in a
loop, expecting the xgnbyte() will feed UCS2 to xpnbyte(). But the
following code does what xpnbyte() is going to do, returning (in this case)
an ISO Latin/Cyrillic byte stream, which xpnbyte() believes to be UCS2, and
comes up with nonsense. Not wanting to rip the whole thing apart and start
over, I made the following change that should do no harm, upon observing
that if the input character set is UTF-8 or UCS-2, then when we get here it
has already been converted to UCS2, so if we are not transferring a file, we
don't need to do anything else except put the bytes in the right place to be
returned, which is done further along.
*/
#ifdef COMMENT
/* Previous code */
xx = (what & W_SEND) ? xut : xuf;
#else
/* New code 2011-06-03 */
if (what & W_SEND) {
xx = xut;
} else {
if (fcs == FC_UCS2 || fcs == FC_UTF8)
xx = NULL;
else
xx = xuf;
}
#endif /* COMMENT */
eolflag = 0;
if (haveuc) { /* File is Unicode */
/* See Unicode TR13, "Converting to Other Character Sets" */
if (uc.x_short == 0x2028 || /* Line Separator? */
uc.x_short == 0x2029 || /* Paragraph Separator */
(feol && (uc.x_short == (USHORT)feol))
) {
debug(F001,"xgnbyte uc eol","",uc.x_short);
rc = 0;
eolflag = 1; /* Don't translate and handle later */
}
if (xx && !eolflag) { /* UCS-to-TCS function (UCS->byte) */
rc = (*xx)(uc.x_short); /* These can fail... */
debug(F101,"xgnbyte xx rc","",rc);
if (rc < 0) /* If it can't be translated */
uc.x_short = UNK; /* Put unknown-character symbol */
else
uc.x_short = (unsigned)((unsigned)rc & 0xffff);
debug(F101,"xgnbyte xx uc","",uc.x_short);
}
#ifdef KANJI
if (tcs == FC_JEUC) { /* Translating to EUC-JP */
USHORT sj = 0;
union ck_short eu;
debug(F001,"xgnbyte UCS->EUC UCS","",uc.x_short);
if (!havesj) /* If we don't already have it */
sj = un_to_sj(uc.x_short); /* convert to Shift-JIS */
eu.x_short = sj_to_eu(sj);
debug(F001,"xgnbyte UCS->EUC EUC","",eu.x_short);
xlaptr = 0;
xlacount = 0;
if (eolflag) {
if (what & W_SEND) {
xlabuf[xlacount++] = LF;
return(CR);
} else {
return(feol);
}
}
if (eu.x_char[byteorder]) { /* Two bytes */
rc = eu.x_char[byteorder];
xlabuf[xlacount++] = eu.x_char[1-byteorder];
debug(F001,"xgnbyte UCS->EUC xlabuf[0]","",xlabuf[0]);
} else { /* One byte */
rc = eu.x_char[1-byteorder];
}
debug(F101,"xgnbyte UCS->EUC xlacount","",xlacount);
debug(F001,"xgnbyte UCS->EUC rc","",rc);
return(rc);
} else
#endif /* KANJI */
if (tcs != FC_UCS2 && tcs != FC_UTF8) {
if (uc.x_short & 0xff00) { /* Decoding error */
debug(F001,"xgnbyte decoding error","",uc.x_short);
return(-2);
} else
return((unsigned int)(uc.x_short & 0xff));
}
xc = uc.x_short;
} else { /* File is not Unicode */
USHORT ch;
/* Translate from single FCS byte to UCS-2 */
/*
This is a bit nonobvious... The blah_u() (Blah-to-Unicode) routines are
called only with pieces of character sets, in the ISO 2022 sense. So,
for example, if ch is a Latin-1 character, we call the translation
routine only if it is in the right half; if it's in the left half, it
isn't translated, and in fact will give the wrong result if sent to the
translation function. That's because those functions were designed for
use with the ISO 2022 G0..G3 sets, not for file transfer. On the other
hand, if it's a 7-bit character set, we *do* call the translation
function. (To put it another way, the left half of any 8-bit character
set is ASCII and therefore doesn't need to be translated but 7-bit sets
such as ISO 646 German do need translation).
*/
ch = (unsigned)(thischar & 0xff);
if (((fcsinfo[fcs].size > 128) && (ch & 0x80)) ||
fcsinfo[fcs].size <= 128) {
if (xfu) { /* FCS-to-UCS function */
ch = (*xfu)(ch);
}
}
xc = ch;
}
/* At this point we have a UCS-2 character in native format */
/* (Big Endian or Little Endian) in xc, which is an unsigned int. */
debug(F001,"xgnbyte xc","",xc);
if (tcs == FC_UTF8) { /* Now convert to UTF-8 */
USHORT c; /* NOTE: this is FC_UTF8 on purpose! */
CHAR * buf = NULL;
int i, k = 0, x;
xlaptr = 0;
if (utferror) {
xlabuf[k++] = 0xff;
xlabuf[k++] = 0xbd;
}
if (eolflag) { /* We detected EOL in source file */
if (what & W_SEND) { /* Convert to CRLF */
xlabuf[k++] = LF;
xlacount = k;
return((unsigned int)CR);
#ifdef COMMENT
} else { /* Or to local line-end */
xlacount = k;
return((unsigned int)feol);
#endif /* COMMENT */
}
}
c = xc;
if ((x = ucs2_to_utf8(c,&buf)) < 1) {
debug(F101,"xgnbyte ucs2_to_utf8 error","",c);
return(-2);
}
debug(F101,"xgnbyte UTF8 buf[0]","",buf[0]);
for (i = 1; i < x; i++) {
xlabuf[k+i-1] = buf[i];
debug(F111,"xgnbyte UTF8 xlabuf",ckitoa(i-1),buf[i]);
}
xlaptr = 0;
xlacount = x - 1;
debug(F101,"xgnbyte UTF8 xlacount","",xlacount);
return((unsigned int)buf[0]);
} else { /* Or keep it as UCS-2 */
int k = 0;
CHAR c;
xlaptr = 0;
if (utferror) {
xlabuf[k++] = 0xff;
xlabuf[k++] = 0xfd;
debug(F101,"xgnbyte error","",k);
}
if (eolflag) { /* We detected EOL in source file */
if (what & W_SEND) { /* Convert to CRLF */
xlabuf[k++] = CR;
xlabuf[k++] = NUL;
xlabuf[k++] = LF;
xlacount = k;
debug(F101,"xgnbyte send CRLF","",k);
return(0); /* Return NUL */
} else { /* Or to local line-end */
#ifdef COMMENT
/* This bypasses byte swapping that we might need */
xlabuf[k++] = (CHAR)feol;
xlacount = k;
debug(F101,"xgnbyte send feol","",k);
return(0); /* Return NUL */
#else
xc = (CHAR)feol;
#endif /* COMMENT */
}
}
/* In which order should we return the bytes? */
#ifdef COMMENT
if ( (what & W_SEND) || (what & W_FTP) || (fileorder == 0)) {
#endif /* COMMENT */
/* ALWAYS RETURN IN BIG ENDIAN ORDER... 7 Sep 2002 */
/* xgnbyte() is almost always used to feed xpnbyte() */
/* which requires bytes in BE order. In cases where */
/* xgnbyte is used in isolation, the caller can swap */
/* bytes itself afterwards. */
xlabuf[k++] = (xc >> 8) & 0xff; /* Big Endian */
xlabuf[k++] = xc & 0xff;
debug(F001,"xgnbyte->UCS2BE",
ckitox((int)xlabuf[0]),xlabuf[1]);
#ifdef COMMENT
} else { /* Little Endian */
xlabuf[k++] = xc & 0xff;
xlabuf[k++] = (xc >> 8) & 0xff;
debug(F001,"xgnbyte->UCS2LE",
ckitox((int)xlabuf[0]),xlabuf[1]);
}
#endif /* COMMENT */
c = xlabuf[0];
xlaptr = 1;
xlacount = k-1;
debug(F101,"xgnbyte c","",c);
debug(F101,"xgnbyte xlaptr","",xlaptr);
debug(F011,"xgnbyte xlabuf",xlabuf,xlacount);
return((unsigned int)c);
}
}
#endif /* UNICODE */
case XLA_NONE:
return((fn ? (*fn)() : zminchar()));
case XLA_BYTE: /* Byte-for-Byte translation */
rt = x;
if (sx)
rt = (*sx)(rt);
#ifdef UNICODE
if (utferror) {
xlaptr = 0;
xlacount = 1;
xlabuf[0] = rt;
return(UNK);
} else
#endif /* UNICODE */
return((unsigned int)rt);
#ifdef KANJI
case XLA_JAPAN: /* Come here with Shift-JIS */
if (tcs == FC_JEUC) { /* It better be... */
xlaptr = 0;
xlacount = 0;
if (!havesj) {
printf("BAD BAD\n");
return(-2);
}
if (!haveeu) /* We might already have EUC too */
eu.x_short = sj_to_eu(sj.x_short);
if (eu.x_char[byteorder]) {
xlabuf[xlacount++] = eu.x_char[1-byteorder];
return(eu.x_char[byteorder]);
} else {
return(eu.x_char[1-byteorder]);
}
break;
}
#endif /* KANJI */
default:
debug(F101,"xgnbyte bad xlatype","",xlatype);
return(-2);
}
#ifdef COMMENT
/*
If there is a return() statement here, some compilers complain
about "statement not reached". If there is no return() statement,
other compilers complain that "Non-void function should return a value".
There is no path through this function that falls through to here.
*/
debug(F100,"xgnbyte switch failure","",0);
return(-2);
#endif /* COMMENT */
}
#endif /* NOCSETS */
#ifndef NOXFER
/* G E T P K T -- Fill a packet data field from the indicated source. */
/*
Parameters:
bufmax: Maximum length of entire packet.
xlate: Flag for whether to translate charsets when in text mode.
Returns: Number of characters written to packet data field, 0 or more,
Or -1 on failure (internal error),
or -3 on timeout (e.g. when reading from a pipe).
This is the full version allowing for parity and text-mode conversions;
i.e. it works in all cases. Also see bgetpkt(), a special lean/mean/fast
packet encoder that works only for binary-mode no-parity transfers.
*/
static int uflag = 0;
int
getpkt(bufmax,xlate) int bufmax, xlate; { /* Fill one packet buffer */
register CHAR rt = t, rnext = NUL; /* Register shadows of the globals */
register CHAR *dp, *odp, *odp2, *p1, *p2; /* pointers... */
register int x; /* Loop index. */
register int a7; /* Low 7 bits of character */
CHAR xxls, xxdl, xxrc, xxss, xxcq; /* Pieces of prefixed sequence */
if (binary) xlate = 0; /* We don't translate if binary */
if (!data) {
debug(F100,"SERIOUS ERROR: getpkt data == NULL","",0);
return(-1);
}
dp = data; /* Point to packet data buffer */
size = 0; /* And initialize its size */
/*
Assume bufmax is the receiver's total receive-packet buffer length.
Our whole packet has to fit into it, so we adjust the data field length.
We also decide optimally whether it is better to use a short-format or
long-format packet when we're near the borderline.
*/
bufmax = maxdata(); /* Get maximum data length */
if (first == 1) { /* If first character of this file.. */
#ifdef UNICODE
/* Special end-of-line handling for Unicode */
if (tcharset == TC_UCS2 || tcharset == TC_UTF8)
uflag = 1;
#endif /* UNICODE */
debug(F101,"getpkt first uflag","",uflag);
debug(F101,"getpkt first rt","",rt);
if (!memstr && !funcstr) /* and real file... */
ffc = (CK_OFF_T)0; /* reset file character counter */
#ifdef COMMENT
/* Moved to below... */
first = 0; /* Next character won't be first */
#endif /* COMMENT */
*leftover = '\0'; /* Discard any interrupted leftovers */
nleft = 0;
#ifndef NOCSETS
setxlatype(tcharset,fcharset); /* Set up charset translations */
#endif /* NOCSETS */
/* Get first character of file into rt, watching out for null file */
#ifdef CALIBRATE
if (calibrate && !memstr) {
#ifdef NORANDOM
x = rt = 53;
#else
x = rt = cal_a[rand() & 0xff];
#endif /* NORANDOM */
first = 0;
ffc++;
} else
#endif /* CALIBRATE */
#ifdef KANJI
if (xlate && tcharset == TC_JEUC) { /* Kanji text */
x = zkanjf();
if ((x = zkanji(memstr ? kgetm : kgetf)) < 0) {
first = -1;
size = 0;
if (x == -2) {
debug(F100,"getpkt zkanji: input error","",0);
cxseen = 1;
} else debug(F100,"getpkt zkanji: empty string/file","",0);
return(0);
}
rt = x;
first = 0;
if (!memstr) {
ffc++;
if (docrc && (what & W_SEND)) /* Accumulate file crc */
dofilcrc((int)rt);
}
} else { /* Not Kanji text */
#endif /* KANJI */
if (memstr) { /* Reading data from memory string */
/* This will not be Unicode */
if ((rt = *memptr++) == '\0') { /* end of string ==> EOF */
first = -1;
size = 0;
debug(F100,"getpkt: empty string","",0);
return(0);
}
first = 0;
} else if (funcstr) { /* Reading data from a function */
/* This will not be Unicode */
if ((x = (*funcptr)()) < 0) { /* End of input */
first = -1;
size = 0; /* Empty */
return(0);
}
ffc++; /* Count a file character */
rt = (CHAR) x; /* Convert int to char */
first = 0;
debug(F000,"getpkt funcstr","",rt);
} else { /* Reading data from a file */
#ifndef NOCSETS
if (xlate && !binary) { /* Could be Unicode */
if (xlatype == XLA_UNICODE) {
/* Get next translated byte */
x = xgnbyte(cseqtab[tcharset],fcharset,NULL);
debug(F101,"getpkt xgnbyte","",x);
} else { /* Not Unicode */
x = zminchar(); /* Get next byte, translate below */
debug(F101,"getpkt zminchar A","",x);
}
} else { /* Just get next byte */
#endif /* NOCSETS */
x = zminchar();
debug(F101,"getpkt zminchar B","",x);
#ifndef NOCSETS
}
#endif /* NOCSETS */
if (x < 0) { /* End of file or input error */
if (x == -3) { /* Timeout. */
size = (dp-data);
debug(F101,"getpkt timeout size","",size);
return((size == 0) ? x : size);
}
first = -1;
size = 0;
if (x == -2) { /* Error */
debug(F100,"getpkt: input error","",0);
cxseen = 1; /* Interrupt the file transfer */
} else {
debug(F100,"getpkt empty file","",0);
}
return(0);
}
first = 0; /* Next character won't be first */
rt = (CHAR) x; /* Convert int to char */
#ifndef NOCSETS
if (xlatype != XLA_UNICODE || binary) {
ffc++;
if (sx)
rt = (*sx)(rt);
if (docrc && (what & W_SEND))
dofilcrc(x);
}
#endif /* NOCSETS */
#ifdef DEBUG
if (deblog)
debug(F101,"getpkt 1st char","",rt);
#endif /* DEBUG */
if (/* !haveuc && */ docrc && (what & W_SEND)) /* File CRC */
dofilcrc(x);
}
#ifdef KANJI
}
#endif /* KANJI */
/* PWP: handling of feol is done later (in the while loop)... */
} else if ((first == -1) && (nleft == 0)) { /* EOF from last time */
#ifdef DEBUG
if (deblog) {
debug(F101,"getpkt eof crc16","",crc16);
debug(F101,"getpkt eof ffc","",ffc);
}
#endif /* DEBUG */
return(size = 0);
}
/*
Here we handle characters that were encoded for the last packet but
did not fit, and so were saved in the "leftover" array.
*/
debug(F101,"getpkt nleft","",nleft);
if (nleft) {
for (p1 = leftover; nleft > 0; nleft--) /* Copy leftovers */
*dp++ = *p1++;
*leftover = '\0'; /* Delete leftovers */
nleft = 0;
}
if (first == -1) /* Handle EOF */
return(size = (dp - data));
/* Now fill up the rest of the packet. */
rpt = 0; /* Initialize character repeat count */
while (first > -1) { /* Until EOF... */
#ifdef CALIBRATE
if (calibrate && !memstr) { /* We generate our own "file" */
if (ffc >= calibrate) { /* EOF */
first = -1;
ffc--;
} else { /* Generate next character */
if (cal_j > CAL_M * ffc)
cal_j = cal_a[ffc & 0xff];
x = (unsigned)cal_a[(cal_j & 0xff)];
if (x == rt) x ^= 2;
}
cal_j += (unsigned int)(ffc + CAL_O);
ffc++;
} else
#endif /* CALIBRATE */
#ifdef KANJI
if (xlate && tcharset == TC_JEUC) {
if ((x = zkanji(memstr ? kgetm : kgetf)) < 0) {
first = -1;
if (x == -2) cxseen = 1;
} else if (!memstr) ffc++;
rnext = (CHAR) (x & fmask);
} else {
#endif /* KANJI */
if (memstr) { /* Get next char from memory string */
if ((x = *memptr++) == '\0') /* End of string means EOF */
first = -1; /* Flag EOF for next time. */
rnext = (CHAR) (x & fmask); /* Apply file mask */
} else if (funcstr) { /* Get next char from function */
if ((x = (*funcptr)()) < 0) /* End of string means EOF */
first = -1; /* Flag EOF for next time. */
rnext = (CHAR) (x & fmask); /* Apply file mask */
} else { /* From file... */
#ifndef NOCSETS
if (xlate && !binary) { /* Could be Unicode */
if (xlatype == XLA_UNICODE) {
/* Get next translated byte */
x = xgnbyte(cseqtab[tcharset],fcharset,NULL);
} else { /* Not Unicode */
x = zminchar(); /* Get next byte, translate below */
/* debug(F101,"xgnbyte B zminchar","",x); */
}
} else { /* Just get next byte */
#endif /* NOCSETS */
x = zminchar();
/* debug(F101,"xgnbyte C zminchar","",x); */
#ifndef NOCSETS
}
#endif /* NOCSETS */
if (x < 0) { /* Check for EOF */
if (x == -3) { /* Timeout reading from pipe */
t = rt;
size = (dp-data);
debug(F101,"getpkt timeout size","",size);
return((size == 0) ? x : size);
}
first = -1; /* Flag eof for next time. */
if (x == -2) cxseen = 1; /* If error, cancel this file. */
}
rnext = (CHAR) (x & fmask); /* Apply file mask */
#ifndef NOCSETS
if (xlatype != XLA_UNICODE) {
#endif /* NOCSETS */
ffc++;
#ifndef NOCSETS
if (sx)
rt = (*sx)(rt);
#endif /* NOCSETS */
if (docrc && (what & W_SEND))
dofilcrc(x);
#ifndef NOCSETS
}
#endif /* NOCSETS */
}
#ifdef KANJI
}
#endif /* KANJI */
/*
At this point, the character we just read is in rnext,
and the character we are about to encode into the packet is in rt.
*/
odp = dp; /* Remember where we started. */
xxls = xxdl = xxrc = xxss = xxcq = NUL; /* Clear these. */
/*
Now encode the character according to the options that are in effect:
ctlp[]: whether this control character needs prefixing.
binary: text or binary mode.
rptflg: repeat counts enabled.
ebqflg: 8th-bit prefixing enabled.
lscapu: locking shifts enabled.
*/
if (rptflg) { /* Repeat processing is on? */
if (!uflag &&
/*
* If the next char is really CRLF, then we cannot
* be doing a repeat (unless CR,CR,LF which becomes
* "~ <n-1> CR CR LF", which is OK but not most efficient).
* I just plain don't worry about this case. The actual
* conversion from NL to CRLF is done after the rptflg if...
*/
(!feol || binary || (feol && (rnext != feol))) &&
(rt == rnext) && (first == 0)) { /* Got a run... */
if (++rpt < 94) { /* Below max, just count */
continue; /* go back and get another */
} else if (rpt == 94) { /* Reached max, must dump */
xxrc = (CHAR) tochar(rpt); /* Put the repeat count here */
rptn += rpt; /* Accumulate it for statistics */
rpt = 0; /* And reset it */
}
} else if (rpt > 1) { /* More than two */
xxrc = (CHAR) tochar(++rpt); /* and count. */
rptn += rpt;
rpt = 0; /* Reset repeat counter. */
}
/*
If (rpt == 1) we must encode exactly two characters.
This is done later, after the first character is encoded.
*/
}
/* If it's the newline character... */
if (!uflag && !binary && feol && (rt == feol)) {
if (lscapu && lsstate) { /* If SHIFT-STATE is SHIFTED */
if (ebqflg) { /* If single shifts enabled, */
*dp++ = (CHAR) ebq; /* insert a single shift. */
} else { /* Otherwise must shift in. */
*dp++ = myctlq; /* Insert shift-out code */
*dp++ = 'O';
lsstate = 0; /* Change shift state */
}
}
#ifdef CK_SPEED
if (ctlp[CR]) {
*dp++ = myctlq; /* Insert carriage return directly */
*dp++ = 'M';
ccp++;
} else {
*dp++ = CR; /* Perhaps literally */
ccu++;
}
#else /* !CK_SPEED */
*dp++ = myctlq; /* Insert carriage return directly */
*dp++ = 'M';
ccp++;
#endif /* CK_SPEED */
rt = LF; /* Now make next char be linefeed. */
}
/*
Now handle the 8th bit of the file character. If we have an 8-bit
connection, we preserve the 8th bit. If we have a 7-bit connection,
we employ either single or locking shifts (if they are enabled).
*/
a7 = rt & 0177; /* Get low 7 bits of character */
if (rt & 0200) { /* 8-bit character? */
if (lscapu) { /* Locking shifts enabled? */
if (!lsstate) { /* Not currently shifted? */
x = lslook(0200); /* Look ahead */
if (x != 0 || ebqflg == 0) { /* Locking shift decision */
xxls = 'N'; /* Need locking shift-out */
lsstate = 1; /* and change to shifted state */
} else if (ebqflg) { /* Not worth it */
xxss = (CHAR) ebq; /* Use single shift */
}
}
rt = (CHAR) a7; /* Replace character by 7-bit value */
} else if (ebqflg) { /* 8th bit prefixing is on? */
xxss = (CHAR) ebq; /* Insert single shift */
rt = (CHAR) a7; /* Replace character by 7-bit value */
}
/*
In case we have a 7-bit connection and this is an 8-bit character, AND
neither locking shifts nor single shifts are enabled, then the character's
8th bit will be destroyed in transmission, and a block check error will
occur.
*/
} else if (lscapu) { /* 7-bit character */
if (lsstate) { /* Comes while shifted out? */
x = lslook(0); /* Yes, look ahead */
if (x || ebqflg == 0) { /* Time to shift in. */
xxls = 'O'; /* Set shift-in code */
lsstate = 0; /* Exit shifted state */
} else if (ebqflg) { /* Not worth it, stay shifted out */
xxss = (CHAR) ebq; /* Insert single shift */
}
}
}
/* If data character is significant to locking shift protocol... */
if (lscapu && (a7 == SO || a7 == SI || a7 == DLE))
xxdl = 'P'; /* Insert datalink escape */
if (
#ifdef CK_SPEED
/*
Thwart YET ANOTHER unwanted, unneeded, and unloved sign
extension. This one was particularly nasty because it prevented
255 (Telnet IAC) from being prefixed on some platforms -- e.g.
VMS with VAX C -- but not others, thus causing file transfers to
fail on Telnet connections by sending bare IACs. Not to mention
the stray memory reference. Signed chars are a BAD idea.
*/
ctlp[(unsigned)(rt & 0xff)] /* Lop off any "sign" extension */
#else
(a7 < SP) || (a7 == DEL)
#endif /* CK_SPEED */
) { /* Do control prefixing if necessary */
xxcq = myctlq; /* The prefix */
ccp++; /* Count it */
rt = (CHAR) ctl(rt); /* Uncontrollify the character */
}
#ifdef CK_SPEED
else if ((a7 < SP) || (a7 == DEL)) /* Count an unprefixed one */
ccu++;
#endif /* CK_SPEED */
if (a7 == myctlq) /* Always prefix the control prefix */
xxcq = myctlq;
if ((rptflg) && (a7 == rptq)) /* If it's the repeat prefix, */
xxcq = myctlq; /* prefix it if doing repeat counts */
if ((ebqflg) && (a7 == ebq)) /* Prefix the 8th-bit prefix */
xxcq = myctlq; /* if doing 8th-bit prefixes */
/* Now construct the entire sequence */
if (xxls) { *dp++ = myctlq; *dp++ = xxls; } /* Locking shift */
odp2 = dp; /* (Save this place) */
if (xxdl) { *dp++ = myctlq; *dp++ = xxdl; } /* Datalink escape */
if (xxrc) { *dp++ = (CHAR) rptq; *dp++ = xxrc; } /* Repeat count */
if (xxss) { *dp++ = (CHAR) ebq; } /* Single shift */
if (xxcq) { *dp++ = myctlq; } /* Control prefix */
*dp++ = rt; /* Finally, the character itself */
if (rpt == 1) { /* Exactly two copies? */
rpt = 0;
p2 = dp; /* Save place temporarily */
for (p1 = odp2; p1 < p2; p1++) /* Copy the old chars over again */
*dp++ = *p1;
if ((p2-data) <= bufmax) odp = p2; /* Check packet bounds */
if ((p2-data) < bufmax) odp = p2; /* Check packet bounds */
}
rt = rnext; /* Next character is now current. */
/* Done encoding the character. Now take care of packet buffer overflow. */
if ((dp-data) >= bufmax) { /* If too big, save some for next. */
debug(F000,"getpkt EOP","",rt);
size = (dp-data); /* Calculate the size. */
*dp = '\0'; /* Mark the end. */
if (memstr) { /* No leftovers for memory strings */
if (rt) /* Char we didn't encode yet */
memptr--; /* (for encstr()) */
return(size);
}
if ((dp-data) > bufmax) { /* if packet is overfull */
/* copy the part that doesn't fit into the leftover buffer, */
/* taking care not to split a prefixed sequence. */
int i;
nleft = dp - odp;
for (i = 0, p1 = leftover, p2 = odp; i < nleft; i++) {
*p1++ = *p2++;
if (memstr) memptr--; /* (for encstr) */
}
debug(F111,"getpkt leftover",leftover,size);
debug(F101,"getpkt osize","",(odp-data));
size = (odp-data); /* Return truncated packet. */
*odp = '\0'; /* Mark the new end */
}
t = rt; /* Save for next time */
return(size);
}
} /* Otherwise, keep filling. */
size = (dp-data); /* End of file */
*dp = '\0'; /* Mark the end of the data. */
debug(F111,"getpkt eof/eot",data,size); /* Fell thru before packet full, */
return(size); /* return partially filled last packet. */
}
/* T I N I T -- Initialize a transaction */
int epktrcvd = 0, epktsent = 0;
/*
Call with 1 to reset everything before S/I/Y negotiation, or 0 to
reset only the things that are not set in the S/I/Y negotiation.
Returns -1 on failure (e.g. to create packet buffers), 0 on success.
*/
int
tinit(flag) int flag; {
int x;
#ifdef CK_TIMERS
extern int rttflg;
#endif /* CK_TIMERS */
extern int rcvtimo;
extern int fatalio;
debug(F101,"tinit flag","",flag);
*epktmsg = NUL;
epktrcvd = 0;
epktsent = 0;
ofperms = "";
diractive = 0; /* DIR / REMOTE DIR not active */
interrupted = 0; /* Not interrupted */
fatalio = 0; /* No fatal i/o error */
if (server) {
moving = 0;
pipesend = 0; /* This takes care of multiple GETs sent to a server. */
}
bestlen = 0; /* For packet length optimization */
maxsend = 0; /* Biggest data field we can send */
#ifdef STREAMING
streamok = 0; /* Streaming negotiated */
streaming = 0; /* Streaming being done now */
#endif /* STREAMING */
binary = b_save; /* ... */
gnf_binary = binary; /* Per-file transfer mode */
retrans = 0; /* Packet retransmission count */
sndtyp = 0; /* No previous packet */
xflg = 0; /* Reset x-packet flag */
memstr = 0; /* Reset memory-string flag */
memptr = NULL; /* and buffer pointer */
funcstr = 0; /* Reset "read from function" flag */
funcptr = NULL; /* and function pointer */
autopar = 0; /* Automatic parity detection flag */
/* This stuff is only for BEFORE S/I/Y negotiation, not after */
if (flag) {
if (bctf) { /* Force Block Check 3 on all packets */
bctu = bctl = 3; /* Set block check type to 3 */
} else {
bctu = bctl = 1; /* Reset block check type to 1 */
}
myinit[0] = '\0'; /* Haven't sent init string yet */
rqf = -1; /* Reset 8th-bit-quote request flag */
ebq = MYEBQ; /* Reset 8th-bit quoting stuff */
ebqflg = 0; /* 8th bit quoting not enabled */
ebqsent = 0; /* No 8th-bit prefix bid sent yet */
sq = 'Y'; /* 8th-bit prefix bid I usually send */
spsiz = spsizr; /* Initial send-packet size */
debug(F101,"tinit spsiz","",spsiz);
wslots = 1; /* One window slot */
wslotn = 1; /* No window negotiated yet */
justone = 0; /* (should this be zero'd here?) */
whoareu[0] = NUL; /* Partner's system type */
sysindex = -1;
wearealike = 0;
what = W_INIT; /* Doing nothing so far... */
}
fncnv = f_save; /* Back to what user last said */
pktnum = 0; /* Initial packet number to send */
cxseen = czseen = discard = 0; /* Reset interrupt flags */
*filnam = '\0'; /* Clear file name */
spktl = 0; /* And its length */
nakstate = 0; /* Assume we're not in a NAK state */
numerrs = 0; /* Transmission error counter */
idletmo = 0; /* No idle timeout yet */
if (server) { /* If acting as server, */
if (srvidl > 0) /* If an idle timeout is given */
timint = srvidl;
else
timint = srvtim; /* use server timeout interval. */
} else { /* Otherwise */
timint = chktimo(rtimo,timef); /* and use local timeout value */
}
debug(F101,"tinit timint","",timint);
#ifdef CK_TIMERS
if (rttflg && timint > 0) /* Using round-trip timers? */
rttinit();
else
#endif /* CK_TIMERS */
rcvtimo = timint;
winlo = 0; /* Packet 0 is at window-low */
debug(F101,"tinit winlo","",winlo);
x = mksbuf(1); /* Make a 1-slot send-packet buffer */
if (x < 0) return(x);
x = getsbuf(0); /* Allocate first send-buffer. */
debug(F101,"tinit getsbuf","",x);
if (x < 0) return(x);
dumpsbuf();
x = mkrbuf(wslots); /* & a 1-slot receive-packet buffer. */
if (x < 0) return(x);
lsstate = 0; /* Initialize locking shift state */
if (autopath) { /* SET RECEIVE PATHNAMES AUTO fixup */
fnrpath = PATH_AUTO;
autopath = 0;
}
return(0);
}
VOID
pktinit() { /* Initialize packet sequence */
pktnum = 0; /* number & window low. */
winlo = 0;
debug(F101,"pktinit winlo","",winlo);
}
/* R I N I T -- Respond to S or I packet */
VOID
rinit(d) CHAR *d; {
char *tp = NULL;
ztime(&tp);
tlog(F110,"Transaction begins",tp,0L); /* Make transaction log entry */
tlog(F110,"Global file mode:", binary ? "binary" : "text", 0L);
tlog(F110,"Collision action:", fncnam[fncact],0);
tlog(F100,"","",0);
debug(F101,"rinit fncact","",fncact);
filcnt = filrej = 0; /* Init file counters */
spar(d);
ack1(rpar());
#ifdef datageneral
if ((local) && (!quiet)) /* Only do this if local & not quiet */
consta_mt(); /* Start the asynch read task */
#endif /* datageneral */
}
/* R E S E T C -- Reset per-transaction character counters */
VOID
resetc() {
rptn = 0; /* Repeat counts */
fsecs = flci = flco = (CK_OFF_T)0; /* File chars in and out */
#ifdef GFTIMER
fpfsecs = 0.0;
#endif /* GFTIMER */
tfc = tlci = tlco = (CK_OFF_T)0; /* Total file, line chars in & out */
ccu = ccp = 0L; /* Control-char statistics */
#ifdef COMMENT
fsize = (CK_OFF_T)-1; /* File size */
#else
if (!(what & W_SEND))
fsize = (CK_OFF_T)-1;
debug(F101,"resetc fsize","",fsize);
#endif /* COMMENT */
timeouts = retrans = 0; /* Timeouts, retransmissions */
spackets = rpackets = 0; /* Packet counts out & in */
crunched = 0; /* Crunched packets */
wcur = 0; /* Current window size */
wmax = 0; /* Maximum window size used */
peakcps = 0; /* Peak chars per second */
}
/* S I N I T -- Get & verify first file name, then send Send-Init packet */
/*
Returns:
1 if send operation begins successfully
0 if send operation fails
*/
#ifdef DYNAMIC
char *cmargbuf = NULL;
#else
char cmargbuf[CKMAXPATH+1];
#endif /* DYNAMIC */
char *cmargp[2];
VOID
fnlist() {
if (!calibrate)
sndsrc = (nfils < 0) ? -1 : nfils; /* Source for filenames */
#ifdef DYNAMIC
if (!cmargbuf && !(cmargbuf = malloc(CKMAXPATH+1)))
fatal("fnlist: no memory for cmargbuf");
#endif /* DYNAMIC */
cmargbuf[0] = NUL; /* Initialize name buffer */
debug(F101,"fnlist nfils","",nfils);
debug(F110,"fnlist cmarg",cmarg,0);
debug(F110,"fnlist cmarg2",cmarg2,0);
if (!cmarg2) cmarg2 = "";
if (nfils == 0) { /* Sending from stdin or memory. */
if ((cmarg2 != NULL) && (*cmarg2)) {
cmarg = cmarg2; /* If F packet, "as-name" is used */
cmarg2 = ""; /* if provided */
} else
cmarg = "stdin"; /* otherwise just use "stdin" */
ckstrncpy(cmargbuf,cmarg,CKMAXPATH+1);
cmargp[0] = cmargbuf;
cmargp[1] = "";
cmlist = cmargp;
nfils = 1;
}
}
int
sinit() {
int x; /* Worker int */
char *tp, *xp, *m; /* Worker string pointers */
filcnt = filrej = 0; /* Initialize file counters */
fnlist();
xp = "";
if (nfils < 0) {
#ifdef PIPESEND
if (usepipes && protocol == PROTO_K && *cmarg == '!') {
pipesend = 1;
cmarg++;
}
#endif /* PIPESEND */
xp = cmarg;
} else {
#ifndef NOMSEND
if (addlist)
xp = filehead->fl_name;
else
#endif /* NOMSEND */
if (filefile)
xp = filefile;
else if (calibrate)
xp = "Calibration";
else
xp = *cmlist;
}
debug(F110,"sinit xp",xp,0);
x = gnfile(); /* Get first filename. */
debug(F111,"sinit gnfile",ckitoa(gnferror),x);
if (x == 0) x = gnferror; /* If none, get error reason */
m = NULL; /* Error message pointer */
debug(F101,"sinit gnfil","",x);
switch (x) {
case -6: m = "No files meet selection criteria"; break;
case -5: m = "Too many files match wildcard"; break;
case -4: m = "Cancelled"; break;
case -3: m = "Read access denied"; break;
case -2: m = "File is not readable"; break;
#ifdef COMMENT
case -1: m = iswild(filnam) ? "No files match" : "File not found";
break;
case 0: m = "No filespec given!"; break;
#else
case 0:
case -1: m = iswild(filnam) ? "No files match" : "File not found";
break;
#endif /* COMMENT */
default:
break;
}
debug(F101,"sinit nfils","",nfils);
debug(F110,"sinit filnam",filnam,0);
if (x < 1) { /* Didn't get a file. */
debug(F111,"sinit msg",m,x);
if (server) { /* Doing GET command */
errpkt((CHAR *)m); /* so send Error packet. */
} else if (!local) { /* Doing SEND command */
interrupted = 1; /* (To suppress hint) */
printf("?%s\r\n",m);
} else {
xxscreen(SCR_EM,0,0l,m); /* so print message. */
}
tlog(F110,xp,m,0L); /* Make transaction log entry. */
freerbuf(rseqtbl[0]); /* Free the buffer the GET came in. */
return(0); /* Return failure code */
}
if (!local && !server && ckdelay > 0) /* OS-9 sleep(0) == infinite */
sleep(ckdelay); /* Delay if requested */
#ifdef datageneral
if ((local) && (!quiet)) /* Only do this if local & not quiet */
consta_mt(); /* Start the async read task */
#endif /* datageneral */
freerbuf(rseqtbl[0]); /* Free the buffer the GET came in. */
sipkt('S'); /* Send the Send-Init packet. */
ztime(&tp); /* Get current date/time */
tlog(F110,"Transaction begins",tp,0L); /* Make transaction log entry */
tlog(F110,"Global file mode:", binary ? "binary" : "text", 0L);
tlog(F100,"","",0);
debug(F111,"sinit ok",filnam,0);
return(1);
}
int
#ifdef CK_ANSIC
sipkt(char c) /* Send S or I packet. */
#else
sipkt(c) char c;
#endif
/* sipkt */ {
CHAR *rp; int k, x;
extern int sendipkts;
debug(F101,"sipkt pktnum","",pktnum); /* (better be 0...) */
ttflui(); /* Flush pending input. */
/*
If this is an I packet and SET SEND I-PACKETS is OFF, don't send it;
set sstate to 'Y' which makes the next input() call return 'Y' as if we
had received an ACK to the I packet we didn't send. This is to work
around buggy Kermit servers that can't handle I packets.
*/
if ((sendipkts == 0) && (c == 'I')) { /* I packet but don't send I pkts? */
sstate = 'Y'; /* Yikes! */
return(0); /* (see input()..)*/
}
k = sseqtbl[pktnum]; /* Find slot for this packet */
if (k < 0) { /* No slot? */
k = getsbuf(winlo = pktnum); /* Make one. */
debug(F101,"sipkt getsbuf","",k);
}
rp = rpar(); /* Get protocol parameters. */
if (!rp) rp = (CHAR *)"";
x = spack(c,pktnum,(int)strlen((char *)rp),rp); /* Send them. */
return(x);
}
/* X S I N I T -- Retransmit S-packet */
/*
For use in the GET-SEND sequence, when we start to send, but receive another
copy of the GET command because the receiver didn't get our S packet.
This retransmits the S packet and frees the receive buffer for the ACK.
This special case is necessary because packet number zero is being re-used.
*/
VOID
xsinit() {
int k;
k = rseqtbl[0];
debug(F101,"xsinit k","",k);
if (k > -1)
freerbuf(k);
resend(0);
}
/* R C V F I L -- Receive a file */
/*
Incoming filename is in data field of F packet.
This function decodes it into the srvcmd buffer, substituting an
alternate "as-name", if one was given.
Then it does any requested transformations (like converting to
lowercase), and finally if a file of the same name already exists,
takes the desired collision action.
Returns:
1 on success.
0 on failure.
*/
char ofn1[CKMAXPATH+4]; /* Buffer for output file name */
char * ofn2; /* Pointer to backup file name */
int ofn1x; /* Flag output file already exists */
CK_OFF_T ofn1len = (CK_OFF_T)0;
int opnerr; /* Flag for open error */
int /* Returns success ? 1 : 0 */
rcvfil(n) char *n; {
extern int en_cwd;
int i, skipthis;
char * n2;
char * dispo;
#ifdef OS2ONLY
char *zs, *longname, *newlongname, *pn; /* OS/2 long name items */
#endif /* OS2ONLY */
#ifdef DTILDE
char *dirp;
#endif /* DTILDE */
int dirflg, x, y;
#ifdef PIPESEND
extern char * rcvfilter;
#endif /* PIPESEND */
#ifdef CALIBRATE
extern int dest;
CK_OFF_T csave;
csave = calibrate; /* So we can decode filename */
calibrate = (CK_OFF_T)0;
#endif /* CALIBRATE */
ofperms = ""; /* Reset old-file permissions */
opnerr = 0; /* No open error (yet) */
ofn2 = NULL; /* No new name (yet) */
lsstate = 0; /* Cancel locking-shift state */
srvptr = srvcmd; /* Decode file name from packet. */
#ifdef UNICODE
xpnbyte(-1,0,0,NULL); /* Reset UCS-2 byte counter. */
#endif /* UNICODE */
debug(F110,"rcvfil rdatap",rdatap,0);
decode(rdatap,putsrv,0); /* Don't xlate charsets. */
#ifdef CALIBRATE
calibrate = csave;
if (dest == DEST_N) {
calibrate = 1;
cmarg2 = "CALIBRATE";
}
#endif /* CALIBRATE */
if (*srvcmd == '\0') /* Watch out for null F packet. */
ckstrncpy((char *)srvcmd,"NONAME",srvcmdlen);
makestr(&prrfspec,(char *)srvcmd); /* New preliminary filename */
#ifdef DTILDE
if (*srvcmd == '~') {
dirp = tilde_expand((char *)srvcmd); /* Expand tilde, if any. */
if (*dirp != '\0')
ckstrncpy((char *)srvcmd,dirp,srvcmdlen);
}
#else
#ifdef OS2
if (isalpha(*srvcmd) && srvcmd[1] == ':' && srvcmd[2] == '\0')
ckstrncat((char *)srvcmd,"NONAME",srvcmdlen);
#endif /* OS2 */
#endif /* DTILDE */
#ifndef NOICP
#ifndef NOSPL
/* File dialog when downloading... */
if (
#ifdef CK_APC
(apcactive == APC_LOCAL && adl_ask) || /* Autodownload with ASK */
#endif /* CK_APC */
(clcmds && haveurl) /* Or "kermit:" or "iksd:" URL */
) {
int x;
char fnbuf[CKMAXPATH+1]; /* Result buffer */
char * preface;
if (clcmds && haveurl)
preface = "\r\nIncoming file from Kermit server...\r\n\
Please confirm output file specification or supply an alternative:";
else
preface = "\r\nIncoming file from remote Kermit...\r\n\
Please confirm output file specification or supply an alternative:";
x = uq_file(preface, /* Preface */
NULL, /* Prompt (let uq_file() built it) */
3, /* Output file */
NULL, /* Help text */
(char *)srvcmd, /* Default */
fnbuf, /* Result buffer */
CKMAXPATH+1 /* Size of result buffer */
);
if (x < 1) { /* Refused */
rf_err = "Refused by user";
return(0);
}
ckstrncpy((char *)srvcmd,fnbuf,CKMAXPATH+1);
if (isabsolute((char *)srvcmd)) { /* User gave an absolute path */
g_fnrpath = fnrpath; /* Save current RECEIVE PATHNAMES */
fnrpath = PATH_ABS; /* switch to ABSOLUTE */
}
}
#endif /* NOSPL */
#endif /* NOICP */
if (!ENABLED(en_cwd)) { /* CD is disabled */
zstrip((char *)(srvcmd+2),&n2); /* and they included a pathname, */
if (strcmp((char *)(srvcmd+2),n2)) { /* so refuse. */
rf_err = "Access denied";
return(0);
}
}
#ifdef COMMENT
/* Wrong place for this -- handle cmarg2 first -- see below... */
if (zchko((char *)srvcmd) < 0) { /* Precheck for write access */
debug(F110,"rcvfil access denied",srvcmd,0);
rf_err = "Write access denied";
discard = opnerr = 1;
return(0);
}
xxscreen(SCR_FN,0,0l,(char *)srvcmd); /* Put it on screen if local */
debug(F110,"rcvfil srvcmd 1",srvcmd,0);
tlog(F110,"Receiving",(char *)srvcmd,0L); /* Transaction log entry */
#endif /* COMMENT */
skipthis = 0; /* This file in our exception list? */
for (i = 0; i < NSNDEXCEPT; i++) {
if (!rcvexcept[i]) {
break;
}
if (ckmatch(rcvexcept[i],(char *)srvcmd,filecase,1)) {
skipthis = 1;
break;
}
}
#ifdef DEBUG
if (deblog && skipthis) {
debug(F111,"rcvfil rcvexcept",rcvexcept[i],i);
debug(F110,"rcvfil skipping",srvcmd,0);
}
#endif /* DEBUG */
if (skipthis) { /* Skipping this file */
discard = 1;
rejection = 1;
rf_err = "Exception list";
debug(F101,"rcvfil discard","",discard);
tlog(F100," refused: exception list","",0);
return(1);
}
/* File is not in exception list */
if (!cmarg2) /* No core dumps please */
cmarg2 = "";
debug(F110,"rcvfil cmarg2",cmarg2,0);
if (*cmarg2) { /* Check for alternate name */
#ifndef NOSPL
int y; char *s; /* Pass it thru the evaluator */
extern int cmd_quoting;
if (cmd_quoting) {
y = MAXRP;
ckstrncpy(ofn1,(char *)srvcmd,CKMAXPATH+1); /* for \v(filename) */
s = (char *)srvcmd;
zzstring(cmarg2,&s,&y);
} else
*srvcmd = NUL;
if (!*srvcmd) /* If we got something */
#endif /* NOSPL */
ckstrncpy((char *)srvcmd,cmarg2,srvcmdlen);
}
debug(F110,"rcvfil srvcmd 2",srvcmd,0);
#ifdef PIPESEND
/* If it starts with "bang", it's a pipe, not a file. */
if (usepipes && protocol == PROTO_K && *srvcmd == '!' && !rcvfilter) {
CHAR *s;
s = srvcmd+1; /* srvcmd[] is not a pointer. */
while (*s) { /* So we have to slide the contents */
*(s-1) = *s; /* over 1 space to the left. */
s++;
}
*(s-1) = NUL;
pipesend = 1;
}
#endif /* PIPESEND */
#ifdef COMMENT
/*
This is commented out because we need to know whether the name we are
using was specified by the local user as an override, or came from the
incoming packet. In the former case, we don't do stuff to it (like
strip the pathname) that we might do to it in the latter.
*/
cmarg2 = ""; /* Done with alternate name */
#endif /* COMMENT */
if ((int)strlen((char *)srvcmd) > CKMAXPATH) /* Watch out for overflow */
*(srvcmd + CKMAXPATH - 1) = NUL;
/* At this point, srvcmd[] contains the incoming filename or as-name. */
/* So NOW we check for write access. */
if (zchko((char *)srvcmd) < 0) { /* Precheck for write access */
debug(F110,"rcvfil access denied",srvcmd,0);
rf_err = "Write access denied";
discard = opnerr = 1;
return(0);
}
xxscreen(SCR_FN,0,0l,(char *)srvcmd); /* Put it on screen if local */
debug(F110,"rcvfil srvcmd 1",srvcmd,0);
tlog(F110,"Receiving",(char *)srvcmd,0L); /* Transaction log entry */
#ifdef CK_LABELED
#ifdef VMS
/*
If we have an as-name, this overrides the internal name if we are doing
a labeled-mode transfer.
*/
if (*cmarg2) {
extern int lf_opts;
lf_opts &= ~LBL_NAM;
}
#endif /* VMS */
#endif /* CK_LABELED */
debug(F111,"rcvfil pipesend",srvcmd,pipesend);
#ifdef PIPESEND
/* Skip all the filename manipulation and collision actions */
if (pipesend) {
dirflg = 0;
ofn1[0] = '!';
ckstrncpy(&ofn1[1],(char *)srvcmd,CKMAXPATH+1);
ckstrncpy(n,ofn1,CKMAXPATH+1);
ckstrncpy(fspec,ofn1,CKMAXPATH+1);
makestr(&prfspec,fspec); /* New preliminary filename */
debug(F110,"rcvfil pipesend",ofn1,0);
goto rcvfilx;
}
#endif /* PIPESEND */
/*
This is to avoid passing email subjects through nzrtol().
We haven't yet received the A packet so we don't yet know it's e-mail,
so in fact we go ahead and convert it anyway, but later we get the
original back from ofilnam[].
*/
dispos = 0;
ckstrncpy(ofilnam,(char *)srvcmd,CKMAXPATH+1);
#ifdef NZLTOR
if (*cmarg2)
ckstrncpy((char *)ofn1,(char *)srvcmd,CKMAXPATH+1);
else
nzrtol((char *)srvcmd, /* Filename from packet */
(char *)ofn1, /* Where to put result */
fncnv, /* Filename conversion */
fnrpath, /* Pathname handling */
CKMAXPATH /* Size of result buffer */
);
#else
debug(F101,"rcvfil fnrpath","",fnrpath); /* Handle pathnames */
if (fnrpath == PATH_OFF && !*cmarg2) { /* RECEIVE PATHNAMES OFF? */
char *t; /* Yes. */
zstrip((char *)srvcmd,&t); /* If there is a pathname, strip it */
debug(F110,"rcvfil PATH_OFF zstrip",t,0);
if (!t) /* Be sure we didn't strip too much */
sprintf(ofn1,"FILE%02ld",filcnt);
else if (*t == '\0')
sprintf(ofn1,"FILE%02ld",filcnt);
else
ckstrncpy(ofn1,t,CKMAXPATH+1);
ckstrncpy((char *)srvcmd,ofn1,srvcmdlen); /* Now copy it back. */
}
/*
SET RECEIVE PATHNAMES RELATIVE...
The following doesn't belong here but doing it right would require
defining and implementing a new file routine for all ck?fio.c modules.
So for now...
*/
#ifdef UNIXOROSK
else if (fnrpath == PATH_REL && !*cmarg2) {
if (isabsolute((char *)srvcmd)) {
ofn1[0] = '.';
ckstrncpy(&of1n[1],(char *)srvcmd,CKMAXPATH+1);
ckstrncpy((char *)srvcmd,ofn1,srvcmdlen);
debug(F110,"rcvfil PATH_REL",ofn1,0);
}
}
#else
#ifdef OS2
else if (fnrpath == PATH_REL && !*cmarg2) {
if (isabsolute((char *)srvcmd)) {
char *p = (char *)srvcmd;
if (isalpha(*p) && *(p+1) == ':')
p += 2;
if (*p == '\\' || *p == '/')
p++;
ckstrncpy(ofn1,p,CKMAXPATH+1);
ckstrncpy((char *)srvcmd,ofn1,srvcmdlen);
debug(F110,"rcvfil OS2 PATH_REL",ofn1,0);
}
}
#endif /* OS2 */
#endif /* UNIXOROSK */
/* Now srvcmd contains incoming filename with path possibly stripped */
if (fncnv) /* FILE NAMES CONVERTED? */
zrtol((char *)srvcmd,(char *)ofn1); /* Yes, convert to local form */
else
ckstrncpy(ofn1,(char *)srvcmd,CKMAXPATH+1); /* No, copy literally. */
#endif /* NZLTOR */
#ifdef PIPESEND
if (rcvfilter) {
char * p = NULL, * q;
int nn = MAXRP;
pipesend = 1;
debug(F110,"rcvfil rcvfilter ",rcvfilter,0);
#ifndef NOSPL
if ((p = (char *) malloc(nn + 1))) {
q = p;
#ifdef COMMENT
/* We have already processed srvcmd and placed it into ofn1 */
ckstrncpy(ofn1,(char *)srvcmd,CKMAXPATH+1); /* For \v(filename) */
#endif /* COMMENT */
debug(F110,"rcvfile pipesend filter",rcvfilter,0);
zzstring(rcvfilter,&p,&nn);
debug(F111,"rcvfil pipename",q,nn);
if (nn <= 0) {
printf(
"?Sorry, receive filter + filename too long, %d max.\n",
CKMAXPATH
);
rf_err = "Name too long";
free(q);
return(0);
}
ckstrncpy((char *)srvcmd,q,MAXRP);
free(q);
}
#endif /* NOSPL */
}
#endif /* PIPESEND */
/* Now the incoming filename, possibly converted, is in ofn1[]. */
#ifdef OS2
/* Don't refuse the file just because the name is illegal. */
if (!IsFileNameValid(ofn1)) { /* Name is OK for OS/2? */
#ifdef OS2ONLY
char *zs = NULL;
zstrip(ofn1, &zs); /* Not valid, strip unconditionally */
if (zs) {
if (iattr.longname.len && /* Free previous longname, if any */
iattr.longname.val)
free(iattr.longname.val);
iattr.longname.len = strlen(zs); /* Store in attribute structure */
iattr.longname.val = (char *) malloc(iattr.longname.len + 1);
if (iattr.longname.val) /* Remember this (illegal) name */
strcpy(iattr.longname.val, zs); /* safe */
}
#endif /* OS2ONLY */
debug(F110,"rcvfil: invalid file name",ofn1,0);
ChangeNameForFAT(ofn1); /* Change to an acceptable name */
debug(F110,"rcvfil: FAT file name",ofn1,0);
} else { /* Name is OK. */
debug(F110,"rcvfil: valid file name",ofn1,0);
#ifdef OS2ONLY
if (iattr.longname.len &&
iattr.longname.val) /* Free previous longname, if any */
free(iattr.longname.val);
iattr.longname.len = 0;
iattr.longname.val = NULL; /* This file doesn't need a longname */
#endif /* OS2ONLY */
}
#endif /* OS2 */
debug(F110,"rcvfil as",ofn1,0);
/* Filename collision action section. */
dirflg = /* Is it a directory name? */
#ifdef CK_TMPDIR
isdir(ofn1)
#else
0
#endif /* CK_TMPDIR */
;
debug(F101,"rcvfil dirflg","",dirflg);
ofn1len = zchki(ofn1); /* File already exists? */
debug(F111,"rcvfil ofn1len",ofn1,ofn1len);
ofn1x = (ofn1len != (CK_OFF_T)-1);
if ( (
#ifdef UNIX
strcmp(ofn1,"/dev/null") && /* It's not the null device? */
#else
#ifdef OSK
strcmp(ofn1,"/nil") &&
#endif /* OSK */
#endif /* UNIX */
!stdouf ) && /* Not copying to standard output? */
ofn1x || /* File of same name exists? */
dirflg ) { /* Or file is a directory? */
debug(F111,"rcvfil exists",ofn1,fncact);
#ifdef CK_PERMS
ofperms = zgperm((char *)ofn1); /* Get old file's permissions */
debug(F110,"rcvfil perms",ofperms,0);
#endif /* CK_PERMS */
debug(F101,"rcvfil fncact","",fncact);
switch (fncact) { /* Yes, do what user said. */
case XYFX_A: /* Append */
ofperms = "";
debug(F100,"rcvfil append","",0);
if (dirflg) {
rf_err = "Can't append to a directory";
tlog(F100," error - can't append to directory","",0);
discard = opnerr = 1;
return(0);
}
tlog(F110," appending to",ofn1,0);
break;
#ifdef COMMENT
case XYFX_Q: /* Query (Ask) */
break; /* not implemented */
#endif /* COMMENT */
case XYFX_B: /* Backup (rename old file) */
if (dirflg) {
rf_err = "Can't rename existing directory";
tlog(F100," error - can't rename directory","",0);
discard = opnerr = 1;
return(0);
}
znewn(ofn1,&ofn2); /* Get new unique name */
tlog(F110," backup:",ofn2,0);
debug(F110,"rcvfil backup ofn1",ofn1,0);
debug(F110,"rcvfil backup ofn2",ofn2,0);
#ifdef CK_LABELED
#ifdef OS2ONLY
/*
In case this is a FAT file system, we can't change only the FAT name, we
also have to change the longname from the extended attributes block.
Otherwise, we'll have many files with the same longname and if we copy them
to an HPFS volume, only one will survive.
*/
if (os2getlongname(ofn1, &longname) > -1) {
if (strlen(longname)) {
char tmp[10];
extern int ck_znewn;
sprintf(tmp,".~%d~",ck_znewn);
newlongname =
(char *) malloc(strlen(longname) + strlen(tmp) + 1);
if (newlongname) {
strcpy(newlongname, longname); /* safe (prechecked) */
strcat(newlongname, tmp); /* safe (prechecked) */
os2setlongname(ofn1, newlongname);
free(newlongname);
newlongname = NULL;
}
}
} else debug(F100,"rcvfil os2getlongname failed","",0);
#endif /* OS2ONLY */
#endif /* CK_LABELED */
#ifdef COMMENT
/* Do this later, in opena()... */
if (zrename(ofn1,ofn2) < 0) {
rf_err = "Can't transform filename";
debug(F110,"rcvfil rename fails",ofn1,0);
discard = opnerr = 1;
return(0);
}
#endif /* COMMENT */
break;
case XYFX_D: /* Discard (refuse new file) */
ofperms = "";
discard = 1;
rejection = 1; /* Horrible hack: reason = name */
debug(F101,"rcvfil discard","",discard);
tlog(F100," refused: name","",0);
break;
case XYFX_R: /* Rename incoming file */
znewn(ofn1,&ofn2); /* Make new name for it */
#ifdef OS2ONLY
if (iattr.longname.len) {
char tmp[10];
extern int ck_znewn;
sprintf(tmp,".~%d~",ck_znewn);
newlongname =
(char *) malloc(iattr.longname.len + strlen(tmp) + 1);
if (newlongname) {
strcpy(newlongname, iattr.longname.val); /* safe */
strcat(newlongname, tmp); /* safe */
debug(F110,
"Rename Incoming: newlongname",newlongname,0);
if (iattr.longname.len &&
iattr.longname.val)
free(iattr.longname.val);
iattr.longname.len = strlen(newlongname);
iattr.longname.val = newlongname;
/* free(newlongname) here ? */
}
}
#endif /* OS2ONLY */
break;
case XYFX_X: /* Replace old file */
debug(F100,"rcvfil overwrite","",0);
if (dirflg) {
rf_err = "Can't overwrite existing directory";
tlog(F100," error - can't overwrite directory","",0);
discard = opnerr = 1;
#ifdef COMMENT
return(0);
#else
break;
#endif /* COMMENT */
}
tlog(F110,"overwriting",ofn1,0);
break;
case XYFX_U: /* Refuse if older */
debug(F110,"rcvfil update",ofn1,0);
if (dirflg) {
rf_err = "File has same name as existing directory";
tlog(F110," error - directory exists:",ofn1,0);
discard = opnerr = 1;
#ifdef COMMENT
/* Don't send an error packet, just refuse the file */
return(0);
#endif /* COMMENT */
}
break; /* Not here, we don't have */
/* the attribute packet yet. */
default:
ofperms = "";
debug(F101,"rcvfil bad collision action","",fncact);
break;
}
}
debug(F110,"rcvfil ofn1",ofn1,0);
debug(F110,"rcvfil ofn2",ofn2,0);
debug(F110,"rcvfil ofperms",ofperms,0);
if (fncact == XYFX_R && ofn1x && ofn2) { /* Renaming incoming file? */
xxscreen(SCR_AN,0,0l,ofn2); /* Display renamed name */
ckstrncpy(n, ofn2, CKMAXPATH+1); /* Return it */
} else { /* No */
xxscreen(SCR_AN,0,0l,ofn1); /* Display regular name */
ckstrncpy(n, ofn1, CKMAXPATH+1); /* and return it. */
}
#ifdef CK_MKDIR
/* Create directory(s) if necessary. */
if (!discard && fnrpath != PATH_OFF) { /* RECEIVE PATHAMES ON? */
int x;
debug(F110,"rcvfil calling zmkdir",ofn1,0); /* Yes */
if ((x = zmkdir(ofn1)) < 0) {
debug(F100,"zmkdir fails","",0);
tlog(F110," error - directory creation failure:",ofn1,0);
rf_err = "Directory creation failure.";
discard = 1;
return(0);
}
#ifdef TLOG
else if (x > 0)
tlog(F110," path created:",ofn1,0);
#endif /* TLOG */
}
#else
debug(F110,"rcvfil CK_MKDIR not defined",ofn1,0);
#endif /* CK_MKDIR */
if (calibrate)
ckstrncpy(fspec,ofn1,CKMAXPATH+1);
else
zfnqfp(ofn1,fspeclen,fspec);
debug(F110,"rcvfil fspec",fspec,0);
#ifdef COMMENT
/* See comments with VMS zfnqfp()... */
#ifdef VMS
/* zfnqfp() does not return the version number */
if (!calibrate) {
int x, v;
x = strlen(ofn1);
if (x > 0) {
if (ofn1[x-1] == ';') {
v = getvnum(ofn1);
ckstrncpy(&ofn1[x],ckitoa(v),CKMAXPATH-x);
}
}
}
#endif /* VMS */
#endif /* COMMENT */
fspec[fspeclen] = NUL;
makestr(&prfspec,fspec); /* New preliminary filename */
#ifdef PIPESEND
rcvfilx:
#endif /* PIPESEND */
debug(F110,"rcvfilx: n",n,0);
debug(F110,"rcvfilx: ofn1",ofn1,0);
ffc = (CK_OFF_T)0; /* Init per-file counters */
cps = oldcps = 0L;
rs_len = (CK_OFF_T)0;
rejection = -1;
fsecs = gtimer(); /* Time this file started */
#ifdef GFTIMER
fpfsecs = gftimer();
debug(F101,"rcvfil fpfsecs","",fpfsecs);
#endif /* GFTIMER */
filcnt++;
intmsg(filcnt);
return(1); /* Successful return */
}
/* R E O F -- Receive End Of File packet for incoming file */
/*
Closes the received file.
Returns:
0 on success.
-1 if file could not be closed.
2 if disposition was mail, mail was sent, but temp file not deleted.
3 if disposition was print, file was printed, but not deleted.
-2 if disposition was mail and mail could not be sent
-3 if disposition was print and file could not be printed
-4 if MOVE-TO: failed
-5 if RENAME-TO: failed
*/
int
reof(f,yy) char *f; struct zattr *yy; {
extern char * rcv_move, * rcv_rename;
extern int o_isopen;
int rc = 0; /* Return code */
char *p;
char c;
debug(F111,"reof fncact",f,fncact);
debug(F101,"reof discard","",discard);
success = 1; /* Assume status is OK */
lsstate = 0; /* Cancel locking-shift state */
if (discard) { /* Handle attribute refusals, etc. */
debug(F101,"reof discarding","",0);
success = 0; /* Status = failed. */
if (rejection == '#' || /* Unless rejection reason is */
rejection == 1 || /* date or name (SET FILE COLLISION */
rejection == '?') /* UPDATE or DISCARD) */
success = 1;
debug(F101,"reof success","",success);
filrej++; /* Count this rejection. */
discard = 0; /* We never opened the file, */
return(0); /* so we don't close it. */
}
#ifdef DEBUG
if (deblog) {
debug(F101,"reof cxseen","",cxseen);
debug(F101,"reof czseen","",czseen);
debug(F110,"reof rdatap",rdatap,0);
}
#endif /* DEBUG */
if (cxseen == 0) /* Got cancel directive? */
cxseen = (*rdatap == 'D');
if (cxseen || czseen) /* (for hints) */
interrupted = 1;
success = (cxseen || czseen) ? 0 : 1; /* Set SUCCESS flag appropriately */
if (!success) /* "Uncount" this file */
filrej++;
debug(F101,"reof o_isopen","",o_isopen);
if (o_isopen) { /* If an output file was open... */
#ifdef CK_CTRLZ
if (success) {
debug(F101,"reof lastchar","",lastchar);
if (!binary && eofmethod == XYEOF_Z && lastchar != 26 &&
(!xflg || (xflg && remfile)))
pnbyte((char)26,putfil);
}
#endif /* CK_CTRLZ */
rc = clsof(cxseen || czseen); /* Close the file (resets cxseen) */
debug(F101,"reof closf","",rc);
if (rc < 0) { /* If failure to close, FAIL */
if (success) filrej++;
success = 0;
}
if (!calibrate) {
/* Set file modification date and/or permissions */
if (success)
zstime(f,yy,0);
#ifdef OS2ONLY
#ifdef CK_LABELED
if (success && yy->longname.len)
os2setlongname(f, yy->longname.val);
#endif /* CK_LABELED */
#endif /* OS2ONLY */
}
if (success == 0) { /* And program return code */
xitsta |= W_RECV;
} else if (success == 1) { /* File rec'd successfully */
makestr(&rrfspec,prrfspec); /* Record it for wheremsg */
makestr(&rfspec,prfspec);
}
/* Handle dispositions from attribute packet... */
c = NUL;
#ifndef NOFRILLS
if (!calibrate && yy->disp.len != 0) {
p = yy->disp.val;
c = *p++;
#ifndef UNIX
/*
See ckcpro.w. In UNIX we don't use temp files any more -- we pipe the
stuff right into mail or lpr.
*/
if (c == 'M') { /* Mail to user. */
rc = zmail(p,filnam); /* Do the system's mail command */
if (rc < 0) success = 0; /* Remember status */
tlog(F110,"mailed",filnam,0L);
tlog(F110," to",p,0L);
zdelet(filnam); /* Delete the file */
} else if (c == 'P') { /* Print the file. */
rc = zprint(p,filnam); /* Do the system's print command */
if (rc < 0) success = 0; /* Remember status */
tlog(F110,"printed",filnam,0L);
tlog(F110," with options",p,0L);
#ifndef VMS
#ifndef STRATUS
/* spooler deletes file after print complete in VOS & VMS */
if (zdelet(filnam) && rc == 0) rc = 3; /* Delete the file */
#endif /* STRATUS */
#endif /* VMS */
}
#endif /* UNIX */
}
#endif /* NOFRILLS */
if (success &&
!pipesend &&
!calibrate && c != 'M' && c != 'P') {
if (rcv_move) { /* If /MOVE-TO was given... */
char * p = rcv_move;
#ifdef COMMENT
/* No need for this - it's a directory name */
char tmpbuf[CKMAXPATH+1];
extern int cmd_quoting; /* for \v(filename) */
if (cmd_quoting) { /* But only if cmd_quoting is on */
int n;
n = CKMAXPATH;
p = tmpbuf;
debug(F111,"reof /move-to",rcv_move,0);
zzstring(rcv_move,&p,&n);
p = tmpbuf;
}
#endif /* COMMENT */
/*
Here we could create the directory if it didn't exist (and it was relative)
but there would have to be a user-settable option to say whether to do this.
*/
rc = zrename(filnam,p);
debug(F111,"reof MOVE zrename",rcv_move,rc);
if (rc > -1) {
tlog(F110," moving received file to",rcv_move,0);
} else {
rc = -4;
tlog(F110," FAILED to move received file to",rcv_move,0);
}
} else if (rcv_rename) { /* Or /RENAME-TO: */
char *s = rcv_rename; /* This is the renaming string */
#ifndef NOSPL
char tmpnam[CKMAXPATH+16];
extern int cmd_quoting; /* for \v(filename) */
if (cmd_quoting) { /* But only if cmd_quoting is on */
int n; /* Pass it thru the evaluator */
n = CKMAXPATH;
s = (char *)tmpnam;
zzstring(rcv_rename,&s,&n);
s = (char *)tmpnam;
}
#endif /* NOSPL */
if (s) if (*s) {
rc = zrename(filnam,s);
debug(F111,"reof RENAME zrename",s,rc);
if (rc > -1) {
tlog(F110," renaming received file to",s,0);
} else {
rc = -5;
tlog(F110," FAILED to rename received file to",s,0);
}
}
}
}
}
debug(F101,"reof success","",success);
debug(F101,"reof returns","",rc);
filnam[0] = NUL; /* Erase the filename */
return(rc);
}
/* R E O T -- Receive End Of Transaction */
VOID
reot() {
cxseen = czseen = discard = 0; /* Reset interruption flags */
tstats(); /* Finalize transfer statistics */
}
/* S F I L E -- Send File header or teXt header packet */
/*
Call with x nonzero for X packet, zero for F packet.
If X == 0, filename to send is in filnam[], and if cmarg2 is not null
or empty, the file should be sent under this name rather than filnam[].
If sndfilter not NULL, it is the name of a send filter.
Returns 1 on success, 0 on failure.
*/
int
sfile(x) int x; {
#ifdef pdp11
#define PKTNL 64
#else
#define PKTNL 256
#endif /* pdp11 */
char pktnam[PKTNL+1]; /* Local copy of name */
char *s;
int rc;
int notafile = 0;
extern int filepeek;
#ifdef PIPESEND
extern char * sndfilter;
if (sndfilter) {
pipesend = 1;
debug(F110,"sfile send filter ",sndfilter,0);
}
#endif /* PIPESEND */
notafile = calibrate || sndarray || pipesend || x;
debug(F101,"sfile x","",x);
debug(F101,"sfile notafile","",notafile);
#ifndef NOCSETS
if (tcs_save > -1) { /* Character sets */
tcharset = tcs_save;
tcs_save = -1;
debug(F101,"sfile restored tcharset","",tcharset);
}
if (fcs_save > -1) {
fcharset = fcs_save;
fcs_save = -1;
debug(F101,"sfile restored fcharset","",fcharset);
}
setxlatype(tcharset,fcharset); /* Translation type */
#endif /* NOCSETS */
/* cmarg2 or filnam (with that precedence) have the file's name */
lsstate = 0; /* Cancel locking-shift state */
#ifdef COMMENT
/* Do this after making sure we can open the file */
if (nxtpkt() < 0) return(0); /* Bump packet number, get buffer */
#endif /* COMMENT */
pktnam[0] = NUL; /* Buffer for name we will send */
if (x == 0) { /* F-Packet setup */
if (!cmarg2) cmarg2 = "";
#ifdef DEBUG
if (deblog) {
/* debug(F111,"sfile cmarg2",cmarg2,cmarg2); */
debug(F101,"sfile binary 1","",binary);
debug(F101,"sfile wearealike","",wearealike);
debug(F101,"sfile xfermode","",xfermode);
debug(F101,"sfile filepeek","",filepeek);
#ifndef NOCSETS
debug(F101,"sfile s_cset","",s_cset);
debug(F101,"sfile tcharset","",tcharset);
debug(F101,"sfile xfrxla","",xfrxla);
#endif /* NOCSETS */
}
#endif /* DEBUG */
if (xfermode == XMODE_A /* TRANSFER MODE AUTOMATIC */
#ifndef NOMSEND
&& !addlist /* And not working from a SEND-LIST */
#endif /* NOMSEND */
) {
/* Other Kermit is on a like system and no charset translation */
if (wearealike
#ifndef NOCSETS
&& (tcharset == TC_TRANSP || xfrxla == 0)
#endif /* NOCSETS */
) {
#ifdef VMS
if (binary != XYFT_I)
#endif /* VMS */
#ifdef CK_LABELED
if (binary != XYFT_L)
#endif /* CK_LABELED */
binary = XYFT_B; /* Send all files in binary mode */
}
/* Otherwise select transfer mode based on file info */
else if (!notafile /* but not if sending from pipe */
#ifdef CK_LABELED
&& binary != XYFT_L /* and not if FILE TYPE LABELED */
#endif /* CK_LABELED */
#ifdef VMS
&& binary != XYFT_I /* or FILE TYPE IMAGE */
#endif /* VMS */
) {
#ifdef UNICODE
fileorder = -1; /* File byte order */
#endif /* UNICODE */
if (filepeek && !notafile) { /* Real file, FILE SCAN is ON */
int k, x;
k = scanfile(filnam,&x,nscanfile); /* Scan the file */
debug(F101,"sfile scanfile","",k);
switch (k) {
case FT_TEXT: /* Unspecified text */
debug(F100,"sfile scanfile text","",0);
binary = XYFT_T; /* SET FILE TYPE TEXT */
break;
#ifndef NOCSETS
case FT_7BIT: /* 7-bit text */
binary = XYFT_T; /* SET FILE TYPE TEXT */
/* If SEND CHARSET-SELECTION AUTO */
/* and SET TRANSFER TRANSLATION is ON */
debug(F100,"sfile scanfile text7","",0);
if (s_cset == XMODE_A && xfrxla) {
if (fcsinfo[fcharset].size != 128) {
fcs_save = fcharset; /* Current FCS not 7bit */
fcharset = dcset7; /* Use default 7bit set */
debug(F101,"sfile scanfile 7 fcharset",
"",fcharset);
}
/* And also switch to appropriate TCS */
if (afcset[fcharset] > -1 &&
afcset[fcharset] <= MAXTCSETS) {
tcs_save = tcharset;
tcharset = afcset[fcharset];
debug(F101,"sfile scanfile 7 tcharset","",
tcharset);
}
setxlatype(tcharset,fcharset);
}
break;
case FT_8BIT: /* 8-bit text */
binary = XYFT_T; /* SET FILE TYPE TEXT */
/* If SEND CHARSET-SELEC AUTO */
/* and SET TRANSFER TRANSLATION is ON */
debug(F100,"sfile scanfile text8","",0);
if (s_cset == XMODE_A && xfrxla) {
if (fcsinfo[fcharset].size != 256) {
fcs_save = fcharset; /* Current FCS not 8bit */
fcharset = dcset8; /* Use default 8bit set */
debug(F101,"sfile scanfile 8 fcharset",
"",fcharset);
}
/* Switch to corresponding transfer charset */
if (afcset[fcharset] > -1 &&
afcset[fcharset] <= MAXTCSETS) {
tcs_save = tcharset;
tcharset = afcset[fcharset];
debug(F101,"sfile scanfile 8 tcharset","",
tcharset);
}
setxlatype(tcharset,fcharset);
}
break;
#ifdef UNICODE
case FT_UTF8: /* UTF-8 text */
case FT_UCS2: /* UCS-2 text */
debug(F101,"sfile scanfile Unicode","",k);
binary = XYFT_T;
/* If SEND CHARSET-SELEC AUTO */
/* and SET TRANSFER TRANSLATION is ON */
if (s_cset == XMODE_A && xfrxla) {
fcs_save = fcharset;
tcs_save = tcharset;
fcharset = (k == FT_UCS2) ? FC_UCS2 : FC_UTF8;
if (k == FT_UCS2 && x > -1)
fileorder = x;
}
/* Switch to associated transfer charset if any */
if (afcset[fcharset] > -1 &&
afcset[fcharset] <= MAXTCSETS)
tcharset = afcset[fcharset];
if (tcharset == TC_TRANSP) /* If none */
tcharset = TC_UTF8; /* use UTF-8 */
setxlatype(tcharset,fcharset);
debug(F101,"sfile Unicode tcharset","",tcharset);
break;
#endif /* UNICODE */
#endif /* NOCSETS */
case FT_BIN:
debug(F101,"sfile scanfile binary","",k);
binary = XYFT_B;
break;
/* Default: Don't change anything */
}
}
}
debug(F101,"sfile binary 2","",binary);
debug(F101,"sfile sendmode","",sendmode);
}
if (*cmarg2) { /* If we have a send-as name... */
int y; char *s;
#ifndef NOSPL /* and a script programming language */
extern int cmd_quoting;
if (cmd_quoting) { /* and it's not turned off */
y = PKTNL; /* pass as-name thru the evaluator */
s = pktnam;
zzstring(cmarg2,&s,&y);
#ifdef COMMENT
/* This ruins macros like BSEND */
if (!pktnam[0]) /* and make sure result is not empty */
sprintf(pktnam,"FILE%02ld",filcnt);
#endif /* COMMENT */
} else
#endif /* NOSPL */
ckstrncpy(pktnam,cmarg2,PKTNL); /* copy it literally, */
debug(F110,"sfile pktnam",pktnam,0);
#ifdef COMMENT
/* We don't do this any more because now we have filename templates */
cmarg2 = ""; /* and blank it out for next time. */
#endif /* COMMENT */
}
if (!*pktnam) { /* No as-name... */
#ifdef NZLTOR
int xfncnv, xpath;
debug(F101,"sfile fnspath","",fnspath);
debug(F101,"sfile fncnv","",fncnv);
xfncnv = fncnv;
xpath = fnspath;
if (notafile) { /* If not an actual file */
xfncnv = 0; /* Don't convert name */
xpath = PATH_OFF; /* Leave path off */
} else if (xfncnv &&
(!strcmp(whoareu,"U1") || !strcmp(whoareu,"UN"))
) {
/* Less-strict conversion if partner is UNIX or Win32 */
xfncnv = -1;
}
debug(F101,"sfile xpath","",xpath);
debug(F101,"sfile xfncnv","",xfncnv);
nzltor(filnam,pktnam,xfncnv,xpath,PKTNL);
#else /* Not NZLTOR */
debug(F101,"sfile fnspath","",fnspath);
if (fnspath == PATH_OFF /* Stripping path names? */
&& (!notafile) /* (of actual files) */
) {
char *t; /* Yes. */
zstrip(filnam,&t); /* Strip off the path. */
debug(F110,"sfile zstrip",t,0);
if (!t) t = "UNKNOWN"; /* Be cautious... */
else if (*t == '\0')
t = "UNKNOWN";
ckstrncpy(pktnam,t,PKTNL); /* Copy stripped name literally. */
} else if (fnspath == PATH_ABS && !notafile) {
/* Converting to absolute form */
zfnqfp(filnam,PKTNL,pktnam);
} else
ckstrncpy(pktnam,filnam,PKTNL);
/* pktnam[] has the packet name, filnam[] has the original name. */
/* But we still need to convert pktnam if FILE NAMES CONVERTED. */
debug(F101,"sfile fncnv","",fncnv);
if (fncnv && !notafile) { /* If converting names of files */
zltor(pktnam,(char *)srvcmd); /* convert it to common form, */
ckstrncpy(pktnam,(char *)srvcmd,PKTNL);
*srvcmd = NUL;
}
#endif /* NZLTOR */
}
if (!*pktnam) /* Failsafe... */
sprintf(pktnam,"FILE%02ld",filcnt);
debug(F110,"sfile filnam 1",filnam,0);
debug(F110,"sfile pktnam 1",pktnam,0);
#ifdef PIPESEND
/* If we have a send filter, substitute the current filename into it */
if (sndfilter) {
char * p = NULL, * q;
int n = CKMAXPATH;
#ifndef NOSPL
if ((p = (char *) malloc(n + 1))) {
q = p;
debug(F110,"sfile pipesend filter",sndfilter,0);
zzstring(sndfilter,&p,&n);
debug(F111,"sfile pipename",q,n);
if (n <= 0) {
printf(
"?Sorry, send filter + filename too long, %d max.\n",
CKMAXPATH
);
free(q);
return(0);
}
ckstrncpy(filnam,q,CKMAXPATH+1);
free(q);
}
#endif /* NOSPL */
}
#endif /* PIPESEND */
debug(F110,"sfile filnam 2",filnam,0); /* Log debugging info */
debug(F110,"sfile pktnam 2",pktnam,0);
if (openi(filnam) == 0) /* Try to open the input file */
return(0);
#ifdef CK_RESEND
/*
The following check is done after openi() is called, since openi() itself
can change the transfer mode (as in VMS).
*/
if ((binary == XYFT_T
#ifdef VMS
|| binary == XYFT_L
#endif /* VMS */
) && sendmode == SM_RESEND) {
/* Trying to RESEND/REGET a file first sent in TEXT mode. */
debug(F111,"sfile error - Recover vs Text",filnam,binary);
/* Set appropriate error messages and make log entries here */
#ifdef VMS
if (binary == XYFT_L)
ckmakmsg((char *)epktmsg,
PKTMSGLEN,
"Recovery attempted in LABELED mode: ",
filnam,
NULL,
NULL
);
else
#endif /* VMS */
ckmakmsg((char *)epktmsg,
PKTMSGLEN,
"Recovery attempted in TEXT mode: ",
filnam,
NULL,
NULL
);
return(0);
}
if (sendmode == SM_PSEND) /* PSENDing? */
if (sendstart > (CK_OFF_T)0) /* Starting position */
if (zfseek(sendstart) < 0) /* seek to it... */
return(0);
#endif /* CK_RESEND */
s = pktnam; /* Name for packet data field */
#ifdef OS2
/* Never send a disk letter. */
if (isalpha(*s) && (*(s+1) == ':'))
s += 2;
#endif /* OS2 */
} else { /* X-packet setup, not F-packet. */
binary = XYFT_T; /* Text always */
debug(F110,"sfile X packet",cmdstr,0); /* Log debugging info */
s = cmdstr; /* Name for data field */
}
/* Now s points to the string that goes in the packet data field. */
debug(F101,"sfile binary","",binary); /* Log debugging info */
encstr((CHAR *)s); /* Encode the name. */
/* Send the F or X packet */
/* If the encoded string did not fit into the packet, it was truncated. */
if (nxtpkt() < 0) return(0); /* Bump packet number, get buffer */
rc = spack((char) (x ? 'X' : 'F'), pktnum, size, data);
if (rc < 0)
return(rc);
#ifndef NOCSETS
setxlatype(tcharset,fcharset); /* Set up charset translations */
#endif /* NOCSETS */
if (x == 0) { /* Display for F packet */
if (displa) { /* Screen */
xxscreen(SCR_FN,'F',(long)pktnum,filnam);
xxscreen(SCR_AN,0,0L,pktnam);
xxscreen(SCR_FS,0,calibrate ? calibrate : fsize,"");
}
#ifdef pdp11
tlog(F110,"Sending",filnam,0L); /* Transaction log entry */
makestr(&psfspec,filnam); /* New filename */
#else
#ifndef ZFNQFP
tlog(F110,"Sending",filnam,0L);
makestr(&psfspec,filnam); /* New filename */
#else
if (notafile) { /* If not a file log simple name */
tlog(F110,"Sending", filnam, 0L);
} else { /* Log fully qualified filename */
#ifdef COMMENT
/* This section generates bad code in SCO 3.2v5.0.5's cc */
char *p = NULL, *q = filnam;
debug(F101,"sfile CKMAXPATH","",CKMAXPATH);
if ((p = malloc(CKMAXPATH+1))) {
debug(F111,"sfile calling zfnqfp",filnam,strlen(filnam));
if (zfnqfp(filnam, CKMAXPATH, p)) {
debug(F111,"sfile zfnqfp ok",p,strlen(p));
q = p;
}
}
#else
char tmpbuf[CKMAXPATH+1];
char *p = tmpbuf, *q = filnam;
if (zfnqfp(filnam, CKMAXPATH, p))
q = p;
#endif /* COMMENT */
debug(F111,"sfile q",q,strlen(q));
tlog(F110,"Sending",q,0L);
makestr(&psfspec,q); /* New preliminary filename */
#ifdef COMMENT
if (p) free(p);
#endif /* COMMENT */
}
#endif /* ZFNQFP */
#endif /* pdp11 */
tlog(F110," as",pktnam,0L);
if (binary) { /* Log file mode in transaction log */
tlog(F101," mode: binary","",(long) binary);
} else { /* If text mode, check character set */
tlog(F100," mode: text","",0L);
#ifndef NOCSETS
if (tcharset == TC_TRANSP || xfrxla == 0) {
tlog(F110," character set","transparent",0L);
} else {
tlog(F110," xfer character set",tcsinfo[tcharset].name,0L);
tlog(F110," file character set",fcsinfo[fcharset].name,0L);
}
#endif /* NOCSETS */
}
} else { /* Display for X-packet */
xxscreen(SCR_XD,'X',(long)pktnum,cmdstr); /* Screen */
tlog(F110,"Sending from:",cmdstr,0L); /* Transaction log */
}
intmsg(++filcnt); /* Count file, give interrupt msg */
first = 1; /* Init file character lookahead. */
ffc = (CK_OFF_T)0; /* Init file character counter. */
cps = oldcps = 0L; /* Init cps statistics */
rejection = -1;
fsecs = gtimer(); /* Time this file started */
#ifdef GFTIMER
fpfsecs = gftimer();
debug(F101,"SFILE fpfsecs","",fpfsecs);
#endif /* GFTIMER */
debug(F101,"SFILE fsecs","",fsecs);
return(1);
}
/* S D A T A -- Send a data packet */
/*
Returns -1 if no data to send (end of file), -2 if connection is broken.
If there is data, a data packet is sent, and sdata() returns 1.
In the streaming case, the window is regarded as infinite and we keep
sending data packets until EOF or there appears to be a Kermit packet on the
reverse channel. When not streaming and the window size is greater than 1,
we keep sending data packets until window is full or characters start to
appear from the other Kermit.
In the windowing or streaming case, when there is no more data left to send
(or when sending has been interrupted), sdata() does nothing and returns 0
each time it is called until the acknowledgement sequence number catches up
to the last data packet that was sent.
*/
int
sdata() {
int i, x, len;
char * s;
debug(F101,"sdata entry, first","",first);
debug(F101,"sdata drain","",drain);
/*
The "drain" flag is used with window size > 1. It means we have sent
our last data packet. If called and drain is not zero, then we return
0 as if we had sent an empty data packet, until all data packets have
been ACK'd, then then we can finally return -1 indicating EOF, so that
the protocol can switch to seof state. This is a kludge, but at least
it's localized...
*/
if (first == 1) drain = 0; /* Start of file, init drain flag. */
if (drain) { /* If draining... */
debug(F101,"sdata draining, winlo","",winlo);
if (winlo == pktnum) /* If all data packets are ACK'd */
return(-1); /* return EOF indication */
else /* otherwise */
return(0); /* pretend we sent a data packet. */
}
debug(F101,"sdata sbufnum","",sbufnum);
for (i = sbufnum;
i > 0
#ifdef STREAMING
|| streaming
#endif /* STREAMING */
;
i--) {
if (i < 0)
break;
debug(F101,"sdata countdown","",i);
#ifdef STREAMING
if (streaming) {
pktnum = (pktnum + 1) % 64;
winlo = pktnum;
debug(F101,"sdata streaming pktnum","",pktnum);
} else {
#endif /* STREAMING */
x = nxtpkt(); /* Get next pkt number and buffer */
debug(F101,"sdata nxtpkt pktnum","",pktnum);
if (x < 0) return(0);
#ifdef STREAMING
}
#endif /* STREAMING */
debug(F101,"sdata packet","",pktnum);
if (chkint() < 0) /* Especially important if streaming */
return(-9);
if (cxseen || czseen) { /* If interrupted, done. */
if (wslots > 1) {
drain = 1;
debug(F100,"sdata cx/zseen windowing","",0);
return(0);
} else {
debug(F100,"sdata cx/zseen nonwindowing","",0);
return(-1);
}
}
#ifdef DEBUG
if (deblog) {
debug(F101,"sdata spsiz","",spsiz);
debug(F101,"sdata binary","",binary);
debug(F101,"sdata parity","",parity);
}
#endif /* DEBUG */
#ifdef CKTUNING
if (binary && !parity && !memstr && !funcstr)
len = bgetpkt(spsiz);
else
len = getpkt(spsiz,1);
#else
len = getpkt(spsiz,1);
#endif /* CKTUNING */
s = (char *)data;
if (len == -3) { /* Timed out (e.g.reading from pipe) */
s = ""; /* Send an empty data packet. */
len = 0;
} else if (len == 0) { /* Done if no data. */
if (pktnum == winlo)
return(-1);
drain = 1; /* But can't return -1 until all */
debug(F101,"sdata eof, drain","",drain);
return(0); /* ACKs are drained. */
}
debug(F101,"sdata pktnum","",pktnum);
debug(F101,"sdata len","",len);
debug(F011,"sdata data",data,52);
x = spack('D',pktnum,len,(CHAR *)s); /* Send the data packet. */
debug(F101,"sdata spack","",x);
if (x < 0) { /* Error */
ttchk(); /* See if connection is still there */
return(-2);
}
#ifdef STREAMING
if (streaming) /* What an ACK would do. */
winlo = pktnum;
#endif /* STREAMING */
x = ttchk(); /* Peek at input buffer. */
debug(F101,"sdata ttchk","",x); /* ACKs waiting, maybe? */
if (x < 0) /* Or connection broken? */
return(-2);
/*
Here we check to see if any ACKs or NAKs have arrived, in which case we
break out of the D-packet-sending loop and return to the state switcher
to process them. This is what makes our windows slide instead of lurch.
*/
if (
#ifdef GEMDOS
/*
In the Atari ST version, ttchk() can only return 0 or 1. But note: x will
probably always be > 0, since the as-yet-unread packet terminator from the
last packet is probably still in the buffer, so sliding windows will
probably never happen when the Atari ST is the file sender. The alternative
is to say "if (0)", in which case the ST will always send a window full of
packets before reading any ACKs or NAKs.
*/
x > 0
#else /* !GEMDOS */
/*
In most other versions, ttchk() returns the actual count.
It can't be a Kermit packet if it's less than five bytes long.
*/
x > 4 + bctu
#endif /* GEMDOS */
)
return(1); /* Yes, stop sending data packets */
} /* and go try to read the ACKs. */
return(1);
}
/* S E O F -- Send an End-Of-File packet */
/* Call with a string pointer to character to put in the data field, */
/* or else a null pointer or "" for no data. */
/*
There are two "send-eof" functions. seof() is used to send the normal eof
packet at the end of a file's data (even if the file has no data), or when
a file transfer is interrupted. sxeof() is used to send an EOF packet that
occurs because of attribute refusal or interruption prior to entering data
state. The difference is purely a matter of buffer allocation and packet
sequence number management. Both functions act as "front ends" to the
common send-eof function, szeof().
*/
/* Code common to both seof() and sxeof() */
int
szeof(s) CHAR *s; {
int x;
lsstate = 0; /* Cancel locking-shift state */
if (!s) s = (CHAR *)"";
debug(F111,"szeof",s,pktnum);
if (*s) {
x = spack('Z',pktnum,1,s);
xitsta |= W_SEND;
#ifdef COMMENT
tlog(F100," *** interrupted, sending discard request","",0L);
#endif /* COMMENT */
filrej++;
} else {
x = spack('Z',pktnum,0,(CHAR *)"");
}
if (x < 0)
return(x);
#ifdef COMMENT
/* No, too soon */
discard = 0; /* Turn off per-file discard flag */
#endif /* COMMENT */
/* If we were sending from a pipe, we're not any more... */
pipesend = 0;
return(0);
}
int
seof(x) int x; {
char * s;
/*
ckcpro.w, before calling seof(), sets window size back to 1 and then calls
window(), which clears out the old buffers. This is OK because the final
data packet for the file has been ACK'd. However, sdata() has already
called nxtpkt(), which set the new value of pktnum which seof() will use.
So all we need to do here is is allocate a new send-buffer.
*/
s = x ? "D" : "";
debug(F111,"seof",s,pktnum);
if (getsbuf(pktnum) < 0) { /* Get a buffer for packet n */
debug(F101,"seof can't get s-buffer","",pktnum);
return(-1);
}
return(szeof((CHAR *)s));
}
/*
Version of seof() to be called when sdata() has not been called before. The
difference is that this version calls nxtpkt() to allocate a send-buffer and
get the next packet number.
*/
int
sxeof(x) int x; {
char * s;
s = x ? "D" : "";
if (nxtpkt() < 0) /* Get next pkt number and buffer */
debug(F101,"sxeof nxtpkt fails","",pktnum);
else
debug(F101,"sxeof packet","",pktnum);
return(szeof((CHAR *)s));
}
/* S E O T -- Send an End-Of-Transaction packet */
int
seot() {
int x;
x = nxtpkt();
debug(F101,"seot nxtpkt","",x);
if (x < 0) return(-1); /* Bump packet number, get buffer */
x = spack('B',pktnum,0,(CHAR *)""); /* Send the EOT packet */
if (x < 0)
return(x);
cxseen = czseen = discard = 0; /* Reset interruption flags */
tstats(); /* Log timing info */
return(0);
}
/* R P A R -- Fill the data array with my send-init parameters */
int q8flag = 0;
CHAR dada[32]; /* Use this instead of data[]. */
/* To avoid some kind of wierd */
/* addressing foulup in spack()... */
/* (which might be fixed now...) */
CHAR *
rpar() {
char *p;
int i, x, max;
extern int sprmlen;
max = maxdata(); /* Biggest data field I can send */
debug(F101, "rpar max 1","",max);
debug(F101, "rpar sprmlen","",sprmlen);
if (sprmlen > 1 && sprmlen < max) /* User override */
max = sprmlen;
debug(F101, "rpar max 2","",max);
if (rpsiz > MAXPACK) /* Biggest normal packet I want. */
dada[0] = (char) tochar(MAXPACK); /* If > 94, use 94, but specify */
else /* extended packet length below... */
dada[0] = (char) tochar(rpsiz); /* else use what the user said. */
dada[1] = (char) tochar(chktimo(pkttim,0)); /* When to time me out */
dada[2] = (char) tochar(mypadn); /* How much padding I need (none) */
dada[3] = (char) ctl(mypadc); /* Padding character I want */
dada[4] = (char) tochar(eol); /* End-Of-Line character I want */
dada[5] = myctlq; /* Control-Quote character I send */
if (max < 6) { dada[6] = NUL; rqf = 0; ebq = sq = NUL; return(dada); }
switch (rqf) { /* 8th-bit prefix (single-shift) */
case -1: /* I'm opening the bids */
case 1: /* Other Kermit already bid 'Y' */
if (parity) ebq = sq = MYEBQ; /* So I reply with '&' if parity */
break; /* otherwise with 'Y'. */
case 2: /* Other Kermit sent a valid prefix */
if (q8flag)
sq = ebq; /* Fall through on purpose */
case 0: /* Other Kermit bid nothing */
break; /* So I reply with 'Y'. */
}
debug(F000,"rpar 8bq sq","",sq);
debug(F000,"rpar 8bq ebq","",ebq);
if (lscapu == 2) /* LOCKING-SHIFT FORCED */
dada[6] = 'N'; /* requires no single-shift */
else /* otherwise send prefix or 'Y' */
dada[6] = (char) sq;
ebqsent = dada[6]; /* And remember what I really sent */
if (max < 7) { dada[7] = NUL; bctr = 1; return(dada); }
dada[7] = (char) (bctr == 4) ? 'B' : bctr + '0'; /* Block check type */
if (max < 8) { dada[8] = NUL; rptflg = 0; return(dada); }
if (rptena) {
if (rptflg) /* Run length encoding */
dada[8] = (char) rptq; /* If receiving, agree */
else /* by replying with same character. */
dada[8] = (char) (rptq = myrptq); /* When sending use this. */
} else dada[8] = SP; /* Not enabled, put a space here. */
/* CAPAS mask */
if (max < 9) {
dada[9] = NUL;
atcapr = 0;
lpcapr = 0;
swcapr = 0;
rscapr = 0;
return(dada);
}
dada[9] = (char) tochar((lscapr ? lscapb : 0) | /* Locking shifts */
(atcapr ? atcapb : 0) | /* Attribute packets */
(lpcapr ? lpcapb : 0) | /* Long packets */
(swcapr ? swcapb : 0) | /* Sliding windows */
(rscapr ? rscapb : 0)); /* RESEND */
if (max < 10) { wslotr = 1; return(dada); }
dada[10] = (char) tochar(swcapr ? wslotr : 1); /* CAPAS+1 = Window size */
if (max < 12) { rpsiz = 80; return(dada); }
if (urpsiz > 94)
rpsiz = urpsiz - 1; /* Long packets ... */
dada[11] = (char) tochar(rpsiz / 95); /* Long packet size, big part */
dada[12] = (char) tochar(rpsiz % 95); /* Long packet size, little part */
if (max < 16) return(dada);
dada[13] = '0'; /* CAPAS+4 = WONT CHKPNT */
dada[14] = '_'; /* CAPAS+5 = CHKINT (reserved) */
dada[15] = '_'; /* CAPAS+6 = CHKINT (reserved) */
dada[16] = '_'; /* CAPAS+7 = CHKINT (reserved) */
if (max < 17) return(dada);
#ifndef WHATAMI
dada[17] = ' ';
#else
x = 0;
if (server) x |= WMI_SERVE; /* Whether I am a server */
if (binary) x |= WMI_FMODE; /* My file transfer mode is ... */
if (fncnv) x |= WMI_FNAME; /* My filename conversion is ... */
#ifdef STREAMING
if (streamrq == SET_ON)
x |= WMI_STREAM;
else if (streamrq == SET_AUTO && reliable == SET_ON)
x |= WMI_STREAM;
/*
Always offer to stream when in remote mode and STREAMING is AUTO
and RELIABLE is not OFF (i.e. is ON or AUTO).
*/
else if (!local && streamrq == SET_AUTO && reliable != SET_OFF)
x |= WMI_STREAM;
#endif /* STREAMING */
#ifdef TCPSOCKET
if (clearrq == SET_ON)
x |= WMI_CLEAR;
else if (clearrq == SET_AUTO && /* SET CLEAR-CHANNEL AUTO */
((network && nettype == NET_TCPB /* TCP/IP */
#ifdef RLOGCODE
&& ttnproto != NP_RLOGIN/* Rlogin is not clear */
&& !(ttnproto >= NP_K4LOGIN && ttnproto <= NP_EK5LOGIN)
#endif /* RLOGCODE */
)
#ifdef SSHBUILTIN
|| (network && nettype == NET_SSH)
#endif /* SSHBUILTIN */
#ifdef IKSD
|| inserver /* We are IKSD */
#endif /* IKSD */
))
x |= WMI_CLEAR;
#endif /* TCPSOCKET */
x |= WMI_FLAG;
dada[17] = (char) tochar(x);
#endif /* WHATAMI */
i = 18; /* Position of next field */
p = cksysid; /* WHOAMI (my system ID) */
x = strlen(p);
if (max - i < x + 1) return(dada);
if (x > 0) {
dada[i++] = (char) tochar(x);
while (*p)
dada[i++] = *p++;
}
if (max < i+1) return(dada);
#ifndef WHATAMI /* WHATAMI2 */
dada[i++] = ' ';
#else
debug(F101,"rpar xfermode","",xfermode);
x = WMI2_FLAG; /* Is-Valid flag */
if (xfermode != XMODE_A) /* If TRANSFER MODE is MANUAL */
x |= WMI2_XMODE; /* set the XFERMODE bit */
if (recursive > 0) /* If this is a recursive transfer */
x |= WMI2_RECU; /* set the RECURSIVE bit */
dada[i++] = tochar(x);
debug(F101,"rpar whatami2","",x);
#endif /* WHATAMI */
dada[i] = '\0'; /* Terminate the init string */
#ifdef DEBUG
if (deblog) {
debug(F110,"rpar",dada,0);
rdebu(dada,(int)strlen((char *)dada));
}
#endif /* DEBUG */
ckstrncpy((char *)myinit,(char *)dada,MYINITLEN);
return(dada); /* Return pointer to string. */
}
int
spar(s) CHAR *s; { /* Set parameters */
int x, y, lpsiz, biggest;
extern int rprmlen, lastspmax;
extern struct sysdata sysidlist[];
whatru = 0;
whoareu[0] = NUL;
#ifdef STREAMING
streamok = 0;
streaming = 0;
#endif /* STREAMING */
biggest = rln;
debug(F101, "spar biggest 1","",biggest);
debug(F101, "spar rprmlen","",rprmlen);
if (rprmlen > 1 && rprmlen < biggest)
biggest = rprmlen;
debug(F101, "rpar biggest 2","",biggest);
debug(F110,"spar packet",s,0);
s--; /* Line up with field numbers. */
/* Limit on size of outbound packets */
x = (biggest >= 1) ? xunchar(s[1]) : 80;
lpsiz = spsizr; /* Remember what they SET. */
if (spsizf) { /* SET-command override? */
if (x < spsizr) spsiz = x; /* Ignore LEN unless smaller */
} else { /* otherwise */
spsiz = (x < 10) ? 80 : x; /* believe them if reasonable */
}
spmax = spsiz; /* Remember maximum size */
/* Timeout on inbound packets */
if (timef) {
timint = rtimo; /* SET SEND TIMEOUT value overrides */
} else { /* Otherwise use requested value, */
x = (biggest >= 2) ? xunchar(s[2]) : rtimo; /* if it is legal. */
timint = (x < 0) ? rtimo : x;
}
timint = chktimo(timint,timef); /* Adjust if necessary */
/* Outbound Padding */
npad = 0; padch = '\0';
if (biggest >= 3) {
npad = xunchar(s[3]);
if (biggest >= 4) padch = (CHAR) ctl(s[4]); else padch = 0;
}
if (npad) {
int i;
for (i = 0; i < npad; i++) padbuf[i] = dopar(padch);
}
/* Outbound Packet Terminator */
seol = (CHAR) (biggest >= 5) ? xunchar(s[5]) : CR;
if ((seol < 1) || (seol > 31)) seol = CR;
/* Control prefix that the other Kermit is sending */
x = (biggest >= 6) ? s[6] : '#';
ctlq = (CHAR) (((x > 32 && x < 63) || (x > 95 && x < 127)) ? x : '#');
/* 8th-bit prefix */
/*
NOTE: Maybe this could be simplified using rcvtyp.
If rcvtyp == 'Y' then we're reading the ACK,
otherwise we're reading the other Kermit's initial bid.
But his horrendous code has been working OK for years, so...
*/
rq = (biggest >= 7) ? s[7] : 0;
if (rq == 'Y') rqf = 1;
else if ((rq > 32 && rq < 63) || (rq > 95 && rq < 127)) rqf = 2;
else rqf = 0;
debug(F000,"spar 8bq rq","",rq);
debug(F000,"spar 8bq sq","",sq);
debug(F000,"spar 8bq ebq","",ebq);
debug(F101,"spar 8bq rqf","",rqf);
switch (rqf) {
case 0: /* Field is missing from packet. */
ebqflg = 0; /* So no 8th-bit prefixing. */
break;
case 1: /* Other Kermit sent 'Y' = Will Do. */
/*
When I am the file receiver, ebqsent is 0 because I didn't send a
negotiation yet. If my parity is set to anything other than NONE,
either because my user SET PARITY or because I detected parity bits
on this packet, I reply with '&', otherwise 'Y'.
When I am the file sender, ebqsent is what I just sent in rpar(),
which can be 'Y', 'N', or '&'. If I sent '&', then this 'Y' means
the other Kermit agrees to do 8th-bit prefixing.
If I sent 'Y' or 'N', but then detected parity on the ACK packet
that came back, then it's too late: there is no longer any way for
me to tell the other Kermit that I want to do 8th-bit prefixing, so
I must not do it, and in that case, if there is any 8-bit data in
the file to be transferred, the transfer will fail because of block
check errors.
The following clause covers all of these situations:
*/
if (parity && (ebqsent == 0 || ebqsent == '&')) {
ebqflg = 1;
ebq = MYEBQ;
}
break;
case 2: /* Other Kermit sent a valid prefix */
ebqflg = (ebq == sq || sq == 'Y');
if (ebqflg) {
ebq = rq;
debug(F101,"spar setting parity to space","",ebq);
if (!parity) parity = ttprty = 's';
}
}
if (lscapu == 2) { /* But no single-shifts if LOCKING-SHIFT FORCED */
ebqflg = 0;
ebq = 'N';
}
/* Block check */
x = 1;
if (biggest >= 8) {
if (s[8] == 'B') x = 4;
else x = s[8] - '0';
if ((x < 1) || (x > 5)) x = 1; /* "5" 20110605 */
}
bctr = x;
/* Repeat prefix */
rptflg = 0; /* Assume no repeat-counts */
if (biggest >= 9) { /* Is there a repeat-count field? */
char t; /* Yes. */
t = s[9]; /* Get its contents. */
/*
If I'm sending files, then I'm reading these parameters from an ACK, and so
this character must agree with what I sent.
*/
if (rptena) { /* If enabled ... */
if ((char) rcvtyp == 'Y') { /* Sending files, reading ACK. */
if (t == myrptq) rptflg = 1;
} else { /* I'm receiving files */
if ((t > 32 && t < 63) || (t > 95 && t < 127)) {
rptflg = 1;
rptq = t;
}
}
} else rptflg = 0;
}
/* Capabilities */
atcapu = lpcapu = swcapu = rscapu = 0; /* Assume none of these. */
if (lscapu != 2) lscapu = 0; /* Assume no LS unless forced. */
y = 11; /* Position of next field, if any */
if (biggest >= 10) {
x = xunchar(s[10]);
debug(F101,"spar capas","",x);
atcapu = (x & atcapb) && atcapr; /* Attributes */
lpcapu = (x & lpcapb) && lpcapr; /* Long packets */
swcapu = (x & swcapb) && swcapr; /* Sliding windows */
rscapu = (x & rscapb) && rscapr; /* RESEND */
debug(F101,"spar lscapu","",lscapu);
debug(F101,"spar lscapr","",lscapr);
debug(F101,"spar ebqflg","",ebqflg);
if (lscapu != 2) lscapu = ((x & lscapb) && lscapr && ebqflg) ? 1 : 0;
debug(F101,"spar swcapr","",swcapr);
debug(F101,"spar swcapu","",swcapu);
debug(F101,"spar lscapu","",lscapu);
for (y = 10; (xunchar(s[y]) & 1) && (biggest >= y); y++);
debug(F101,"spar y","",y);
}
/* Long Packets */
debug(F101,"spar lpcapu","",lpcapu);
if (lpcapu) {
if (biggest > y+1) {
x = xunchar(s[y+2]) * 95 + xunchar(s[y+3]);
debug(F101,"spar lp len","",x);
if (spsizf) { /* If overriding negotiations */
spsiz = (x < lpsiz) ? x : lpsiz; /* do this, */
} else { /* otherwise */
spsiz = (x > MAXSP) ? MAXSP : x; /* do this. */
}
if (spsiz < 10) spsiz = 80; /* Be defensive... */
}
}
/* (PWP) save current send packet size for optimal packet size calcs */
spmax = spsiz; /* Maximum negotiated length */
lastspmax = spsiz; /* For stats */
if (slostart && spsiz > 499) /* Slow start length */
spsiz = 244;
debug(F101,"spar slow-start spsiz","",spsiz);
debug(F101,"spar lp spmax","",spmax);
timint = chktimo(timint,timef); /* Recalculate the packet timeout */
/* Sliding Windows... */
if (swcapr) { /* Only if requested... */
if (biggest > y) { /* See what other Kermit says */
x = xunchar(s[y+1]);
debug(F101,"spar window","",x);
wslotn = (x > MAXWS) ? MAXWS : x;
/*
wslotn = negotiated size (from other Kermit's S or I packet).
wslotr = requested window size (from this Kermit's SET WINDOW command).
*/
if (wslotn > wslotr) /* Use the smaller of the two */
wslotn = wslotr;
if (wslotn < 1) /* Watch out for bad negotiation */
wslotn = 1;
if (wslotn > 1) {
swcapu = 1; /* We do windows... */
if (wslotn > maxtry) /* Retry limit must be greater */
maxtry = wslotn + 1; /* than window size. */
}
debug(F101,"spar window after adjustment","",x);
} else { /* No window size specified. */
wslotn = 1; /* We don't do windows... */
debug(F101,"spar window","",x);
swcapu = 0;
debug(F101,"spar no windows","",wslotn);
}
}
/* Now recalculate packet length based on number of windows. */
/* The nogotiated number of window slots will be allocated, */
/* and the maximum packet length will be reduced if necessary, */
/* so that a windowful of packets can fit in the big buffer. */
if (wslotn > 1) { /* Shrink to fit... */
x = adjpkl(spmax,wslotn,bigsbsiz);
if (x < spmax) {
spmax = x;
lastspmax = spsiz;
if (slostart && spsiz > 499) spsiz = 244; /* Slow start again */
debug(F101,"spar sending, redefine spmax","",spmax);
}
}
#ifdef WHATAMI
debug(F101,"spar biggest","",biggest);
if (biggest > y+7) { /* Get WHATAMI info if any */
whatru = xunchar(s[y+8]);
debug(F101,"spar whatru","",whatru);
}
if (whatru & WMI_FLAG) { /* Only valid if this bit is set */
#ifdef STREAMING
if (whatru & WMI_STREAM) {
if (streamrq == SET_ON ||
(streamrq == SET_AUTO &&
(reliable == SET_ON || (reliable == SET_AUTO && !local)
#ifdef TN_COMPORT
&& !istncomport()
#endif /* TN_COMPORT */
#ifdef IKSD
|| inserver
#endif /* IKSD */
))) {
streamok = 1; /* Streaming negotiated */
slostart = 0; /* Undo slow-start machinations */
spsiz = lastspmax;
}
}
streamed = streamok;
debug(F101,"spar streamok","",streamok);
debug(F101,"spar clearrq","",clearrq);
if (clearrq == SET_ON ||
(clearrq == SET_AUTO &&
((network && nettype == NET_TCPB
#ifdef RLOGCODE
&& ttnproto != NP_RLOGIN/* Rlogin is not clear */
&& !(ttnproto >= NP_K4LOGIN && ttnproto <= NP_EK5LOGIN)
#endif /* RLOGCODE */
#ifdef TN_COMPORT
&& !istncomport()
#endif /* TN_COMPORT */
)
#ifdef SSHBUILTIN
|| (network && nettype == NET_SSH)
#endif /* SSHBUILTIN */
#ifdef IKSD
|| inserver
#endif /* IKSD */
)))
urclear = (whatru & WMI_CLEAR);
debug(F101,"spar urclear","",urclear);
#ifdef CK_SPEED
if (urclear)
setprefix(PX_NON);
#endif /* CK_SPEED */
cleared = urclear;
#endif /* STREAMING */
}
#endif /* WHATAMI */
if (biggest > y+8) { /* Get WHOAREYOU info if any */
int x, z;
x = xunchar(s[y+9]); /* Length of it */
z = y;
y += (9 + x);
debug(F101,"spar sysindex x","",x);
debug(F101,"spar sysindex y","",y);
debug(F101,"spar sysindex biggest","",biggest);
if (x > 0 && x < 16 && biggest >= y) {
strncpy(whoareu,(char *)s+z+10,x); /* Other Kermit's system ID */
debug(F111,"spar whoareyou",whoareu,whoareu[0]);
if (whoareu[0]) { /* Got one? */
sysindex = getsysix((char *)whoareu);
debug(F101,"spar sysindex",whoareu,sysindex);
}
}
} else
goto xspar;
#ifdef WHATAMI
y++; /* Advance pointer */
if (biggest >= y) {
whatru2 = xunchar(s[y]); /* Next field is WHATAMI2 */
debug(F101,"spar whatru2","",whatru2);
if (whatru2 & WMI2_FLAG) { /* Valid only if this bit is set */
if (server) { /* Server obeys client's xfer mode */
xfermode = (whatru2 & WMI2_XMODE) ? XMODE_M : XMODE_A;
debug(F101,"spar whatru2 xfermode","",xfermode);
}
if (whatru2 & WMI2_RECU) { /* RECURSIVE transfer */
if (fnrpath == PATH_AUTO) { /* If REC PATH AUTO */
fnrpath = PATH_REL; /* Set it to RELATIVE */
autopath = 1; /* and remember we did this */
}
}
}
}
#endif /* WHATAMI */
xspar:
if (sysindex > -1) {
char * p;
p = sysidlist[sysindex].sid_name;
tlog(F110,"Remote system type: ",p,0L);
if (sysindex > 0) { /* If partnet's system type known */
whoarewe(); /* see if we are a match. */
#ifdef CK_SPEED
/* Never unprefix XON and XOFF when sending to VMS */
debug(F111,"proto whoareu",whoareu,sysindex);
if (!strcmp((char *)whoareu,"D7")) {
debug(F111,"proto special VMS prefixing","",0);
ctlp[XON] = ctlp[XOFF] = 1;
ctlp[XON+128] = ctlp[XOFF+128] = 1;
ctlp[3] = 1; /* Ctrl-C might be dangerous too */
ctlp[14] = ctlp[15] = 1; /* And SO/SI */
ctlp[24] = ctlp[25] = 1; /* And ^X/^Y */
ctlp[141] = 1; /* And CR+128 */
}
#endif /* CK_SPEED */
}
}
/* Record parameters in debug log */
#ifdef DEBUG
if (deblog) sdebu(biggest);
#endif /* DEBUG */
numerrs = 0; /* Start counting errors here. */
return(0);
}
/* G N F I L E -- Get name of next file to send */
/*
Expects global sndsrc to be:
-9: if we are generating a file internally for calibration.
-1: next filename to be obtained by calling znext().
0: no next file name
1: (or greater) next filename to be obtained from **cmlist,
or if addlist != 0, from the "filehead" linked list,
or if filefile pointer not null from that file (which is already open).
Returns:
1, with name of next file in filnam.
0, no more files, with filnam set to empty string.
-1, file not found
-2, file is not readable (but then we just skip to the next one if any)
-3, read access denied
-4, cancelled
-5, too many files match wildcard
-6, no files selected
NOTE:
If gnfile() returns 0, then the global variable gnferror should be checked
to find out the most recent gnfile() error, and use that instead of the
return code (for reasons to hard to explain).
*/
int
gnfile() {
int i = 0, x = 0;
CK_OFF_T filesize = 0;
int dodirstoo = 0;
int retcode = 0;
char fullname[CKMAXPATH+1];
dodirstoo = ((what & (W_FTP|W_SEND)) == (W_FTP|W_SEND)) && recursive;
debug(F101,"gnfile sndsrc","",sndsrc);
debug(F101,"gnfile filcnt","",filcnt);
debug(F101,"gnfile what","",what);
debug(F101,"gnfile recursive","",recursive);
debug(F101,"gnfile dodirstoo","",dodirstoo);
gnferror = 0;
fsize = (CK_OFF_T)-1; /* Initialize file size */
fullname[0] = NUL;
#ifdef VMS
/*
In VMS, zopeni() sets binary 0/1 automatically from the file
attributes. Don't undo it here.
*/
debug(F101,"gnfile VMS binary","",binary);
#else /* VMS */
if (!(what & W_REMO) && (xfermode == XMODE_A)
#ifndef NOMSEND
&& !addlist
#endif /* NOMSEND */
) {
extern int stdinf;
if (!stdinf) /* Not if sending from stdin */
#ifdef WHATAMI
/* We don't do this in server mode because it undoes WHATAMI */
if (!server || (server && ((whatru & WMI_FLAG) == 0)))
#endif /* WHATAMI */
binary = gnf_binary; /* Restore prevailing transfer mode */
debug(F101,"gnfile binary = gnf_binary","",gnf_binary);
}
#endif /* VMS */
#ifdef PIPESEND
debug(F101,"gnfile pipesend","",pipesend);
if (pipesend) { /* First one */
if (filcnt == 0) {
ckstrncpy(filnam,cmarg,CKMAXPATH+1);
return(1);
} else { /* There's only one... */
*filnam = NUL;
pipesend = 0;
return(0);
}
}
#endif /* PIPESEND */
#ifdef CALIBRATE
if (sndsrc == -9) {
debug(F100,"gnfile calibrate","",0);
ckstrncpy(filnam,"CALIBRATION",CKMAXPATH);
nfils = 0;
cal_j = 0;
fsize = calibrate;
sndsrc = 0; /* For next time */
nfils = 0;
return(1);
}
#endif /* CALIBRATE */
#ifndef NOSPL
if (sndarray) { /* Sending from an array */
extern char sndxnam[]; /* Pseudo filename */
debug(F100,"gnfile array","",0);
nfils = 0;
fsize = (CK_OFF_T)-1; /* Size unknown */
sndsrc = 0;
ckstrncpy(filnam,sndxnam,CKMAXPATH);
return(1);
}
#endif /* NOSPL */
if (sndsrc == 0) { /* It's not really a file */
if (nfils > 0) { /* It's a pipe, or stdin */
ckstrncpy(filnam,*cmlist,CKMAXPATH+1); /* Copy its "name" */
nfils = 0; /* There is no next file */
return(1); /* OK this time */
} else return(0); /* but not next time */
}
/* If file group interruption (C-Z) occurred, fail. */
if (czseen) {
tlog(F100,"Transaction cancelled","",0L);
debug(F100,"gnfile czseen","",0);
return(-4);
}
/* Loop through file list till we find a readable, sendable file */
filesize = (CK_OFF_T)-1; /* Loop exit (file size) variable */
while (filesize < 0) { /* Keep trying till we get one... */
retcode = 0;
if (sndsrc > 0) { /* File list in cmlist or file */
if (filefile) { /* Reading list from file... */
if (zsinl(ZMFILE,filnam,CKMAXPATH) < 0) { /* Read a line */
zclose(ZMFILE); /* Failed */
debug(F110,"gnfile filefile EOF",filefile,0);
makestr(&filefile,NULL);
return(0);
}
debug(F110,"gnfile filefile filnam",filnam,0);
}
debug(F101,"gnfile nfils","",nfils);
if (nfils-- > 0 || filefile) { /* Still some left? */
#ifndef NOMSEND
if (addlist) {
if (filenext && filenext->fl_name) {
ckstrncpy(filnam,filenext->fl_name,CKMAXPATH+1);
cmarg2 =
filenext->fl_alias ?
filenext->fl_alias :
"";
binary = filenext->fl_mode;
} else {
printf("?Internal error expanding ADD list\n");
return(-5);
}
filenext = filenext->fl_next;
debug(F111,"gnfile addlist filnam",filnam,nfils);
} else if (sndsrc > 0 && !filefile) {
#endif /* NOMSEND */
ckstrncpy(filnam,*cmlist++,CKMAXPATH+1);
debug(F111,"gnfile cmlist filnam",filnam,nfils);
#ifndef NOMSEND
}
#endif /* NOMSEND */
i = 0;
#ifndef NOSERVER
debug(F101,"gnfile ngetpath","",ngetpath);
#endif /* NOSERVER */
nextinpath:
#ifndef NOSERVER
fromgetpath = 0;
if (server && !isabsolute(filnam) && (ngetpath > i)) {
ckstrncpy(fullname,getpath[i],CKMAXPATH+1);
ckstrncat(fullname,filnam,CKMAXPATH);
debug(F111,"gnfile getpath",fullname,i);
fromgetpath = 1;
i++;
} else {
i = ngetpath + 1;
#else
i = 1; /* ? */
#endif /* NOSERVER */
ckstrncpy(fullname,filnam,CKMAXPATH+1);
debug(F110,"gnfile absolute",fullname,0);
#ifndef NOSERVER
}
#endif /* NOSERVER */
if (iswild(fullname)
#ifdef RECURSIVE
|| recursive > 0 || !strcmp(fullname,".")
#endif /* RECURSIVE */
) { /* It looks wild... */
/* First check if a file with this name exists */
debug(F110,"gnfile wild",fullname,0);
if (zchki(fullname) >= 0) {
/*
Here we have a file whose name actually
contains wildcard characters.
*/
goto gotnam;
}
#ifdef COMMENT
nzxopts = ZX_FILONLY; /* (was 0: 25 Jul 2001 fdc) */
#else
nzxopts = recursive ? 0 : ZX_FILONLY; /* 30 Jul 2001 */
#endif /* COMMENT */
if (nolinks) nzxopts |= ZX_NOLINKS; /* (26 Jul 2001 fdc) */
#ifdef UNIXOROSK
if (matchdot) nzxopts |= ZX_MATCHDOT;
#endif /* UNIXOROSK */
if (recursive) nzxopts |= ZX_RECURSE;
x = nzxpand(fullname,nzxopts); /* Expand wildcards */
debug(F101,"gnfile nzxpand","",x);
if (x == 1) {
int xx;
xx = znext(fullname);
debug(F111,"gnfile znext A",fullname,xx);
goto gotnam;
}
if (x == 0) { /* None match */
#ifndef NOSERVER
if (server && ngetpath > i)
goto nextinpath;
#endif /* NOSERVER */
retcode = -1;
debug(F101,"gnfile gnferror A","",gnferror);
gnferror = -1;
continue;
}
if (x < 0) { /* Too many to expand */
debug(F101,"gnfile gnferror B","",gnferror);
gnferror = -5;
return(-5);
}
sndsrc = -1; /* Change send-source to znext() */
}
} else { /* We're out of files. */
debug(F111,"gnfile done",ckitoa(gnferror),nfils);
*filnam = '\0';
return(0);
}
}
/* Otherwise, step to next element of internal wildcard expansion list. */
if (sndsrc == -1) {
int xx = 0;
while (1) {
debug(F111,"gnfile znext X",filnam,xx);
xx = znext(filnam);
debug(F111,"gnfile znext B",filnam,xx);
if (!filnam[0])
break;
if (dodirstoo) {
debug(F111,"gnfile FTP MPUT /RECURSIVE",filnam,xx);
break;
}
if (!isdir(filnam))
break;
}
debug(F111,"gnfile znext C",filnam,x);
if (!filnam[0]) { /* If no more, */
sndsrc = 1; /* go back to previous list */
debug(F101,"gnfile setting sndsrc back","",sndsrc);
continue;
} else
ckstrncpy(fullname,filnam,CKMAXPATH+1);
}
/* Get here with a filename. */
gotnam:
debug(F110,"gnfile fullname",fullname,0);
if (fullname[0]) {
#ifdef DTILDE
char * dirp = "";
if (fullname[0] == '~') {
dirp = tilde_expand((char *)fullname);
if (*dirp) ckstrncpy(fullname,dirp,CKMAXPATH+1);
}
#endif /* DTILDE */
filesize = zchki(fullname); /* Check if file readable */
debug(F111,"gnfile zchki",fullname,filesize);
retcode = filesize; /* Possible return code */
if (filesize == (CK_OFF_T)-2 && dodirstoo) {
filesize = 0;
}
if (filesize < 0) {
gnferror = (int)filesize;
debug(F101,"gnfile gnferror C","",gnferror);
}
if (filesize == (CK_OFF_T)-1) { /* If not found */
debug(F100,"gnfile -1","",0);
#ifndef NOSERVER
if (server && ngetpath > i)
goto nextinpath;
#endif /* NOSERVER */
debug(F110,"gnfile skipping:",fullname,0);
tlog(F110,fullname,": open failure - skipped",0);
xxscreen(SCR_FN,0,0l,fullname);
xxscreen(SCR_ST,ST_SKIP,SKP_ACC,fullname);
#ifdef TLOG
if (tralog && !tlogfmt)
doxlog(what,fullname,fsize,binary,1,"Skipped");
#endif /* TLOG */
continue;
} else if (filesize < 0) {
if (filesize == (CK_OFF_T)-3) { /* Exists but not readable */
debug(F100,"gnfile -3","",0);
filrej++; /* Count this one as not sent */
tlog(F110,"Read access denied",fullname,0); /* Log this */
xxscreen(SCR_FN,0,0l,fullname);
xxscreen(SCR_ST,ST_SKIP,SKP_ACC,fullname); /* Display it */
#ifdef TLOG
if (tralog && !tlogfmt)
doxlog(what,fullname,fsize,binary,1,"Skipped");
#endif /* TLOG */
}
continue;
} else {
int xx;
fsize = filesize;
/* +++ */
debug(F111,"gnfile sndsmaller",ckfstoa(sndsmaller),sndsmaller);
debug(F111,"gnfile sndlarger",ckfstoa(sndlarger),sndlarger);
debug(F111,"gnfile (CK_OFF_T)-1",ckfstoa((CK_OFF_T)-1),(CK_OFF_T)-1);
xx = fileselect(fullname,
sndafter, sndbefore,
sndnafter,sndnbefore,
sndsmaller,sndlarger,
skipbup,
NSNDEXCEPT,sndexcept);
debug(F111,"gnfile fileselect",fullname,xx);
if (!xx) {
filesize = (CK_OFF_T)-1;
gnferror = -6;
debug(F101,"gnfile gnferror D","",gnferror);
continue;
}
ckstrncpy(filnam,fullname,CKMAXPATH+1);
return(1);
}
#ifdef COMMENT
/* This can't be right! */
} else { /* sndsrc is 0... */
if (!fileselect(fullname,
sndafter, sndbefore,
sndnafter,sndnbefore,
sndsmaller,sndlarger,
skipbup,
NSNDEXCEPT,sndexcept)) {
gnferror = -6;
debug(F111,"gnfile fileselect",fullname,gnferror);
filesize = (CK_OFF_T)-1;
continue;
}
ckstrncpy(filnam,fullname,CKMAXPATH+1);
return(1);
#endif /* COMMENT */
}
}
debug(F101,"gnfile result","",retcode);
*filnam = '\0';
return(0);
}
/*
The following bunch of routines feed internally generated data to the server
to send to the client in response to REMOTE commands like DIRECTORY, DELETE,
and so on. We have to write these lines in the format appropriate to our
platform, so they can be converted to generic (CRLF) text format by the
packetizer.
*/
#ifdef UNIX
char * endline = "\12";
#else
#ifdef datageneral
char * endline = "\12";
#else
#ifdef MAC
char * endline = "\15";
#else
#ifdef OSK
char * endline = "\15";
#else
char * endline = "\15\12";
#endif /* OSK */
#endif /* MAC */
#endif /* datageneral */
#endif /* UNIX */
#ifdef MAC
#define FNCBUFL 256
#else
#ifdef CKSYMLINK
#define FNCBUFL (CKMAXPATH + CKMAXPATH + 64)
#else
#define FNCBUFL (CKMAXPATH + 64)
#endif /* CKSYMLINK */
#endif /* MAC */
/* NB: The minimum FNCBUFL is 255 */
static CHAR funcbuf[FNCBUFL];
static int funcnxt = 0;
static int funclen = 0;
static int nxpnd = -1;
static long ndirs = 0;
static long nfiles = 0;
static CK_OFF_T nbytes = 0;
int
sndstring(p) char * p; {
#ifndef NOSERVER
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
ckstrncpy(cmdstr,versio,CMDSTRL); /* Data for X packet. */
first = 1; /* Init getchx lookahead */
memstr = 1; /* Just set the flag. */
memptr = p; /* And the pointer. */
binary = XYFT_T; /* Text mode for this. */
return(sinit());
#else
return(0);
#endif /* NOSERVER */
}
/* S N D H L P -- Routine to send builtin help */
static int srvhlpnum = 0;
#ifdef IKSD
static char *nmx[] = { "Disabled", "Disabled", "Enabled", "Enabled" };
#endif /* IKSD */
static char *
xnm(x) int x; {
#ifdef IKSD
if (inserver)
return(nmx[x]);
else
#endif /* IKSD */
return(nm[x]);
}
static int
nxthlp(
#ifdef CK_ANSIC
void
#endif /* CK_ANSIC */
) {
int x = 0;
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, en_asg, en_que, en_xit, x_login, x_logged,
xfinish;
extern char * ckxsys;
if (funcnxt < funclen)
return (funcbuf[funcnxt++]);
switch (srvhlpnum++) {
case 0:
x = ckstrncpy((char *)funcbuf,
"Client Command Status Description\n",
FNCBUFL
);
if (x_login && !x_logged) {
x += ckstrncat((char *)funcbuf,
" REMOTE LOGIN required\n",
FNCBUFL
);
}
if (FNCBUFL - x > 74)
sprintf((char *)(funcbuf+x)," GET %-14s%s\n",
xnm(en_get),
"Transfer file(s) from server to client."
);
break;
/* NOTE: The minimum funcbuf[] size is 255; all of the following are safe. */
case 1:
sprintf((char *)funcbuf," SEND %-14s%s\n",
xnm(en_sen),
"Transfer file(s) from client to server."
);
break;
case 2:
sprintf((char *)funcbuf," MAIL %-14s%s\n",
xnm(inserver ? 0 : en_mai),
"Send file(s) as e-mail."
);
break;
case 3:
#ifndef NOSPL
sprintf((char *)funcbuf," REMOTE ASSIGN %-14s%s\n",
xnm(en_asg),
"Assign value to server variable or macro."
);
#else
sprintf((char *)funcbuf," REMOTE ASSIGN not configured\n");
#endif /* NOSPL */
break;
case 4:
sprintf((char *)funcbuf," REMOTE CD %-14s%s\n",
xnm(en_cwd),
"Change server's directory."
);
break;
case 5:
#ifdef ZCOPY
sprintf((char *)funcbuf," REMOTE COPY %-14s%s\n",
xnm(en_cpy),
"Copy a file on the server."
);
#else
sprintf((char *)funcbuf," REMOTE COPY not configured\n");
#endif /* ZCOPY */
break;
case 6:
sprintf((char *)funcbuf," REMOTE DELETE %-14s%s\n",
xnm(en_del),
"Delete a file on the server."
);
break;
case 7:
sprintf((char *)funcbuf," REMOTE DIRECTORY %-14s%s\n",
xnm(en_dir),
"List files on the server."
);
break;
case 8:
sprintf((char *)funcbuf," REMOTE EXIT %-14s%s\n",
xnm(en_xit),
"Exit from Kermit server program."
);
break;
case 9:
sprintf((char *)funcbuf," REMOTE HOST %-14s%s\n",
xnm(inserver ? 0 : en_hos),
#ifdef datageneral
"Execute a CLI command on the server."
#else
#ifdef VMS
"Execute a DCL command on the server."
#else
"Execute a shell command on the server."
#endif /* VMS */
#endif /* datageneral */
);
break;
case 10:
sprintf((char *)funcbuf," REMOTE PRINT %-14s%s\n",
xnm(inserver ? 0 : en_pri),
"Send a file to the server for printing."
);
break;
case 11:
#ifndef NOSPL
sprintf((char *)funcbuf," REMOTE QUERY %-14s%s\n",
xnm(en_que),
"Get value of server variable or macro."
);
#else
sprintf((char *)funcbuf," REMOTE QUERY not configured\n");
#endif /* NOSPL */
break;
case 12:
sprintf((char *)funcbuf," REMOTE MKDIR %-14s%s\n",
xnm(en_mkd),
"Create a directory on the server."
);
break;
case 13:
sprintf((char *)funcbuf," REMOTE RMDIR %-14s%s\n",
xnm(en_rmd),
"Remove a directory on the server."
);
break;
case 14:
sprintf((char *)funcbuf," REMOTE RENAME %-14s%s\n",
xnm(en_ren),
"Rename a file on the server."
);
break;
case 15:
sprintf((char *)funcbuf," REMOTE SET %-14s%s\n",
xnm(en_set),
"Set a parameter on the server"
);
break;
case 16:
sprintf((char *)funcbuf," REMOTE SPACE %-14s%s\n",
xnm(en_spa),
"Inquire about disk space on the server."
);
break;
case 17:
sprintf((char *)funcbuf," REMOTE TYPE %-14s%s\n",
xnm(en_typ),
"Display a server file on your screen."
);
break;
case 18:
sprintf((char *)funcbuf," REMOTE WHO %-14s%s\n",
xnm(inserver ? 0 : en_who),
"List who is logged in to the server."
);
break;
case 19:
sprintf((char *)funcbuf," FINISH %-14s%s\n",
xnm(en_fin),
xfinish ?
"Exit from Kermit server program." :
"Return the server to its command prompt."
);
break;
case 20:
sprintf((char *)funcbuf," BYE %-14s%s\n\n",
xnm(en_bye),
"Log the server out and disconnect."
);
break;
default:
return(-1);
}
funcnxt = 0;
funclen = strlen((char *)funcbuf);
return(funcbuf[funcnxt++]);
}
int
sndhlp() {
#ifndef NOSERVER
extern char * ckxsys;
first = 1; /* Init getchx lookahead */
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
ckstrncpy(cmdstr,"REMOTE HELP",CMDSTRL); /* Data for X packet. */
sprintf((char *)funcbuf, "C-Kermit %s,%s\n\n", versio, ckxsys);
funclen = strlen((char *)funcbuf);
#ifdef IKSD
if (inserver) {
sprintf((char *)(funcbuf+funclen),
"Internet Kermit Service (EXPERIMENTAL)\n\n");
funclen = strlen((char *)funcbuf);
}
#endif /* IKSD */
funcnxt = 0;
funcptr = nxthlp;
funcstr = 1;
srvhlpnum = 0;
binary = XYFT_T; /* Text mode for this. */
return(sinit());
#else
return(0);
#endif /* NOSERVER */
}
/*
Returns the next available character,
-1 if no more data.
*/
static int
nxttype(
#ifdef CK_ANSIC
void
#endif /* CK_ANSIC */
) {
int c;
if (zchin(ZIFILE,&c) < 0) {
zclose(ZIFILE);
return(-1);
} else {
return((unsigned)c);
}
}
/* S N D T Y P -- TYPE a file to remote client */
int
sndtype(file) char * file; {
#ifndef NOSERVER
char name[CKMAXPATH+1];
#ifdef OS2
char * p = NULL;
if (*file) {
ckstrncpy(name, file, CKMAXPATH+1);
/* change / to \. */
p = name;
while (*p) { /* Change them back to \ */
if (*p == '/') *p = '\\';
p++;
}
} else
return(0);
#else
ckstrncpy(name, file, CKMAXPATH+1);
#endif /* OS2 */
funcnxt = 0;
funclen = strlen((char *)funcbuf);
if (zchki(name) == -2) {
/* Found a directory */
return(0);
}
if (!zopeni(ZIFILE,name))
return(0);
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
ckstrncpy(cmdstr,"type",CMDSTRL); /* Data for X packet. */
first = 1; /* Init getchx lookahead */
funcstr = 1; /* Just set the flag. */
funcptr = nxttype; /* And the pointer. */
binary = XYFT_T; /* Text mode for this */
return(sinit());
#else
return(0);
#endif /* NOSERVER */
}
/*
N X T D I R -- Provide data for senddir()
Returns the next available character or -1 if no more data.
*/
#ifndef NOICP
/* Directory listing parameters set by the user interface, if any. */
extern int dir_head, dir_dots, dir_back;
#endif /* NOICP */
static int sd_hdg, sd_bkp, sd_dot; /* Local listing parameters */
static int
nxtdir(
#ifdef CK_ANSIC
void
#endif /* CK_ANSIC */
) {
char name[CKMAXPATH+1], dbuf[24], *p = NULL;
char *dstr = NULL, * lnk = "";
CHAR c, * linebuf = funcbuf;
#ifdef OSK
/* Work around bugs in OSK compiler */
char *dirtag = "directories";
char *filetag = "files";
char *bytetag = "bytes";
#endif /* OSK */
CK_OFF_T len = 0;
int x, itsadir = 0, gotone = 0;
#ifdef DEBUG
if (deblog) {
debug(F101,"nxtdir funcnxt","",funcnxt);
debug(F101,"nxtdir funclen","",funclen);
debug(F110,"nxtdir funcbuf",funcbuf+funcnxt,0);
}
#endif /* DEBUG */
if (funcnxt < funclen) { /* Return next character from buffer */
c = funcbuf[funcnxt++];
debug(F000,"nxtdir return 1","",(unsigned)(c & 0xff));
return((unsigned)(c & 0xff));
}
while (nxpnd > 0) { /* Buffer needs refill */
nxpnd--;
znext(name); /* Get next filename */
if (!name[0]) { /* None left - done */
nxpnd = 0;
return(nxtdir());
}
if (sd_bkp) { /* Showing backup files? */
gotone = 1; /* Yes, no need to check. */
break;
}
x = ckmatch( /* No - see if this is one */
#ifdef CKREGEX
"*.~[0-9]*~" /* Not perfect but close enough. */
#else
"*.~*~" /* Less close. */
#endif /* CKREGEX */
,name,filecase,1);
debug(F111,"nxtdir ckmatch",name,x);
if (x) {
continue; /* It's a backup file - skip it */
} else {
gotone = 1; /* It's not, break from loop. */
break;
}
}
if (gotone) {
len = zgetfs(name); /* Get file size */
debug(F111,"nxtdir zgetfs",name,len);
#ifdef VMSORUNIX
itsadir = zgfs_dir; /* See if it's a directory */
#else
itsadir = (len == -2 || isdir(name));
#endif /* VMSORUNIX */
dstr = zfcdat(name);
debug(F111,"nxtdir zcfdat",dstr,0);
if (!dstr)
dstr = "0000-00-00 00:00:00";
if (!*dstr) {
dstr = "0000-00-00 00:00:00";
} else {
dbuf[0] = dstr[0];
dbuf[1] = dstr[1];
dbuf[2] = dstr[2];
dbuf[3] = dstr[3];
dbuf[4] = '-';
dbuf[5] = dstr[4];
dbuf[6] = dstr[5];
dbuf[7] = '-';
dbuf[8] = dstr[6];
dbuf[9] = dstr[7];
strcpy(dbuf+10,dstr+8);
dstr = dbuf;
}
#ifdef CK_PERMS
#ifdef VMSORUNIX
p = ziperm(name); /* Get permissions */
#else
p = zgperm(name);
#endif /* VMSORUNIX */
#else
p = NULL;
#endif /* CK_PERMS */
debug(F110,"domydir perms",p,0);
#ifdef VMS
/* Make name relative */
ckstrncpy(name,zrelname(name,zgtdir()),CKMAXPATH+1);
#endif /* VMS */
if (itsadir) {
ndirs++;
} else {
nfiles++;
nbytes += len;
}
lnk = "";
#ifdef UNIX
#ifdef CKSYMLINK
if (zgfs_link) {
extern char linkname[];
lnk = linkname;
}
debug(F111,"nxtdir linkname",lnk,zgfs_link);
#endif /* CKSYMLINK */
#endif /* UNIX */
/*
The following sprintf's are safe; linebuf is a pointer to funcbuf,
which is 64 bytes larger than CKMAXPATH (or double CKMAXPATH when
symlinks are possible). 64 allows for the fixed-field portions of
the file listing line: permissions, size, and date. CKMAXPATH allows
for the longest possible pathname.
*/
if (itsadir && len < 0) { /* Directory */
#ifdef VMS
sprintf((char *)linebuf,
"%-22s%-10s %s %s\n",p,"<DIR>",dstr,name);
#else
if (p)
sprintf((char *)linebuf,
"%10s%-10s %s %s\n",p,"<DIR>",dstr,name);
else
sprintf((char *)linebuf,
"%-10s %s %s\n", "<DIR>", dstr, name);
#endif /* VMS */
} else { /* Regular file */
#ifdef VMS
sprintf((char *)linebuf,
"%-22s%10s %s %s\n", p, ckfstoa(len), dstr, name);
#else
if (p)
sprintf((char *)linebuf,
"%10s%10s %s %s%s%s\n",
p, ckfstoa(len), dstr, name,
*lnk ? " -> " : "",
lnk
);
else
sprintf((char *)linebuf,
"%10s %s %s%s%s\n",
ckfstoa(len), dstr, name,
*lnk ? " -> " : "",
lnk
);
#endif /* VMS */
}
funcnxt = 0;
funclen = strlen((char *)funcbuf);
} else if (sd_hdg && nxpnd == 0) { /* Done, send summary */
char *blankline = ""; /* At beginning of summary */
/*
The idea is to prevent (a) unnecessary multiple blanklines, and (b)
prompt-stomping. Preventing (b) is practically impossible, because it
depends on the client so for now always include that final CRLF.
*/
if (!ndirs || !nbytes || !nfiles)
blankline = endline;
#ifdef OSK
/* Workaround bugs in OS-9 compiler... */
if (ndirs == 1)
dirtag = "directory";
if (nfiles == 1)
filetag = "file";
if (nbytes == (CK_OFF_T)1)
bytetag = "byte";
sprintf((char *)funcbuf,
"%sSummary: %ld %s, %ld %s, %s %s%s",
blankline,
ndirs,
dirtag,
nfiles,
filetag,
ckfstoa(nbytes),
bytetag,
endline);
#else
sprintf((char *)funcbuf,
"%sSummary: %ld director%s, %ld file%s, %s byte%s%s",
blankline,
ndirs,
(ndirs == 1) ? "y" : "ies",
nfiles,
(nfiles == 1) ? "" : "s",
ckfstoa(nbytes),
(nbytes == (CK_OFF_T)1) ? "" : "s",
endline
);
#endif /* OSK */
nxpnd--;
funcnxt = 0;
funclen = strlen((char *)funcbuf);
} else {
funcbuf[0] = '\0';
funcnxt = 0;
funclen = 0;
}
debug(F101,"nxtdir funclen","",funclen);
if (funcnxt < funclen) { /* If we have data to send... */
c = funcbuf[funcnxt++];
debug(F000,"nxtdir return 2","",(unsigned)(c & 0xff));
return((unsigned)(c & 0xff));
} else
return(-1); /* Nothing left, done. */
}
/* S N D D I R -- send directory listing */
int
snddir(spec) char * spec; {
#ifndef NOSERVER
char * p = NULL, name[CKMAXPATH+1];
int t = 0, rc = 0;
char fnbuf[CKMAXPATH+1];
debug(F111,"snddir matchdot",spec,matchdot);
#ifndef NOICP
debug(F111,"snddir dir_dots",spec,dir_dots);
sd_hdg = dir_head > 0; /* Import listing parameters if any */
sd_bkp = dir_back > 0;
if (dir_dots > -1)
sd_dot = dir_dots;
else
sd_dot = matchdot;
#else
sd_hdg = 1; /* Or use hardwired defaults */
sd_bkp = 1;
sd_dot = matchdot;
#endif /* NOICP */
if (!spec) spec = "";
debug(F111,"snddir sd_dot",spec,sd_dot);
if (*spec) {
#ifdef COMMENT
zfnqfp(spec,CKMAXPATH,name);
debug(F110,"snddir zfnqfp",name,0);
#else
ckstrncpy(name,spec,CKMAXPATH+1);
debug(F110,"snddir name",name,0);
#endif /* COMMENT */
} else {
#ifdef OS2
strcpy(name, "*");
#else
#ifdef UNIXOROSK
strcpy(name, "./*");
#else
#ifdef VMS
strcpy(name, "*.*");
#else
#ifdef datageneral
strcpy(name, "+");
#else
debug(F101,"snddir quit (no filespec)","",0);
return(0);
#endif /* datageneral */
#endif /* VMS */
#endif /* UNIX */
#endif /* OS2 */
}
debug(F110,"snddir name 1",name,0);
ndirs = 0L;
nfiles = 0L;
nbytes = (CK_OFF_T)0;
if (zfnqfp(name,CKMAXPATH,fnbuf))
debug(F110,"snddir name 2",name,0);
p = name + strlen(name); /* Move it to end of list */
/* sprintf safe because funcbuf size >= max path len + 64 */
if (sd_hdg) {
sprintf((char *)funcbuf,"Listing files: %s%s%s",fnbuf,endline,endline);
funcnxt = 0;
funclen = strlen((char *)funcbuf);
}
diractive = 1;
#ifdef OS2
if (zchki(name) == -2) { /* Found a directory */
p--;
if (*p == '\\' || *p == '/')
ckstrncat(name, "*", CKMAXPATH);
else if (*p == ':')
ckstrncat(name, ".", CKMAXPATH);
else
ckstrncat(name, "\\*", CKMAXPATH);
debug(F110,"snddir directory",name,0);
}
#else
if (!iswild(name) && isdir(name)) {
char * s = name;
p--;
#ifdef UNIXOROSK
if (*p == '/') /* So append wildcard to it */
ckstrncat(s, "*", CKMAXPATH);
else
ckstrncat(s, "/*", CKMAXPATH);
#else
#ifdef VMS
if (*p == ']' || *p == '>' || *p == ':')
ckstrncat(s, "*.*", CKMAXPATH);
#else
#ifdef datageneral
if (*p == ':')
ckstrncat(s, "+", CKMAXPATH);
else
ckstrncat(s, ":+", CKMAXPATH);
#else
#ifdef VOS
if (*p == '>')
ckstrncat(s, "*", CKMAXPATH);
else
ckstrncat(s, ">*", CKMAXPATH);
#endif /* VOS */
#endif /* datageneral */
#endif /* VMS */
#endif /* UNIXOROSK */
debug(F110,"snddir directory",name,0);
}
#endif /* OS2 */
nzxopts = 0;
#ifdef UNIX
{
extern char ** mtchs;
debug(F111,"snddir sd_dot",spec,sd_dot);
if (sd_dot > 0)
nzxopts |= ZX_MATCHDOT;
if (recursive)
nzxopts |= ZX_RECURSE;
debug(F111,"snddir nzxopts",spec,nzxopts);
nxpnd = nzxpand(name,nzxopts); /* Get the array of names */
sh_sort(mtchs,NULL,nxpnd,0,0,1); /* Sort the array */
}
#else
if (recursive) nzxopts |= ZX_RECURSE;
nxpnd = nzxpand(name,nzxopts);
#endif /* UNIX */
debug(F101,"snddir nzxpand nxpnd","",nxpnd);
if (nxpnd < 1)
return(-1);
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
if ((int)strlen(name) < CMDSTRL - 11) /* Data for X packet. */
sprintf(cmdstr,"DIRECTORY %s",name); /* safe */
else
ckstrncpy(cmdstr,"DIRECTORY",CMDSTRL);
first = 1; /* Init getchx lookahead */
funcstr = 1; /* Just set the flag. */
funcptr = nxtdir; /* And the pointer. */
binary = XYFT_T; /* Text mode for this */
rc = sinit(); /* 26 Aug 2005 */
debug(F111,"snddir","sinit()",rc);
return(rc);
#else
return(0);
#endif /* NOSERVER */
}
/* N X T D E L -- provide data for delete */
/* Returns the next available character or -1 if no more data */
static int
nxtdel(
#ifdef CK_ANSIC
void
#endif /* CK_ANSIC */
) {
char name[257], *p = NULL;
int len = 0;
if (funcnxt < funclen)
return ((unsigned)funcbuf[funcnxt++]);
if (nxpnd > 0) {
nxpnd--;
znext(name);
if (!name[0]) {
nxpnd = 0;
return(nxtdel());
}
len = zchki(name);
/* Find just the name of the file */
for (p = name + strlen(name); p != name && *p != '/' ; p--) ;
if (*p == '/') p++;
/* sprintf's safe because size of funcbuf >= 64 + maxpathlen */
if (len > -1L) {
if (zdelet(name)) {
sprintf((char *)funcbuf," %10s: %s%s","skipping",p,endline);
} else {
nfiles++;
nbytes += len;
sprintf((char *)funcbuf," %10s: %s%s","deleted",p,endline);
}
} else
sprintf((char *)funcbuf," directory: %s%s", p, endline);
funcnxt = 0;
funclen = strlen((char *)funcbuf);
} else
/* If done processing the expanded entries send a summary statement */
if (nxpnd == 0) {
sprintf((char *)funcbuf,
"%s%ld file%s deleted, %s byte%s freed%s",
endline,
nfiles,
(nfiles == 1) ? "" : "s",
ckfstoa(nbytes),
(nbytes == (CK_OFF_T)1) ? "" : "s",
endline
);
nxpnd--;
funcnxt = 0;
funclen = strlen((char *)funcbuf);
} else {
funcbuf[0] = '\0';
funcnxt = 0;
funclen = 0;
}
/* If we have data to send */
if (funcnxt < funclen)
return ((unsigned)funcbuf[funcnxt++]); /* Return a character */
else
return(-1); /* No more input */
}
/* S N D D E L -- Send delete message */
int
snddel(spec) char * spec; {
#ifndef NOSERVER
char name[CKMAXPATH+1];
#ifdef OS2
char * p = NULL;
#endif /* #ifdef OS2 */
if (!*spec)
return(0);
ckstrncpy(name, spec, CKMAXPATH+1);
#ifdef OS2
/* change / to \. */
p = name;
while (*p) { /* Change them back to \ */
if (*p == '/') *p = '\\';
p++;
}
#endif /* OS2 */
nfiles = 0L;
nbytes = (CK_OFF_T)0;
sprintf((char *)funcbuf,"Deleting \"%s\"%s",name,endline);
funcnxt = 0;
funclen = strlen((char *)funcbuf);
nzxopts = ZX_FILONLY; /* Files only */
#ifdef UNIXOROSK
if (matchdot) nzxopts |= ZX_MATCHDOT;
#endif /* UNIXOROSK */
#ifdef COMMENT
/* Recursive deleting not supported yet */
if (recursive) nzxopts |= ZX_RECURSE;
#endif /* COMMENT */
nxpnd = nzxpand(name,nzxopts);
if (nxpnd < 1)
return(-1);
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
ckstrncpy(cmdstr,"REMOTE DELETE",CMDSTRL); /* Data for X packet. */
first = 1; /* Init getchx lookahead */
funcstr = 1; /* Just set the flag. */
funcptr = nxtdel; /* And the pointer. */
binary = XYFT_T; /* Use text mode for this, */
return(sinit());
#else
return(0);
#endif /* NOSERVER */
}
#ifdef OS2
/* S N D S P A C E -- send disk space message */
int
sndspace(drive) int drive; {
#ifndef NOSERVER
static char spctext[64];
unsigned long space;
if (drive) {
space = zdskspace(drive - 'A' + 1);
if (space > 0 && space < 1024)
sprintf(spctext,
" Drive %c: unknown%s",
drive,
endline
);
else
sprintf(spctext,
" Drive %c: %ldK free%s",
drive,
space / 1024L,
endline
);
} else {
space = zdskspace(0);
if (space > 0 && space < 1024)
sprintf(spctext, " Free space: unknown%s", endline);
else
sprintf(spctext, " Free space: %ldK%s", space / 1024L, endline);
}
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
ckstrncpy(cmdstr,"free space",CMDSTRL); /* Data for X packet. */
first = 1; /* Init getchx lookahead */
memstr = 1; /* Just set the flag. */
memptr = spctext; /* And the pointer. */
binary = XYFT_T; /* Text mode for this. */
return(sinit());
#else
return(0);
#endif /* NOSERVER */
}
/* S N D W H O -- send who message */
int
sndwho(who) char * who; {
#ifndef NOSERVER
nfils = 0; /* No files, no lists. */
xflg = 1; /* Flag we must send X packet. */
ckstrncpy(cmdstr,"who",CMDSTRL); /* Data for X packet. */
first = 1; /* Init getchx lookahead */
memstr = 1; /* Just set the flag. */
#ifdef NT
memptr = "\15\12K95 SERVER\15\12"; /* And the pointer. */
#else
memptr = "\15\12K/2 SERVER\15\12";
#endif /* NT */
binary = XYFT_T; /* Use text mode */
return(sinit());
#else
return(0);
#endif /* NOSERVER */
}
#endif /* OS2 */
/* C W D -- Change server's working directory */
/*
String passed has first byte as length of directory name, rest of string
is name. Returns:
0 on failure.
1 on success after sending short-form response (ACK with name).
2 on success if a CD Message file is to be sent.
*/
int
cwd(vdir) char *vdir; {
char *cdd, *dirp;
vdir[xunchar(*vdir) + 1] = '\0'; /* Terminate string with a null */
dirp = vdir+1;
tlog(F110,"Directory requested: ",dirp,0L);
if (zchdir(dirp)) { /* Try to change */
cdd = zgtdir(); /* Get new working directory. */
debug(F110,"cwd",cdd,0);
if (srvcdmsg) { /* Send orientation file? */
int i;
for (i = 0; i < 8; i++) {
if (zchki(cdmsgfile[i]) > -1) {
xxscreen(SCR_CD,0,0l,cdd);
tlog(F110,"Changed directory to",cdd,0L);
return(2);
}
}
}
encstr((CHAR *)cdd); /* Send short-form reply */
ack1(data); /* containing directory name. */
xxscreen(SCR_CD,0,0l,cdd);
tlog(F110,"Changed directory to",cdd,0L);
return(1);
} else {
debug(F110,"cwd failed",dirp,0);
tlog(F110,"Failed to change directory to",dirp,0L);
return(0);
}
}
/* S Y S C M D -- Do a system command */
/* Command string is formed by concatenating the two arguments. */
int
syscmd(prefix,suffix) char *prefix, *suffix; {
extern int i_isopen;
#ifndef NOPUSH
char *cp;
i_isopen = 0;
if (!prefix)
return(0);
if (!*prefix)
return(0);
for (cp = cmdstr; *prefix != '\0'; (*cp++ = *prefix++));
while ((*cp++ = *suffix++))
#ifdef OS2
/* This takes away more than we gain in convenience
if (*(cp-1) == '/') *(cp-1) = '\\' */
#endif /* OS2 */
; /* Copy suffix */
debug(F110,"syscmd",cmdstr,0);
if (zxcmd(ZIFILE,cmdstr) > 0) {
debug(F110,"syscmd zxcmd ok",cmdstr,0);
nfils = sndsrc = 0; /* Flag that input is from stdin */
xflg = hcflg = 1; /* And special flags for pipe */
binary = XYFT_T; /* Go to text mode */
i_isopen = 1;
return (sinit()); /* Send S packet */
} else {
debug(F100,"syscmd zxcmd failed",cmdstr,0);
i_isopen = 0;
return(0);
}
#else
debug(F100,"syscmd zxcmd NOPUSH",cmdstr,0);
i_isopen = 0;
return(0);
#endif /* NOPUSH */
}
/* R E M S E T -- Remote Set */
/* Called by server to set variables as commanded in REMOTE SET packets. */
/* Returns 1 on success, 0 on failure. */
int
remset(s) char *s; {
extern int c_save, en_del;
int len, i, x, y;
char *p;
len = xunchar(*s++); /* Length of first field */
p = s + len; /* Pointer to second length field */
*p++ = '\0'; /* Zero out second length field */
x = atoi(s); /* Value of first field */
debug(F111,"remset",s,x);
debug(F110,"remset",p,0);
switch (x) { /* Do the right thing */
case 132: /* Attributes (all, in) */
atcapr = atoi(p);
return(1);
case 133: /* File length attributes */
case 233: /* IN/OUT combined */
case 148: /* Both kinds of lengths */
case 248:
atleni = atleno = atoi(p);
return(1);
case 134: /* File Type (text/binary) */
case 234:
attypi = attypo = atoi(p);
return(1);
case 135: /* File creation date */
case 235:
atdati = atdato = atoi(p);
return(1);
case 139: /* File Blocksize */
case 239:
atblki = atblko = atoi(p);
return(1);
case 141: /* Encoding / Character Set */
case 241:
atenci = atenco = atoi(p);
return(1);
case 142: /* Disposition */
case 242:
atdisi = atdiso = atoi(p);
return(1);
case 145: /* System ID */
case 245:
atsidi = atsido = atoi(p);
return(1);
case 147: /* System-Dependent Info */
case 247:
atsysi = atsyso = atoi(p);
return(1);
case 232: /* Attributes (all, out) */
atcapr = atoi(p);
return(1);
case 300: /* File type (text, binary) */
binary = atoi(p);
b_save = binary;
#ifndef NOICP
g_binary = -1;
#endif /* NOICP */
return(1);
case 301: /* File name conversion */
fncnv = 1 - atoi(p); /* (oops) */
f_save = fncnv;
#ifndef NOICP
g_fncnv = -1;
#endif /* NOICP */
return(1);
case 302: /* File name collision */
#ifdef IKSD
#ifdef CK_LOGIN
if (inserver && isguest) /* May not be changed by guest */
return(0);
#endif /* CK_LOGIN */
#endif /* IKSD */
x = atoi(p);
if (!ENABLED(en_del) && (x == XYFX_X || x == XYFX_U))
return(0);
if (x == XYFX_R) ckwarn = 1; /* Rename */
if (x == XYFX_X) ckwarn = 0; /* Replace */
fncact = x;
return(1);
case 310: /* Incomplete File Disposition */
keep = atoi(p); /* Keep, Discard, Auto */
return(1);
case 311: /* Blocksize */
fblksiz = atoi(p);
return(1);
case 312: /* Record Length */
frecl = atoi(p);
return(1);
case 313: /* Record format */
frecfm = atoi(p);
return(1);
case 314: /* File organization */
forg = atoi(p);
return(1);
case 315: /* File carriage control */
fcctrl = atoi(p);
return(1);
case 330: /* Match dotfiles */
#ifndef NOICP
dir_dots = -1; /* This undoes DIR /DOT option */
#endif /* NOICP */
matchdot = atoi(p);
return(1);
case 331: /* Match FIFOs */
matchfifo = atoi(p);
return(1);
case 400: /* Block check */
y = atoi(p);
if (y < 5 && y > 0) {
bctr = y;
c_save = -1;
return(1);
} else if (*p == 'B') {
bctr = 4;
c_save = -1;
return(1);
} else if (*p == '5') {
bctr = 3;
c_save = -1;
return(1);
}
return(0);
case 401: /* Receive packet-length */
rpsiz = urpsiz = atoi(p);
if (urpsiz > MAXRP) urpsiz = MAXRP; /* Max long-packet length */
if (rpsiz > 94) rpsiz = 94; /* Max short-packet length */
urpsiz = adjpkl(urpsiz,wslots,bigrbsiz);
return(1);
case 402: /* Receive timeout */
y = atoi(p); /* Client is telling us */
if (y > -1 && y < 999) { /* the timeout that it wants */
pkttim = chktimo(y,timef); /* us to tell it to use. */
return(1);
} else return(0);
case 403: /* Retry limit */
y = atoi(p);
if (y > -1 && y < 95) {
maxtry = y;
return(1);
} else return(0);
case 404: /* Server timeout */
y = atoi(p);
if (y < 0) return(0);
srvtim = y;
return(1);
#ifndef NOCSETS
case 405: { /* Transfer character set */
extern int s_cset, axcset[];
int i;
for (i = 0; i < ntcsets; i++) {
if (!strcmp(tcsinfo[i].designator,p)) break;
}
debug(F101,"remset tcharset lookup","",i);
if (i == ntcsets) return(0);
tcharset = tcsinfo[i].code; /* If known, use it */
debug(F101,"remset tcharset","",tcharset);
if (s_cset == XMODE_A)
if (axcset[tcharset] > -1 && axcset[tcharset] > MAXFCSETS)
fcharset = axcset[tcharset]; /* Auto-pick file charset */
debug(F101,"remset tcharset fcharset","",fcharset);
setxlatype(tcharset,fcharset); /* Set up charset translations */
debug(F101,"remset xlatype","",xlatype);
debug(F101,"remset tcharset after setxlatype","",tcharset);
tcs_save = -1;
return(1);
}
case 320: { /* File character set */
extern struct keytab fcstab[];
extern int nfilc, s_cset, r_cset;
x = lookup(fcstab,p,nfilc,&y);
debug(F111,"RSET FILE CHAR name",p,x);
if (x < 0)
return(0);
s_cset = XMODE_M; /* No automatic charset switching */
r_cset = XMODE_M;
fcharset = x; /* Set file charset */
setxlatype(tcharset,fcharset); /* and translation type */
fcs_save = -1;
return(1);
}
#endif /* NOCSETS */
case 406: /* Window slots */
y = atoi(p);
if (y == 0) y = 1;
if (y < 1 || y > MAXWS) return(0);
wslotr = y;
swcapr = 1;
urpsiz = adjpkl(urpsiz,wslotr,bigrbsiz);
return(1);
case 410: /* Transfer mode */
y = atoi(p); /* 0 = automatic, nonzero = manual */
if (y != 0) y = 1;
xfermode = y;
debug(F101,"REMOTE SET xfermode","",xfermode);
return(1);
case 420: /* SERVER CD-MESSAGE { ON, OFF } */
y = atoi(p); /* 0 = automatic, nonzero = manual */
srvcdmsg = y;
return(1);
default: /* Anything else... */
return(0);
}
}
/* Adjust packet length based on number of window slots and buffer size */
int
adjpkl(pktlen,slots,bufsiz) int pktlen, slots, bufsiz; {
if (protocol != PROTO_K) return(pktlen);
debug(F101,"adjpkl len","",pktlen);
debug(F101,"adjpkl slots","",slots);
debug(F101,"adjpkl bufsiz","",bufsiz);
if (((pktlen + 6) * slots) > bufsiz)
pktlen = (bufsiz / slots) - 6;
debug(F101,"adjpkl new len","",pktlen);
return(pktlen);
}
/* Set transfer mode and file naming based on comparison of system types */
VOID
whoarewe() {
#ifndef NOICP
extern int g_xfermode;
#endif /* NOICP */
wearealike = 0;
debug(F101,"whoarewe xfermode","",xfermode);
#ifndef NOICP
debug(F101,"whoarewe g_xfermode","",g_xfermode);
#endif /* NOICP */
if (whoareu[0]) { /* If we know partner's system type */
char * p = (char *)whoareu;
debug(F110,"whoarewe remote sysid",whoareu,0);
if (!strcmp(p,cksysid)) /* Other system same as us */
wearealike = 1;
#ifdef UNIX
else if (!strcmp(p,"L3")) /* UNIX is sort of like AmigaDOS */
wearealike = 1; /* (same directory separator) */
else if (!strcmp(p,"N3")) /* UNIX like Aegis */
wearealike = 1;
#else
#ifdef AMIGA
/* Like UNIX, but case distinctions are ignored and can begin with device:. */
else if (!strcmp(p,"U1")) /* Amiga is sort of like UNIX */
wearealike = 1;
else if (!strcmp(p,"N3")) /* Amiga is sort of like Aegis */
wearealike = 1;
#else
#ifdef OS2 /* (Includes Windows 95/NT) */
/* DOS, GEMDOS, Windows 3.x, Windows 95, Windows NT */
/* All "the same" for FAT partitions but all bets off otherwise */
/* so this part needs some refinement ... */
else if (!strcmp(p,"U8")) /* MS-DOS */
wearealike = 1;
else if (!strcmp(p,"UO")) /* OS/2 */
wearealike = 1;
else if (!strcmp(p,"UN")) /* Windows NT or 95 */
wearealike = 1;
else if (!strcmp(p,"K2")) /* GEMDOS */
wearealike = 1;
#else
#ifdef GEMDOS
else if (!strcmp(p,"U8"))
wearealike = 1;
else if (!strcmp(p,"UO"))
wearealike = 1;
else if (!strcmp(p,"UN"))
wearealike = 1;
else if (!strcmp(p,"K2"))
wearealike = 1;
#endif /* GEMDOS */
#endif /* OS2 */
#endif /* AMIGA */
#endif /* UNIX */
/* Get here with wearealike == 1 if system types match */
debug(F101,"whoarewe wearealike","",wearealike);
if (!wearealike) /* Not alike */
return;
fncnv = XYFN_L; /* Alike, so literal filenames */
debug(F101,"whoarewe setting fncnv","",fncnv);
if (xfermode == XMODE_A) { /* Current xfer mode is auto */
#ifdef VMS
binary = XYFT_L; /* For VMS-to-VMS, use labeled */
#else
#ifdef OS2
/* OS/2 but not Windows */
if (!strcmp(cksysid,"UO") && !strcmp((char *)whoareu,"UO"))
binary = XYFT_L; /* For OS/2-to-OS/2, use labeled */
#else
binary = XYFT_B; /* For all others use binary */
#endif /* OS2 */
#endif /* VMS */
gnf_binary = binary; /* Prevailing type for gnfile() */
debug(F101,"whoarewe setting binary","",binary);
}
}
}
#endif /* NOXFER */
|