1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090
|
/*
* Copyright (C) 2012-2014 Skylable Ltd. <info-copyright@skylable.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Special exception for linking this software with OpenSSL:
*
* In addition, as a special exception, Skylable Ltd. gives permission to
* link the code of this program with the OpenSSL library and distribute
* linked combinations including the two. You must obey the GNU General
* Public License in all respects for all of the code used other than
* OpenSSL. You may extend this exception to your version of the program,
* but you are not obligated to do so. If you do not wish to do so, delete
* this exception statement from your version.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <utime.h>
#include <errno.h>
#include <inttypes.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "sx.h"
#include "libsxclient/src/clustcfg.h"
#include "libsxclient/src/volops.h"
#include "libsxclient/src/misc.h"
#include "libsxclient/src/vcrypto.h"
#include "server/src/common/sxlimits.h"
#include "version.h"
#include "rgen.h"
#include "client-test-cmdline.h"
#define VOLSIZE (replica*1024LL*1024LL*1024LL)
#define VOLNAME "vol" /* There will be 6 random characters suffix added. There CANNOT be '..' inside! */
#define LOCAL_DIR "/tmp/.test" /* There will be 6 random characters suffix added. */
#define REMOTE_DIR ".test"
#define EMPTY_FILE_NAME "file_empty"
#define UD_FILE_NAME "file_ud"
#define REV_FILE_NAME "file_rev" /* There will be added numbers as suffixes for revision versions */
#define ATTRIBS_COUNT 10 /* Up to 100 (there is malloc'ed space for 2 digits in file path) */
#define ATTRIBS_FILE_NAME "file_attrib"
#define TRASH_NAME "/.Trash"
#define UNDELETE_FILE_NAME "file_undelete"
#define QUOTA_FILE_NAME "file_quota"
#define QUOTA_VOL_SIZE 1
#define QUOTA_FILE_SIZE 5 /* Must be more then QUOTA_VOL_SIZE */
#define COPY_FILE_NAME "file_copy"
#define ACL_USER1 "user1" /* There will be 6 random characters suffix added. */
#define ACL_USER2 "user2" /* There will be 6 random characters suffix added. */
#define ACL_USER3 "user3" /* There will be 6 random characters suffix added. */
#define ACL_VOLNAME1 "vol1" /* There will be 6 random characters suffix added. */
#define ACL_VOLNAME2 "vol2" /* There will be 6 random characters suffix added. */
#define ACL_FILE_NAME "file_acl"
#define ACL_KEY_FILE_NAME "file_acl_key"
#define CAT_FILE_NAME_IN "file_cat_in"
#define CAT_FILE_NAME_OUT "file_cat_out"
#define CAT_FILE_SIZE 1
#define ERRORS_FILE_NAME "file_err"
#define PRINT(...) print_msg(__func__, "", __VA_ARGS__)
#define WARNING(...) print_msg(__func__, "WARNING", __VA_ARGS__)
#define ERROR(...) print_msg(__func__, "ERROR", __VA_ARGS__)
static void print_msg (const char *fn, const char *level, const char *format_string, ...) {
va_list vl;
fprintf(stderr, "[%s] %s: ", strcmp(fn, "main") ? fn : "client-test", level);
va_start(vl, format_string);
vfprintf(stderr, format_string, vl);
va_end(vl);
fprintf(stderr, "\n");
} /* print_msg */
typedef struct {
const int for_volume, no_filter, dedicated, additional;
const uint64_t block_size, block_count;
const char *name, *filter1_name, *filter1_cfg, *filter2_name, *filter2_cfg;
int (*fun)(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, const uint64_t block_size, const uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size);
} client_test_t;
static int run_test(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size, const client_test_t *test) {
if(!test->fun)
return -1;
return test->fun(sx, cluster, local_dir_path, remote_dir_path, profile_name, cluster_name, filter_dir, test->filter1_name, test->filter1_cfg, test->filter2_name, test->filter2_cfg, test->block_size, test->block_count, args, max_revisions, check_data_size);
}
int64_t bytes; /* FIXME: small change in libsxclient to avoid this to be global */
client_test_t tests[];
static float to_human (long long int n) {
float h = (float)n;
while(h >= 1024)
h /= 1024;
return h;
}
static char to_human_suffix (long long int n) {
unsigned int count = 0;
char suf[] = {'B', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'};
while(n > 1023) {
n /= 1024;
count++;
}
return count < sizeof(suf) ? suf[count] : suf[sizeof(suf)-1];
}
static void failed_test_msg(const struct gengetopt_args_info *args, const client_test_t *test) {
unsigned int i;
fprintf(stderr, "\nFailed to run '%s' test.", test->name);
if(!args->run_test_given) {
fprintf(stderr, " Use:\nclient-test");
for(i=0; i<args->inputs_num; i++)
fprintf(stderr, " %s", args->inputs[i]);
if(args->owner_given)
fprintf(stderr, " --owner=%s", args->owner_arg);
if(args->replica_given)
fprintf(stderr, " --replica=%d", args->replica_arg);
if(args->all_given && args->all_flag)
fprintf(stderr, " --all");
if(args->human_given && args->human_flag)
fprintf(stderr, " --human");
if(args->config_dir_given)
fprintf(stderr, " --config-dir=%s", args->config_dir_arg);
if(args->filter_dir_given)
fprintf(stderr, " --filter-dir=%s", args->filter_dir_arg);
if(args->debug_given && args->debug_flag)
fprintf(stderr, " --debug");
fprintf(stderr, " --run-test=%s\n", test->name);
fprintf(stderr, "To run only this test again.");
}
fprintf(stderr, "\n");
}
static int test_input_fn(sxc_client_t *sx, sxc_input_t type, const char *prompt, const char *def, char *in, unsigned int insize, void *ctx) {
if(!sx || !prompt || !in || !insize) {
if(sx)
ERROR("NULL argument");
return -1;
}
switch(type) {
case SXC_INPUT_YN:
*in = 'y';
break;
case SXC_INPUT_SENSITIVE:
snprintf(in, insize, "yacWetheas9");
break;
default:
return -1;
}
return 0;
}
static int test_callback(const sxc_xfer_stat_t *xfer_stat) {
if(!xfer_stat) {
ERROR("NULL argument");
return SXE_NOERROR;
}
if(xfer_stat->status == SXC_XFER_STATUS_PART_FINISHED || xfer_stat->status == SXC_XFER_STATUS_WAITING)
*((int64_t*)xfer_stat->ctx) = xfer_stat->current_xfer.sent;
return SXE_NOERROR;
}
static int randomize_name(char *name) {
int fd;
mode_t mask = umask(0);
umask(077); /* shut up warnings */
fd = mkstemp(name);
umask(mask);
if(fd < 0) {
ERROR("Cannot generate temporary name: %s", strerror(errno));
return 1;
}
if(close(fd)) {
ERROR("Cannot close '%s' file descriptor: %s", name, strerror(errno));
if(unlink(name))
ERROR("Cannot delete '%s' file: %s", name, strerror(errno));
return 1;
}
if(unlink(name)) {
ERROR("Cannot delete '%s' file: %s", name, strerror(errno));
return 1;
}
return 0;
}
static int create_volume(sxc_client_t *sx, sxc_cluster_t *cluster, const char *volname, const char *owner, const char *filter_dir, const char *filter_name, const char *filter_cfg, int replica, const unsigned int max_revisions, int human_readable, const int hide_errors) {
void *cfgdata = NULL;
int i, fcount, filter_idx = -1, ret = 1;
uint8_t uuid[16];
char *voldir = NULL, uuidcfg[41];
unsigned int cfgdata_len = 0;
const char *confdir;
const sxc_filter_t *filter = NULL;
const sxf_handle_t *filters = NULL;
sxc_meta_t *meta = NULL, *custom_meta = NULL;
if(filter_name) {
if(sxc_filter_loadall(sx, filter_dir)) {
fprintf(stderr, "create_volume: ERROR: Cannot load filters.\n");
goto create_volume_err;
}
confdir = sxi_cluster_get_confdir(cluster);
voldir = (char*)malloc(strlen(confdir) + strlen("/volumes/") + strlen(volname) + 1);
if(!voldir) {
ERROR("Cannot allocate memory for volume configuration directory");
goto create_volume_err;
}
sprintf(voldir, "%s/volumes/%s", confdir, volname);
/* Wipe existing local config */
/* There is no check for '..' in the path since the path is fully based on the code, not on arguments. */
if(!access(voldir, F_OK) && sxi_rmdirs(voldir)) {
ERROR("Cannot wipe '%s' volume configuration directory: %s", voldir, strerror(errno));
goto create_volume_err;
}
filters = sxc_filter_list(sx, &fcount);
if(!filters) {
ERROR("No filters available");
goto create_volume_err;
}
meta = sxc_meta_new(sx);
custom_meta = sxc_meta_new(sx);
if(!meta || !custom_meta) {
ERROR("Cannot initiate meta");
goto create_volume_err;
}
for(i=0; i<fcount; i++) {
const sxc_filter_t *f = sxc_get_filter(&filters[i]);
if(!strcmp(f->shortname, filter_name))
if(!filter || (f->version[0] > filter->version[0]) || (f->version[0] == filter->version[0] && f->version[1] > filter->version[1])) {
filter = f;
filter_idx = i;
}
}
if(!filter) {
ERROR("Filter not found");
/* FIXME: move filter processing to main() and iterate through available filters */
ret = 2;
goto create_volume_err;
}
sxi_uuid_parse(filter->uuid, uuid);
if(sxc_meta_setval(meta, "filterActive", uuid, 16)) {
ERROR("Metadata error");
goto create_volume_err;
}
snprintf(uuidcfg, sizeof(uuidcfg), "%s-cfg", filter->uuid);
if(filter->configure) {
char *fdir;
int rc = 0;
fdir = (char*)malloc(strlen(voldir) + 1 + strlen(filter->uuid) + 1); /* The 1 inside is for '/' character. */
if(!fdir) {
ERROR("Cannot allocate memory for filter configuration dir");
goto create_volume_err;
}
if(access(voldir, F_OK))
rc = mkdir(voldir, 0700);
sprintf(fdir, "%s/%s", voldir, filter->uuid);
if(access(fdir, F_OK)) {
if(rc == -1 || mkdir(fdir, 0700) == -1) {
ERROR("Cannot create '%s' filter configuration directory: %s", fdir, strerror(errno));
free(fdir);
goto create_volume_err;
}
}
if(filter->configure(&filters[filter_idx], filter_cfg, fdir, &cfgdata, &cfgdata_len, custom_meta)) {
ERROR("Cannot configure filter");
free(fdir);
goto create_volume_err;
}
free(fdir);
if(cfgdata && sxc_meta_setval(meta, uuidcfg, cfgdata, cfgdata_len)) {
ERROR("Cannot store filter configuration");
goto create_volume_err;
}
}
}
if(sxc_volume_add(cluster, volname, VOLSIZE, replica, max_revisions, meta, owner)) {
if(!hide_errors)
ERROR("%s", sxc_geterrmsg(sx));
goto create_volume_err;
}
if(sxc_meta_count(custom_meta) && sxc_volume_modify(cluster, volname, NULL, -1, -1, custom_meta)) {
ERROR("%s", sxc_geterrmsg(sx));
goto create_volume_err;
}
if(sxi_volume_cfg_store(sx, cluster, volname, filter ? filter->uuid : NULL, cfgdata, cfgdata_len)) {
ERROR("%s", sxc_geterrmsg(sx));
goto create_volume_err;
}
if(human_readable)
PRINT("Volume '%s' (replica: %d, size: %0.f%c) created", volname, replica, to_human(VOLSIZE), to_human_suffix(VOLSIZE));
else
PRINT("Volume '%s' (replica: %d, size: %lld) created", volname, replica, (long long int)VOLSIZE);
ret = 0;
create_volume_err:
free(voldir);
free(cfgdata);
sxc_meta_free(meta);
sxc_meta_free(custom_meta);
return ret;
} /* create_volume */
static int delete_files(sxc_client_t *sx, sxc_cluster_t *cluster, const char *volname, const char *remote_path, const int hide_errors) {
int ret = 1, n;
sxc_uri_t *uri = NULL;
sxc_file_t *file = NULL;
sxc_file_list_t *lst;
sxc_cluster_lf_t *file_list = NULL; /* to be able to clean .Trash directory in undelete filter */
if(!volname) {
uri = sxc_parse_uri(sx, remote_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
}
lst = sxc_file_list_new(sx, 0);
if(!lst) {
ERROR("%s", sxc_geterrmsg(sx));
sxc_file_free(file);
goto delete_files_err;
}
if(remote_path[strlen(remote_path)-1] == '/') {
file_list = sxc_cluster_listfiles(cluster, volname ? volname : uri->volume, volname ? remote_path : uri->path, 1, NULL, 0);
if(!file_list) {
if(!hide_errors)
ERROR("Cannot get files list: %s", sxc_geterrmsg(sx));
goto delete_files_err;
}
while(1) {
const char *file_name;
file = NULL;
n = sxc_cluster_listfiles_next(cluster, volname ? volname : uri->volume, file_list, &file);
if(n <= 0) {
if(n) {
ERROR("%s", sxc_geterrmsg(sx));
goto delete_files_err;
}
break;
}
if(!file) {
ERROR("NULL file name pointer received");
goto delete_files_err;
}
file_name = sxc_file_get_path(file);
if(sxc_file_list_add(lst, file, 0)) {
ERROR("Cannot add '%s' into file list: %s", file_name, sxc_geterrmsg(sx));
sxc_file_free(file);
goto delete_files_err;
}
}
} else {
file = sxc_file_remote(cluster, volname ? volname : uri->volume, volname ? remote_path : uri->path, NULL);
if(!file) {
ERROR("Cannot open '%s' directory: %s", remote_path, sxc_geterrmsg(sx));
goto delete_files_err;
}
if(sxc_file_list_add(lst, file, 0)) {
ERROR("Cannot add '%s' into file list: %s", remote_path, sxc_geterrmsg(sx));
sxc_file_free(file);
goto delete_files_err;
}
}
if(sxc_rm(lst, 0, 0)) {
if(!hide_errors)
ERROR("Failed to remove file list: %s", sxc_geterrmsg(sx));
goto delete_files_err;
}
ret = 0;
delete_files_err:
sxc_free_uri(uri);
/* sxc_file_free(file); */ /* done in sx_file_list_free(lst); */
sxc_file_list_free(lst);
sxc_cluster_listfiles_free(file_list);
return ret;
} /* delete_files */
static int remove_volume(sxc_client_t *sx, sxc_cluster_t *cluster, const char *volname, int wipe, int hide_errors) {
int ret = 1;
char *voldir = NULL;
const char *confdir;
if(wipe && delete_files(sx, cluster, volname, "/", hide_errors) && sxc_geterrnum(sx) != SXE_ECOMM) {
ERROR("Cannot clear '%s' volume: %s", volname, sxc_geterrmsg(sx));
return ret;
}
if(sxc_volume_remove(cluster, volname)) {
if(!hide_errors)
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
PRINT("Volume '%s' removed", volname);
confdir = sxi_cluster_get_confdir(cluster);
voldir = (char*)malloc(strlen(confdir) + strlen("/volumes/") + strlen(volname) + 1);
if(!voldir) {
ERROR("Cannot allocate memory for volume configuration directory");
return ret;
}
sprintf(voldir, "%s/volumes/%s", confdir, volname);
if(!access(voldir, F_OK) && sxi_rmdirs(voldir)) {
ERROR("Cannot wipe '%s' volume configuration directory: %s", voldir, strerror(errno));
goto remove_volume_err;
}
ret = 0;
remove_volume_err:
free(voldir);
return ret;
} /* remove_volume */
static int upload_file(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_path, const char *remote_path, const int hide_errors) {
int ret = 1;
sxc_uri_t *uri;
sxc_file_t *src, *dest = NULL;
uri = sxc_parse_uri(sx, remote_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
src = sxc_file_local(sx, local_path);
if(!src) {
ERROR("Cannot open '%s' file: %s", local_path, sxc_geterrmsg(sx));
goto upload_file_err;
}
dest = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!dest) {
ERROR("Cannot open '%s' file: %s", remote_path, sxc_geterrmsg(sx));
goto upload_file_err;
}
if(sxc_copy(src, dest, local_path[strlen(local_path) - 1] == '/', 0, 0, NULL, 1)) {
if(!hide_errors)
ERROR("Cannot upload '%s' file: %s", local_path, sxc_geterrmsg(sx));
goto upload_file_err;
}
ret = 0;
upload_file_err:
sxc_free_uri(uri);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
} /* upload_file */
static int download_file(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_path, const char *remote_path, FILE **file) {
int ret = 1, directory = remote_path[strlen(remote_path)-1] == '/';
sxc_uri_t *uri;
sxc_file_t *src, *dest = NULL;
uri = sxc_parse_uri(sx, remote_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
src = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!src) {
ERROR("Cannot open '%s': %s", remote_path, sxc_geterrmsg(sx));
goto download_file_err;
}
dest = sxc_file_local(sx, local_path);
if(!dest) {
ERROR("Cannot open '%s': %s", local_path, sxc_geterrmsg(sx));
goto download_file_err;
}
if(sxc_copy(src, dest, directory, 0, 0, NULL, 1)) {
ERROR("Cannot download files from '%s': %s", remote_path, sxc_geterrmsg(sx));
goto download_file_err;
}
if(!directory && file) {
*file = fopen(local_path, "r");
if(!*file) {
ERROR("Cannot open '%s' file: %s", local_path, strerror(errno));
goto download_file_err;
}
}
ret = 0;
download_file_err:
sxc_free_uri(uri);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
} /* download_file */
/* -1 - error
* 0 - file not found
* 1 - file found */
static int find_file(sxc_client_t *sx, sxc_cluster_t *cluster, const char *remote_file_path, const int hide_errors) {
int ret = -1, n;
sxc_uri_t *uri;
sxc_file_list_t *lst = NULL;
sxc_cluster_lf_t *file_list;
sxc_file_t *file = NULL;
uri = sxc_parse_uri(sx, remote_file_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
file_list = sxc_cluster_listfiles(cluster, uri->volume, uri->path, 0, NULL, 0);
if(!file_list) {
if(!hide_errors)
ERROR("Cannot get volume files list: %s", sxc_geterrmsg(sx));
goto find_file_err;
}
n = sxc_cluster_listfiles_next(cluster, uri->volume, file_list, &file);
if(n < 0) {
ERROR("%s", sxc_geterrmsg(sx));
goto find_file_err;
}
if(n > 0 && (!file || !sxc_file_get_path(file))) {
ERROR("NULL file name pointer received");
goto find_file_err;
}
ret = n ? 1 : 0;
find_file_err:
sxc_file_free(file);
sxc_free_uri(uri);
sxc_file_list_free(lst);
sxc_cluster_listfiles_free(file_list);
return ret;
} /* find_file */
static void create_block(rnd_state_t *state, unsigned char *block, const uint64_t block_size)
{
uint64_t i;
for(i=0; i<block_size; i++)
block[i] = rand_2cmres(state);
} /* create_block */
static int create_file(const char* local_file_path, uint64_t block_size, uint64_t block_count, unsigned char sha_hash[SXI_SHA1_BIN_LEN], const int force_size, FILE **file) {
int ret = 1;
uint64_t seed, i;
unsigned char *block = NULL;
FILE *file2;
rnd_state_t state;
sxi_md_ctx *ctx = NULL;
if(!force_size)
switch(block_size) {
case SX_BS_SMALL:
if(block_count > 31)
WARNING("Wrong blocksize");
break;
case SX_BS_MEDIUM:
if(block_count < 32 || block_count > 8192)
WARNING("Wrong blocksize");
break;
case SX_BS_LARGE:
if(block_count < 129)
WARNING("Wrong blocksize");
break;
default:
ERROR("Unknown blocksize");
return ret;
}
file2 = fopen(local_file_path, "wrb");
if(!file2) {
ERROR("Cannot create '%s' file: %s", local_file_path, strerror(errno));
return ret;
}
if(block_size && block_count) {
ctx = sxi_md_init();
if(!ctx) {
ERROR("Cannot allocate memory for checksum");
goto create_file_err;
}
block = (unsigned char*)malloc(block_size);
if(!block) {
ERROR("Cannot allocate memory for block");
goto create_file_err;
}
seed = make_seed();
PRINT("Seed: %012lx", seed);
rnd_seed(&state, seed);
create_block(&state, block, block_size);
if(sha_hash && !sxi_sha1_init(ctx)) {
ERROR("Checksum init failure");
goto create_file_err;
}
for(i=0; i<block_count; i++) {
if(fwrite(block, sizeof(unsigned char), block_size, file2) != block_size) {
ERROR("Error while writing to '%s' file (%llu)", local_file_path, (unsigned long long)i);
goto create_file_err;
}
if(sha_hash && !sxi_sha1_update(ctx, block, block_size)) {
ERROR("Checksum update failure (%llu)", (unsigned long long)i);
goto create_file_err;
}
}
if(sha_hash && !sxi_sha1_final(ctx, sha_hash, NULL)) {
ERROR("Checksum final calculation failure");
goto create_file_err;
}
}
if(file) {
rewind(file2);
if(ftell(file2) == -1) {
ERROR("Cannot rewind '%s' file: %s", local_file_path, strerror(errno));
goto create_file_err;
}
*file = file2;
file2 = NULL;
}
ret = 0;
create_file_err:
free(block);
sxi_md_cleanup(&ctx);
if(file2) {
if(fclose(file2) == EOF)
WARNING("Cannot close '%s' file: %s", local_file_path, strerror(errno));
if(ret && unlink(local_file_path))
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
}
return ret;
} /* create_file */
static int test_empty_file(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1;
char *local_file_path, *remote_file_path = NULL;
sxc_uri_t *uri;
PRINT("Started");
uri = sxc_parse_uri(sx, remote_dir_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(EMPTY_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_empty_file_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, EMPTY_FILE_NAME);
remote_file_path = (char*)malloc(strlen(remote_dir_path) + strlen(EMPTY_FILE_NAME) + 1);
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_empty_file_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, EMPTY_FILE_NAME);
if(create_file(local_file_path, 0, 0, NULL, 1, NULL))
goto test_empty_file_err;
if(upload_file(sx, cluster, local_file_path, remote_dir_path, 0)) {
ERROR("Cannot upload '%s' file", local_file_path);
goto test_empty_file_err;
}
ret = 0;
PRINT("Succeeded");
test_empty_file_err:
if(local_file_path && unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(remote_file_path);
free(local_file_path);
sxc_free_uri(uri);
return ret;
} /* test_empty_file */
static int test_transfer(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1;
char *local_file_path = NULL, *remote_file_path = NULL;
unsigned char *block = NULL, hash1[SXI_SHA1_BIN_LEN], hash2[SXI_SHA1_BIN_LEN];
FILE *file = NULL;
sxi_md_ctx *ctx = sxi_md_init();
size_t tmp;
PRINT("Started");
if(!ctx) {
ERROR("Cannot allocate memory for checksum");
return ret;
}
if(sxc_cluster_set_progress_cb(sx, cluster, test_callback, (void*)&bytes)) {
ERROR("Cannot set callback");
goto test_transfer_err;
}
block = (unsigned char*)malloc(block_size);
if(!block) {
ERROR("Cannot allocate memory for block");
goto test_transfer_err;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(UD_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_transfer_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, UD_FILE_NAME);
remote_file_path = (char*)malloc(strlen(remote_dir_path) + strlen(UD_FILE_NAME) + 1);
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_transfer_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, UD_FILE_NAME);
if(args->human_flag)
PRINT("Creating file of size: %.2f%c (%llu*%.0f%c)", to_human(block_size*block_count), to_human_suffix(block_size*block_count), (unsigned long long)block_count, to_human(block_size), to_human_suffix(block_size));
else
PRINT("Creating file of size: %llu (%llu*%llu)", (unsigned long long)block_size*block_count, (unsigned long long)block_count, (unsigned long long)block_size);
if(create_file(local_file_path, block_size, block_count, hash1, 0, NULL))
goto test_transfer_err;
PRINT("Uploading");
if(upload_file(sx, cluster, local_file_path, remote_dir_path, 0)) {
ERROR("Cannot upload '%s' file", local_file_path);
if(unlink(local_file_path))
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_transfer_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_transfer_err;
}
if(check_data_size && (int64_t)block_size != bytes) {
ERROR("Wrong amount of data has been uploaded");
goto test_transfer_err;
}
PRINT("Downloading");
if(download_file(sx, cluster, local_file_path, remote_file_path, &file)) {
ERROR("Cannot download '%s' file", remote_file_path);
goto test_transfer_err;
}
if(!sxi_sha1_init(ctx)) {
ERROR("Checksum init failure");
goto test_transfer_err;
}
while((tmp = fread(block, sizeof(unsigned char), block_size, file))) {
if(!sxi_sha1_update(ctx, block, tmp)) {
ERROR("Checksum update failure");
goto test_transfer_err;
}
if(tmp < block_size) {
ERROR("Only a part of file has been downloaded");
goto test_transfer_err;
}
}
if(!sxi_sha1_final(ctx, hash2, NULL)) {
ERROR("Checksum final calculation failure");
goto test_transfer_err;
}
if(memcmp(hash1, hash2, SXI_SHA1_BIN_LEN)) {
ERROR("Uploaded and downloaded file differs");
goto test_transfer_err;
}
ret = 0;
PRINT("Succeeded");
test_transfer_err:
free(block);
sxi_md_cleanup(&ctx);
if(file && fclose(file) == EOF)
WARNING("Cannot close '%s' file: %s", local_file_path, strerror(errno));
if(local_file_path && unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(local_file_path);
free(remote_file_path);
return ret;
} /* test_transfer */
static int test_revision(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1;
char *local_file_path = NULL, *remote_file_path = NULL;
unsigned char *block, hash[SXI_SHA1_BIN_LEN], **hashes = NULL;
FILE *file = NULL;
sxi_md_ctx *ctx = sxi_md_init();
sxc_uri_t *uri = NULL;
sxc_file_t *src = NULL, *dest = NULL;
sxc_revlist_t *revs = NULL;
unsigned int i;
size_t tmp;
PRINT("Started (revision: %d)", max_revisions);
if(!ctx) {
ERROR("Cannot allocate memory for checksum");
return ret;
}
block = (unsigned char*)malloc(block_size);
if(!block) {
ERROR("Cannot allocate memory for block");
goto test_revision_err;
}
hashes = (unsigned char**)calloc(max_revisions, sizeof(unsigned char*));
if(!hashes) {
ERROR("Cannot allocate memory for hashes");
goto test_revision_err;
}
for(i=0; i<max_revisions; i++) {
hashes[i] = (unsigned char*)malloc(SXI_SHA1_BIN_LEN);
if(!hashes[i]) {
ERROR("Cannot allocate memory for hashes[%d])", i);
goto test_revision_err;
}
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(REV_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_revision_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, REV_FILE_NAME);
remote_file_path = (char*)malloc(strlen(remote_dir_path) + strlen(REV_FILE_NAME) + 1);
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_revision_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, REV_FILE_NAME);
uri = sxc_parse_uri(sx, remote_file_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_revision_err;
}
if(args->human_flag)
PRINT("Creating and uploading files of size: %.2f%c (%llu*%.0f%c)", to_human(block_size*block_count), to_human_suffix(block_size*block_count), (unsigned long long)block_count, to_human(block_size), to_human_suffix(block_size));
else
PRINT("Creating and uploading files of size: %llu (%llu*%llu)", (unsigned long long)block_size*block_count, (unsigned long long)block_count, (unsigned long long)block_size);
src = sxc_file_local(sx, local_file_path);
if(!src) {
ERROR("Cannot open '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
dest = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!dest) {
ERROR("Cannot open '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
for(i=0; i<max_revisions; i++) {
if(create_file(local_file_path, block_size, block_count, hashes[max_revisions-1-i], !i, NULL))
goto test_revision_err;
if(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
ERROR("Cannot upload '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_revision_err;
}
file = NULL;
}
sxc_file_free(src);
src = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!src) {
ERROR("Cannot open '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
revs = sxc_revisions(src);
if(!revs) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_revision_err;
}
if(max_revisions > revs->count) {
ERROR("Not enough revisions");
goto test_revision_err;
} else if(max_revisions < revs->count) {
ERROR("Too many revisions");
goto test_revision_err;
}
PRINT("Downloading and checking file versions");
for(i=0; i<max_revisions; i++) {
sxc_file_free(src);
src = sxc_file_remote(cluster, uri->volume, uri->path, sxc_file_get_revision(revs->revisions[i]->file));
if(!src) {
ERROR("Cannot open '%s' (%s) file: %s", remote_file_path, sxc_file_get_revision(revs->revisions[i]->file), sxc_geterrmsg(sx));
goto test_revision_err;
}
sxc_file_free(dest);
dest = sxc_file_local(sx, local_file_path);
if(!dest) {
ERROR("Cannot open '%s': %s", local_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
if(sxc_copy_sxfile(src, dest, 1)) {
ERROR("Cannot download '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
file = fopen(local_file_path, "rb");
if(!file) {
ERROR("Cannot open '%s' file: %s", remote_file_path, strerror(errno));
goto test_revision_err;
}
if(!sxi_sha1_init(ctx)) {
ERROR("Checksum init failure while downloading file (%d)", i);
goto test_revision_err;
}
while((tmp = fread(block, sizeof(unsigned char), block_size, file))) {
if(!sxi_sha1_update(ctx, block, tmp)) {
ERROR("Checksum update failure while downloading file (%d)", i);
goto test_revision_err;
}
if(tmp < block_size) {
ERROR("Downloaded only a part of file");
goto test_revision_err;
}
}
if(fclose(file) == EOF) {
ERROR("Cannot close '%s' file: %s", local_file_path, strerror(errno));
if(unlink(local_file_path))
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
file = NULL;
goto test_revision_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
file = NULL;
goto test_revision_err;
}
file = NULL;
if(!sxi_sha1_final(ctx, hash, NULL)) {
ERROR("Checksum final calculation failure while downloading file (%d)", i);
goto test_revision_err;
}
if(memcmp(hash, hashes[i], SXI_SHA1_BIN_LEN)) {
ERROR("Uploaded and downloaded file differs (%d)", i);
goto test_revision_err;
}
}
sxc_file_free(src);
src = sxc_file_remote(cluster, uri->volume, uri->path, sxc_file_get_revision(revs->revisions[max_revisions/2]->file));
if(!src) {
ERROR("Cannot open '%s' (%s) file: %s", remote_file_path, sxc_file_get_revision(revs->revisions[i]->file), sxc_geterrmsg(sx));
goto test_revision_err;
}
if(sxc_remove_sxfile(src)) {
ERROR("Cannot remove '%s' (%s) file: %s", remote_file_path, sxc_file_get_revision(revs->revisions[max_revisions/2]->file), sxc_geterrmsg(sx));
goto test_revision_err;
}
if(sxc_copy_sxfile(src, dest, 1)) {
if(sxc_geterrnum(sx) == SXE_ECOMM)
PRINT("File revision removed correctly");
else {
ERROR("Cannot download '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_revision_err;
}
} else {
ERROR("Nonexistent file revision has been downloaded");
goto test_revision_err;
}
if(delete_files(sx, cluster, uri->volume, uri->path, 0)) {
ERROR("Cannot delete '%s' file", remote_file_path);
goto test_revision_err;
}
switch(find_file(sx, cluster, remote_file_path, 0)) {
case -1:
ERROR("Looking for '%s' file in '%s' failed", REV_FILE_NAME, remote_file_path);
goto test_revision_err;
case 0: break;
case 1:
ERROR("'%s' file has not been deleted correctly", REV_FILE_NAME);
goto test_revision_err;
}
ret = 0;
PRINT("Succeeded");
test_revision_err:
if(file) {
if(fclose(file) == EOF)
WARNING("Cannot close '%s' file: %s", local_file_path, strerror(errno));
if(unlink(local_file_path))
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
}
free(local_file_path);
free(remote_file_path);
if(hashes)
for(i=0; i<max_revisions; i++)
free(hashes[i]);
free(hashes);
free(block);
sxi_md_cleanup(&ctx);
sxc_free_uri(uri);
sxc_file_free(src);
sxc_file_free(dest);
sxc_revisions_free(revs);
return ret;
} /* test_revision */
static int test_cat(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int fd = 0, ret = 1, tmp;
char *local_file_path = NULL, *cat_file_path = NULL, *remote_file_path = NULL;
unsigned char *block = NULL, hash_in[SXI_SHA1_BIN_LEN], hash_out[SXI_SHA1_BIN_LEN];
FILE *file = NULL;
sxc_uri_t *uri = NULL;
sxc_file_t *src = NULL;
sxi_md_ctx *ctx = sxi_md_init();
PRINT("Started");
if(!ctx) {
ERROR("Cannot allocate memory for checksum");
return ret;
}
block = (unsigned char*)malloc(SX_BS_LARGE);
if(!block) {
ERROR("Cannot allocate memory for block");
goto test_cat_err;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(CAT_FILE_NAME_IN) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_cat_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, CAT_FILE_NAME_IN);
cat_file_path = (char*)malloc(strlen(local_dir_path) + strlen(CAT_FILE_NAME_OUT) + 1);
if(!cat_file_path) {
ERROR("Cannot allocate memory for cat_file_path");
goto test_cat_err;
}
sprintf(cat_file_path, "%s%s", local_dir_path, CAT_FILE_NAME_OUT);
remote_file_path = (char*)malloc(strlen(remote_dir_path) + strlen(CAT_FILE_NAME_IN) + 1);
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_cat_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, CAT_FILE_NAME_IN);
if(create_file(local_file_path, SX_BS_LARGE, CAT_FILE_SIZE, hash_in, 1, NULL))
goto test_cat_err;
if(upload_file(sx, cluster, local_file_path, remote_file_path, 0)) {
ERROR("Cannot upload '%s' file", local_file_path);
if(unlink(local_file_path))
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_cat_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_cat_err;
}
uri = sxc_parse_uri(sx, remote_file_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_cat_err;
}
src = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!src) {
ERROR("Cannot open '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_cat_err;
}
fd = open(cat_file_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
if(fd < 0) {
ERROR("Cannot create new file: %s", strerror(errno));
goto test_cat_err;
}
PRINT("Processing the file");
if(sxc_cat(src, fd)) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_cat_err;
}
file = fopen(cat_file_path, "rb");
if(!file) {
ERROR("Cannot open '%s' file: %s", cat_file_path, strerror(errno));
goto test_cat_err;
}
if(!sxi_sha1_init(ctx)) {
ERROR("Checksum init failure");
if(fclose(file))
ERROR("Cannot close '%s' file: %s", cat_file_path, strerror(errno));
goto test_cat_err;
}
while((tmp = fread(block, sizeof(unsigned char), SX_BS_LARGE, file))) {
if(!sxi_sha1_update(ctx, block, tmp)) {
ERROR("Checksum update failure");
if(fclose(file))
ERROR("Cannot close '%s' file: %s", cat_file_path, strerror(errno));
goto test_cat_err;
}
if(tmp < SX_BS_LARGE) {
if(fclose(file))
ERROR("Cannot close '%s' file: %s", cat_file_path, strerror(errno));
fclose(file);
goto test_cat_err;
}
}
if(fclose(file))
ERROR("Cannot close '%s' file: %s", cat_file_path, strerror(errno));
if(!sxi_sha1_final(ctx, hash_out, NULL)) {
ERROR("Checksum final calculation failure");
goto test_cat_err;
}
if(memcmp(hash_in, hash_out, SXI_SHA1_BIN_LEN)) {
ERROR("File from cat differs");
goto test_cat_err;
}
PRINT("Succeeded");
ret = 0;
test_cat_err:
if(fd >= 0 && close(fd))
WARNING("Cannot close '%s' file: %s", cat_file_path, strerror(errno));
if(cat_file_path && unlink(cat_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", cat_file_path, strerror(errno));
free(block);
free(local_file_path);
free(cat_file_path);
free(remote_file_path);
sxi_md_cleanup(&ctx);
sxc_free_uri(uri);
sxc_file_free(src);
return ret;
} /* test_cat */
static int test_errors(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1;
char *local_file_path, *remote_file_path = NULL, *wrong_name = NULL, revision[]="2014-13-32 25:61:69.460:ac6ed3c7a371107a763da500c165c37c"; /* Revision is made of impossible date + md5sum of /dev/urandom */
sxc_uri_t *uri = NULL;
sxc_file_t *src = NULL, *dest = NULL;
sxc_cluster_t *cl_tmp;
PRINT("Started");
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(ERRORS_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
return ret;
}
sprintf(local_file_path, "%s%s", local_dir_path, ERRORS_FILE_NAME);
remote_file_path = (char*)malloc(strlen(remote_dir_path) + 1 + strlen(ERRORS_FILE_NAME) + 6 + 1); /* The 1's inside are for '@' and '/' characters + "XXXXXX" part */
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_errors_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, ERRORS_FILE_NAME);
if(create_file(local_file_path, 0, 0, NULL, 1, NULL))
goto test_errors_err;
if(upload_file(sx, cluster, local_file_path, remote_file_path, 0)) {
ERROR("Cannot upload '%s' file", local_file_path);
goto test_errors_err;
}
uri = sxc_parse_uri(sx, remote_file_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_errors_err;
}
src = sxc_file_remote(cluster, uri->volume, uri->path, revision);
if(!src) {
ERROR("Cannot open '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_errors_err;
}
dest = sxc_file_local(sx, local_file_path);
if(!dest) {
ERROR("Cannot open '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_errors_err;
}
if(sxc_copy_sxfile(src, dest, 1)) {
if(sxc_geterrnum(sx) == SXE_ECOMM)
PRINT("'Failed to download file content hashes' enforced correctly");
else {
ERROR("Cannot download '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_errors_err;
}
} else {
ERROR("Nonexistent file revision has been downloaded");
goto test_errors_err;
}
if(delete_files(sx, cluster, uri->volume, uri->path, 0)) {
ERROR("Cannot delete '%s' file", remote_file_path);
goto test_errors_err;
}
sxc_file_free(src);
src = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!src) {
ERROR("Cannot open '%s' file: %s", remote_file_path, sxc_geterrmsg(sx));
goto test_errors_err;
}
if(sxc_cat(src, STDOUT_FILENO)) {
if(sxc_geterrnum(sx) == SXE_ECOMM)
PRINT("'Failed to locate volume' enforced correctly");
else {
ERROR("%s", sxc_geterrmsg(sx));
goto test_errors_err;
}
} else {
ERROR("File from nonexistent volume has been shown");
goto test_errors_err;
}
wrong_name = (char*)malloc(strlen(uri->host) + strlen(uri->volume) + strlen("XXXXXX") + 1);
if(!wrong_name) {
ERROR("Cannot allocate memory for wrong_name");
goto test_errors_err;
}
sprintf(wrong_name, "%sXXXXXXX", uri->host);
if(randomize_name(wrong_name))
goto test_errors_err;
cl_tmp = sxc_cluster_load_and_update(sx, wrong_name, NULL);
if(!cl_tmp) {
if(sxc_geterrnum(sx) == SXE_ECFG)
PRINT("'Cannot stat configuration directory' enforced correctly");
else {
ERROR("Cannot load '%s' cluster: %s", wrong_name, sxc_geterrmsg(sx));
goto test_errors_err;
}
} else {
ERROR("Loaded nonexistent cluster");
sxc_cluster_free(cl_tmp);
goto test_errors_err;
}
sprintf(wrong_name, "%sXXXXXXX", uri->volume);
if(randomize_name(wrong_name))
goto test_errors_err;
sprintf(remote_file_path, "sx://%s%s%s/%s/", uri->profile ? uri->profile : "", uri->profile ? "@" : "", uri->host, wrong_name);
if(upload_file(sx, cluster, local_file_path, remote_file_path, 1)) {
if(sxc_geterrnum(sx) == SXE_ECOMM)
PRINT("'No such volume' enforced correctly");
else {
ERROR("Cannot upload '%s' file", local_file_path);
goto test_errors_err;
}
} else {
ERROR("File has been copied to nonexistent volume");
goto test_errors_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_errors_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, ERRORS_FILE_NAME);
if(upload_file(sx, cluster, local_file_path, remote_dir_path, 1)) {
if(sxc_geterrnum(sx) == SXE_EREAD)
PRINT("'No such file or directory' enforced correctly");
else {
ERROR("Cannot upload '%s' file", local_file_path);
goto test_errors_err;
}
} else {
ERROR("Copied nonexistent file");
goto test_errors_err;
}
if(sxc_volume_remove(cluster, wrong_name)) {
if(sxc_geterrnum(sx) == SXE_ECOMM)
PRINT("'Failed to locate volume' enforced correctly");
else {
ERROR("%s", sxc_geterrmsg(sx));
goto test_errors_err;
}
} else {
ERROR("Nonexistent volume has been removed");
goto test_errors_err;
}
PRINT("Succeeded");
ret = 0;
test_errors_err:
if(unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(wrong_name);
free(local_file_path);
free(remote_file_path);
sxc_free_uri(uri);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
} /* test_errors */
static int test_attribs(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int i, ret = 1, owner, group, other;
long int tmp_time;
char *local_files_paths[ATTRIBS_COUNT], *remote_files_paths[ATTRIBS_COUNT];
uint64_t seed;
mode_t attribs;
rnd_state_t state;
struct utimbuf time;
struct timeval tv;
struct stat st, t_st[ATTRIBS_COUNT];
PRINT("Started");
memset(local_files_paths, 0, sizeof(local_files_paths));
memset(remote_files_paths, 0, sizeof(remote_files_paths));
seed = make_seed();
PRINT("Seed: %012lx", seed);
rnd_seed(&state, seed);
for(i=0; i<ATTRIBS_COUNT; i++) {
local_files_paths[i] = (char*)malloc(strlen(local_dir_path) + strlen(ATTRIBS_FILE_NAME) + 2 + 1);
if(!local_files_paths[i]) {
ERROR("Cannot allocate memory for local_files_paths[%d]", i);
goto test_attribs_err;
}
sprintf(local_files_paths[i], "%s%s%d", local_dir_path, ATTRIBS_FILE_NAME, i);
remote_files_paths[i] = (char*)malloc(strlen(remote_dir_path) + strlen(ATTRIBS_FILE_NAME) + 2 + 1);
if(!remote_files_paths[i]) {
ERROR("Cannot allocate memory for remote_files_paths[%d]", i);
goto test_attribs_err;
}
sprintf(remote_files_paths[i], "%s%s%d", remote_dir_path, ATTRIBS_FILE_NAME, i);
if(create_file(local_files_paths[i], 0, 0, NULL, 1, NULL))
goto test_attribs_err;
owner = (rand_2cmres(&state)%8) | 4;
group = rand_2cmres(&state)%8;
other = rand_2cmres(&state)%8;
PRINT("Rights being tested: %c%c%c%c%c%c%c%c%c", owner&4 ? 'r' : '-', owner&2 ? 'w' : '-', owner&1 ? 'x' : '-', group&4 ? 'r' : '-', group&2 ? 'w' : '-', group&1 ? 'x' : '-', other&4 ? 'r' : '-', other&2 ? 'w':'-', other&1 ? 'x' : '-');
attribs = (owner<<6) | (group<<3) | other;
if(chmod(local_files_paths[i], attribs)) {
ERROR("Cannot set attributes for '%s' file: %s", local_files_paths[i], strerror(errno));
goto test_attribs_err;
}
if(gettimeofday(&tv, NULL)) {
ERROR("Cannot get current time: %s", strerror(errno));
goto test_attribs_err;
}
tmp_time = (long int)rand_2cmres(&state) % 100000000;
if((owner + group + other)&1)
tmp_time *= -1;
time.actime = 0;
time.modtime = tv.tv_sec + tmp_time;
if(utime(local_files_paths[i], &time)) {
ERROR("Cannot set modification time for '%s' file: %s", local_files_paths[i], strerror(errno));
goto test_attribs_err;
}
if(stat(local_files_paths[i], &t_st[i]) == -1) {
ERROR("stat() failed for '%s': %s", local_files_paths[i], strerror(errno));
goto test_attribs_err;
}
}
if(upload_file(sx, cluster, local_dir_path, remote_dir_path, 0)) {
ERROR("Cannot upload files from '%s'", local_dir_path);
goto test_attribs_err;
}
for(i=0; i<ATTRIBS_COUNT; i++) {
if(unlink(local_files_paths[i])) {
ERROR("Cannot delete '%s' file: %s", local_files_paths[i], strerror(errno));
goto test_attribs_err;
}
}
if(download_file(sx, cluster, local_dir_path, remote_dir_path, NULL)) {
ERROR("Cannot download files from '%s'", remote_dir_path);
goto test_attribs_err;
}
for(i=0; i<ATTRIBS_COUNT; i++) {
if(stat(local_files_paths[i], &st) == -1) {
ERROR("stat() failed for '%s': %s", local_files_paths[i], strerror(errno));
goto test_attribs_err;
}
if(st.st_mode != t_st[i].st_mode) {
ERROR("File attributes differ for '%s'", local_files_paths[i]);
goto test_attribs_err;
}
if(st.st_mtime != t_st[i].st_mtime) {
ERROR("File modification time differs for '%s'", local_files_paths[i]);
goto test_attribs_err;
}
}
PRINT("Succeeded");
ret = 0;
test_attribs_err:
for(i=0; i<ATTRIBS_COUNT; i++) {
if(local_files_paths[i]) {
unlink(local_files_paths[i]);
free(local_files_paths[i]);
}
free(remote_files_paths[i]);
}
return ret;
} /* test_attribs */
static int test_undelete(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1;
char *local_file_path, *remote_file_path = NULL;
sxc_uri_t *uri;
PRINT("Started");
uri = sxc_parse_uri(sx, remote_dir_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
return ret;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(UNDELETE_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_undelete_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, UNDELETE_FILE_NAME);
remote_file_path = (char*)malloc(strlen(remote_dir_path) + strlen(TRASH_NAME) + strlen(UNDELETE_FILE_NAME) + 1);
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_undelete_err;
}
sprintf(remote_file_path, "%s%s", remote_dir_path, UNDELETE_FILE_NAME);
if(create_file(local_file_path, 0, 0, NULL, 1, NULL))
goto test_undelete_err;
if(upload_file(sx, cluster, local_file_path, remote_file_path, 0)) {
ERROR("Cannot upload '%s' file", local_file_path);
goto test_undelete_err;
}
if(delete_files(sx, cluster, NULL, remote_file_path, 0)) {
ERROR("Cannot delete '%s' file", remote_file_path);
goto test_undelete_err;
}
sprintf(remote_file_path, "sx://%s%s%s/%s%s/%s/%s", uri->profile ? uri->profile : "", uri->profile ? "@" : "", uri->host, uri->volume, TRASH_NAME, REMOTE_DIR, UNDELETE_FILE_NAME);
switch(find_file(sx, cluster, remote_file_path, 0)) {
case -1:
ERROR("Looking for '%s' file in %s failed", remote_file_path, remote_file_path);
goto test_undelete_err;
case 0:
ERROR("'%s' file has not been deleted correctly", remote_file_path);
goto test_undelete_err;
case 1: break;
}
PRINT("Succeeded");
ret = 0;
test_undelete_err:
if(local_file_path && unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(local_file_path);
free(remote_file_path);
sxc_free_uri(uri);
return ret;
} /* test_undelete */
static int volume_test(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const sxc_uri_t *uri, const char *filter_dir, const struct gengetopt_args_info *args, const char *filter_name, const char *filter_cfg, const int max_revisions) {
int i, ret = 1, test = 0, check_data_size;
char *volname, *remote_dir_path = NULL;
volname = (char*)malloc(sizeof(VOLNAME) + 1 + (filter_name ? strlen(filter_name) : strlen("NonFilter")) + 1 + strlen("XXXXXX") + 1);
if(!volname) {
ERROR("Cannot allocate memory for volname");
return 1;
}
sprintf(volname, "%s_%s_XXXXXX", VOLNAME, filter_name ? filter_name : "NonFilter");
if(randomize_name(volname))
goto volume_test_err;
remote_dir_path = (char*)malloc(strlen("sx://") + (uri->profile ? strlen(uri->profile) + 1 : 0) + strlen(uri->host) + 1 + strlen(volname) + 1 + strlen(REMOTE_DIR) + 1 + 1); /* The 1's inside are for '@' and '/' characters. */
if(!remote_dir_path) {
ERROR("Cannot allocate memory for remote_dir_path");
goto volume_test_err;
}
sprintf(remote_dir_path, "sx://%s%s%s/%s/%s/", uri->profile ? uri->profile : "", uri->profile ? "@" : "", uri->host, volname, REMOTE_DIR);
for(i=0; tests[i].name; i++) {
if(tests[i].for_volume && (args->run_test_given ? !strcmp(args->run_test_arg, tests[i].name) : (tests[i].additional ? args->all_flag : 1))) {
if(tests[i].dedicated) {
if(filter_name && !strcmp(filter_name, tests[i].name))
test = 1;
} else {
if(!tests[i].no_filter || !filter_name)
test = 1;
}
}
}
if(!test) {
ret = 0;
goto volume_test_err;
}
if(filter_name && (!strcmp(filter_name, "zcomp") || !strcmp(filter_name, "aes256")))
check_data_size = 0;
else
check_data_size = 1;
PRINT("Filter: %s; filter configuration: %s", filter_name ? filter_name : "<no filter>", filter_cfg ? filter_cfg : "<none>");
/* FIXME: handle this stuff properly */
int retFIXME = create_volume(sx, cluster, volname, args->owner_arg, filter_dir, filter_name, filter_cfg, args->replica_arg, max_revisions, args->human_flag, 0);
if(retFIXME == 2) {
ret = 0;
goto volume_test_err;
}
if(retFIXME == 1) {
ERROR("Cannot create new volume");
goto volume_test_err;
}
for(i=0; tests[i].name; i++) {
if(tests[i].for_volume && (args->run_test_given ? !strcmp(args->run_test_arg, tests[i].name) : (tests[i].additional ? args->all_flag : 1))) {
if(tests[i].dedicated) {
if(filter_name && !strcmp(filter_name, tests[i].name) && run_test(sx, cluster, local_dir_path, remote_dir_path, uri->profile, uri->host, filter_dir, args, max_revisions, check_data_size, &tests[i])) {
failed_test_msg(args, &tests[i]);
goto volume_test_err;
}
} else if((!tests[i].no_filter || !filter_name) && run_test(sx, cluster, local_dir_path, remote_dir_path, uri->profile, uri->host, filter_dir, args, max_revisions, check_data_size, &tests[i])) {
failed_test_msg(args, &tests[i]);
goto volume_test_err;
}
}
}
if(delete_files(sx, cluster, NULL, remote_dir_path, 0)) {
ERROR("Cannot delete files from '%s'", remote_dir_path);
goto volume_test_err;
}
if(filter_name && !strcmp(filter_name, "undelete")) {
char *trash_path;
trash_path = (char*)malloc(strlen(remote_dir_path) + strlen(filter_cfg) + 1 + 1);
if(!trash_path) {
ERROR("Cannot allocate memory for trash_path");
goto volume_test_err;
}
sprintf(trash_path, "sx://%s%s%s/%s%s/%s/", uri->profile ? uri->profile : "", uri->profile ? "@" : "", uri->host, volname, filter_cfg, REMOTE_DIR);
if(delete_files(sx, cluster, NULL, trash_path, 0)) {
ERROR("Cannot delete files from '%s'", trash_path);
free(trash_path);
goto volume_test_err;
}
free(trash_path);
}
if(remove_volume(sx, cluster, volname, 0, 0)) {
ERROR("Cannot remove '%s' volume", volname);
goto volume_test_err;
}
ret = 0;
volume_test_err:
free(volname);
free(remote_dir_path);
return ret;
} /* volume_test */
struct user_data {
char username[SXLIMIT_MAX_USERNAME_LEN+1];
int admin;
char *key;
};
static void user_data_free(struct user_data *udata) {
if(!udata)
return;
free(udata->key);
udata->key = NULL;
*udata->username = '\0';
}
/* Prepare users for testing */
static int prepare_users(sxc_client_t *sx, sxc_cluster_t *cluster, struct user_data *udata, unsigned int count) {
int ret = -1;
unsigned int i;
if(!sx || !cluster || !udata || !count) {
ERROR("NULL argument");
return ret;
}
for(i = 0; i < count; i++) {
/* Create first user */
sprintf(udata[i].username, "user_XXXXXX");
if(randomize_name(udata[i].username))
goto prepare_users_err;
udata[i].key = sxc_user_add(cluster, udata[i].username, NULL, udata[i].admin, NULL, NULL, 1, 0);
if(!udata[i].key) {
ERROR("Cannot create '%s' user: %s", udata[i].username, sxc_geterrmsg(sx));
goto prepare_users_err;
}
if(sxc_cluster_add_access(cluster, udata[i].username, udata[i].key)) {
ERROR("Failed to add '%s' profile authentication: %s", udata[i].username, sxc_geterrmsg(sx));
goto prepare_users_err;
}
}
ret = 0;
prepare_users_err:
if(ret) {
for(; i < count; i++)
user_data_free(&udata[i]);
}
return ret;
}
/* Cleanup users created using prepare_users() */
static void cleanup_users(sxc_client_t *sx, sxc_cluster_t *cluster, struct user_data *udata, unsigned int count) {
unsigned int i;
if(!sx || !cluster || !udata || !count) {
ERROR("NULL argument");
return;
}
for(i = 0; i < count; i++) {
/* Delete user */
if(*udata[i].username && sxc_user_remove(cluster, udata[i].username, 0))
WARNING("Failed to cleanup user %s", udata[i].username);
user_data_free(&udata[i]);
}
}
struct vol_data {
char name[SXLIMIT_MAX_VOLNAME_LEN+1];
const char *owner;
unsigned int replica;
unsigned int revisions;
const char *filter_name;
const char *filter_cfg;
};
/* Prepare volumes for testing */
static int prepare_volumes(sxc_client_t *sx, sxc_cluster_t *cluster, struct vol_data *vdata, unsigned int count, const char *filter_dir, int human_readable, int hide_errors) {
int ret = -1;
unsigned int i;
if(!sx || !cluster || !vdata || !count) {
ERROR("NULL argument");
return ret;
}
for(i = 0; i < count; i++) {
snprintf(vdata[i].name, sizeof(vdata[i].name), "%s%u_%s_XXXXXX", VOLNAME, i + 1, vdata[i].filter_name ? vdata[i].filter_name : "NonFilter");
if(randomize_name(vdata[i].name))
goto prepare_volumes_err;
int retFIXME = create_volume(sx, cluster, vdata[i].name, vdata[i].owner ? vdata[i].owner : "admin", filter_dir, vdata[i].filter_name, vdata[i].filter_cfg, vdata[i].replica ? vdata[i].replica : 1, vdata[i].revisions ? vdata[i].revisions : 1, human_readable, hide_errors);
if(retFIXME == 2) {
ret = -2;
goto prepare_volumes_err;
}
if(retFIXME)
goto prepare_volumes_err;
}
ret = 0;
prepare_volumes_err:
if(ret) {
for(; i < count; i++)
*vdata[i].name = '\0';
}
return ret;
}
/* Cleanup volumes created with prepare_volumes() */
static void cleanup_volumes(sxc_client_t *sx, sxc_cluster_t *cluster, struct vol_data *vdata, unsigned int count) {
unsigned int i;
for(i = 0; i < count; i++) {
if(*vdata[i].name && remove_volume(sx, cluster, vdata[i].name, 1, 1))
WARNING("Failed to cleanup volume %s: %s", vdata[i].name, sxc_geterrmsg(sx));
}
}
/* Compare meta data, return 0 if they are the same, 1 if different, -1 on error */
static int cmp_meta(sxc_client_t *sx, sxc_meta_t *a, sxc_meta_t *b, int hide_errors) {
unsigned int i, count;
if(!sx || !a || !b) {
ERROR("NULL argument");
return -1;
}
count = sxc_meta_count(a);
/* Compare sizes first */
if(count != sxc_meta_count(b)) {
if(!hide_errors)
ERROR("Different meta sizes: %d != %d", count, sxc_meta_count(b));
return 1;
}
for(i = 0; i < count; i++) {
const char *metakey;
const void *metavalue1, *metavalue2;
unsigned int metavalue1_len, metavalue2_len;
/* Get the first entry */
if(sxc_meta_getkeyval(a, i, &metakey, &metavalue1, &metavalue1_len)) {
if(!hide_errors)
ERROR("Failed to read meta entry");
return 1;
}
if(!metakey) {
if(!hide_errors)
ERROR("Invalid meta key");
return 1;
}
if(sxc_meta_getval(b, metakey, &metavalue2, &metavalue2_len)) {
if(!hide_errors)
ERROR("Failed to get meta key from reference meta");
return 1;
}
/* Check if the entry is the same as expected */
if(!metavalue1 || !metavalue2 || metavalue1_len != metavalue2_len || memcmp(metavalue1, metavalue2, metavalue1_len)) {
if(!hide_errors)
ERROR("Different meta values for meta key '%s'", metakey);
return 1;
}
}
return 0;
}
static int test_volmeta(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = -1;
sxc_meta_t *custom_meta = NULL, *custom_meta_remote = NULL;
sxc_file_t *file = NULL;
struct user_data udata[3];
struct vol_data vdata[1];
PRINT("Started");
memset(udata, 0, sizeof(udata));
memset(vdata, 0, sizeof(vdata));
udata[2].admin = 1;
/* Create 1 user */
if(prepare_users(sx, cluster, udata, sizeof(udata) / sizeof(*udata))) {
ERROR("Failed to prepare users");
goto test_volmeta_err;
}
vdata[0].owner = udata[0].username;
vdata[0].filter_name = filter1_name;
vdata[0].filter_cfg = filter1_cfg;
vdata[0].replica = args->replica_arg;
/* Create 1 volume owned by user1 */
if(prepare_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata), filter_dir, args->human_flag, 1)) {
ERROR("Failed to prepare volumes");
goto test_volmeta_err;
}
/* Actual test begins here */
/* Create remote file structure instance to pass it to sxc_custom_volumemeta_new() */
file = sxc_file_remote(cluster, vdata[0].name, NULL, NULL);
if(!file) {
ERROR("Failed to initialize remote file structure");
goto test_volmeta_err;
}
/* Create custom meta buffer */
custom_meta = sxc_meta_new(sx);
if(!custom_meta) {
ERROR("Failed to create volume %s custom meta: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
custom_meta_remote = sxc_custom_volumemeta_new(file);
if(!custom_meta_remote) {
ERROR("Failed to get volume %s custom meta: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Compare local and remote meta */
if(cmp_meta(sx, custom_meta, custom_meta_remote, 0))
goto test_volmeta_err;
/* Add new custom meta value */
if(sxc_meta_setval(custom_meta, "1", "123", 3)) {
ERROR("Failed to modify meta");
goto test_volmeta_err;
}
/* Modify the volume */
if(sxc_volume_modify(cluster, vdata[0].name, NULL, -1, -1, custom_meta)) {
ERROR("Failed to modify meta");
goto test_volmeta_err;
}
/* Get custom meta again */
sxc_meta_free(custom_meta_remote);
custom_meta_remote = sxc_custom_volumemeta_new(file);
if(!custom_meta_remote) {
ERROR("Failed to get volume %s custom meta: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Compare local and remote meta */
if(cmp_meta(sx, custom_meta, custom_meta_remote, 0))
goto test_volmeta_err;
/* Switch to the volume owner account */
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Add new custom meta value */
if(sxc_meta_setval(custom_meta, "2", "22222222", 8)) {
ERROR("Failed to modify meta");
goto test_volmeta_err;
}
/* Modify the volume as a volume owner */
if(sxc_volume_modify(cluster, vdata[0].name, NULL, -1, -1, custom_meta)) {
ERROR("Failed to modify meta");
goto test_volmeta_err;
}
/* Get remote custom meta */
sxc_meta_free(custom_meta_remote);
custom_meta_remote = sxc_custom_volumemeta_new(file);
if(!custom_meta_remote) {
ERROR("Failed to get volume %s custom meta: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Compare local and remote meta */
if(cmp_meta(sx, custom_meta, custom_meta_remote, 0))
goto test_volmeta_err;
/* Switch to the second user account */
if(sxc_cluster_set_access(cluster, udata[1].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[1].username, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Add new custom meta value */
if(sxc_meta_setval(custom_meta, "3", "A", 1)) {
ERROR("Failed to modify meta");
goto test_volmeta_err;
}
/* Try to modify the volume as a non-authorised user - should fail */
if(!sxc_volume_modify(cluster, vdata[0].name, NULL, -1, -1, custom_meta)) {
ERROR("Successfully changed volume %s meta as a non-authorised user '%s'", vdata[0].name, udata[1].username);
goto test_volmeta_err;
}
/* Switch to the admin user account */
if(sxc_cluster_set_access(cluster, udata[2].username)) {
ERROR("Failed to set '%s' profile authentication: '%s'", udata[1].username, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Get remote custom meta */
sxc_meta_free(custom_meta_remote);
custom_meta_remote = sxc_custom_volumemeta_new(file);
if(!custom_meta_remote) {
ERROR("Failed to get volume %s custom meta: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Compare local and remote meta - should not be changed */
if(!cmp_meta(sx, custom_meta, custom_meta_remote, 1))
goto test_volmeta_err;
/* Modify the volume as an admin user */
if(sxc_volume_modify(cluster, vdata[0].name, NULL, -1, -1, custom_meta)) {
ERROR("Failed to modify volume %s meta as the admin user '%s'", vdata[0].name, udata[2].username);
goto test_volmeta_err;
}
/* Get remote custom meta */
sxc_meta_free(custom_meta_remote);
custom_meta_remote = sxc_custom_volumemeta_new(file);
if(!custom_meta_remote) {
ERROR("Failed to get volume %s custom meta: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_volmeta_err;
}
/* Compare local and remote meta */
if(cmp_meta(sx, custom_meta, custom_meta_remote, 0))
goto test_volmeta_err;
PRINT("Succeeded");
ret = 0;
test_volmeta_err:
if(sxc_cluster_set_access(cluster, profile_name))
WARNING("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
cleanup_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata));
cleanup_users(sx, cluster, udata, sizeof(udata) / sizeof(*udata));
sxc_file_free(file);
sxc_meta_free(custom_meta);
sxc_meta_free(custom_meta_remote);
return ret;
}
static int test_user_quota(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = -1, file_created = 0;
sxc_meta_t *custom_meta = NULL, *custom_meta_remote = NULL;
sxc_file_t *src = NULL, *dest = NULL;
struct user_data udata[2];
struct vol_data vdata[2]; /* using two volumes to divide the quota */
char *local_file_path = NULL, *remote_path = NULL;
PRINT("Started");
memset(udata, 0, sizeof(udata));
memset(vdata, 0, sizeof(vdata));
udata[1].admin = 1;
/* Create 1 user */
if(prepare_users(sx, cluster, udata, sizeof(udata) / sizeof(*udata))) {
ERROR("Failed to prepare users");
goto test_user_quota_err;
}
vdata[0].owner = udata[0].username;
/* vdata[0].filter_name = filter1_name;
vdata[0].filter_cfg = filter1_cfg;*/
vdata[1].owner = udata[0].username;
/* vdata[1].filter_name = filter2_name;
vdata[1].filter_cfg = filter2_cfg;*/ /* TODO: allow to use filters */
vdata[0].replica = vdata[1].replica = args->replica_arg;
/* Create 1 volume owned by user1 */
if(prepare_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata), filter_dir, args->human_flag, 1)) {
ERROR("Failed to prepare volumes");
goto test_user_quota_err;
}
local_file_path = malloc(strlen(local_dir_path) + lenof(QUOTA_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_user_quota_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, QUOTA_FILE_NAME);
remote_path = malloc(lenof("sx://") + strlen(args->owner_arg) + 1 + strlen(cluster_name) + 1 + strlen(vdata[0].name) + 1 + lenof(REMOTE_DIR) + 1 + lenof(QUOTA_FILE_NAME) + 1); /* The 1's inside are for '@' and '/' characters. */
if(!remote_path) {
ERROR("Cannot allocate memory for remote_path");
goto test_user_quota_err;
}
sprintf(remote_path, "%s/%s", REMOTE_DIR, QUOTA_FILE_NAME);
src = sxc_file_local(sx, local_file_path);
if(!src) {
ERROR("Cannot open '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_user_quota_err;
}
dest = sxc_file_remote(cluster, vdata[0].name, remote_path, NULL);
if(!dest) {
ERROR("Cannot open '%s' directory: %s", remote_path, sxc_geterrmsg(sx));
goto test_user_quota_err;
}
/* Actual test begins here */
/* Create test file: its size on local disk will be exactly one SX_BS_LARGE bytes */
if(create_file(local_file_path, SX_BS_LARGE, 1, NULL, 1, NULL))
goto test_user_quota_err;
file_created = 1;
/* Modify the first user quota, set it to be the same as raw file data - 1 byte */
if(sxc_user_modify(cluster, udata[0].username, SX_BS_LARGE + lenof(REMOTE_DIR) + 1 + lenof(QUOTA_FILE_NAME) - 1, NULL)) {
ERROR("Failed to modify user '%s' quota", udata[0].username);
goto test_user_quota_err;
}
/* Switch to the volume owner account */
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_user_quota_err;
}
switch(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
case 0:
ERROR("User '%s' quota not enforced", udata[0].username);
goto test_user_quota_err;
case 413:
PRINT("User '%s' quota enforced correctly (file upload)", udata[0].username);
break;
default:
ERROR("Cannot upload '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_user_quota_err;
}
sxc_clearerr(sx);
/* Switch to the admin account */
if(sxc_cluster_set_access(cluster, udata[1].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_user_quota_err;
}
/* Modify the first user quota, set it to be the same as raw file data */
if(sxc_user_modify(cluster, udata[0].username, SX_BS_LARGE + lenof(REMOTE_DIR) + 1 + lenof(QUOTA_FILE_NAME), NULL)) {
ERROR("Failed to modify user '%s' quota", udata[0].username);
goto test_user_quota_err;
}
/* Now file should exactly fit into user quota */
if(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
ERROR("Cannot upload '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_user_quota_err;
}
PRINT("Succeeded");
ret = 0;
test_user_quota_err:
if(sxc_cluster_set_access(cluster, profile_name))
WARNING("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
if(remote_path) {
sprintf(remote_path, "sx://%s@%s/%s/%s/%s", args->owner_arg, cluster_name, vdata[0].name, REMOTE_DIR, QUOTA_FILE_NAME);
if(delete_files(sx, cluster, NULL, remote_path, 0))
WARNING("Cannot delete '%s' file", remote_path);
}
cleanup_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata));
cleanup_users(sx, cluster, udata, sizeof(udata) / sizeof(*udata));
sxc_meta_free(custom_meta);
sxc_meta_free(custom_meta_remote);
if(file_created && unlink(local_file_path))
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(local_file_path);
free(remote_path);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
}
static int test_volume_quota(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1, file = 0;
char *volname, *local_file_path = NULL, *remote_path = NULL;
sxc_file_t *src = NULL, *dest = NULL;
PRINT("Started");
volname = (char*)malloc(sizeof(VOLNAME) + 1 + strlen("NonFilter_XXXXXX") + 1);
if(!volname) {
ERROR("Cannot allocate memory for volname");
return ret;
}
sprintf(volname, "%s_NonFilter_XXXXXX", VOLNAME);
if(randomize_name(volname))
goto test_quota_err;
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(QUOTA_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_quota_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, QUOTA_FILE_NAME);
remote_path = (char*)malloc(strlen("sx://") + strlen(args->owner_arg) + 1 + strlen(cluster_name) + 1 + strlen(volname) + 1 + strlen(REMOTE_DIR) + 1 + strlen(QUOTA_FILE_NAME) + 1); /* The 1's inside are for '@' and '/' characters. */
if(!remote_path) {
ERROR("Cannot allocate memory for remote_path");
goto test_quota_err;
}
sprintf(remote_path, "%s/%s", REMOTE_DIR, QUOTA_FILE_NAME);
if(sxc_volume_add(cluster, volname, QUOTA_VOL_SIZE*SX_BS_LARGE, 1, 1, NULL, args->owner_arg)) {
ERROR("Cannot create '%s' volume: %s", volname, sxc_geterrmsg(sx));
goto test_quota_err;
}
if(args->human_flag) {
PRINT("Volume '%s' (replica: 1, size: %dM) created", volname, QUOTA_VOL_SIZE);
PRINT("Creating file of size: %dM", QUOTA_FILE_SIZE);
} else {
PRINT("Volume '%s' (replica: 1, size: %lld) created", volname, QUOTA_VOL_SIZE*1024LL*1024LL);
PRINT("Creating file of size: %llu", (unsigned long long)QUOTA_FILE_SIZE*1024*1024);
}
src = sxc_file_local(sx, local_file_path);
if(!src) {
ERROR("Cannot open '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_quota_err;
}
dest = sxc_file_remote(cluster, volname, remote_path, NULL);
if(!dest) {
ERROR("Cannot open '%s' directory: %s", remote_path, sxc_geterrmsg(sx));
goto test_quota_err;
}
if(create_file(local_file_path, SX_BS_LARGE, QUOTA_FILE_SIZE, NULL, 1, NULL))
goto test_quota_err;
file = 1;
switch(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
case 0:
ERROR("Volume size limit not enforced");
goto test_quota_err;
case 413:
PRINT("Volume size limit enforced correctly");
break;
default:
ERROR("Cannot upload '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_quota_err;
}
if(sxc_volume_modify(cluster, volname, NULL, 2 * QUOTA_FILE_SIZE * SX_BS_LARGE, -1, NULL)) {
ERROR("Cannot change volume size: %s", sxc_geterrmsg(sx));
goto test_quota_err;
}
if(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
ERROR("Cannot upload '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_quota_err;
}
PRINT("Volume size changed correctly");
PRINT("Succeeded");
ret = 0;
test_quota_err:
if(remove_volume(sx, cluster, volname, 1, 1))
WARNING("Cannot remove '%s' volume", volname);
if(file && unlink(local_file_path))
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(volname);
free(local_file_path);
free(remote_path);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
} /* test_quota */
static int check_single_meta(sxc_client_t *sx, sxc_meta_t *fmeta, const char *filter_name) {
const void *data;
if(!filter_name || !strcmp(filter_name, "undelete")) {
if(sxc_meta_count(fmeta) != 0) {
ERROR("%s: Wrong number of entries (%u != 0)", filter_name, sxc_meta_count(fmeta));
return -1;
}
} else if(!strcmp(filter_name, "attribs")) {
unsigned int i = 0;
const char *attribs[] = {"attribsName", "attribsMode", "attribsUID", "attribsGID", "attribsAtime", "attribsMtime", "attribsSize", NULL};
if(sxc_meta_count(fmeta) != sizeof(attribs) / sizeof(char*) - 1) { /* -1 is because of NULL at the end */
ERROR("%s: Wrong number of entries (%u != %u)", filter_name, sxc_meta_count(fmeta), sizeof(attribs) / sizeof(char*) - 1);
return -1;
}
for(; attribs[i]; i++)
if(sxc_meta_getval(fmeta, attribs[i], &data, NULL)) {
ERROR("'%s' meta entry unavailable", attribs[i]);
return -1;
}
} else if(!strcmp(filter_name, "aes256")) {
if(sxc_meta_count(fmeta) != 0) {
ERROR("%s: Wrong number of entries (%u != 0)", filter_name, sxc_meta_count(fmeta));
return -1;
}
} else if(!strcmp(filter_name, "zcomp")) {
/* if(sxc_meta_count(fmeta) != 0) {
ERROR("%s: Wrong number of entries (%u != 0)", filter_name, sxc_meta_count(fmeta));
return -1;
}*/ /* FIXME: this must not be commented out */
} else {
ERROR("Unknown filter: %s", filter_name);
return -1;
}
return 0;
} /* check_single_meta */
static int check_files_meta(sxc_client_t *sx, sxc_file_t *file1, const char *filter1_name, sxc_file_t *file2, const char *filter2_name) {
int ret = -1;
sxc_meta_t *fmeta1, *fmeta2;
fmeta1 = sxc_filemeta_new(file1);
if(!fmeta1) {
ERROR("First file: %s", sxc_geterrmsg(sx));
return ret;
}
fmeta2 = sxc_filemeta_new(file2);
if(!fmeta2) {
ERROR("Second file: %s", sxc_geterrmsg(sx));
goto check_files_meta_err;
}
if(check_single_meta(sx, fmeta1, filter1_name))
goto check_files_meta_err;
if(check_single_meta(sx, fmeta2, filter2_name))
goto check_files_meta_err;
ret = 0;
check_files_meta_err:
sxc_meta_free(fmeta1);
sxc_meta_free(fmeta2);
return ret;
} /* check_files_meta */
static int test_copy(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1, tmp;
char *local_file_path = NULL, *remote_file1_path = NULL, *remote_file2_path = NULL;
unsigned char block[SX_BS_MEDIUM], hash1[SXI_SHA1_BIN_LEN], hash2[SXI_SHA1_BIN_LEN];
FILE *file = NULL;
sxc_uri_t *uri = NULL;
sxc_file_t *src = NULL, *dest = NULL;
sxi_md_ctx *ctx = sxi_md_init();
struct vol_data vdata[2];
PRINT("Started");
memset(vdata, 0, sizeof(vdata));
if(!ctx) {
ERROR("Cannot allocate memory for checksum");
return ret;
}
PRINT("Filters: %s (%s) and %s (%s)", filter1_name, filter1_cfg, filter2_name, filter2_cfg);
vdata[0].owner = vdata[1].owner = args->owner_arg;
vdata[0].filter_name = filter1_name;
vdata[0].filter_cfg = filter1_cfg;
vdata[1].filter_name = filter2_name;
vdata[1].filter_cfg = filter2_cfg;
vdata[0].replica = vdata[1].replica = args->replica_arg;
int retFIXME = prepare_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata), filter_dir, args->human_flag, 0);
if(retFIXME == -2) {
ret = 0;
goto test_copy_err;
}
if(retFIXME == -1) {
ERROR("Failed to prepare volumes");
goto test_copy_err;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(COPY_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_copy_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, COPY_FILE_NAME);
remote_file1_path = (char*)malloc(strlen("sx://") + (profile_name ? strlen(profile_name) + 1 : 0) + strlen(cluster_name) + 1 + strlen(vdata[0].name) + 1 + strlen(REMOTE_DIR) + 1 + strlen(COPY_FILE_NAME) + 1); /* The 1's inside are for '@' and '/' characters. */
if(!remote_file1_path) {
ERROR("Cannot allocate memory for remote_file1_path");
goto test_copy_err;
}
sprintf(remote_file1_path, "sx://%s%s%s/%s/%s/%s", profile_name ? profile_name : "", profile_name ? "@" : "", cluster_name, vdata[0].name, REMOTE_DIR, COPY_FILE_NAME);
remote_file2_path = (char*)malloc(strlen("sx://") + (profile_name ? strlen(profile_name) + 1 : 0) + strlen(cluster_name) + 1 + strlen(vdata[1].name) + 1 + strlen(REMOTE_DIR) + 1 + strlen(COPY_FILE_NAME) + 1); /* The 1's inside are for '@' and '/' characters. */
if(!remote_file2_path) {
ERROR("Cannot allocate memory for remote_file2_path");
goto test_copy_err;
}
sprintf(remote_file2_path, "sx://%s%s%s/%s/%s/%s", profile_name ? profile_name : "", profile_name ? "@" : "", cluster_name, vdata[1].name, REMOTE_DIR, COPY_FILE_NAME);
if(create_file(local_file_path, SX_BS_MEDIUM, 10, hash1, 1, NULL))
goto test_copy_err;
PRINT("Uploading file");
if(upload_file(sx, cluster, local_file_path, remote_file1_path, 0)) {
ERROR("Cannot upload '%s' file", local_file_path);
if(unlink(local_file_path))
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_copy_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
goto test_copy_err;
}
uri = sxc_parse_uri(sx, remote_file1_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_copy_err;
}
src = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!src) {
ERROR("Cannot open '%s' file: %s", remote_file1_path, sxc_geterrmsg(sx));
sxc_free_uri(uri);
uri = NULL;
goto test_copy_err;
}
sxc_free_uri(uri);
PRINT("Copying file between volumes");
uri = sxc_parse_uri(sx, remote_file2_path);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_copy_err;
}
dest = sxc_file_remote(cluster, uri->volume, uri->path, NULL);
if(!dest) {
ERROR("Cannot open '%s' file: %s", remote_file2_path, sxc_geterrmsg(sx));
goto test_copy_err;
}
if(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
ERROR("Cannot upload '%s' file: %s", remote_file2_path, sxc_geterrmsg(sx));
goto test_copy_err;
}
if(check_files_meta(sx, src, filter1_name, dest, filter2_name))
goto test_copy_err;
PRINT("Downloading file");
if(download_file(sx, cluster, local_file_path, remote_file2_path, &file)) {
ERROR("Cannot download '%s' file", remote_file2_path);
goto test_copy_err;
}
if(!sxi_sha1_init(ctx)) {
ERROR("Checksum init failure");
goto test_copy_err;
}
while((tmp = fread(block, sizeof(unsigned char), SX_BS_MEDIUM, file))) {
if(!sxi_sha1_update(ctx, block, tmp)) {
ERROR("Checksum update failure");
goto test_copy_err;
}
if(tmp < SX_BS_MEDIUM) {
ERROR("Only a part of file has been downloaded");
goto test_copy_err;
}
}
if(!sxi_sha1_final(ctx, hash2, NULL)) {
ERROR("Checksum final calculation failure");
goto test_copy_err;
}
if(memcmp(hash1, hash2, SXI_SHA1_BIN_LEN)) {
ERROR("Uploaded and downloaded file differs");
goto test_copy_err;
}
if(delete_files(sx, cluster, NULL, remote_file1_path, 0)) {
ERROR("Cannot delete '%s' file", remote_file1_path);
goto test_copy_err;
}
if(delete_files(sx, cluster, uri->volume, uri->path, 0)) {
ERROR("Cannot delete '%s' file", remote_file2_path);
goto test_copy_err;
}
PRINT("Succeeded");
ret = 0;
test_copy_err:
if(file && fclose(file) == EOF)
WARNING("Cannot close '%s' file: %s", local_file_path, strerror(errno));
if(local_file_path && unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
cleanup_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata));
free(local_file_path);
free(remote_file1_path);
free(remote_file2_path);
sxi_md_cleanup(&ctx);
sxc_free_uri(uri);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
} /* test_copy */
struct files_transfer {
char src[SXLIMIT_MAX_FILENAME_LEN + 1], dest[SXLIMIT_MAX_FILENAME_LEN + 1];
};
static int test_paths(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = -1;
unsigned int i;
char *local_file_path = NULL;
sxc_file_t *src = NULL, *dest = NULL;
struct vol_data vdata[2];
struct files_transfer ftrans[] = {{"fil?_pat?s", ""}, {"f*_*s", "dir/.sxnewdir"}, {"*", "dir"}};
PRINT("Started");
memset(vdata, 0, sizeof(vdata));
vdata[0].filter_name = filter1_name;
vdata[0].filter_cfg = filter1_cfg;
vdata[1].filter_name = filter2_name;
vdata[1].filter_cfg = filter2_cfg;
vdata[0].owner = vdata[1].owner = args->owner_arg;
vdata[0].replica = vdata[1].replica = args->replica_arg;
if(prepare_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata), filter_dir, args->human_flag, 0)) {
ERROR("Failed to prepare volumes");
goto test_paths_err;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen("file_paths") + 1); /* no macro for filename to be able to create static array */
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_paths_err;
}
sprintf(local_file_path, "%sfile_paths", local_dir_path);
if(create_file(local_file_path, 0, 0, NULL, 1, NULL))
goto test_paths_err;
src = sxc_file_local(sx, local_file_path);
if(!src) {
ERROR("Cannot open '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_paths_err;
}
dest = sxc_file_remote(cluster, vdata[0].name, "file_paths", NULL);
if(!dest) {
ERROR("Cannot open 'file_trans' file: %s", sxc_geterrmsg(sx));
goto test_paths_err;
}
if(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
ERROR("Cannot upload '%s' file: %s", local_file_path, sxc_geterrmsg(sx));
goto test_paths_err;
}
for(i=0; i<sizeof(ftrans)/sizeof(*ftrans); i++) {
PRINT("Copying '%s' to '%s'", ftrans[i].src, ftrans[i].dest);
sxc_file_free(src);
src = sxc_file_remote(cluster, vdata[0].name, ftrans[i].src, NULL);
if(!src) {
ERROR("Cannot open '%s' file: %s", ftrans[i].src, sxc_geterrmsg(sx));
goto test_paths_err;
}
sxc_file_free(dest);
dest = sxc_file_remote(cluster, vdata[1].name, ftrans[i].dest, NULL);
if(!dest) {
ERROR("Cannot open '%s' file: %s", ftrans[i].dest, sxc_geterrmsg(sx));
goto test_paths_err;
}
if(sxc_copy(src, dest, 0, 0, 0, NULL, 1)) {
ERROR("Cannot copy '%s' file to '%s': %s", ftrans[i].src, ftrans[i].dest, sxc_geterrmsg(sx));
goto test_paths_err;
}
}
PRINT("Succeeded");
ret = 0;
test_paths_err:
cleanup_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata));
if(local_file_path && unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
free(local_file_path);
sxc_file_free(src);
sxc_file_free(dest);
return ret;
} /* test_paths */
/* Both users without 'read' permission.
* Path to already existing file.
* -1 - error
* 0 - files not uploaded (permissions forced)
* 1 - files uploaded */
static int cross_copy(sxc_client_t *sx, sxc_cluster_t *cluster, const char *cluster_name, const char *volname1, const char* volname2, const char *user1, const char *user2, const char *profile_name, const char *local_file_path) {
int ret = -1;
char *remote_file_path;
remote_file_path = (char*)malloc(strlen("sx://") + strlen(user1) + strlen(user2) + 1 + strlen(cluster_name) + 1 + strlen(volname1) + strlen(volname2) + 2); /* The 1's inside are for '@' and '/' characters. */
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
return ret;
}
if(sxc_cluster_set_access(cluster, user1)) {
ERROR("Failed to set '%s' profile authentication: %s", user1, sxc_geterrmsg(sx));
goto cross_copy_err;
}
sprintf(remote_file_path, "sx://%s@%s/%s/", user1, cluster_name, volname2);
if(upload_file(sx, cluster, local_file_path, remote_file_path, 1)) {
if(sxc_geterrnum(sx) != SXE_EAUTH) {
ERROR("Cannot upload '%s' file", local_file_path);
goto cross_copy_err;
}
} else {
ERROR("File upload succeeded without permission");
ret = 1;
goto cross_copy_err;
}
if(sxc_cluster_set_access(cluster, user2)) {
ERROR("Failed to set '%s' profile authentication: %s", user2, sxc_geterrmsg(sx));
goto cross_copy_err;
}
sprintf(remote_file_path, "sx://%s@%s/%s/", user2, cluster_name, volname1);
if(upload_file(sx, cluster, local_file_path, remote_file_path, 1)) {
if(sxc_geterrnum(sx) != SXE_EAUTH) {
ERROR("Cannot upload '%s' file", local_file_path);
goto cross_copy_err;
}
} else {
ERROR("File upload succeeded without permission");
ret = 1;
goto cross_copy_err;
}
if(sxc_cluster_set_access(cluster, profile_name)) {
ERROR("Failed to set default profile: %s", sxc_geterrmsg(sx));
goto cross_copy_err;
}
ret = 0;
cross_copy_err:
free(remote_file_path);
return ret;
} /* cross_copy */
/* -1 - error
* 0 - users list is the same as given in arguments
* 1 - different users list */
static int check_users(sxc_cluster_t *cluster, const char **users, const int users_num) {
int i, ret = -1, is_admin, next = 1, num = 0;
char *user = NULL;
int64_t quota, quota_used;
sxc_cluster_lu_t *lstu;
lstu = sxc_cluster_listusers(cluster);
if(!lstu)
return ret;
while(next > 0) {
free(user);
user = NULL;
next = sxc_cluster_listusers_next(lstu, &user, &is_admin, NULL, "a, "a_used);
switch(next) {
case -1: goto check_users_err;
case 0: break;
case 1:
for(i=0; i<users_num; i++)
if(users[i] && !strcmp(users[i], user)) {
users[i] = NULL;
break;
}
num++;
break;
}
}
for(i=0; i<users_num; i++)
if(users[i]) {
ret = 1;
goto check_users_err;
}
ret = 0;
check_users_err:
free(user);
sxc_cluster_listusers_free(lstu);
return ret;
} /* check_users */
/* -1 - error
* 0 - user has the same rights as given in arguments
* 1 - different user rights */
static int check_user(sxc_cluster_t *cluster, const char *volname, const char *user, int rights) {
int ret = -1, next = 1, acl;
char *get_user = NULL;
sxc_cluster_la_t *lstu;
lstu = sxc_cluster_listaclusers(cluster, volname);
if(!lstu)
return ret;
while(next > 0) {
next = sxc_cluster_listaclusers_next(lstu, &get_user, &acl);
switch(next) {
case -1:
if(get_user)
free(get_user);
goto check_user_err;
case 0: break;
case 1:
if(!strcmp(user, get_user)) {
free(get_user);
if(rights != acl) {
ret = 1;
PRINT("Rights: %x, acl: %x", rights, acl);
goto check_user_err;
}
next = 0;
break;
}
free(get_user);
get_user = NULL;
break;
}
}
ret = 0;
check_user_err:
sxc_cluster_listaclusers_free(lstu);
return ret;
} /* check_user */
/* -1 - error
* 0 - current user in the cluster is not an admin
* 1 - current user in the cluster is an admin */
static int check_admin(sxc_cluster_t *cluster) {
int ret = -1, is_admin, next = 1;
char *get_user = NULL;
char *user = NULL, *desc, *role = NULL;
int64_t quota, quota_used;
sxc_cluster_lu_t *lstu;
lstu = sxc_cluster_listusers(cluster);
if(!lstu)
return ret;
if(sxc_cluster_whoami(cluster, &user, &role, NULL, "a, "a_used))
goto check_admin_err;
if(!role || strcmp(role, "admin"))
goto check_admin_err;
if(quota != 0 || quota_used != 0)
goto check_admin_err;
while(next > 0) {
next = sxc_cluster_listusers_next(lstu, &get_user, &is_admin, &desc, "a, "a_used);
free(desc);
switch(next) {
case -1:
if(get_user)
free(get_user);
goto check_admin_err;
case 0: break;
case 1:
if(!strcmp(user, get_user))
next = 0;
free(get_user);
get_user = NULL;
break;
}
}
/* Admin should not have quota assigned */
if(quota || quota_used)
goto check_admin_err;
ret = is_admin;
check_admin_err:
sxc_cluster_listusers_free(lstu);
free(user);
free(role);
return ret;
} /* check_admin */
static int test_acl(sxc_client_t *sx, sxc_cluster_t *cluster, const char *local_dir_path, const char *remote_dir_path, const char *profile_name, const char *cluster_name, const char *filter_dir, const char *filter1_name, const char *filter1_cfg, const char *filter2_name, const char *filter2_cfg, uint64_t block_size, uint64_t block_count, const struct gengetopt_args_info *args, const unsigned int max_revisions, const int check_data_size) {
int ret = 1;
unsigned int i;
char key_tmp[AUTHTOK_ASCII_LEN], *local_file_path = NULL, *remote_file_path = NULL;
FILE *file = NULL;
int64_t quota, quota_used;
struct user_data udata[3];
struct vol_data vdata[2];
const char *list[sizeof(udata) / sizeof(*udata)];
PRINT("Started");
memset(udata, 0, sizeof(udata));
memset(vdata, 0, sizeof(vdata));
switch(check_admin(cluster)) {
case -1:
ERROR("%s", sxc_geterrmsg(sx));
return ret;
case 0:
ERROR("Current user is not an admin");
return ret;
}
if(prepare_users(sx, cluster, udata, sizeof(udata) / sizeof(*udata) - 1)) { /* third user will be created by first user */
ERROR("Failed to prepare users");
goto test_acl_err;
}
vdata[0].owner = udata[0].username;
vdata[0].filter_name = filter1_name;
vdata[0].filter_cfg = filter1_cfg;
vdata[1].owner = udata[1].username;
vdata[1].filter_name = filter2_name;
vdata[1].filter_cfg = filter2_cfg;
vdata[0].replica = vdata[1].replica = args->replica_arg;
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(prepare_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata), filter_dir, args->human_flag, 1)) {
if(sxc_geterrnum(sx) == SXE_EAUTH)
PRINT("Volume creation permission enforced correctly");
else {
ERROR("Cannot create '%s' volume: %s", vdata[0].name, sxc_geterrmsg(sx));
goto test_acl_err;
}
} else {
ERROR("Volume created without permission");
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, profile_name)) {
ERROR("Failed to set default profile: %s", sxc_geterrmsg(sx));
goto test_acl_err;
}
if(prepare_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata), filter_dir, args->human_flag, 0)) {
ERROR("Failed to prepare volumes");
goto test_acl_err;
}
remote_file_path = (char*)malloc(strlen("sx://") + strlen(udata[0].username) + strlen(udata[1].username) + 1 + strlen(cluster_name) + 1 + strlen(vdata[0].name) + strlen(vdata[1].name) + 2); /* The 1's inside are for '@' and '/' characters. */
if(!remote_file_path) {
ERROR("Cannot allocate memory for remote_file_path");
goto test_acl_err;
}
local_file_path = (char*)malloc(strlen(local_dir_path) + strlen(ACL_FILE_NAME) + strlen(ACL_KEY_FILE_NAME) + 1);
if(!local_file_path) {
ERROR("Cannot allocate memory for local_file_path");
goto test_acl_err;
}
sprintf(local_file_path, "%s%s", local_dir_path, ACL_FILE_NAME);
if(create_file(local_file_path, 0, 0, NULL, 1, NULL))
goto test_acl_err;
switch(check_user(cluster, vdata[0].name, udata[0].username, SX_ACL_FULL)) { /* read + write + manager + owner */
case -1:
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
case 1:
ERROR("'%s' has diferent rights on '%s'", udata[0].username, vdata[0].name);
goto test_acl_err;
}
switch(check_user(cluster, vdata[0].name, udata[1].username, 0)) { /* no rights yet */
case -1:
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
case 1:
ERROR("'%s' has diferent rights on '%s'", udata[1].username, vdata[0].name);
goto test_acl_err;
}
switch(cross_copy(sx, cluster, cluster_name, vdata[0].name, vdata[1].name, udata[0].username, udata[1].username, profile_name, local_file_path)) {
case -1:
ERROR("Files uploading failure");
goto test_acl_err;
case 0:
PRINT("Users permissions enforced correctly");
break;
case 1:
ERROR("Files uploaded without permission");
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[1].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[1].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
sprintf(remote_file_path, "sx://%s@%s/%s/%s", udata[0].username, cluster_name, vdata[1].name, ACL_FILE_NAME);
if(upload_file(sx, cluster, local_file_path, remote_file_path, 0)) { /* user1 in remote_file_path have no impact here */
ERROR("Cannot upload '%s' file", local_file_path);
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[1].name, udata[0].username, SX_ACL_READ, 0)) {
ERROR("Cannot add 'read' permission to '%s': %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
switch(find_file(sx, cluster, remote_file_path, 0)) {
case -1:
ERROR("Looking for '%s' file failed", remote_file_path);
goto test_acl_err;
case 0:
ERROR("'%s' file not found", remote_file_path);
goto test_acl_err;
case 1:
PRINT("'read' permission granted correctly");
break;
}
switch(check_user(cluster, vdata[1].name, udata[0].username, SX_ACL_READ)) { /* read */
case -1:
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
case 1:
ERROR("'%s' has diferent rights on '%s'", udata[0].username, vdata[1].name);
goto test_acl_err;
}
if(delete_files(sx, cluster, NULL, remote_file_path, 1)) {
if(sxc_geterrnum(sx) == SXE_EAUTH)
PRINT("'write' permission enforced correctly");
else {
ERROR("Cannot delete '%s' file", remote_file_path);
goto test_acl_err;
}
} else {
ERROR("File has been deleted without permission");
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[0].name, udata[1].username, SX_ACL_WRITE, 0)) {
ERROR("Cannot add 'write' permission to '%s': %s", udata[1].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[1].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[1].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(delete_files(sx, cluster, NULL, remote_file_path, 1)) {
ERROR("Cannot delete '%s' file", remote_file_path);
goto test_acl_err;
}
sprintf(remote_file_path, "sx://%s@%s/%s/%s", udata[1].username, cluster_name, vdata[0].name, ACL_FILE_NAME);
if(upload_file(sx, cluster, local_file_path, remote_file_path, 1)) {
ERROR("Cannot upload '%s' file", local_file_path);
goto test_acl_err;
} else
PRINT("'write' permission granted correctly");
if(find_file(sx, cluster, remote_file_path, 1) == -1) {
if(sxc_geterrnum(sx) == SXE_EAUTH)
PRINT("'read' permission enforced correctly");
else {
ERROR("Looking for '%s' file in %s failed", ACL_FILE_NAME, remote_file_path);
goto test_acl_err;
}
} else {
ERROR("Searching for a file done without permission");
goto test_acl_err;
}
if(delete_files(sx, cluster, NULL, remote_file_path, 1)) {
ERROR("Cannot delete '%s' file", remote_file_path);
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[1].name, udata[0].username, 0, SX_ACL_READ)) {
ERROR("Cannot revoke 'read' permission from '%s': %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[0].name, udata[1].username, 0, SX_ACL_WRITE)) {
ERROR("Cannot revoke 'write' permission from '%s': %s", udata[1].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
switch(cross_copy(sx, cluster, cluster_name, vdata[0].name, vdata[1].name, udata[0].username, udata[1].username, profile_name, local_file_path)) {
case -1:
ERROR("Cannot upload file");
goto test_acl_err;
case 0:
PRINT("User permissions revoked correctly");
break;
case 1:
ERROR("File uploaded without permission");
goto test_acl_err;
}
if(prepare_users(sx, cluster, udata + sizeof(udata) / sizeof(*udata) - 1, 1)) { /* create third user using first user rights */
ERROR("Failed to prepare users");
goto test_acl_err;
}
for(i=0; i<sizeof(list)/sizeof(*list); i++)
list[i] = udata[i].username;
switch(check_users(cluster, list, sizeof(list) / sizeof(*list))) {
case -1:
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
case 0: break;
case 1:
ERROR("Wrong user list");
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[0].name, udata[2].username, SX_ACL_RW, 0)) {
ERROR("Cannot add 'read,write' permission to %s: %s", udata[2].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[2].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[2].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[0].name, udata[1].username, SX_ACL_READ, 0)) {
if(sxc_geterrnum(sx) == SXE_EAUTH)
PRINT("User permissions enforced correctly");
else {
ERROR("Cannot add 'read' permission to '%s': %s", udata[2].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
} else {
ERROR("Permissions granted without permission");
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, profile_name)) {
ERROR("Failed to set default profile: %s", sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_volume_acl(cluster, vdata[0].name, udata[2].username, 0, SX_ACL_RW)) {
ERROR("Cannot revoke 'read,write' permission from '%s': %s", udata[2].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_volume_modify(cluster, vdata[0].name, udata[2].username, 0, -1, NULL)) {
ERROR("Cannot change volume owner: %s", sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[2].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[2].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
switch(check_user(cluster, vdata[0].name, udata[0].username, SX_ACL_RW)) { /* read + write */
case -1:
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
case 1:
ERROR("'%s' has diferent rights on '%s'", udata[0].username, vdata[0].name);
goto test_acl_err;
}
switch(check_user(cluster, vdata[0].name, udata[2].username, SX_ACL_FULL)) { /* read + write + manager + owner */
case -1:
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
case 1:
ERROR("'%s' has diferent rights on '%s'", udata[0].username, vdata[0].name);
goto test_acl_err;
}
if(remove_volume(sx, cluster, vdata[0].name, 0, 1)) {
if(sxc_geterrnum(sx) == SXE_EAUTH)
PRINT("Volume removal permission enforced correctly");
else {
ERROR("Cannot remove '%s' volume", vdata[0].name, sxc_geterrmsg(sx));
goto test_acl_err;
}
} else {
ERROR("Volume removed without permission");
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, profile_name)) {
ERROR("Failed to set default profile: %s", sxc_geterrmsg(sx));
goto test_acl_err;
}
if(unlink(local_file_path)) {
ERROR("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
file = NULL;
goto test_acl_err;
}
sprintf(local_file_path, "%s/%s", local_dir_path, ACL_KEY_FILE_NAME);
file = fopen(local_file_path, "w+");
if(!file) {
ERROR("Cannot open '%s' file: %s", local_file_path, strerror(errno));
goto test_acl_err;
}
if(sxc_user_getinfo(cluster, udata[0].username, file, NULL, 0)) {
ERROR("Cannot get '%s' key: %s", udata[0].username, sxc_geterrmsg(sx));
if(fclose(file) == EOF)
ERROR("Cannot close '%s' file: %s", local_file_path, strerror(errno));
goto test_acl_err;
}
if(fflush(file) == EOF) {
ERROR("Cannot flush '%s' file: %s", local_file_path, strerror(errno));
if(fclose(file) == EOF)
ERROR("Cannot close '%s' file: %s", local_file_path, strerror(errno));
goto test_acl_err;
}
rewind(file);
if(ftell(file) == -1) {
ERROR("Cannot rewind '%s' file: %s", local_file_path, strerror(errno));
if(fclose(file) == EOF)
ERROR("Cannot close '%s' file: %s", local_file_path, strerror(errno));
goto test_acl_err;
}
if(fread(key_tmp, 1, AUTHTOK_ASCII_LEN, file) != AUTHTOK_ASCII_LEN) {
ERROR("Cannot get '%s' key", udata[0].username);
if(fclose(file) == EOF)
ERROR("Cannot close '%s' file: %s", local_file_path, strerror(errno));
goto test_acl_err;
}
if(fclose(file) == EOF) {
ERROR("Cannot close '%s' file: %s", local_file_path, strerror(errno));
goto test_acl_err;
}
if(memcmp(udata[0].key, key_tmp, AUTHTOK_ASCII_LEN)) {
ERROR("User keys differs");
goto test_acl_err;
}
free(udata[1].key);
udata[1].key = sxc_user_newkey(cluster, udata[0].username, NULL, NULL, 1);
if(!udata[1].key) {
ERROR("Cannot generate new key for '%s': %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
free(udata[2].key);
if(sxc_cluster_whoami(cluster, &udata[2].key, NULL, NULL, NULL, NULL)) {
if(sxc_geterrnum(sx) == 7) {
PRINT("User permissions after key change enforced correctly");
} else {
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
}
} else {
ERROR("Name checked without permission");
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, profile_name)) {
ERROR("Failed to set default profile: %s", sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_add_access(cluster, udata[0].username, udata[1].key)) {
ERROR("Failed to add '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, udata[0].username)) {
ERROR("Failed to set '%s' profile authentication: %s", udata[0].username, sxc_geterrmsg(sx));
goto test_acl_err;
}
free(udata[2].key);
if(sxc_cluster_whoami(cluster, &udata[2].key, NULL, NULL, "a, "a_used)) {
ERROR("%s", sxc_geterrmsg(sx));
goto test_acl_err;
}
if(quota || quota_used) {
ERROR("Got non-zero quota and quota usage");
goto test_acl_err;
}
if(strcmp(udata[0].username, udata[2].key)) {
ERROR("Got wrong user name");
goto test_acl_err;
}
if(sxc_cluster_set_access(cluster, profile_name)) {
ERROR("Failed to set default profile: %s", sxc_geterrmsg(sx));
goto test_acl_err;
}
PRINT("Succeeded");
ret = 0;
test_acl_err:
if(local_file_path && unlink(local_file_path) && errno != ENOENT)
WARNING("Cannot delete '%s' file: %s", local_file_path, strerror(errno));
cleanup_volumes(sx, cluster, vdata, sizeof(vdata) / sizeof(*vdata));
cleanup_users(sx, cluster, udata, sizeof(udata) / sizeof(*udata));
free(local_file_path);
free(remote_file_path);
return ret;
} /* test_acl */
/* For test_transfer:
* Block size | Available number of blocks
* SX_BS_SMALL | 0 - 31
* SX_BS_MEDIUM | 8 - 8192
* SX_BS_LARGE | 129+
* REMEMBER TO CHECK WHETHER THE VOLUME SIZE IS BIG ENOUGH!!
*/
client_test_t tests[] = {
{1, 1, 0, 0, 0, 0, "empty_file", NULL, NULL, NULL, NULL, test_empty_file},
{1, 0, 0, 0, SX_BS_SMALL, 26, "transfer:small", NULL, NULL, NULL, NULL, test_transfer},
{1, 0, 0, 0, SX_BS_MEDIUM, 2314, "transfer:medium", NULL, NULL, NULL, NULL, test_transfer},
{1, 0, 0, 1, SX_BS_LARGE, 285, "transfer:large", NULL, NULL, NULL, NULL, test_transfer},
{1, 1, 0, 0, SX_BS_SMALL, 29, "revision:small", NULL, NULL, NULL, NULL, test_revision},
{1, 1, 0, 0, SX_BS_MEDIUM, 649, "revision:medium", NULL, NULL, NULL, NULL, test_revision},
{1, 1, 0, 1, SX_BS_LARGE, 131, "revision:large", NULL, NULL, NULL, NULL, test_revision},
{1, 1, 0, 0, 0, 0, "cat", NULL, NULL, NULL, NULL, test_cat},
{1, 1, 0, 0, 0, 0, "errors", NULL, NULL, NULL, NULL, test_errors},
{1, 0, 1, 0, 0, 0, "attribs", NULL, NULL, NULL, NULL, test_attribs},
{1, 0, 1, 0, 0, 0, "undelete", NULL, NULL, NULL, NULL, test_undelete},
{0, 0, 0, 0, 0, 0, "volume_meta", NULL, NULL, NULL, NULL, test_volmeta},
{0, 0, 0, 0, 0, 0, "quota:user", NULL, NULL, NULL, NULL, test_user_quota},
{0, 0, 0, 0, 0, 0, "quota:volume", NULL, NULL, NULL, NULL, test_volume_quota},
{0, 0, 0, 0, 0, 0, "copy", NULL, NULL, NULL, NULL, test_copy},
{0, 0, 0, 0, 0, 0, "copy:filters", "attribs", NULL, "zcomp", "level:1", test_copy},
{0, 0, 0, 0, 0, 0, "paths", NULL, NULL, NULL, NULL, test_paths},
{0, 0, 0, 0, 0, 0, "acl", NULL, NULL, NULL, NULL, test_acl},
{-1, -1, -1, -1, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL}
};
int main(int argc, char **argv) {
int i, ret = 1;
char *local_dir_path = NULL, *filter_dir = NULL;
sxc_client_t *sx = NULL;
sxc_logger_t log;
sxc_cluster_t *cluster = NULL;
sxc_uri_t *uri = NULL;
struct gengetopt_args_info args;
if(QUOTA_FILE_SIZE <= QUOTA_VOL_SIZE) {
ERROR("File size to test quota is smaller than volume size. Please contact with software developer.");
return ret;
}
if(cmdline_parser(argc, argv, &args)) {
cmdline_parser_print_help();
printf("\n");
return ret;
}
if(args.list_tests_given) {
printf("Available tests:\n");
for(i=0; tests[i].name; i++)
printf(" %s\n", tests[i].name);
} else {
if(args.inputs_num != 1) {
cmdline_parser_print_help();
printf("\n");
ERROR("Wrong number of arguments");
goto main_err;
}
sx = sxc_init(SRC_VERSION, sxc_file_logger(&log, argv[0], "/dev/null", 0), test_input_fn, NULL);
if(!sx) {
ERROR("Cannot initiate SX");
goto main_err;
}
if(args.config_dir_given && sxc_set_confdir(sx, args.config_dir_arg)) {
ERROR("Could not set configuration directory to '%s': %s", args.config_dir_arg, sxc_geterrmsg(sx));
goto main_err;
}
sxc_set_debug(sx, args.debug_flag);
uri = sxc_parse_uri(sx, args.inputs[0]);
if(!uri) {
ERROR("%s", sxc_geterrmsg(sx));
goto main_err;
}
if(uri->volume) {
ERROR("Volume name not expected");
goto main_err;
}
cluster = sxc_cluster_load_and_update(sx, uri->host, uri->profile);
if(!cluster) {
ERROR("Cannot load cluster: %s", sxc_geterrmsg(sx));
goto main_err;
}
local_dir_path = (char*)malloc(strlen(LOCAL_DIR) + strlen("XXXXXX") + 1 + 1); /* There is '/' character at the end */
if(!local_dir_path) {
ERROR("Cannot allocate memory for local_dir_path");
goto main_err;
}
sprintf(local_dir_path, "%sXXXXXX", LOCAL_DIR);
if(!mkdtemp(local_dir_path)) {
ERROR("Cannot create '%s' temporary directory: %s", local_dir_path, strerror(errno));
goto main_err;
}
strcat(local_dir_path, "/");
if(args.filter_dir_given) {
filter_dir = strdup(args.filter_dir_arg);
} else {
const char *pt = sxi_getenv("SX_FILTER_DIR");
if(pt)
filter_dir = strdup(pt);
}
if(!filter_dir) {
ERROR("Cannot get filter directory. Use --filter-dir or 'export SX_FILTER_DIR=<src_dir>/client/src/filters/'");
goto main_err;
}
/* If particular test has been specified, check if it exists */
if(args.run_test_given) {
for(i=0; tests[i].name; i++) {
if(!strcmp(args.run_test_arg, tests[i].name))
break;
}
if(!tests[i].name) {
/* The given test has not been found, bail out with error message */
ERROR("Cannot find test '%s'. Use --list-tests option to get the list of available tests", args.run_test_arg);
goto main_err;
}
}
/* The beginning of tests */
if(volume_test(sx, cluster, local_dir_path, uri, filter_dir, &args, NULL, NULL, 3))
goto main_err;
if(volume_test(sx, cluster, local_dir_path, uri, filter_dir, &args, "aes256", NULL, 1))
goto main_err;
if(volume_test(sx, cluster, local_dir_path, uri, filter_dir, &args, "zcomp", "level:1", 1))
goto main_err;
if(volume_test(sx, cluster, local_dir_path, uri, filter_dir, &args, "attribs", NULL, 1))
goto main_err;
if(volume_test(sx, cluster, local_dir_path, uri, filter_dir, &args, "undelete", TRASH_NAME, 1))
goto main_err;
for(i=0; tests[i].name; i++)
if(!tests[i].for_volume && (args.run_test_given ? !strcmp(args.run_test_arg, tests[i].name) : 1) && run_test(sx, cluster, local_dir_path, NULL, uri->profile, uri->host, filter_dir, &args, 1, 1, &tests[i])) {
failed_test_msg(&args, &tests[i]);
goto main_err;
}
/* The end of tests */
PRINT("All tests succeeded");
}
ret = 0;
main_err:
if(local_dir_path && rmdir(local_dir_path)) {
ERROR("Cannot delete '%s' directory: %s", local_dir_path, strerror(errno));
ret = 1;
}
free(local_dir_path);
free(filter_dir);
sxc_cluster_free(cluster);
sxc_free_uri(uri);
sxc_shutdown(sx, 0);
cmdline_parser_free(&args);
return ret;
} /* main */
|