1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060
|
/*
* Copyright 2000, International Business Machines Corporation and others.
* All Rights Reserved.
*
* This software has been released under the terms of the IBM Public
* License. For details, see the LICENSE file in the top-level source
* directory or online at http://www.openafs.org/dl/license10.html
*/
/* afs_fileprocs.c - Complete File Server request routines */
/* */
/* Information Technology Center */
/* Carnegie Mellon University */
/* */
/* Date: 8/10/88 */
/* */
/* Function - A set of routines to handle the various file Server */
/* requests; these routines are invoked by rxgen. */
/* */
/* ********************************************************************** */
/*
* GetVolumePackage disables Rx keepalives; PutVolumePackage re-enables.
* If callbacks are to be broken, keepalives should be enabled in the
* stub while that occurs; disabled while disk I/O is in process.
*/
/*
* in Check_PermissionRights, certain privileges are afforded to the owner
* of the volume, or the owner of a file. Are these considered "use of
* privilege"?
*/
#include <afsconfig.h>
#include <afs/param.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#ifdef AFS_SGI_ENV
#undef SHARED /* XXX */
#endif
#ifdef AFS_NT40_ENV
#include <fcntl.h>
#else
#include <sys/param.h>
#include <sys/file.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#ifndef AFS_LINUX20_ENV
#include <net/if.h>
#ifndef AFS_ARM_DARWIN_ENV
#include <netinet/if_ether.h>
#endif
#endif
#endif
#ifdef AFS_HPUX_ENV
/* included early because of name conflict on IOPEN */
#include <sys/inode.h>
#ifdef IOPEN
#undef IOPEN
#endif
#endif /* AFS_HPUX_ENV */
#include <afs/stds.h>
#include <rx/xdr.h>
#include <afs/nfs.h>
#include <afs/afs_assert.h>
#include <lwp.h>
#include <lock.h>
#include <afs/afsint.h>
#include <afs/vldbint.h>
#include <afs/errors.h>
#include <afs/ihandle.h>
#include <afs/vnode.h>
#include <afs/volume.h>
#include <afs/ptclient.h>
#include <afs/ptuser.h>
#include <afs/prs_fs.h>
#include <afs/acl.h>
#include <rx/rx.h>
#include <rx/rx_globals.h>
#include <sys/stat.h>
#if ! defined(AFS_SGI_ENV) && ! defined(AFS_AIX32_ENV) && ! defined(AFS_NT40_ENV) && ! defined(AFS_LINUX20_ENV) && !defined(AFS_DARWIN_ENV) && !defined(AFS_XBSD_ENV)
#include <sys/map.h>
#endif
#if !defined(AFS_NT40_ENV)
#include <unistd.h>
#endif
#if !defined(AFS_SGI_ENV) && !defined(AFS_NT40_ENV)
#ifdef AFS_AIX_ENV
#include <sys/statfs.h>
#include <sys/lockf.h>
#else
#if !defined(AFS_SUN5_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_DARWIN_ENV) && !defined(AFS_XBSD_ENV)
#include <sys/dk.h>
#endif
#endif
#endif
#include <afs/cellconfig.h>
#include <afs/keys.h>
#include <signal.h>
#include <afs/partition.h>
#include "viced_prototypes.h"
#include "viced.h"
#include "host.h"
#include "callback.h"
#include <afs/unified_afs.h>
#include <afs/audit.h>
#include <afs/afsutil.h>
#include <afs/dir.h>
extern void SetDirHandle(DirHandle * dir, Vnode * vnode);
extern void FidZap(DirHandle * file);
extern void FidZero(DirHandle * file);
#ifdef AFS_PTHREAD_ENV
pthread_mutex_t fileproc_glock_mutex;
#endif /* AFS_PTHREAD_ENV */
#ifdef O_LARGEFILE
#define afs_stat stat64
#define afs_fstat fstat64
#define afs_open open64
#else /* !O_LARGEFILE */
#define afs_stat stat
#define afs_fstat fstat
#define afs_open open
#endif /* !O_LARGEFILE */
/* Useful local defines used by this module */
#define DONTCHECK 0
#define MustNOTBeDIR 1
#define MustBeDIR 2
#define TVS_SDATA 1
#define TVS_SSTATUS 2
#define TVS_CFILE 4
#define TVS_SLINK 8
#define TVS_MKDIR 0x10
#define CHK_FETCH 0x10
#define CHK_FETCHDATA 0x10
#define CHK_FETCHACL 0x11
#define CHK_FETCHSTATUS 0x12
#define CHK_STOREDATA 0x00
#define CHK_STOREACL 0x01
#define CHK_STORESTATUS 0x02
#define OWNERREAD 0400
#define OWNERWRITE 0200
#define OWNEREXEC 0100
#ifdef USE_GROUP_PERMS
#define GROUPREAD 0040
#define GROUPWRITE 0020
#define GROUPREXEC 0010
#endif
/* The following errors were not defined in NT. They are given unique
* names here to avoid any potential collision.
*/
#define FSERR_ELOOP 90
#define FSERR_EOPNOTSUPP 122
#define FSERR_ECONNREFUSED 130
#define NOTACTIVECALL 0
#define ACTIVECALL 1
#define CREATE_SGUID_ADMIN_ONLY 1
extern struct afsconf_dir *confDir;
extern afs_int32 dataVersionHigh;
extern int SystemId;
static struct AFSCallStatistics AFSCallStats;
#if FS_STATS_DETAILED
struct fs_stats_FullPerfStats afs_FullPerfStats;
extern int AnonymousID;
#endif /* FS_STATS_DETAILED */
#if OPENAFS_VOL_STATS
static const char nullString[] = "";
#endif /* OPENAFS_VOL_STATS */
struct afs_FSStats {
afs_int32 NothingYet;
};
struct afs_FSStats afs_fsstats;
int LogLevel = 0;
int supported = 1;
int Console = 0;
afs_int32 BlocksSpare = 1024; /* allow 1 MB overruns */
afs_int32 PctSpare;
extern afs_int32 implicitAdminRights;
extern afs_int32 readonlyServer;
extern int CopyOnWrite_calls, CopyOnWrite_off0, CopyOnWrite_size0;
extern afs_fsize_t CopyOnWrite_maxsize;
/*
* Externals used by the xstat code.
*/
extern VolPkgStats VStats;
extern int CEs, CEBlocks;
extern int HTs, HTBlocks;
afs_int32 FetchData_RXStyle(Volume * volptr, Vnode * targetptr,
struct rx_call *Call, afs_sfsize_t Pos,
afs_sfsize_t Len, afs_int32 Int64Mode,
#if FS_STATS_DETAILED
afs_sfsize_t * a_bytesToFetchP,
afs_sfsize_t * a_bytesFetchedP
#endif /* FS_STATS_DETAILED */
);
afs_int32 StoreData_RXStyle(Volume * volptr, Vnode * targetptr,
struct AFSFid *Fid, struct client *client,
struct rx_call *Call, afs_fsize_t Pos,
afs_fsize_t Length, afs_fsize_t FileLength,
int sync,
#if FS_STATS_DETAILED
afs_sfsize_t * a_bytesToStoreP,
afs_sfsize_t * a_bytesStoredP
#endif /* FS_STATS_DETAILED */
);
#ifdef AFS_SGI_XFS_IOPS_ENV
#include <afs/xfsattrs.h>
static int
GetLinkCount(Volume * avp, struct stat *astat)
{
if (!strcmp("xfs", astat->st_fstype)) {
return (astat->st_mode & AFS_XFS_MODE_LINK_MASK);
} else
return astat->st_nlink;
}
#else
#define GetLinkCount(V, S) (S)->st_nlink
#endif
afs_int32
SpareComp(Volume * avolp)
{
afs_int32 temp;
FS_LOCK;
if (PctSpare) {
temp = V_maxquota(avolp);
if (temp == 0) {
/* no matter; doesn't check in this case */
FS_UNLOCK;
return 0;
}
temp = (temp * PctSpare) / 100;
FS_UNLOCK;
return temp;
} else {
FS_UNLOCK;
return BlocksSpare;
}
} /*SpareComp */
/*
* Set the volume synchronization parameter for this volume. If it changes,
* the Cache Manager knows that the volume must be purged from the stat cache.
*/
static void
SetVolumeSync(struct AFSVolSync *async, Volume * avol)
{
FS_LOCK;
/* date volume instance was created */
if (async) {
if (avol)
async->spare1 = avol->header->diskstuff.creationDate;
else
async->spare1 = 0;
async->spare2 = 0;
async->spare3 = 0;
async->spare4 = 0;
async->spare5 = 0;
async->spare6 = 0;
}
FS_UNLOCK;
} /*SetVolumeSync */
/**
* Verify that the on-disk size for a vnode matches the length in the vnode
* index.
*
* @param[in] vp Volume pointer
* @param[in] vnp Vnode pointer
* @param[in] alen Size of the vnode on disk, if known. If unknown, give -1,
* and CheckLength itself will determine the on-disk size.
*
* @return operation status
* @retval 0 lengths match
* @retval nonzero Error; either the lengths do not match or there was an
* error determining the on-disk size. The volume should be
* taken offline and salvaged.
*/
static int
CheckLength(struct Volume *vp, struct Vnode *vnp, afs_sfsize_t alen)
{
afs_sfsize_t vlen;
VN_GET_LEN(vlen, vnp);
if (alen < 0) {
FdHandle_t *fdP;
fdP = IH_OPEN(vnp->handle);
if (fdP == NULL) {
ViceLog(0, ("CheckLength: cannot open inode for fid %lu.%lu.%lu\n",
afs_printable_uint32_lu(vp->hashid),
afs_printable_uint32_lu(Vn_id(vnp)),
afs_printable_uint32_lu(vnp->disk.uniquifier)));
return -1;
}
alen = FDH_SIZE(fdP);
FDH_CLOSE(fdP);
if (alen < 0) {
afs_int64 alen64 = alen;
ViceLog(0, ("CheckLength: cannot get size for inode for fid "
"%lu.%lu.%lu; FDH_SIZE returned %" AFS_INT64_FMT "\n",
afs_printable_uint32_lu(vp->hashid),
afs_printable_uint32_lu(Vn_id(vnp)),
afs_printable_uint32_lu(vnp->disk.uniquifier),
alen64));
return -1;
}
}
if (alen != vlen) {
afs_int64 alen64 = alen, vlen64 = vlen;
ViceLog(0, ("Fid %lu.%lu.%lu has inconsistent length (index "
"%" AFS_INT64_FMT ", inode %" AFS_INT64_FMT "); volume "
"must be salvaged\n",
afs_printable_uint32_lu(vp->hashid),
afs_printable_uint32_lu(Vn_id(vnp)),
afs_printable_uint32_lu(vnp->disk.uniquifier),
vlen64, alen64));
return -1;
}
return 0;
}
static void
LogClientError(const char *message, struct rx_connection *tcon, afs_int32 viceid, struct AFSFid *Fid)
{
char hoststr[16];
if (Fid) {
ViceLog(0, ("%s while handling request from host %s:%d viceid %d "
"fid %lu.%lu.%lu, failing request\n",
message,
afs_inet_ntoa_r(rx_HostOf(rx_PeerOf(tcon)), hoststr),
(int)ntohs(rx_PortOf(rx_PeerOf(tcon))),
viceid,
afs_printable_uint32_lu(Fid->Volume),
afs_printable_uint32_lu(Fid->Vnode),
afs_printable_uint32_lu(Fid->Unique)));
} else {
ViceLog(0, ("%s while handling request from host %s:%d viceid %d "
"fid (none), failing request\n",
message,
afs_inet_ntoa_r(rx_HostOf(rx_PeerOf(tcon)), hoststr),
(int)ntohs(rx_PortOf(rx_PeerOf(tcon))),
viceid));
}
}
/*
* Note that this function always returns a held host, so
* that CallPostamble can block without the host's disappearing.
* Call returns rx connection in passed in *tconn
*
* 'Fid' is optional, and is just used for printing log messages.
*/
static int
CallPreamble(struct rx_call *acall, int activecall, struct AFSFid *Fid,
struct rx_connection **tconn, struct host **ahostp)
{
struct host *thost;
struct client *tclient;
afs_int32 viceid = -1;
int retry_flag = 1;
int code = 0;
char hoststr[16], hoststr2[16];
#ifdef AFS_PTHREAD_ENV
struct ubik_client *uclient;
#endif
*ahostp = NULL;
if (!tconn) {
ViceLog(0, ("CallPreamble: unexpected null tconn!\n"));
return -1;
}
*tconn = rx_ConnectionOf(acall);
H_LOCK;
retry:
tclient = h_FindClient_r(*tconn, &viceid);
if (!tclient) {
H_UNLOCK;
LogClientError("CallPreamble: Couldn't get client", *tconn, viceid, Fid);
return VBUSY;
}
thost = tclient->host;
if (tclient->prfail == 1) { /* couldn't get the CPS */
if (!retry_flag) {
h_ReleaseClient_r(tclient);
h_Release_r(thost);
H_UNLOCK;
LogClientError("CallPreamble: Couldn't get CPS", *tconn, viceid, Fid);
return -1001;
}
retry_flag = 0; /* Retry once */
/* Take down the old connection and re-read the key file */
ViceLog(0,
("CallPreamble: Couldn't get CPS. Reconnect to ptserver\n"));
#ifdef AFS_PTHREAD_ENV
uclient = (struct ubik_client *)pthread_getspecific(viced_uclient_key);
/* Is it still necessary to drop this? We hit the net, we should... */
H_UNLOCK;
if (uclient) {
hpr_End(uclient);
uclient = NULL;
}
code = hpr_Initialize(&uclient);
if (!code)
osi_Assert(pthread_setspecific(viced_uclient_key, (void *)uclient) == 0);
H_LOCK;
#else
code = pr_Initialize(2, AFSDIR_SERVER_ETC_DIRPATH, 0);
#endif
if (code) {
h_ReleaseClient_r(tclient);
h_Release_r(thost);
H_UNLOCK;
LogClientError("CallPreamble: couldn't reconnect to ptserver", *tconn, viceid, Fid);
return -1001;
}
tclient->prfail = 2; /* Means re-eval client's cps */
h_ReleaseClient_r(tclient);
h_Release_r(thost);
goto retry;
}
tclient->LastCall = thost->LastCall = FT_ApproxTime();
if (activecall) /* For all but "GetTime", "GetStats", and "GetCaps" calls */
thost->ActiveCall = thost->LastCall;
h_Lock_r(thost);
if (thost->hostFlags & HOSTDELETED) {
ViceLog(3,
("Discarded a packet for deleted host %s:%d\n",
afs_inet_ntoa_r(thost->host, hoststr), ntohs(thost->port)));
code = VBUSY; /* raced, so retry */
} else if ((thost->hostFlags & VENUSDOWN)
|| (thost->hostFlags & HFE_LATER)) {
if (BreakDelayedCallBacks_r(thost)) {
ViceLog(0,
("BreakDelayedCallbacks FAILED for host %s:%d which IS UP. Connection from %s:%d. Possible network or routing failure.\n",
afs_inet_ntoa_r(thost->host, hoststr), ntohs(thost->port), afs_inet_ntoa_r(rxr_HostOf(*tconn), hoststr2),
ntohs(rxr_PortOf(*tconn))));
if (MultiProbeAlternateAddress_r(thost)) {
ViceLog(0,
("MultiProbe failed to find new address for host %s:%d\n",
afs_inet_ntoa_r(thost->host, hoststr),
ntohs(thost->port)));
code = -1;
} else {
ViceLog(0,
("MultiProbe found new address for host %s:%d\n",
afs_inet_ntoa_r(thost->host, hoststr),
ntohs(thost->port)));
if (BreakDelayedCallBacks_r(thost)) {
ViceLog(0,
("BreakDelayedCallbacks FAILED AGAIN for host %s:%d which IS UP. Connection from %s:%d. Possible network or routing failure.\n",
afs_inet_ntoa_r(thost->host, hoststr), ntohs(thost->port), afs_inet_ntoa_r(rxr_HostOf(*tconn), hoststr2),
ntohs(rxr_PortOf(*tconn))));
code = -1;
}
}
}
} else {
code = 0;
}
h_ReleaseClient_r(tclient);
h_Unlock_r(thost);
H_UNLOCK;
*ahostp = thost;
return code;
} /*CallPreamble */
static afs_int32
CallPostamble(struct rx_connection *aconn, afs_int32 ret,
struct host *ahost)
{
struct host *thost;
struct client *tclient;
int translate = 0;
H_LOCK;
tclient = h_FindClient_r(aconn, NULL);
if (!tclient)
goto busyout;
thost = tclient->host;
if (thost->hostFlags & HERRORTRANS)
translate = 1;
h_ReleaseClient_r(tclient);
if (ahost) {
if (ahost != thost) {
/* host/client recycle */
char hoststr[16], hoststr2[16];
ViceLog(0, ("CallPostamble: ahost %s:%d (%p) != thost "
"%s:%d (%p)\n",
afs_inet_ntoa_r(ahost->host, hoststr),
ntohs(ahost->port),
ahost,
afs_inet_ntoa_r(thost->host, hoststr2),
ntohs(thost->port),
thost));
}
/* return the reference taken in CallPreamble */
h_Release_r(ahost);
} else {
char hoststr[16];
ViceLog(0, ("CallPostamble: null ahost for thost %s:%d (%p)\n",
afs_inet_ntoa_r(thost->host, hoststr),
ntohs(thost->port),
thost));
}
/* return the reference taken in local h_FindClient_r--h_ReleaseClient_r
* does not decrement refcount on client->host */
h_Release_r(thost);
busyout:
H_UNLOCK;
return (translate ? sys_error_to_et(ret) : ret);
} /*CallPostamble */
/*
* Returns the volume and vnode pointers associated with file Fid; the lock
* type on the vnode is set to lock. Note that both volume/vnode's ref counts
* are incremented and they must be eventualy released.
*/
static afs_int32
CheckVnodeWithCall(AFSFid * fid, Volume ** volptr, struct VCallByVol *cbv,
Vnode ** vptr, int lock)
{
Error fileCode = 0;
Error local_errorCode, errorCode = -1;
static struct timeval restartedat = { 0, 0 };
if (fid->Volume == 0 || fid->Vnode == 0) /* not: || fid->Unique == 0) */
return (EINVAL);
if ((*volptr) == 0) {
extern int VInit;
while (1) {
int restarting =
#ifdef AFS_DEMAND_ATTACH_FS
VSALVAGE
#else
VRESTARTING
#endif
;
#ifdef AFS_PTHREAD_ENV
static const struct timespec timeout_ts = { 0, 0 };
static const struct timespec * const ts = &timeout_ts;
#else
static const struct timespec * const ts = NULL;
#endif
errorCode = 0;
*volptr = VGetVolumeWithCall(&local_errorCode, &errorCode,
fid->Volume, ts, cbv);
if (!errorCode) {
osi_Assert(*volptr);
break;
}
if ((errorCode == VOFFLINE) && (VInit < 2)) {
/* The volume we want may not be attached yet because
* the volume initialization is not yet complete.
* We can do several things:
* 1. return -1, which will cause users to see
* "connection timed out". This is more or
* less the same as always, except that the servers
* may appear to bounce up and down while they
* are actually restarting.
* 2. return VBUSY which will cause clients to
* sleep and retry for 6.5 - 15 minutes, depending
* on what version of the CM they are running. If
* the file server takes longer than that interval
* to attach the desired volume, then the application
* will see an ENODEV or EIO. This approach has
* the advantage that volumes which have been attached
* are immediately available, it keeps the server's
* immediate backlog low, and the call is interruptible
* by the user. Users see "waiting for busy volume."
* 3. sleep here and retry. Some people like this approach
* because there is no danger of seeing errors. However,
* this approach only works with a bounded number of
* clients, since the pending queues will grow without
* stopping. It might be better to find a way to take
* this call and stick it back on a queue in order to
* recycle this thread for a different request.
* 4. Return a new error code, which new cache managers will
* know enough to interpret as "sleep and retry", without
* the upper bound of 6-15 minutes that is imposed by the
* VBUSY handling. Users will see "waiting for
* busy volume," so they know that something is
* happening. Old cache managers must be able to do
* something reasonable with this, for instance, mark the
* server down. Fortunately, any error code < 0
* will elicit that behavior. See #1.
* 5. Some combination of the above. I like doing #2 for 10
* minutes, followed by #4. 3.1b and 3.2 cache managers
* will be fine as long as the restart period is
* not longer than 6.5 minutes, otherwise they may
* return ENODEV to users. 3.3 cache managers will be
* fine for 10 minutes, then will return
* ETIMEDOUT. 3.4 cache managers will just wait
* until the call works or fails definitively.
* NB. The problem with 2,3,4,5 is that old clients won't
* fail over to an alternate read-only replica while this
* server is restarting. 3.4 clients will fail over right away.
*/
if (restartedat.tv_sec == 0) {
/* I'm not really worried about when we restarted, I'm */
/* just worried about when the first VBUSY was returned. */
FT_GetTimeOfDay(&restartedat, 0);
if (busyonrst) {
FS_LOCK;
afs_perfstats.fs_nBusies++;
FS_UNLOCK;
}
return (busyonrst ? VBUSY : restarting);
} else {
struct timeval now;
FT_GetTimeOfDay(&now, 0);
if ((now.tv_sec - restartedat.tv_sec) < (11 * 60)) {
if (busyonrst) {
FS_LOCK;
afs_perfstats.fs_nBusies++;
FS_UNLOCK;
}
return (busyonrst ? VBUSY : restarting);
} else {
return (restarting);
}
}
}
/* allow read operations on busy volume.
* must check local_errorCode because demand attach fs
* can have local_errorCode == VSALVAGING, errorCode == VBUSY */
else if (local_errorCode == VBUSY && lock == READ_LOCK) {
#ifdef AFS_DEMAND_ATTACH_FS
/* DAFS case is complicated by the fact that local_errorCode can
* be VBUSY in cases where the volume is truly offline */
if (!*volptr) {
/* volume is in VOL_STATE_UNATTACHED */
return (errorCode);
}
#endif /* AFS_DEMAND_ATTACH_FS */
errorCode = 0;
break;
} else if (errorCode)
return (errorCode);
}
}
osi_Assert(*volptr);
/* get the vnode */
*vptr = VGetVnode(&errorCode, *volptr, fid->Vnode, lock);
if (errorCode)
return (errorCode);
if ((*vptr)->disk.uniquifier != fid->Unique) {
VPutVnode(&fileCode, *vptr);
osi_Assert(fileCode == 0);
*vptr = 0;
return (VNOVNODE); /* return the right error code, at least */
}
return (0);
} /*CheckVnode */
static_inline afs_int32
CheckVnode(AFSFid * fid, Volume ** volptr, Vnode ** vptr, int lock)
{
return CheckVnodeWithCall(fid, volptr, NULL, vptr, lock);
}
/*
* This routine returns the ACL associated with the targetptr. If the
* targetptr isn't a directory, we access its parent dir and get the ACL
* thru the parent; in such case the parent's vnode is returned in
* READ_LOCK mode.
*/
static afs_int32
SetAccessList(Vnode ** targetptr, Volume ** volume,
struct acl_accessList **ACL, int *ACLSize, Vnode ** parent,
AFSFid * Fid, int Lock)
{
if ((*targetptr)->disk.type == vDirectory) {
*parent = 0;
*ACL = VVnodeACL(*targetptr);
*ACLSize = VAclSize(*targetptr);
return (0);
} else {
osi_Assert(Fid != 0);
while (1) {
VnodeId parentvnode;
Error errorCode = 0;
parentvnode = (*targetptr)->disk.parent;
VPutVnode(&errorCode, *targetptr);
*targetptr = 0;
if (errorCode)
return (errorCode);
*parent = VGetVnode(&errorCode, *volume, parentvnode, READ_LOCK);
if (errorCode)
return (errorCode);
*ACL = VVnodeACL(*parent);
*ACLSize = VAclSize(*parent);
if ((errorCode = CheckVnode(Fid, volume, targetptr, Lock)) != 0)
return (errorCode);
if ((*targetptr)->disk.parent != parentvnode) {
VPutVnode(&errorCode, *parent);
*parent = 0;
if (errorCode)
return (errorCode);
} else
return (0);
}
}
} /*SetAccessList */
/* Must not be called with H_LOCK held */
static void
client_CheckRights(struct client *client, struct acl_accessList *ACL,
afs_int32 *rights)
{
*rights = 0;
ObtainReadLock(&client->lock);
if (client->CPS.prlist_len > 0 && !client->deleted &&
client->host && !(client->host->hostFlags & HOSTDELETED))
acl_CheckRights(ACL, &client->CPS, rights);
ReleaseReadLock(&client->lock);
}
/* Must not be called with H_LOCK held */
static afs_int32
client_HasAsMember(struct client *client, afs_int32 id)
{
afs_int32 code = 0;
ObtainReadLock(&client->lock);
if (client->CPS.prlist_len > 0 && !client->deleted &&
client->host && !(client->host->hostFlags & HOSTDELETED))
code = acl_IsAMember(id, &client->CPS);
ReleaseReadLock(&client->lock);
return code;
}
/*
* Compare the directory's ACL with the user's access rights in the client
* connection and return the user's and everybody else's access permissions
* in rights and anyrights, respectively
*/
static afs_int32
GetRights(struct client *client, struct acl_accessList *ACL,
afs_int32 * rights, afs_int32 * anyrights)
{
extern prlist SystemAnyUserCPS;
afs_int32 hrights = 0;
#ifndef AFS_PTHREAD_ENV
int code;
#endif
if (acl_CheckRights(ACL, &SystemAnyUserCPS, anyrights) != 0) {
ViceLog(0, ("CheckRights failed\n"));
*anyrights = 0;
}
*rights = 0;
client_CheckRights(client, ACL, rights);
/* wait if somebody else is already doing the getCPS call */
H_LOCK;
while (client->host->hostFlags & HCPS_INPROGRESS) {
client->host->hostFlags |= HCPS_WAITING; /* I am waiting */
#ifdef AFS_PTHREAD_ENV
CV_WAIT(&client->host->cond, &host_glock_mutex);
#else /* AFS_PTHREAD_ENV */
if ((code =
LWP_WaitProcess(&(client->host->hostFlags))) != LWP_SUCCESS)
ViceLog(0, ("LWP_WaitProcess returned %d\n", code));
#endif /* AFS_PTHREAD_ENV */
}
if (!client->host->hcps.prlist_len || !client->host->hcps.prlist_val) {
char hoststr[16];
ViceLog(5,
("CheckRights: len=%u, for host=%s:%d\n",
client->host->hcps.prlist_len,
afs_inet_ntoa_r(client->host->host, hoststr),
ntohs(client->host->port)));
} else
acl_CheckRights(ACL, &client->host->hcps, &hrights);
H_UNLOCK;
/* Allow system:admin the rights given with the -implicit option */
if (client_HasAsMember(client, SystemId))
*rights |= implicitAdminRights;
*rights |= hrights;
*anyrights |= hrights;
return (0);
} /*GetRights */
/*
* VanillaUser returns 1 (true) if the user is a vanilla user (i.e., not
* a System:Administrator)
*/
static afs_int32
VanillaUser(struct client *client)
{
if (client_HasAsMember(client, SystemId))
return (0); /* not a system administrator, then you're "vanilla" */
return (1);
} /*VanillaUser */
/*------------------------------------------------------------------------
* GetVolumePackage
*
* Description:
* This unusual afs_int32-parameter routine encapsulates all volume
* package related operations together in a single function; it's
* called by almost all AFS interface calls.
*
* Arguments:
* acall : Ptr to Rx call on which this request came in.
* Fid : the AFS fid the caller is acting on
* volptr : returns a pointer to the volume struct
* targetptr : returns a pointer to the vnode struct
* chkforDir : whether to check for if vnode is a dir
* parent : returns a pointer to the parent of this vnode
* client : returns a pointer to the calling client
* locktype : indicates what kind of lock to take on vnodes
* rights : returns a pointer to caller's rights
* anyrights : returns a pointer to anonymous' rights
*
* Returns:
* 0 on success
* appropriate error based on permission or invalid operation.
*
* Environment:
* Nothing interesting.
*
* Side Effects:
* On success, disables keepalives on the call. Caller should re-enable
* after completing disk I/O.
*------------------------------------------------------------------------*/
static afs_int32
GetVolumePackageWithCall(struct rx_call *acall, struct VCallByVol *cbv,
AFSFid * Fid, Volume ** volptr,
Vnode ** targetptr, int chkforDir, Vnode ** parent,
struct client **client, int locktype, afs_int32 * rights,
afs_int32 * anyrights)
{
struct acl_accessList *aCL = NULL; /* Internal access List */
int aCLSize; /* size of the access list */
Error errorCode = 0; /* return code to caller */
struct rx_connection *tcon = rx_ConnectionOf(acall);
rx_KeepAliveOff(acall);
if ((errorCode = CheckVnodeWithCall(Fid, volptr, cbv, targetptr, locktype)))
goto gvpdone;
if (chkforDir) {
if (chkforDir == MustNOTBeDIR
&& ((*targetptr)->disk.type == vDirectory)) {
errorCode = EISDIR;
goto gvpdone;
}
else if (chkforDir == MustBeDIR
&& ((*targetptr)->disk.type != vDirectory)) {
errorCode = ENOTDIR;
goto gvpdone;
}
}
if ((errorCode =
SetAccessList(targetptr, volptr, &aCL, &aCLSize, parent,
(chkforDir == MustBeDIR ? (AFSFid *) 0 : Fid),
(chkforDir == MustBeDIR ? 0 : locktype))) != 0)
goto gvpdone;
if (chkforDir == MustBeDIR)
osi_Assert((*parent) == 0);
if (!(*client)) {
if ((errorCode = GetClient(tcon, client)) != 0)
goto gvpdone;
if (!(*client)) {
errorCode = EINVAL;
goto gvpdone;
}
}
GetRights(*client, aCL, rights, anyrights);
/* ok, if this is not a dir, set the PRSFS_ADMINISTER bit iff we're the owner */
if ((*targetptr)->disk.type != vDirectory) {
/* anyuser can't be owner, so only have to worry about rights, not anyrights */
if ((*targetptr)->disk.owner == (*client)->ViceId)
(*rights) |= PRSFS_ADMINISTER;
else
(*rights) &= ~PRSFS_ADMINISTER;
}
#ifdef ADMIN_IMPLICIT_LOOKUP
/* admins get automatic lookup on everything */
if (!VanillaUser(*client))
(*rights) |= PRSFS_LOOKUP;
#endif /* ADMIN_IMPLICIT_LOOKUP */
gvpdone:
if (errorCode)
rx_KeepAliveOn(acall);
return errorCode;
} /*GetVolumePackage */
static_inline afs_int32
GetVolumePackage(struct rx_call *acall, AFSFid * Fid, Volume ** volptr,
Vnode ** targetptr, int chkforDir, Vnode ** parent,
struct client **client, int locktype, afs_int32 * rights,
afs_int32 * anyrights)
{
return GetVolumePackageWithCall(acall, NULL, Fid, volptr, targetptr,
chkforDir, parent, client, locktype,
rights, anyrights);
}
/*------------------------------------------------------------------------
* PutVolumePackage
*
* Description:
* This is the opposite of GetVolumePackage(), and is always used at
* the end of AFS calls to put back all used vnodes and the volume
* in the proper order!
*
* Arguments:
* acall : Ptr to Rx call on which this request came in.
* parentwhentargetnotdir : a pointer to the parent when the target isn't
* a directory vnode
* targetptr : a pointer to the vnode struct
* parentptr : a pointer to the parent of this vnode
* volptr : a pointer to the volume structure
* client : a pointer to the calling client
*
* Returns:
* Nothing
*
* Environment:
* Nothing interesting.
*
* Side Effects:
* Enables keepalives on the call.
*------------------------------------------------------------------------*/
static void
PutVolumePackageWithCall(struct rx_call *acall, Vnode * parentwhentargetnotdir,
Vnode * targetptr, Vnode * parentptr, Volume * volptr,
struct client **client, struct VCallByVol *cbv)
{
Error fileCode = 0; /* Error code returned by the volume package */
rx_KeepAliveOff(acall);
if (parentwhentargetnotdir) {
VPutVnode(&fileCode, parentwhentargetnotdir);
osi_Assert(!fileCode || (fileCode == VSALVAGE));
}
if (targetptr) {
VPutVnode(&fileCode, targetptr);
osi_Assert(!fileCode || (fileCode == VSALVAGE));
}
if (parentptr) {
VPutVnode(&fileCode, parentptr);
osi_Assert(!fileCode || (fileCode == VSALVAGE));
}
if (volptr) {
VPutVolumeWithCall(volptr, cbv);
}
rx_KeepAliveOn(acall);
if (*client) {
PutClient(client);
}
} /*PutVolumePackage */
static_inline void
PutVolumePackage(struct rx_call *acall, Vnode * parentwhentargetnotdir,
Vnode * targetptr, Vnode * parentptr, Volume * volptr,
struct client **client)
{
PutVolumePackageWithCall(acall, parentwhentargetnotdir, targetptr,
parentptr, volptr, client, NULL);
}
static int
VolumeOwner(struct client *client, Vnode * targetptr)
{
afs_int32 owner = V_owner(targetptr->volumePtr); /* get volume owner */
if (owner >= 0)
return (client->ViceId == owner);
else {
/*
* We don't have to check for host's cps since only regular
* viceid are volume owners.
*/
return (client_HasAsMember(client, owner));
}
} /*VolumeOwner */
static int
VolumeRootVnode(Vnode * targetptr)
{
return ((targetptr->vnodeNumber == ROOTVNODE)
&& (targetptr->disk.uniquifier == 1));
} /*VolumeRootVnode */
/*
* Check if target file has the proper access permissions for the Fetch
* (FetchData, FetchACL, FetchStatus) and Store (StoreData, StoreACL,
* StoreStatus) related calls
*/
/* this code should probably just set a "priv" flag where all the audit events
* are now, and only generate the audit event once at the end of the routine,
* thus only generating the event if all the checks succeed, but only because
* of the privilege XXX
*/
static afs_int32
Check_PermissionRights(Vnode * targetptr, struct client *client,
afs_int32 rights, int CallingRoutine,
AFSStoreStatus * InStatus)
{
Error errorCode = 0;
#define OWNSp(client, target) ((client)->ViceId == (target)->disk.owner)
#define CHOWN(i,t) (((i)->Mask & AFS_SETOWNER) &&((i)->Owner != (t)->disk.owner))
#define CHGRP(i,t) (((i)->Mask & AFS_SETGROUP) &&((i)->Group != (t)->disk.group))
if (CallingRoutine & CHK_FETCH) {
if (CallingRoutine == CHK_FETCHDATA || VanillaUser(client)) {
if (targetptr->disk.type == vDirectory
|| targetptr->disk.type == vSymlink) {
if (!(rights & PRSFS_LOOKUP)
#ifdef ADMIN_IMPLICIT_LOOKUP
/* grant admins fetch on all directories */
&& VanillaUser(client)
#endif /* ADMIN_IMPLICIT_LOOKUP */
&& !VolumeOwner(client, targetptr))
return (EACCES);
} else { /* file */
/* must have read access, or be owner and have insert access */
if (!(rights & PRSFS_READ)
&& !((OWNSp(client, targetptr) && (rights & PRSFS_INSERT)
&& (client->ViceId != AnonymousID))))
return (EACCES);
}
if (CallingRoutine == CHK_FETCHDATA
&& targetptr->disk.type == vFile)
#ifdef USE_GROUP_PERMS
if (!OWNSp(client, targetptr)
&& !client_HasAsMember(client, targetptr->disk.owner)) {
errorCode =
(((GROUPREAD | GROUPEXEC) & targetptr->disk.modeBits)
? 0 : EACCES);
} else {
errorCode =
(((OWNERREAD | OWNEREXEC) & targetptr->disk.modeBits)
? 0 : EACCES);
}
#else
/*
* The check with the ownership below is a kludge to allow
* reading of files created with no read permission. The owner
* of the file is always allowed to read it.
*/
if ((client->ViceId != targetptr->disk.owner)
&& VanillaUser(client))
errorCode =
(((OWNERREAD | OWNEREXEC) & targetptr->disk.
modeBits) ? 0 : EACCES);
#endif
} else { /* !VanillaUser(client) && !FetchData */
osi_audit(PrivilegeEvent, 0, AUD_ID,
(client ? client->ViceId : 0), AUD_INT, CallingRoutine,
AUD_END);
}
} else { /* a store operation */
if ((rights & PRSFS_INSERT) && OWNSp(client, targetptr)
&& (CallingRoutine != CHK_STOREACL)
&& (targetptr->disk.type == vFile)) {
/* bypass protection checks on first store after a create
* for the creator; also prevent chowns during this time
* unless you are a system administrator */
/****** InStatus->Owner && UnixModeBits better be SET!! */
if (CHOWN(InStatus, targetptr) || CHGRP(InStatus, targetptr)) {
if (readonlyServer)
return (VREADONLY);
else if (VanillaUser(client))
return (EPERM); /* Was EACCES */
else
osi_audit(PrivilegeEvent, 0, AUD_ID,
(client ? client->ViceId : 0), AUD_INT,
CallingRoutine, AUD_END);
}
} else {
if (CallingRoutine != CHK_STOREDATA && !VanillaUser(client)) {
osi_audit(PrivilegeEvent, 0, AUD_ID,
(client ? client->ViceId : 0), AUD_INT,
CallingRoutine, AUD_END);
} else {
if (readonlyServer) {
return (VREADONLY);
}
if (CallingRoutine == CHK_STOREACL) {
if (!(rights & PRSFS_ADMINISTER)
&& !VolumeOwner(client, targetptr))
return (EACCES);
} else { /* store data or status */
/* watch for chowns and chgrps */
if (CHOWN(InStatus, targetptr)
|| CHGRP(InStatus, targetptr)) {
if (readonlyServer)
return (VREADONLY);
else if (VanillaUser(client))
return (EPERM); /* Was EACCES */
else
osi_audit(PrivilegeEvent, 0, AUD_ID,
(client ? client->ViceId : 0), AUD_INT,
CallingRoutine, AUD_END);
}
/* must be sysadmin to set suid/sgid bits */
if ((InStatus->Mask & AFS_SETMODE) &&
#ifdef AFS_NT40_ENV
(InStatus->UnixModeBits & 0xc00) != 0) {
#else
(InStatus->UnixModeBits & (S_ISUID | S_ISGID)) != 0) {
#endif
if (readonlyServer)
return (VREADONLY);
if (VanillaUser(client))
return (EACCES);
else
osi_audit(PrivSetID, 0, AUD_ID,
(client ? client->ViceId : 0), AUD_INT,
CallingRoutine, AUD_END);
}
if (CallingRoutine == CHK_STOREDATA) {
if (readonlyServer)
return (VREADONLY);
if (!(rights & PRSFS_WRITE))
return (EACCES);
/* Next thing is tricky. We want to prevent people
* from writing files sans 0200 bit, but we want
* creating new files with 0444 mode to work. We
* don't check the 0200 bit in the "you are the owner"
* path above, but here we check the bit. However, if
* you're a system administrator, we ignore the 0200
* bit anyway, since you may have fchowned the file,
* too */
#ifdef USE_GROUP_PERMS
if ((targetptr->disk.type == vFile)
&& VanillaUser(client)) {
if (!OWNSp(client, targetptr)
&& !client_HasAsMember(client, targetptr->disk.owner)) {
errorCode =
((GROUPWRITE & targetptr->disk.modeBits)
? 0 : EACCES);
} else {
errorCode =
((OWNERWRITE & targetptr->disk.modeBits)
? 0 : EACCES);
}
} else
#endif
if ((targetptr->disk.type != vDirectory)
&& (!(targetptr->disk.modeBits & OWNERWRITE))) {
if (readonlyServer)
return (VREADONLY);
if (VanillaUser(client))
return (EACCES);
else
osi_audit(PrivilegeEvent, 0, AUD_ID,
(client ? client->ViceId : 0),
AUD_INT, CallingRoutine, AUD_END);
}
} else { /* a status store */
if (readonlyServer)
return (VREADONLY);
if (targetptr->disk.type == vDirectory) {
if (!(rights & PRSFS_DELETE)
&& !(rights & PRSFS_INSERT))
return (EACCES);
} else { /* a file or symlink */
if (!(rights & PRSFS_WRITE))
return (EACCES);
}
}
}
}
}
}
return (errorCode);
} /*Check_PermissionRights */
/*
* The Access List information is converted from its internal form in the
* target's vnode buffer (or its parent vnode buffer if not a dir), to an
* external form and returned back to the caller, via the AccessList
* structure
*/
static afs_int32
RXFetch_AccessList(Vnode * targetptr, Vnode * parentwhentargetnotdir,
struct AFSOpaque *AccessList)
{
char *eACL; /* External access list placeholder */
if (acl_Externalize_pr
(hpr_IdToName, (targetptr->disk.type ==
vDirectory ? VVnodeACL(targetptr) :
VVnodeACL(parentwhentargetnotdir)), &eACL) != 0) {
return EIO;
}
if ((strlen(eACL) + 1) > AFSOPAQUEMAX) {
acl_FreeExternalACL(&eACL);
return (E2BIG);
} else {
strcpy((char *)(AccessList->AFSOpaque_val), (char *)eACL);
AccessList->AFSOpaque_len = strlen(eACL) + 1;
}
acl_FreeExternalACL(&eACL);
return (0);
} /*RXFetch_AccessList */
/*
* The Access List information is converted from its external form in the
* input AccessList structure to the internal representation and copied into
* the target dir's vnode storage.
*/
static afs_int32
RXStore_AccessList(Vnode * targetptr, struct AFSOpaque *AccessList)
{
struct acl_accessList *newACL; /* PlaceHolder for new access list */
if (acl_Internalize_pr(hpr_NameToId, AccessList->AFSOpaque_val, &newACL)
!= 0)
return (EINVAL);
if ((newACL->size + 4) > VAclSize(targetptr))
return (E2BIG);
memcpy((char *)VVnodeACL(targetptr), (char *)newACL, (int)(newACL->size));
acl_FreeACL(&newACL);
return (0);
} /*RXStore_AccessList */
static int
CheckLink(Volume *volptr, FdHandle_t *fdP, const char *descr)
{
int code;
afs_ino_str_t ino;
code = FDH_ISUNLINKED(fdP);
if (code < 0) {
ViceLog(0, ("CopyOnWrite: error fstating volume %u inode %s (%s), errno %d\n",
V_id(volptr), PrintInode(ino, fdP->fd_ih->ih_ino), descr, errno));
return -1;
}
if (code) {
ViceLog(0, ("CopyOnWrite corruption prevention: detected zero nlink for "
"volume %u inode %s (%s), forcing volume offline\n",
V_id(volptr), PrintInode(ino, fdP->fd_ih->ih_ino), descr));
return -1;
}
return 0;
}
/* In our current implementation, each successive data store (new file
* data version) creates a new inode. This function creates the new
* inode, copies the old inode's contents to the new one, remove the old
* inode (i.e. decrement inode count -- if it's currently used the delete
* will be delayed), and modify some fields (i.e. vnode's
* disk.inodeNumber and cloned)
*/
#define COPYBUFFSIZE 8192
#define MAXFSIZE (~(afs_fsize_t) 0)
static int
CopyOnWrite(Vnode * targetptr, Volume * volptr, afs_foff_t off, afs_fsize_t len)
{
Inode ino, nearInode AFS_UNUSED;
ssize_t rdlen;
ssize_t wrlen;
afs_fsize_t size;
afs_foff_t done;
size_t length;
char *buff;
int rc; /* return code */
IHandle_t *newH; /* Use until finished copying, then cp to vnode. */
FdHandle_t *targFdP; /* Source Inode file handle */
FdHandle_t *newFdP; /* Dest Inode file handle */
if (targetptr->disk.type == vDirectory)
DFlush(); /* just in case? */
VN_GET_LEN(size, targetptr);
if (size > off)
size -= off;
else
size = 0;
if (size > len)
size = len;
buff = (char *)malloc(COPYBUFFSIZE);
if (buff == NULL) {
return EIO;
}
ino = VN_GET_INO(targetptr);
if (!VALID_INO(ino)) {
free(buff);
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
targFdP = IH_OPEN(targetptr->handle);
if (targFdP == NULL) {
rc = errno;
ViceLog(0,
("CopyOnWrite failed: Failed to open target vnode %u in volume %u (errno = %d)\n",
targetptr->vnodeNumber, V_id(volptr), rc));
free(buff);
VTakeOffline(volptr);
return rc;
}
nearInode = VN_GET_INO(targetptr);
ino =
IH_CREATE(V_linkHandle(volptr), V_device(volptr),
VPartitionPath(V_partition(volptr)), nearInode,
V_id(volptr), targetptr->vnodeNumber,
targetptr->disk.uniquifier,
(int)targetptr->disk.dataVersion);
if (!VALID_INO(ino)) {
ViceLog(0,
("CopyOnWrite failed: Partition %s that contains volume %u may be out of free inodes(errno = %d)\n",
volptr->partition->name, V_id(volptr), errno));
FDH_CLOSE(targFdP);
free(buff);
return ENOSPC;
}
IH_INIT(newH, V_device(volptr), V_id(volptr), ino);
newFdP = IH_OPEN(newH);
osi_Assert(newFdP != NULL);
rc = CheckLink(volptr, targFdP, "source");
if (!rc) {
rc = CheckLink(volptr, newFdP, "dest");
}
if (rc) {
FDH_REALLYCLOSE(newFdP);
IH_RELEASE(newH);
FDH_REALLYCLOSE(targFdP);
IH_DEC(V_linkHandle(volptr), ino, V_parentId(volptr));
free(buff);
VTakeOffline(volptr);
return VSALVAGE;
}
done = off;
while (size > 0) {
if (size > COPYBUFFSIZE) { /* more than a buffer */
length = COPYBUFFSIZE;
size -= COPYBUFFSIZE;
} else {
length = size;
size = 0;
}
rdlen = FDH_PREAD(targFdP, buff, length, done);
if (rdlen == length) {
wrlen = FDH_PWRITE(newFdP, buff, length, done);
done += rdlen;
} else
wrlen = 0;
/* Callers of this function are not prepared to recover
* from error that put the filesystem in an inconsistent
* state. Make sure that we force the volume off-line if
* we some error other than ENOSPC - 4.29.99)
*
* In case we are unable to write the required bytes, and the
* error code indicates that the disk is full, we roll-back to
* the initial state.
*/
if ((rdlen != length) || (wrlen != length)) {
if ((wrlen < 0) && (errno == ENOSPC)) { /* disk full */
ViceLog(0,
("CopyOnWrite failed: Partition %s containing volume %u is full\n",
volptr->partition->name, V_id(volptr)));
/* remove destination inode which was partially copied till now */
FDH_REALLYCLOSE(newFdP);
IH_RELEASE(newH);
FDH_REALLYCLOSE(targFdP);
rc = IH_DEC(V_linkHandle(volptr), ino, V_parentId(volptr));
if (rc) {
ViceLog(0,
("CopyOnWrite failed: error %u after i_dec on disk full, volume %u in partition %s needs salvage\n",
rc, V_id(volptr), volptr->partition->name));
VTakeOffline(volptr);
}
free(buff);
return ENOSPC;
} else {
/* length, rdlen, and wrlen may or may not be 64-bits wide;
* since we never do any I/O anywhere near 2^32 bytes at a
* time, just case to an unsigned int for printing */
ViceLog(0,
("CopyOnWrite failed: volume %u in partition %s (tried reading %u, read %u, wrote %u, errno %u) volume needs salvage\n",
V_id(volptr), volptr->partition->name, (unsigned)length, (unsigned)rdlen,
(unsigned)wrlen, errno));
#if defined(AFS_DEMAND_ATTACH_FS)
ViceLog(0, ("CopyOnWrite failed: requesting salvage\n"));
#else
ViceLog(0, ("CopyOnWrite failed: taking volume offline\n"));
#endif
/* Decrement this inode so salvager doesn't find it. */
FDH_REALLYCLOSE(newFdP);
IH_RELEASE(newH);
FDH_REALLYCLOSE(targFdP);
rc = IH_DEC(V_linkHandle(volptr), ino, V_parentId(volptr));
free(buff);
VTakeOffline(volptr);
return EIO;
}
}
#ifndef AFS_PTHREAD_ENV
IOMGR_Poll();
#endif /* !AFS_PTHREAD_ENV */
}
FDH_REALLYCLOSE(targFdP);
rc = IH_DEC(V_linkHandle(volptr), VN_GET_INO(targetptr),
V_parentId(volptr));
osi_Assert(!rc);
IH_RELEASE(targetptr->handle);
rc = FDH_SYNC(newFdP);
osi_Assert(rc == 0);
FDH_CLOSE(newFdP);
targetptr->handle = newH;
VN_SET_INO(targetptr, ino);
targetptr->disk.cloned = 0;
/* Internal change to vnode, no user level change to volume - def 5445 */
targetptr->changed_oldTime = 1;
free(buff);
return 0; /* success */
} /*CopyOnWrite */
/*
* Common code to handle with removing the Name (file when it's called from
* SAFS_RemoveFile() or an empty dir when called from SAFS_rmdir()) from a
* given directory, parentptr.
*/
int DT1 = 0, DT0 = 0;
static afs_int32
DeleteTarget(Vnode * parentptr, Volume * volptr, Vnode ** targetptr,
DirHandle * dir, AFSFid * fileFid, char *Name, int ChkForDir)
{
DirHandle childdir; /* Handle for dir package I/O */
Error errorCode = 0;
int code;
afs_ino_str_t stmp;
/* watch for invalid names */
if (!strcmp(Name, ".") || !strcmp(Name, ".."))
return (EINVAL);
if (CheckLength(volptr, parentptr, -1)) {
VTakeOffline(volptr);
return VSALVAGE;
}
if (parentptr->disk.cloned) {
ViceLog(25, ("DeleteTarget : CopyOnWrite called\n"));
if ((errorCode = CopyOnWrite(parentptr, volptr, 0, MAXFSIZE))) {
ViceLog(20,
("DeleteTarget %s: CopyOnWrite failed %d\n", Name,
errorCode));
return errorCode;
}
}
/* check that the file is in the directory */
SetDirHandle(dir, parentptr);
if (Lookup(dir, Name, fileFid))
return (ENOENT);
fileFid->Volume = V_id(volptr);
/* just-in-case check for something causing deadlock */
if (fileFid->Vnode == parentptr->vnodeNumber)
return (EINVAL);
*targetptr = VGetVnode(&errorCode, volptr, fileFid->Vnode, WRITE_LOCK);
if (errorCode) {
return (errorCode);
}
if (ChkForDir == MustBeDIR) {
if ((*targetptr)->disk.type != vDirectory)
return (ENOTDIR);
} else if ((*targetptr)->disk.type == vDirectory)
return (EISDIR);
/*osi_Assert((*targetptr)->disk.uniquifier == fileFid->Unique); */
/**
* If the uniquifiers dont match then instead of asserting
* take the volume offline and return VSALVAGE
*/
if ((*targetptr)->disk.uniquifier != fileFid->Unique) {
VTakeOffline(volptr);
ViceLog(0,
("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
errorCode = VSALVAGE;
return errorCode;
}
if (ChkForDir == MustBeDIR) {
SetDirHandle(&childdir, *targetptr);
if (IsEmpty(&childdir) != 0)
return (EEXIST);
DZap((afs_int32 *) &childdir);
FidZap(&childdir);
(*targetptr)->delete = 1;
} else if ((--(*targetptr)->disk.linkCount) == 0)
(*targetptr)->delete = 1;
if ((*targetptr)->delete) {
if (VN_GET_INO(*targetptr)) {
DT0++;
IH_REALLYCLOSE((*targetptr)->handle);
errorCode =
IH_DEC(V_linkHandle(volptr), VN_GET_INO(*targetptr),
V_parentId(volptr));
IH_RELEASE((*targetptr)->handle);
if (errorCode == -1) {
ViceLog(0,
("DT: inode=%s, name=%s, errno=%d\n",
PrintInode(stmp, VN_GET_INO(*targetptr)), Name,
errno));
if (errno != ENOENT)
{
VTakeOffline(volptr);
ViceLog(0,
("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return (EIO);
}
DT1++;
errorCode = 0;
}
}
VN_SET_INO(*targetptr, (Inode) 0);
{
afs_fsize_t adjLength;
VN_GET_LEN(adjLength, *targetptr);
VAdjustDiskUsage(&errorCode, volptr, -(int)nBlocks(adjLength), 0);
}
}
(*targetptr)->changed_newTime = 1; /* Status change of deleted file/dir */
code = Delete(dir, (char *)Name);
if (code) {
ViceLog(0,
("Error %d deleting %s\n", code,
(((*targetptr)->disk.type ==
Directory) ? "directory" : "file")));
VTakeOffline(volptr);
ViceLog(0,
("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
if (!errorCode)
errorCode = code;
}
DFlush();
return (errorCode);
} /*DeleteTarget */
/*
* This routine updates the parent directory's status block after the
* specified operation (i.e. RemoveFile(), CreateFile(), Rename(),
* SymLink(), Link(), MakeDir(), RemoveDir()) on one of its children has
* been performed.
*/
static void
Update_ParentVnodeStatus(Vnode * parentptr, Volume * volptr, DirHandle * dir,
int author, int linkcount,
#if FS_STATS_DETAILED
char a_inSameNetwork
#endif /* FS_STATS_DETAILED */
)
{
afs_fsize_t newlength; /* Holds new directory length */
afs_fsize_t parentLength;
Error errorCode;
#if FS_STATS_DETAILED
Date currDate; /*Current date */
int writeIdx; /*Write index to bump */
int timeIdx; /*Authorship time index to bump */
#endif /* FS_STATS_DETAILED */
parentptr->disk.dataVersion++;
newlength = (afs_fsize_t) Length(dir);
/*
* This is a called on both dir removals (i.e. remove, removedir, rename) but also in dir additions
* (create, symlink, link, makedir) so we need to check if we have enough space
* XXX But we still don't check the error since we're dealing with dirs here and really the increase
* of a new entry would be too tiny to worry about failures (since we have all the existing cushion)
*/
VN_GET_LEN(parentLength, parentptr);
if (nBlocks(newlength) != nBlocks(parentLength)) {
VAdjustDiskUsage(&errorCode, volptr,
(nBlocks(newlength) - nBlocks(parentLength)),
(nBlocks(newlength) - nBlocks(parentLength)));
}
VN_SET_LEN(parentptr, newlength);
#if FS_STATS_DETAILED
/*
* Update directory write stats for this volume. Note that the auth
* counter is located immediately after its associated ``distance''
* counter.
*/
if (a_inSameNetwork)
writeIdx = VOL_STATS_SAME_NET;
else
writeIdx = VOL_STATS_DIFF_NET;
V_stat_writes(volptr, writeIdx)++;
if (author != AnonymousID) {
V_stat_writes(volptr, writeIdx + 1)++;
}
/*
* Update the volume's authorship information in response to this
* directory operation. Get the current time, decide to which time
* slot this operation belongs, and bump the appropriate slot.
*/
currDate = (FT_ApproxTime() - parentptr->disk.unixModifyTime);
timeIdx =
(currDate < VOL_STATS_TIME_CAP_0 ? VOL_STATS_TIME_IDX_0 : currDate <
VOL_STATS_TIME_CAP_1 ? VOL_STATS_TIME_IDX_1 : currDate <
VOL_STATS_TIME_CAP_2 ? VOL_STATS_TIME_IDX_2 : currDate <
VOL_STATS_TIME_CAP_3 ? VOL_STATS_TIME_IDX_3 : currDate <
VOL_STATS_TIME_CAP_4 ? VOL_STATS_TIME_IDX_4 : VOL_STATS_TIME_IDX_5);
if (parentptr->disk.author == author) {
V_stat_dirSameAuthor(volptr, timeIdx)++;
} else {
V_stat_dirDiffAuthor(volptr, timeIdx)++;
}
#endif /* FS_STATS_DETAILED */
parentptr->disk.author = author;
parentptr->disk.linkCount = linkcount;
parentptr->disk.unixModifyTime = FT_ApproxTime(); /* This should be set from CLIENT!! */
parentptr->disk.serverModifyTime = FT_ApproxTime();
parentptr->changed_newTime = 1; /* vnode changed, write it back. */
}
/*
* Update the target file's (or dir's) status block after the specified
* operation is complete. Note that some other fields maybe updated by
* the individual module.
*/
/* XXX INCOMPLETE - More attention is needed here! */
static void
Update_TargetVnodeStatus(Vnode * targetptr, afs_uint32 Caller,
struct client *client, AFSStoreStatus * InStatus,
Vnode * parentptr, Volume * volptr,
afs_fsize_t length)
{
#if FS_STATS_DETAILED
Date currDate; /*Current date */
int writeIdx; /*Write index to bump */
int timeIdx; /*Authorship time index to bump */
#endif /* FS_STATS_DETAILED */
if (Caller & (TVS_CFILE | TVS_SLINK | TVS_MKDIR)) { /* initialize new file */
targetptr->disk.parent = parentptr->vnodeNumber;
VN_SET_LEN(targetptr, length);
/* targetptr->disk.group = 0; save some cycles */
targetptr->disk.modeBits = 0777;
targetptr->disk.owner = client->ViceId;
targetptr->disk.dataVersion = 0; /* consistent with the client */
targetptr->disk.linkCount = (Caller & TVS_MKDIR ? 2 : 1);
/* the inode was created in Alloc_NewVnode() */
}
#if FS_STATS_DETAILED
/*
* Update file write stats for this volume. Note that the auth
* counter is located immediately after its associated ``distance''
* counter.
*/
if (client->InSameNetwork)
writeIdx = VOL_STATS_SAME_NET;
else
writeIdx = VOL_STATS_DIFF_NET;
V_stat_writes(volptr, writeIdx)++;
if (client->ViceId != AnonymousID) {
V_stat_writes(volptr, writeIdx + 1)++;
}
/*
* We only count operations that DON'T involve creating new objects
* (files, symlinks, directories) or simply setting status as
* authorship-change operations.
*/
if (!(Caller & (TVS_CFILE | TVS_SLINK | TVS_MKDIR | TVS_SSTATUS))) {
/*
* Update the volume's authorship information in response to this
* file operation. Get the current time, decide to which time
* slot this operation belongs, and bump the appropriate slot.
*/
currDate = (FT_ApproxTime() - targetptr->disk.unixModifyTime);
timeIdx =
(currDate <
VOL_STATS_TIME_CAP_0 ? VOL_STATS_TIME_IDX_0 : currDate <
VOL_STATS_TIME_CAP_1 ? VOL_STATS_TIME_IDX_1 : currDate <
VOL_STATS_TIME_CAP_2 ? VOL_STATS_TIME_IDX_2 : currDate <
VOL_STATS_TIME_CAP_3 ? VOL_STATS_TIME_IDX_3 : currDate <
VOL_STATS_TIME_CAP_4 ? VOL_STATS_TIME_IDX_4 :
VOL_STATS_TIME_IDX_5);
if (targetptr->disk.author == client->ViceId) {
V_stat_fileSameAuthor(volptr, timeIdx)++;
} else {
V_stat_fileDiffAuthor(volptr, timeIdx)++;
}
}
#endif /* FS_STATS_DETAILED */
if (!(Caller & TVS_SSTATUS))
targetptr->disk.author = client->ViceId;
if (Caller & TVS_SDATA) {
targetptr->disk.dataVersion++;
if (VanillaUser(client)) {
targetptr->disk.modeBits &= ~04000; /* turn off suid for file. */
#ifdef CREATE_SGUID_ADMIN_ONLY
targetptr->disk.modeBits &= ~02000; /* turn off sgid for file. */
#endif
}
}
if (Caller & TVS_SSTATUS) { /* update time on non-status change */
/* store status, must explicitly request to change the date */
if (InStatus->Mask & AFS_SETMODTIME)
targetptr->disk.unixModifyTime = InStatus->ClientModTime;
} else { /* other: date always changes, but perhaps to what is specified by caller */
targetptr->disk.unixModifyTime =
(InStatus->Mask & AFS_SETMODTIME ? InStatus->
ClientModTime : FT_ApproxTime());
}
if (InStatus->Mask & AFS_SETOWNER) {
/* admin is allowed to do chmod, chown as well as chown, chmod. */
if (VanillaUser(client)) {
targetptr->disk.modeBits &= ~04000; /* turn off suid for file. */
#ifdef CREATE_SGUID_ADMIN_ONLY
targetptr->disk.modeBits &= ~02000; /* turn off sgid for file. */
#endif
}
targetptr->disk.owner = InStatus->Owner;
if (VolumeRootVnode(targetptr)) {
Error errorCode = 0; /* what should be done with this? */
V_owner(targetptr->volumePtr) = InStatus->Owner;
VUpdateVolume(&errorCode, targetptr->volumePtr);
}
}
if (InStatus->Mask & AFS_SETMODE) {
int modebits = InStatus->UnixModeBits;
#define CREATE_SGUID_ADMIN_ONLY 1
#ifdef CREATE_SGUID_ADMIN_ONLY
if (VanillaUser(client))
modebits = modebits & 0777;
#endif
if (VanillaUser(client)) {
targetptr->disk.modeBits = modebits;
} else {
targetptr->disk.modeBits = modebits;
switch (Caller) {
case TVS_SDATA:
osi_audit(PrivSetID, 0, AUD_ID, client->ViceId, AUD_INT,
CHK_STOREDATA, AUD_END);
break;
case TVS_CFILE:
case TVS_SSTATUS:
osi_audit(PrivSetID, 0, AUD_ID, client->ViceId, AUD_INT,
CHK_STORESTATUS, AUD_END);
break;
default:
break;
}
}
}
targetptr->disk.serverModifyTime = FT_ApproxTime();
if (InStatus->Mask & AFS_SETGROUP)
targetptr->disk.group = InStatus->Group;
/* vnode changed : to be written back by VPutVnode */
targetptr->changed_newTime = 1;
} /*Update_TargetVnodeStatus */
/*
* Fills the CallBack structure with the expiration time and type of callback
* structure. Warning: this function is currently incomplete.
*/
static void
SetCallBackStruct(afs_uint32 CallBackTime, struct AFSCallBack *CallBack)
{
/* CallBackTime could not be 0 */
if (CallBackTime == 0) {
ViceLog(0, ("WARNING: CallBackTime == 0!\n"));
CallBack->ExpirationTime = 0;
} else
CallBack->ExpirationTime = CallBackTime - FT_ApproxTime();
CallBack->CallBackVersion = CALLBACK_VERSION;
CallBack->CallBackType = CB_SHARED; /* The default for now */
} /*SetCallBackStruct */
/*
* Adjusts (Subtract) "length" number of blocks from the volume's disk
* allocation; if some error occured (exceeded volume quota or partition
* was full, or whatever), it frees the space back and returns the code.
* We usually pre-adjust the volume space to make sure that there's
* enough space before consuming some.
*/
static afs_int32
AdjustDiskUsage(Volume * volptr, afs_sfsize_t length,
afs_sfsize_t checkLength)
{
Error rc;
Error nc;
VAdjustDiskUsage(&rc, volptr, length, checkLength);
if (rc) {
VAdjustDiskUsage(&nc, volptr, -length, 0);
if (rc == VOVERQUOTA) {
ViceLog(2,
("Volume %u (%s) is full\n", V_id(volptr),
V_name(volptr)));
return (rc);
}
if (rc == VDISKFULL) {
ViceLog(0,
("Partition %s that contains volume %u is full\n",
volptr->partition->name, V_id(volptr)));
return (rc);
}
ViceLog(0, ("Got error return %d from VAdjustDiskUsage\n", rc));
return (rc);
}
return (0);
} /*AdjustDiskUsage */
/*
* Common code that handles the creation of a new file (SAFS_CreateFile and
* SAFS_Symlink) or a new dir (SAFS_MakeDir)
*/
static afs_int32
Alloc_NewVnode(Vnode * parentptr, DirHandle * dir, Volume * volptr,
Vnode ** targetptr, char *Name, struct AFSFid *OutFid,
int FileType, afs_sfsize_t BlocksPreallocatedForVnode)
{
Error errorCode = 0; /* Error code returned back */
Error temp;
Inode inode = 0;
Inode nearInode AFS_UNUSED; /* hint for inode allocation in solaris */
afs_ino_str_t stmp;
if ((errorCode =
AdjustDiskUsage(volptr, BlocksPreallocatedForVnode,
BlocksPreallocatedForVnode))) {
ViceLog(25,
("Insufficient space to allocate %" AFS_INT64_FMT " blocks\n",
(afs_intmax_t) BlocksPreallocatedForVnode));
return (errorCode);
}
if (CheckLength(volptr, parentptr, -1)) {
VAdjustDiskUsage(&temp, volptr, -BlocksPreallocatedForVnode, 0);
VTakeOffline(volptr);
return VSALVAGE;
}
*targetptr = VAllocVnode(&errorCode, volptr, FileType);
if (errorCode != 0) {
VAdjustDiskUsage(&temp, volptr, -BlocksPreallocatedForVnode, 0);
return (errorCode);
}
OutFid->Volume = V_id(volptr);
OutFid->Vnode = (*targetptr)->vnodeNumber;
OutFid->Unique = (*targetptr)->disk.uniquifier;
nearInode = VN_GET_INO(parentptr); /* parent is also in same vol */
/* create the inode now itself */
inode =
IH_CREATE(V_linkHandle(volptr), V_device(volptr),
VPartitionPath(V_partition(volptr)), nearInode,
V_id(volptr), (*targetptr)->vnodeNumber,
(*targetptr)->disk.uniquifier, 1);
/* error in creating inode */
if (!VALID_INO(inode)) {
ViceLog(0,
("Volume : %u vnode = %u Failed to create inode: errno = %d\n",
(*targetptr)->volumePtr->header->diskstuff.id,
(*targetptr)->vnodeNumber, errno));
VAdjustDiskUsage(&temp, volptr, -BlocksPreallocatedForVnode, 0);
(*targetptr)->delete = 1; /* delete vnode */
return ENOSPC;
}
VN_SET_INO(*targetptr, inode);
IH_INIT(((*targetptr)->handle), V_device(volptr), V_id(volptr), inode);
/* copy group from parent dir */
(*targetptr)->disk.group = parentptr->disk.group;
if (parentptr->disk.cloned) {
ViceLog(25, ("Alloc_NewVnode : CopyOnWrite called\n"));
if ((errorCode = CopyOnWrite(parentptr, volptr, 0, MAXFSIZE))) { /* disk full */
ViceLog(25, ("Alloc_NewVnode : CopyOnWrite failed\n"));
/* delete the vnode previously allocated */
(*targetptr)->delete = 1;
VAdjustDiskUsage(&temp, volptr, -BlocksPreallocatedForVnode, 0);
IH_REALLYCLOSE((*targetptr)->handle);
if (IH_DEC(V_linkHandle(volptr), inode, V_parentId(volptr)))
ViceLog(0,
("Alloc_NewVnode: partition %s idec %s failed\n",
volptr->partition->name, PrintInode(stmp, inode)));
IH_RELEASE((*targetptr)->handle);
return errorCode;
}
}
/* add the name to the directory */
SetDirHandle(dir, parentptr);
if ((errorCode = Create(dir, (char *)Name, OutFid))) {
(*targetptr)->delete = 1;
VAdjustDiskUsage(&temp, volptr, -BlocksPreallocatedForVnode, 0);
IH_REALLYCLOSE((*targetptr)->handle);
if (IH_DEC(V_linkHandle(volptr), inode, V_parentId(volptr)))
ViceLog(0,
("Alloc_NewVnode: partition %s idec %s failed\n",
volptr->partition->name, PrintInode(stmp, inode)));
IH_RELEASE((*targetptr)->handle);
return (errorCode);
}
DFlush();
return (0);
} /*Alloc_NewVnode */
/*
* Handle all the lock-related code (SAFS_SetLock, SAFS_ExtendLock and
* SAFS_ReleaseLock)
*/
static afs_int32
HandleLocking(Vnode * targetptr, struct client *client, afs_int32 rights, ViceLockType LockingType)
{
int Time; /* Used for time */
int writeVnode = targetptr->changed_oldTime; /* save original status */
targetptr->changed_oldTime = 1; /* locking doesn't affect any time stamp */
Time = FT_ApproxTime();
switch (LockingType) {
case LockRead:
case LockWrite:
if (Time > targetptr->disk.lock.lockTime)
targetptr->disk.lock.lockTime = targetptr->disk.lock.lockCount =
0;
Time += AFS_LOCKWAIT;
if (LockingType == LockRead) {
if ( !(rights & PRSFS_LOCK) &&
!(rights & PRSFS_WRITE) &&
!(OWNSp(client, targetptr) && (rights & PRSFS_INSERT)) )
return(EACCES);
if (targetptr->disk.lock.lockCount >= 0) {
++(targetptr->disk.lock.lockCount);
targetptr->disk.lock.lockTime = Time;
} else
return (EAGAIN);
} else if (LockingType == LockWrite) {
if ( !(rights & PRSFS_WRITE) &&
!(OWNSp(client, targetptr) && (rights & PRSFS_INSERT)) )
return(EACCES);
if (targetptr->disk.lock.lockCount == 0) {
targetptr->disk.lock.lockCount = -1;
targetptr->disk.lock.lockTime = Time;
} else
return (EAGAIN);
}
break;
case LockExtend:
Time += AFS_LOCKWAIT;
if (targetptr->disk.lock.lockCount != 0)
targetptr->disk.lock.lockTime = Time;
else
return (EINVAL);
break;
case LockRelease:
if ((--targetptr->disk.lock.lockCount) <= 0)
targetptr->disk.lock.lockCount = targetptr->disk.lock.lockTime =
0;
break;
default:
targetptr->changed_oldTime = writeVnode; /* restore old status */
ViceLog(0, ("Illegal Locking type %d\n", LockingType));
}
return (0);
} /*HandleLocking */
/* Checks if caller has the proper AFS and Unix (WRITE) access permission to the target directory; Prfs_Mode refers to the AFS Mode operation while rights contains the caller's access permissions to the directory. */
static afs_int32
CheckWriteMode(Vnode * targetptr, afs_int32 rights, int Prfs_Mode)
{
if (readonlyServer)
return (VREADONLY);
if (!(rights & Prfs_Mode))
return (EACCES);
if ((targetptr->disk.type != vDirectory)
&& (!(targetptr->disk.modeBits & OWNERWRITE)))
return (EACCES);
return (0);
}
/*
* If some flags (i.e. min or max quota) are set, the volume's in disk
* label is updated; Name, OfflineMsg, and Motd are also reflected in the
* update, if applicable.
*/
static afs_int32
RXUpdate_VolumeStatus(Volume * volptr, AFSStoreVolumeStatus * StoreVolStatus,
char *Name, char *OfflineMsg, char *Motd)
{
Error errorCode = 0;
if (StoreVolStatus->Mask & AFS_SETMINQUOTA)
V_minquota(volptr) = StoreVolStatus->MinQuota;
if (StoreVolStatus->Mask & AFS_SETMAXQUOTA)
V_maxquota(volptr) = StoreVolStatus->MaxQuota;
if (strlen(OfflineMsg) > 0) {
strcpy(V_offlineMessage(volptr), OfflineMsg);
}
if (strlen(Name) > 0) {
strcpy(V_name(volptr), Name);
}
#if OPENAFS_VOL_STATS
/*
* We don't overwrite the motd field, since it's now being used
* for stats
*/
#else
if (strlen(Motd) > 0) {
strcpy(V_motd(volptr), Motd);
}
#endif /* FS_STATS_DETAILED */
VUpdateVolume(&errorCode, volptr);
return (errorCode);
} /*RXUpdate_VolumeStatus */
static afs_int32
RXGetVolumeStatus(AFSFetchVolumeStatus * status, char **name, char **offMsg,
char **motd, Volume * volptr)
{
int temp;
status->Vid = V_id(volptr);
status->ParentId = V_parentId(volptr);
status->Online = V_inUse(volptr);
status->InService = V_inService(volptr);
status->Blessed = V_blessed(volptr);
status->NeedsSalvage = V_needsSalvaged(volptr);
if (VolumeWriteable(volptr))
status->Type = ReadWrite;
else
status->Type = ReadOnly;
status->MinQuota = V_minquota(volptr);
status->MaxQuota = V_maxquota(volptr);
status->BlocksInUse = V_diskused(volptr);
status->PartBlocksAvail = RoundInt64ToInt31(volptr->partition->free);
status->PartMaxBlocks = RoundInt64ToInt31(volptr->partition->totalUsable);
/* now allocate and copy these things; they're freed by the RXGEN stub */
temp = strlen(V_name(volptr)) + 1;
*name = malloc(temp);
if (!*name) {
ViceLog(0, ("Failed malloc in RXGetVolumeStatus\n"));
osi_Panic("Failed malloc in RXGetVolumeStatus\n");
}
strcpy(*name, V_name(volptr));
temp = strlen(V_offlineMessage(volptr)) + 1;
*offMsg = malloc(temp);
if (!*offMsg) {
ViceLog(0, ("Failed malloc in RXGetVolumeStatus\n"));
osi_Panic("Failed malloc in RXGetVolumeStatus\n");
}
strcpy(*offMsg, V_offlineMessage(volptr));
#if OPENAFS_VOL_STATS
*motd = malloc(1);
if (!*motd) {
ViceLog(0, ("Failed malloc in RXGetVolumeStatus\n"));
osi_Panic("Failed malloc in RXGetVolumeStatus\n");
}
strcpy(*motd, nullString);
#else
temp = strlen(V_motd(volptr)) + 1;
*motd = malloc(temp);
if (!*motd) {
ViceLog(0, ("Failed malloc in RXGetVolumeStatus\n"));
osi_Panic("Failed malloc in RXGetVolumeStatus\n");
}
strcpy(*motd, V_motd(volptr));
#endif /* FS_STATS_DETAILED */
return 0;
} /*RXGetVolumeStatus */
static afs_int32
FileNameOK(char *aname)
{
afs_int32 i, tc;
i = strlen(aname);
if (i >= 4) {
/* watch for @sys on the right */
if (strcmp(aname + i - 4, "@sys") == 0)
return 0;
}
while ((tc = *aname++)) {
if (tc == '/')
return 0; /* very bad character to encounter */
}
return 1; /* file name is ok */
} /*FileNameOK */
/*
* This variant of symlink is expressly to support the AFS/DFS translator
* and is not supported by the AFS fileserver. We just return EINVAL.
* The cache manager should not generate this call to an AFS cache manager.
*/
afs_int32
SRXAFS_DFSSymlink(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
char *LinkContents, struct AFSStoreStatus *InStatus,
struct AFSFid *OutFid, struct AFSFetchStatus *OutFidStatus,
struct AFSFetchStatus *OutDirStatus,
struct AFSCallBack *CallBack, struct AFSVolSync *Sync)
{
return EINVAL;
}
afs_int32
SRXAFS_FsCmd(struct rx_call * acall, struct AFSFid * Fid,
struct FsCmdInputs * Inputs,
struct FsCmdOutputs * Outputs)
{
afs_int32 code = 0;
switch (Inputs->command) {
default:
code = EINVAL;
}
ViceLog(1,("FsCmd: cmd = %d, code=%d\n",
Inputs->command, Outputs->code));
return code;
}
#ifndef HAVE_PIOV
static struct afs_buffer {
struct afs_buffer *next;
} *freeBufferList = 0;
static int afs_buffersAlloced = 0;
static int
FreeSendBuffer(struct afs_buffer *adata)
{
FS_LOCK;
afs_buffersAlloced--;
adata->next = freeBufferList;
freeBufferList = adata;
FS_UNLOCK;
return 0;
} /*FreeSendBuffer */
/* allocate space for sender */
static char *
AllocSendBuffer(void)
{
struct afs_buffer *tp;
FS_LOCK;
afs_buffersAlloced++;
if (!freeBufferList) {
char *tmp;
FS_UNLOCK;
tmp = malloc(sendBufSize);
if (!tmp) {
ViceLog(0, ("Failed malloc in AllocSendBuffer\n"));
osi_Panic("Failed malloc in AllocSendBuffer\n");
}
return tmp;
}
tp = freeBufferList;
freeBufferList = tp->next;
FS_UNLOCK;
return (char *)tp;
} /*AllocSendBuffer */
#endif /* HAVE_PIOV */
/*
* This routine returns the status info associated with the targetptr vnode
* in the AFSFetchStatus structure. Some of the newer fields, such as
* SegSize and Group are not yet implemented
*/
static
void
GetStatus(Vnode * targetptr, AFSFetchStatus * status, afs_int32 rights,
afs_int32 anyrights, Vnode * parentptr)
{
int Time =FT_ApproxTime();
/* initialize return status from a vnode */
status->InterfaceVersion = 1;
status->SyncCounter = status->dataVersionHigh = status->lockCount =
status->errorCode = 0;
status->ResidencyMask = 1; /* means for MR-AFS: file in /vicepr-partition */
if (targetptr->disk.type == vFile)
status->FileType = File;
else if (targetptr->disk.type == vDirectory)
status->FileType = Directory;
else if (targetptr->disk.type == vSymlink)
status->FileType = SymbolicLink;
else
status->FileType = Invalid; /*invalid type field */
status->LinkCount = targetptr->disk.linkCount;
{
afs_fsize_t targetLen;
VN_GET_LEN(targetLen, targetptr);
SplitOffsetOrSize(targetLen, status->Length_hi, status->Length);
}
status->DataVersion = targetptr->disk.dataVersion;
status->Author = targetptr->disk.author;
status->Owner = targetptr->disk.owner;
status->CallerAccess = rights;
status->AnonymousAccess = anyrights;
status->UnixModeBits = targetptr->disk.modeBits;
status->ClientModTime = targetptr->disk.unixModifyTime; /* This might need rework */
status->ParentVnode =
(status->FileType ==
Directory ? targetptr->vnodeNumber : parentptr->vnodeNumber);
status->ParentUnique =
(status->FileType ==
Directory ? targetptr->disk.uniquifier : parentptr->disk.uniquifier);
status->ServerModTime = targetptr->disk.serverModifyTime;
status->Group = targetptr->disk.group;
status->lockCount = Time > targetptr->disk.lock.lockTime ? 0 : targetptr->disk.lock.lockCount;
status->errorCode = 0;
} /*GetStatus */
static afs_int32
common_FetchData64(struct rx_call *acall, struct AFSFid *Fid,
afs_sfsize_t Pos, afs_sfsize_t Len,
struct AFSFetchStatus *OutStatus,
struct AFSCallBack *CallBack, struct AFSVolSync *Sync,
int type)
{
Vnode *targetptr = 0; /* pointer to vnode to fetch */
Vnode *parentwhentargetnotdir = 0; /* parent vnode if vptr is a file */
Vnode tparentwhentargetnotdir; /* parent vnode for GetStatus */
Error errorCode = 0; /* return code to caller */
Error fileCode = 0; /* return code from vol package */
Volume *volptr = 0; /* pointer to the volume */
struct client *client = 0; /* pointer to the client data */
struct rx_connection *tcon; /* the connection we're part of */
struct host *thost;
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client = NULL; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct VCallByVol tcbv, *cbv = NULL;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct fs_stats_xferData *xferP; /* Ptr to this op's byte size struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval xferStartTime, xferStopTime; /* Start/stop times for xfer portion */
struct timeval elapsedTime; /* Transfer time */
afs_sfsize_t bytesToXfer; /* # bytes to xfer */
afs_sfsize_t bytesXferred; /* # bytes actually xferred */
int readIdx; /* Index of read stats array to bump */
static afs_int32 tot_bytesXferred; /* shared access protected by FS_LOCK */
/*
* Set our stats pointers, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_FETCHDATA]);
xferP = &(afs_FullPerfStats.det.xferOpTimes[FS_STATS_XFERIDX_FETCHDATA]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
ViceLog(1,
("SRXAFS_FetchData, Fid = %u.%u.%u\n", Fid->Volume, Fid->Vnode,
Fid->Unique));
FS_LOCK;
AFSCallStats.FetchData++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if ((errorCode = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_FetchData;
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(5,
("SRXAFS_FetchData, Fid = %u.%u.%u, Host %s:%d, Id %d\n",
Fid->Volume, Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
queue_NodeInit(&tcbv);
tcbv.call = acall;
cbv = &tcbv;
/*
* Get volume/vnode for the fetched file; caller's access rights to
* it are also returned
*/
if ((errorCode =
GetVolumePackageWithCall(acall, cbv, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights)))
goto Bad_FetchData;
SetVolumeSync(Sync, volptr);
#if FS_STATS_DETAILED
/*
* Remember that another read operation was performed.
*/
FS_LOCK;
if (client->InSameNetwork)
readIdx = VOL_STATS_SAME_NET;
else
readIdx = VOL_STATS_DIFF_NET;
V_stat_reads(volptr, readIdx)++;
if (client->ViceId != AnonymousID) {
V_stat_reads(volptr, readIdx + 1)++;
}
FS_UNLOCK;
#endif /* FS_STATS_DETAILED */
/* Check whether the caller has permission access to fetch the data */
if ((errorCode =
Check_PermissionRights(targetptr, client, rights, CHK_FETCHDATA, 0)))
goto Bad_FetchData;
/*
* Drop the read lock on the parent directory after saving the parent
* vnode information we need to pass to GetStatus
*/
if (parentwhentargetnotdir != NULL) {
tparentwhentargetnotdir = *parentwhentargetnotdir;
VPutVnode(&fileCode, parentwhentargetnotdir);
osi_Assert(!fileCode || (fileCode == VSALVAGE));
parentwhentargetnotdir = NULL;
}
#if FS_STATS_DETAILED
/*
* Remember when the data transfer started.
*/
FT_GetTimeOfDay(&xferStartTime, 0);
#endif /* FS_STATS_DETAILED */
/* actually do the data transfer */
#if FS_STATS_DETAILED
errorCode =
FetchData_RXStyle(volptr, targetptr, acall, Pos, Len, type,
&bytesToXfer, &bytesXferred);
#else
if ((errorCode =
FetchData_RXStyle(volptr, targetptr, acall, Pos, Len, type)))
goto Bad_FetchData;
#endif /* FS_STATS_DETAILED */
#if FS_STATS_DETAILED
/*
* At this point, the data transfer is done, for good or ill. Remember
* when the transfer ended, bump the number of successes/failures, and
* integrate the transfer size and elapsed time into the stats. If the
* operation failed, we jump to the appropriate point.
*/
FT_GetTimeOfDay(&xferStopTime, 0);
FS_LOCK;
(xferP->numXfers)++;
if (!errorCode) {
(xferP->numSuccesses)++;
/*
* Bump the xfer sum by the number of bytes actually sent, NOT the
* target number.
*/
tot_bytesXferred += bytesXferred;
(xferP->sumBytes) += (tot_bytesXferred >> 10);
tot_bytesXferred &= 0x3FF;
if (bytesXferred < xferP->minBytes)
xferP->minBytes = bytesXferred;
if (bytesXferred > xferP->maxBytes)
xferP->maxBytes = bytesXferred;
/*
* Tally the size of the object. Note: we tally the actual size,
* NOT the number of bytes that made it out over the wire.
*/
if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET0)
(xferP->count[0])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET1)
(xferP->count[1])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET2)
(xferP->count[2])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET3)
(xferP->count[3])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET4)
(xferP->count[4])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET5)
(xferP->count[5])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET6)
(xferP->count[6])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET7)
(xferP->count[7])++;
else
(xferP->count[8])++;
fs_stats_GetDiff(elapsedTime, xferStartTime, xferStopTime);
fs_stats_AddTo((xferP->sumTime), elapsedTime);
fs_stats_SquareAddTo((xferP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (xferP->minTime))) {
fs_stats_TimeAssign((xferP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (xferP->maxTime))) {
fs_stats_TimeAssign((xferP->maxTime), elapsedTime);
}
}
FS_UNLOCK;
/*
* Finally, go off to tell our caller the bad news in case the
* fetch failed.
*/
if (errorCode)
goto Bad_FetchData;
#endif /* FS_STATS_DETAILED */
/* write back the OutStatus from the target vnode */
GetStatus(targetptr, OutStatus, rights, anyrights,
&tparentwhentargetnotdir);
rx_KeepAliveOn(acall); /* I/O done */
/* if a r/w volume, promise a callback to the caller */
if (VolumeWriteable(volptr))
SetCallBackStruct(AddCallBack(client->host, Fid), CallBack);
else {
struct AFSFid myFid;
memset(&myFid, 0, sizeof(struct AFSFid));
myFid.Volume = Fid->Volume;
SetCallBackStruct(AddVolCallBack(client->host, &myFid), CallBack);
}
Bad_FetchData:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackageWithCall(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client, cbv);
ViceLog(2, ("SRXAFS_FetchData returns %d\n", errorCode));
errorCode = CallPostamble(tcon, errorCode, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, FetchDataEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_END);
return (errorCode);
} /*SRXAFS_FetchData */
afs_int32
SRXAFS_FetchData(struct rx_call * acall, struct AFSFid * Fid, afs_int32 Pos,
afs_int32 Len, struct AFSFetchStatus * OutStatus,
struct AFSCallBack * CallBack, struct AFSVolSync * Sync)
{
return common_FetchData64(acall, Fid, Pos, Len, OutStatus, CallBack,
Sync, 0);
}
afs_int32
SRXAFS_FetchData64(struct rx_call * acall, struct AFSFid * Fid, afs_int64 Pos,
afs_int64 Len, struct AFSFetchStatus * OutStatus,
struct AFSCallBack * CallBack, struct AFSVolSync * Sync)
{
int code;
afs_sfsize_t tPos, tLen;
#ifdef AFS_64BIT_ENV
tPos = (afs_sfsize_t) Pos;
tLen = (afs_sfsize_t) Len;
#else /* AFS_64BIT_ENV */
if (Pos.high || Len.high)
return EFBIG;
tPos = Pos.low;
tLen = Len.low;
#endif /* AFS_64BIT_ENV */
code =
common_FetchData64(acall, Fid, tPos, tLen, OutStatus, CallBack, Sync,
1);
return code;
}
afs_int32
SRXAFS_FetchACL(struct rx_call * acall, struct AFSFid * Fid,
struct AFSOpaque * AccessList,
struct AFSFetchStatus * OutStatus, struct AFSVolSync * Sync)
{
Vnode *targetptr = 0; /* pointer to vnode to fetch */
Vnode *parentwhentargetnotdir = 0; /* parent vnode if targetptr is a file */
Error errorCode = 0; /* return error code to caller */
Volume *volptr = 0; /* pointer to the volume */
struct client *client = 0; /* pointer to the client data */
afs_int32 rights, anyrights; /* rights for this and any user */
struct rx_connection *tcon = rx_ConnectionOf(acall);
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_FETCHACL]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
ViceLog(1,
("SAFS_FetchACL, Fid = %u.%u.%u\n", Fid->Volume, Fid->Vnode,
Fid->Unique));
FS_LOCK;
AFSCallStats.FetchACL++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if ((errorCode = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_FetchACL;
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(5,
("SAFS_FetchACL, Fid = %u.%u.%u, Host %s:%d, Id %d\n", Fid->Volume,
Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
AccessList->AFSOpaque_len = 0;
AccessList->AFSOpaque_val = malloc(AFSOPAQUEMAX);
if (!AccessList->AFSOpaque_val) {
ViceLog(0, ("Failed malloc in SRXAFS_FetchACL\n"));
osi_Panic("Failed malloc in SRXAFS_FetchACL\n");
}
/*
* Get volume/vnode for the fetched file; caller's access rights to it
* are also returned
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights)))
goto Bad_FetchACL;
SetVolumeSync(Sync, volptr);
/* Check whether we have permission to fetch the ACL */
if ((errorCode =
Check_PermissionRights(targetptr, client, rights, CHK_FETCHACL, 0)))
goto Bad_FetchACL;
/* Get the Access List from the dir's vnode */
if ((errorCode =
RXFetch_AccessList(targetptr, parentwhentargetnotdir, AccessList)))
goto Bad_FetchACL;
/* Get OutStatus back From the target Vnode */
GetStatus(targetptr, OutStatus, rights, anyrights,
parentwhentargetnotdir);
Bad_FetchACL:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
ViceLog(2,
("SAFS_FetchACL returns %d (ACL=%s)\n", errorCode,
AccessList->AFSOpaque_val));
errorCode = CallPostamble(tcon, errorCode, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, FetchACLEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid,
AUD_ACL, AccessList->AFSOpaque_val, AUD_END);
return errorCode;
} /*SRXAFS_FetchACL */
/*
* This routine is called exclusively by SRXAFS_FetchStatus(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_FetchStatus(struct rx_call *acall, struct AFSFid *Fid,
struct AFSFetchStatus *OutStatus,
struct AFSCallBack *CallBack, struct AFSVolSync *Sync)
{
Vnode *targetptr = 0; /* pointer to vnode to fetch */
Vnode *parentwhentargetnotdir = 0; /* parent vnode if targetptr is a file */
Error errorCode = 0; /* return code to caller */
Volume *volptr = 0; /* pointer to the volume */
struct client *client = 0; /* pointer to the client data */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client = NULL; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_FetchStatus, Fid = %u.%u.%u, Host %s:%d, Id %d\n",
Fid->Volume, Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.FetchStatus++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get volume/vnode for the fetched file; caller's rights to it are
* also returned
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights)))
goto Bad_FetchStatus;
rx_KeepAliveOn(acall);
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Are we allowed to fetch Fid's status? */
if (targetptr->disk.type != vDirectory) {
if ((errorCode =
Check_PermissionRights(targetptr, client, rights,
CHK_FETCHSTATUS, 0))) {
if (rx_GetCallAbortCode(acall) == errorCode)
rx_SetCallAbortCode(acall, 0);
goto Bad_FetchStatus;
}
}
/* set OutStatus From the Fid */
GetStatus(targetptr, OutStatus, rights, anyrights,
parentwhentargetnotdir);
/* If a r/w volume, also set the CallBack state */
if (VolumeWriteable(volptr))
SetCallBackStruct(AddCallBack(client->host, Fid), CallBack);
else {
struct AFSFid myFid;
memset(&myFid, 0, sizeof(struct AFSFid));
myFid.Volume = Fid->Volume;
SetCallBackStruct(AddVolCallBack(client->host, &myFid), CallBack);
}
Bad_FetchStatus:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
ViceLog(2, ("SAFS_FetchStatus returns %d\n", errorCode));
return errorCode;
} /*SAFSS_FetchStatus */
afs_int32
SRXAFS_BulkStatus(struct rx_call * acall, struct AFSCBFids * Fids,
struct AFSBulkStats * OutStats, struct AFSCBs * CallBacks,
struct AFSVolSync * Sync)
{
int i;
afs_int32 nfiles;
Vnode *targetptr = 0; /* pointer to vnode to fetch */
Vnode *parentwhentargetnotdir = 0; /* parent vnode if targetptr is a file */
Error errorCode = 0; /* return code to caller */
Volume *volptr = 0; /* pointer to the volume */
struct client *client = 0; /* pointer to the client data */
afs_int32 rights, anyrights; /* rights for this and any user */
struct AFSFid *tfid; /* file id we're dealing with now */
struct rx_connection *tcon = rx_ConnectionOf(acall);
struct host *thost;
struct client *t_client = NULL; /* tmp pointer to the client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_BULKSTATUS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
ViceLog(1, ("SAFS_BulkStatus\n"));
FS_LOCK;
AFSCallStats.TotalCalls++;
FS_UNLOCK;
nfiles = Fids->AFSCBFids_len; /* # of files in here */
if (nfiles <= 0) { /* Sanity check */
errorCode = EINVAL;
goto Audit_and_Return;
}
/* allocate space for return output parameters */
OutStats->AFSBulkStats_val = (struct AFSFetchStatus *)
malloc(nfiles * sizeof(struct AFSFetchStatus));
if (!OutStats->AFSBulkStats_val) {
ViceLog(0, ("Failed malloc in SRXAFS_BulkStatus\n"));
osi_Panic("Failed malloc in SRXAFS_BulkStatus\n");
}
OutStats->AFSBulkStats_len = nfiles;
CallBacks->AFSCBs_val = (struct AFSCallBack *)
malloc(nfiles * sizeof(struct AFSCallBack));
if (!CallBacks->AFSCBs_val) {
ViceLog(0, ("Failed malloc in SRXAFS_BulkStatus\n"));
osi_Panic("Failed malloc in SRXAFS_BulkStatus\n");
}
CallBacks->AFSCBs_len = nfiles;
tfid = Fids->AFSCBFids_val;
if ((errorCode = CallPreamble(acall, ACTIVECALL, tfid, &tcon, &thost)))
goto Bad_BulkStatus;
for (i = 0; i < nfiles; i++, tfid++) {
/*
* Get volume/vnode for the fetched file; caller's rights to it
* are also returned
*/
if ((errorCode =
GetVolumePackage(acall, tfid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights)))
goto Bad_BulkStatus;
rx_KeepAliveOn(acall);
/* set volume synchronization information, but only once per call */
if (i == 0)
SetVolumeSync(Sync, volptr);
/* Are we allowed to fetch Fid's status? */
if (targetptr->disk.type != vDirectory) {
if ((errorCode =
Check_PermissionRights(targetptr, client, rights,
CHK_FETCHSTATUS, 0))) {
if (rx_GetCallAbortCode(acall) == errorCode)
rx_SetCallAbortCode(acall, 0);
goto Bad_BulkStatus;
}
}
/* set OutStatus From the Fid */
GetStatus(targetptr, &OutStats->AFSBulkStats_val[i], rights,
anyrights, parentwhentargetnotdir);
/* If a r/w volume, also set the CallBack state */
if (VolumeWriteable(volptr))
SetCallBackStruct(AddBulkCallBack(client->host, tfid),
&CallBacks->AFSCBs_val[i]);
else {
struct AFSFid myFid;
memset(&myFid, 0, sizeof(struct AFSFid));
myFid.Volume = tfid->Volume;
SetCallBackStruct(AddVolCallBack(client->host, &myFid),
&CallBacks->AFSCBs_val[i]);
}
/* put back the file ID and volume */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
parentwhentargetnotdir = (Vnode *) 0;
targetptr = (Vnode *) 0;
volptr = (Volume *) 0;
client = (struct client *)0;
}
Bad_BulkStatus:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
errorCode = CallPostamble(tcon, errorCode, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
Audit_and_Return:
ViceLog(2, ("SAFS_BulkStatus returns %d\n", errorCode));
osi_auditU(acall, BulkFetchStatusEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FIDS, Fids, AUD_END);
return errorCode;
} /*SRXAFS_BulkStatus */
afs_int32
SRXAFS_InlineBulkStatus(struct rx_call * acall, struct AFSCBFids * Fids,
struct AFSBulkStats * OutStats,
struct AFSCBs * CallBacks, struct AFSVolSync * Sync)
{
int i;
afs_int32 nfiles;
Vnode *targetptr = 0; /* pointer to vnode to fetch */
Vnode *parentwhentargetnotdir = 0; /* parent vnode if targetptr is a file */
Error errorCode = 0; /* return code to caller */
Volume *volptr = 0; /* pointer to the volume */
struct client *client = 0; /* pointer to the client data */
afs_int32 rights, anyrights; /* rights for this and any user */
struct AFSFid *tfid; /* file id we're dealing with now */
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
AFSFetchStatus *tstatus;
int VolSync_set = 0;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_BULKSTATUS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
ViceLog(1, ("SAFS_InlineBulkStatus\n"));
FS_LOCK;
AFSCallStats.TotalCalls++;
FS_UNLOCK;
nfiles = Fids->AFSCBFids_len; /* # of files in here */
if (nfiles <= 0) { /* Sanity check */
errorCode = EINVAL;
goto Audit_and_Return;
}
/* allocate space for return output parameters */
OutStats->AFSBulkStats_val = (struct AFSFetchStatus *)
malloc(nfiles * sizeof(struct AFSFetchStatus));
if (!OutStats->AFSBulkStats_val) {
ViceLog(0, ("Failed malloc in SRXAFS_FetchStatus\n"));
osi_Panic("Failed malloc in SRXAFS_FetchStatus\n");
}
OutStats->AFSBulkStats_len = nfiles;
CallBacks->AFSCBs_val = (struct AFSCallBack *)
malloc(nfiles * sizeof(struct AFSCallBack));
if (!CallBacks->AFSCBs_val) {
ViceLog(0, ("Failed malloc in SRXAFS_FetchStatus\n"));
osi_Panic("Failed malloc in SRXAFS_FetchStatus\n");
}
CallBacks->AFSCBs_len = nfiles;
/* Zero out return values to avoid leaking information on partial succes */
memset(OutStats->AFSBulkStats_val, 0, nfiles * sizeof(struct AFSFetchStatus));
memset(CallBacks->AFSCBs_val, 0, nfiles * sizeof(struct AFSCallBack));
memset(Sync, 0, sizeof(*Sync));
tfid = Fids->AFSCBFids_val;
if ((errorCode = CallPreamble(acall, ACTIVECALL, tfid, &tcon, &thost))) {
goto Bad_InlineBulkStatus;
}
for (i = 0; i < nfiles; i++, tfid++) {
/*
* Get volume/vnode for the fetched file; caller's rights to it
* are also returned
*/
if ((errorCode =
GetVolumePackage(acall, tfid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights))) {
tstatus = &OutStats->AFSBulkStats_val[i];
if (thost->hostFlags & HERRORTRANS) {
tstatus->errorCode = sys_error_to_et(errorCode);
} else {
tstatus->errorCode = errorCode;
}
PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
parentwhentargetnotdir = (Vnode *) 0;
targetptr = (Vnode *) 0;
volptr = (Volume *) 0;
client = (struct client *)0;
continue;
}
rx_KeepAliveOn(acall);
/* set volume synchronization information, but only once per call */
if (!VolSync_set) {
SetVolumeSync(Sync, volptr);
VolSync_set = 1;
}
/* Are we allowed to fetch Fid's status? */
if (targetptr->disk.type != vDirectory) {
if ((errorCode =
Check_PermissionRights(targetptr, client, rights,
CHK_FETCHSTATUS, 0))) {
tstatus = &OutStats->AFSBulkStats_val[i];
if (thost->hostFlags & HERRORTRANS) {
tstatus->errorCode = sys_error_to_et(errorCode);
} else {
tstatus->errorCode = errorCode;
}
(void)PutVolumePackage(acall, parentwhentargetnotdir,
targetptr, (Vnode *) 0, volptr,
&client);
parentwhentargetnotdir = (Vnode *) 0;
targetptr = (Vnode *) 0;
volptr = (Volume *) 0;
client = (struct client *)0;
continue;
}
}
/* set OutStatus From the Fid */
GetStatus(targetptr,
(struct AFSFetchStatus *)&OutStats->AFSBulkStats_val[i],
rights, anyrights, parentwhentargetnotdir);
/* If a r/w volume, also set the CallBack state */
if (VolumeWriteable(volptr))
SetCallBackStruct(AddBulkCallBack(client->host, tfid),
&CallBacks->AFSCBs_val[i]);
else {
struct AFSFid myFid;
memset(&myFid, 0, sizeof(struct AFSFid));
myFid.Volume = tfid->Volume;
SetCallBackStruct(AddVolCallBack(client->host, &myFid),
&CallBacks->AFSCBs_val[i]);
}
/* put back the file ID and volume */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
parentwhentargetnotdir = (Vnode *) 0;
targetptr = (Vnode *) 0;
volptr = (Volume *) 0;
client = (struct client *)0;
}
errorCode = 0;
Bad_InlineBulkStatus:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
errorCode = CallPostamble(tcon, errorCode, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
Audit_and_Return:
ViceLog(2, ("SAFS_InlineBulkStatus returns %d\n", errorCode));
osi_auditU(acall, InlineBulkFetchStatusEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FIDS, Fids, AUD_END);
return errorCode;
} /*SRXAFS_InlineBulkStatus */
afs_int32
SRXAFS_FetchStatus(struct rx_call * acall, struct AFSFid * Fid,
struct AFSFetchStatus * OutStatus,
struct AFSCallBack * CallBack, struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_FETCHSTATUS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_FetchStatus;
code = SAFSS_FetchStatus(acall, Fid, OutStatus, CallBack, Sync);
Bad_FetchStatus:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, FetchStatusEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_END);
return code;
} /*SRXAFS_FetchStatus */
static
afs_int32
common_StoreData64(struct rx_call *acall, struct AFSFid *Fid,
struct AFSStoreStatus *InStatus, afs_fsize_t Pos,
afs_fsize_t Length, afs_fsize_t FileLength,
struct AFSFetchStatus *OutStatus, struct AFSVolSync *Sync)
{
Vnode *targetptr = 0; /* pointer to input fid */
Vnode *parentwhentargetnotdir = 0; /* parent of Fid to get ACL */
Vnode tparentwhentargetnotdir; /* parent vnode for GetStatus */
Error errorCode = 0; /* return code for caller */
Error fileCode = 0; /* return code from vol package */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client = NULL; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon;
struct host *thost;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct fs_stats_xferData *xferP; /* Ptr to this op's byte size struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval xferStartTime, xferStopTime; /* Start/stop times for xfer portion */
struct timeval elapsedTime; /* Transfer time */
afs_sfsize_t bytesToXfer; /* # bytes to xfer */
afs_sfsize_t bytesXferred; /* # bytes actually xfer */
static afs_int32 tot_bytesXferred; /* shared access protected by FS_LOCK */
/*
* Set our stats pointers, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_STOREDATA]);
xferP = &(afs_FullPerfStats.det.xferOpTimes[FS_STATS_XFERIDX_STOREDATA]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
ViceLog(1,
("StoreData: Fid = %u.%u.%u\n", Fid->Volume, Fid->Vnode,
Fid->Unique));
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
FS_LOCK;
AFSCallStats.StoreData++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if ((errorCode = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_StoreData;
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(5,
("StoreData: Fid = %u.%u.%u, Host %s:%d, Id %d\n", Fid->Volume,
Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
/*
* Get associated volume/vnode for the stored file; caller's rights
* are also returned
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, MustNOTBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_StoreData;
}
rx_KeepAliveOn(acall);
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
if (targetptr->disk.type == vSymlink) {
/* Should we return a better error code here??? */
errorCode = EISDIR;
goto Bad_StoreData;
}
/* Check if we're allowed to store the data */
if ((errorCode =
Check_PermissionRights(targetptr, client, rights, CHK_STOREDATA,
InStatus))) {
goto Bad_StoreData;
}
/*
* Drop the read lock on the parent directory after saving the parent
* vnode information we need to pass to GetStatus
*/
if (parentwhentargetnotdir != NULL) {
tparentwhentargetnotdir = *parentwhentargetnotdir;
rx_KeepAliveOff(acall);
VPutVnode(&fileCode, parentwhentargetnotdir);
rx_KeepAliveOn(acall);
osi_Assert(!fileCode || (fileCode == VSALVAGE));
parentwhentargetnotdir = NULL;
}
#if FS_STATS_DETAILED
/*
* Remember when the data transfer started.
*/
FT_GetTimeOfDay(&xferStartTime, 0);
#endif /* FS_STATS_DETAILED */
/* Do the actual storing of the data */
#if FS_STATS_DETAILED
errorCode =
StoreData_RXStyle(volptr, targetptr, Fid, client, acall, Pos, Length,
FileLength, (InStatus->Mask & AFS_FSYNC),
&bytesToXfer, &bytesXferred);
#else
errorCode =
StoreData_RXStyle(volptr, targetptr, Fid, client, acall, Pos, Length,
FileLength, (InStatus->Mask & AFS_FSYNC));
if (errorCode && (!targetptr->changed_newTime))
goto Bad_StoreData;
#endif /* FS_STATS_DETAILED */
#if FS_STATS_DETAILED
/*
* At this point, the data transfer is done, for good or ill. Remember
* when the transfer ended, bump the number of successes/failures, and
* integrate the transfer size and elapsed time into the stats. If the
* operation failed, we jump to the appropriate point.
*/
FT_GetTimeOfDay(&xferStopTime, 0);
FS_LOCK;
(xferP->numXfers)++;
if (!errorCode) {
(xferP->numSuccesses)++;
/*
* Bump the xfer sum by the number of bytes actually sent, NOT the
* target number.
*/
tot_bytesXferred += bytesXferred;
(xferP->sumBytes) += (tot_bytesXferred >> 10);
tot_bytesXferred &= 0x3FF;
if (bytesXferred < xferP->minBytes)
xferP->minBytes = bytesXferred;
if (bytesXferred > xferP->maxBytes)
xferP->maxBytes = bytesXferred;
/*
* Tally the size of the object. Note: we tally the actual size,
* NOT the number of bytes that made it out over the wire.
*/
if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET0)
(xferP->count[0])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET1)
(xferP->count[1])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET2)
(xferP->count[2])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET3)
(xferP->count[3])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET4)
(xferP->count[4])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET5)
(xferP->count[5])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET6)
(xferP->count[6])++;
else if (bytesToXfer <= FS_STATS_MAXBYTES_BUCKET7)
(xferP->count[7])++;
else
(xferP->count[8])++;
fs_stats_GetDiff(elapsedTime, xferStartTime, xferStopTime);
fs_stats_AddTo((xferP->sumTime), elapsedTime);
fs_stats_SquareAddTo((xferP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (xferP->minTime))) {
fs_stats_TimeAssign((xferP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (xferP->maxTime))) {
fs_stats_TimeAssign((xferP->maxTime), elapsedTime);
}
}
FS_UNLOCK;
/*
* Finally, go off to tell our caller the bad news in case the
* store failed.
*/
if (errorCode && (!targetptr->changed_newTime))
goto Bad_StoreData;
#endif /* FS_STATS_DETAILED */
rx_KeepAliveOff(acall);
/* Update the status of the target's vnode */
Update_TargetVnodeStatus(targetptr, TVS_SDATA, client, InStatus,
targetptr, volptr, 0);
rx_KeepAliveOn(acall);
/* Get the updated File's status back to the caller */
GetStatus(targetptr, OutStatus, rights, anyrights,
&tparentwhentargetnotdir);
Bad_StoreData:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
ViceLog(2, ("SAFS_StoreData returns %d\n", errorCode));
errorCode = CallPostamble(tcon, errorCode, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, StoreDataEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_END);
return (errorCode);
} /*common_StoreData64 */
afs_int32
SRXAFS_StoreData(struct rx_call * acall, struct AFSFid * Fid,
struct AFSStoreStatus * InStatus, afs_uint32 Pos,
afs_uint32 Length, afs_uint32 FileLength,
struct AFSFetchStatus * OutStatus, struct AFSVolSync * Sync)
{
if (FileLength > 0x7fffffff || Pos > 0x7fffffff ||
(0x7fffffff - Pos) < Length)
return EFBIG;
return common_StoreData64(acall, Fid, InStatus, Pos, Length, FileLength,
OutStatus, Sync);
} /*SRXAFS_StoreData */
afs_int32
SRXAFS_StoreData64(struct rx_call * acall, struct AFSFid * Fid,
struct AFSStoreStatus * InStatus, afs_uint64 Pos,
afs_uint64 Length, afs_uint64 FileLength,
struct AFSFetchStatus * OutStatus,
struct AFSVolSync * Sync)
{
int code;
afs_fsize_t tPos;
afs_fsize_t tLength;
afs_fsize_t tFileLength;
#ifdef AFS_64BIT_ENV
tPos = (afs_fsize_t) Pos;
tLength = (afs_fsize_t) Length;
tFileLength = (afs_fsize_t) FileLength;
#else /* AFS_64BIT_ENV */
if (FileLength.high)
return EFBIG;
tPos = Pos.low;
tLength = Length.low;
tFileLength = FileLength.low;
#endif /* AFS_64BIT_ENV */
code =
common_StoreData64(acall, Fid, InStatus, tPos, tLength, tFileLength,
OutStatus, Sync);
return code;
}
afs_int32
SRXAFS_StoreACL(struct rx_call * acall, struct AFSFid * Fid,
struct AFSOpaque * AccessList,
struct AFSFetchStatus * OutStatus, struct AFSVolSync * Sync)
{
Vnode *targetptr = 0; /* pointer to input fid */
Vnode *parentwhentargetnotdir = 0; /* parent of Fid to get ACL */
Error errorCode = 0; /* return code for caller */
struct AFSStoreStatus InStatus; /* Input status for fid */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_STOREACL]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((errorCode = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_StoreACL;
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_StoreACL, Fid = %u.%u.%u, ACL=%s, Host %s:%d, Id %d\n",
Fid->Volume, Fid->Vnode, Fid->Unique, AccessList->AFSOpaque_val,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.StoreACL++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
InStatus.Mask = 0; /* not storing any status */
/*
* Get associated volume/vnode for the target dir; caller's rights
* are also returned.
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_StoreACL;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Check if we have permission to change the dir's ACL */
if ((errorCode =
Check_PermissionRights(targetptr, client, rights, CHK_STOREACL,
&InStatus))) {
goto Bad_StoreACL;
}
/* Build and store the new Access List for the dir */
if ((errorCode = RXStore_AccessList(targetptr, AccessList))) {
goto Bad_StoreACL;
}
targetptr->changed_newTime = 1; /* status change of directory */
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, targetptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
rx_KeepAliveOn(acall);
/* break call backs on the directory */
BreakCallBack(client->host, Fid, 0);
/* Get the updated dir's status back to the caller */
GetStatus(targetptr, OutStatus, rights, anyrights, 0);
Bad_StoreACL:
/* Update and store volume/vnode and parent vnodes back */
PutVolumePackage(acall, parentwhentargetnotdir, targetptr, (Vnode *) 0,
volptr, &client);
ViceLog(2, ("SAFS_StoreACL returns %d\n", errorCode));
errorCode = CallPostamble(tcon, errorCode, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, StoreACLEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_ACL, AccessList->AFSOpaque_val, AUD_END);
return errorCode;
} /*SRXAFS_StoreACL */
/*
* Note: This routine is called exclusively from SRXAFS_StoreStatus(), and
* should be merged when possible.
*/
static afs_int32
SAFSS_StoreStatus(struct rx_call *acall, struct AFSFid *Fid,
struct AFSStoreStatus *InStatus,
struct AFSFetchStatus *OutStatus, struct AFSVolSync *Sync)
{
Vnode *targetptr = 0; /* pointer to input fid */
Vnode *parentwhentargetnotdir = 0; /* parent of Fid to get ACL */
Error errorCode = 0; /* return code for caller */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client = NULL; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_StoreStatus, Fid = %u.%u.%u, Host %s:%d, Id %d\n",
Fid->Volume, Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.StoreStatus++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get volume/vnode for the target file; caller's rights to it are
* also returned
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_StoreStatus;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Check if the caller has proper permissions to store status to Fid */
if ((errorCode =
Check_PermissionRights(targetptr, client, rights, CHK_STORESTATUS,
InStatus))) {
goto Bad_StoreStatus;
}
/*
* Check for a symbolic link; we can't chmod these (otherwise could
* change a symlink to a mt pt or vice versa)
*/
if (targetptr->disk.type == vSymlink && (InStatus->Mask & AFS_SETMODE)) {
errorCode = EINVAL;
goto Bad_StoreStatus;
}
/* Update the status of the target's vnode */
Update_TargetVnodeStatus(targetptr, TVS_SSTATUS, client, InStatus,
(parentwhentargetnotdir ? parentwhentargetnotdir
: targetptr), volptr, 0);
rx_KeepAliveOn(acall);
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, targetptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
/* Break call backs on Fid */
BreakCallBack(client->host, Fid, 0);
/* Return the updated status back to caller */
GetStatus(targetptr, OutStatus, rights, anyrights,
parentwhentargetnotdir);
Bad_StoreStatus:
/* Update and store volume/vnode and parent vnodes back */
PutVolumePackage(acall, parentwhentargetnotdir, targetptr, (Vnode *) 0,
volptr, &client);
ViceLog(2, ("SAFS_StoreStatus returns %d\n", errorCode));
return errorCode;
} /*SAFSS_StoreStatus */
afs_int32
SRXAFS_StoreStatus(struct rx_call * acall, struct AFSFid * Fid,
struct AFSStoreStatus * InStatus,
struct AFSFetchStatus * OutStatus,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_STORESTATUS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_StoreStatus;
code = SAFSS_StoreStatus(acall, Fid, InStatus, OutStatus, Sync);
Bad_StoreStatus:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, StoreStatusEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_END);
return code;
} /*SRXAFS_StoreStatus */
/*
* This routine is called exclusively by SRXAFS_RemoveFile(), and should be
* merged in when possible.
*/
static afs_int32
SAFSS_RemoveFile(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
struct AFSFetchStatus *OutDirStatus, struct AFSVolSync *Sync)
{
Vnode *parentptr = 0; /* vnode of input Directory */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Vnode *targetptr = 0; /* file to be deleted */
Volume *volptr = 0; /* pointer to the volume header */
AFSFid fileFid; /* area for Fid from the directory */
Error errorCode = 0; /* error code */
DirHandle dir; /* Handle for dir package I/O */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
FidZero(&dir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_RemoveFile %s, Did = %u.%u.%u, Host %s:%d, Id %d\n", Name,
DirFid->Volume, DirFid->Vnode, DirFid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.RemoveFile++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get volume/vnode for the parent dir; caller's access rights are
* also returned
*/
if ((errorCode =
GetVolumePackage(acall, DirFid, &volptr, &parentptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_RemoveFile;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Does the caller has delete (& write) access to the parent directory? */
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_DELETE))) {
goto Bad_RemoveFile;
}
/* Actually delete the desired file */
if ((errorCode =
DeleteTarget(parentptr, volptr, &targetptr, &dir, &fileFid, Name,
MustNOTBeDIR))) {
goto Bad_RemoveFile;
}
/* Update the vnode status of the parent dir */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount,
client->InSameNetwork);
#else
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount);
#endif /* FS_STATS_DETAILED */
rx_KeepAliveOn(acall);
/* Return the updated parent dir's status back to caller */
GetStatus(parentptr, OutDirStatus, rights, anyrights, 0);
/* Handle internal callback state for the parent and the deleted file */
if (targetptr->disk.linkCount == 0) {
/* no references left, discard entry */
DeleteFileCallBacks(&fileFid);
/* convert the parent lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
} else {
/* convert the parent lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
/* convert the target lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, targetptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
/* tell all the file has changed */
BreakCallBack(client->host, &fileFid, 1);
}
/* break call back on the directory */
BreakCallBack(client->host, DirFid, 0);
Bad_RemoveFile:
/* Update and store volume/vnode and parent vnodes back */
PutVolumePackage(acall, parentwhentargetnotdir, targetptr, parentptr,
volptr, &client);
FidZap(&dir);
ViceLog(2, ("SAFS_RemoveFile returns %d\n", errorCode));
return errorCode;
} /*SAFSS_RemoveFile */
afs_int32
SRXAFS_RemoveFile(struct rx_call * acall, struct AFSFid * DirFid, char *Name,
struct AFSFetchStatus * OutDirStatus,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_REMOVEFILE]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, DirFid, &tcon, &thost)))
goto Bad_RemoveFile;
code = SAFSS_RemoveFile(acall, DirFid, Name, OutDirStatus, Sync);
Bad_RemoveFile:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, RemoveFileEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, DirFid, AUD_STR, Name, AUD_END);
return code;
} /*SRXAFS_RemoveFile */
/*
* This routine is called exclusively from SRXAFS_CreateFile(), and should
* be merged in when possible.
*/
static afs_int32
SAFSS_CreateFile(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
struct AFSStoreStatus *InStatus, struct AFSFid *OutFid,
struct AFSFetchStatus *OutFidStatus,
struct AFSFetchStatus *OutDirStatus,
struct AFSCallBack *CallBack, struct AFSVolSync *Sync)
{
Vnode *parentptr = 0; /* vnode of input Directory */
Vnode *targetptr = 0; /* vnode of the new file */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Volume *volptr = 0; /* pointer to the volume header */
Error errorCode = 0; /* error code */
DirHandle dir; /* Handle for dir package I/O */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
FidZero(&dir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_CreateFile %s, Did = %u.%u.%u, Host %s:%d, Id %d\n", Name,
DirFid->Volume, DirFid->Vnode, DirFid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.CreateFile++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (!FileNameOK(Name)) {
errorCode = EINVAL;
goto Bad_CreateFile;
}
/*
* Get associated volume/vnode for the parent dir; caller long are
* also returned
*/
if ((errorCode =
GetVolumePackage(acall, DirFid, &volptr, &parentptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_CreateFile;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Can we write (and insert) onto the parent directory? */
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_INSERT))) {
goto Bad_CreateFile;
}
/* get a new vnode for the file to be created and set it up */
if ((errorCode =
Alloc_NewVnode(parentptr, &dir, volptr, &targetptr, Name, OutFid,
vFile, nBlocks(0))))
goto Bad_CreateFile;
/* update the status of the parent vnode */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount,
client->InSameNetwork);
#else
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount);
#endif /* FS_STATS_DETAILED */
/* update the status of the new file's vnode */
Update_TargetVnodeStatus(targetptr, TVS_CFILE, client, InStatus,
parentptr, volptr, 0);
rx_KeepAliveOn(acall);
/* set up the return status for the parent dir and the newly created file, and since the newly created file is owned by the creator, give it PRSFS_ADMINISTER to tell the client its the owner of the file */
GetStatus(targetptr, OutFidStatus, rights | PRSFS_ADMINISTER, anyrights, parentptr);
GetStatus(parentptr, OutDirStatus, rights, anyrights, 0);
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
/* break call back on parent dir */
BreakCallBack(client->host, DirFid, 0);
/* Return a callback promise for the newly created file to the caller */
SetCallBackStruct(AddCallBack(client->host, OutFid), CallBack);
Bad_CreateFile:
/* Update and store volume/vnode and parent vnodes back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr, parentptr,
volptr, &client);
FidZap(&dir);
ViceLog(2, ("SAFS_CreateFile returns %d\n", errorCode));
return errorCode;
} /*SAFSS_CreateFile */
afs_int32
SRXAFS_CreateFile(struct rx_call * acall, struct AFSFid * DirFid, char *Name,
struct AFSStoreStatus * InStatus, struct AFSFid * OutFid,
struct AFSFetchStatus * OutFidStatus,
struct AFSFetchStatus * OutDirStatus,
struct AFSCallBack * CallBack, struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_CREATEFILE]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
memset(OutFid, 0, sizeof(struct AFSFid));
if ((code = CallPreamble(acall, ACTIVECALL, DirFid, &tcon, &thost)))
goto Bad_CreateFile;
code =
SAFSS_CreateFile(acall, DirFid, Name, InStatus, OutFid, OutFidStatus,
OutDirStatus, CallBack, Sync);
Bad_CreateFile:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, CreateFileEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, DirFid, AUD_STR, Name, AUD_FID, OutFid, AUD_END);
return code;
} /*SRXAFS_CreateFile */
/*
* This routine is called exclusively from SRXAFS_Rename(), and should be
* merged in when possible.
*/
static afs_int32
SAFSS_Rename(struct rx_call *acall, struct AFSFid *OldDirFid, char *OldName,
struct AFSFid *NewDirFid, char *NewName,
struct AFSFetchStatus *OutOldDirStatus,
struct AFSFetchStatus *OutNewDirStatus, struct AFSVolSync *Sync)
{
Vnode *oldvptr = 0; /* vnode of the old Directory */
Vnode *newvptr = 0; /* vnode of the new Directory */
Vnode *fileptr = 0; /* vnode of the file to move */
Vnode *newfileptr = 0; /* vnode of the file to delete */
Vnode *testvptr = 0; /* used in directory tree walk */
Vnode *parent = 0; /* parent for use in SetAccessList */
Error errorCode = 0; /* error code */
Error fileCode = 0; /* used when writing Vnodes */
VnodeId testnode; /* used in directory tree walk */
AFSFid fileFid; /* Fid of file to move */
AFSFid newFileFid; /* Fid of new file */
DirHandle olddir; /* Handle for dir package I/O */
DirHandle newdir; /* Handle for dir package I/O */
DirHandle filedir; /* Handle for dir package I/O */
DirHandle newfiledir; /* Handle for dir package I/O */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
afs_int32 newrights; /* rights for this user */
afs_int32 newanyrights; /* rights for any user */
int doDelete; /* deleted the rename target (ref count now 0) */
int code;
int updatefile = 0; /* are we changing the renamed file? (we do this
* if we need to update .. on a renamed dir) */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
afs_ino_str_t stmp;
FidZero(&olddir);
FidZero(&newdir);
FidZero(&filedir);
FidZero(&newfiledir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_Rename %s to %s, Fid = %u.%u.%u to %u.%u.%u, Host %s:%d, Id %d\n",
OldName, NewName, OldDirFid->Volume, OldDirFid->Vnode,
OldDirFid->Unique, NewDirFid->Volume, NewDirFid->Vnode,
NewDirFid->Unique, inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.Rename++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (!FileNameOK(NewName)) {
errorCode = EINVAL;
goto Bad_Rename;
}
if (OldDirFid->Volume != NewDirFid->Volume) {
DFlush();
errorCode = EXDEV;
goto Bad_Rename;
}
if ((strcmp(OldName, ".") == 0) || (strcmp(OldName, "..") == 0)
|| (strcmp(NewName, ".") == 0) || (strcmp(NewName, "..") == 0)
|| (strlen(NewName) == 0) || (strlen(OldName) == 0)) {
DFlush();
errorCode = EINVAL;
goto Bad_Rename;
}
if (OldDirFid->Vnode <= NewDirFid->Vnode) {
if ((errorCode =
GetVolumePackage(acall, OldDirFid, &volptr, &oldvptr, MustBeDIR,
&parent, &client, WRITE_LOCK, &rights,
&anyrights))) {
DFlush();
goto Bad_Rename;
}
if (OldDirFid->Vnode == NewDirFid->Vnode) {
newvptr = oldvptr;
newrights = rights, newanyrights = anyrights;
} else
if ((errorCode =
GetVolumePackage(acall, NewDirFid, &volptr, &newvptr,
MustBeDIR, &parent, &client, WRITE_LOCK,
&newrights, &newanyrights))) {
DFlush();
goto Bad_Rename;
}
} else {
if ((errorCode =
GetVolumePackage(acall, NewDirFid, &volptr, &newvptr, MustBeDIR,
&parent, &client, WRITE_LOCK, &newrights,
&newanyrights))) {
DFlush();
goto Bad_Rename;
}
if ((errorCode =
GetVolumePackage(acall, OldDirFid, &volptr, &oldvptr, MustBeDIR,
&parent, &client, WRITE_LOCK, &rights,
&anyrights))) {
DFlush();
goto Bad_Rename;
}
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
if ((errorCode = CheckWriteMode(oldvptr, rights, PRSFS_DELETE))) {
goto Bad_Rename;
}
if ((errorCode = CheckWriteMode(newvptr, newrights, PRSFS_INSERT))) {
goto Bad_Rename;
}
if (CheckLength(volptr, oldvptr, -1) ||
CheckLength(volptr, newvptr, -1)) {
VTakeOffline(volptr);
errorCode = VSALVAGE;
goto Bad_Rename;
}
/* The CopyOnWrite might return ENOSPC ( disk full). Even if the second
* call to CopyOnWrite returns error, it is not necessary to revert back
* the effects of the first call because the contents of the volume is
* not modified, it is only replicated.
*/
if (oldvptr->disk.cloned) {
ViceLog(25, ("Rename : calling CopyOnWrite on old dir\n"));
if ((errorCode = CopyOnWrite(oldvptr, volptr, 0, MAXFSIZE)))
goto Bad_Rename;
}
SetDirHandle(&olddir, oldvptr);
if (newvptr->disk.cloned) {
ViceLog(25, ("Rename : calling CopyOnWrite on new dir\n"));
if ((errorCode = CopyOnWrite(newvptr, volptr, 0, MAXFSIZE)))
goto Bad_Rename;
}
SetDirHandle(&newdir, newvptr);
/* Lookup the file to delete its vnode */
if (Lookup(&olddir, OldName, &fileFid)) {
errorCode = ENOENT;
goto Bad_Rename;
}
if (fileFid.Vnode == oldvptr->vnodeNumber
|| fileFid.Vnode == newvptr->vnodeNumber) {
errorCode = FSERR_ELOOP;
goto Bad_Rename;
}
fileFid.Volume = V_id(volptr);
fileptr = VGetVnode(&errorCode, volptr, fileFid.Vnode, WRITE_LOCK);
if (errorCode != 0) {
ViceLog(0,
("SAFSS_Rename(): Error in VGetVnode() for old file %s, code %d\n",
OldName, errorCode));
VTakeOffline(volptr);
goto Bad_Rename;
}
if (fileptr->disk.uniquifier != fileFid.Unique) {
ViceLog(0,
("SAFSS_Rename(): Old file %s uniquifier mismatch\n",
OldName));
VTakeOffline(volptr);
errorCode = EIO;
goto Bad_Rename;
}
if (fileptr->disk.type != vDirectory && oldvptr != newvptr
&& fileptr->disk.linkCount != 1) {
/*
* Hard links exist to this file - cannot move one of the links to
* a new directory because of AFS restrictions (this is the same
* reason that links cannot be made across directories, i.e.
* access lists)
*/
errorCode = EXDEV;
goto Bad_Rename;
}
/* Lookup the new file */
if (!(Lookup(&newdir, NewName, &newFileFid))) {
if (readonlyServer) {
errorCode = VREADONLY;
goto Bad_Rename;
}
if (!(newrights & PRSFS_DELETE)) {
errorCode = EACCES;
goto Bad_Rename;
}
if (newFileFid.Vnode == oldvptr->vnodeNumber
|| newFileFid.Vnode == newvptr->vnodeNumber
|| newFileFid.Vnode == fileFid.Vnode) {
errorCode = EINVAL;
goto Bad_Rename;
}
newFileFid.Volume = V_id(volptr);
newfileptr =
VGetVnode(&errorCode, volptr, newFileFid.Vnode, WRITE_LOCK);
if (errorCode != 0) {
ViceLog(0,
("SAFSS_Rename(): Error in VGetVnode() for new file %s, code %d\n",
NewName, errorCode));
VTakeOffline(volptr);
goto Bad_Rename;
}
if (fileptr->disk.uniquifier != fileFid.Unique) {
ViceLog(0,
("SAFSS_Rename(): New file %s uniquifier mismatch\n",
NewName));
VTakeOffline(volptr);
errorCode = EIO;
goto Bad_Rename;
}
SetDirHandle(&newfiledir, newfileptr);
/* Now check that we're moving directories over directories properly, etc.
* return proper POSIX error codes:
* if fileptr is a file and new is a dir: EISDIR.
* if fileptr is a dir and new is a file: ENOTDIR.
* Also, dir to be removed must be empty, of course.
*/
if (newfileptr->disk.type == vDirectory) {
if (fileptr->disk.type != vDirectory) {
errorCode = EISDIR;
goto Bad_Rename;
}
if ((IsEmpty(&newfiledir))) {
errorCode = EEXIST;
goto Bad_Rename;
}
} else {
if (fileptr->disk.type == vDirectory) {
errorCode = ENOTDIR;
goto Bad_Rename;
}
}
}
/*
* ok - now we check that the old name is not above new name in the
* directory structure. This is to prevent removing a subtree alltogether
*/
if ((oldvptr != newvptr) && (fileptr->disk.type == vDirectory)) {
afs_int32 forpass = 0, vnum = 0, top = 0;
for (testnode = newvptr->disk.parent; testnode != 0; forpass++) {
if (testnode > vnum) vnum = testnode;
if (forpass > vnum) {
errorCode = FSERR_ELOOP;
goto Bad_Rename;
}
if (testnode == oldvptr->vnodeNumber) {
testnode = oldvptr->disk.parent;
continue;
}
if ((testnode == fileptr->vnodeNumber)
|| (testnode == newvptr->vnodeNumber)) {
errorCode = FSERR_ELOOP;
goto Bad_Rename;
}
if ((newfileptr) && (testnode == newfileptr->vnodeNumber)) {
errorCode = FSERR_ELOOP;
goto Bad_Rename;
}
if (testnode == 1) top = 1;
testvptr = VGetVnode(&errorCode, volptr, testnode, READ_LOCK);
osi_Assert(errorCode == 0);
testnode = testvptr->disk.parent;
VPutVnode(&errorCode, testvptr);
if ((top == 1) && (testnode != 0)) {
VTakeOffline(volptr);
ViceLog(0,
("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
errorCode = EIO;
goto Bad_Rename;
}
osi_Assert(errorCode == 0);
}
}
if (fileptr->disk.type == vDirectory) {
SetDirHandle(&filedir, fileptr);
if (oldvptr != newvptr) {
/* we always need to update .. if we've moving fileptr to a
* different directory */
updatefile = 1;
} else {
struct AFSFid unused;
code = Lookup(&filedir, "..", &unused);
if (code == ENOENT) {
/* only update .. if it doesn't already exist */
updatefile = 1;
}
}
}
/* Do the CopyonWrite first before modifying anything else. Copying is
* required when we have to change entries for ..
*/
if (updatefile && (fileptr->disk.cloned)) {
ViceLog(25, ("Rename : calling CopyOnWrite on target dir\n"));
if ((errorCode = CopyOnWrite(fileptr, volptr, 0, MAXFSIZE)))
goto Bad_Rename;
/* since copyonwrite would mean fileptr has a new handle, do it here */
FidZap(&filedir);
SetDirHandle(&filedir, fileptr);
}
/* If the new name exists already, delete it and the file it points to */
doDelete = 0;
if (newfileptr) {
/* Delete NewName from its directory */
code = Delete(&newdir, NewName);
osi_Assert(code == 0);
/* Drop the link count */
newfileptr->disk.linkCount--;
if (newfileptr->disk.linkCount == 0) { /* Link count 0 - delete */
afs_fsize_t newSize;
VN_GET_LEN(newSize, newfileptr);
VAdjustDiskUsage((Error *) & errorCode, volptr,
(afs_sfsize_t) - nBlocks(newSize), 0);
if (VN_GET_INO(newfileptr)) {
IH_REALLYCLOSE(newfileptr->handle);
errorCode =
IH_DEC(V_linkHandle(volptr), VN_GET_INO(newfileptr),
V_parentId(volptr));
IH_RELEASE(newfileptr->handle);
if (errorCode == -1) {
ViceLog(0,
("Del: inode=%s, name=%s, errno=%d\n",
PrintInode(stmp, VN_GET_INO(newfileptr)),
NewName, errno));
if ((errno != ENOENT) && (errno != EIO)
&& (errno != ENXIO))
ViceLog(0, ("Do we need to fsck?\n"));
}
}
VN_SET_INO(newfileptr, (Inode) 0);
newfileptr->delete = 1; /* Mark NewName vnode to delete */
doDelete = 1;
} else {
/* Link count did not drop to zero.
* Mark NewName vnode as changed - updates stime.
*/
newfileptr->changed_newTime = 1;
}
}
/*
* If the create below fails, and the delete above worked, we have
* removed the new name and not replaced it. This is not very likely,
* but possible. We could try to put the old file back, but it is
* highly unlikely that it would work since it would involve issuing
* another create.
*/
if ((errorCode = Create(&newdir, (char *)NewName, &fileFid)))
goto Bad_Rename;
/* Delete the old name */
osi_Assert(Delete(&olddir, (char *)OldName) == 0);
/* if the directory length changes, reflect it in the statistics */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(oldvptr, volptr, &olddir, client->ViceId,
oldvptr->disk.linkCount, client->InSameNetwork);
Update_ParentVnodeStatus(newvptr, volptr, &newdir, client->ViceId,
newvptr->disk.linkCount, client->InSameNetwork);
#else
Update_ParentVnodeStatus(oldvptr, volptr, &olddir, client->ViceId,
oldvptr->disk.linkCount);
Update_ParentVnodeStatus(newvptr, volptr, &newdir, client->ViceId,
newvptr->disk.linkCount);
#endif /* FS_STATS_DETAILED */
if (oldvptr == newvptr)
oldvptr->disk.dataVersion--; /* Since it was bumped by 2! */
if (fileptr->disk.parent != newvptr->vnodeNumber) {
fileptr->disk.parent = newvptr->vnodeNumber;
fileptr->changed_newTime = 1;
}
/* if we are dealing with a rename of a directory, and we need to
* update the .. entry of that directory */
if (updatefile) {
osi_Assert(!fileptr->disk.cloned);
fileptr->changed_newTime = 1; /* status change of moved file */
/* fix .. to point to the correct place */
Delete(&filedir, ".."); /* No assert--some directories may be bad */
osi_Assert(Create(&filedir, "..", NewDirFid) == 0);
fileptr->disk.dataVersion++;
/* if the parent directories are different the link counts have to be */
/* changed due to .. in the renamed directory */
if (oldvptr != newvptr) {
oldvptr->disk.linkCount--;
newvptr->disk.linkCount++;
}
}
/* set up return status */
GetStatus(oldvptr, OutOldDirStatus, rights, anyrights, 0);
GetStatus(newvptr, OutNewDirStatus, newrights, newanyrights, 0);
if (newfileptr && doDelete) {
DeleteFileCallBacks(&newFileFid); /* no other references */
}
DFlush();
/* convert the write locks to a read locks before breaking callbacks */
VVnodeWriteToRead(&errorCode, newvptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
if (oldvptr != newvptr) {
VVnodeWriteToRead(&errorCode, oldvptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
}
if (newfileptr && !doDelete) {
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, newfileptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
}
rx_KeepAliveOn(acall);
/* break call back on NewDirFid, OldDirFid, NewDirFid and newFileFid */
BreakCallBack(client->host, NewDirFid, 0);
if (oldvptr != newvptr) {
BreakCallBack(client->host, OldDirFid, 0);
}
if (updatefile) {
/* if a dir moved, .. changed */
/* we do not give an AFSFetchStatus structure back to the
* originating client, and the file's status has changed, so be
* sure to send a callback break. In theory the client knows
* enough to know that the callback could be broken implicitly,
* but that may not be clear, and some client implementations
* may not know to. */
BreakCallBack(client->host, &fileFid, 1);
}
if (newfileptr) {
/* Note: it is not necessary to break the callback */
if (doDelete)
DeleteFileCallBacks(&newFileFid); /* no other references */
else
/* other's still exist (with wrong link count) */
BreakCallBack(client->host, &newFileFid, 1);
}
Bad_Rename:
if (newfileptr) {
rx_KeepAliveOff(acall);
VPutVnode(&fileCode, newfileptr);
osi_Assert(fileCode == 0);
}
(void)PutVolumePackage(acall, fileptr, (newvptr && newvptr != oldvptr ?
newvptr : 0), oldvptr, volptr, &client);
FidZap(&olddir);
FidZap(&newdir);
FidZap(&filedir);
FidZap(&newfiledir);
ViceLog(2, ("SAFS_Rename returns %d\n", errorCode));
return errorCode;
} /*SAFSS_Rename */
afs_int32
SRXAFS_Rename(struct rx_call * acall, struct AFSFid * OldDirFid,
char *OldName, struct AFSFid * NewDirFid, char *NewName,
struct AFSFetchStatus * OutOldDirStatus,
struct AFSFetchStatus * OutNewDirStatus,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_RENAME]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, OldDirFid, &tcon, &thost)))
goto Bad_Rename;
code =
SAFSS_Rename(acall, OldDirFid, OldName, NewDirFid, NewName,
OutOldDirStatus, OutNewDirStatus, Sync);
Bad_Rename:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, RenameFileEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, OldDirFid, AUD_STR, OldName,
AUD_FID, NewDirFid, AUD_STR, NewName, AUD_END);
return code;
} /*SRXAFS_Rename */
/*
* This routine is called exclusively by SRXAFS_Symlink(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_Symlink(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
char *LinkContents, struct AFSStoreStatus *InStatus,
struct AFSFid *OutFid, struct AFSFetchStatus *OutFidStatus,
struct AFSFetchStatus *OutDirStatus, struct AFSVolSync *Sync)
{
Vnode *parentptr = 0; /* vnode of input Directory */
Vnode *targetptr = 0; /* vnode of the new link */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Error errorCode = 0; /* error code */
afs_sfsize_t len;
int code = 0;
DirHandle dir; /* Handle for dir package I/O */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
FdHandle_t *fdP;
struct rx_connection *tcon = rx_ConnectionOf(acall);
FidZero(&dir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_Symlink %s to %s, Did = %u.%u.%u, Host %s:%d, Id %d\n", Name,
LinkContents, DirFid->Volume, DirFid->Vnode, DirFid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.Symlink++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (!FileNameOK(Name)) {
errorCode = EINVAL;
goto Bad_SymLink;
}
/*
* Get the vnode and volume for the parent dir along with the caller's
* rights to it
*/
if ((errorCode =
GetVolumePackage(acall, DirFid, &volptr, &parentptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights)))
goto Bad_SymLink;
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Does the caller has insert (and write) access to the parent directory? */
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_INSERT)))
goto Bad_SymLink;
/*
* If we're creating a mount point (any x bits clear), we must have
* administer access to the directory, too. Always allow sysadmins
* to do this.
*/
if ((InStatus->Mask & AFS_SETMODE) && !(InStatus->UnixModeBits & 0111)) {
if (readonlyServer) {
errorCode = VREADONLY;
goto Bad_SymLink;
}
/*
* We have a mountpoint, 'cause we're trying to set the Unix mode
* bits to something with some x bits missing (default mode bits
* if AFS_SETMODE is false is 0777)
*/
if (VanillaUser(client) && !(rights & PRSFS_ADMINISTER)) {
errorCode = EACCES;
goto Bad_SymLink;
}
}
/* get a new vnode for the symlink and set it up */
if ((errorCode =
Alloc_NewVnode(parentptr, &dir, volptr, &targetptr, Name, OutFid,
vSymlink, nBlocks(strlen((char *)LinkContents))))) {
goto Bad_SymLink;
}
/* update the status of the parent vnode */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount,
client->InSameNetwork);
#else
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount);
#endif /* FS_STATS_DETAILED */
/* update the status of the new symbolic link file vnode */
Update_TargetVnodeStatus(targetptr, TVS_SLINK, client, InStatus,
parentptr, volptr, strlen((char *)LinkContents));
/* Write the contents of the symbolic link name into the target inode */
fdP = IH_OPEN(targetptr->handle);
if (fdP == NULL) {
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
parentptr, volptr, &client);
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
len = strlen((char *) LinkContents);
code = (len == FDH_PWRITE(fdP, (char *) LinkContents, len, 0)) ? 0 : VDISKFULL;
if (code)
ViceLog(0, ("SAFSS_Symlink FDH_PWRITE failed for len=%d, Fid=%u.%d.%d\n", (int)len, OutFid->Volume, OutFid->Vnode, OutFid->Unique));
FDH_CLOSE(fdP);
/*
* Set up and return modified status for the parent dir and new symlink
* to caller.
*/
GetStatus(targetptr, OutFidStatus, rights, anyrights, parentptr);
GetStatus(parentptr, OutDirStatus, rights, anyrights, 0);
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
rx_KeepAliveOn(acall);
/* break call back on the parent dir */
BreakCallBack(client->host, DirFid, 0);
Bad_SymLink:
/* Write the all modified vnodes (parent, new files) and volume back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr, parentptr,
volptr, &client);
FidZap(&dir);
ViceLog(2, ("SAFS_Symlink returns %d\n", errorCode));
return ( errorCode ? errorCode : code );
} /*SAFSS_Symlink */
afs_int32
SRXAFS_Symlink(struct rx_call *acall, /* Rx call */
struct AFSFid *DirFid, /* Parent dir's fid */
char *Name, /* File name to create */
char *LinkContents, /* Contents of the new created file */
struct AFSStoreStatus *InStatus, /* Input status for the new symbolic link */
struct AFSFid *OutFid, /* Fid for newly created symbolic link */
struct AFSFetchStatus *OutFidStatus, /* Output status for new symbolic link */
struct AFSFetchStatus *OutDirStatus, /* Output status for parent dir */
struct AFSVolSync *Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_SYMLINK]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, DirFid, &tcon, &thost)))
goto Bad_Symlink;
code =
SAFSS_Symlink(acall, DirFid, Name, LinkContents, InStatus, OutFid,
OutFidStatus, OutDirStatus, Sync);
Bad_Symlink:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, SymlinkEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, DirFid, AUD_STR, Name,
AUD_FID, OutFid, AUD_STR, LinkContents, AUD_END);
return code;
} /*SRXAFS_Symlink */
/*
* This routine is called exclusively by SRXAFS_Link(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_Link(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
struct AFSFid *ExistingFid, struct AFSFetchStatus *OutFidStatus,
struct AFSFetchStatus *OutDirStatus, struct AFSVolSync *Sync)
{
Vnode *parentptr = 0; /* vnode of input Directory */
Vnode *targetptr = 0; /* vnode of the new file */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Volume *volptr = 0; /* pointer to the volume header */
Error errorCode = 0; /* error code */
DirHandle dir; /* Handle for dir package I/O */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
FidZero(&dir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_Link %s, Did = %u.%u.%u, Fid = %u.%u.%u, Host %s:%d, Id %d\n",
Name, DirFid->Volume, DirFid->Vnode, DirFid->Unique,
ExistingFid->Volume, ExistingFid->Vnode, ExistingFid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.Link++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (DirFid->Volume != ExistingFid->Volume) {
errorCode = EXDEV;
goto Bad_Link;
}
if (!FileNameOK(Name)) {
errorCode = EINVAL;
goto Bad_Link;
}
/*
* Get the vnode and volume for the parent dir along with the caller's
* rights to it
*/
if ((errorCode =
GetVolumePackage(acall, DirFid, &volptr, &parentptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_Link;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Can the caller insert into the parent directory? */
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_INSERT))) {
goto Bad_Link;
}
if (((DirFid->Vnode & 1) && (ExistingFid->Vnode & 1)) || (DirFid->Vnode == ExistingFid->Vnode)) { /* at present, */
/* AFS fileservers always have directory vnodes that are odd. */
errorCode = EISDIR;
goto Bad_Link;
}
if (CheckLength(volptr, parentptr, -1)) {
VTakeOffline(volptr);
errorCode = VSALVAGE;
goto Bad_Link;
}
/* get the file vnode */
if ((errorCode =
CheckVnode(ExistingFid, &volptr, &targetptr, WRITE_LOCK))) {
goto Bad_Link;
}
if (targetptr->disk.type != vFile) {
errorCode = EISDIR;
goto Bad_Link;
}
if (targetptr->disk.parent != DirFid->Vnode) {
errorCode = EXDEV;
goto Bad_Link;
}
if (parentptr->disk.cloned) {
ViceLog(25, ("Link : calling CopyOnWrite on target dir\n"));
if ((errorCode = CopyOnWrite(parentptr, volptr, 0, MAXFSIZE)))
goto Bad_Link; /* disk full error */
}
/* add the name to the directory */
SetDirHandle(&dir, parentptr);
if ((errorCode = Create(&dir, (char *)Name, ExistingFid)))
goto Bad_Link;
DFlush();
/* update the status in the parent vnode */
/**WARNING** --> disk.author SHOULDN'T be modified???? */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount,
client->InSameNetwork);
#else
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount);
#endif /* FS_STATS_DETAILED */
targetptr->disk.linkCount++;
targetptr->disk.author = client->ViceId;
targetptr->changed_newTime = 1; /* Status change of linked-to file */
/* set up return status */
GetStatus(targetptr, OutFidStatus, rights, anyrights, parentptr);
GetStatus(parentptr, OutDirStatus, rights, anyrights, 0);
/* convert the write locks to read locks before breaking callbacks */
VVnodeWriteToRead(&errorCode, targetptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
rx_KeepAliveOn(acall);
/* break call back on DirFid */
BreakCallBack(client->host, DirFid, 0);
/*
* We also need to break the callback for the file that is hard-linked since part
* of its status (like linkcount) is changed
*/
BreakCallBack(client->host, ExistingFid, 0);
Bad_Link:
/* Write the all modified vnodes (parent, new files) and volume back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr, parentptr,
volptr, &client);
FidZap(&dir);
ViceLog(2, ("SAFS_Link returns %d\n", errorCode));
return errorCode;
} /*SAFSS_Link */
afs_int32
SRXAFS_Link(struct rx_call * acall, struct AFSFid * DirFid, char *Name,
struct AFSFid * ExistingFid, struct AFSFetchStatus * OutFidStatus,
struct AFSFetchStatus * OutDirStatus, struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_LINK]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, DirFid, &tcon, &thost)))
goto Bad_Link;
code =
SAFSS_Link(acall, DirFid, Name, ExistingFid, OutFidStatus,
OutDirStatus, Sync);
Bad_Link:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, LinkEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, DirFid, AUD_STR, Name,
AUD_FID, ExistingFid, AUD_END);
return code;
} /*SRXAFS_Link */
/*
* This routine is called exclusively by SRXAFS_MakeDir(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_MakeDir(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
struct AFSStoreStatus *InStatus, struct AFSFid *OutFid,
struct AFSFetchStatus *OutFidStatus,
struct AFSFetchStatus *OutDirStatus,
struct AFSCallBack *CallBack, struct AFSVolSync *Sync)
{
Vnode *parentptr = 0; /* vnode of input Directory */
Vnode *targetptr = 0; /* vnode of the new file */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Volume *volptr = 0; /* pointer to the volume header */
Error errorCode = 0; /* error code */
struct acl_accessList *newACL; /* Access list */
int newACLSize; /* Size of access list */
DirHandle dir; /* Handle for dir package I/O */
DirHandle parentdir; /* Handle for dir package I/O */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
FidZero(&dir);
FidZero(&parentdir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_MakeDir %s, Did = %u.%u.%u, Host %s:%d, Id %d\n", Name,
DirFid->Volume, DirFid->Vnode, DirFid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.MakeDir++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (!FileNameOK(Name)) {
errorCode = EINVAL;
goto Bad_MakeDir;
}
/*
* Get the vnode and volume for the parent dir along with the caller's
* rights to it.
*/
if ((errorCode =
GetVolumePackage(acall, DirFid, &volptr, &parentptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_MakeDir;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Write access to the parent directory? */
#ifdef DIRCREATE_NEED_WRITE
/*
* requires w access for the user to create a directory. this
* closes a loophole in the current security arrangement, since a
* user with i access only can create a directory and get the
* implcit a access that goes with dir ownership, and proceed to
* subvert quota in the volume.
*/
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_INSERT))
|| (errorCode = CheckWriteMode(parentptr, rights, PRSFS_WRITE))) {
#else
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_INSERT))) {
#endif /* DIRCREATE_NEED_WRITE */
goto Bad_MakeDir;
}
#define EMPTYDIRBLOCKS 2
/* get a new vnode and set it up */
if ((errorCode =
Alloc_NewVnode(parentptr, &parentdir, volptr, &targetptr, Name,
OutFid, vDirectory, EMPTYDIRBLOCKS))) {
goto Bad_MakeDir;
}
/* Update the status for the parent dir */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(parentptr, volptr, &parentdir, client->ViceId,
parentptr->disk.linkCount + 1,
client->InSameNetwork);
#else
Update_ParentVnodeStatus(parentptr, volptr, &parentdir, client->ViceId,
parentptr->disk.linkCount + 1);
#endif /* FS_STATS_DETAILED */
/* Point to target's ACL buffer and copy the parent's ACL contents to it */
osi_Assert((SetAccessList
(&targetptr, &volptr, &newACL, &newACLSize,
&parentwhentargetnotdir, (AFSFid *) 0, 0)) == 0);
osi_Assert(parentwhentargetnotdir == 0);
memcpy((char *)newACL, (char *)VVnodeACL(parentptr), VAclSize(parentptr));
/* update the status for the target vnode */
Update_TargetVnodeStatus(targetptr, TVS_MKDIR, client, InStatus,
parentptr, volptr, 0);
/* Actually create the New directory in the directory package */
SetDirHandle(&dir, targetptr);
osi_Assert(!(MakeDir(&dir, (afs_int32 *)OutFid, (afs_int32 *)DirFid)));
DFlush();
VN_SET_LEN(targetptr, (afs_fsize_t) Length(&dir));
/* set up return status */
GetStatus(targetptr, OutFidStatus, rights, anyrights, parentptr);
GetStatus(parentptr, OutDirStatus, rights, anyrights, NULL);
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
rx_KeepAliveOn(acall);
/* break call back on DirFid */
BreakCallBack(client->host, DirFid, 0);
/* Return a callback promise to caller */
SetCallBackStruct(AddCallBack(client->host, OutFid), CallBack);
Bad_MakeDir:
/* Write the all modified vnodes (parent, new files) and volume back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr, parentptr,
volptr, &client);
FidZap(&dir);
FidZap(&parentdir);
ViceLog(2, ("SAFS_MakeDir returns %d\n", errorCode));
return errorCode;
} /*SAFSS_MakeDir */
afs_int32
SRXAFS_MakeDir(struct rx_call * acall, struct AFSFid * DirFid, char *Name,
struct AFSStoreStatus * InStatus, struct AFSFid * OutFid,
struct AFSFetchStatus * OutFidStatus,
struct AFSFetchStatus * OutDirStatus,
struct AFSCallBack * CallBack, struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_MAKEDIR]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, DirFid, &tcon, &thost)))
goto Bad_MakeDir;
code =
SAFSS_MakeDir(acall, DirFid, Name, InStatus, OutFid, OutFidStatus,
OutDirStatus, CallBack, Sync);
Bad_MakeDir:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, MakeDirEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, DirFid, AUD_STR, Name,
AUD_FID, OutFid, AUD_END);
return code;
} /*SRXAFS_MakeDir */
/*
* This routine is called exclusively by SRXAFS_RemoveDir(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_RemoveDir(struct rx_call *acall, struct AFSFid *DirFid, char *Name,
struct AFSFetchStatus *OutDirStatus, struct AFSVolSync *Sync)
{
Vnode *parentptr = 0; /* vnode of input Directory */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Vnode *targetptr = 0; /* file to be deleted */
AFSFid fileFid; /* area for Fid from the directory */
Error errorCode = 0; /* error code */
DirHandle dir; /* Handle for dir package I/O */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
FidZero(&dir);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_RemoveDir %s, Did = %u.%u.%u, Host %s:%d, Id %d\n", Name,
DirFid->Volume, DirFid->Vnode, DirFid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.RemoveDir++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get the vnode and volume for the parent dir along with the caller's
* rights to it
*/
if ((errorCode =
GetVolumePackage(acall, DirFid, &volptr, &parentptr, MustBeDIR,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_RemoveDir;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Does the caller has delete (&write) access to the parent dir? */
if ((errorCode = CheckWriteMode(parentptr, rights, PRSFS_DELETE))) {
goto Bad_RemoveDir;
}
/* Do the actual delete of the desired (empty) directory, Name */
if ((errorCode =
DeleteTarget(parentptr, volptr, &targetptr, &dir, &fileFid, Name,
MustBeDIR))) {
goto Bad_RemoveDir;
}
/* Update the status for the parent dir; link count is also adjusted */
#if FS_STATS_DETAILED
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount - 1,
client->InSameNetwork);
#else
Update_ParentVnodeStatus(parentptr, volptr, &dir, client->ViceId,
parentptr->disk.linkCount - 1);
#endif /* FS_STATS_DETAILED */
/* Return to the caller the updated parent dir status */
GetStatus(parentptr, OutDirStatus, rights, anyrights, NULL);
/*
* Note: it is not necessary to break the callback on fileFid, since
* refcount is now 0, so no one should be able to refer to the dir
* any longer
*/
DeleteFileCallBacks(&fileFid);
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, parentptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
rx_KeepAliveOn(acall);
/* break call back on DirFid and fileFid */
BreakCallBack(client->host, DirFid, 0);
Bad_RemoveDir:
/* Write the all modified vnodes (parent, new files) and volume back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr, parentptr,
volptr, &client);
FidZap(&dir);
ViceLog(2, ("SAFS_RemoveDir returns %d\n", errorCode));
return errorCode;
} /*SAFSS_RemoveDir */
afs_int32
SRXAFS_RemoveDir(struct rx_call * acall, struct AFSFid * DirFid, char *Name,
struct AFSFetchStatus * OutDirStatus,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_REMOVEDIR]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, DirFid, &tcon, &thost)))
goto Bad_RemoveDir;
code = SAFSS_RemoveDir(acall, DirFid, Name, OutDirStatus, Sync);
Bad_RemoveDir:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, RemoveDirEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, DirFid, AUD_STR, Name, AUD_END);
return code;
} /*SRXAFS_RemoveDir */
/*
* This routine is called exclusively by SRXAFS_SetLock(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_SetLock(struct rx_call *acall, struct AFSFid *Fid, ViceLockType type,
struct AFSVolSync *Sync)
{
Vnode *targetptr = 0; /* vnode of input file */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Error errorCode = 0; /* error code */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
static char *locktype[4] = { "LockRead", "LockWrite", "LockExtend", "LockRelease" };
struct rx_connection *tcon = rx_ConnectionOf(acall);
if (type != LockRead && type != LockWrite) {
errorCode = EINVAL;
goto Bad_SetLock;
}
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_SetLock type = %s Fid = %u.%u.%u, Host %s:%d, Id %d\n",
locktype[(int)type], Fid->Volume, Fid->Vnode, Fid->Unique,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.SetLock++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get the vnode and volume for the desired file along with the caller's
* rights to it
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_SetLock;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Handle the particular type of set locking, type */
errorCode = HandleLocking(targetptr, client, rights, type);
Bad_SetLock:
/* Write the all modified vnodes (parent, new files) and volume back */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
if ((errorCode == VREADONLY) && (type == LockRead))
errorCode = 0; /* allow read locks on RO volumes without saving state */
ViceLog(2, ("SAFS_SetLock returns %d\n", errorCode));
return (errorCode);
} /*SAFSS_SetLock */
afs_int32
SRXAFS_OldSetLock(struct rx_call * acall, struct AFSFid * Fid,
ViceLockType type, struct AFSVolSync * Sync)
{
return SRXAFS_SetLock(acall, Fid, type, Sync);
} /*SRXAFS_OldSetLock */
afs_int32
SRXAFS_SetLock(struct rx_call * acall, struct AFSFid * Fid, ViceLockType type,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_SETLOCK]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_SetLock;
code = SAFSS_SetLock(acall, Fid, type, Sync);
Bad_SetLock:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, SetLockEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_LONG, type, AUD_END);
return code;
} /*SRXAFS_SetLock */
/*
* This routine is called exclusively by SRXAFS_ExtendLock(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_ExtendLock(struct rx_call *acall, struct AFSFid *Fid,
struct AFSVolSync *Sync)
{
Vnode *targetptr = 0; /* vnode of input file */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Error errorCode = 0; /* error code */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_ExtendLock Fid = %u.%u.%u, Host %s:%d, Id %d\n", Fid->Volume,
Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.ExtendLock++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get the vnode and volume for the desired file along with the caller's
* rights to it
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_ExtendLock;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Handle the actual lock extension */
errorCode = HandleLocking(targetptr, client, rights, LockExtend);
Bad_ExtendLock:
/* Put back file's vnode and volume */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
if (errorCode == VREADONLY) /* presumably, we already granted this lock */
errorCode = 0; /* under our generous policy re RO vols */
ViceLog(2, ("SAFS_ExtendLock returns %d\n", errorCode));
return (errorCode);
} /*SAFSS_ExtendLock */
afs_int32
SRXAFS_OldExtendLock(struct rx_call * acall, struct AFSFid * Fid,
struct AFSVolSync * Sync)
{
return SRXAFS_ExtendLock(acall, Fid, Sync);
} /*SRXAFS_OldExtendLock */
afs_int32
SRXAFS_ExtendLock(struct rx_call * acall, struct AFSFid * Fid,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_EXTENDLOCK]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_ExtendLock;
code = SAFSS_ExtendLock(acall, Fid, Sync);
Bad_ExtendLock:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, ExtendLockEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_END);
return code;
} /*SRXAFS_ExtendLock */
/*
* This routine is called exclusively by SRXAFS_ReleaseLock(), and should be
* merged into it when possible.
*/
static afs_int32
SAFSS_ReleaseLock(struct rx_call *acall, struct AFSFid *Fid,
struct AFSVolSync *Sync)
{
Vnode *targetptr = 0; /* vnode of input file */
Vnode *parentwhentargetnotdir = 0; /* parent for use in SetAccessList */
Error errorCode = 0; /* error code */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client structure */
afs_int32 rights, anyrights; /* rights for this and any user */
struct client *t_client; /* tmp ptr to client data */
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
struct rx_connection *tcon = rx_ConnectionOf(acall);
/* Get ptr to client data for user Id for logging */
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
logHostAddr.s_addr = rxr_HostOf(tcon);
ViceLog(1,
("SAFS_ReleaseLock Fid = %u.%u.%u, Host %s:%d, Id %d\n", Fid->Volume,
Fid->Vnode, Fid->Unique, inet_ntoa(logHostAddr),
ntohs(rxr_PortOf(tcon)), t_client->ViceId));
FS_LOCK;
AFSCallStats.ReleaseLock++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
/*
* Get the vnode and volume for the desired file along with the caller's
* rights to it
*/
if ((errorCode =
GetVolumePackage(acall, Fid, &volptr, &targetptr, DONTCHECK,
&parentwhentargetnotdir, &client, WRITE_LOCK,
&rights, &anyrights))) {
goto Bad_ReleaseLock;
}
/* set volume synchronization information */
SetVolumeSync(Sync, volptr);
/* Handle the actual lock release */
if ((errorCode = HandleLocking(targetptr, client, rights, LockRelease)))
goto Bad_ReleaseLock;
/* if no more locks left, a callback would be triggered here */
if (targetptr->disk.lock.lockCount <= 0) {
rx_KeepAliveOn(acall);
/* convert the write lock to a read lock before breaking callbacks */
VVnodeWriteToRead(&errorCode, targetptr);
osi_Assert(!errorCode || errorCode == VSALVAGE);
BreakCallBack(client->host, Fid, 0);
}
Bad_ReleaseLock:
/* Put back file's vnode and volume */
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
if (errorCode == VREADONLY) /* presumably, we already granted this lock */
errorCode = 0; /* under our generous policy re RO vols */
ViceLog(2, ("SAFS_ReleaseLock returns %d\n", errorCode));
return (errorCode);
} /*SAFSS_ReleaseLock */
afs_int32
SRXAFS_OldReleaseLock(struct rx_call * acall, struct AFSFid * Fid,
struct AFSVolSync * Sync)
{
return SRXAFS_ReleaseLock(acall, Fid, Sync);
} /*SRXAFS_OldReleaseLock */
afs_int32
SRXAFS_ReleaseLock(struct rx_call * acall, struct AFSFid * Fid,
struct AFSVolSync * Sync)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_RELEASELOCK]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, Fid, &tcon, &thost)))
goto Bad_ReleaseLock;
code = SAFSS_ReleaseLock(acall, Fid, Sync);
Bad_ReleaseLock:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, ReleaseLockEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_FID, Fid, AUD_END);
return code;
} /*SRXAFS_ReleaseLock */
void
SetSystemStats(struct AFSStatistics *stats)
{
/* Fix this sometime soon.. */
/* Because hey, it's not like we have a network monitoring protocol... */
struct timeval time;
/* this works on all system types */
FT_GetTimeOfDay(&time, 0);
stats->CurrentTime = time.tv_sec;
} /*SetSystemStats */
void
SetAFSStats(struct AFSStatistics *stats)
{
extern afs_int32 StartTime, CurrentConnections;
int seconds;
FS_LOCK;
stats->CurrentMsgNumber = 0;
stats->OldestMsgNumber = 0;
stats->StartTime = StartTime;
stats->CurrentConnections = CurrentConnections;
stats->TotalAFSCalls = AFSCallStats.TotalCalls;
stats->TotalFetchs =
AFSCallStats.FetchData + AFSCallStats.FetchACL +
AFSCallStats.FetchStatus;
stats->FetchDatas = AFSCallStats.FetchData;
stats->FetchedBytes = AFSCallStats.TotalFetchedBytes;
seconds = AFSCallStats.AccumFetchTime / 1000;
if (seconds <= 0)
seconds = 1;
stats->FetchDataRate = AFSCallStats.TotalFetchedBytes / seconds;
stats->TotalStores =
AFSCallStats.StoreData + AFSCallStats.StoreACL +
AFSCallStats.StoreStatus;
stats->StoreDatas = AFSCallStats.StoreData;
stats->StoredBytes = AFSCallStats.TotalStoredBytes;
seconds = AFSCallStats.AccumStoreTime / 1000;
if (seconds <= 0)
seconds = 1;
stats->StoreDataRate = AFSCallStats.TotalStoredBytes / seconds;
#if defined(AFS_NT40_ENV) || defined(AFS_DARWIN_ENV)
stats->ProcessSize = -1; /* TODO: */
#else
stats->ProcessSize = (afs_int32) ((long)sbrk(0) >> 10);
#endif
FS_UNLOCK;
h_GetWorkStats((int *)&(stats->WorkStations),
(int *)&(stats->ActiveWorkStations), (int *)0,
(afs_int32) (FT_ApproxTime()) - (15 * 60));
} /*SetAFSStats */
/* Get disk related information from all AFS partitions. */
void
SetVolumeStats(struct AFSStatistics *stats)
{
struct DiskPartition64 *part;
int i = 0;
for (part = DiskPartitionList; part && i < AFS_MSTATDISKS;
part = part->next) {
stats->Disks[i].TotalBlocks = RoundInt64ToInt31(part->totalUsable);
stats->Disks[i].BlocksAvailable = RoundInt64ToInt31(part->free);
memset(stats->Disks[i].Name, 0, AFS_DISKNAMESIZE);
strncpy(stats->Disks[i].Name, part->name, AFS_DISKNAMESIZE);
i++;
}
while (i < AFS_MSTATDISKS) {
stats->Disks[i].TotalBlocks = -1;
i++;
}
} /*SetVolumeStats */
afs_int32
SRXAFS_GetStatistics(struct rx_call *acall, struct ViceStatistics *Statistics)
{
afs_int32 code;
struct rx_connection *tcon = rx_ConnectionOf(acall);
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETSTATISTICS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, NOTACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GetStatistics;
ViceLog(1, ("SAFS_GetStatistics Received\n"));
FS_LOCK;
AFSCallStats.GetStatistics++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
memset(Statistics, 0, sizeof(*Statistics));
SetAFSStats((struct AFSStatistics *)Statistics);
SetVolumeStats((struct AFSStatistics *)Statistics);
SetSystemStats((struct AFSStatistics *)Statistics);
Bad_GetStatistics:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, GetStatisticsEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0, AUD_END);
return code;
} /*SRXAFS_GetStatistics */
afs_int32
SRXAFS_GetStatistics64(struct rx_call *acall, afs_int32 statsVersion, ViceStatistics64 *Statistics)
{
extern afs_int32 StartTime, CurrentConnections;
int seconds;
afs_int32 code;
struct rx_connection *tcon = rx_ConnectionOf(acall);
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
struct timeval time;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETSTATISTICS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, NOTACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GetStatistics64;
if (statsVersion != STATS64_VERSION) {
code = EINVAL;
goto Bad_GetStatistics64;
}
ViceLog(1, ("SAFS_GetStatistics64 Received\n"));
Statistics->ViceStatistics64_val =
malloc(statsVersion*sizeof(afs_int64));
Statistics->ViceStatistics64_len = statsVersion;
FS_LOCK;
AFSCallStats.GetStatistics++, AFSCallStats.TotalCalls++;
Statistics->ViceStatistics64_val[STATS64_STARTTIME] = StartTime;
Statistics->ViceStatistics64_val[STATS64_CURRENTCONNECTIONS] =
CurrentConnections;
Statistics->ViceStatistics64_val[STATS64_TOTALVICECALLS] =
AFSCallStats.TotalCalls;
Statistics->ViceStatistics64_val[STATS64_TOTALFETCHES] =
AFSCallStats.FetchData + AFSCallStats.FetchACL +
AFSCallStats.FetchStatus;
Statistics->ViceStatistics64_val[STATS64_FETCHDATAS] =
AFSCallStats.FetchData;
Statistics->ViceStatistics64_val[STATS64_FETCHEDBYTES] =
AFSCallStats.TotalFetchedBytes;
seconds = AFSCallStats.AccumFetchTime / 1000;
if (seconds <= 0)
seconds = 1;
Statistics->ViceStatistics64_val[STATS64_FETCHDATARATE] =
AFSCallStats.TotalFetchedBytes / seconds;
Statistics->ViceStatistics64_val[STATS64_TOTALSTORES] =
AFSCallStats.StoreData + AFSCallStats.StoreACL +
AFSCallStats.StoreStatus;
Statistics->ViceStatistics64_val[STATS64_STOREDATAS] =
AFSCallStats.StoreData;
Statistics->ViceStatistics64_val[STATS64_STOREDBYTES] =
AFSCallStats.TotalStoredBytes;
seconds = AFSCallStats.AccumStoreTime / 1000;
if (seconds <= 0)
seconds = 1;
Statistics->ViceStatistics64_val[STATS64_STOREDATARATE] =
AFSCallStats.TotalStoredBytes / seconds;
#if defined(AFS_NT40_ENV) || defined(AFS_DARWIN_ENV)
Statistics->ViceStatistics64_val[STATS64_PROCESSSIZE] = -1;
#else
Statistics->ViceStatistics64_val[STATS64_PROCESSSIZE] =
(afs_int32) ((long)sbrk(0) >> 10);
#endif
FS_UNLOCK;
h_GetWorkStats64(&(Statistics->ViceStatistics64_val[STATS64_WORKSTATIONS]),
&(Statistics->ViceStatistics64_val[STATS64_ACTIVEWORKSTATIONS]),
0,
(afs_int32) (FT_ApproxTime()) - (15 * 60));
/* this works on all system types */
FT_GetTimeOfDay(&time, 0);
Statistics->ViceStatistics64_val[STATS64_CURRENTTIME] = time.tv_sec;
Bad_GetStatistics64:
code = CallPostamble(tcon, code, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, GetStatisticsEvent, code,
AUD_ID, t_client ? t_client->ViceId : 0, AUD_END);
return code;
} /*SRXAFS_GetStatistics */
/*------------------------------------------------------------------------
* EXPORTED SRXAFS_XStatsVersion
*
* Description:
* Routine called by the server-side RPC interface to implement
* pulling out the xstat version number for the File Server.
*
* Arguments:
* a_versionP : Ptr to the version number variable to set.
*
* Returns:
* 0 (always)
*
* Environment:
* Nothing interesting.
*
* Side Effects:
* As advertised.
*------------------------------------------------------------------------*/
afs_int32
SRXAFS_XStatsVersion(struct rx_call * a_call, afs_int32 * a_versionP)
{ /*SRXAFS_XStatsVersion */
struct client *t_client = NULL; /* tmp ptr to client data */
struct rx_connection *tcon = rx_ConnectionOf(a_call);
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_XSTATSVERSION]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
*a_versionP = AFS_XSTAT_VERSION;
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_LOCK;
(opP->numSuccesses)++;
FS_UNLOCK;
#endif /* FS_STATS_DETAILED */
osi_auditU(a_call, XStatsVersionEvent, 0,
AUD_ID, t_client ? t_client->ViceId : 0, AUD_END);
return (0);
} /*SRXAFS_XStatsVersion */
/*------------------------------------------------------------------------
* PRIVATE FillPerfValues
*
* Description:
* Routine called to fill a regular performance data structure.
*
* Arguments:
* a_perfP : Ptr to perf structure to fill
*
* Returns:
* Nothing.
*
* Environment:
* Various collections need this info, so the guts were put in
* this separate routine.
*
* Side Effects:
* As advertised.
*------------------------------------------------------------------------*/
static void
FillPerfValues(struct afs_PerfStats *a_perfP)
{ /*FillPerfValues */
afs_uint32 hi AFS_UNUSED, lo;
int dir_Buffers; /*# buffers in use by dir package */
int dir_Calls; /*# read calls in dir package */
int dir_IOs; /*# I/O ops in dir package */
/*
* Vnode cache section.
*/
a_perfP->vcache_L_Entries = VnodeClassInfo[vLarge].cacheSize;
a_perfP->vcache_L_Allocs = VnodeClassInfo[vLarge].allocs;
a_perfP->vcache_L_Gets = VnodeClassInfo[vLarge].gets;
a_perfP->vcache_L_Reads = VnodeClassInfo[vLarge].reads;
a_perfP->vcache_L_Writes = VnodeClassInfo[vLarge].writes;
a_perfP->vcache_S_Entries = VnodeClassInfo[vSmall].cacheSize;
a_perfP->vcache_S_Allocs = VnodeClassInfo[vSmall].allocs;
a_perfP->vcache_S_Gets = VnodeClassInfo[vSmall].gets;
a_perfP->vcache_S_Reads = VnodeClassInfo[vSmall].reads;
a_perfP->vcache_S_Writes = VnodeClassInfo[vSmall].writes;
a_perfP->vcache_H_Entries = VStats.hdr_cache_size;
SplitInt64(VStats.hdr_gets, hi, lo);
a_perfP->vcache_H_Gets = lo;
SplitInt64(VStats.hdr_loads, hi, lo);
a_perfP->vcache_H_Replacements = lo;
/*
* Directory section.
*/
DStat(&dir_Buffers, &dir_Calls, &dir_IOs);
a_perfP->dir_Buffers = (afs_int32) dir_Buffers;
a_perfP->dir_Calls = (afs_int32) dir_Calls;
a_perfP->dir_IOs = (afs_int32) dir_IOs;
/*
* Rx section.
*/
a_perfP->rx_packetRequests = (afs_int32) rx_stats.packetRequests;
a_perfP->rx_noPackets_RcvClass =
(afs_int32) rx_stats.receivePktAllocFailures;
a_perfP->rx_noPackets_SendClass =
(afs_int32) rx_stats.sendPktAllocFailures;
a_perfP->rx_noPackets_SpecialClass =
(afs_int32) rx_stats.specialPktAllocFailures;
a_perfP->rx_socketGreedy = (afs_int32) rx_stats.socketGreedy;
a_perfP->rx_bogusPacketOnRead = (afs_int32) rx_stats.bogusPacketOnRead;
a_perfP->rx_bogusHost = (afs_int32) rx_stats.bogusHost;
a_perfP->rx_noPacketOnRead = (afs_int32) rx_stats.noPacketOnRead;
a_perfP->rx_noPacketBuffersOnRead =
(afs_int32) rx_stats.noPacketBuffersOnRead;
a_perfP->rx_selects = (afs_int32) rx_stats.selects;
a_perfP->rx_sendSelects = (afs_int32) rx_stats.sendSelects;
a_perfP->rx_packetsRead_RcvClass =
(afs_int32) rx_stats.packetsRead[RX_PACKET_CLASS_RECEIVE];
a_perfP->rx_packetsRead_SendClass =
(afs_int32) rx_stats.packetsRead[RX_PACKET_CLASS_SEND];
a_perfP->rx_packetsRead_SpecialClass =
(afs_int32) rx_stats.packetsRead[RX_PACKET_CLASS_SPECIAL];
a_perfP->rx_dataPacketsRead = (afs_int32) rx_stats.dataPacketsRead;
a_perfP->rx_ackPacketsRead = (afs_int32) rx_stats.ackPacketsRead;
a_perfP->rx_dupPacketsRead = (afs_int32) rx_stats.dupPacketsRead;
a_perfP->rx_spuriousPacketsRead =
(afs_int32) rx_stats.spuriousPacketsRead;
a_perfP->rx_packetsSent_RcvClass =
(afs_int32) rx_stats.packetsSent[RX_PACKET_CLASS_RECEIVE];
a_perfP->rx_packetsSent_SendClass =
(afs_int32) rx_stats.packetsSent[RX_PACKET_CLASS_SEND];
a_perfP->rx_packetsSent_SpecialClass =
(afs_int32) rx_stats.packetsSent[RX_PACKET_CLASS_SPECIAL];
a_perfP->rx_ackPacketsSent = (afs_int32) rx_stats.ackPacketsSent;
a_perfP->rx_pingPacketsSent = (afs_int32) rx_stats.pingPacketsSent;
a_perfP->rx_abortPacketsSent = (afs_int32) rx_stats.abortPacketsSent;
a_perfP->rx_busyPacketsSent = (afs_int32) rx_stats.busyPacketsSent;
a_perfP->rx_dataPacketsSent = (afs_int32) rx_stats.dataPacketsSent;
a_perfP->rx_dataPacketsReSent = (afs_int32) rx_stats.dataPacketsReSent;
a_perfP->rx_dataPacketsPushed = (afs_int32) rx_stats.dataPacketsPushed;
a_perfP->rx_ignoreAckedPacket = (afs_int32) rx_stats.ignoreAckedPacket;
a_perfP->rx_totalRtt_Sec = (afs_int32) rx_stats.totalRtt.sec;
a_perfP->rx_totalRtt_Usec = (afs_int32) rx_stats.totalRtt.usec;
a_perfP->rx_minRtt_Sec = (afs_int32) rx_stats.minRtt.sec;
a_perfP->rx_minRtt_Usec = (afs_int32) rx_stats.minRtt.usec;
a_perfP->rx_maxRtt_Sec = (afs_int32) rx_stats.maxRtt.sec;
a_perfP->rx_maxRtt_Usec = (afs_int32) rx_stats.maxRtt.usec;
a_perfP->rx_nRttSamples = (afs_int32) rx_stats.nRttSamples;
a_perfP->rx_nServerConns = (afs_int32) rx_stats.nServerConns;
a_perfP->rx_nClientConns = (afs_int32) rx_stats.nClientConns;
a_perfP->rx_nPeerStructs = (afs_int32) rx_stats.nPeerStructs;
a_perfP->rx_nCallStructs = (afs_int32) rx_stats.nCallStructs;
a_perfP->rx_nFreeCallStructs = (afs_int32) rx_stats.nFreeCallStructs;
a_perfP->host_NumHostEntries = HTs;
a_perfP->host_HostBlocks = HTBlocks;
h_GetHostNetStats(&(a_perfP->host_NonDeletedHosts),
&(a_perfP->host_HostsInSameNetOrSubnet),
&(a_perfP->host_HostsInDiffSubnet),
&(a_perfP->host_HostsInDiffNetwork));
a_perfP->host_NumClients = CEs;
a_perfP->host_ClientBlocks = CEBlocks;
a_perfP->sysname_ID = afs_perfstats.sysname_ID;
a_perfP->rx_nBusies = (afs_int32) rx_stats.nBusies;
a_perfP->fs_nBusies = afs_perfstats.fs_nBusies;
} /*FillPerfValues */
/*------------------------------------------------------------------------
* EXPORTED SRXAFS_GetXStats
*
* Description:
* Routine called by the server-side callback RPC interface to
* implement getting the given data collection from the extended
* File Server statistics.
*
* Arguments:
* a_call : Ptr to Rx call on which this request came in.
* a_clientVersionNum : Client version number.
* a_opCode : Desired operation.
* a_serverVersionNumP : Ptr to version number to set.
* a_timeP : Ptr to time value (seconds) to set.
* a_dataP : Ptr to variable array structure to return
* stuff in.
*
* Returns:
* 0 (always).
*
* Environment:
* Nothing interesting.
*
* Side Effects:
* As advertised.
*------------------------------------------------------------------------*/
afs_int32
SRXAFS_GetXStats(struct rx_call *a_call, afs_int32 a_clientVersionNum,
afs_int32 a_collectionNumber, afs_int32 * a_srvVersionNumP,
afs_int32 * a_timeP, AFS_CollData * a_dataP)
{ /*SRXAFS_GetXStats */
int code; /*Return value */
afs_int32 *dataBuffP; /*Ptr to data to be returned */
afs_int32 dataBytes; /*Bytes in data buffer */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETXSTATS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
/*
* Record the time of day and the server version number.
*/
*a_srvVersionNumP = AFS_XSTAT_VERSION;
*a_timeP = FT_ApproxTime();
/*
* Stuff the appropriate data in there (assume victory)
*/
code = 0;
ViceLog(1,
("Received GetXStats call for collection %d\n",
a_collectionNumber));
#if 0
/*
* We're not keeping stats, so just return successfully with
* no data.
*/
a_dataP->AFS_CollData_len = 0;
a_dataP->AFS_CollData_val = NULL;
#endif /* 0 */
switch (a_collectionNumber) {
case AFS_XSTATSCOLL_CALL_INFO:
/*
* Pass back all the call-count-related data.
*
* >>> We are forced to allocate a separate area in which to
* >>> put this stuff in by the RPC stub generator, since it
* >>> will be freed at the tail end of the server stub code.
*/
#if 0
/*
* I don't think call-level stats are being collected yet
* for the File Server.
*/
dataBytes = sizeof(struct afs_Stats);
dataBuffP = (afs_int32 *) malloc(dataBytes);
memcpy(dataBuffP, &afs_cmstats, dataBytes);
a_dataP->AFS_CollData_len = dataBytes >> 2;
a_dataP->AFS_CollData_val = dataBuffP;
#else
a_dataP->AFS_CollData_len = 0;
a_dataP->AFS_CollData_val = NULL;
#endif /* 0 */
break;
case AFS_XSTATSCOLL_PERF_INFO:
/*
* Pass back all the regular performance-related data.
*
* >>> We are forced to allocate a separate area in which to
* >>> put this stuff in by the RPC stub generator, since it
* >>> will be freed at the tail end of the server stub code.
*/
afs_perfstats.numPerfCalls++;
FillPerfValues(&afs_perfstats);
/*
* Don't overwrite the spares at the end.
*/
dataBytes = sizeof(struct afs_PerfStats);
dataBuffP = (afs_int32 *) malloc(dataBytes);
memcpy(dataBuffP, &afs_perfstats, dataBytes);
a_dataP->AFS_CollData_len = dataBytes >> 2;
a_dataP->AFS_CollData_val = dataBuffP;
break;
case AFS_XSTATSCOLL_FULL_PERF_INFO:
/*
* Pass back the full collection of performance-related data.
* We have to stuff the basic, overall numbers in, but the
* detailed numbers are kept in the structure already.
*
* >>> We are forced to allocate a separate area in which to
* >>> put this stuff in by the RPC stub generator, since it
* >>> will be freed at the tail end of the server stub code.
*/
afs_perfstats.numPerfCalls++;
#if FS_STATS_DETAILED
afs_FullPerfStats.overall.numPerfCalls = afs_perfstats.numPerfCalls;
FillPerfValues(&afs_FullPerfStats.overall);
/*
* Don't overwrite the spares at the end.
*/
dataBytes = sizeof(struct fs_stats_FullPerfStats);
dataBuffP = (afs_int32 *) malloc(dataBytes);
memcpy(dataBuffP, &afs_FullPerfStats, dataBytes);
a_dataP->AFS_CollData_len = dataBytes >> 2;
a_dataP->AFS_CollData_val = dataBuffP;
#endif
break;
case AFS_XSTATSCOLL_CBSTATS:
afs_perfstats.numPerfCalls++;
dataBytes = sizeof(struct cbcounters);
dataBuffP = (afs_int32 *) malloc(dataBytes);
{
extern struct cbcounters cbstuff;
dataBuffP[0]=cbstuff.DeleteFiles;
dataBuffP[1]=cbstuff.DeleteCallBacks;
dataBuffP[2]=cbstuff.BreakCallBacks;
dataBuffP[3]=cbstuff.AddCallBacks;
dataBuffP[4]=cbstuff.GotSomeSpaces;
dataBuffP[5]=cbstuff.DeleteAllCallBacks;
dataBuffP[6]=cbstuff.nFEs;
dataBuffP[7]=cbstuff.nCBs;
dataBuffP[8]=cbstuff.nblks;
dataBuffP[9]=cbstuff.CBsTimedOut;
dataBuffP[10]=cbstuff.nbreakers;
dataBuffP[11]=cbstuff.GSS1;
dataBuffP[12]=cbstuff.GSS2;
dataBuffP[13]=cbstuff.GSS3;
dataBuffP[14]=cbstuff.GSS4;
dataBuffP[15]=cbstuff.GSS5;
}
a_dataP->AFS_CollData_len = dataBytes >> 2;
a_dataP->AFS_CollData_val = dataBuffP;
break;
default:
/*
* Illegal collection number.
*/
a_dataP->AFS_CollData_len = 0;
a_dataP->AFS_CollData_val = NULL;
code = 1;
} /*Switch on collection number */
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
return (code);
} /*SRXAFS_GetXStats */
static afs_int32
common_GiveUpCallBacks(struct rx_call *acall, struct AFSCBFids *FidArray,
struct AFSCBs *CallBackArray)
{
afs_int32 errorCode = 0;
int i;
struct client *client = 0;
struct rx_connection *tcon;
struct host *thost;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP =
&(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GIVEUPCALLBACKS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if (FidArray)
ViceLog(1,
("SAFS_GiveUpCallBacks (Noffids=%d)\n",
FidArray->AFSCBFids_len));
FS_LOCK;
AFSCallStats.GiveUpCallBacks++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if ((errorCode = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GiveUpCallBacks;
if (!FidArray && !CallBackArray) {
ViceLog(1,
("SAFS_GiveUpAllCallBacks: host=%x\n",
(tcon->peer ? tcon->peer->host : 0)));
errorCode = GetClient(tcon, &client);
if (!errorCode) {
H_LOCK;
DeleteAllCallBacks_r(client->host, 1);
H_UNLOCK;
PutClient(&client);
}
} else {
if (FidArray->AFSCBFids_len < CallBackArray->AFSCBs_len) {
ViceLog(0,
("GiveUpCallBacks: #Fids %d < #CallBacks %d, host=%x\n",
FidArray->AFSCBFids_len, CallBackArray->AFSCBs_len,
(tcon->peer ? tcon->peer->host : 0)));
errorCode = EINVAL;
goto Bad_GiveUpCallBacks;
}
errorCode = GetClient(tcon, &client);
if (!errorCode) {
for (i = 0; i < FidArray->AFSCBFids_len; i++) {
struct AFSFid *fid = &(FidArray->AFSCBFids_val[i]);
DeleteCallBack(client->host, fid);
}
PutClient(&client);
}
}
Bad_GiveUpCallBacks:
errorCode = CallPostamble(tcon, errorCode, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
return errorCode;
} /*common_GiveUpCallBacks */
afs_int32
SRXAFS_GiveUpCallBacks(struct rx_call * acall, struct AFSCBFids * FidArray,
struct AFSCBs * CallBackArray)
{
return common_GiveUpCallBacks(acall, FidArray, CallBackArray);
} /*SRXAFS_GiveUpCallBacks */
afs_int32
SRXAFS_GiveUpAllCallBacks(struct rx_call * acall)
{
return common_GiveUpCallBacks(acall, 0, 0);
} /*SRXAFS_GiveUpAllCallBacks */
afs_int32
SRXAFS_NGetVolumeInfo(struct rx_call * acall, char *avolid,
struct AFSVolumeInfo * avolinfo)
{
return (VNOVOL); /* XXX Obsolete routine XXX */
} /*SRXAFS_NGetVolumeInfo */
/*
* Dummy routine. Should never be called (the cache manager should only
* invoke this interface when communicating with a AFS/DFS Protocol
* Translator).
*/
afs_int32
SRXAFS_Lookup(struct rx_call * call_p, struct AFSFid * afs_dfid_p,
char *afs_name_p, struct AFSFid * afs_fid_p,
struct AFSFetchStatus * afs_status_p,
struct AFSFetchStatus * afs_dir_status_p,
struct AFSCallBack * afs_callback_p,
struct AFSVolSync * afs_sync_p)
{
return EINVAL;
}
afs_int32
SRXAFS_GetCapabilities(struct rx_call * acall, Capabilities * capabilities)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
afs_uint32 *dataBuffP;
afs_int32 dataBytes;
FS_LOCK;
AFSCallStats.GetCapabilities++, AFSCallStats.TotalCalls++;
afs_FullPerfStats.overall.fs_nGetCaps++;
FS_UNLOCK;
ViceLog(2, ("SAFS_GetCapabilties\n"));
if ((code = CallPreamble(acall, NOTACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GetCaps;
dataBytes = 1 * sizeof(afs_int32);
dataBuffP = (afs_uint32 *) malloc(dataBytes);
dataBuffP[0] = VICED_CAPABILITY_ERRORTRANS | VICED_CAPABILITY_WRITELOCKACL;
#if defined(AFS_64BIT_ENV)
dataBuffP[0] |= VICED_CAPABILITY_64BITFILES;
#endif
if (saneacls)
dataBuffP[0] |= VICED_CAPABILITY_SANEACLS;
capabilities->Capabilities_len = dataBytes / sizeof(afs_int32);
capabilities->Capabilities_val = dataBuffP;
Bad_GetCaps:
code = CallPostamble(tcon, code, thost);
return code;
}
/* client is held, but not locked */
static int
FlushClientCPS(struct client *client, void *arock)
{
ObtainWriteLock(&client->lock);
client->prfail = 2; /* Means re-eval client's cps */
if ((client->ViceId != ANONYMOUSID) && client->CPS.prlist_val) {
free(client->CPS.prlist_val);
client->CPS.prlist_val = NULL;
client->CPS.prlist_len = 0;
}
ReleaseWriteLock(&client->lock);
return 0;
}
afs_int32
SRXAFS_FlushCPS(struct rx_call * acall, struct ViceIds * vids,
struct IPAddrs * addrs, afs_int32 spare1, afs_int32 * spare2,
afs_int32 * spare3)
{
int i;
afs_int32 nids, naddrs;
afs_int32 *vd, *addr;
Error errorCode = 0; /* return code to caller */
ViceLog(1, ("SRXAFS_FlushCPS\n"));
FS_LOCK;
AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (!viced_SuperUser(acall)) {
errorCode = EPERM;
goto Bad_FlushCPS;
}
nids = vids->ViceIds_len; /* # of users in here */
naddrs = addrs->IPAddrs_len; /* # of hosts in here */
if (nids < 0 || naddrs < 0) {
errorCode = EINVAL;
goto Bad_FlushCPS;
}
vd = vids->ViceIds_val;
for (i = 0; i < nids; i++, vd++) {
if (!*vd)
continue;
h_EnumerateClients(*vd, FlushClientCPS, NULL);
}
addr = addrs->IPAddrs_val;
for (i = 0; i < naddrs; i++, addr++) {
if (*addr)
h_flushhostcps(*addr, htons(7001));
}
Bad_FlushCPS:
ViceLog(2, ("SAFS_FlushCPS returns %d\n", errorCode));
return errorCode;
} /*SRXAFS_FlushCPS */
/* worthless hack to let CS keep running ancient software */
static int
afs_vtoi(char *aname)
{
afs_int32 temp;
int tc;
temp = 0;
while ((tc = *aname++)) {
if (tc > '9' || tc < '0')
return 0; /* invalid name */
temp *= 10;
temp += tc - '0';
}
return temp;
}
/*
* may get name or #, but must handle all weird cases (recognize readonly
* or backup volumes by name or #
*/
static afs_int32
CopyVolumeEntry(char *aname, struct vldbentry *ave,
struct VolumeInfo *av)
{
int i, j, vol;
afs_int32 mask, whichType;
afs_uint32 *serverHost, *typePtr;
/* figure out what type we want if by name */
i = strlen(aname);
if (i >= 8 && strcmp(aname + i - 7, ".backup") == 0)
whichType = BACKVOL;
else if (i >= 10 && strcmp(aname + i - 9, ".readonly") == 0)
whichType = ROVOL;
else
whichType = RWVOL;
vol = afs_vtoi(aname);
if (vol == 0)
vol = ave->volumeId[whichType];
/*
* Now vol has volume # we're interested in. Next, figure out the type
* of the volume by looking finding it in the vldb entry
*/
if ((ave->flags & VLF_RWEXISTS) && vol == ave->volumeId[RWVOL]) {
mask = VLSF_RWVOL;
whichType = RWVOL;
} else if ((ave->flags & VLF_ROEXISTS) && vol == ave->volumeId[ROVOL]) {
mask = VLSF_ROVOL;
whichType = ROVOL;
} else if ((ave->flags & VLF_BACKEXISTS) && vol == ave->volumeId[BACKVOL]) {
mask = VLSF_RWVOL; /* backup always is on the same volume as parent */
whichType = BACKVOL;
} else
return EINVAL; /* error: can't find volume in vldb entry */
typePtr = &av->Type0;
serverHost = &av->Server0;
av->Vid = vol;
av->Type = whichType;
av->Type0 = av->Type1 = av->Type2 = av->Type3 = av->Type4 = 0;
if (ave->flags & VLF_RWEXISTS)
typePtr[RWVOL] = ave->volumeId[RWVOL];
if (ave->flags & VLF_ROEXISTS)
typePtr[ROVOL] = ave->volumeId[ROVOL];
if (ave->flags & VLF_BACKEXISTS)
typePtr[BACKVOL] = ave->volumeId[BACKVOL];
for (i = 0, j = 0; i < ave->nServers; i++) {
if ((ave->serverFlags[i] & mask) == 0)
continue; /* wrong volume */
serverHost[j] = ave->serverNumber[i];
j++;
}
av->ServerCount = j;
if (j < 8)
serverHost[j++] = 0; /* bogus 8, but compat only now */
return 0;
}
static afs_int32
TryLocalVLServer(char *avolid, struct VolumeInfo *avolinfo)
{
static struct rx_connection *vlConn = 0;
static int down = 0;
static afs_int32 lastDownTime = 0;
struct vldbentry tve;
struct rx_securityClass *vlSec;
afs_int32 code;
if (!vlConn) {
vlSec = rxnull_NewClientSecurityObject();
vlConn =
rx_NewConnection(htonl(0x7f000001), htons(7003), 52, vlSec, 0);
rx_SetConnDeadTime(vlConn, 15); /* don't wait long */
}
if (down && (FT_ApproxTime() < lastDownTime + 180)) {
return 1; /* failure */
}
code = VL_GetEntryByNameO(vlConn, avolid, &tve);
if (code >= 0)
down = 0; /* call worked */
if (code) {
if (code < 0) {
lastDownTime = FT_ApproxTime(); /* last time we tried an RPC */
down = 1;
}
return code;
}
/* otherwise convert to old format vldb entry */
code = CopyVolumeEntry(avolid, &tve, avolinfo);
return code;
}
afs_int32
SRXAFS_GetVolumeInfo(struct rx_call * acall, char *avolid,
struct VolumeInfo * avolinfo)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETVOLUMEINFO]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GetVolumeInfo;
FS_LOCK;
AFSCallStats.GetVolumeInfo++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
code = TryLocalVLServer(avolid, avolinfo);
ViceLog(1,
("SAFS_GetVolumeInfo returns %d, Volume %u, type %x, servers %x %x %x %x...\n",
code, avolinfo->Vid, avolinfo->Type, avolinfo->Server0,
avolinfo->Server1, avolinfo->Server2, avolinfo->Server3));
avolinfo->Type4 = 0xabcd9999; /* tell us to try new vldb */
Bad_GetVolumeInfo:
code = CallPostamble(tcon, code, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
return code;
} /*SRXAFS_GetVolumeInfo */
afs_int32
SRXAFS_GetVolumeStatus(struct rx_call * acall, afs_int32 avolid,
AFSFetchVolumeStatus * FetchVolStatus, char **Name,
char **OfflineMsg, char **Motd)
{
Vnode *targetptr = 0; /* vnode of the new file */
Vnode *parentwhentargetnotdir = 0; /* vnode of parent */
Error errorCode = 0; /* error code */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client entry */
afs_int32 rights, anyrights; /* rights for this and any user */
AFSFid dummyFid;
struct rx_connection *tcon;
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP =
&(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETVOLUMESTATUS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
ViceLog(1, ("SAFS_GetVolumeStatus for volume %u\n", avolid));
if ((errorCode = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GetVolumeStatus;
FS_LOCK;
AFSCallStats.GetVolumeStatus++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (avolid == 0) {
errorCode = EINVAL;
goto Bad_GetVolumeStatus;
}
dummyFid.Volume = avolid, dummyFid.Vnode =
(afs_int32) ROOTVNODE, dummyFid.Unique = 1;
if ((errorCode =
GetVolumePackage(acall, &dummyFid, &volptr, &targetptr, MustBeDIR,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights)))
goto Bad_GetVolumeStatus;
(void)RXGetVolumeStatus(FetchVolStatus, Name, OfflineMsg, Motd, volptr);
Bad_GetVolumeStatus:
(void)PutVolumePackage(acall, parentwhentargetnotdir, targetptr,
(Vnode *) 0, volptr, &client);
ViceLog(2, ("SAFS_GetVolumeStatus returns %d\n", errorCode));
/* next is to guarantee out strings exist for stub */
if (*Name == 0) {
*Name = (char *)malloc(1);
**Name = 0;
}
if (*Motd == 0) {
*Motd = (char *)malloc(1);
**Motd = 0;
}
if (*OfflineMsg == 0) {
*OfflineMsg = (char *)malloc(1);
**OfflineMsg = 0;
}
errorCode = CallPostamble(tcon, errorCode, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, GetVolumeStatusEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_LONG, avolid, AUD_STR, *Name, AUD_END);
return (errorCode);
} /*SRXAFS_GetVolumeStatus */
afs_int32
SRXAFS_SetVolumeStatus(struct rx_call * acall, afs_int32 avolid,
AFSStoreVolumeStatus * StoreVolStatus, char *Name,
char *OfflineMsg, char *Motd)
{
Vnode *targetptr = 0; /* vnode of the new file */
Vnode *parentwhentargetnotdir = 0; /* vnode of parent */
Error errorCode = 0; /* error code */
Volume *volptr = 0; /* pointer to the volume header */
struct client *client = 0; /* pointer to client entry */
afs_int32 rights, anyrights; /* rights for this and any user */
AFSFid dummyFid;
struct rx_connection *tcon = rx_ConnectionOf(acall);
struct host *thost;
struct client *t_client = NULL; /* tmp ptr to client data */
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP =
&(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_SETVOLUMESTATUS]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
ViceLog(1, ("SAFS_SetVolumeStatus for volume %u\n", avolid));
if ((errorCode = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &thost)))
goto Bad_SetVolumeStatus;
FS_LOCK;
AFSCallStats.SetVolumeStatus++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
if (avolid == 0) {
errorCode = EINVAL;
goto Bad_SetVolumeStatus;
}
dummyFid.Volume = avolid, dummyFid.Vnode =
(afs_int32) ROOTVNODE, dummyFid.Unique = 1;
if ((errorCode =
GetVolumePackage(acall, &dummyFid, &volptr, &targetptr, MustBeDIR,
&parentwhentargetnotdir, &client, READ_LOCK,
&rights, &anyrights)))
goto Bad_SetVolumeStatus;
if (readonlyServer) {
errorCode = VREADONLY;
goto Bad_SetVolumeStatus;
}
if (VanillaUser(client)) {
errorCode = EACCES;
goto Bad_SetVolumeStatus;
}
errorCode =
RXUpdate_VolumeStatus(volptr, StoreVolStatus, Name, OfflineMsg, Motd);
Bad_SetVolumeStatus:
PutVolumePackage(acall, parentwhentargetnotdir, targetptr, (Vnode *) 0,
volptr, &client);
ViceLog(2, ("SAFS_SetVolumeStatus returns %d\n", errorCode));
errorCode = CallPostamble(tcon, errorCode, thost);
t_client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
osi_auditU(acall, SetVolumeStatusEvent, errorCode,
AUD_ID, t_client ? t_client->ViceId : 0,
AUD_LONG, avolid, AUD_STR, Name, AUD_END);
return (errorCode);
} /*SRXAFS_SetVolumeStatus */
#define DEFAULTVOLUME "root.afs"
afs_int32
SRXAFS_GetRootVolume(struct rx_call * acall, char **VolumeName)
{
#ifdef notdef
int fd;
int len;
char *temp;
struct rx_connection *tcon;
struct host *thost;
Error errorCode = 0;
#endif
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime; /* Start time for RPC op */
#ifdef notdef
struct timeval opStopTime;
struct timeval elapsedTime; /* Transfer time */
#endif
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETROOTVOLUME]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
return FSERR_EOPNOTSUPP;
#ifdef notdef
if (errorCode = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &thost))
goto Bad_GetRootVolume;
FS_LOCK;
AFSCallStats.GetRootVolume++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
temp = malloc(256);
fd = afs_open(AFSDIR_SERVER_ROOTVOL_FILEPATH, O_RDONLY, 0666);
if (fd <= 0)
strcpy(temp, DEFAULTVOLUME);
else {
#if defined (AFS_AIX_ENV) || defined (AFS_HPUX_ENV)
lockf(fd, F_LOCK, 0);
#else
flock(fd, LOCK_EX);
#endif
len = read(fd, temp, 256);
#if defined (AFS_AIX_ENV) || defined (AFS_HPUX_ENV)
lockf(fd, F_ULOCK, 0);
#else
flock(fd, LOCK_UN);
#endif
close(fd);
if (temp[len - 1] == '\n')
len--;
temp[len] = '\0';
}
*VolumeName = temp; /* freed by rx server-side stub */
Bad_GetRootVolume:
errorCode = CallPostamble(tcon, errorCode, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (errorCode == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
return (errorCode);
#endif /* notdef */
} /*SRXAFS_GetRootVolume */
/* still works because a struct CBS is the same as a struct AFSOpaque */
afs_int32
SRXAFS_CheckToken(struct rx_call * acall, afs_int32 AfsId,
struct AFSOpaque * Token)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_CHECKTOKEN]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &thost)))
goto Bad_CheckToken;
code = FSERR_ECONNREFUSED;
Bad_CheckToken:
code = CallPostamble(tcon, code, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
return code;
} /*SRXAFS_CheckToken */
afs_int32
SRXAFS_GetTime(struct rx_call * acall, afs_uint32 * Seconds,
afs_uint32 * USeconds)
{
afs_int32 code;
struct rx_connection *tcon;
struct host *thost;
struct timeval tpl;
#if FS_STATS_DETAILED
struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */
struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */
struct timeval elapsedTime; /* Transfer time */
/*
* Set our stats pointer, remember when the RPC operation started, and
* tally the operation.
*/
opP = &(afs_FullPerfStats.det.rpcOpTimes[FS_STATS_RPCIDX_GETTIME]);
FS_LOCK;
(opP->numOps)++;
FS_UNLOCK;
FT_GetTimeOfDay(&opStartTime, 0);
#endif /* FS_STATS_DETAILED */
if ((code = CallPreamble(acall, NOTACTIVECALL, NULL, &tcon, &thost)))
goto Bad_GetTime;
FS_LOCK;
AFSCallStats.GetTime++, AFSCallStats.TotalCalls++;
FS_UNLOCK;
FT_GetTimeOfDay(&tpl, 0);
*Seconds = tpl.tv_sec;
*USeconds = tpl.tv_usec;
ViceLog(2, ("SAFS_GetTime returns %u, %u\n", *Seconds, *USeconds));
Bad_GetTime:
code = CallPostamble(tcon, code, thost);
#if FS_STATS_DETAILED
FT_GetTimeOfDay(&opStopTime, 0);
fs_stats_GetDiff(elapsedTime, opStartTime, opStopTime);
if (code == 0) {
FS_LOCK;
(opP->numSuccesses)++;
fs_stats_AddTo((opP->sumTime), elapsedTime);
fs_stats_SquareAddTo((opP->sqrTime), elapsedTime);
if (fs_stats_TimeLessThan(elapsedTime, (opP->minTime))) {
fs_stats_TimeAssign((opP->minTime), elapsedTime);
}
if (fs_stats_TimeGreaterThan(elapsedTime, (opP->maxTime))) {
fs_stats_TimeAssign((opP->maxTime), elapsedTime);
}
FS_UNLOCK;
}
#endif /* FS_STATS_DETAILED */
return code;
} /*SRXAFS_GetTime */
/*
* FetchData_RXStyle
*
* Purpose:
* Implement a client's data fetch using Rx.
*
* Arguments:
* volptr : Ptr to the given volume's info.
* targetptr : Pointer to the vnode involved.
* Call : Ptr to the Rx call involved.
* Pos : Offset within the file.
* Len : Length in bytes to read; this value is bogus!
* if FS_STATS_DETAILED
* a_bytesToFetchP : Set to the number of bytes to be fetched from
* the File Server.
* a_bytesFetchedP : Set to the actual number of bytes fetched from
* the File Server.
* endif
*/
afs_int32
FetchData_RXStyle(Volume * volptr, Vnode * targetptr,
struct rx_call * Call, afs_sfsize_t Pos,
afs_sfsize_t Len, afs_int32 Int64Mode,
#if FS_STATS_DETAILED
afs_sfsize_t * a_bytesToFetchP,
afs_sfsize_t * a_bytesFetchedP
#endif /* FS_STATS_DETAILED */
)
{
struct timeval StartTime, StopTime; /* used to calculate file transfer rates */
IHandle_t *ihP;
FdHandle_t *fdP;
#ifndef HAVE_PIOV
char *tbuffer;
#else /* HAVE_PIOV */
struct iovec tiov[RX_MAXIOVECS];
int tnio;
#endif /* HAVE_PIOV */
afs_sfsize_t tlen;
afs_int32 optSize;
#if FS_STATS_DETAILED
/*
* Initialize the byte count arguments.
*/
(*a_bytesToFetchP) = 0;
(*a_bytesFetchedP) = 0;
#endif /* FS_STATS_DETAILED */
ViceLog(25,
("FetchData_RXStyle: Pos %llu, Len %llu\n", (afs_uintmax_t) Pos,
(afs_uintmax_t) Len));
if (!VN_GET_INO(targetptr)) {
afs_int32 zero = htonl(0);
/*
* This is used for newly created files; we simply send 0 bytes
* back to make the cache manager happy...
*/
if (Int64Mode)
rx_Write(Call, (char *)&zero, sizeof(afs_int32)); /* send 0-length */
rx_Write(Call, (char *)&zero, sizeof(afs_int32)); /* send 0-length */
return (0);
}
FT_GetTimeOfDay(&StartTime, 0);
ihP = targetptr->handle;
fdP = IH_OPEN(ihP);
if (fdP == NULL) {
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
optSize = sendBufSize;
tlen = FDH_SIZE(fdP);
ViceLog(25,
("FetchData_RXStyle: file size %llu\n", (afs_uintmax_t) tlen));
if (tlen < 0) {
FDH_CLOSE(fdP);
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
if (CheckLength(volptr, targetptr, tlen)) {
FDH_CLOSE(fdP);
VTakeOffline(volptr);
return VSALVAGE;
}
if (Pos > tlen) {
Len = 0;
}
if (Pos + Len > tlen) /* get length we should send */
Len = ((tlen - Pos) < 0) ? 0 : tlen - Pos;
{
afs_int32 high, low;
SplitOffsetOrSize(Len, high, low);
osi_Assert(Int64Mode || (Len >= 0 && high == 0) || Len < 0);
if (Int64Mode) {
high = htonl(high);
rx_Write(Call, (char *)&high, sizeof(afs_int32)); /* High order bits */
}
low = htonl(low);
rx_Write(Call, (char *)&low, sizeof(afs_int32)); /* send length on fetch */
}
#if FS_STATS_DETAILED
(*a_bytesToFetchP) = Len;
#endif /* FS_STATS_DETAILED */
#ifndef HAVE_PIOV
tbuffer = AllocSendBuffer();
#endif /* HAVE_PIOV */
while (Len > 0) {
size_t wlen;
ssize_t nBytes;
if (Len > optSize)
wlen = optSize;
else
wlen = Len;
#ifndef HAVE_PIOV
nBytes = FDH_PREAD(fdP, tbuffer, wlen, Pos);
if (nBytes != wlen) {
FDH_CLOSE(fdP);
FreeSendBuffer((struct afs_buffer *)tbuffer);
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
nBytes = rx_Write(Call, tbuffer, wlen);
#else /* HAVE_PIOV */
nBytes = rx_WritevAlloc(Call, tiov, &tnio, RX_MAXIOVECS, wlen);
if (nBytes <= 0) {
FDH_CLOSE(fdP);
return EIO;
}
wlen = nBytes;
nBytes = FDH_PREADV(fdP, tiov, tnio, Pos);
if (nBytes != wlen) {
FDH_CLOSE(fdP);
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
nBytes = rx_Writev(Call, tiov, tnio, wlen);
#endif /* HAVE_PIOV */
Pos += wlen;
#if FS_STATS_DETAILED
/*
* Bump the number of bytes actually sent by the number from this
* latest iteration
*/
(*a_bytesFetchedP) += nBytes;
#endif /* FS_STATS_DETAILED */
if (nBytes != wlen) {
afs_int32 err;
FDH_CLOSE(fdP);
#ifndef HAVE_PIOV
FreeSendBuffer((struct afs_buffer *)tbuffer);
#endif /* HAVE_PIOV */
err = VIsGoingOffline(volptr);
if (err) {
return err;
}
return -31;
}
Len -= wlen;
}
#ifndef HAVE_PIOV
FreeSendBuffer((struct afs_buffer *)tbuffer);
#endif /* HAVE_PIOV */
FDH_CLOSE(fdP);
FT_GetTimeOfDay(&StopTime, 0);
/* Adjust all Fetch Data related stats */
FS_LOCK;
if (AFSCallStats.TotalFetchedBytes > 2000000000) /* Reset if over 2 billion */
AFSCallStats.TotalFetchedBytes = AFSCallStats.AccumFetchTime = 0;
AFSCallStats.AccumFetchTime +=
((StopTime.tv_sec - StartTime.tv_sec) * 1000) +
((StopTime.tv_usec - StartTime.tv_usec) / 1000);
{
afs_fsize_t targLen;
VN_GET_LEN(targLen, targetptr);
AFSCallStats.TotalFetchedBytes += targLen;
AFSCallStats.FetchSize1++;
if (targLen < SIZE2)
AFSCallStats.FetchSize2++;
else if (targLen < SIZE3)
AFSCallStats.FetchSize3++;
else if (targLen < SIZE4)
AFSCallStats.FetchSize4++;
else
AFSCallStats.FetchSize5++;
}
FS_UNLOCK;
return (0);
} /*FetchData_RXStyle */
static int
GetLinkCountAndSize(Volume * vp, FdHandle_t * fdP, int *lc,
afs_sfsize_t * size)
{
#ifdef AFS_NAMEI_ENV
FdHandle_t *lhp;
lhp = IH_OPEN(V_linkHandle(vp));
if (!lhp)
return EIO;
*lc = namei_GetLinkCount(lhp, fdP->fd_ih->ih_ino, 0, 0, 1);
FDH_CLOSE(lhp);
if (*lc < 0)
return -1;
*size = OS_SIZE(fdP->fd_fd);
return (*size == -1) ? -1 : 0;
#else
struct afs_stat status;
if (afs_fstat(fdP->fd_fd, &status) < 0) {
return -1;
}
*lc = GetLinkCount(vp, &status);
*size = status.st_size;
return 0;
#endif
}
/*
* StoreData_RXStyle
*
* Purpose:
* Implement a client's data store using Rx.
*
* Arguments:
* volptr : Ptr to the given volume's info.
* targetptr : Pointer to the vnode involved.
* Call : Ptr to the Rx call involved.
* Pos : Offset within the file.
* Len : Length in bytes to store; this value is bogus!
* if FS_STATS_DETAILED
* a_bytesToStoreP : Set to the number of bytes to be stored to
* the File Server.
* a_bytesStoredP : Set to the actual number of bytes stored to
* the File Server.
* endif
*/
afs_int32
StoreData_RXStyle(Volume * volptr, Vnode * targetptr, struct AFSFid * Fid,
struct client * client, struct rx_call * Call,
afs_fsize_t Pos, afs_fsize_t Length, afs_fsize_t FileLength,
int sync,
#if FS_STATS_DETAILED
afs_sfsize_t * a_bytesToStoreP,
afs_sfsize_t * a_bytesStoredP
#endif /* FS_STATS_DETAILED */
)
{
afs_sfsize_t bytesTransfered; /* number of bytes actually transfered */
struct timeval StartTime, StopTime; /* Used to measure how long the store takes */
Error errorCode = 0; /* Returned error code to caller */
#ifndef HAVE_PIOV
char *tbuffer; /* data copying buffer */
#else /* HAVE_PIOV */
struct iovec tiov[RX_MAXIOVECS]; /* no data copying with iovec */
int tnio; /* temp for iovec size */
#endif /* HAVE_PIOV */
afs_sfsize_t tlen; /* temp for xfr length */
Inode tinode; /* inode for I/O */
afs_int32 optSize; /* optimal transfer size */
afs_sfsize_t DataLength = 0; /* size of inode */
afs_sfsize_t TruncatedLength; /* size after ftruncate */
afs_fsize_t NewLength; /* size after this store completes */
afs_sfsize_t adjustSize; /* bytes to call VAdjust... with */
int linkCount = 0; /* link count on inode */
ssize_t nBytes;
FdHandle_t *fdP;
struct in_addr logHostAddr; /* host ip holder for inet_ntoa */
afs_ino_str_t stmp;
#if FS_STATS_DETAILED
/*
* Initialize the byte count arguments.
*/
(*a_bytesToStoreP) = 0;
(*a_bytesStoredP) = 0;
#endif /* FS_STATS_DETAILED */
/*
* We break the callbacks here so that the following signal will not
* leave a window.
*/
BreakCallBack(client->host, Fid, 0);
if (Pos == -1 || VN_GET_INO(targetptr) == 0) {
/* the inode should have been created in Alloc_NewVnode */
logHostAddr.s_addr = rxr_HostOf(rx_ConnectionOf(Call));
ViceLog(0,
("StoreData_RXStyle : Inode non-existent Fid = %u.%u.%u, inode = %llu, Pos %llu Host %s:%d\n",
Fid->Volume, Fid->Vnode, Fid->Unique,
(afs_uintmax_t) VN_GET_INO(targetptr), (afs_uintmax_t) Pos,
inet_ntoa(logHostAddr), ntohs(rxr_PortOf(rx_ConnectionOf(Call)))));
return ENOENT; /* is this proper error code? */
} else {
rx_KeepAliveOff(Call);
/*
* See if the file has several links (from other volumes). If it
* does, then we have to make a copy before changing it to avoid
*changing read-only clones of this dude
*/
ViceLog(25,
("StoreData_RXStyle : Opening inode %s\n",
PrintInode(stmp, VN_GET_INO(targetptr))));
fdP = IH_OPEN(targetptr->handle);
if (fdP == NULL)
return ENOENT;
if (GetLinkCountAndSize(volptr, fdP, &linkCount, &DataLength) < 0) {
FDH_CLOSE(fdP);
VTakeOffline(volptr);
ViceLog(0, ("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
if (CheckLength(volptr, targetptr, DataLength)) {
FDH_CLOSE(fdP);
VTakeOffline(volptr);
return VSALVAGE;
}
if (linkCount != 1) {
afs_fsize_t size;
ViceLog(25,
("StoreData_RXStyle : inode %s has more than onelink\n",
PrintInode(stmp, VN_GET_INO(targetptr))));
/* other volumes share this data, better copy it first */
/* Adjust the disk block count by the creation of the new inode.
* We call the special VDiskUsage so we don't adjust the volume's
* quota since we don't want to penalyze the user for afs's internal
* mechanisms (i.e. copy on write overhead.) Also the right size
* of the disk will be recorded...
*/
FDH_CLOSE(fdP);
VN_GET_LEN(size, targetptr);
volptr->partition->flags &= ~PART_DONTUPDATE;
VSetPartitionDiskUsage(volptr->partition);
volptr->partition->flags |= PART_DONTUPDATE;
if ((errorCode = VDiskUsage(volptr, nBlocks(size)))) {
volptr->partition->flags &= ~PART_DONTUPDATE;
return (errorCode);
}
ViceLog(25, ("StoreData : calling CopyOnWrite on target dir\n"));
if ((errorCode = CopyOnWrite(targetptr, volptr, 0, MAXFSIZE))) {
ViceLog(25, ("StoreData : CopyOnWrite failed\n"));
volptr->partition->flags &= ~PART_DONTUPDATE;
return (errorCode);
}
volptr->partition->flags &= ~PART_DONTUPDATE;
VSetPartitionDiskUsage(volptr->partition);
fdP = IH_OPEN(targetptr->handle);
if (fdP == NULL) {
ViceLog(25,
("StoreData : Reopen after CopyOnWrite failed\n"));
return ENOENT;
}
}
tinode = VN_GET_INO(targetptr);
}
if (!VALID_INO(tinode)) {
VTakeOffline(volptr);
ViceLog(0,("Volume %u now offline, must be salvaged.\n",
volptr->hashid));
return EIO;
}
/* compute new file length */
NewLength = DataLength;
if (FileLength < NewLength)
/* simulate truncate */
NewLength = FileLength;
TruncatedLength = NewLength; /* remember length after possible ftruncate */
if (Pos + Length > NewLength)
NewLength = Pos + Length; /* and write */
/* adjust the disk block count by the difference in the files */
{
afs_fsize_t targSize;
VN_GET_LEN(targSize, targetptr);
adjustSize = nBlocks(NewLength) - nBlocks(targSize);
}
if ((errorCode =
AdjustDiskUsage(volptr, adjustSize,
adjustSize - SpareComp(volptr)))) {
FDH_CLOSE(fdP);
return (errorCode);
}
/* can signal cache manager to proceed from close now */
/* this bit means that the locks are set and protections are OK */
rx_SetLocalStatus(Call, 1);
FT_GetTimeOfDay(&StartTime, 0);
optSize = sendBufSize;
ViceLog(25,
("StoreData_RXStyle: Pos %llu, DataLength %llu, FileLength %llu, Length %llu\n",
(afs_uintmax_t) Pos, (afs_uintmax_t) DataLength,
(afs_uintmax_t) FileLength, (afs_uintmax_t) Length));
/* truncate the file iff it needs it (ftruncate is slow even when its a noop) */
if (FileLength < DataLength)
FDH_TRUNC(fdP, FileLength);
bytesTransfered = 0;
#ifndef HAVE_PIOV
tbuffer = AllocSendBuffer();
#endif /* HAVE_PIOV */
/* if length == 0, the loop below isn't going to do anything, including
* extend the length of the inode, which it must do, since the file system
* assumes that the inode length == vnode's file length. So, we extend
* the file length manually if need be. Note that if file is bigger than
* Pos+(Length==0), we dont' have to do anything, and certainly shouldn't
* do what we're going to do below.
*/
if (Length == 0 && Pos > TruncatedLength) {
/* Set the file's length; we've already done an lseek to the right
* spot above.
*/
tlen = 0; /* Just a source of data for the write */
nBytes = FDH_PWRITE(fdP, &tlen, 1, Pos);
if (nBytes != 1) {
errorCode = -1;
goto done;
}
errorCode = FDH_TRUNC(fdP, Pos);
} else {
/* have some data to copy */
#if FS_STATS_DETAILED
(*a_bytesToStoreP) = Length;
#endif /* FS_STATS_DETAILED */
while (1) {
int rlen;
if (bytesTransfered >= Length) {
errorCode = 0;
break;
}
tlen = Length - bytesTransfered; /* how much more to do */
if (tlen > optSize)
rlen = optSize; /* bound by buffer size */
else
rlen = (int)tlen;
#ifndef HAVE_PIOV
errorCode = rx_Read(Call, tbuffer, rlen);
#else /* HAVE_PIOV */
errorCode = rx_Readv(Call, tiov, &tnio, RX_MAXIOVECS, rlen);
#endif /* HAVE_PIOV */
if (errorCode <= 0) {
errorCode = -32;
break;
}
#if FS_STATS_DETAILED
(*a_bytesStoredP) += errorCode;
#endif /* FS_STATS_DETAILED */
rlen = errorCode;
#ifndef HAVE_PIOV
nBytes = FDH_PWRITE(fdP, tbuffer, rlen, Pos);
#else /* HAVE_PIOV */
nBytes = FDH_PWRITEV(fdP, tiov, tnio, Pos);
#endif /* HAVE_PIOV */
if (nBytes != rlen) {
errorCode = VDISKFULL;
break;
}
bytesTransfered += rlen;
Pos += rlen;
}
}
done:
#ifndef HAVE_PIOV
FreeSendBuffer((struct afs_buffer *)tbuffer);
#endif /* HAVE_PIOV */
if (sync) {
FDH_SYNC(fdP);
}
if (errorCode) {
Error tmp_errorCode = 0;
afs_sfsize_t nfSize = FDH_SIZE(fdP);
osi_Assert(nfSize >= 0);
/* something went wrong: adjust size and return */
VN_SET_LEN(targetptr, nfSize); /* set new file size. */
/* changed_newTime is tested in StoreData to detemine if we
* need to update the target vnode.
*/
targetptr->changed_newTime = 1;
FDH_CLOSE(fdP);
/* set disk usage to be correct */
VAdjustDiskUsage(&tmp_errorCode, volptr,
(afs_sfsize_t) (nBlocks(nfSize) -
nBlocks(NewLength)), 0);
if (tmp_errorCode) {
errorCode = tmp_errorCode;
}
return errorCode;
}
FDH_CLOSE(fdP);
FT_GetTimeOfDay(&StopTime, 0);
VN_SET_LEN(targetptr, NewLength);
/* Update all StoreData related stats */
FS_LOCK;
if (AFSCallStats.TotalStoredBytes > 2000000000) /* reset if over 2 billion */
AFSCallStats.TotalStoredBytes = AFSCallStats.AccumStoreTime = 0;
AFSCallStats.StoreSize1++; /* Piggybacked data */
{
afs_fsize_t targLen;
VN_GET_LEN(targLen, targetptr);
if (targLen < SIZE2)
AFSCallStats.StoreSize2++;
else if (targLen < SIZE3)
AFSCallStats.StoreSize3++;
else if (targLen < SIZE4)
AFSCallStats.StoreSize4++;
else
AFSCallStats.StoreSize5++;
}
FS_UNLOCK;
return (errorCode);
} /*StoreData_RXStyle */
static int sys2et[512];
void
init_sys_error_to_et(void)
{
memset(&sys2et, 0, sizeof(sys2et));
sys2et[EPERM] = UAEPERM;
sys2et[ENOENT] = UAENOENT;
sys2et[ESRCH] = UAESRCH;
sys2et[EINTR] = UAEINTR;
sys2et[EIO] = UAEIO;
sys2et[ENXIO] = UAENXIO;
sys2et[E2BIG] = UAE2BIG;
sys2et[ENOEXEC] = UAENOEXEC;
sys2et[EBADF] = UAEBADF;
sys2et[ECHILD] = UAECHILD;
sys2et[EAGAIN] = UAEAGAIN;
sys2et[ENOMEM] = UAENOMEM;
sys2et[EACCES] = UAEACCES;
sys2et[EFAULT] = UAEFAULT;
sys2et[ENOTBLK] = UAENOTBLK;
sys2et[EBUSY] = UAEBUSY;
sys2et[EEXIST] = UAEEXIST;
sys2et[EXDEV] = UAEXDEV;
sys2et[ENODEV] = UAENODEV;
sys2et[ENOTDIR] = UAENOTDIR;
sys2et[EISDIR] = UAEISDIR;
sys2et[EINVAL] = UAEINVAL;
sys2et[ENFILE] = UAENFILE;
sys2et[EMFILE] = UAEMFILE;
sys2et[ENOTTY] = UAENOTTY;
sys2et[ETXTBSY] = UAETXTBSY;
sys2et[EFBIG] = UAEFBIG;
sys2et[ENOSPC] = UAENOSPC;
sys2et[ESPIPE] = UAESPIPE;
sys2et[EROFS] = UAEROFS;
sys2et[EMLINK] = UAEMLINK;
sys2et[EPIPE] = UAEPIPE;
sys2et[EDOM] = UAEDOM;
sys2et[ERANGE] = UAERANGE;
sys2et[EDEADLK] = UAEDEADLK;
sys2et[ENAMETOOLONG] = UAENAMETOOLONG;
sys2et[ENOLCK] = UAENOLCK;
sys2et[ENOSYS] = UAENOSYS;
#if (ENOTEMPTY != EEXIST)
sys2et[ENOTEMPTY] = UAENOTEMPTY;
#endif
sys2et[ELOOP] = UAELOOP;
#if (EWOULDBLOCK != EAGAIN)
sys2et[EWOULDBLOCK] = UAEWOULDBLOCK;
#endif
sys2et[ENOMSG] = UAENOMSG;
sys2et[EIDRM] = UAEIDRM;
sys2et[ECHRNG] = UAECHRNG;
sys2et[EL2NSYNC] = UAEL2NSYNC;
sys2et[EL3HLT] = UAEL3HLT;
sys2et[EL3RST] = UAEL3RST;
sys2et[ELNRNG] = UAELNRNG;
sys2et[EUNATCH] = UAEUNATCH;
sys2et[ENOCSI] = UAENOCSI;
sys2et[EL2HLT] = UAEL2HLT;
sys2et[EBADE] = UAEBADE;
sys2et[EBADR] = UAEBADR;
sys2et[EXFULL] = UAEXFULL;
sys2et[ENOANO] = UAENOANO;
sys2et[EBADRQC] = UAEBADRQC;
sys2et[EBADSLT] = UAEBADSLT;
sys2et[EDEADLK] = UAEDEADLK;
sys2et[EBFONT] = UAEBFONT;
sys2et[ENOSTR] = UAENOSTR;
sys2et[ENODATA] = UAENODATA;
sys2et[ETIME] = UAETIME;
sys2et[ENOSR] = UAENOSR;
sys2et[ENONET] = UAENONET;
sys2et[ENOPKG] = UAENOPKG;
sys2et[EREMOTE] = UAEREMOTE;
sys2et[ENOLINK] = UAENOLINK;
sys2et[EADV] = UAEADV;
sys2et[ESRMNT] = UAESRMNT;
sys2et[ECOMM] = UAECOMM;
sys2et[EPROTO] = UAEPROTO;
sys2et[EMULTIHOP] = UAEMULTIHOP;
sys2et[EDOTDOT] = UAEDOTDOT;
sys2et[EBADMSG] = UAEBADMSG;
sys2et[EOVERFLOW] = UAEOVERFLOW;
sys2et[ENOTUNIQ] = UAENOTUNIQ;
sys2et[EBADFD] = UAEBADFD;
sys2et[EREMCHG] = UAEREMCHG;
sys2et[ELIBACC] = UAELIBACC;
sys2et[ELIBBAD] = UAELIBBAD;
sys2et[ELIBSCN] = UAELIBSCN;
sys2et[ELIBMAX] = UAELIBMAX;
sys2et[ELIBEXEC] = UAELIBEXEC;
sys2et[EILSEQ] = UAEILSEQ;
sys2et[ERESTART] = UAERESTART;
sys2et[ESTRPIPE] = UAESTRPIPE;
sys2et[EUSERS] = UAEUSERS;
sys2et[ENOTSOCK] = UAENOTSOCK;
sys2et[EDESTADDRREQ] = UAEDESTADDRREQ;
sys2et[EMSGSIZE] = UAEMSGSIZE;
sys2et[EPROTOTYPE] = UAEPROTOTYPE;
sys2et[ENOPROTOOPT] = UAENOPROTOOPT;
sys2et[EPROTONOSUPPORT] = UAEPROTONOSUPPORT;
sys2et[ESOCKTNOSUPPORT] = UAESOCKTNOSUPPORT;
sys2et[EOPNOTSUPP] = UAEOPNOTSUPP;
sys2et[EPFNOSUPPORT] = UAEPFNOSUPPORT;
sys2et[EAFNOSUPPORT] = UAEAFNOSUPPORT;
sys2et[EADDRINUSE] = UAEADDRINUSE;
sys2et[EADDRNOTAVAIL] = UAEADDRNOTAVAIL;
sys2et[ENETDOWN] = UAENETDOWN;
sys2et[ENETUNREACH] = UAENETUNREACH;
sys2et[ENETRESET] = UAENETRESET;
sys2et[ECONNABORTED] = UAECONNABORTED;
sys2et[ECONNRESET] = UAECONNRESET;
sys2et[ENOBUFS] = UAENOBUFS;
sys2et[EISCONN] = UAEISCONN;
sys2et[ENOTCONN] = UAENOTCONN;
sys2et[ESHUTDOWN] = UAESHUTDOWN;
sys2et[ETOOMANYREFS] = UAETOOMANYREFS;
sys2et[ETIMEDOUT] = UAETIMEDOUT;
sys2et[ECONNREFUSED] = UAECONNREFUSED;
sys2et[EHOSTDOWN] = UAEHOSTDOWN;
sys2et[EHOSTUNREACH] = UAEHOSTUNREACH;
sys2et[EALREADY] = UAEALREADY;
sys2et[EINPROGRESS] = UAEINPROGRESS;
sys2et[ESTALE] = UAESTALE;
sys2et[EUCLEAN] = UAEUCLEAN;
sys2et[ENOTNAM] = UAENOTNAM;
sys2et[ENAVAIL] = UAENAVAIL;
sys2et[EISNAM] = UAEISNAM;
sys2et[EREMOTEIO] = UAEREMOTEIO;
sys2et[EDQUOT] = UAEDQUOT;
sys2et[ENOMEDIUM] = UAENOMEDIUM;
sys2et[EMEDIUMTYPE] = UAEMEDIUMTYPE;
sys2et[EIO] = UAEIO;
}
/* NOTE: 2006-03-01
* SRXAFS_CallBackRxConnAddr should be re-written as follows:
* - pass back the connection, client, and host from CallPreamble
* - keep a ref on the client, which we don't now
* - keep a hold on the host, which we already do
* - pass the connection, client, and host down into SAFSS_*, and use
* them instead of independently discovering them via rx_ConnectionOf
* (safe) and rx_GetSpecific (not so safe)
* The idea being that we decide what client and host we're going to use
* when CallPreamble is called, and stay consistent throughout the call.
* This change is too invasive for 1.4.1 but should be made in 1.5.x.
*/
afs_int32
SRXAFS_CallBackRxConnAddr (struct rx_call * acall, afs_int32 *addr)
{
Error errorCode = 0;
struct rx_connection *tcon;
struct host *tcallhost;
#ifdef __EXPERIMENTAL_CALLBACK_CONN_MOVING
struct host *thost;
struct client *tclient;
static struct rx_securityClass *sc = 0;
int i,j;
struct rx_connection *conn;
afs_int32 viceid = -1;
#endif
if ((errorCode = CallPreamble(acall, ACTIVECALL, NULL, &tcon, &tcallhost)))
goto Bad_CallBackRxConnAddr1;
#ifndef __EXPERIMENTAL_CALLBACK_CONN_MOVING
errorCode = 1;
#else
H_LOCK;
tclient = h_FindClient_r(tcon, &viceid);
if (!tclient) {
errorCode = VBUSY;
LogClientError("Client host too busy (CallBackRxConnAddr)", tcon, viceid, NULL);
goto Bad_CallBackRxConnAddr;
}
thost = tclient->host;
/* nothing more can be done */
if ( !thost->interface )
goto Bad_CallBackRxConnAddr;
/* the only address is the primary interface */
/* can't change when there's only 1 address, anyway */
if ( thost->interface->numberOfInterfaces <= 1 )
goto Bad_CallBackRxConnAddr;
/* initialise a security object only once */
if ( !sc )
sc = (struct rx_securityClass *) rxnull_NewClientSecurityObject();
for ( i=0; i < thost->interface->numberOfInterfaces; i++)
{
if ( *addr == thost->interface->addr[i] ) {
break;
}
}
if ( *addr != thost->interface->addr[i] )
goto Bad_CallBackRxConnAddr;
conn = rx_NewConnection (thost->interface->addr[i],
thost->port, 1, sc, 0);
rx_SetConnDeadTime(conn, 2);
rx_SetConnHardDeadTime(conn, AFS_HARDDEADTIME);
H_UNLOCK;
errorCode = RXAFSCB_Probe(conn);
H_LOCK;
if (!errorCode) {
if ( thost->callback_rxcon )
rx_DestroyConnection(thost->callback_rxcon);
thost->callback_rxcon = conn;
thost->host = addr;
rx_SetConnDeadTime(thost->callback_rxcon, 50);
rx_SetConnHardDeadTime(thost->callback_rxcon, AFS_HARDDEADTIME);
h_ReleaseClient_r(tclient);
/* The hold on thost will be released by CallPostamble */
H_UNLOCK;
errorCode = CallPostamble(tcon, errorCode, tcallhost);
return errorCode;
} else {
rx_DestroyConnection(conn);
}
Bad_CallBackRxConnAddr:
h_ReleaseClient_r(tclient);
/* The hold on thost will be released by CallPostamble */
H_UNLOCK;
#endif
errorCode = CallPostamble(tcon, errorCode, tcallhost);
Bad_CallBackRxConnAddr1:
return errorCode; /* failure */
}
afs_int32
sys_error_to_et(afs_int32 in)
{
if (in == 0)
return 0;
if (in < 0 || in > 511)
return in;
if ((in >= VICE_SPECIAL_ERRORS && in <= VIO) || in == VRESTRICTED)
return in;
if (sys2et[in] != 0)
return sys2et[in];
return in;
}
|