Loading...
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 | /* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* * Default Pager. * Paging File Management. */ #include <mach/memory_object_control.h> #include <mach/memory_object_server.h> #include "default_pager_internal.h" #include <default_pager/default_pager_alerts.h> #include <ipc/ipc_port.h> #include <ipc/ipc_space.h> #include <kern/queue.h> #include <kern/counters.h> #include <kern/sched_prim.h> #include <vm/vm_kern.h> #include <vm/vm_pageout.h> /* CDY CDY */ #include <vm/vm_map.h> /* * ALLOC_STRIDE... the maximum number of bytes allocated from * a swap file before moving on to the next swap file... if * all swap files reside on a single disk, this value should * be very large (this is the default assumption)... if the * swap files are spread across multiple disks, than this value * should be small (128 * 1024)... * * This should be determined dynamically in the future */ #define ALLOC_STRIDE (1024 * 1024 * 1024) int physical_transfer_cluster_count = 0; #define VM_SUPER_CLUSTER 0x40000 #define VM_SUPER_PAGES 64 /* * 0 means no shift to pages, so == 1 page/cluster. 1 would mean * 2 pages/cluster, 2 means 4 pages/cluster, and so on. */ #define VSTRUCT_DEF_CLSHIFT 2 int vstruct_def_clshift = VSTRUCT_DEF_CLSHIFT; int default_pager_clsize = 0; /* statistics */ unsigned int clustered_writes[VM_SUPER_PAGES+1]; unsigned int clustered_reads[VM_SUPER_PAGES+1]; /* * Globals used for asynchronous paging operations: * vs_async_list: head of list of to-be-completed I/O ops * async_num_queued: number of pages completed, but not yet * processed by async thread. * async_requests_out: number of pages of requests not completed. */ #if 0 struct vs_async *vs_async_list; int async_num_queued; int async_requests_out; #endif #define VS_ASYNC_REUSE 1 struct vs_async *vs_async_free_list; mutex_t default_pager_async_lock; /* Protects globals above */ int vs_alloc_async_failed = 0; /* statistics */ int vs_alloc_async_count = 0; /* statistics */ struct vs_async *vs_alloc_async(void); /* forward */ void vs_free_async(struct vs_async *vsa); /* forward */ #define VS_ALLOC_ASYNC() vs_alloc_async() #define VS_FREE_ASYNC(vsa) vs_free_async(vsa) #define VS_ASYNC_LOCK() mutex_lock(&default_pager_async_lock) #define VS_ASYNC_UNLOCK() mutex_unlock(&default_pager_async_lock) #define VS_ASYNC_LOCK_INIT() mutex_init(&default_pager_async_lock, \ ETAP_IO_DEV_PAGEH) #define VS_ASYNC_LOCK_ADDR() (&default_pager_async_lock) /* * Paging Space Hysteresis triggers and the target notification port * */ unsigned int minimum_pages_remaining = 0; unsigned int maximum_pages_free = 0; ipc_port_t min_pages_trigger_port = NULL; ipc_port_t max_pages_trigger_port = NULL; boolean_t bs_low = FALSE; int backing_store_release_trigger_disable = 0; /* * Object sizes are rounded up to the next power of 2, * unless they are bigger than a given maximum size. */ vm_size_t max_doubled_size = 4 * 1024 * 1024; /* 4 meg */ /* * List of all backing store and segments. */ struct backing_store_list_head backing_store_list; paging_segment_t paging_segments[MAX_NUM_PAGING_SEGMENTS]; mutex_t paging_segments_lock; int paging_segment_max = 0; int paging_segment_count = 0; int ps_select_array[BS_MAXPRI+1] = { -1,-1,-1,-1,-1 }; /* * Total pages free in system * This differs from clusters committed/avail which is a measure of the * over commitment of paging segments to backing store. An idea which is * likely to be deprecated. */ unsigned int dp_pages_free = 0; unsigned int cluster_transfer_minimum = 100; kern_return_t ps_write_file(paging_segment_t, upl_t, vm_offset_t, vm_offset_t, unsigned int, int); /* forward */ kern_return_t ps_read_file (paging_segment_t, upl_t, vm_offset_t, vm_offset_t, unsigned int, unsigned int *, int); /* forward */ default_pager_thread_t * get_read_buffer() { int i; DPT_LOCK(dpt_lock); while(TRUE) { for (i=0; i<default_pager_internal_count; i++) { if(dpt_array[i]->checked_out == FALSE) { dpt_array[i]->checked_out = TRUE; DPT_UNLOCK(dpt_lock); return dpt_array[i]; } } DPT_SLEEP(dpt_lock, &dpt_array, THREAD_UNINT); } } void bs_initialize(void) { int i; /* * List of all backing store. */ BSL_LOCK_INIT(); queue_init(&backing_store_list.bsl_queue); PSL_LOCK_INIT(); VS_ASYNC_LOCK_INIT(); #if VS_ASYNC_REUSE vs_async_free_list = NULL; #endif /* VS_ASYNC_REUSE */ for (i = 0; i < VM_SUPER_PAGES + 1; i++) { clustered_writes[i] = 0; clustered_reads[i] = 0; } } /* * When things do not quite workout... */ void bs_no_paging_space(boolean_t); /* forward */ void bs_no_paging_space( boolean_t out_of_memory) { if (out_of_memory) dprintf(("*** OUT OF MEMORY ***\n")); panic("bs_no_paging_space: NOT ENOUGH PAGING SPACE"); } void bs_more_space(int); /* forward */ void bs_commit(int); /* forward */ boolean_t user_warned = FALSE; unsigned int clusters_committed = 0; unsigned int clusters_available = 0; unsigned int clusters_committed_peak = 0; void bs_more_space( int nclusters) { BSL_LOCK(); /* * Account for new paging space. */ clusters_available += nclusters; if (clusters_available >= clusters_committed) { if (verbose && user_warned) { printf("%s%s - %d excess clusters now.\n", my_name, "paging space is OK now", clusters_available - clusters_committed); user_warned = FALSE; clusters_committed_peak = 0; } } else { if (verbose && user_warned) { printf("%s%s - still short of %d clusters.\n", my_name, "WARNING: paging space over-committed", clusters_committed - clusters_available); clusters_committed_peak -= nclusters; } } BSL_UNLOCK(); return; } void bs_commit( int nclusters) { BSL_LOCK(); clusters_committed += nclusters; if (clusters_committed > clusters_available) { if (verbose && !user_warned) { user_warned = TRUE; printf("%s%s - short of %d clusters.\n", my_name, "WARNING: paging space over-committed", clusters_committed - clusters_available); } if (clusters_committed > clusters_committed_peak) { clusters_committed_peak = clusters_committed; } } else { if (verbose && user_warned) { printf("%s%s - was short of up to %d clusters.\n", my_name, "paging space is OK now", clusters_committed_peak - clusters_available); user_warned = FALSE; clusters_committed_peak = 0; } } BSL_UNLOCK(); return; } int default_pager_info_verbose = 1; void bs_global_info( vm_size_t *totalp, vm_size_t *freep) { vm_size_t pages_total, pages_free; paging_segment_t ps; int i; PSL_LOCK(); pages_total = pages_free = 0; for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps == PAGING_SEGMENT_NULL) continue; /* * no need to lock: by the time this data * gets back to any remote requestor it * will be obsolete anyways */ pages_total += ps->ps_pgnum; pages_free += ps->ps_clcount << ps->ps_clshift; DEBUG(DEBUG_BS_INTERNAL, ("segment #%d: %d total, %d free\n", i, ps->ps_pgnum, ps->ps_clcount << ps->ps_clshift)); } *totalp = pages_total; *freep = pages_free; if (verbose && user_warned && default_pager_info_verbose) { if (clusters_available < clusters_committed) { printf("%s %d clusters committed, %d available.\n", my_name, clusters_committed, clusters_available); } } PSL_UNLOCK(); } backing_store_t backing_store_alloc(void); /* forward */ backing_store_t backing_store_alloc(void) { backing_store_t bs; bs = (backing_store_t) kalloc(sizeof (struct backing_store)); if (bs == BACKING_STORE_NULL) panic("backing_store_alloc: no memory"); BS_LOCK_INIT(bs); bs->bs_port = MACH_PORT_NULL; bs->bs_priority = 0; bs->bs_clsize = 0; bs->bs_pages_total = 0; bs->bs_pages_in = 0; bs->bs_pages_in_fail = 0; bs->bs_pages_out = 0; bs->bs_pages_out_fail = 0; return bs; } backing_store_t backing_store_lookup(MACH_PORT_FACE); /* forward */ /* Even in both the component space and external versions of this pager, */ /* backing_store_lookup will be called from tasks in the application space */ backing_store_t backing_store_lookup( MACH_PORT_FACE port) { backing_store_t bs; /* port is currently backed with a vs structure in the alias field we could create an ISBS alias and a port_is_bs call but frankly I see no reason for the test, the bs->port == port check below will work properly on junk entries. if ((port == MACH_PORT_NULL) || port_is_vs(port)) */ if ((port == MACH_PORT_NULL)) return BACKING_STORE_NULL; BSL_LOCK(); queue_iterate(&backing_store_list.bsl_queue, bs, backing_store_t, bs_links) { BS_LOCK(bs); if (bs->bs_port == port) { BSL_UNLOCK(); /* Success, return it locked. */ return bs; } BS_UNLOCK(bs); } BSL_UNLOCK(); return BACKING_STORE_NULL; } void backing_store_add(backing_store_t); /* forward */ void backing_store_add( backing_store_t bs) { MACH_PORT_FACE port = bs->bs_port; MACH_PORT_FACE pset = default_pager_default_set; kern_return_t kr = KERN_SUCCESS; if (kr != KERN_SUCCESS) panic("backing_store_add: add to set"); } /* * Set up default page shift, but only if not already * set and argument is within range. */ boolean_t bs_set_default_clsize(unsigned int npages) { switch(npages){ case 1: case 2: case 4: case 8: if (default_pager_clsize == 0) /* if not yet set */ vstruct_def_clshift = local_log2(npages); return(TRUE); } return(FALSE); } int bs_get_global_clsize(int clsize); /* forward */ int bs_get_global_clsize( int clsize) { int i; memory_object_default_t dmm; kern_return_t kr; /* * Only allow setting of cluster size once. If called * with no cluster size (default), we use the compiled-in default * for the duration. The same cluster size is used for all * paging segments. */ if (default_pager_clsize == 0) { /* * Keep cluster size in bit shift because it's quicker * arithmetic, and easier to keep at a power of 2. */ if (clsize != NO_CLSIZE) { for (i = 0; (1 << i) < clsize; i++); if (i > MAX_CLUSTER_SHIFT) i = MAX_CLUSTER_SHIFT; vstruct_def_clshift = i; } default_pager_clsize = (1 << vstruct_def_clshift); /* * Let the user know the new (and definitive) cluster size. */ if (verbose) printf("%scluster size = %d page%s\n", my_name, default_pager_clsize, (default_pager_clsize == 1) ? "" : "s"); /* * Let the kernel know too, in case it hasn't used the * default value provided in main() yet. */ dmm = default_pager_object; clsize = default_pager_clsize * vm_page_size; /* in bytes */ kr = host_default_memory_manager(host_priv_self(), &dmm, clsize); memory_object_default_deallocate(dmm); if (kr != KERN_SUCCESS) { panic("bs_get_global_cl_size:host_default_memory_manager"); } if (dmm != default_pager_object) { panic("bs_get_global_cl_size:there is another default pager"); } } ASSERT(default_pager_clsize > 0 && (default_pager_clsize & (default_pager_clsize - 1)) == 0); return default_pager_clsize; } kern_return_t default_pager_backing_store_create( memory_object_default_t pager, int priority, int clsize, /* in bytes */ MACH_PORT_FACE *backing_store) { backing_store_t bs; MACH_PORT_FACE port; kern_return_t kr; struct vstruct_alias *alias_struct; if (pager != default_pager_object) return KERN_INVALID_ARGUMENT; bs = backing_store_alloc(); port = ipc_port_alloc_kernel(); ipc_port_make_send(port); assert (port != IP_NULL); DEBUG(DEBUG_BS_EXTERNAL, ("priority=%d clsize=%d bs_port=0x%x\n", priority, clsize, (int) backing_store)); alias_struct = (struct vstruct_alias *) kalloc(sizeof (struct vstruct_alias)); if(alias_struct != NULL) { alias_struct->vs = (struct vstruct *)bs; alias_struct->name = ISVS; port->alias = (int) alias_struct; } else { ipc_port_dealloc_kernel((MACH_PORT_FACE)(port)); kfree((vm_offset_t)bs, sizeof (struct backing_store)); return KERN_RESOURCE_SHORTAGE; } bs->bs_port = port; if (priority == DEFAULT_PAGER_BACKING_STORE_MAXPRI) priority = BS_MAXPRI; else if (priority == BS_NOPRI) priority = BS_MAXPRI; else priority = BS_MINPRI; bs->bs_priority = priority; bs->bs_clsize = bs_get_global_clsize(atop(clsize)); BSL_LOCK(); queue_enter(&backing_store_list.bsl_queue, bs, backing_store_t, bs_links); BSL_UNLOCK(); backing_store_add(bs); *backing_store = port; return KERN_SUCCESS; } kern_return_t default_pager_backing_store_info( MACH_PORT_FACE backing_store, backing_store_flavor_t flavour, backing_store_info_t info, mach_msg_type_number_t *size) { backing_store_t bs; backing_store_basic_info_t basic; int i; paging_segment_t ps; if (flavour != BACKING_STORE_BASIC_INFO || *size < BACKING_STORE_BASIC_INFO_COUNT) return KERN_INVALID_ARGUMENT; basic = (backing_store_basic_info_t)info; *size = BACKING_STORE_BASIC_INFO_COUNT; VSTATS_LOCK(&global_stats.gs_lock); basic->pageout_calls = global_stats.gs_pageout_calls; basic->pagein_calls = global_stats.gs_pagein_calls; basic->pages_in = global_stats.gs_pages_in; basic->pages_out = global_stats.gs_pages_out; basic->pages_unavail = global_stats.gs_pages_unavail; basic->pages_init = global_stats.gs_pages_init; basic->pages_init_writes= global_stats.gs_pages_init_writes; VSTATS_UNLOCK(&global_stats.gs_lock); if ((bs = backing_store_lookup(backing_store)) == BACKING_STORE_NULL) return KERN_INVALID_ARGUMENT; basic->bs_pages_total = bs->bs_pages_total; PSL_LOCK(); bs->bs_pages_free = 0; for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps != PAGING_SEGMENT_NULL && ps->ps_bs == bs) { PS_LOCK(ps); bs->bs_pages_free += ps->ps_clcount << ps->ps_clshift; PS_UNLOCK(ps); } } PSL_UNLOCK(); basic->bs_pages_free = bs->bs_pages_free; basic->bs_pages_in = bs->bs_pages_in; basic->bs_pages_in_fail = bs->bs_pages_in_fail; basic->bs_pages_out = bs->bs_pages_out; basic->bs_pages_out_fail= bs->bs_pages_out_fail; basic->bs_priority = bs->bs_priority; basic->bs_clsize = ptoa(bs->bs_clsize); /* in bytes */ BS_UNLOCK(bs); return KERN_SUCCESS; } int ps_delete(paging_segment_t); /* forward */ int ps_delete( paging_segment_t ps) { vstruct_t vs; kern_return_t error = KERN_SUCCESS; int vs_count; VSL_LOCK(); /* get the lock on the list of vs's */ /* The lock relationship and sequence is farily complicated */ /* this code looks at a live list, locking and unlocking the list */ /* as it traverses it. It depends on the locking behavior of */ /* default_pager_no_senders. no_senders always locks the vstruct */ /* targeted for removal before locking the vstruct list. However */ /* it will remove that member of the list without locking its */ /* neighbors. We can be sure when we hold a lock on a vstruct */ /* it cannot be removed from the list but we must hold the list */ /* lock to be sure that its pointers to its neighbors are valid. */ /* Also, we can hold off destruction of a vstruct when the list */ /* lock and the vs locks are not being held by bumping the */ /* vs_async_pending count. */ while(backing_store_release_trigger_disable != 0) { VSL_SLEEP(&backing_store_release_trigger_disable, THREAD_UNINT); } /* we will choose instead to hold a send right */ vs_count = vstruct_list.vsl_count; vs = (vstruct_t) queue_first((queue_entry_t)&(vstruct_list.vsl_queue)); if(vs == (vstruct_t)&vstruct_list) { VSL_UNLOCK(); return KERN_SUCCESS; } VS_LOCK(vs); vs_async_wait(vs); /* wait for any pending async writes */ if ((vs_count != 0) && (vs != NULL)) vs->vs_async_pending += 1; /* hold parties calling */ /* vs_async_wait */ VS_UNLOCK(vs); VSL_UNLOCK(); while((vs_count != 0) && (vs != NULL)) { /* We take the count of AMO's before beginning the */ /* transfer of of the target segment. */ /* We are guaranteed that the target segment cannot get */ /* more users. We also know that queue entries are */ /* made at the back of the list. If some of the entries */ /* we would check disappear while we are traversing the */ /* list then we will either check new entries which */ /* do not have any backing store in the target segment */ /* or re-check old entries. This might not be optimal */ /* but it will always be correct. The alternative is to */ /* take a snapshot of the list. */ vstruct_t next_vs; if(dp_pages_free < cluster_transfer_minimum) error = KERN_FAILURE; else { vm_object_t transfer_object; int count; upl_t upl; transfer_object = vm_object_allocate(VM_SUPER_CLUSTER); count = 0; error = vm_object_upl_request(transfer_object, (vm_object_offset_t)0, VM_SUPER_CLUSTER, &upl, NULL, &count, UPL_NO_SYNC | UPL_CLEAN_IN_PLACE | UPL_SET_INTERNAL); if(error == KERN_SUCCESS) { error = ps_vstruct_transfer_from_segment( vs, ps, upl); upl_commit(upl, NULL); upl_deallocate(upl); } else { error = KERN_FAILURE; } vm_object_deallocate(transfer_object); } if(error) { VS_LOCK(vs); vs->vs_async_pending -= 1; /* release vs_async_wait */ if (vs->vs_async_pending == 0 && vs->vs_waiting_async) { vs->vs_waiting_async = FALSE; VS_UNLOCK(vs); thread_wakeup(&vs->vs_async_pending); } else { VS_UNLOCK(vs); } return KERN_FAILURE; } VSL_LOCK(); while(backing_store_release_trigger_disable != 0) { VSL_SLEEP(&backing_store_release_trigger_disable, THREAD_UNINT); } next_vs = (vstruct_t) queue_next(&(vs->vs_links)); if((next_vs != (vstruct_t)&vstruct_list) && (vs != next_vs) && (vs_count != 1)) { VS_LOCK(next_vs); vs_async_wait(next_vs); /* wait for any */ /* pending async writes */ next_vs->vs_async_pending += 1; /* hold parties */ /* calling vs_async_wait */ VS_UNLOCK(next_vs); } VSL_UNLOCK(); VS_LOCK(vs); vs->vs_async_pending -= 1; if (vs->vs_async_pending == 0 && vs->vs_waiting_async) { vs->vs_waiting_async = FALSE; VS_UNLOCK(vs); thread_wakeup(&vs->vs_async_pending); } else { VS_UNLOCK(vs); } if((vs == next_vs) || (next_vs == (vstruct_t)&vstruct_list)) vs = NULL; else vs = next_vs; vs_count--; } return KERN_SUCCESS; } kern_return_t default_pager_backing_store_delete( MACH_PORT_FACE backing_store) { backing_store_t bs; int i; paging_segment_t ps; int error; int interim_pages_removed = 0; kern_return_t kr; if ((bs = backing_store_lookup(backing_store)) == BACKING_STORE_NULL) return KERN_INVALID_ARGUMENT; #if 0 /* not implemented */ BS_UNLOCK(bs); return KERN_FAILURE; #endif restart: PSL_LOCK(); error = KERN_SUCCESS; for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps != PAGING_SEGMENT_NULL && ps->ps_bs == bs && ! ps->ps_going_away) { PS_LOCK(ps); /* disable access to this segment */ ps->ps_going_away = TRUE; PS_UNLOCK(ps); /* * The "ps" segment is "off-line" now, * we can try and delete it... */ if(dp_pages_free < (cluster_transfer_minimum + ps->ps_pgcount)) { error = KERN_FAILURE; PSL_UNLOCK(); } else { /* remove all pages associated with the */ /* segment from the list of free pages */ /* when transfer is through, all target */ /* segment pages will appear to be free */ dp_pages_free -= ps->ps_pgcount; interim_pages_removed += ps->ps_pgcount; PSL_UNLOCK(); error = ps_delete(ps); } if (error != KERN_SUCCESS) { /* * We couldn't delete the segment, * probably because there's not enough * virtual memory left. * Re-enable all the segments. */ PSL_LOCK(); break; } goto restart; } } if (error != KERN_SUCCESS) { for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps != PAGING_SEGMENT_NULL && ps->ps_bs == bs && ps->ps_going_away) { PS_LOCK(ps); /* re-enable access to this segment */ ps->ps_going_away = FALSE; PS_UNLOCK(ps); } } dp_pages_free += interim_pages_removed; PSL_UNLOCK(); BS_UNLOCK(bs); return error; } for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps != PAGING_SEGMENT_NULL && ps->ps_bs == bs) { if(ps->ps_going_away) { paging_segments[i] = PAGING_SEGMENT_NULL; paging_segment_count--; PS_LOCK(ps); kfree((vm_offset_t)ps->ps_bmap, RMAPSIZE(ps->ps_ncls)); kfree((vm_offset_t)ps, sizeof *ps); } } } /* Scan the entire ps array separately to make certain we find the */ /* proper paging_segment_max */ for (i = 0; i < MAX_NUM_PAGING_SEGMENTS; i++) { if(paging_segments[i] != PAGING_SEGMENT_NULL) paging_segment_max = i; } PSL_UNLOCK(); /* * All the segments have been deleted. * We can remove the backing store. */ /* * Disable lookups of this backing store. */ if((void *)bs->bs_port->alias != NULL) kfree((vm_offset_t) bs->bs_port->alias, sizeof (struct vstruct_alias)); ipc_port_dealloc_kernel((ipc_port_t) (bs->bs_port)); bs->bs_port = MACH_PORT_NULL; BS_UNLOCK(bs); /* * Remove backing store from backing_store list. */ BSL_LOCK(); queue_remove(&backing_store_list.bsl_queue, bs, backing_store_t, bs_links); BSL_UNLOCK(); /* * Free the backing store structure. */ kfree((vm_offset_t)bs, sizeof *bs); return KERN_SUCCESS; } int ps_enter(paging_segment_t); /* forward */ int ps_enter( paging_segment_t ps) { int i; PSL_LOCK(); for (i = 0; i < MAX_NUM_PAGING_SEGMENTS; i++) { if (paging_segments[i] == PAGING_SEGMENT_NULL) break; } if (i < MAX_NUM_PAGING_SEGMENTS) { paging_segments[i] = ps; if (i > paging_segment_max) paging_segment_max = i; paging_segment_count++; if ((ps_select_array[ps->ps_bs->bs_priority] == BS_NOPRI) || (ps_select_array[ps->ps_bs->bs_priority] == BS_FULLPRI)) ps_select_array[ps->ps_bs->bs_priority] = 0; i = 0; } else { PSL_UNLOCK(); return KERN_RESOURCE_SHORTAGE; } PSL_UNLOCK(); return i; } #ifdef DEVICE_PAGING kern_return_t default_pager_add_segment( MACH_PORT_FACE backing_store, MACH_PORT_FACE device, recnum_t offset, recnum_t count, int record_size) { backing_store_t bs; paging_segment_t ps; int i; int error; if ((bs = backing_store_lookup(backing_store)) == BACKING_STORE_NULL) return KERN_INVALID_ARGUMENT; PSL_LOCK(); for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps == PAGING_SEGMENT_NULL) continue; /* * Check for overlap on same device. */ if (!(ps->ps_device != device || offset >= ps->ps_offset + ps->ps_recnum || offset + count <= ps->ps_offset)) { PSL_UNLOCK(); BS_UNLOCK(bs); return KERN_INVALID_ARGUMENT; } } PSL_UNLOCK(); /* * Set up the paging segment */ ps = (paging_segment_t) kalloc(sizeof (struct paging_segment)); if (ps == PAGING_SEGMENT_NULL) { BS_UNLOCK(bs); return KERN_RESOURCE_SHORTAGE; } ps->ps_segtype = PS_PARTITION; ps->ps_device = device; ps->ps_offset = offset; ps->ps_record_shift = local_log2(vm_page_size / record_size); ps->ps_recnum = count; ps->ps_pgnum = count >> ps->ps_record_shift; ps->ps_pgcount = ps->ps_pgnum; ps->ps_clshift = local_log2(bs->bs_clsize); ps->ps_clcount = ps->ps_ncls = ps->ps_pgcount >> ps->ps_clshift; ps->ps_hint = 0; PS_LOCK_INIT(ps); ps->ps_bmap = (unsigned char *) kalloc(RMAPSIZE(ps->ps_ncls)); if (!ps->ps_bmap) { kfree((vm_offset_t)ps, sizeof *ps); BS_UNLOCK(bs); return KERN_RESOURCE_SHORTAGE; } for (i = 0; i < ps->ps_ncls; i++) { clrbit(ps->ps_bmap, i); } ps->ps_going_away = FALSE; ps->ps_bs = bs; if ((error = ps_enter(ps)) != 0) { kfree((vm_offset_t)ps->ps_bmap, RMAPSIZE(ps->ps_ncls)); kfree((vm_offset_t)ps, sizeof *ps); BS_UNLOCK(bs); return KERN_RESOURCE_SHORTAGE; } bs->bs_pages_free += ps->ps_clcount << ps->ps_clshift; bs->bs_pages_total += ps->ps_clcount << ps->ps_clshift; BS_UNLOCK(bs); PSL_LOCK(); dp_pages_free += ps->ps_pgcount; PSL_UNLOCK(); bs_more_space(ps->ps_clcount); DEBUG(DEBUG_BS_INTERNAL, ("device=0x%x,offset=0x%x,count=0x%x,record_size=0x%x,shift=%d,total_size=0x%x\n", device, offset, count, record_size, ps->ps_record_shift, ps->ps_pgnum)); return KERN_SUCCESS; } boolean_t bs_add_device( char *dev_name, MACH_PORT_FACE master) { security_token_t null_security_token = { { 0, 0 } }; MACH_PORT_FACE device; int info[DEV_GET_SIZE_COUNT]; mach_msg_type_number_t info_count; MACH_PORT_FACE bs = MACH_PORT_NULL; unsigned int rec_size; recnum_t count; int clsize; MACH_PORT_FACE reply_port; if (ds_device_open_sync(master, MACH_PORT_NULL, D_READ | D_WRITE, null_security_token, dev_name, &device)) return FALSE; info_count = DEV_GET_SIZE_COUNT; if (!ds_device_get_status(device, DEV_GET_SIZE, info, &info_count)) { rec_size = info[DEV_GET_SIZE_RECORD_SIZE]; count = info[DEV_GET_SIZE_DEVICE_SIZE] / rec_size; clsize = bs_get_global_clsize(0); if (!default_pager_backing_store_create( default_pager_object, DEFAULT_PAGER_BACKING_STORE_MAXPRI, (clsize * vm_page_size), &bs)) { if (!default_pager_add_segment(bs, device, 0, count, rec_size)) { return TRUE; } ipc_port_release_receive(bs); } } ipc_port_release_send(device); return FALSE; } #endif /* DEVICE_PAGING */ #if VS_ASYNC_REUSE struct vs_async * vs_alloc_async(void) { struct vs_async *vsa; MACH_PORT_FACE reply_port; kern_return_t kr; VS_ASYNC_LOCK(); if (vs_async_free_list == NULL) { VS_ASYNC_UNLOCK(); vsa = (struct vs_async *) kalloc(sizeof (struct vs_async)); if (vsa != NULL) { /* * Try allocating a reply port named after the * address of the vs_async structure. */ struct vstruct_alias *alias_struct; reply_port = ipc_port_alloc_kernel(); alias_struct = (struct vstruct_alias *) kalloc(sizeof (struct vstruct_alias)); if(alias_struct != NULL) { alias_struct->vs = (struct vstruct *)vsa; alias_struct->name = ISVS; reply_port->alias = (int) alias_struct; vsa->reply_port = reply_port; vs_alloc_async_count++; } else { vs_alloc_async_failed++; ipc_port_dealloc_kernel((MACH_PORT_FACE) (reply_port)); kfree((vm_offset_t)vsa, sizeof (struct vs_async)); vsa = NULL; } } } else { vsa = vs_async_free_list; vs_async_free_list = vs_async_free_list->vsa_next; VS_ASYNC_UNLOCK(); } return vsa; } void vs_free_async( struct vs_async *vsa) { VS_ASYNC_LOCK(); vsa->vsa_next = vs_async_free_list; vs_async_free_list = vsa; VS_ASYNC_UNLOCK(); } #else /* VS_ASYNC_REUSE */ struct vs_async * vs_alloc_async(void) { struct vs_async *vsa; MACH_PORT_FACE reply_port; kern_return_t kr; vsa = (struct vs_async *) kalloc(sizeof (struct vs_async)); if (vsa != NULL) { /* * Try allocating a reply port named after the * address of the vs_async structure. */ reply_port = ipc_port_alloc_kernel(); alias_struct = (vstruct_alias *) kalloc(sizeof (struct vstruct_alias)); if(alias_struct != NULL) { alias_struct->vs = reply_port; alias_struct->name = ISVS; reply_port->alias = (int) vsa; vsa->reply_port = reply_port; vs_alloc_async_count++; } else { vs_alloc_async_failed++; ipc_port_dealloc_kernel((MACH_PORT_FACE) (reply_port)); kfree((vm_offset_t) vsa, sizeof (struct vs_async)); vsa = NULL; } } return vsa; } void vs_free_async( struct vs_async *vsa) { MACH_PORT_FACE reply_port; kern_return_t kr; reply_port = vsa->reply_port; kfree((vm_offset_t) reply_port->alias, sizeof (struct vstuct_alias)); kfree((vm_offset_t) vsa, sizeof (struct vs_async)); ipc_port_dealloc_kernel((MACH_PORT_FACE) (reply_port)); #if 0 VS_ASYNC_LOCK(); vs_alloc_async_count--; VS_ASYNC_UNLOCK(); #endif } #endif /* VS_ASYNC_REUSE */ zone_t vstruct_zone; vstruct_t ps_vstruct_create( vm_size_t size) { vstruct_t vs; int i; vs = (vstruct_t) zalloc(vstruct_zone); if (vs == VSTRUCT_NULL) { return VSTRUCT_NULL; } VS_LOCK_INIT(vs); /* * The following fields will be provided later. */ vs->vs_mem_obj = NULL; vs->vs_control = MEMORY_OBJECT_CONTROL_NULL; vs->vs_references = 1; vs->vs_seqno = 0; #ifdef MACH_KERNEL vs->vs_waiting_seqno = FALSE; vs->vs_waiting_read = FALSE; vs->vs_waiting_write = FALSE; vs->vs_waiting_async = FALSE; #else mutex_init(&vs->vs_waiting_seqno, ETAP_DPAGE_VSSEQNO); mutex_init(&vs->vs_waiting_read, ETAP_DPAGE_VSREAD); mutex_init(&vs->vs_waiting_write, ETAP_DPAGE_VSWRITE); mutex_init(&vs->vs_waiting_refs, ETAP_DPAGE_VSREFS); mutex_init(&vs->vs_waiting_async, ETAP_DPAGE_VSASYNC); #endif vs->vs_readers = 0; vs->vs_writers = 0; vs->vs_errors = 0; vs->vs_clshift = local_log2(bs_get_global_clsize(0)); vs->vs_size = ((atop(round_page(size)) - 1) >> vs->vs_clshift) + 1; vs->vs_async_pending = 0; /* * Allocate the pmap, either CLMAP_SIZE or INDIRECT_CLMAP_SIZE * depending on the size of the memory object. */ if (INDIRECT_CLMAP(vs->vs_size)) { vs->vs_imap = (struct vs_map **) kalloc(INDIRECT_CLMAP_SIZE(vs->vs_size)); vs->vs_indirect = TRUE; } else { vs->vs_dmap = (struct vs_map *) kalloc(CLMAP_SIZE(vs->vs_size)); vs->vs_indirect = FALSE; } vs->vs_xfer_pending = FALSE; DEBUG(DEBUG_VS_INTERNAL, ("map=0x%x, indirect=%d\n", (int) vs->vs_dmap, vs->vs_indirect)); /* * Check to see that we got the space. */ if (!vs->vs_dmap) { kfree((vm_offset_t)vs, sizeof *vs); return VSTRUCT_NULL; } /* * Zero the indirect pointers, or clear the direct pointers. */ if (vs->vs_indirect) memset(vs->vs_imap, 0, INDIRECT_CLMAP_SIZE(vs->vs_size)); else for (i = 0; i < vs->vs_size; i++) VSM_CLR(vs->vs_dmap[i]); VS_MAP_LOCK_INIT(vs); bs_commit(vs->vs_size); return vs; } paging_segment_t ps_select_segment(int, int *); /* forward */ paging_segment_t ps_select_segment( int shift, int *psindex) { paging_segment_t ps; int i; int j; /* * Optimize case where there's only one segment. * paging_segment_max will index the one and only segment. */ PSL_LOCK(); if (paging_segment_count == 1) { paging_segment_t lps; /* used to avoid extra PS_UNLOCK */ ipc_port_t trigger = IP_NULL; ps = paging_segments[paging_segment_max]; *psindex = paging_segment_max; PS_LOCK(ps); if (ps->ps_going_away) { /* this segment is being turned off */ lps = PAGING_SEGMENT_NULL; } else { ASSERT(ps->ps_clshift >= shift); if (ps->ps_clcount) { ps->ps_clcount--; dp_pages_free -= 1 << ps->ps_clshift; if(min_pages_trigger_port && (dp_pages_free < minimum_pages_remaining)) { trigger = min_pages_trigger_port; min_pages_trigger_port = NULL; bs_low = TRUE; } lps = ps; } else lps = PAGING_SEGMENT_NULL; } PS_UNLOCK(ps); PSL_UNLOCK(); if (trigger != IP_NULL) { default_pager_space_alert(trigger, HI_WAT_ALERT); ipc_port_release_send(trigger); } return lps; } if (paging_segment_count == 0) { PSL_UNLOCK(); return PAGING_SEGMENT_NULL; } for (i = BS_MAXPRI; i >= BS_MINPRI; i--) { int start_index; if ((ps_select_array[i] == BS_NOPRI) || (ps_select_array[i] == BS_FULLPRI)) continue; start_index = ps_select_array[i]; if(!(paging_segments[start_index])) { j = start_index+1; physical_transfer_cluster_count = 0; } else if ((physical_transfer_cluster_count+1) == (ALLOC_STRIDE >> (((paging_segments[start_index])->ps_clshift) + vm_page_shift))) { physical_transfer_cluster_count = 0; j = start_index + 1; } else { physical_transfer_cluster_count+=1; j = start_index; if(start_index == 0) start_index = paging_segment_max; else start_index = start_index - 1; } while (1) { if (j > paging_segment_max) j = 0; if ((ps = paging_segments[j]) && (ps->ps_bs->bs_priority == i)) { /* * Force the ps cluster size to be * >= that of the vstruct. */ PS_LOCK(ps); if (ps->ps_going_away) { /* this segment is being turned off */ } else if ((ps->ps_clcount) && (ps->ps_clshift >= shift)) { ipc_port_t trigger = IP_NULL; ps->ps_clcount--; dp_pages_free -= 1 << ps->ps_clshift; if(min_pages_trigger_port && (dp_pages_free < minimum_pages_remaining)) { trigger = min_pages_trigger_port; min_pages_trigger_port = NULL; } PS_UNLOCK(ps); /* * found one, quit looking. */ ps_select_array[i] = j; PSL_UNLOCK(); if (trigger != IP_NULL) { default_pager_space_alert( trigger, HI_WAT_ALERT); ipc_port_release_send(trigger); } *psindex = j; return ps; } PS_UNLOCK(ps); } if (j == start_index) { /* * none at this priority -- mark it full */ ps_select_array[i] = BS_FULLPRI; break; } j++; } } PSL_UNLOCK(); return PAGING_SEGMENT_NULL; } vm_offset_t ps_allocate_cluster(vstruct_t, int *, paging_segment_t); /*forward*/ vm_offset_t ps_allocate_cluster( vstruct_t vs, int *psindex, paging_segment_t use_ps) { int byte_num; int bit_num = 0; paging_segment_t ps; vm_offset_t cluster; ipc_port_t trigger = IP_NULL; /* * Find best paging segment. * ps_select_segment will decrement cluster count on ps. * Must pass cluster shift to find the most appropriate segment. */ /* NOTE: The addition of paging segment delete capability threatened * to seriously complicate the treatment of paging segments in this * module and the ones that call it (notably ps_clmap), because of the * difficulty in assuring that the paging segment would continue to * exist between being unlocked and locked. This was * avoided because all calls to this module are based in either * dp_memory_object calls which rely on the vs lock, or by * the transfer function which is part of the segment delete path. * The transfer function which is part of paging segment delete is * protected from multiple callers by the backing store lock. * The paging segment delete function treats mappings to a paging * segment on a vstruct by vstruct basis, locking the vstruct targeted * while data is transferred to the remaining segments. This is in * line with the view that incomplete or in-transition mappings between * data, a vstruct, and backing store are protected by the vs lock. * This and the ordering of the paging segment "going_away" bit setting * protects us. */ if (use_ps != PAGING_SEGMENT_NULL) { ps = use_ps; PSL_LOCK(); PS_LOCK(ps); ps->ps_clcount--; dp_pages_free -= 1 << ps->ps_clshift; if(min_pages_trigger_port && (dp_pages_free < minimum_pages_remaining)) { trigger = min_pages_trigger_port; min_pages_trigger_port = NULL; } PSL_UNLOCK(); PS_UNLOCK(ps); if (trigger != IP_NULL) { default_pager_space_alert(trigger, HI_WAT_ALERT); ipc_port_release_send(trigger); } } else if ((ps = ps_select_segment(vs->vs_clshift, psindex)) == PAGING_SEGMENT_NULL) { #if 0 bs_no_paging_space(TRUE); #endif #if 0 if (verbose) #endif dprintf(("no space in available paging segments; " "swapon suggested\n")); /* the count got off maybe, reset to zero */ PSL_LOCK(); dp_pages_free = 0; if(min_pages_trigger_port) { trigger = min_pages_trigger_port; min_pages_trigger_port = NULL; bs_low = TRUE; } PSL_UNLOCK(); if (trigger != IP_NULL) { default_pager_space_alert(trigger, HI_WAT_ALERT); ipc_port_release_send(trigger); } return (vm_offset_t) -1; } ASSERT(ps->ps_clcount != 0); /* * Look for an available cluster. At the end of the loop, * byte_num is the byte offset and bit_num is the bit offset of the * first zero bit in the paging segment bitmap. */ PS_LOCK(ps); byte_num = ps->ps_hint; for (; byte_num < howmany(ps->ps_ncls, NBBY); byte_num++) { if (*(ps->ps_bmap + byte_num) != BYTEMASK) { for (bit_num = 0; bit_num < NBBY; bit_num++) { if (isclr((ps->ps_bmap + byte_num), bit_num)) break; } ASSERT(bit_num != NBBY); break; } } ps->ps_hint = byte_num; cluster = (byte_num*NBBY) + bit_num; /* Space was reserved, so this must be true */ ASSERT(cluster < ps->ps_ncls); setbit(ps->ps_bmap, cluster); PS_UNLOCK(ps); return cluster; } void ps_deallocate_cluster(paging_segment_t, vm_offset_t); /* forward */ void ps_deallocate_cluster( paging_segment_t ps, vm_offset_t cluster) { ipc_port_t trigger = IP_NULL; if (cluster >= (vm_offset_t) ps->ps_ncls) panic("ps_deallocate_cluster: Invalid cluster number"); /* * Lock the paging segment, clear the cluster's bitmap and increment the * number of free cluster. */ PSL_LOCK(); PS_LOCK(ps); clrbit(ps->ps_bmap, cluster); ++ps->ps_clcount; dp_pages_free += 1 << ps->ps_clshift; if(max_pages_trigger_port && (backing_store_release_trigger_disable == 0) && (dp_pages_free > maximum_pages_free)) { trigger = max_pages_trigger_port; max_pages_trigger_port = NULL; } PSL_UNLOCK(); /* * Move the hint down to the freed cluster if it is * less than the current hint. */ if ((cluster/NBBY) < ps->ps_hint) { ps->ps_hint = (cluster/NBBY); } PS_UNLOCK(ps); /* * If we're freeing space on a full priority, reset the array. */ PSL_LOCK(); if (ps_select_array[ps->ps_bs->bs_priority] == BS_FULLPRI) ps_select_array[ps->ps_bs->bs_priority] = 0; PSL_UNLOCK(); if (trigger != IP_NULL) { VSL_LOCK(); if(backing_store_release_trigger_disable != 0) { assert_wait((event_t) &backing_store_release_trigger_disable, THREAD_UNINT); VSL_UNLOCK(); thread_block(THREAD_CONTINUE_NULL); } else { VSL_UNLOCK(); } default_pager_space_alert(trigger, LO_WAT_ALERT); ipc_port_release_send(trigger); } return; } void ps_dealloc_vsmap(struct vs_map *, vm_size_t); /* forward */ void ps_dealloc_vsmap( struct vs_map *vsmap, vm_size_t size) { int i; for (i = 0; i < size; i++) if (!VSM_ISCLR(vsmap[i]) && !VSM_ISERR(vsmap[i])) ps_deallocate_cluster(VSM_PS(vsmap[i]), VSM_CLOFF(vsmap[i])); } void ps_vstruct_dealloc( vstruct_t vs) { int i; spl_t s; VS_MAP_LOCK(vs); /* * If this is an indirect structure, then we walk through the valid * (non-zero) indirect pointers and deallocate the clusters * associated with each used map entry (via ps_dealloc_vsmap). * When all of the clusters in an indirect block have been * freed, we deallocate the block. When all of the indirect * blocks have been deallocated we deallocate the memory * holding the indirect pointers. */ if (vs->vs_indirect) { for (i = 0; i < INDIRECT_CLMAP_ENTRIES(vs->vs_size); i++) { if (vs->vs_imap[i] != NULL) { ps_dealloc_vsmap(vs->vs_imap[i], CLMAP_ENTRIES); kfree((vm_offset_t)vs->vs_imap[i], CLMAP_THRESHOLD); } } kfree((vm_offset_t)vs->vs_imap, INDIRECT_CLMAP_SIZE(vs->vs_size)); } else { /* * Direct map. Free used clusters, then memory. */ ps_dealloc_vsmap(vs->vs_dmap, vs->vs_size); kfree((vm_offset_t)vs->vs_dmap, CLMAP_SIZE(vs->vs_size)); } VS_MAP_UNLOCK(vs); bs_commit(- vs->vs_size); zfree(vstruct_zone, (vm_offset_t)vs); } int ps_map_extend(vstruct_t, int); /* forward */ int ps_map_extend( vstruct_t vs, int new_size) { struct vs_map **new_imap; struct vs_map *new_dmap = NULL; int newdsize; int i; void *old_map = NULL; int old_map_size = 0; if (vs->vs_size >= new_size) { /* * Someone has already done the work. */ return 0; } /* * If the new size extends into the indirect range, then we have one * of two cases: we are going from indirect to indirect, or we are * going from direct to indirect. If we are going from indirect to * indirect, then it is possible that the new size will fit in the old * indirect map. If this is the case, then just reset the size of the * vstruct map and we are done. If the new size will not * fit into the old indirect map, then we have to allocate a new * indirect map and copy the old map pointers into this new map. * * If we are going from direct to indirect, then we have to allocate a * new indirect map and copy the old direct pages into the first * indirect page of the new map. * NOTE: allocating memory here is dangerous, as we're in the * pageout path. */ if (INDIRECT_CLMAP(new_size)) { int new_map_size = INDIRECT_CLMAP_SIZE(new_size); /* * Get a new indirect map and zero it. */ old_map_size = INDIRECT_CLMAP_SIZE(vs->vs_size); if (vs->vs_indirect && (new_map_size == old_map_size)) { bs_commit(new_size - vs->vs_size); vs->vs_size = new_size; return 0; } new_imap = (struct vs_map **)kalloc(new_map_size); if (new_imap == NULL) { return -1; } memset(new_imap, 0, new_map_size); if (vs->vs_indirect) { /* Copy old entries into new map */ memcpy(new_imap, vs->vs_imap, old_map_size); /* Arrange to free the old map */ old_map = (void *) vs->vs_imap; newdsize = 0; } else { /* Old map was a direct map */ /* Allocate an indirect page */ if ((new_imap[0] = (struct vs_map *) kalloc(CLMAP_THRESHOLD)) == NULL) { kfree((vm_offset_t)new_imap, new_map_size); return -1; } new_dmap = new_imap[0]; newdsize = CLMAP_ENTRIES; } } else { new_imap = NULL; newdsize = new_size; /* * If the new map is a direct map, then the old map must * also have been a direct map. All we have to do is * to allocate a new direct map, copy the old entries * into it and free the old map. */ if ((new_dmap = (struct vs_map *) kalloc(CLMAP_SIZE(new_size))) == NULL) { return -1; } } if (newdsize) { /* Free the old map */ old_map = (void *) vs->vs_dmap; old_map_size = CLMAP_SIZE(vs->vs_size); /* Copy info from the old map into the new map */ memcpy(new_dmap, vs->vs_dmap, old_map_size); /* Initialize the rest of the new map */ for (i = vs->vs_size; i < newdsize; i++) VSM_CLR(new_dmap[i]); } if (new_imap) { vs->vs_imap = new_imap; vs->vs_indirect = TRUE; } else vs->vs_dmap = new_dmap; bs_commit(new_size - vs->vs_size); vs->vs_size = new_size; if (old_map) kfree((vm_offset_t)old_map, old_map_size); return 0; } vm_offset_t ps_clmap( vstruct_t vs, vm_offset_t offset, struct clmap *clmap, int flag, vm_size_t size, int error) { vm_offset_t cluster; /* The cluster of offset. */ vm_offset_t newcl; /* The new cluster allocated. */ vm_offset_t newoff; int i; struct vs_map *vsmap; VS_MAP_LOCK(vs); ASSERT(vs->vs_dmap); cluster = atop(offset) >> vs->vs_clshift; /* * Initialize cluster error value */ clmap->cl_error = 0; /* * If the object has grown, extend the page map. */ if (cluster >= vs->vs_size) { if (flag == CL_FIND) { /* Do not allocate if just doing a lookup */ VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } if (ps_map_extend(vs, cluster + 1)) { VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } } /* * Look for the desired cluster. If the map is indirect, then we * have a two level lookup. First find the indirect block, then * find the actual cluster. If the indirect block has not yet * been allocated, then do so. If the cluster has not yet been * allocated, then do so. * * If any of the allocations fail, then return an error. * Don't allocate if just doing a lookup. */ if (vs->vs_indirect) { long ind_block = cluster/CLMAP_ENTRIES; /* Is the indirect block allocated? */ vsmap = vs->vs_imap[ind_block]; if (vsmap == NULL) { if (flag == CL_FIND) { VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } /* Allocate the indirect block */ vsmap = (struct vs_map *) kalloc(CLMAP_THRESHOLD); if (vsmap == NULL) { VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } /* Initialize the cluster offsets */ for (i = 0; i < CLMAP_ENTRIES; i++) VSM_CLR(vsmap[i]); vs->vs_imap[ind_block] = vsmap; } } else vsmap = vs->vs_dmap; ASSERT(vsmap); vsmap += cluster%CLMAP_ENTRIES; /* * At this point, vsmap points to the struct vs_map desired. * * Look in the map for the cluster, if there was an error on a * previous write, flag it and return. If it is not yet * allocated, then allocate it, if we're writing; if we're * doing a lookup and the cluster's not allocated, return error. */ if (VSM_ISERR(*vsmap)) { clmap->cl_error = VSM_GETERR(*vsmap); VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } else if (VSM_ISCLR(*vsmap)) { int psindex; if (flag == CL_FIND) { /* * If there's an error and the entry is clear, then * we've run out of swap space. Record the error * here and return. */ if (error) { VSM_SETERR(*vsmap, error); } VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } else { /* * Attempt to allocate a cluster from the paging segment */ newcl = ps_allocate_cluster(vs, &psindex, PAGING_SEGMENT_NULL); if (newcl == -1) { VS_MAP_UNLOCK(vs); return (vm_offset_t) -1; } VSM_CLR(*vsmap); VSM_SETCLOFF(*vsmap, newcl); VSM_SETPS(*vsmap, psindex); } } else newcl = VSM_CLOFF(*vsmap); /* * Fill in pertinent fields of the clmap */ clmap->cl_ps = VSM_PS(*vsmap); clmap->cl_numpages = VSCLSIZE(vs); clmap->cl_bmap.clb_map = (unsigned int) VSM_BMAP(*vsmap); /* * Byte offset in paging segment is byte offset to cluster plus * byte offset within cluster. It looks ugly, but should be * relatively quick. */ ASSERT(trunc_page(offset) == offset); newcl = ptoa(newcl) << vs->vs_clshift; newoff = offset & ((1<<(vm_page_shift + vs->vs_clshift)) - 1); if (flag == CL_ALLOC) { /* * set bits in the allocation bitmap according to which * pages were requested. size is in bytes. */ i = atop(newoff); while ((size > 0) && (i < VSCLSIZE(vs))) { VSM_SETALLOC(*vsmap, i); i++; size -= vm_page_size; } } clmap->cl_alloc.clb_map = (unsigned int) VSM_ALLOC(*vsmap); if (newoff) { /* * Offset is not cluster aligned, so number of pages * and bitmaps must be adjusted */ clmap->cl_numpages -= atop(newoff); CLMAP_SHIFT(clmap, vs); CLMAP_SHIFTALLOC(clmap, vs); } /* * * The setting of valid bits and handling of write errors * must be done here, while we hold the lock on the map. * It logically should be done in ps_vs_write_complete(). * The size and error information has been passed from * ps_vs_write_complete(). If the size parameter is non-zero, * then there is work to be done. If error is also non-zero, * then the error number is recorded in the cluster and the * entire cluster is in error. */ if (size && flag == CL_FIND) { vm_offset_t off = (vm_offset_t) 0; if (!error) { for (i = VSCLSIZE(vs) - clmap->cl_numpages; size > 0; i++) { VSM_SETPG(*vsmap, i); size -= vm_page_size; } ASSERT(i <= VSCLSIZE(vs)); } else { BS_STAT(clmap->cl_ps->ps_bs, clmap->cl_ps->ps_bs->bs_pages_out_fail += atop(size)); off = VSM_CLOFF(*vsmap); VSM_SETERR(*vsmap, error); } /* * Deallocate cluster if error, and no valid pages * already present. */ if (off != (vm_offset_t) 0) ps_deallocate_cluster(clmap->cl_ps, off); VS_MAP_UNLOCK(vs); return (vm_offset_t) 0; } else VS_MAP_UNLOCK(vs); DEBUG(DEBUG_VS_INTERNAL, ("returning 0x%X,vs=0x%X,vsmap=0x%X,flag=%d\n", newcl+newoff, (int) vs, (int) vsmap, flag)); DEBUG(DEBUG_VS_INTERNAL, (" clmap->cl_ps=0x%X,cl_numpages=%d,clbmap=0x%x,cl_alloc=%x\n", (int) clmap->cl_ps, clmap->cl_numpages, (int) clmap->cl_bmap.clb_map, (int) clmap->cl_alloc.clb_map)); return (newcl + newoff); } void ps_clunmap(vstruct_t, vm_offset_t, vm_size_t); /* forward */ void ps_clunmap( vstruct_t vs, vm_offset_t offset, vm_size_t length) { vm_offset_t cluster; /* The cluster number of offset */ struct vs_map *vsmap; VS_MAP_LOCK(vs); /* * Loop through all clusters in this range, freeing paging segment * clusters and map entries as encountered. */ while (length > 0) { vm_offset_t newoff; int i; cluster = atop(offset) >> vs->vs_clshift; if (vs->vs_indirect) /* indirect map */ vsmap = vs->vs_imap[cluster/CLMAP_ENTRIES]; else vsmap = vs->vs_dmap; if (vsmap == NULL) { VS_MAP_UNLOCK(vs); return; } vsmap += cluster%CLMAP_ENTRIES; if (VSM_ISCLR(*vsmap)) { length -= vm_page_size; offset += vm_page_size; continue; } /* * We've got a valid mapping. Clear it and deallocate * paging segment cluster pages. * Optimize for entire cluster cleraing. */ if (newoff = (offset&((1<<(vm_page_shift+vs->vs_clshift))-1))) { /* * Not cluster aligned. */ ASSERT(trunc_page(newoff) == newoff); i = atop(newoff); } else i = 0; while ((i < VSCLSIZE(vs)) && (length > 0)) { VSM_CLRPG(*vsmap, i); VSM_CLRALLOC(*vsmap, i); length -= vm_page_size; offset += vm_page_size; i++; } /* * If map entry is empty, clear and deallocate cluster. */ if (!VSM_ALLOC(*vsmap)) { ps_deallocate_cluster(VSM_PS(*vsmap), VSM_CLOFF(*vsmap)); VSM_CLR(*vsmap); } } VS_MAP_UNLOCK(vs); } void ps_vs_write_complete(vstruct_t, vm_offset_t, vm_size_t, int); /* forward */ void ps_vs_write_complete( vstruct_t vs, vm_offset_t offset, vm_size_t size, int error) { struct clmap clmap; /* * Get the struct vsmap for this cluster. * Use READ, even though it was written, because the * cluster MUST be present, unless there was an error * in the original ps_clmap (e.g. no space), in which * case, nothing happens. * * Must pass enough information to ps_clmap to allow it * to set the vs_map structure bitmap under lock. */ (void) ps_clmap(vs, offset, &clmap, CL_FIND, size, error); } void vs_cl_write_complete(vstruct_t, paging_segment_t, vm_offset_t, vm_offset_t, vm_size_t, boolean_t, int); /* forward */ void vs_cl_write_complete( vstruct_t vs, paging_segment_t ps, vm_offset_t offset, vm_offset_t addr, vm_size_t size, boolean_t async, int error) { kern_return_t kr; if (error) { /* * For internal objects, the error is recorded on a * per-cluster basis by ps_clmap() which is called * by ps_vs_write_complete() below. */ dprintf(("write failed error = 0x%x\n", error)); /* add upl_abort code here */ } else GSTAT(global_stats.gs_pages_out += atop(size)); /* * Notify the vstruct mapping code, so it can do its accounting. */ ps_vs_write_complete(vs, offset, size, error); if (async) { VS_LOCK(vs); ASSERT(vs->vs_async_pending > 0); vs->vs_async_pending -= size; if (vs->vs_async_pending == 0 && vs->vs_waiting_async) { vs->vs_waiting_async = FALSE; VS_UNLOCK(vs); /* mutex_unlock(&vs->vs_waiting_async); */ thread_wakeup(&vs->vs_async_pending); } else { VS_UNLOCK(vs); } } } #ifdef DEVICE_PAGING kern_return_t device_write_reply(MACH_PORT_FACE, kern_return_t, io_buf_len_t); kern_return_t device_write_reply( MACH_PORT_FACE reply_port, kern_return_t device_code, io_buf_len_t bytes_written) { struct vs_async *vsa; vsa = (struct vs_async *) ((struct vstruct_alias *)(reply_port->alias))->vs; if (device_code == KERN_SUCCESS && bytes_written != vsa->vsa_size) { device_code = KERN_FAILURE; } vsa->vsa_error = device_code; ASSERT(vsa->vsa_vs != VSTRUCT_NULL); if(vsa->vsa_flags & VSA_TRANSFER) { /* revisit when async disk segments redone */ if(vsa->vsa_error) { /* need to consider error condition. re-write data or */ /* throw it away here. */ vm_offset_t ioaddr; if(vm_map_copyout(kernel_map, &ioaddr, (vm_map_copy_t)vsa->vsa_addr) != KERN_SUCCESS) panic("vs_cluster_write: unable to copy source list\n"); vm_deallocate(kernel_map, ioaddr, vsa->vsa_size); } ps_vs_write_complete(vsa->vsa_vs, vsa->vsa_offset, vsa->vsa_size, vsa->vsa_error); } else { vs_cl_write_complete(vsa->vsa_vs, vsa->vsa_ps, vsa->vsa_offset, vsa->vsa_addr, vsa->vsa_size, TRUE, vsa->vsa_error); } VS_FREE_ASYNC(vsa); return KERN_SUCCESS; } kern_return_t device_write_reply_inband(MACH_PORT_FACE, kern_return_t, io_buf_len_t); kern_return_t device_write_reply_inband( MACH_PORT_FACE reply_port, kern_return_t return_code, io_buf_len_t bytes_written) { panic("device_write_reply_inband: illegal"); return KERN_SUCCESS; } kern_return_t device_read_reply(MACH_PORT_FACE, kern_return_t, io_buf_ptr_t, mach_msg_type_number_t); kern_return_t device_read_reply( MACH_PORT_FACE reply_port, kern_return_t return_code, io_buf_ptr_t data, mach_msg_type_number_t dataCnt) { struct vs_async *vsa; vsa = (struct vs_async *) ((struct vstruct_alias *)(reply_port->alias))->vs; vsa->vsa_addr = (vm_offset_t)data; vsa->vsa_size = (vm_size_t)dataCnt; vsa->vsa_error = return_code; thread_wakeup(&vsa->vsa_lock); return KERN_SUCCESS; } kern_return_t device_read_reply_inband(MACH_PORT_FACE, kern_return_t, io_buf_ptr_inband_t, mach_msg_type_number_t); kern_return_t device_read_reply_inband( MACH_PORT_FACE reply_port, kern_return_t return_code, io_buf_ptr_inband_t data, mach_msg_type_number_t dataCnt) { panic("device_read_reply_inband: illegal"); return KERN_SUCCESS; } kern_return_t device_read_reply_overwrite(MACH_PORT_FACE, kern_return_t, io_buf_len_t); kern_return_t device_read_reply_overwrite( MACH_PORT_FACE reply_port, kern_return_t return_code, io_buf_len_t bytes_read) { panic("device_read_reply_overwrite: illegal\n"); return KERN_SUCCESS; } kern_return_t device_open_reply(MACH_PORT_FACE, kern_return_t, MACH_PORT_FACE); kern_return_t device_open_reply( MACH_PORT_FACE reply_port, kern_return_t return_code, MACH_PORT_FACE device_port) { panic("device_open_reply: illegal\n"); return KERN_SUCCESS; } kern_return_t ps_read_device(paging_segment_t, vm_offset_t, vm_offset_t *, unsigned int, unsigned int *, int); /* forward */ kern_return_t ps_read_device( paging_segment_t ps, vm_offset_t offset, vm_offset_t *bufferp, unsigned int size, unsigned int *residualp, int flags) { kern_return_t kr; recnum_t dev_offset; unsigned int bytes_wanted; unsigned int bytes_read; unsigned int total_read; vm_offset_t dev_buffer; vm_offset_t buf_ptr; unsigned int records_read; struct vs_async *vsa; mutex_t vs_waiting_read_reply; device_t device; vm_map_copy_t device_data = NULL; default_pager_thread_t *dpt = NULL; device = dev_port_lookup(ps->ps_device); clustered_reads[atop(size)]++; dev_offset = (ps->ps_offset + (offset >> (vm_page_shift - ps->ps_record_shift))); bytes_wanted = size; total_read = 0; *bufferp = (vm_offset_t)NULL; do { vsa = VS_ALLOC_ASYNC(); if (vsa) { vsa->vsa_vs = NULL; vsa->vsa_addr = 0; vsa->vsa_offset = 0; vsa->vsa_size = 0; vsa->vsa_ps = NULL; } mutex_init(&vsa->vsa_lock, ETAP_DPAGE_VSSEQNO); ip_lock(vsa->reply_port); vsa->reply_port->ip_sorights++; ip_reference(vsa->reply_port); ip_unlock(vsa->reply_port); kr = ds_device_read_common(device, vsa->reply_port, (mach_msg_type_name_t) MACH_MSG_TYPE_MOVE_SEND_ONCE, (dev_mode_t) 0, dev_offset, bytes_wanted, (IO_READ | IO_CALL), (io_buf_ptr_t *) &dev_buffer, (mach_msg_type_number_t *) &bytes_read); if(kr == MIG_NO_REPLY) { assert_wait(&vsa->vsa_lock, THREAD_UNINT); thread_block(THREAD_CONTINUE_NULL); dev_buffer = vsa->vsa_addr; bytes_read = (unsigned int)vsa->vsa_size; kr = vsa->vsa_error; } VS_FREE_ASYNC(vsa); if (kr != KERN_SUCCESS || bytes_read == 0) { break; } total_read += bytes_read; /* * If we got the entire range, use the returned dev_buffer. */ if (bytes_read == size) { *bufferp = (vm_offset_t)dev_buffer; break; } #if 1 dprintf(("read only %d bytes out of %d\n", bytes_read, bytes_wanted)); #endif if(dpt == NULL) { dpt = get_read_buffer(); buf_ptr = dpt->dpt_buffer; *bufferp = (vm_offset_t)buf_ptr; } /* * Otherwise, copy the data into the provided buffer (*bufferp) * and append the rest of the range as it comes in. */ memcpy((void *) buf_ptr, (void *) dev_buffer, bytes_read); buf_ptr += bytes_read; bytes_wanted -= bytes_read; records_read = (bytes_read >> (vm_page_shift - ps->ps_record_shift)); dev_offset += records_read; DEBUG(DEBUG_VS_INTERNAL, ("calling vm_deallocate(addr=0x%X,size=0x%X)\n", dev_buffer, bytes_read)); if (vm_deallocate(kernel_map, dev_buffer, bytes_read) != KERN_SUCCESS) Panic("dealloc buf"); } while (bytes_wanted); *residualp = size - total_read; if((dev_buffer != *bufferp) && (total_read != 0)) { vm_offset_t temp_buffer; vm_allocate(kernel_map, &temp_buffer, total_read, TRUE); memcpy((void *) temp_buffer, (void *) *bufferp, total_read); if(vm_map_copyin_page_list(kernel_map, temp_buffer, total_read, VM_MAP_COPYIN_OPT_SRC_DESTROY | VM_MAP_COPYIN_OPT_STEAL_PAGES | VM_MAP_COPYIN_OPT_PMAP_ENTER, (vm_map_copy_t *)&device_data, FALSE)) panic("ps_read_device: cannot copyin locally provided buffer\n"); } else if((kr == KERN_SUCCESS) && (total_read != 0) && (dev_buffer != 0)){ if(vm_map_copyin_page_list(kernel_map, dev_buffer, bytes_read, VM_MAP_COPYIN_OPT_SRC_DESTROY | VM_MAP_COPYIN_OPT_STEAL_PAGES | VM_MAP_COPYIN_OPT_PMAP_ENTER, (vm_map_copy_t *)&device_data, FALSE)) panic("ps_read_device: cannot copyin backing store provided buffer\n"); } else { device_data = NULL; } *bufferp = (vm_offset_t)device_data; if(dpt != NULL) { /* Free the receive buffer */ dpt->checked_out = 0; thread_wakeup(&dpt_array); } return KERN_SUCCESS; } kern_return_t ps_write_device(paging_segment_t, vm_offset_t, vm_offset_t, unsigned int, struct vs_async *); /* forward */ kern_return_t ps_write_device( paging_segment_t ps, vm_offset_t offset, vm_offset_t addr, unsigned int size, struct vs_async *vsa) { recnum_t dev_offset; io_buf_len_t bytes_to_write, bytes_written; recnum_t records_written; kern_return_t kr; MACH_PORT_FACE reply_port; clustered_writes[atop(size)]++; dev_offset = (ps->ps_offset + (offset >> (vm_page_shift - ps->ps_record_shift))); bytes_to_write = size; if (vsa) { /* * Asynchronous write. */ reply_port = vsa->reply_port; ip_lock(reply_port); reply_port->ip_sorights++; ip_reference(reply_port); ip_unlock(reply_port); { device_t device; device = dev_port_lookup(ps->ps_device); vsa->vsa_addr = addr; kr=ds_device_write_common(device, reply_port, (mach_msg_type_name_t) MACH_MSG_TYPE_MOVE_SEND_ONCE, (dev_mode_t) 0, dev_offset, (io_buf_ptr_t) addr, size, (IO_WRITE | IO_CALL), &bytes_written); } if ((kr != KERN_SUCCESS) && (kr != MIG_NO_REPLY)) { if (verbose) dprintf(("%s0x%x, addr=0x%x," "size=0x%x,offset=0x%x\n", "device_write_request returned ", kr, addr, size, offset)); BS_STAT(ps->ps_bs, ps->ps_bs->bs_pages_out_fail += atop(size)); /* do the completion notification to free resources */ device_write_reply(reply_port, kr, 0); return PAGER_ERROR; } } else do { /* * Synchronous write. */ { device_t device; device = dev_port_lookup(ps->ps_device); kr=ds_device_write_common(device, IP_NULL, 0, (dev_mode_t) 0, dev_offset, (io_buf_ptr_t) addr, size, (IO_WRITE | IO_SYNC | IO_KERNEL_BUF), &bytes_written); } if (kr != KERN_SUCCESS) { dprintf(("%s0x%x, addr=0x%x,size=0x%x,offset=0x%x\n", "device_write returned ", kr, addr, size, offset)); BS_STAT(ps->ps_bs, ps->ps_bs->bs_pages_out_fail += atop(size)); return PAGER_ERROR; } if (bytes_written & ((vm_page_size >> ps->ps_record_shift) - 1)) Panic("fragmented write"); records_written = (bytes_written >> (vm_page_shift - ps->ps_record_shift)); dev_offset += records_written; #if 1 if (bytes_written != bytes_to_write) { dprintf(("wrote only %d bytes out of %d\n", bytes_written, bytes_to_write)); } #endif bytes_to_write -= bytes_written; addr += bytes_written; } while (bytes_to_write > 0); return PAGER_SUCCESS; } #else /* !DEVICE_PAGING */ kern_return_t ps_read_device( paging_segment_t ps, vm_offset_t offset, vm_offset_t *bufferp, unsigned int size, unsigned int *residualp, int flags) { panic("ps_read_device not supported"); } ps_write_device( paging_segment_t ps, vm_offset_t offset, vm_offset_t addr, unsigned int size, struct vs_async *vsa) { panic("ps_write_device not supported"); } #endif /* DEVICE_PAGING */ void pvs_object_data_provided(vstruct_t, upl_t, vm_offset_t, vm_size_t); /* forward */ void pvs_object_data_provided( vstruct_t vs, upl_t upl, vm_offset_t offset, vm_size_t size) { DEBUG(DEBUG_VS_INTERNAL, ("buffer=0x%x,offset=0x%x,size=0x%x\n", upl, offset, size)); ASSERT(size > 0); GSTAT(global_stats.gs_pages_in += atop(size)); #if USE_PRECIOUS ps_clunmap(vs, offset, size); #endif /* USE_PRECIOUS */ } kern_return_t pvs_cluster_read( vstruct_t vs, vm_offset_t vs_offset, vm_size_t cnt) { upl_t upl; kern_return_t error = KERN_SUCCESS; int size; unsigned int residual; unsigned int request_flags; int seg_index; int pages_in_cl; int cl_size; int cl_mask; int cl_index; int xfer_size; vm_offset_t ps_offset[(VM_SUPER_CLUSTER / PAGE_SIZE) >> VSTRUCT_DEF_CLSHIFT]; paging_segment_t psp[(VM_SUPER_CLUSTER / PAGE_SIZE) >> VSTRUCT_DEF_CLSHIFT]; struct clmap clmap; pages_in_cl = 1 << vs->vs_clshift; cl_size = pages_in_cl * vm_page_size; cl_mask = cl_size - 1; /* * This loop will be executed multiple times until the entire * request has been satisfied... if the request spans cluster * boundaries, the clusters will be checked for logical continunity, * if contiguous the I/O request will span multiple clusters, otherwise * it will be broken up into the minimal set of I/O's * * If there are holes in a request (either unallocated pages in a paging * segment or an unallocated paging segment), we stop * reading at the hole, inform the VM of any data read, inform * the VM of an unavailable range, then loop again, hoping to * find valid pages later in the requested range. This continues until * the entire range has been examined, and read, if present. */ #if USE_PRECIOUS request_flags = UPL_NO_SYNC | UPL_CLEAN_IN_PLACE | UPL_PRECIOUS | UPL_RET_ONLY_ABSENT; #else request_flags = UPL_NO_SYNC | UPL_CLEAN_IN_PLACE | UPL_RET_ONLY_ABSENT; #endif while (cnt && (error == KERN_SUCCESS)) { int ps_info_valid; int page_list_count; if (cnt > VM_SUPER_CLUSTER) size = VM_SUPER_CLUSTER; else size = cnt; cnt -= size; ps_info_valid = 0; seg_index = 0; while (size > 0 && error == KERN_SUCCESS) { int abort_size; int failed_size; int beg_pseg; int beg_indx; vm_offset_t cur_offset; if ( !ps_info_valid) { ps_offset[seg_index] = ps_clmap(vs, vs_offset & ~cl_mask, &clmap, CL_FIND, 0, 0); psp[seg_index] = CLMAP_PS(clmap); ps_info_valid = 1; } /* * skip over unallocated physical segments */ if (ps_offset[seg_index] == (vm_offset_t) -1) { abort_size = cl_size - (vs_offset & cl_mask); abort_size = MIN(abort_size, size); page_list_count = 0; memory_object_super_upl_request( vs->vs_control, (memory_object_offset_t)vs_offset, abort_size, abort_size, &upl, NULL, &page_list_count, request_flags); if (clmap.cl_error) { upl_abort(upl, UPL_ABORT_ERROR); } else { upl_abort(upl, UPL_ABORT_UNAVAILABLE); } upl_deallocate(upl); size -= abort_size; vs_offset += abort_size; seg_index++; ps_info_valid = 0; continue; } cl_index = (vs_offset & cl_mask) / vm_page_size; for (abort_size = 0; cl_index < pages_in_cl && abort_size < size; cl_index++) { /* * skip over unallocated pages */ if (CLMAP_ISSET(clmap, cl_index)) break; abort_size += vm_page_size; } if (abort_size) { /* * Let VM system know about holes in clusters. */ GSTAT(global_stats.gs_pages_unavail += atop(abort_size)); page_list_count = 0; memory_object_super_upl_request( vs->vs_control, (memory_object_offset_t)vs_offset, abort_size, abort_size, &upl, NULL, &page_list_count, request_flags); upl_abort(upl, UPL_ABORT_UNAVAILABLE); upl_deallocate(upl); size -= abort_size; vs_offset += abort_size; if (cl_index == pages_in_cl) { /* * if we're at the end of this physical cluster * then bump to the next one and continue looking */ seg_index++; ps_info_valid = 0; continue; } if (size == 0) break; } /* * remember the starting point of the first allocated page * for the I/O we're about to issue */ beg_pseg = seg_index; beg_indx = cl_index; cur_offset = vs_offset; /* * calculate the size of the I/O that we can do... * this may span multiple physical segments if * they are contiguous */ for (xfer_size = 0; xfer_size < size; ) { while (cl_index < pages_in_cl && xfer_size < size) { /* * accumulate allocated pages within a physical segment */ if (CLMAP_ISSET(clmap, cl_index)) { xfer_size += vm_page_size; cur_offset += vm_page_size; cl_index++; BS_STAT(psp[seg_index]->ps_bs, psp[seg_index]->ps_bs->bs_pages_in++); } else break; } if (cl_index < pages_in_cl || xfer_size >= size) { /* * we've hit an unallocated page or the * end of this request... go fire the I/O */ break; } /* * we've hit the end of the current physical segment * and there's more to do, so try moving to the next one */ seg_index++; ps_offset[seg_index] = ps_clmap(vs, cur_offset & ~cl_mask, &clmap, CL_FIND, 0, 0); psp[seg_index] = CLMAP_PS(clmap); ps_info_valid = 1; if ((ps_offset[seg_index - 1] != (ps_offset[seg_index] - cl_size)) || (psp[seg_index - 1] != psp[seg_index])) { /* * if the physical segment we're about to step into * is not contiguous to the one we're currently * in, or it's in a different paging file, or * it hasn't been allocated.... * we stop here and generate the I/O */ break; } /* * start with first page of the next physical segment */ cl_index = 0; } if (xfer_size) { /* * we have a contiguous range of allocated pages * to read from */ page_list_count = 0; memory_object_super_upl_request(vs->vs_control, (memory_object_offset_t)vs_offset, xfer_size, xfer_size, &upl, NULL, &page_list_count, request_flags | UPL_SET_INTERNAL); error = ps_read_file(psp[beg_pseg], upl, (vm_offset_t) 0, ps_offset[beg_pseg] + (beg_indx * vm_page_size), xfer_size, &residual, 0); } else continue; failed_size = 0; /* * Adjust counts and send response to VM. Optimize for the * common case, i.e. no error and/or partial data. * If there was an error, then we need to error the entire * range, even if some data was successfully read. * If there was a partial read we may supply some * data and may error some as well. In all cases the * VM must receive some notification for every page in the * range. */ if ((error == KERN_SUCCESS) && (residual == 0)) { /* * Got everything we asked for, supply the data to * the VM. Note that as a side effect of supplying * the data, the buffer holding the supplied data is * deallocated from the pager's address space. */ pvs_object_data_provided(vs, upl, vs_offset, xfer_size); } else { failed_size = xfer_size; if (error == KERN_SUCCESS) { if (residual == xfer_size) { /* * If a read operation returns no error * and no data moved, we turn it into * an error, assuming we're reading at * or beyong EOF. * Fall through and error the entire * range. */ error = KERN_FAILURE; } else { /* * Otherwise, we have partial read. If * the part read is a integral number * of pages supply it. Otherwise round * it up to a page boundary, zero fill * the unread part, and supply it. * Fall through and error the remainder * of the range, if any. */ int fill, lsize; fill = residual & ~vm_page_size; lsize = (xfer_size - residual) + fill; pvs_object_data_provided(vs, upl, vs_offset, lsize); if (lsize < xfer_size) { failed_size = xfer_size - lsize; error = KERN_FAILURE; } } } } /* * If there was an error in any part of the range, tell * the VM. Note that error is explicitly checked again since * it can be modified above. */ if (error != KERN_SUCCESS) { BS_STAT(psp[beg_pseg]->ps_bs, psp[beg_pseg]->ps_bs->bs_pages_in_fail += atop(failed_size)); } size -= xfer_size; vs_offset += xfer_size; } } /* END while (cnt && (error == 0)) */ return error; } int vs_do_async_write = 1; kern_return_t vs_cluster_write( vstruct_t vs, upl_t internal_upl, vm_offset_t offset, vm_size_t cnt, boolean_t dp_internal, int flags) { vm_offset_t size; vm_offset_t transfer_size; int error = 0; struct clmap clmap; vm_offset_t actual_offset; /* Offset within paging segment */ paging_segment_t ps; vm_offset_t subx_size; vm_offset_t mobj_base_addr; vm_offset_t mobj_target_addr; int mobj_size; struct vs_async *vsa; vm_map_copy_t copy; upl_t upl; upl_page_info_t *pl; int page_index; int list_size; int cl_size; if (!dp_internal) { int page_list_count; int request_flags; int super_size; int first_dirty; int num_dirty; int num_of_pages; int seg_index; int pages_in_cl; int must_abort; vm_offset_t upl_offset; vm_offset_t seg_offset; vm_offset_t ps_offset[(VM_SUPER_CLUSTER / PAGE_SIZE) >> VSTRUCT_DEF_CLSHIFT]; paging_segment_t psp[(VM_SUPER_CLUSTER / PAGE_SIZE) >> VSTRUCT_DEF_CLSHIFT]; pages_in_cl = 1 << vs->vs_clshift; cl_size = pages_in_cl * vm_page_size; if (bs_low) { super_size = cl_size; request_flags = UPL_NOBLOCK | UPL_RET_ONLY_DIRTY | UPL_COPYOUT_FROM | UPL_NO_SYNC | UPL_SET_INTERNAL; } else { super_size = VM_SUPER_CLUSTER; request_flags = UPL_NOBLOCK | UPL_CLEAN_IN_PLACE | UPL_RET_ONLY_DIRTY | UPL_COPYOUT_FROM | UPL_NO_SYNC | UPL_SET_INTERNAL; } page_list_count = 0; memory_object_super_upl_request(vs->vs_control, (memory_object_offset_t)offset, cnt, super_size, &upl, NULL, &page_list_count, request_flags | UPL_PAGEOUT); pl = UPL_GET_INTERNAL_PAGE_LIST(upl); for (seg_index = 0, transfer_size = upl->size; transfer_size > 0; ) { ps_offset[seg_index] = ps_clmap(vs, upl->offset + (seg_index * cl_size), &clmap, CL_ALLOC, transfer_size < cl_size ? transfer_size : cl_size, 0); if (ps_offset[seg_index] == (vm_offset_t) -1) { upl_abort(upl, 0); upl_deallocate(upl); return KERN_FAILURE; } psp[seg_index] = CLMAP_PS(clmap); if (transfer_size > cl_size) { transfer_size -= cl_size; seg_index++; } else transfer_size = 0; } for (page_index = 0, num_of_pages = upl->size / vm_page_size; page_index < num_of_pages; ) { /* * skip over non-dirty pages */ for ( ; page_index < num_of_pages; page_index++) { if (UPL_DIRTY_PAGE(pl, page_index) || UPL_PRECIOUS_PAGE(pl, page_index)) /* * this is a page we need to write * go see if we can buddy it up with others * that are contiguous to it */ break; /* * if the page is not-dirty, but present we need to commit it... * this is an unusual case since we only asked for dirty pages */ if (UPL_PAGE_PRESENT(pl, page_index)) { boolean_t empty = FALSE; upl_commit_range(upl, page_index * vm_page_size, vm_page_size, UPL_COMMIT_NOTIFY_EMPTY, pl, page_list_count, &empty); if (empty) upl_deallocate(upl); } } if (page_index == num_of_pages) /* * no more pages to look at, we're out of here */ break; /* * gather up contiguous dirty pages... we have at least 1 * otherwise we would have bailed above * make sure that each physical segment that we step * into is contiguous to the one we're currently in * if it's not, we have to stop and write what we have */ for (first_dirty = page_index; page_index < num_of_pages; ) { if ( !UPL_DIRTY_PAGE(pl, page_index) && !UPL_PRECIOUS_PAGE(pl, page_index)) break; page_index++; /* * if we just looked at the last page in the UPL * we don't need to check for physical segment * continuity */ if (page_index < num_of_pages) { int cur_seg; int nxt_seg; cur_seg = (page_index - 1) / pages_in_cl; nxt_seg = page_index / pages_in_cl; if (cur_seg != nxt_seg) { if ((ps_offset[cur_seg] != (ps_offset[nxt_seg] - cl_size)) || (psp[cur_seg] != psp[nxt_seg])) /* * if the segment we're about to step into * is not contiguous to the one we're currently * in, or it's in a different paging file.... * we stop here and generate the I/O */ break; } } } num_dirty = page_index - first_dirty; must_abort = 1; if (num_dirty) { upl_offset = first_dirty * vm_page_size; seg_index = first_dirty / pages_in_cl; seg_offset = upl_offset - (seg_index * cl_size); transfer_size = num_dirty * vm_page_size; error = ps_write_file(psp[seg_index], upl, upl_offset, ps_offset[seg_index] + seg_offset, transfer_size, flags); if (error == 0) { while (transfer_size) { int seg_size; if ((seg_size = cl_size - (upl_offset % cl_size)) > transfer_size) seg_size = transfer_size; ps_vs_write_complete(vs, upl->offset + upl_offset, seg_size, error); transfer_size -= seg_size; upl_offset += seg_size; } } must_abort = 0; } if (must_abort) { boolean_t empty = FALSE; upl_abort_range(upl, first_dirty * vm_page_size, num_dirty * vm_page_size, UPL_ABORT_NOTIFY_EMPTY, &empty); if (empty) upl_deallocate(upl); } } } else { assert(cnt <= (vm_page_size << vs->vs_clshift)); list_size = cnt; page_index = 0; /* The caller provides a mapped_data which is derived */ /* from a temporary object. The targeted pages are */ /* guaranteed to be set at offset 0 in the mapped_data */ /* The actual offset however must still be derived */ /* from the offset in the vs in question */ mobj_base_addr = offset; mobj_target_addr = mobj_base_addr; for (transfer_size = list_size; transfer_size != 0;) { actual_offset = ps_clmap(vs, mobj_target_addr, &clmap, CL_ALLOC, transfer_size < cl_size ? transfer_size : cl_size, 0); if(actual_offset == (vm_offset_t) -1) { error = 1; break; } cnt = MIN(transfer_size, CLMAP_NPGS(clmap) * vm_page_size); ps = CLMAP_PS(clmap); /* Assume that the caller has given us contiguous */ /* pages */ if(cnt) { error = ps_write_file(ps, internal_upl, 0, actual_offset, cnt, flags); if (error) break; ps_vs_write_complete(vs, mobj_target_addr, cnt, error); } if (error) break; actual_offset += cnt; mobj_target_addr += cnt; transfer_size -= cnt; cnt = 0; if (error) break; } } if(error) return KERN_FAILURE; else return KERN_SUCCESS; } vm_size_t ps_vstruct_allocated_size( vstruct_t vs) { int num_pages; struct vs_map *vsmap; int i, j, k; num_pages = 0; if (vs->vs_indirect) { /* loop on indirect maps */ for (i = 0; i < INDIRECT_CLMAP_ENTRIES(vs->vs_size); i++) { vsmap = vs->vs_imap[i]; if (vsmap == NULL) continue; /* loop on clusters in this indirect map */ for (j = 0; j < CLMAP_ENTRIES; j++) { if (VSM_ISCLR(vsmap[j]) || VSM_ISERR(vsmap[j])) continue; /* loop on pages in this cluster */ for (k = 0; k < VSCLSIZE(vs); k++) { if ((VSM_BMAP(vsmap[j])) & (1 << k)) num_pages++; } } } } else { vsmap = vs->vs_dmap; if (vsmap == NULL) return 0; /* loop on clusters in the direct map */ for (j = 0; j < CLMAP_ENTRIES; j++) { if (VSM_ISCLR(vsmap[j]) || VSM_ISERR(vsmap[j])) continue; /* loop on pages in this cluster */ for (k = 0; k < VSCLSIZE(vs); k++) { if ((VSM_BMAP(vsmap[j])) & (1 << k)) num_pages++; } } } return ptoa(num_pages); } size_t ps_vstruct_allocated_pages( vstruct_t vs, default_pager_page_t *pages, size_t pages_size) { int num_pages; struct vs_map *vsmap; vm_offset_t offset; int i, j, k; num_pages = 0; offset = 0; if (vs->vs_indirect) { /* loop on indirect maps */ for (i = 0; i < INDIRECT_CLMAP_ENTRIES(vs->vs_size); i++) { vsmap = vs->vs_imap[i]; if (vsmap == NULL) { offset += (vm_page_size * CLMAP_ENTRIES * VSCLSIZE(vs)); continue; } /* loop on clusters in this indirect map */ for (j = 0; j < CLMAP_ENTRIES; j++) { if (VSM_ISCLR(vsmap[j]) || VSM_ISERR(vsmap[j])) { offset += vm_page_size * VSCLSIZE(vs); continue; } /* loop on pages in this cluster */ for (k = 0; k < VSCLSIZE(vs); k++) { if ((VSM_BMAP(vsmap[j])) & (1 << k)) { num_pages++; if (num_pages < pages_size) pages++->dpp_offset = offset; } offset += vm_page_size; } } } } else { vsmap = vs->vs_dmap; if (vsmap == NULL) return 0; /* loop on clusters in the direct map */ for (j = 0; j < CLMAP_ENTRIES; j++) { if (VSM_ISCLR(vsmap[j]) || VSM_ISERR(vsmap[j])) { offset += vm_page_size * VSCLSIZE(vs); continue; } /* loop on pages in this cluster */ for (k = 0; k < VSCLSIZE(vs); k++) { if ((VSM_BMAP(vsmap[j])) & (1 << k)) { num_pages++; if (num_pages < pages_size) pages++->dpp_offset = offset; } offset += vm_page_size; } } } return num_pages; } kern_return_t ps_vstruct_transfer_from_segment( vstruct_t vs, paging_segment_t segment, upl_t upl) { struct vs_map *vsmap; struct vs_map old_vsmap; struct vs_map new_vsmap; int i, j, k; VS_LOCK(vs); /* block all work on this vstruct */ /* can't allow the normal multiple write */ /* semantic because writes may conflict */ vs->vs_xfer_pending = TRUE; vs_wait_for_sync_writers(vs); vs_start_write(vs); vs_wait_for_readers(vs); /* we will unlock the vs to allow other writes while transferring */ /* and will be guaranteed of the persistance of the vs struct */ /* because the caller of ps_vstruct_transfer_from_segment bumped */ /* vs_async_pending */ /* OK we now have guaranteed no other parties are accessing this */ /* vs. Now that we are also supporting simple lock versions of */ /* vs_lock we cannot hold onto VS_LOCK as we may block below. */ /* our purpose in holding it before was the multiple write case */ /* we now use the boolean xfer_pending to do that. We can use */ /* a boolean instead of a count because we have guaranteed single */ /* file access to this code in its caller */ VS_UNLOCK(vs); vs_changed: if (vs->vs_indirect) { int vsmap_size; int clmap_off; /* loop on indirect maps */ for (i = 0; i < INDIRECT_CLMAP_ENTRIES(vs->vs_size); i++) { vsmap = vs->vs_imap[i]; if (vsmap == NULL) continue; /* loop on clusters in this indirect map */ clmap_off = (vm_page_size * CLMAP_ENTRIES * VSCLSIZE(vs) * i); if(i+1 == INDIRECT_CLMAP_ENTRIES(vs->vs_size)) vsmap_size = vs->vs_size - (CLMAP_ENTRIES * i); else vsmap_size = CLMAP_ENTRIES; for (j = 0; j < vsmap_size; j++) { if (VSM_ISCLR(vsmap[j]) || VSM_ISERR(vsmap[j]) || (VSM_PS(vsmap[j]) != segment)) continue; if(vs_cluster_transfer(vs, (vm_page_size * (j << vs->vs_clshift)) + clmap_off, vm_page_size << vs->vs_clshift, upl) != KERN_SUCCESS) { VS_LOCK(vs); vs->vs_xfer_pending = FALSE; VS_UNLOCK(vs); vs_finish_write(vs); return KERN_FAILURE; } /* allow other readers/writers during transfer*/ VS_LOCK(vs); vs->vs_xfer_pending = FALSE; VS_UNLOCK(vs); vs_finish_write(vs); VS_LOCK(vs); vs->vs_xfer_pending = TRUE; vs_wait_for_sync_writers(vs); vs_start_write(vs); vs_wait_for_readers(vs); VS_UNLOCK(vs); if (!(vs->vs_indirect)) { goto vs_changed; } } } } else { vsmap = vs->vs_dmap; if (vsmap == NULL) { VS_LOCK(vs); vs->vs_xfer_pending = FALSE; VS_UNLOCK(vs); vs_finish_write(vs); return KERN_SUCCESS; } /* loop on clusters in the direct map */ for (j = 0; j < vs->vs_size; j++) { if (VSM_ISCLR(vsmap[j]) || VSM_ISERR(vsmap[j]) || (VSM_PS(vsmap[j]) != segment)) continue; if(vs_cluster_transfer(vs, vm_page_size * (j << vs->vs_clshift), vm_page_size << vs->vs_clshift, upl) != KERN_SUCCESS) { VS_LOCK(vs); vs->vs_xfer_pending = FALSE; VS_UNLOCK(vs); vs_finish_write(vs); return KERN_FAILURE; } /* allow other readers/writers during transfer*/ VS_LOCK(vs); vs->vs_xfer_pending = FALSE; VS_UNLOCK(vs); vs_finish_write(vs); VS_LOCK(vs); vs->vs_xfer_pending = TRUE; VS_UNLOCK(vs); vs_wait_for_sync_writers(vs); vs_start_write(vs); vs_wait_for_readers(vs); if (vs->vs_indirect) { goto vs_changed; } } } VS_LOCK(vs); vs->vs_xfer_pending = FALSE; VS_UNLOCK(vs); vs_finish_write(vs); return KERN_SUCCESS; } vs_map_t vs_get_map_entry( vstruct_t vs, vm_offset_t offset) { struct vs_map *vsmap; vm_offset_t cluster; cluster = atop(offset) >> vs->vs_clshift; if (vs->vs_indirect) { long ind_block = cluster/CLMAP_ENTRIES; /* Is the indirect block allocated? */ vsmap = vs->vs_imap[ind_block]; if(vsmap == (vs_map_t) NULL) return vsmap; } else vsmap = vs->vs_dmap; vsmap += cluster%CLMAP_ENTRIES; return vsmap; } kern_return_t vs_cluster_transfer( vstruct_t vs, vm_offset_t offset, vm_size_t cnt, upl_t upl) { vm_offset_t actual_offset; paging_segment_t ps; struct clmap clmap; kern_return_t error = KERN_SUCCESS; int size, size_wanted, i; unsigned int residual; int unavail_size; default_pager_thread_t *dpt; boolean_t dealloc; struct vs_map *vsmap_ptr; struct vs_map read_vsmap; struct vs_map original_read_vsmap; struct vs_map write_vsmap; upl_t sync_upl; vm_offset_t ioaddr; /* vs_cluster_transfer reads in the pages of a cluster and * then writes these pages back to new backing store. The * segment the pages are being read from is assumed to have * been taken off-line and is no longer considered for new * space requests. */ /* * This loop will be executed once per cluster referenced. * Typically this means once, since it's unlikely that the * VM system will ask for anything spanning cluster boundaries. * * If there are holes in a cluster (in a paging segment), we stop * reading at the hole, then loop again, hoping to * find valid pages later in the cluster. This continues until * the entire range has been examined, and read, if present. The * pages are written as they are read. If a failure occurs after * some pages are written the unmap call at the bottom of the loop * recovers the backing store and the old backing store remains * in effect. */ VSM_CLR(write_vsmap); VSM_CLR(original_read_vsmap); /* grab the actual object's pages to sync with I/O */ while (cnt && (error == KERN_SUCCESS)) { vsmap_ptr = vs_get_map_entry(vs, offset); actual_offset = ps_clmap(vs, offset, &clmap, CL_FIND, 0, 0); if (actual_offset == (vm_offset_t) -1) { /* * Nothing left to write in this cluster at least * set write cluster information for any previous * write, clear for next cluster, if there is one */ unsigned int local_size, clmask, clsize; clsize = vm_page_size << vs->vs_clshift; clmask = clsize - 1; local_size = clsize - (offset & clmask); ASSERT(local_size); local_size = MIN(local_size, cnt); /* This cluster has no data in it beyond what may */ /* have been found on a previous iteration through */ /* the loop "write_vsmap" */ *vsmap_ptr = write_vsmap; VSM_CLR(write_vsmap); VSM_CLR(original_read_vsmap); cnt -= local_size; offset += local_size; continue; } /* * Count up contiguous available or unavailable * pages. */ ps = CLMAP_PS(clmap); ASSERT(ps); size = 0; unavail_size = 0; for (i = 0; (size < cnt) && (unavail_size < cnt) && (i < CLMAP_NPGS(clmap)); i++) { if (CLMAP_ISSET(clmap, i)) { if (unavail_size != 0) break; size += vm_page_size; BS_STAT(ps->ps_bs, ps->ps_bs->bs_pages_in++); } else { if (size != 0) break; unavail_size += vm_page_size; } } if (size == 0) { ASSERT(unavail_size); cnt -= unavail_size; offset += unavail_size; if((offset & ((vm_page_size << vs->vs_clshift) - 1)) == 0) { /* There is no more to transfer in this cluster */ *vsmap_ptr = write_vsmap; VSM_CLR(write_vsmap); VSM_CLR(original_read_vsmap); } continue; } if(VSM_ISCLR(original_read_vsmap)) original_read_vsmap = *vsmap_ptr; if(ps->ps_segtype == PS_PARTITION) { /* NEED TO ISSUE WITH SYNC & NO COMMIT error = ps_read_device(ps, actual_offset, &buffer, size, &residual, flags); */ } else { /* NEED TO ISSUE WITH SYNC & NO COMMIT */ error = ps_read_file(ps, upl, (vm_offset_t) 0, actual_offset, size, &residual, (UPL_IOSYNC | UPL_NOCOMMIT)); } read_vsmap = *vsmap_ptr; /* * Adjust counts and put data in new BS. Optimize for the * common case, i.e. no error and/or partial data. * If there was an error, then we need to error the entire * range, even if some data was successfully read. * */ if ((error == KERN_SUCCESS) && (residual == 0)) { int page_list_count = 0; /* * Got everything we asked for, supply the data to * the new BS. Note that as a side effect of supplying * the data, the buffer holding the supplied data is * deallocated from the pager's address space unless * the write is unsuccessful. */ /* note buffer will be cleaned up in all cases by */ /* internal_cluster_write or if an error on write */ /* the vm_map_copy_page_discard call */ *vsmap_ptr = write_vsmap; if(vs_cluster_write(vs, upl, offset, size, TRUE, UPL_IOSYNC | UPL_NOCOMMIT ) != KERN_SUCCESS) { error = KERN_FAILURE; if(!(VSM_ISCLR(*vsmap_ptr))) { /* unmap the new backing store object */ ps_clunmap(vs, offset, size); } /* original vsmap */ *vsmap_ptr = original_read_vsmap; VSM_CLR(write_vsmap); } else { if((offset + size) & ((vm_page_size << vs->vs_clshift) - 1)) { /* There is more to transfer in this cluster */ write_vsmap = *vsmap_ptr; *vsmap_ptr = read_vsmap; } else { /* discard the old backing object */ write_vsmap = *vsmap_ptr; *vsmap_ptr = read_vsmap; ps_clunmap(vs, offset, size); *vsmap_ptr = write_vsmap; VSM_CLR(write_vsmap); VSM_CLR(original_read_vsmap); } } } else { size_wanted = size; if (error == KERN_SUCCESS) { if (residual == size) { /* * If a read operation returns no error * and no data moved, we turn it into * an error, assuming we're reading at * or beyond EOF. * Fall through and error the entire * range. */ error = KERN_FAILURE; *vsmap_ptr = write_vsmap; if(!(VSM_ISCLR(*vsmap_ptr))) { /* unmap the new backing store object */ ps_clunmap(vs, offset, size); } *vsmap_ptr = original_read_vsmap; VSM_CLR(write_vsmap); continue; } else { /* * Otherwise, we have partial read. * This is also considered an error * for the purposes of cluster transfer */ error = KERN_FAILURE; *vsmap_ptr = write_vsmap; if(!(VSM_ISCLR(*vsmap_ptr))) { /* unmap the new backing store object */ ps_clunmap(vs, offset, size); } *vsmap_ptr = original_read_vsmap; VSM_CLR(write_vsmap); continue; } } } cnt -= size; offset += size; } /* END while (cnt && (error == 0)) */ if(!VSM_ISCLR(write_vsmap)) *vsmap_ptr = write_vsmap; return error; } kern_return_t default_pager_add_file(MACH_PORT_FACE backing_store, int *vp, int record_size, long size) { backing_store_t bs; paging_segment_t ps; int i; int error; if ((bs = backing_store_lookup(backing_store)) == BACKING_STORE_NULL) return KERN_INVALID_ARGUMENT; PSL_LOCK(); for (i = 0; i <= paging_segment_max; i++) { ps = paging_segments[i]; if (ps == PAGING_SEGMENT_NULL) continue; if (ps->ps_segtype != PS_FILE) continue; /* * Check for overlap on same device. */ if (ps->ps_vnode == (struct vnode *)vp) { PSL_UNLOCK(); BS_UNLOCK(bs); return KERN_INVALID_ARGUMENT; } } PSL_UNLOCK(); /* * Set up the paging segment */ ps = (paging_segment_t) kalloc(sizeof (struct paging_segment)); if (ps == PAGING_SEGMENT_NULL) { BS_UNLOCK(bs); return KERN_RESOURCE_SHORTAGE; } ps->ps_segtype = PS_FILE; ps->ps_vnode = (struct vnode *)vp; ps->ps_offset = 0; ps->ps_record_shift = local_log2(vm_page_size / record_size); ps->ps_recnum = size; ps->ps_pgnum = size >> ps->ps_record_shift; ps->ps_pgcount = ps->ps_pgnum; ps->ps_clshift = local_log2(bs->bs_clsize); ps->ps_clcount = ps->ps_ncls = ps->ps_pgcount >> ps->ps_clshift; ps->ps_hint = 0; PS_LOCK_INIT(ps); ps->ps_bmap = (unsigned char *) kalloc(RMAPSIZE(ps->ps_ncls)); if (!ps->ps_bmap) { kfree((vm_offset_t)ps, sizeof *ps); BS_UNLOCK(bs); return KERN_RESOURCE_SHORTAGE; } for (i = 0; i < ps->ps_ncls; i++) { clrbit(ps->ps_bmap, i); } ps->ps_going_away = FALSE; ps->ps_bs = bs; if ((error = ps_enter(ps)) != 0) { kfree((vm_offset_t)ps->ps_bmap, RMAPSIZE(ps->ps_ncls)); kfree((vm_offset_t)ps, sizeof *ps); BS_UNLOCK(bs); return KERN_RESOURCE_SHORTAGE; } bs->bs_pages_free += ps->ps_clcount << ps->ps_clshift; bs->bs_pages_total += ps->ps_clcount << ps->ps_clshift; PSL_LOCK(); dp_pages_free += ps->ps_pgcount; PSL_UNLOCK(); BS_UNLOCK(bs); bs_more_space(ps->ps_clcount); DEBUG(DEBUG_BS_INTERNAL, ("device=0x%x,offset=0x%x,count=0x%x,record_size=0x%x,shift=%d,total_size=0x%x\n", device, offset, size, record_size, ps->ps_record_shift, ps->ps_pgnum)); return KERN_SUCCESS; } kern_return_t ps_read_file( paging_segment_t ps, upl_t upl, vm_offset_t upl_offset, vm_offset_t offset, unsigned int size, unsigned int *residualp, int flags) { vm_object_offset_t f_offset; int error = 0; int result; clustered_reads[atop(size)]++; f_offset = (vm_object_offset_t)(ps->ps_offset + offset); /* for transfer case we need to pass uploffset and flags */ error = vnode_pagein(ps->ps_vnode, upl, upl_offset, f_offset, (vm_size_t)size, flags | UPL_NORDAHEAD, NULL); /* The vnode_pagein semantic is somewhat at odds with the existing */ /* device_read semantic. Partial reads are not experienced at this */ /* level. It is up to the bit map code and cluster read code to */ /* check that requested data locations are actually backed, and the */ /* pagein code to either read all of the requested data or return an */ /* error. */ if (error) result = KERN_FAILURE; else { *residualp = 0; result = KERN_SUCCESS; } return result; } kern_return_t ps_write_file( paging_segment_t ps, upl_t upl, vm_offset_t upl_offset, vm_offset_t offset, unsigned int size, int flags) { vm_object_offset_t f_offset; kern_return_t result; int error = 0; clustered_writes[atop(size)]++; f_offset = (vm_object_offset_t)(ps->ps_offset + offset); if (vnode_pageout(ps->ps_vnode, upl, upl_offset, f_offset, (vm_size_t)size, flags, NULL)) result = KERN_FAILURE; else result = KERN_SUCCESS; return result; } kern_return_t default_pager_triggers(MACH_PORT_FACE default_pager, int hi_wat, int lo_wat, int flags, MACH_PORT_FACE trigger_port) { MACH_PORT_FACE release; kern_return_t kr; PSL_LOCK(); if (flags == HI_WAT_ALERT) { release = min_pages_trigger_port; min_pages_trigger_port = trigger_port; minimum_pages_remaining = hi_wat/vm_page_size; bs_low = FALSE; kr = KERN_SUCCESS; } else if (flags == LO_WAT_ALERT) { release = max_pages_trigger_port; max_pages_trigger_port = trigger_port; maximum_pages_free = lo_wat/vm_page_size; kr = KERN_SUCCESS; } else { release = trigger_port; kr = KERN_INVALID_ARGUMENT; } PSL_UNLOCK(); if (IP_VALID(release)) ipc_port_release_send(release); return kr; } |