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
|
# Copyright (C) 2007 Giampaolo Rodola' <g.rodola@gmail.com>.
# Use of this source code is governed by MIT license that can be
# found in the LICENSE file.
import contextlib
import errno
import ftplib
import io
import logging
import os
import random
import re
import select
import socket
import ssl
import stat
import struct
import time
from unittest.mock import patch
import pytest
from pyftpdlib.filesystems import AbstractedFS
from pyftpdlib.handlers import SUPPORTS_HYBRID_IPV6
from pyftpdlib.handlers import DTPHandler
from pyftpdlib.handlers import FTPHandler
from pyftpdlib.handlers import ThrottledDTPHandler
from pyftpdlib.ioloop import IOLoop
from pyftpdlib.servers import FTPServer
from . import BUFSIZE
from . import CI_TESTING
from . import GLOBAL_TIMEOUT
from . import HOME
from . import HOST
from . import INTERRUPTED_TRANSF_SIZE
from . import OSX
from . import PASSWD
from . import POSIX
from . import SUPPORTS_IPV4
from . import SUPPORTS_IPV6
from . import USER
from . import WINDOWS
from . import FtpdThreadWrapper
from . import PyftpdlibTestCase
from . import close_client
from . import disable_log_warning
from . import get_server_handler
from . import retry_on_failure
from . import safe_rmpath
from . import touch
class TestFtpAuthentication(PyftpdlibTestCase):
"""Test: USER, PASS, REIN."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.testfn = self.get_testfn()
self.file = open(self.testfn, 'w+b')
self.dummyfile = io.BytesIO()
def tearDown(self):
close_client(self.client)
self.server.stop()
if not self.file.closed:
self.file.close()
if not self.dummyfile.closed:
self.dummyfile.close()
super().tearDown()
def assert_auth_failed(self, user, passwd):
with pytest.raises(
ftplib.error_perm, match='530 Authentication failed'
):
self.client.login(user, passwd)
def test_auth_ok(self):
self.client.login(user=USER, passwd=PASSWD)
def test_anon_auth(self):
self.client.login(user='anonymous', passwd='anon@')
self.client.login(user='anonymous', passwd='')
# supposed to be case sensitive
self.assert_auth_failed('AnoNymouS', 'foo')
# empty passwords should be allowed
self.client.sendcmd('user anonymous')
self.client.sendcmd('pass ')
self.client.sendcmd('user anonymous')
self.client.sendcmd('pass')
def test_auth_failed(self):
self.assert_auth_failed(USER, 'wrong')
self.assert_auth_failed('wrong', PASSWD)
self.assert_auth_failed('wrong', 'wrong')
def test_wrong_cmds_order(self):
with pytest.raises(
ftplib.error_perm, match='503 Login with USER first'
):
self.client.sendcmd('pass ' + PASSWD)
self.client.login(user=USER, passwd=PASSWD)
with pytest.raises(
ftplib.error_perm, match="503 User already authenticated."
):
self.client.sendcmd('pass ' + PASSWD)
def test_max_auth(self):
self.assert_auth_failed(USER, 'wrong')
self.assert_auth_failed(USER, 'wrong')
self.assert_auth_failed(USER, 'wrong')
# If authentication fails for 3 times ftpd disconnects the
# client. We can check if that happens by using self.client.sendcmd()
# on the 'dead' socket object. If socket object is really
# closed it should be raised a OSError exception (Windows)
# or a EOFError exception (Linux).
self.client.sock.settimeout(0.1)
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('')
def test_rein(self):
self.client.login(user=USER, passwd=PASSWD)
self.client.sendcmd('rein')
# user not authenticated, error response expected
with pytest.raises(
ftplib.error_perm, match='530 Log in with USER and PASS first'
):
self.client.sendcmd('pwd')
# by logging-in again we should be able to execute a
# file-system command
self.client.login(user=USER, passwd=PASSWD)
self.client.sendcmd('pwd')
@retry_on_failure
def test_rein_during_transfer(self):
# Test REIN while already authenticated and a transfer is
# in progress.
self.client.login(user=USER, passwd=PASSWD)
data = b'abcde12345' * 1000000
self.file.write(data)
self.file.close()
conn = self.client.transfercmd('retr ' + self.testfn)
with contextlib.closing(conn):
rein_sent = False
bytes_recv = 0
while True:
chunk = conn.recv(BUFSIZE)
if not chunk:
break
bytes_recv += len(chunk)
self.dummyfile.write(chunk)
if bytes_recv > INTERRUPTED_TRANSF_SIZE and not rein_sent:
rein_sent = True
# flush account, error response expected
self.client.sendcmd('rein')
with pytest.raises(
ftplib.error_perm,
match='530 Log in with USER and PASS first',
):
self.client.dir()
# a 226 response is expected once transfer finishes
assert self.client.voidresp()[:3] == '226'
# account is still flushed, error response is still expected
with pytest.raises(
ftplib.error_perm, match='530 Log in with USER and PASS first'
):
self.client.sendcmd('size ' + self.testfn)
# by logging-in again we should be able to execute a
# filesystem command
self.client.login(user=USER, passwd=PASSWD)
self.client.sendcmd('pwd')
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
def test_user(self):
# Test USER while already authenticated and no transfer
# is in progress.
self.client.login(user=USER, passwd=PASSWD)
self.client.sendcmd('user ' + USER) # authentication flushed
with pytest.raises(
ftplib.error_perm, match='530 Log in with USER and PASS first'
):
self.client.sendcmd('pwd')
self.client.sendcmd('pass ' + PASSWD)
self.client.sendcmd('pwd')
def test_user_during_transfer(self):
# Test USER while already authenticated and a transfer is
# in progress.
self.client.login(user=USER, passwd=PASSWD)
data = b'abcde12345' * 1000000
self.file.write(data)
self.file.close()
conn = self.client.transfercmd('retr ' + self.testfn)
with contextlib.closing(conn):
rein_sent = 0
bytes_recv = 0
while True:
chunk = conn.recv(BUFSIZE)
if not chunk:
break
bytes_recv += len(chunk)
self.dummyfile.write(chunk)
# stop transfer while it isn't finished yet
if bytes_recv > INTERRUPTED_TRANSF_SIZE and not rein_sent:
rein_sent = True
# flush account, expect an error response
self.client.sendcmd('user ' + USER)
with pytest.raises(
ftplib.error_perm,
match='530 Log in with USER and PASS first',
):
self.client.dir()
# a 226 response is expected once transfer finishes
assert self.client.voidresp()[:3] == '226'
# account is still flushed, error response is still expected
with pytest.raises(
ftplib.error_perm, match='530 Log in with USER and PASS first'
):
self.client.sendcmd('pwd')
# by logging-in again we should be able to execute a
# filesystem command
self.client.sendcmd('pass ' + PASSWD)
self.client.sendcmd('pwd')
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
class TestFtpDummyCmds(PyftpdlibTestCase):
"""Test: TYPE, STRU, MODE, NOOP, SYST, ALLO, HELP, SITE HELP."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def test_type(self):
self.client.sendcmd('type a')
self.client.sendcmd('type i')
self.client.sendcmd('type l7')
self.client.sendcmd('type l8')
with pytest.raises(ftplib.error_perm, match="Unsupported type"):
self.client.sendcmd('type ?!?')
def test_stru(self):
self.client.sendcmd('stru f')
self.client.sendcmd('stru F')
with pytest.raises(ftplib.error_perm, match="Unimplemented"):
self.client.sendcmd('stru p')
with pytest.raises(ftplib.error_perm, match="Unimplemented"):
self.client.sendcmd('stru r')
with pytest.raises(ftplib.error_perm, match="Unrecognized"):
self.client.sendcmd('stru ?!?')
def test_mode(self):
self.client.sendcmd('mode s')
self.client.sendcmd('mode S')
with pytest.raises(ftplib.error_perm, match="Unimplemented"):
self.client.sendcmd('mode b')
with pytest.raises(ftplib.error_perm, match="Unimplemented"):
self.client.sendcmd('mode c')
with pytest.raises(ftplib.error_perm, match="Unrecognized"):
self.client.sendcmd('mode ?!?')
def test_noop(self):
self.client.sendcmd('noop')
def test_syst(self):
self.client.sendcmd('syst')
def test_allo(self):
self.client.sendcmd('allo x')
def test_quit(self):
self.client.sendcmd('quit')
def test_help(self):
self.client.sendcmd('help')
cmd = random.choice(list(FTPHandler.proto_cmds.keys()))
self.client.sendcmd(f'help {cmd}')
with pytest.raises(ftplib.error_perm, match="Unrecognized"):
self.client.sendcmd('help ?!?')
def test_site(self):
with pytest.raises(ftplib.error_perm, match="needs an argument"):
self.client.sendcmd('site')
with pytest.raises(ftplib.error_perm, match="not understood"):
self.client.sendcmd('site ?!?')
with pytest.raises(ftplib.error_perm, match="not understood"):
self.client.sendcmd('site foo bar')
with pytest.raises(ftplib.error_perm, match="not understood"):
self.client.sendcmd('sitefoo bar')
def test_site_help(self):
self.client.sendcmd('site help')
self.client.sendcmd('site help help')
with pytest.raises(ftplib.error_perm, match="Unrecognized SITE"):
self.client.sendcmd('site help ?!?')
def test_rest(self):
# Test error conditions only; resumed data transfers are
# tested later.
self.client.sendcmd('type i')
with pytest.raises(ftplib.error_perm, match="needs an argument"):
self.client.sendcmd('rest')
with pytest.raises(ftplib.error_perm, match="Invalid parameter"):
self.client.sendcmd('rest str')
with pytest.raises(ftplib.error_perm, match="Invalid parameter"):
self.client.sendcmd('rest -1')
with pytest.raises(ftplib.error_perm, match="Invalid parameter"):
self.client.sendcmd('rest 10.1')
# REST is not supposed to be allowed in ASCII mode
self.client.sendcmd('type a')
with pytest.raises(
ftplib.error_perm, match='not allowed in ASCII mode'
):
self.client.sendcmd('rest 10')
def test_feat(self):
resp = self.client.sendcmd('feat')
assert 'UTF8' in resp
assert 'TVFS' in resp
def test_opts_feat(self):
with pytest.raises(ftplib.error_perm, match="Invalid argument"):
self.client.sendcmd('opts mlst bad_fact')
with pytest.raises(
ftplib.error_perm, match="Invalid number of arguments"
):
self.client.sendcmd('opts mlst type ;')
with pytest.raises(ftplib.error_perm, match="Unsupported command"):
self.client.sendcmd('opts not_mlst')
# utility function which used for extracting the MLST "facts"
# string from the FEAT response
def mlst():
resp = self.client.sendcmd('feat')
return re.search(r'^\s*MLST\s+(\S+)$', resp, re.MULTILINE).group(1)
# we rely on "type", "perm", "size", and "modify" facts which
# are those available on all platforms
assert 'type*;perm*;size*;modify*;' in mlst()
assert self.client.sendcmd('opts mlst type;') == '200 MLST OPTS type;'
assert self.client.sendcmd('opts mLSt TypE;') == '200 MLST OPTS type;'
assert 'type*;perm;size;modify;' in mlst()
assert self.client.sendcmd('opts mlst') == '200 MLST OPTS '
assert '*' not in mlst()
assert self.client.sendcmd('opts mlst fish;cakes;') == '200 MLST OPTS '
assert '*' not in mlst()
assert (
self.client.sendcmd('opts mlst fish;cakes;type;')
== '200 MLST OPTS type;'
)
assert 'type*;perm;size;modify;' in mlst()
class TestFtpCmdsSemantic(PyftpdlibTestCase):
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
arg_cmds = [
'allo',
'appe',
'dele',
'eprt',
'mdtm',
'mfmt',
'mkd',
'mode',
'opts',
'port',
'rest',
'retr',
'rmd',
'rnfr',
'rnto',
'site chmod',
'site',
'size',
'stor',
'stru',
'type',
'user',
'xmkd',
'xrmd',
]
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def test_arg_cmds(self):
# Test commands requiring an argument.
expected = "501 Syntax error: command needs an argument."
for cmd in self.arg_cmds:
self.client.putcmd(cmd)
resp = self.client.getmultiline()
assert resp == expected
def test_no_arg_cmds(self):
# Test commands accepting no arguments.
expected = "501 Syntax error: command does not accept arguments."
narg_cmds = [
'abor',
'cdup',
'feat',
'noop',
'pasv',
'pwd',
'quit',
'rein',
'syst',
'xcup',
'xpwd',
]
for cmd in narg_cmds:
self.client.putcmd(cmd + ' arg')
resp = self.client.getmultiline()
assert resp == expected
def test_auth_cmds(self):
# Test those commands requiring client to be authenticated.
expected = "530 Log in with USER and PASS first."
self.client.sendcmd('rein')
for cmd in self.server.handler.proto_cmds:
cmd = cmd.lower()
if cmd in (
'feat',
'help',
'noop',
'user',
'pass',
'stat',
'syst',
'quit',
'site',
'site help',
'pbsz',
'auth',
'prot',
'ccc',
):
continue
if cmd in self.arg_cmds:
cmd += ' arg'
self.client.putcmd(cmd)
resp = self.client.getmultiline()
assert resp == expected
def test_no_auth_cmds(self):
# Test those commands that do not require client to be authenticated.
self.client.sendcmd('rein')
for cmd in ('feat', 'help', 'noop', 'stat', 'syst', 'site help'):
self.client.sendcmd(cmd)
# STAT provided with an argument is equal to LIST hence not allowed
# if not authenticated
with pytest.raises(ftplib.error_perm, match='530 Log in with USER'):
self.client.sendcmd('stat /')
self.client.sendcmd('quit')
class TestFtpFsOperations(PyftpdlibTestCase):
"""Test: PWD, CWD, CDUP, SIZE, RNFR, RNTO, DELE, MKD, RMD, MDTM,
STAT, MFMT.
"""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
self.tempfile = self.get_testfn()
self.tempdir = self.get_testfn()
touch(self.tempfile)
os.mkdir(self.tempdir)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def test_cwd(self):
self.client.cwd(self.tempdir)
assert self.client.pwd() == '/' + self.tempdir
with pytest.raises(ftplib.error_perm, match="No such file"):
self.client.cwd('subtempdir')
# cwd provided with no arguments is supposed to move us to the
# root directory
self.client.sendcmd('cwd')
assert self.client.pwd() == '/'
def test_pwd(self):
assert self.client.pwd() == '/'
self.client.cwd(self.tempdir)
assert self.client.pwd() == '/' + self.tempdir
def test_cdup(self):
subfolder = self.get_testfn(dir=self.tempdir)
os.mkdir(os.path.join(self.tempdir, subfolder))
assert self.client.pwd() == '/'
self.client.cwd(self.tempdir)
assert self.client.pwd() == f'/{self.tempdir}'
self.client.cwd(subfolder)
assert self.client.pwd() == f'/{self.tempdir}/{subfolder}'
self.client.sendcmd('cdup')
assert self.client.pwd() == f'/{self.tempdir}'
self.client.sendcmd('cdup')
assert self.client.pwd() == '/'
# make sure we can't escape from root directory
self.client.sendcmd('cdup')
assert self.client.pwd() == '/'
def test_mkd(self):
tempdir = self.get_testfn()
dirname = self.client.mkd(tempdir)
# the 257 response is supposed to include the absolute dirname
assert dirname == '/' + tempdir
# make sure we can't create directories which already exist
# (probably not really necessary);
# let's use a try/except statement to avoid leaving behind
# orphaned temporary directory in the event of a test failure.
with pytest.raises(ftplib.error_perm, match="File exists"):
self.client.mkd(tempdir)
def test_rmd(self):
self.client.rmd(self.tempdir)
with pytest.raises(ftplib.error_perm, match="Not a directory"):
self.client.rmd(self.tempfile)
# make sure we can't remove the root directory
with pytest.raises(
ftplib.error_perm, match="Can't remove root directory"
):
self.client.rmd('/')
def test_dele(self):
self.client.delete(self.tempfile)
with pytest.raises(ftplib.error_perm):
self.client.delete(self.tempdir)
def test_rnfr_rnto(self):
# rename file
tempname = self.get_testfn()
self.client.rename(self.tempfile, tempname)
self.client.rename(tempname, self.tempfile)
# rename dir
tempname = self.get_testfn()
self.client.rename(self.tempdir, tempname)
self.client.rename(tempname, self.tempdir)
# rnfr/rnto over non-existing paths
bogus = self.get_testfn()
with pytest.raises(ftplib.error_perm, match="No such file"):
self.client.rename(bogus, '/x')
with pytest.raises(ftplib.error_perm):
self.client.rename(self.tempfile, '/')
# rnto sent without first specifying the source
with pytest.raises(ftplib.error_perm, match="use RNFR first"):
self.client.sendcmd('rnto ' + self.tempfile)
# make sure we can't rename root directory
with pytest.raises(
ftplib.error_perm, match="Can't rename home directory"
):
self.client.rename('/', '/x')
def test_mdtm(self):
self.client.sendcmd('mdtm ' + self.tempfile)
bogus = self.get_testfn()
with pytest.raises(ftplib.error_perm, match="not retrievable"):
self.client.sendcmd('mdtm ' + bogus)
# make sure we can't use mdtm against directories
with pytest.raises(ftplib.error_perm, match="not retrievable"):
self.client.sendcmd('mdtm ' + self.tempdir)
def test_mfmt(self):
# making sure MFMT is able to modify the timestamp for the file
test_timestamp = "20170921013410"
self.client.sendcmd('mfmt ' + test_timestamp + ' ' + self.tempfile)
resp_time = os.path.getmtime(self.tempfile)
resp_time_str = time.strftime('%Y%m%d%H%M%S', time.gmtime(resp_time))
assert test_timestamp in resp_time_str
def test_invalid_mfmt_timeval(self):
# testing MFMT with invalid timeval argument
test_timestamp_with_chars = "B017092101341A"
test_timestamp_invalid_length = "20170921"
with pytest.raises(ftplib.error_perm, match="Invalid time format"):
self.client.sendcmd(
'mfmt ' + test_timestamp_with_chars + ' ' + self.tempfile
)
with pytest.raises(ftplib.error_perm, match="Invalid time format"):
self.client.sendcmd(
'mfmt ' + test_timestamp_invalid_length + ' ' + self.tempfile
)
def test_missing_mfmt_timeval_arg(self):
# testing missing timeval argument
with pytest.raises(ftplib.error_perm, match="Syntax error"):
self.client.sendcmd('mfmt ' + self.tempfile)
def test_size(self):
self.client.sendcmd('type a')
with pytest.raises(
ftplib.error_perm, match="SIZE not allowed in ASCII mode"
):
self.client.size(self.tempfile)
self.client.sendcmd('type i')
self.client.size(self.tempfile)
# make sure we can't use size against directories
with pytest.raises(ftplib.error_perm, match="not retrievable"):
self.client.sendcmd('size ' + self.tempdir)
if not hasattr(os, 'chmod'):
def test_site_chmod(self):
with pytest.raises(ftplib.error_perm):
self.client.sendcmd('site chmod 777 ' + self.tempfile)
else:
def test_site_chmod(self):
# not enough args
with pytest.raises(ftplib.error_perm, match="needs two arguments"):
self.client.sendcmd('site chmod 777')
# bad args
with pytest.raises(
ftplib.error_perm, match="Invalid SITE CHMOD format"
):
self.client.sendcmd('site chmod -177 ' + self.tempfile)
with pytest.raises(
ftplib.error_perm, match="Invalid SITE CHMOD format"
):
self.client.sendcmd('site chmod 778 ' + self.tempfile)
with pytest.raises(
ftplib.error_perm, match="Invalid SITE CHMOD format"
):
self.client.sendcmd('site chmod foo ' + self.tempfile)
def getmode():
mode = oct(stat.S_IMODE(os.stat(self.tempfile).st_mode))
mode = mode.replace('o', '')
return mode
# on Windows it is possible to set read-only flag only
if WINDOWS:
self.client.sendcmd('site chmod 777 ' + self.tempfile)
assert getmode() == '0666'
self.client.sendcmd('site chmod 444 ' + self.tempfile)
assert getmode() == '0444'
self.client.sendcmd('site chmod 666 ' + self.tempfile)
assert getmode() == '0666'
else:
self.client.sendcmd('site chmod 777 ' + self.tempfile)
assert getmode() == '0777'
self.client.sendcmd('site chmod 755 ' + self.tempfile)
assert getmode() == '0755'
self.client.sendcmd('site chmod 555 ' + self.tempfile)
assert getmode() == '0555'
class CustomIO(io.RawIOBase):
def __init__(self):
super().__init__()
self._bytesio = io.BytesIO()
def seek(self, offset, whence=io.SEEK_SET):
return self._bytesio.seek(offset, whence)
def readinto(self, b):
return self._bytesio.readinto(b)
def write(self, b):
return self._bytesio.write(b)
class TestFtpStoreData(PyftpdlibTestCase):
"""Test STOR, STOU, APPE, REST, TYPE."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
use_sendfile = None
use_custom_io = False
def setUp(self):
super().setUp()
self.server = self.server_class()
if self.use_sendfile is not None:
self.server.handler.use_sendfile = self.use_sendfile
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
if self.use_custom_io:
self.dummy_recvfile = CustomIO()
self.dummy_sendfile = CustomIO()
else:
self.dummy_recvfile = io.BytesIO()
self.dummy_sendfile = io.BytesIO()
self.testfn = self.get_testfn()
def tearDown(self):
close_client(self.client)
self.server.stop()
self.dummy_recvfile.close()
self.dummy_sendfile.close()
if self.use_sendfile is not None:
self.server.handler.use_sendfile = hasattr(os, "sendfile")
super().tearDown()
def test_stor(self):
data = b'abcde12345' * 100000
self.dummy_sendfile.write(data)
self.dummy_sendfile.seek(0)
self.client.storbinary('stor ' + self.testfn, self.dummy_sendfile)
self.client.retrbinary(
'retr ' + self.testfn, self.dummy_recvfile.write
)
self.dummy_recvfile.seek(0)
datafile = self.dummy_recvfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
def test_stor_active(self):
# Like test_stor but using PORT
self.client.set_pasv(False)
self.test_stor()
@retry_on_failure
def test_stor_ascii(self):
# Test STOR in ASCII mode
def store(cmd, fp, blocksize=8192):
# like storbinary() except it sends "type a" instead of
# "type i" before starting the transfer
self.client.voidcmd('type a')
with contextlib.closing(self.client.transfercmd(cmd)) as conn:
while True:
buf = fp.read(blocksize)
if not buf:
break
conn.sendall(buf)
if isinstance(conn, ssl.SSLSocket):
conn.unwrap()
return self.client.voidresp()
data = b'abcde12345\r\n' * 100000
self.dummy_sendfile.write(data)
self.dummy_sendfile.seek(0)
store('stor ' + self.testfn, self.dummy_sendfile)
self.client.retrbinary(
'retr ' + self.testfn, self.dummy_recvfile.write
)
expected = data.replace(b'\r\n', bytes(os.linesep, "ascii"))
self.dummy_recvfile.seek(0)
datafile = self.dummy_recvfile.read()
assert len(expected) == len(datafile)
assert hash(expected) == hash(datafile)
@retry_on_failure
def test_stor_ascii_2(self):
# Test that no extra extra carriage returns are added to the
# file in ASCII mode in case CRLF gets truncated in two chunks
# (issue 116)
def store(cmd, fp, blocksize=8192):
# like storbinary() except it sends "type a" instead of
# "type i" before starting the transfer
self.client.voidcmd('type a')
with contextlib.closing(self.client.transfercmd(cmd)) as conn:
while True:
buf = fp.read(blocksize)
if not buf:
break
conn.sendall(buf)
return self.client.voidresp()
old_buffer = DTPHandler.ac_in_buffer_size
try:
# set a small buffer so that CRLF gets delivered in two
# separate chunks: "CRLF", " f", "oo", " CR", "LF", " b", "ar"
DTPHandler.ac_in_buffer_size = 2
data = b'\r\n foo \r\n bar'
self.dummy_sendfile.write(data)
self.dummy_sendfile.seek(0)
store('stor ' + self.testfn, self.dummy_sendfile)
expected = data.replace(b'\r\n', bytes(os.linesep, "ascii"))
self.client.retrbinary(
'retr ' + self.testfn, self.dummy_recvfile.write
)
self.client.quit()
self.dummy_recvfile.seek(0)
assert expected == self.dummy_recvfile.read()
finally:
DTPHandler.ac_in_buffer_size = old_buffer
def test_stou(self):
data = b'abcde12345' * 100000
self.dummy_sendfile.write(data)
self.dummy_sendfile.seek(0)
self.client.voidcmd('TYPE I')
# filename comes in as "1xx FILE: <filename>"
filename = self.client.sendcmd('stou').split('FILE: ')[1]
try:
with contextlib.closing(self.client.makeport()) as sock:
conn, _ = sock.accept()
with contextlib.closing(conn):
conn.settimeout(GLOBAL_TIMEOUT)
if hasattr(self.client_class, 'ssl_version'):
conn = ssl.wrap_socket(conn)
while True:
buf = self.dummy_sendfile.read(8192)
if not buf:
break
conn.sendall(buf)
# transfer finished, a 226 response is expected
assert self.client.voidresp()[:3] == '226'
self.client.retrbinary(
'retr ' + filename, self.dummy_recvfile.write
)
self.dummy_recvfile.seek(0)
datafile = self.dummy_recvfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
finally:
# We do not use os.remove() because file could still be
# locked by ftpd thread. If DELE through FTP fails try
# os.remove() as last resort.
if os.path.exists(filename):
try:
self.client.delete(filename)
except (ftplib.Error, EOFError, OSError):
safe_rmpath(filename)
def test_stou_rest(self):
# Watch for STOU preceded by REST, which makes no sense.
self.client.sendcmd('type i')
self.client.sendcmd('rest 10')
with pytest.raises(ftplib.error_temp, match="Can't STOU while REST"):
self.client.sendcmd('stou')
def test_stou_orphaned_file(self):
# Check that no orphaned file gets left behind when STOU fails.
# Even if STOU fails the file is first created and then erased.
# Since we can't know the name of the file the best way that
# we have to test this case is comparing the content of the
# directory before and after STOU has been issued.
# Assuming that testfn is supposed to be a "reserved" file
# name we shouldn't get false positives.
# login as a limited user in order to make STOU fail
self.client.login('anonymous', '@nopasswd')
before = os.listdir(HOME)
with pytest.raises(ftplib.error_perm, match="Not enough privileges"):
self.client.sendcmd('stou ' + self.testfn)
after = os.listdir(HOME)
if before != after:
for file in after:
assert not file.startswith(self.testfn)
def test_appe(self):
data1 = b'abcde12345' * 100000
self.dummy_sendfile.write(data1)
self.dummy_sendfile.seek(0)
self.client.storbinary('stor ' + self.testfn, self.dummy_sendfile)
data2 = b'fghil67890' * 100000
self.dummy_sendfile.write(data2)
self.dummy_sendfile.seek(len(data1))
self.client.storbinary('appe ' + self.testfn, self.dummy_sendfile)
self.client.retrbinary(
"retr " + self.testfn, self.dummy_recvfile.write
)
self.dummy_recvfile.seek(0)
datafile = self.dummy_recvfile.read()
assert len(data1 + data2) == len(datafile)
assert hash(data1 + data2) == hash(datafile)
def test_appe_rest(self):
# Watch for APPE preceded by REST, which makes no sense.
self.client.sendcmd('type i')
self.client.sendcmd('rest 10')
with pytest.raises(ftplib.error_temp, match="Can't APPE while REST"):
self.client.sendcmd('appe x')
def test_rest_on_stor(self):
# Test STOR preceded by REST.
data = b'abcde12345' * 100000
self.dummy_sendfile.write(data)
self.dummy_sendfile.seek(0)
self.client.voidcmd('TYPE I')
with contextlib.closing(
self.client.transfercmd('stor ' + self.testfn)
) as conn:
bytes_sent = 0
while True:
chunk = self.dummy_sendfile.read(BUFSIZE)
conn.sendall(chunk)
bytes_sent += len(chunk)
# stop transfer while it isn't finished yet
if bytes_sent >= INTERRUPTED_TRANSF_SIZE or not chunk:
break
if isinstance(conn, ssl.SSLSocket):
conn.unwrap()
# transfer wasn't finished yet but server can't know this,
# hence expect a 226 response
assert self.client.voidresp()[:3] == '226'
# resuming transfer by using a marker value greater than the
# file size stored on the server should result in an error
# on stor
file_size = self.client.size(self.testfn)
assert file_size == bytes_sent
self.client.sendcmd(f'rest {file_size + 1}')
with pytest.raises(ftplib.error_perm, match="> file size"):
self.client.sendcmd('stor ' + self.testfn)
self.client.sendcmd(f'rest {bytes_sent}')
self.client.storbinary('stor ' + self.testfn, self.dummy_sendfile)
self.client.retrbinary(
'retr ' + self.testfn, self.dummy_recvfile.write
)
self.dummy_sendfile.seek(0)
self.dummy_recvfile.seek(0)
data_sendfile = self.dummy_sendfile.read()
data_recvfile = self.dummy_recvfile.read()
assert len(data_sendfile) == len(data_recvfile)
assert len(data_sendfile) == len(data_recvfile)
def test_failing_rest_on_stor(self):
# Test REST -> STOR against a non existing file.
self.client.sendcmd('type i')
self.client.sendcmd('rest 10')
with pytest.raises(ftplib.error_perm, match="No such file"):
self.client.storbinary('stor ' + self.testfn, lambda x: x)
# if the first STOR failed because of REST, the REST marker
# is supposed to be resetted to 0
self.dummy_sendfile.write(b'x' * 4096)
self.dummy_sendfile.seek(0)
self.client.storbinary('stor ' + self.testfn, self.dummy_sendfile)
def test_quit_during_transfer(self):
# RFC-959 states that if QUIT is sent while a transfer is in
# progress, the connection must remain open for result response
# and the server will then close it.
with contextlib.closing(
self.client.transfercmd('stor ' + self.testfn)
) as conn:
conn.sendall(b'abcde12345' * 50000)
self.client.sendcmd('quit')
conn.sendall(b'abcde12345' * 50000)
# expect the response (transfer ok)
assert self.client.voidresp()[:3] == '226'
# Make sure client has been disconnected.
# OSError (Windows) or EOFError (Linux) exception is supposed
# to be raised in such a case.
self.client.sock.settimeout(0.1)
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('noop')
def test_stor_empty_file(self):
self.client.storbinary('stor ' + self.testfn, self.dummy_sendfile)
self.client.quit()
with open(self.testfn) as f:
assert not f.read()
@pytest.mark.skipif(not POSIX, reason="POSIX only")
class TestFtpStoreDataNoSendfile(TestFtpStoreData):
"""Test STOR, STOU, APPE, REST, TYPE not using sendfile()."""
use_sendfile = False
class TestFtpStoreDataWithCustomIO(TestFtpStoreData):
"""Test STOR, STOU, APPE, REST, TYPE with custom IO objects()."""
use_custom_io = True
class TestFtpRetrieveData(PyftpdlibTestCase):
"""Test RETR, REST, TYPE."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
use_sendfile = None
use_custom_io = False
def retrieve_ascii(self, cmd, callback, blocksize=8192, rest=None):
"""Like retrbinary but uses TYPE A instead."""
self.client.voidcmd('type a')
with contextlib.closing(self.client.transfercmd(cmd, rest)) as conn:
conn.settimeout(GLOBAL_TIMEOUT)
while True:
data = conn.recv(blocksize)
if not data:
break
callback(data)
return self.client.voidresp()
def setUp(self):
super().setUp()
self.server = self.server_class()
if self.use_sendfile is not None:
self.server.handler.use_sendfile = self.use_sendfile
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
self.testfn = self.get_testfn()
if self.use_custom_io:
self.dummyfile = CustomIO()
else:
self.dummyfile = io.BytesIO()
def tearDown(self):
close_client(self.client)
self.server.stop()
self.dummyfile.close()
if self.use_sendfile is not None:
self.server.handler.use_sendfile = hasattr(os, "sendfile")
super().tearDown()
def test_retr(self):
data = b'abcde12345' * 100000
with open(self.testfn, 'wb') as f:
f.write(data)
self.client.retrbinary("retr " + self.testfn, self.dummyfile.write)
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
# attempt to retrieve a file which doesn't exist
bogus = self.get_testfn()
with pytest.raises(ftplib.error_perm, match="No such file"):
self.client.retrbinary("retr " + bogus, lambda x: x)
def test_retr_ascii(self):
# Test RETR in ASCII mode.
data = (b'abcde12345' + bytes(os.linesep, "ascii")) * 100000
with open(self.testfn, 'wb') as f:
f.write(data)
self.retrieve_ascii("retr " + self.testfn, self.dummyfile.write)
expected = data.replace(bytes(os.linesep, "ascii"), b'\r\n')
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(expected) == len(datafile)
assert hash(expected) == hash(datafile)
def test_retr_ascii_already_crlf(self):
# Test ASCII mode RETR for data with CRLF line endings.
data = b'abcde12345\r\n' * 100000
with open(self.testfn, 'wb') as f:
f.write(data)
self.retrieve_ascii("retr " + self.testfn, self.dummyfile.write)
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
@retry_on_failure
def test_restore_on_retr(self):
data = b'abcde12345' * 1000000
with open(self.testfn, 'wb') as f:
f.write(data)
received_bytes = 0
self.client.voidcmd('TYPE I')
with contextlib.closing(
self.client.transfercmd('retr ' + self.testfn)
) as conn:
conn.settimeout(GLOBAL_TIMEOUT)
while True:
chunk = conn.recv(BUFSIZE)
if not chunk:
break
self.dummyfile.write(chunk)
received_bytes += len(chunk)
if received_bytes >= INTERRUPTED_TRANSF_SIZE:
break
# transfer wasn't finished yet so we expect a 426 response
assert self.client.getline()[:3] == "426"
# resuming transfer by using a marker value greater than the
# file size stored on the server should result in an error
# on retr (RFC-1123)
file_size = self.client.size(self.testfn)
self.client.sendcmd(f'rest {file_size + 1}')
with pytest.raises(
ftplib.error_perm, match="position .*? > file size"
):
self.client.sendcmd('retr ' + self.testfn)
# test resume
self.client.sendcmd(f'rest {received_bytes}')
self.client.retrbinary("retr " + self.testfn, self.dummyfile.write)
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
def test_retr_empty_file(self):
touch(self.testfn)
self.client.retrbinary("retr " + self.testfn, self.dummyfile.write)
self.dummyfile.seek(0)
assert self.dummyfile.read() == b""
@pytest.mark.skipif(not POSIX, reason="POSIX only")
class TestFtpRetrieveDataNoSendfile(TestFtpRetrieveData):
"""Test RETR, REST, TYPE by not using sendfile()."""
use_sendfile = False
class TestFtpRetrieveDataCustomIO(TestFtpRetrieveData):
"""Test RETR, REST, TYPE using custom IO objects."""
use_custom_io = True
class TestFtpListingCmds(PyftpdlibTestCase):
"""Test LIST, NLST, argumented STAT."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
self.testfn = self.get_testfn()
touch(self.testfn)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def _test_listing_cmds(self, cmd):
"""Tests common to LIST NLST and MLSD commands."""
# assume that no argument has the same meaning of "/"
l1 = l2 = []
self.client.retrlines(cmd, l1.append)
self.client.retrlines(cmd + ' /', l2.append)
assert l1 == l2
if cmd.lower() != 'mlsd':
# if pathname is a file one line is expected
x = []
self.client.retrlines(f'{cmd} ' + self.testfn, x.append)
assert len(x) == 1
assert ''.join(x).endswith(self.testfn)
# non-existent path, 550 response is expected
bogus = self.get_testfn()
with pytest.raises(
ftplib.error_perm, match="No such (file|directory)"
):
self.client.retrlines(f'{cmd} ' + bogus, lambda x: x)
# for an empty directory we excpect that the data channel is
# opened anyway and that no data is received
x = []
tempdir = self.get_testfn()
os.mkdir(tempdir)
try:
self.client.retrlines(f'{cmd} {tempdir}', x.append)
assert x == []
finally:
safe_rmpath(tempdir)
def test_nlst(self):
# common tests
self._test_listing_cmds('nlst')
def test_list(self):
# common tests
self._test_listing_cmds('list')
# known incorrect pathname arguments (e.g. old clients) are
# expected to be treated as if pathname would be == '/'
l1 = l2 = l3 = l4 = l5 = []
self.client.retrlines('list /', l1.append)
self.client.retrlines('list -a', l2.append)
self.client.retrlines('list -l', l3.append)
self.client.retrlines('list -al', l4.append)
self.client.retrlines('list -la', l5.append)
tot = (l1, l2, l3, l4, l5)
for x in range(len(tot) - 1):
assert tot[x] == tot[x + 1]
def test_mlst(self):
# utility function for extracting the line of interest
def mlstline(cmd):
return self.client.voidcmd(cmd).split('\n')[1]
# the fact set must be preceded by a space
assert mlstline('mlst').startswith(' ')
# where TVFS is supported, a fully qualified pathname is expected
assert mlstline('mlst ' + self.testfn).endswith('/' + self.testfn)
assert mlstline('mlst').endswith('/')
# assume that no argument has the same meaning of "/"
assert mlstline('mlst') == mlstline('mlst /')
# non-existent path
bogus = self.get_testfn()
with pytest.raises(ftplib.error_perm, match="No such file"):
self.client.sendcmd('mlst ' + bogus)
# test file/dir notations
assert 'type=dir' in mlstline('mlst')
assert 'type=file' in mlstline('mlst ' + self.testfn)
# let's add some tests for OPTS command
self.client.sendcmd('opts mlst type;')
assert mlstline('mlst') == ' type=dir; /'
# where no facts are present, two leading spaces before the
# pathname are required (RFC-3659)
self.client.sendcmd('opts mlst')
assert mlstline('mlst') == ' /'
def test_mlsd(self):
# common tests
self._test_listing_cmds('mlsd')
dir = self.get_testfn()
os.mkdir(dir)
try:
self.client.retrlines('mlsd ' + self.testfn, lambda x: x)
except ftplib.error_perm as err:
resp = str(err)
# if path is a file a 501 response code is expected
assert str(resp)[0:3] == "501"
else:
self.fail("Exception not raised")
def test_mlsd_all_facts(self):
feat = self.client.sendcmd('feat')
# all the facts
facts = re.search(r'^\s*MLST\s+(\S+)$', feat, re.MULTILINE).group(1)
facts = facts.replace("*;", ";")
self.client.sendcmd('opts mlst ' + facts)
resp = self.client.sendcmd('mlst')
local = facts[:-1].split(";")
returned = resp.split("\n")[1].strip()[:-3]
returned = [x.split("=")[0] for x in returned.split(";")]
assert sorted(local) == sorted(returned)
assert "type" in resp
assert "size" in resp
assert "perm" in resp
assert "modify" in resp
if POSIX:
assert "unique" in resp
assert "unix.mode" in resp
assert "unix.uid" in resp
assert "unix.gid" in resp
elif WINDOWS:
assert "create" in resp
def test_stat(self):
# Test STAT provided with argument which is equal to LIST
self.client.sendcmd('stat /')
self.client.sendcmd('stat ' + self.testfn)
self.client.putcmd('stat *')
resp = self.client.getmultiline()
assert resp == '550 Globbing not supported.'
bogus = self.get_testfn()
with pytest.raises(ftplib.error_perm, match="No such file"):
self.client.sendcmd('stat ' + bogus)
def test_unforeseen_time_event(self):
# Emulate a case where the file last modification time is prior
# to year 1900. This most likely will never happen unless
# someone specifically force the last modification time of a
# file in some way.
# To do so we temporarily override os.path.getmtime so that it
# returns a negative value referring to a year prior to 1900.
# It causes time.localtime/gmtime to raise a ValueError exception
# which is supposed to be handled by server.
_getmtime = AbstractedFS.getmtime
try:
AbstractedFS.getmtime = lambda x, y: -9000000000
self.client.sendcmd('stat /') # test AbstractedFS.format_list()
self.client.sendcmd('mlst /') # test AbstractedFS.format_mlsx()
# make sure client hasn't been disconnected
self.client.sendcmd('noop')
finally:
AbstractedFS.getmtime = _getmtime
class TestFtpAbort(PyftpdlibTestCase):
"""Test: ABOR."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def test_abor_no_data(self):
# Case 1: ABOR while no data channel is opened: respond with 225.
resp = self.client.sendcmd('ABOR')
assert resp == '225 No transfer to abort.'
self.client.retrlines('list', [].append)
def test_abor_pasv(self):
# Case 2: user sends a PASV, a data-channel socket is listening
# but not connected, and ABOR is sent: close listening data
# socket, respond with 225.
self.client.makepasv()
respcode = self.client.sendcmd('ABOR')[:3]
assert respcode == '225'
self.client.retrlines('list', [].append)
def test_abor_port(self):
# Case 3: data channel opened with PASV or PORT, but ABOR sent
# before a data transfer has been started: close data channel,
# respond with 225
self.client.set_pasv(0)
with contextlib.closing(self.client.makeport()):
respcode = self.client.sendcmd('ABOR')[:3]
assert respcode == '225'
self.client.retrlines('list', [].append)
def test_abor_during_transfer(self):
# Case 4: ABOR while a data transfer on DTP channel is in
# progress: close data channel, respond with 426, respond
# with 226.
data = b'abcde12345' * 1000000
testfn = self.get_testfn()
with open(testfn, 'w+b') as f:
f.write(data)
self.client.voidcmd('TYPE I')
with contextlib.closing(
self.client.transfercmd('retr ' + testfn)
) as conn:
bytes_recv = 0
while bytes_recv < 65536:
chunk = conn.recv(BUFSIZE)
bytes_recv += len(chunk)
# stop transfer while it isn't finished yet
self.client.putcmd('ABOR')
# transfer isn't finished yet so ftpd should respond with 426
assert self.client.getline()[:3] == "426"
# transfer successfully aborted, so should now respond
# with a 226
assert self.client.voidresp()[:3] == '226'
@pytest.mark.skipif(
not hasattr(socket, 'MSG_OOB'), reason="MSG_OOB not available"
)
@pytest.mark.skipif(OSX, reason="does not work on OSX")
def test_oob_abor(self):
# Send ABOR by following the RFC-959 directives of sending
# Telnet IP/Synch sequence as OOB data.
# On some systems like FreeBSD this happened to be a problem
# due to a different SO_OOBINLINE behavior.
# On some platforms (e.g. Python CE) the test may fail
# although the MSG_OOB constant is defined.
self.client.sock.sendall(bytes(chr(244), "latin-1"), socket.MSG_OOB)
self.client.sock.sendall(bytes(chr(255), "latin-1"), socket.MSG_OOB)
self.client.sock.sendall(b'abor\r\n')
assert self.client.getresp()[:3] == '225'
class TestThrottleBandwidth(PyftpdlibTestCase):
"""Test ThrottledDTPHandler class."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
class CustomDTPHandler(ThrottledDTPHandler):
# overridden so that the "awake" callback is executed
# immediately; this way we won't introduce any slowdown
# and still test the code of interest
def _throttle_bandwidth(self, *args, **kwargs):
ThrottledDTPHandler._throttle_bandwidth(self, *args, **kwargs)
if (
self._throttler is not None
and not self._throttler.cancelled
):
self._throttler.call()
self._throttler = None
self.server = self.server_class()
self.server.handler.dtp_handler = CustomDTPHandler
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
self.dummyfile = io.BytesIO()
self.testfn = self.get_testfn()
def tearDown(self):
close_client(self.client)
self.server.handler.dtp_handler.read_limit = 0
self.server.handler.dtp_handler.write_limit = 0
self.server.handler.dtp_handler = DTPHandler
self.server.stop()
if not self.dummyfile.closed:
self.dummyfile.close()
super().tearDown()
def test_throttle_send(self):
# This test doesn't test the actual speed accuracy, just
# awakes all that code which implements the throttling.
# with self.server.lock:
self.server.handler.dtp_handler.write_limit = 32768
data = b'abcde12345' * 100000
with open(self.testfn, 'wb') as file:
file.write(data)
self.client.retrbinary("retr " + self.testfn, self.dummyfile.write)
self.dummyfile.seek(0)
datafile = self.dummyfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
def test_throttle_recv(self):
# This test doesn't test the actual speed accuracy, just
# awakes all that code which implements the throttling.
# with self.server.lock:
self.server.handler.dtp_handler.read_limit = 32768
data = b'abcde12345' * 100000
self.dummyfile.write(data)
self.dummyfile.seek(0)
self.client.storbinary("stor " + self.testfn, self.dummyfile)
self.client.quit() # needed to fix occasional failures
with open(self.testfn, 'rb') as file:
file_data = file.read()
assert len(data) == len(file_data)
assert hash(data) == hash(file_data)
class TestTimeouts(PyftpdlibTestCase):
"""Test idle-timeout capabilities of control and data channels.
Some tests may fail on slow machines.
"""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = None
self.client = None
self.testfn = self.get_testfn()
def _setUp(
self,
idle_timeout=300,
data_timeout=300,
pasv_timeout=30,
port_timeout=30,
):
self.server = self.server_class()
self.server.handler.timeout = idle_timeout
self.server.handler.dtp_handler.timeout = data_timeout
self.server.handler.passive_dtp.timeout = pasv_timeout
self.server.handler.active_dtp.timeout = port_timeout
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
def tearDown(self):
if self.client is not None and self.server is not None:
close_client(self.client)
self.server.handler.timeout = 300
self.server.handler.dtp_handler.timeout = 300
self.server.handler.passive_dtp.timeout = 30
self.server.handler.active_dtp.timeout = 30
self.server.stop()
super().tearDown()
# Note: moved later.
# def test_idle_timeout(self):
# # Test control channel timeout. The client which does not send
# # any command within the time specified in FTPHandler.timeout is
# # supposed to be kicked off.
# self._setUp(idle_timeout=0.1)
# # fail if no msg is received within 1 second
# self.client.sock.settimeout(1)
# data = self.client.sock.recv(BUFSIZE)
# self.assertEqual(data, b"421 Control connection timed out.\r\n")
# # ensure client has been kicked off
# self.assertRaises((OSError, EOFError), self.client.sendcmd,
# 'noop')
def test_data_timeout(self):
# Test data channel timeout. The client which does not send
# or receive any data within the time specified in
# DTPHandler.timeout is supposed to be kicked off.
self._setUp(data_timeout=0.5 if CI_TESTING else 0.1)
addr = self.client.makepasv()
with contextlib.closing(socket.socket()) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect(addr)
# fail if no msg is received within 1 second
self.client.sock.settimeout(1)
data = self.client.sock.recv(BUFSIZE)
assert data == b"421 Data connection timed out.\r\n"
# ensure client has been kicked off
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('noop')
def test_data_timeout_not_reached(self):
# Impose a timeout for the data channel, then keep sending data for a
# time which is longer than that to make sure that the code checking
# whether the transfer stalled for with no progress is executed.
self._setUp(data_timeout=0.5 if CI_TESTING else 0.1)
with contextlib.closing(
self.client.transfercmd('stor ' + self.testfn)
) as sock:
if hasattr(self.client_class, 'ssl_version'):
sock = ssl.wrap_socket(sock)
stop_at = time.time() + 0.2
while time.time() < stop_at:
sock.send(b'x' * 1024)
sock.close()
self.client.voidresp()
def test_idle_data_timeout1(self):
# Tests that the control connection timeout is suspended while
# the data channel is opened
self._setUp(
idle_timeout=0.5 if CI_TESTING else 0.1,
data_timeout=0.6 if CI_TESTING else 0.2,
)
addr = self.client.makepasv()
with contextlib.closing(socket.socket()) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect(addr)
# fail if no msg is received within 1 second
self.client.sock.settimeout(1)
data = self.client.sock.recv(BUFSIZE)
assert data == b"421 Data connection timed out.\r\n"
# ensure client has been kicked off
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('noop')
def test_idle_data_timeout2(self):
# Tests that the control connection timeout is restarted after
# data channel has been closed
self._setUp(
idle_timeout=0.5 if CI_TESTING else 0.1,
data_timeout=0.6 if CI_TESTING else 0.2,
)
addr = self.client.makepasv()
with contextlib.closing(socket.socket()) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect(addr)
# close data channel
self.client.sendcmd('abor')
self.client.sock.settimeout(1)
data = self.client.sock.recv(BUFSIZE)
assert data == b"421 Control connection timed out.\r\n"
# ensure client has been kicked off
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('noop')
def test_pasv_timeout(self):
# Test pasv data channel timeout. The client which does not
# connect to the listening data socket within the time specified
# in PassiveDTP.timeout is supposed to receive a 421 response.
self._setUp(pasv_timeout=0.5 if CI_TESTING else 0.1)
self.client.makepasv()
# fail if no msg is received within 1 second
self.client.sock.settimeout(1)
data = self.client.sock.recv(BUFSIZE)
assert data == b"421 Passive data channel timed out.\r\n"
# client is not expected to be kicked off
self.client.sendcmd('noop')
def test_disabled_idle_timeout(self):
self._setUp(idle_timeout=0)
self.client.sendcmd('noop')
def test_disabled_data_timeout(self):
self._setUp(data_timeout=0)
addr = self.client.makepasv()
with contextlib.closing(socket.socket()) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect(addr)
def test_disabled_pasv_timeout(self):
self._setUp(pasv_timeout=0)
self.client.makepasv()
# reset passive socket
addr = self.client.makepasv()
with contextlib.closing(socket.socket()) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect(addr)
def test_disabled_port_timeout(self):
self._setUp(port_timeout=0)
with contextlib.closing(self.client.makeport()):
with contextlib.closing(self.client.makeport()):
pass
class TestConfigurableOptions(PyftpdlibTestCase):
"""Test those daemon options which are commonly modified by user."""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = None
self.client = None
def connect(self):
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
def tearDown(self):
if self.client is not None:
close_client(self.client)
# set back options to their original value
if self.server is not None:
self.server.server.max_cons = 0
self.server.server.max_cons_per_ip = 0
self.server.handler.banner = "pyftpdlib ready."
self.server.handler.max_login_attempts = 3
self.server.handler.auth_failed_timeout = 5
self.server.handler.masquerade_address = None
self.server.handler.masquerade_address_map = {}
self.server.handler.permit_privileged_ports = False
self.server.handler.permit_foreign_addresses = False
self.server.handler.passive_ports = None
self.server.handler.use_gmt_times = True
self.server.handler.tcp_no_delay = hasattr(socket, 'TCP_NODELAY')
self.server.handler.encoding = "utf8"
self.server.stop()
super().tearDown()
@disable_log_warning
def test_max_connections(self):
# Test FTPServer.max_cons attribute
self.server = self.server_class()
self.server.server.max_cons = 3
self.server.start()
c1 = self.client_class()
c2 = self.client_class()
c3 = self.client_class()
try:
# on control connection
c1.connect(self.server.host, self.server.port)
c2.connect(self.server.host, self.server.port)
with pytest.raises(
ftplib.error_temp, match="Too many connections"
):
c3.connect(
self.server.host,
self.server.port,
)
# with passive data channel established
c2.quit()
c1.login(USER, PASSWD)
c1.makepasv()
with pytest.raises(
ftplib.error_temp, match="Too many connections"
):
c2.connect(
self.server.host,
self.server.port,
)
# with passive data socket waiting for connection
c1.login(USER, PASSWD)
c1.sendcmd('pasv')
c2.close()
with pytest.raises(
ftplib.error_temp, match="Too many connections"
):
c2.connect(
self.server.host,
self.server.port,
)
# with active data channel established
c1.login(USER, PASSWD)
with contextlib.closing(c1.makeport()):
c2.close()
with pytest.raises(
ftplib.error_temp, match="Too many connections"
):
c2.connect(
self.server.host,
self.server.port,
)
finally:
for c in (c1, c2, c3):
try:
c.quit()
except (OSError, EOFError, ftplib.Error):
# already disconnected
pass
finally:
c.close()
@disable_log_warning
def test_max_connections_per_ip(self):
# Test FTPServer.max_cons_per_ip attribute
self.server = self.server_class()
self.server.server.max_cons_per_ip = 3
self.server.start()
c1 = self.client_class()
c2 = self.client_class()
c3 = self.client_class()
c4 = self.client_class()
try:
c1.connect(self.server.host, self.server.port)
c2.connect(self.server.host, self.server.port)
c3.connect(self.server.host, self.server.port)
with pytest.raises(
ftplib.error_temp,
match="Too many connections from the same IP address",
):
c4.connect(
self.server.host,
self.server.port,
)
# Make sure client has been disconnected.
# OSError (Windows) or EOFError (Linux) exception is
# supposed to be raised in such a case.
with pytest.raises((OSError, EOFError)):
c4.sendcmd('noop')
finally:
for c in (c1, c2, c3, c4):
try:
c.quit()
except (OSError, EOFError): # already disconnected
c.close()
def test_banner(self):
# Test FTPHandler.banner attribute
self.server = self.server_class()
self.server.handler.banner = 'hello there'
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
assert self.client.getwelcome()[4:] == 'hello there'
def test_max_login_attempts(self):
# Test FTPHandler.max_login_attempts attribute.
self.server = self.server_class()
self.server.handler.max_login_attempts = 1
self.server.handler.auth_failed_timeout = 0
self.server.start()
self.connect()
with pytest.raises(ftplib.error_perm):
self.client.login('wrong', 'wrong')
# OSError (Windows) or EOFError (Linux) exceptions are
# supposed to be raised when attempting to send/recv some data
# using a disconnected socket
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('noop')
def test_masquerade_address(self):
# Test FTPHandler.masquerade_address attribute
self.server = self.server_class()
self.server.handler.masquerade_address = "256.256.256.256"
self.server.start()
self.connect()
host = ftplib.parse227(self.client.sendcmd('PASV'))[0]
assert host == "256.256.256.256"
def test_masquerade_address_map(self):
# Test FTPHandler.masquerade_address_map attribute
self.server = self.server_class()
self.server.handler.masquerade_address_map = {
self.server.host: "128.128.128.128"
}
self.server.start()
self.connect()
host = ftplib.parse227(self.client.sendcmd('PASV'))[0]
assert host == "128.128.128.128"
def test_passive_ports(self):
# Test FTPHandler.passive_ports attribute
self.server = self.server_class()
_range = list(range(40000, 60000, 200))
self.server.handler.passive_ports = _range
self.server.start()
self.connect()
assert self.client.makepasv()[1] in _range
assert self.client.makepasv()[1] in _range
assert self.client.makepasv()[1] in _range
assert self.client.makepasv()[1] in _range
@disable_log_warning
def test_passive_ports_busy(self):
# If the ports in the configured range are busy it is expected
# that a kernel-assigned port gets chosen
with contextlib.closing(socket.socket()) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.bind((HOST, 0))
port = s.getsockname()[1]
self.server = self.server_class()
self.server.handler.passive_ports = [port]
self.server.start()
self.connect()
resulting_port = self.client.makepasv()[1]
assert port != resulting_port
@retry_on_failure
def test_use_gmt_times(self):
testfn = self.get_testfn()
touch(testfn)
# use GMT time
self.server = self.server_class()
self.server.handler.use_gmt_times = True
self.server.start()
self.connect()
gmt1 = self.client.sendcmd('mdtm ' + testfn)
gmt2 = self.client.sendcmd('mlst ' + testfn)
gmt3 = self.client.sendcmd('stat ' + testfn)
# use local time
self.tearDown()
self.setUp()
self.server = self.server_class()
self.server.handler.use_gmt_times = False
self.server.start()
self.connect()
loc1 = self.client.sendcmd('mdtm ' + testfn)
loc2 = self.client.sendcmd('mlst ' + testfn)
loc3 = self.client.sendcmd('stat ' + testfn)
# if we're not in a GMT time zone times are supposed to be
# different
if time.timezone != 0:
assert gmt1 != loc1
assert gmt2 != loc2
assert gmt3 != loc3
# ...otherwise they should be the same
else:
assert gmt1 == loc1
assert gmt2 == loc2
assert gmt3 == loc3
def test_encoding(self):
# Make sure that if encoding != UTF-8, FEAT command does not
# list UTF-8.
self.server = self.server_class()
self.server.handler.encoding = "latin-1"
self.server.start()
self.connect()
resp = self.client.sendcmd('feat')
assert 'UTF8' not in resp
@pytest.mark.xdist_group(name="serial")
class TestCallbacks(PyftpdlibTestCase):
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
class Handler(FTPHandler):
def write(self, text):
with open(testfn, "a") as f:
f.write(text)
def on_connect(self):
self.write("on_connect,")
def on_disconnect(self):
self.write("on_disconnect,")
def on_login(self, username):
self.write(f"on_login:{username},")
def on_login_failed(self, username, password):
self.write(f"on_login_failed:{username}+{password},")
def on_logout(self, username):
self.write(f"on_logout:{username},")
def on_file_sent(self, file):
self.write(f"on_file_sent:{os.path.basename(file)},")
def on_file_received(self, file):
self.write(f"on_file_received:{os.path.basename(file)},")
def on_incomplete_file_sent(self, file):
self.write(
f"on_incomplete_file_sent:{os.path.basename(file)},"
)
def on_incomplete_file_received(self, file):
self.write(
f"on_incomplete_file_received:{os.path.basename(file)},"
)
self.testfn = testfn = self.get_testfn()
self.testfn2 = self.get_testfn()
self.server = self.server_class()
self.server.server.handler = Handler
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def read_file(self, text):
stop_at = time.time() + 1
while time.time() <= stop_at:
with open(self.testfn) as f:
data = f.read()
if data == text:
return
time.sleep(0.01)
self.fail(f"data: {data!r}; expected: {text!r}")
def test_on_disconnect(self):
self.client.login(USER, PASSWD)
self.client.close()
self.read_file(f'on_connect,on_login:{USER},on_disconnect,')
def test_on_logout_quit(self):
self.client.login(USER, PASSWD)
self.client.sendcmd('quit')
self.read_file(
f'on_connect,on_login:{USER},on_logout:{USER},on_disconnect,'
)
def test_on_logout_rein(self):
self.client.login(USER, PASSWD)
self.client.sendcmd('rein')
self.read_file(f'on_connect,on_login:{USER},on_logout:{USER},')
def test_on_logout_no_pass(self):
# make sure on_logout() is not called if USER was provided
# but not PASS
self.client.sendcmd("user foo")
self.read_file('on_connect,')
def test_on_logout_user_issued_twice(self):
# At this point user "user" is logged in. Re-login as anonymous,
# then quit and expect queue == ["user", "anonymous"]
self.client.login(USER, PASSWD)
self.client.login("anonymous")
self.read_file(
f'on_connect,on_login:{USER},on_logout:{USER},on_login:anonymous,'
)
def test_on_login_failed(self):
with pytest.raises(ftplib.error_perm):
self.client.login('foo', 'bar?!?')
self.read_file('on_connect,on_login_failed:foo+bar?!?,')
def test_on_file_received(self):
data = b'abcde12345' * 100000
dummyfile = io.BytesIO()
dummyfile.write(data)
dummyfile.seek(0)
self.client.login(USER, PASSWD)
self.client.storbinary('stor ' + self.testfn2, dummyfile)
self.read_file(
f'on_connect,on_login:{USER},on_file_received:{self.testfn2},'
)
def test_on_file_sent(self):
self.client.login(USER, PASSWD)
data = b'abcde12345' * 100000
with open(self.testfn2, 'wb') as f:
f.write(data)
self.client.retrbinary("retr " + self.testfn2, lambda x: x)
self.read_file(
f'on_connect,on_login:{USER},on_file_sent:{self.testfn2},'
)
@retry_on_failure
def test_on_incomplete_file_received(self):
self.client.login(USER, PASSWD)
data = b'abcde12345' * 1000000
dummyfile = io.BytesIO()
dummyfile.write(data)
dummyfile.seek(0)
with contextlib.closing(
self.client.transfercmd('stor ' + self.testfn2)
) as conn:
bytes_sent = 0
while True:
chunk = dummyfile.read(BUFSIZE)
conn.sendall(chunk)
bytes_sent += len(chunk)
# stop transfer while it isn't finished yet
if bytes_sent >= INTERRUPTED_TRANSF_SIZE or not chunk:
self.client.putcmd('abor')
break
# If a data transfer is in progress server is supposed to send
# a 426 reply followed by a 226 reply.
resp = self.client.getmultiline()
assert resp == "426 Transfer aborted via ABOR."
resp = self.client.getmultiline()
assert resp.startswith("226")
self.read_file(
f'on_connect,on_login:{USER},on_incomplete_file_received:{self.testfn2},'
)
@retry_on_failure
def test_on_incomplete_file_sent(self):
self.client.login(USER, PASSWD)
data = b'abcde12345' * 1000000
with open(self.testfn2, 'wb') as f:
f.write(data)
bytes_recv = 0
with contextlib.closing(
self.client.transfercmd("retr " + self.testfn2, None)
) as conn:
while True:
chunk = conn.recv(BUFSIZE)
bytes_recv += len(chunk)
if bytes_recv >= INTERRUPTED_TRANSF_SIZE or not chunk:
break
assert self.client.getline()[:3] == "426"
self.read_file(
f'on_connect,on_login:{USER},on_incomplete_file_sent:{self.testfn2},'
)
class _TestNetworkProtocols:
"""Test PASV, EPSV, PORT and EPRT commands.
Do not use this class directly, let TestIPv4Environment and
TestIPv6Environment classes use it instead.
"""
def setUp(self):
super().setUp()
self.server = self.server_class((self.HOST, 0))
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
if self.client.af == socket.AF_INET:
self.proto = "1"
self.other_proto = "2"
else:
self.proto = "2"
self.other_proto = "1"
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def cmdresp(self, cmd):
"""Send a command and return response, also if the command failed."""
try:
return self.client.sendcmd(cmd)
except ftplib.Error as err:
return str(err)
@disable_log_warning
def test_eprt(self):
if not SUPPORTS_HYBRID_IPV6:
# test wrong proto
with pytest.raises(ftplib.error_perm, match="522"):
self.client.sendcmd(
'eprt |%s|%s|%s|' # noqa: UP031
% (self.other_proto, self.server.host, self.server.port)
)
# test bad args
msg = "501 Invalid EPRT format."
# len('|') > 3
assert self.cmdresp('eprt ||||') == msg
# len('|') < 3
assert self.cmdresp('eprt ||') == msg
# port > 65535
assert self.cmdresp(f'eprt |{self.proto}|{self.HOST}|65536|') == msg
# port < 0
assert self.cmdresp(f'eprt |{self.proto}|{self.HOST}|-1|') == msg
# port < 1024
resp = self.cmdresp(f'eprt |{self.proto}|{self.HOST}|222|')
assert resp[:3] == '501'
assert 'privileged port' in resp
# proto > 2
_cmd = f'eprt |3|{self.server.host}|{self.server.port}|'
with pytest.raises(ftplib.error_perm):
self.client.sendcmd(_cmd)
if self.proto == '1':
# len(ip.octs) > 4
assert self.cmdresp('eprt |1|1.2.3.4.5|2048|') == msg
# ip.oct > 255
assert self.cmdresp('eprt |1|1.2.3.256|2048|') == msg
# bad proto
resp = self.cmdresp('eprt |2|1.2.3.256|2048|')
assert "Network protocol not supported" in resp
# test connection
with contextlib.closing(socket.socket(self.client.af)) as sock:
sock.bind((self.client.sock.getsockname()[0], 0))
sock.listen(5)
sock.settimeout(GLOBAL_TIMEOUT)
ip, port = sock.getsockname()[:2]
self.client.sendcmd(f'eprt |{self.proto}|{ip}|{port}|')
try:
s = sock.accept()
s[0].close()
except socket.timeout:
self.fail("Server didn't connect to passive socket")
def test_epsv(self):
# test wrong proto
with pytest.raises(ftplib.error_perm, match="522"):
self.client.sendcmd('epsv ' + self.other_proto)
# proto > 2
with pytest.raises(ftplib.error_perm):
self.client.sendcmd('epsv 3')
# test connection
for cmd in ('EPSV', 'EPSV ' + self.proto):
host, port = ftplib.parse229(
self.client.sendcmd(cmd), self.client.sock.getpeername()
)
with contextlib.closing(
socket.socket(self.client.af, socket.SOCK_STREAM)
) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect((host, port))
self.client.sendcmd('abor')
def test_epsv_all(self):
self.client.sendcmd('epsv all')
with pytest.raises(ftplib.error_perm):
self.client.sendcmd('pasv')
with pytest.raises(ftplib.error_perm):
self.client.sendport(self.HOST, 2000)
with pytest.raises(ftplib.error_perm):
self.client.sendcmd(
f'eprt |{self.proto}|{self.HOST}|{2000}|',
)
@pytest.mark.skipif(not SUPPORTS_IPV4, reason="IPv4 not supported")
class TestIPv4Environment(_TestNetworkProtocols, PyftpdlibTestCase):
"""Test PASV, EPSV, PORT and EPRT commands.
Runs tests contained in _TestNetworkProtocols class by using IPv4
plus some additional specific tests.
"""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
HOST = '127.0.0.1'
@disable_log_warning
def test_port_v4(self):
# test connection
with contextlib.closing(self.client.makeport()):
self.client.sendcmd('abor')
# test bad arguments
ae = self.assertEqual
msg = "501 Invalid PORT format."
ae(self.cmdresp('port 127,0,0,1,1.1'), msg) # sep != ','
ae(self.cmdresp('port X,0,0,1,1,1'), msg) # value != int
ae(self.cmdresp('port 127,0,0,1,1,1,1'), msg) # len(args) > 6
ae(self.cmdresp('port 127,0,0,1'), msg) # len(args) < 6
ae(self.cmdresp('port 256,0,0,1,1,1'), msg) # oct > 255
ae(self.cmdresp('port 127,0,0,1,256,1'), msg) # port > 65535
ae(self.cmdresp('port 127,0,0,1,-1,0'), msg) # port < 0
# port < 1024
resp = self.cmdresp(f"port {self.HOST.replace('.', ',')},1,1")
assert resp[:3] == '501'
assert 'privileged port' in resp
if self.HOST != "1.2.3.4":
resp = self.cmdresp('port 1,2,3,4,4,4')
assert 'foreign address' in resp, resp
@disable_log_warning
def test_eprt_v4(self):
resp = self.cmdresp('eprt |1|0.10.10.10|2222|')
assert resp[:3] == '501'
assert 'foreign address' in resp
def test_pasv_v4(self):
host, port = ftplib.parse227(self.client.sendcmd('pasv'))
with contextlib.closing(
socket.socket(socket.AF_INET, socket.SOCK_STREAM)
) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect((host, port))
@pytest.mark.skipif(not SUPPORTS_IPV6, reason="IPv6 not supported")
class TestIPv6Environment(_TestNetworkProtocols, PyftpdlibTestCase):
"""Test PASV, EPSV, PORT and EPRT commands.
Runs tests contained in _TestNetworkProtocols class by using IPv6
plus some additional specific tests.
"""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
HOST = '::1'
def test_port_v6(self):
# PORT is not supposed to work
with pytest.raises(ftplib.error_perm):
self.client.sendport(
self.server.host,
self.server.port,
)
def test_pasv_v6(self):
# PASV is still supposed to work to support clients using
# IPv4 connecting to a server supporting both IPv4 and IPv6
self.client.makepasv()
@disable_log_warning
def test_eprt_v6(self):
resp = self.cmdresp('eprt |2|::foo|2222|')
assert resp[:3] == '501'
assert 'foreign address' in resp
@pytest.mark.skipif(
not SUPPORTS_HYBRID_IPV6, reason="IPv4/6 dual stack not supported"
)
class TestIPv6MixedEnvironment(PyftpdlibTestCase):
"""By running the server by specifying "::" as IP address the
server is supposed to listen on all interfaces, supporting both
IPv4 and IPv6 by using a single socket.
What we are going to do here is starting the server in this
manner and try to connect by using an IPv4 client.
"""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
HOST = "::"
def setUp(self):
super().setUp()
self.server = self.server_class((self.HOST, 0))
self.server.start()
self.client = None
def tearDown(self):
if self.client is not None:
close_client(self.client)
self.server.stop()
super().tearDown()
def test_port_v4(self):
def noop(x):
return x
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect('127.0.0.1', self.server.port)
self.client.set_pasv(False)
self.client.login(USER, PASSWD)
self.client.retrlines('list', noop)
def test_pasv_v4(self):
def noop(x):
return x
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect('127.0.0.1', self.server.port)
self.client.set_pasv(True)
self.client.login(USER, PASSWD)
self.client.retrlines('list', noop)
# make sure pasv response doesn't return an IPv4-mapped address
ip = self.client.makepasv()[0]
assert not ip.startswith("::ffff:")
def test_eprt_v4(self):
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect('127.0.0.1', self.server.port)
self.client.login(USER, PASSWD)
# test connection
with contextlib.closing(
socket.socket(socket.AF_INET, socket.SOCK_STREAM)
) as sock:
sock.bind((self.client.sock.getsockname()[0], 0))
sock.listen(5)
sock.settimeout(2)
ip, port = sock.getsockname()[:2]
self.client.sendcmd(f'eprt |1|{ip}|{port}|')
try:
sock2, _ = sock.accept()
sock2.close()
except socket.timeout:
self.fail("Server didn't connect to passive socket")
def test_epsv_v4(self):
def mlstline(cmd):
return self.client.voidcmd(cmd).split('\n')[1]
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect('127.0.0.1', self.server.port)
self.client.login(USER, PASSWD)
host, port = ftplib.parse229(
self.client.sendcmd('EPSV'), self.client.sock.getpeername()
)
assert host == '127.0.0.1'
with contextlib.closing(
socket.socket(socket.AF_INET, socket.SOCK_STREAM)
) as s:
s.settimeout(GLOBAL_TIMEOUT)
s.connect((host, port))
assert mlstline('mlst /').endswith('/')
class TestCornerCases(PyftpdlibTestCase):
"""Tests for any kind of strange situation for the server to be in,
mainly referring to bugs signaled on the bug tracker.
"""
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.server = self.server_class()
self.server.start()
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
def tearDown(self):
close_client(self.client)
self.server.stop()
super().tearDown()
def test_port_race_condition(self):
# Refers to bug #120, first sends PORT, then disconnects the
# control channel before accept()ing the incoming data connection.
# The original server behavior was to reply with "200 Active
# data connection established" *after* the client had already
# disconnected the control connection.
with contextlib.closing(socket.socket(self.client.af)) as sock:
sock.bind((self.client.sock.getsockname()[0], 0))
sock.listen(5)
sock.settimeout(GLOBAL_TIMEOUT)
host, port = sock.getsockname()[:2]
hbytes = host.split('.')
pbytes = [repr(port // 256), repr(port % 256)]
data = hbytes + pbytes
cmd = 'PORT ' + ','.join(data) + '\r\n'
self.client.sock.sendall(bytes(cmd, "latin-1"))
self.client.getresp()
s, _ = sock.accept()
s.close()
@pytest.mark.skipif(not POSIX, reason="POSIX only")
def test_quick_connect(self):
# Clients that connected and disconnected quickly could cause
# the server to crash, due to a failure to catch errors in the
# initial part of the connection process.
# Tracked in issues #91, #104 and #105.
# See also https://bugs.launchpad.net/zodb/+bug/135108
def connect(addr):
with contextlib.closing(socket.socket()) as s:
# Set SO_LINGER to 1,0 causes a connection reset (RST) to
# be sent when close() is called, instead of the standard
# FIN shutdown sequence.
s.setsockopt(
socket.SOL_SOCKET,
socket.SO_LINGER,
struct.pack('ii', 1, 0),
)
s.settimeout(GLOBAL_TIMEOUT)
try:
s.connect(addr)
except OSError:
pass
for _ in range(10):
connect((self.server.host, self.server.port))
for _ in range(10):
addr = self.client.makepasv()
connect(addr)
def test_error_on_callback(self):
# test that the server do not crash in case an error occurs
# while firing a scheduled function
self.tearDown()
server = FTPServer((HOST, 0), FTPHandler)
logger = logging.getLogger('pyftpdlib')
logger.disabled = True
try:
len1 = len(IOLoop.instance().socket_map)
IOLoop.instance().call_later(0, lambda: 1 // 0)
server.serve_forever(timeout=0.001, blocking=False)
len2 = len(IOLoop.instance().socket_map)
assert len1 == len2
finally:
logger.disabled = False
server.close_all()
def test_active_conn_error(self):
# we open a socket() but avoid to invoke accept() to
# reproduce this error condition:
# https://code.google.com/p/pyftpdlib/source/detail?r=905
with contextlib.closing(socket.socket()) as sock:
sock.bind((HOST, 0))
port = sock.getsockname()[1]
self.client.sock.settimeout(0.1)
try:
resp = self.client.sendport(HOST, port)
except ftplib.error_temp as err:
assert str(err)[:3] == '425' # noqa: PT017
except (socket.timeout, getattr(ssl, "SSLError", object())):
pass
else:
assert str(resp)[:3] != '200'
def test_repr(self):
# make sure the FTP/DTP handler classes have a sane repr()
with contextlib.closing(self.client.makeport()):
for inst in IOLoop.instance().socket_map.values():
repr(inst)
str(inst)
if hasattr(select, 'epoll') or hasattr(select, 'kqueue'):
def test_ioloop_fileno(self):
fd = self.server.server.ioloop.fileno()
assert isinstance(fd, int), fd
# # TODO: disabled as on certain platforms (OSX and Windows)
# # produces failures with python3. Will have to get back to
# # this and fix it.
# @pytest.mark.skipif(OSX or WINDOWS, reason="fails on OSX or Windows")
# class TestUnicodePathNames(PyftpdlibTestCase):
# """Test FTP commands and responses by using path names with non
# ASCII characters.
# """
# server_class = ThreadedTestFTPd
# client_class = ftplib.FTP
# def setUp(self):
# super().setUp()
# self.server = self.server_class()
# self.server.start()
# self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
# self.client.encoding = 'utf8'
# self.client.connect(self.server.host, self.server.port)
# self.client.login(USER, PASSWD)
# safe_mkdir(bytes(TESTFN_UNICODE, 'utf8'))
# touch(bytes(TESTFN_UNICODE_2, 'utf8'))
# self.utf8fs = TESTFN_UNICODE in os.listdir('.')
# def tearDown(self):
# close_client(self.client)
# self.server.stop()
# super().tearDown()
# # --- fs operations
# def test_cwd(self):
# if self.utf8fs:
# resp = self.client.cwd(TESTFN_UNICODE)
# self.assertTrue(TESTFN_UNICODE in resp)
# else:
# self.assertRaises(ftplib.error_perm, self.client.cwd,
# TESTFN_UNICODE)
# def test_mkd(self):
# if self.utf8fs:
# os.rmdir(TESTFN_UNICODE)
# dirname = self.client.mkd(TESTFN_UNICODE)
# self.assertEqual(dirname, '/' + TESTFN_UNICODE)
# self.assertTrue(os.path.isdir(TESTFN_UNICODE))
# else:
# self.assertRaises(ftplib.error_perm, self.client.mkd,
# TESTFN_UNICODE)
# def test_rmdir(self):
# if self.utf8fs:
# self.client.rmd(TESTFN_UNICODE)
# else:
# self.assertRaises(ftplib.error_perm, self.client.rmd,
# TESTFN_UNICODE)
# def test_rnfr_rnto(self):
# if self.utf8fs:
# self.client.rename(TESTFN_UNICODE, TESTFN)
# else:
# self.assertRaises(ftplib.error_perm, self.client.rename,
# TESTFN_UNICODE, TESTFN)
# def test_size(self):
# self.client.sendcmd('type i')
# if self.utf8fs:
# self.client.sendcmd('size ' + TESTFN_UNICODE_2)
# else:
# self.assertRaises(ftplib.error_perm, self.client.sendcmd,
# 'size ' + TESTFN_UNICODE_2)
# def test_mdtm(self):
# if self.utf8fs:
# self.client.sendcmd('mdtm ' + TESTFN_UNICODE_2)
# else:
# self.assertRaises(ftplib.error_perm, self.client.sendcmd,
# 'mdtm ' + TESTFN_UNICODE_2)
# def test_stou(self):
# if self.utf8fs:
# resp = self.client.sendcmd('stou ' + TESTFN_UNICODE)
# self.assertTrue(TESTFN_UNICODE in resp)
# else:
# self.assertRaises(ftplib.error_perm, self.client.sendcmd,
# 'stou ' + TESTFN_UNICODE)
# if hasattr(os, 'chmod'):
# def test_site_chmod(self):
# if self.utf8fs:
# self.client.sendcmd('site chmod 777 ' + TESTFN_UNICODE)
# else:
# self.assertRaises(ftplib.error_perm, self.client.sendcmd,
# 'site chmod 777 ' + TESTFN_UNICODE)
# # --- listing cmds
# def _test_listing_cmds(self, cmd):
# ls = []
# self.client.retrlines(cmd, ls.append)
# ls = '\n'.join(ls)
# if self.utf8fs:
# self.assertTrue(TESTFN_UNICODE in ls)
# else:
# # Part of the filename which are not encodable are supposed
# # to have been replaced. The file should be something like
# # 'tmp-pyftpdlib-unicode-????'. In any case it is not
# # referenceable (e.g. DELE 'tmp-pyftpdlib-unicode-????'
# # won't work).
# self.assertTrue('tmp-pyftpdlib-unicode' in ls)
# def test_list(self):
# self._test_listing_cmds('list')
# def test_nlst(self):
# self._test_listing_cmds('nlst')
# def test_mlsd(self):
# self._test_listing_cmds('mlsd')
# def test_mlst(self):
# # utility function for extracting the line of interest
# def mlstline(cmd):
# return self.client.voidcmd(cmd).split('\n')[1]
# if self.utf8fs:
# self.assertTrue('type=dir' in
# mlstline('mlst ' + TESTFN_UNICODE))
# self.assertTrue('/' + TESTFN_UNICODE in
# mlstline('mlst ' + TESTFN_UNICODE))
# self.assertTrue('type=file' in
# mlstline('mlst ' + TESTFN_UNICODE_2))
# self.assertTrue('/' + TESTFN_UNICODE_2 in
# mlstline('mlst ' + TESTFN_UNICODE_2))
# else:
# self.assertRaises(ftplib.error_perm,
# mlstline, 'mlst ' + TESTFN_UNICODE)
# # --- file transfer
# def test_stor(self):
# if self.utf8fs:
# data = b'abcde12345' * 500
# os.remove(TESTFN_UNICODE_2)
# dummy = io.BytesIO()
# dummy.write(data)
# dummy.seek(0)
# self.client.storbinary('stor ' + TESTFN_UNICODE_2, dummy)
# dummy_recv = io.BytesIO()
# self.client.retrbinary('retr ' + TESTFN_UNICODE_2,
# dummy_recv.write)
# dummy_recv.seek(0)
# self.assertEqual(dummy_recv.read(), data)
# else:
# dummy = io.BytesIO()
# self.assertRaises(ftplib.error_perm, self.client.storbinary,
# 'stor ' + TESTFN_UNICODE_2, dummy)
# def test_retr(self):
# if self.utf8fs:
# data = b'abcd1234' * 500
# with open(TESTFN_UNICODE_2, 'wb') as f:
# f.write(data)
# dummy = io.BytesIO()
# self.client.retrbinary('retr ' + TESTFN_UNICODE_2, dummy.write)
# dummy.seek(0)
# self.assertEqual(dummy.read(), data)
# else:
# dummy = io.BytesIO()
# self.assertRaises(ftplib.error_perm, self.client.retrbinary,
# 'retr ' + TESTFN_UNICODE_2, dummy.write)
class ThreadedFTPTests(PyftpdlibTestCase):
server_class = FtpdThreadWrapper
client_class = ftplib.FTP
def setUp(self):
super().setUp()
self.client = None
self.server = None
self.tempfile = self.get_testfn()
self.tempdir = self.get_testfn()
touch(self.tempfile)
touch(self.tempdir)
self.dummy_recvfile = io.BytesIO()
self.dummy_sendfile = io.BytesIO()
def tearDown(self):
if self.client:
close_client(self.client)
if self.server:
self.server.stop()
self.server.handler = FTPHandler
self.server.handler.abstracted_fs = AbstractedFS
self.dummy_recvfile.close()
self.dummy_sendfile.close()
super().tearDown()
def connect_client(self):
self.client = self.client_class(timeout=GLOBAL_TIMEOUT)
self.client.connect(self.server.host, self.server.port)
self.client.login(USER, PASSWD)
@retry_on_failure
def test_stou_max_tries(self):
# Emulates case where the max number of tries to find out a
# unique file name when processing STOU command gets hit.
class TestFS(AbstractedFS):
def mkstemp(self, *args, **kwargs):
raise OSError(
errno.EEXIST, "No usable temporary file name found"
)
self.server = self.server_class()
self.server.handler.abstracted_fs = TestFS
self.server.start()
self.connect_client()
with pytest.raises(ftplib.error_temp, match="No usable unique file"):
self.client.sendcmd('stou')
@retry_on_failure
def test_idle_timeout(self):
# Test control channel timeout. The client which does not send
# any command within the time specified in FTPHandler.timeout is
# supposed to be kicked off.
self.server = self.server_class()
self.server.handler.timeout = 0.1
self.server.start()
self.connect_client()
self.client.quit()
self.client.connect()
self.client.login(USER, PASSWD)
# fail if no msg is received within 1 second
self.client.sock.settimeout(1)
data = self.client.sock.recv(BUFSIZE)
assert data == b"421 Control connection timed out.\r\n"
# ensure client has been kicked off
with pytest.raises((OSError, EOFError)):
self.client.sendcmd('noop')
@retry_on_failure
def test_permit_foreign_address_false(self):
self.server = self.server_class()
self.server.handler.permit_foreign_addresses = False
self.server.start()
self.connect_client()
handler = get_server_handler()
handler.remote_ip = '9.9.9.9'
# sync
self.client.sendcmd("noop")
port = self.client.sock.getsockname()[1]
host = self.client.sock.getsockname()[0]
with pytest.raises(ftplib.error_perm, match="foreign address"):
self.client.sendport(host, port)
@retry_on_failure
def test_permit_foreign_address_true(self):
self.server = self.server_class()
self.server.handler.permit_foreign_addresses = True
self.server.start()
self.connect_client()
handler = get_server_handler()
handler.remote_ip = '9.9.9.9'
self.client.sendcmd("noop")
s = self.client.makeport()
s.close()
@disable_log_warning
@retry_on_failure
def test_permit_privileged_ports(self):
# Test FTPHandler.permit_privileged_ports_active attribute
# try to bind a socket on a privileged port
sock = None
for port in reversed(range(1, 1024)):
try:
socket.getservbyport(port)
except OSError:
# not registered port; go on
try:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.addCleanup(sock.close)
sock.settimeout(GLOBAL_TIMEOUT)
sock.bind((HOST, port))
break
except OSError as err:
if err.errno == errno.EACCES:
# root privileges needed
if sock is not None:
sock.close()
sock = None
break
sock.close()
continue
else:
# registered port found; skip to the next one
continue
else:
# no usable privileged port was found
sock = None
# permit_privileged_ports = False
self.server = self.server_class()
self.server.handler.permit_privileged_ports = False
self.server.start()
self.connect_client()
with pytest.raises(ftplib.error_perm, match="privileged port"):
self.client.sendport(HOST, 1023)
# permit_privileged_ports = True
if sock:
self.tearDown()
self.server = self.server_class()
self.server.handler.permit_privileged_ports = True
self.server.start()
self.connect_client()
port = sock.getsockname()[1]
sock.listen(5)
sock.settimeout(GLOBAL_TIMEOUT)
self.client.sendport(HOST, port)
s, _ = sock.accept()
s.close()
sock.close()
@pytest.mark.skipif(not POSIX, reason="POSIX only")
@pytest.mark.skipif(
not hasattr(os, "sendfile"), reason="os.sendfile() not available"
)
@retry_on_failure
def test_sendfile_fails(self):
# Makes sure that if sendfile() fails and no bytes were
# transmitted yet the server falls back on using plain
# send()
self.server = self.server_class()
self.server.start()
self.connect_client()
data = b'abcde12345' * 100000
self.dummy_sendfile.write(data)
self.dummy_sendfile.seek(0)
self.client.storbinary('stor ' + self.tempfile, self.dummy_sendfile)
with patch(
'pyftpdlib.handlers.os.sendfile', side_effect=OSError(errno.EINVAL)
) as fun:
self.client.retrbinary(
'retr ' + self.tempfile, self.dummy_recvfile.write
)
assert fun.called
self.dummy_recvfile.seek(0)
datafile = self.dummy_recvfile.read()
assert len(data) == len(datafile)
assert hash(data) == hash(datafile)
|