1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508
|
#define PERL_NO_GET_CONTEXT 1
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "callchecker0.h"
#include <sys/mman.h>
/* Perl compatibility */
#define PERL_VERSION_DECIMAL(r,v,s) (r*1000000 + v*1000 + s)
#define PERL_DECIMAL_VERSION \
PERL_VERSION_DECIMAL(PERL_REVISION,PERL_VERSION,PERL_SUBVERSION)
#define PERL_VERSION_GE(r,v,s) \
(PERL_DECIMAL_VERSION >= PERL_VERSION_DECIMAL(r,v,s))
#if !PERL_VERSION_GE(5,7,2)
# undef dNOOP
# define dNOOP extern int Perl___notused_func(void)
#endif /* <5.7.2 */
#ifndef cBOOL
# define cBOOL(x) ((bool)!!(x))
#endif /* !cBOOL */
#ifndef EXPECT
# ifdef __GNUC__
# define EXPECT(e, v) __builtin_expect(e, v)
# else /* !__GNUC__ */
# define EXPECT(e, v) (e)
# endif /* !__GNUC__ */
#endif /* !EXPECT */
#define likely(t) EXPECT(cBOOL(t), 1)
#define unlikely(t) EXPECT(cBOOL(t), 0)
#ifndef __attribute__noreturn__
# ifdef __GNUC__
# define __attribute__noreturn__ __attribute__((noreturn))
# else /* !__GNUC__ */
# define __attribute__noreturn__ /**/
# endif /* !__GNUC__ */
#endif /* !__attribute__noreturn__ */
#ifndef C_ARRAY_LENGTH
# define C_ARRAY_LENGTH(a) (sizeof(a)/sizeof(*(a)))
#endif /* !C_ARRAY_LENGTH */
#ifndef PERL_STATIC_INLINE
# define PERL_STATIC_INLINE static
#endif /* !PERL_STATIC_INLINE */
#ifndef PERL_UNUSED_VAR
# define PERL_UNUSED_VAR(x) ((void)x)
#endif /* !PERL_UNUSED_VAR */
#ifndef PERL_UNUSED_ARG
# define PERL_UNUSED_ARG(x) PERL_UNUSED_VAR(x)
#endif /* !PERL_UNUSED_ARG */
#ifndef STATIC_ASSERT_DECL
# ifdef STATIC_ASSERT_GLOBAL
# define STATIC_ASSERT_DECL STATIC_ASSERT_GLOBAL
# else /* !STATIC_ASSERT_GLOBAL */
# define STATIC_ASSERT_2(COND, SUFFIX) \
enum { STATIC_ASSERT_ENUM_##SUFFIX = 1/(cBOOL(COND)) }
# define STATIC_ASSERT_1(COND, SUFFIX) STATIC_ASSERT_2(COND, SUFFIX)
# define STATIC_ASSERT_DECL(COND) STATIC_ASSERT_1(COND, __LINE__)
# endif /* !STATIC_ASSERT_GLOBAL */
#endif /* !STATIC_ASSERT_DECL */
#ifndef DPTR2FPTR
# define DPTR2FPTR(t,x) ((t)(UV)(x))
#endif /* !DPTR2FPTR */
#ifndef FPTR2DPTR
# define FPTR2DPTR(t,x) ((t)(UV)(x))
#endif /* !FPTR2DPTR */
#ifndef Newx
# define Newx(v,n,t) New(0,v,n,t)
#endif /* !Newx */
#ifndef Newxz
# define Newxz(v,n,t) Newz(0,v,n,t)
#endif /* !Newxz */
#ifndef newSVpv_share
# ifdef newSVpvn_share
# define newSVpv_share(pv, hash) THX_newSVpv_share(aTHX_ pv, hash)
PERL_STATIC_INLINE SV *THX_newSVpv_share(pTHX_ char const *pv, U32 hash)
{
return newSVpvn_share(pv, strlen(pv), hash);
}
# else /* !newSVpvn_share */
# define newSVpv_share(pv, hash) newSVpv(pv, 0)
# define SvSHARED_HASH(sv) 0
# endif /* !newSVpvn_share */
#endif /* !newSVpv_share */
#ifndef SvSHARED_HASH
# define SvSHARED_HASH(sv) SvUVX(sv)
#endif /* !SvSHARED_HASH */
#ifndef SvREFCNT_inc_NN
# define SvREFCNT_inc_NN SvREFCNT_inc
#endif /* !SvREFCNT_inc_NN */
#ifndef SvREFCNT_inc_simple
# define SvREFCNT_inc_simple SvREFCNT_inc
#endif /* !SvREFCNT_inc_simple */
#ifndef SvREFCNT_inc_simple_NN
# define SvREFCNT_inc_simple_NN SvREFCNT_inc_NN
#endif /* !SvREFCNT_inc_simple_NN */
#ifndef SvREFCNT_inc_void
# define SvREFCNT_inc_void(sv) ((void) SvREFCNT_inc(sv))
#endif /* !SvREFCNT_inc_void */
#ifndef SvREFCNT_inc_void_NN
# define SvREFCNT_inc_void_NN(sv) ((void) SvREFCNT_inc_NN(sv))
#endif /* !SvREFCNT_inc_void_NN */
#ifndef SvREFCNT_inc_simple_void
# define SvREFCNT_inc_simple_void(sv) ((void) SvREFCNT_inc_simple(sv))
#endif /* !SvREFCNT_inc_simple_void */
#ifndef SvREFCNT_inc_simple_void_NN
# define SvREFCNT_inc_simple_void_NN(sv) ((void) SvREFCNT_inc_simple_NN(sv))
#endif /* !SvREFCNT_inc_simple_void_NN */
#ifndef SvREFCNT_dec_NN
# define SvREFCNT_dec_NN SvREFCNT_dec
#endif /* !SvREFCNT_dec_NN */
#ifndef SvUV_set
# define SvUV_set(sv, uv) (SvUVX(sv) = (uv))
#endif /* !SvUV_set */
#ifndef CvPROTO
# define CvPROTO(cv) SvPVX((SV*)(cv))
# define CvPROTOLEN(cv) SvCUR((SV*)(cv))
#endif /* !CvPROTO */
#if PERL_VERSION_GE(5,7,3)
# define PERL_UNUSED_THX() NOOP
#else /* <5.7.3 */
# define PERL_UNUSED_THX() ((void)(aTHX+0))
#endif /* <5.7.3 */
#ifndef SvMAGIC_set
# define SvMAGIC_set(sv, mg) (SvMAGIC(sv) = (mg))
#endif /* !SvMAGIC_set */
#ifndef PERL_MAGIC_ext
# define PERL_MAGIC_ext '~'
#endif /* !PERL_MAGIC_ext */
#ifndef sv_magicext
# define sv_magicext(sv, obj, type, vtbl, name, namlen) \
THX_sv_magicext(aTHX_ sv, obj, type, vtbl, name, namlen)
static MAGIC *THX_sv_magicext(pTHX_ SV *sv, SV *obj, int type,
MGVTBL const *vtbl, char const *name, I32 namlen)
{
MAGIC *mg;
PERL_UNUSED_ARG(namlen);
Newxz(mg, 1, MAGIC);
mg->mg_virtual = (MGVTBL*)vtbl;
mg->mg_type = type;
mg->mg_obj = obj;
if(likely(obj && obj != sv)) {
SvREFCNT_inc_simple_void_NN(obj);
mg->mg_flags |= MGf_REFCOUNTED;
}
mg->mg_ptr = (char*)name;
(void) SvUPGRADE(sv, SVt_PVMG);
mg->mg_moremagic = SvMAGIC(sv);
SvMAGIC_set(sv, mg);
SvMAGICAL_off(sv);
mg_magical(sv);
return mg;
}
#endif /* !sv_magicext */
#ifndef sv_unmagicext
# define sv_unmagicext(sv, type, vtbl) THX_sv_unmagicext(aTHX_ sv, type, vtbl)
PERL_STATIC_INLINE int THX_sv_unmagicext(pTHX_ SV *sv, int type,
MGVTBL const *vtbl)
{
MAGIC *mg, **mgp;
if(unlikely(SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))) return 0;
mgp = NULL;
for(mg = SvMAGIC(sv); mg; mg = unlikely(mgp) ? *mgp : SvMAGIC(sv)) {
if(likely(mg->mg_type == type && mg->mg_virtual == vtbl)) {
if(unlikely(mgp))
*mgp = mg->mg_moremagic;
else
SvMAGIC_set(sv, mg->mg_moremagic);
if(likely(vtbl->svt_free)) vtbl->svt_free(aTHX_ sv, mg);
if(unlikely(mg->mg_flags & MGf_REFCOUNTED))
SvREFCNT_dec(mg->mg_obj);
Safefree(mg);
} else {
mgp = &mg->mg_moremagic;
}
}
SvMAGICAL_off(sv);
mg_magical(sv);
return 0;
}
#endif /* !sv_unmagicext */
#ifndef newSV_type
# define newSV_type(type) THX_newSV_type(aTHX_ type)
static SV *THX_newSV_type(pTHX_ svtype type)
{
SV *sv = newSV(0);
(void) SvUPGRADE(sv, type);
return sv;
}
#endif /* !newSV_type */
#ifndef gv_stashpvs
# define gv_stashpvs(name, flags) gv_stashpvn(""name"", sizeof(name)-1, flags)
#endif /* !gv_stashpvs */
#ifndef hv_fetchs
# define hv_fetchs(hv, keystr, lval) \
hv_fetch(hv, ""keystr"", sizeof(keystr)-1, lval)
#endif /* !hv_fetchs */
#ifndef hv_stores
# define hv_stores(hv, keystr, val) \
hv_store(hv, ""keystr"", sizeof(keystr)-1, val, 0)
#endif /* !hv_stores */
#if defined(USE_ITHREADS) && !defined(sv_dup_inc)
# define sv_dup_inc(sv, param) SvREFCNT_inc(sv_dup(sv, param))
#endif /* USE_ITHREADS && !sv_dup_inc */
#if !PERL_VERSION_GE(5,9,3)
typedef OP *(*Perl_ppaddr_t)(pTHX);
#endif /* <5.9.3 */
#ifndef SvPV_nomg
# define SvPV_nomg(sv, len) \
(unlikely(SvGMAGICAL(sv)) ? THX_SvPV_nomg_magical(aTHX_ sv, &(len)) : \
SvPV(sv, len))
struct remagic {
SV *sv;
MAGIC *mg;
U32 flags;
};
static void THX_remagic_cleanup(pTHX_ void *remagic_v)
{
struct remagic remagic = *(struct remagic *)remagic_v;
Safefree(remagic_v);
if(unlikely(remagic.sv)) {
SvMAGIC(remagic.sv) = remagic.mg;
SvFLAGS(remagic.sv) |= remagic.flags;
SvREFCNT_dec_NN(remagic.sv);
}
}
static char *THX_SvPV_nomg_magical(pTHX_ SV *sv, STRLEN *len_p)
{
char *pv;
struct remagic *remagic;
Newx(remagic, 1, struct remagic);
remagic->sv = sv;
remagic->mg = SvMAGIC(sv);
remagic->flags = SvMAGICAL(sv);
SAVEDESTRUCTOR_X(THX_remagic_cleanup, remagic);
SvREFCNT_inc_simple_void_NN(sv);
SvMAGIC(sv) = NULL;
pv = SvPV(sv, *len_p);
SvMAGIC(sv) = remagic->mg;
SvFLAGS(sv) |= remagic->flags;
SvREFCNT_dec_NN(sv);
remagic->sv = NULL;
return pv;
}
#endif /* !SvPV_nomg */
#ifndef START_MY_CXT
# ifdef PERL_IMPLICIT_CONTEXT
# define START_MY_CXT
# define dMY_CXT_SV \
SV *my_cxt_sv = *hv_fetch(PL_modglobal, \
MY_CXT_KEY, sizeof(MY_CXT_KEY)-1, 1)
# define dMY_CXT \
dMY_CXT_SV; my_cxt_t *my_cxtp = INT2PTR(my_cxt_t*, SvUV(my_cxt_sv))
# define MY_CXT_INIT \
dMY_CXT_SV; \
my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1)); \
Zero(my_cxtp, 1, my_cxt_t); \
sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
# define MY_CXT (*my_cxtp)
# define pMY_CXT my_cxt_t *my_cxtp
# define pMY_CXT_ pMY_CXT,
# define _pMY_CXT ,pMY_CXT
# define aMY_CXT my_cxtp
# define aMY_CXT_ aMY_CXT,
# define _aMY_CXT ,aMY_CXT
# else /* !PERL_IMPLICIT_CONTEXT */
# define START_MY_CXT static my_cxt_t my_cxt;
# define dMY_CXT dNOOP
# define MY_CXT_INIT NOOP
# define MY_CXT my_cxt
# define pMY_CXT void
# define pMY_CXT_ /**/
# define _pMY_CXT /**/
# define aMY_CXT /**/
# define aMY_CXT_ /**/
# define _aMY_CXT /**/
# endif /* !PERL_IMPLICIT_CONTEXT */
#endif /* !START_MY_CXT */
#ifndef MY_CXT_CLONE
# ifdef PERL_IMPLICIT_CONTEXT
# define MY_CXT_CLONE \
dMY_CXT_SV; \
my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1)); \
Copy(INT2PTR(my_cxt_t*, SvUV(my_cxt_sv)), my_cxtp, 1, my_cxt_t); \
sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
# else /* !PERL_IMPLICIT_CONTEXT */
# define MY_CXT_CLONE NOOP
# endif /* !PERL_IMPLICIT_CONTEXT */
#endif /* !MY_CXT_CLONE */
#if PERL_VERSION_GE(5,19,4)
typedef SSize_t tmps_ix_t;
#else /* <5.19.4 */
typedef I32 tmps_ix_t;
#endif /* <5.19.4 */
#if PERL_VERSION_GE(5,19,4)
typedef SSize_t array_ix_t;
#else /* <5.19.4 */
typedef I32 array_ix_t;
#endif /* <5.19.4 */
#ifdef newSVpvn_flags
# define newSVpvn_mortal(pv, len) newSVpvn_flags(pv, len, SVs_TEMP)
#else /* !newSVpvn_flags */
# define newSVpvn_mortal(pv, len) sv_2mortal(newSVpvn(pv, len))
#endif /* !newSVpvn_flags */
#ifndef my_strerror
# define my_strerror Strerror
#endif /* !my_strerror */
#ifndef OpMORESIB_set
# define OpMORESIB_set(o, sib) ((o)->op_sibling = (sib))
# define OpLASTSIB_set(o, parent) ((o)->op_sibling = NULL)
# define OpMAYBESIB_set(o, sib, parent) ((o)->op_sibling = (sib))
#endif /* !OpMORESIB_set */
#ifndef OpSIBLING
# define OpHAS_SIBLING(o) (cBOOL((o)->op_sibling))
# define OpSIBLING(o) (0 + (o)->op_sibling)
#endif /* !OpSIBLING */
/* Perl additions */
typedef U64TYPE U64;
#define sv_is_glob(sv) (SvTYPE(sv) == SVt_PVGV)
#if PERL_VERSION_GE(5,11,0)
# define sv_is_regexp(sv) (SvTYPE(sv) == SVt_REGEXP)
#else /* <5.11.0 */
# define sv_is_regexp(sv) 0
#endif /* <5.11.0 */
#define sv_is_undef(sv) (!sv_is_glob(sv) && !sv_is_regexp(sv) && !SvOK(sv))
#define sv_is_string(sv) \
(!sv_is_glob(sv) && !sv_is_regexp(sv) && \
(SvFLAGS(sv) & (SVf_IOK|SVf_NOK|SVf_POK|SVp_IOK|SVp_NOK|SVp_POK)))
/* we need mg_dup to be invoked *after* duplicating a scalar's PV */
#define QCORE_MG_DUP_WORKS \
((PERL_VERSION_GE(5,8,9) && !PERL_VERSION_GE(5,9,0)) || \
PERL_VERSION_GE(5,9,3))
#ifndef QWITH_DUP
# if QCORE_MG_DUP_WORKS && defined(USE_ITHREADS)
# define QWITH_DUP 1
# else /* !(QCORE_MG_DUP_WORKS && USE_ITHREADS) */
# define QWITH_DUP 0
# endif /* !(QCORE_MG_DUP_WORKS && USE_ITHREADS) */
#endif /* !QWITH_DUP */
#define newRV_ro_mortal_noinc(r) THX_newRV_ro_mortal_noinc(aTHX_ r)
PERL_STATIC_INLINE SV *THX_newRV_ro_mortal_noinc(pTHX_ SV *referent)
{
SV *rv = newRV_noinc(referent);
SvREADONLY_on(rv);
return sv_2mortal(rv);
}
#define newRV_ro_mortal_inc(r) THX_newRV_ro_mortal_inc(aTHX_ r)
PERL_STATIC_INLINE SV *THX_newRV_ro_mortal_inc(pTHX_ SV *referent)
{
SV *rv = newRV_inc(referent);
SvREADONLY_on(rv);
return sv_2mortal(rv);
}
/* system call compatibility */
#ifndef MAP_FAILED
# define MAP_FAILED ((void*)-1)
#endif /* !MAP_FAILED */
#ifndef FD_CLOEXEC
# define FD_CLOEXEC 1
#endif /* !FD_CLOEXEC */
/* byte definition */
#define BYTE_NBIT 8
typedef U8 byte;
#define BYTE_MAX 0xff
/* word definition */
#define WORD_SZ_LOG2 3
#define WORD_SZ (1<<WORD_SZ_LOG2)
#define WORD_ALIGN_BITS (WORD_SZ-1)
#define IS_WORD_ALIGNED(v) (!((v) & WORD_ALIGN_BITS))
#define WORD_ALIGN(v) (((v) + WORD_ALIGN_BITS) & ~WORD_ALIGN_BITS)
#define WORD_NBIT (BYTE_NBIT << WORD_SZ_LOG2)
typedef U64 word;
#define WORD_C UINT64_C
STATIC_ASSERT_DECL(sizeof(word) == (1<<WORD_SZ_LOG2));
#define WORD_MAX WORD_C(0xffffffffffffffff)
/*
* memory dereferencing
*
* BYTE_AT() and WORD_AT() are syntactic sugar for working with offsets
* into memory maps.
*
* word_cset() is an atomic compare-and-set operator on words, ordered
* relative to other memory operations. There's no standard C to
* implement this. Currently the only implementation used is the
* Intel-specified compiler built-in __sync_bool_compare_and_swap(),
* as implemented by gcc and other compilers.
*
* word_get() is intended to provide matching atomic reading of a mutable
* word, ordered relative to other memory operations. However, the C
* language (even with gcc extensions) doesn't actually provide a way
* to guarantee that a read is atomic. This implementation, using a
* "volatile" qualifier, ensures that the operation is a memory barrier,
* but doesn't guarantee atomicity. We must hope that the compiler uses
* a native atomic read instruction.
*/
#define BYTE_AT(base, offset) (*(byte*)(((char*)(base))+(offset)))
#define WORD_AT(base, offset) (*(word*)(((char*)(base))+(offset)))
PERL_STATIC_INLINE word word_get(word const *ptr)
{
return *(word const volatile *)ptr;
}
#define word_cset __sync_bool_compare_and_swap
/*
* thread-safe reference counting
*
* This reference counting is used when sharing objects between threads
* due to spawning a thread requiring duplication of all objects the
* parent thread can reference. It's used for directory references and
* memory mappings.
*
* The value that's physically stored for the reference count is 1
* less than the actual number of live references. The word should be
* initialised to all-bits-zero (representing having a single reference).
* If the reference count word grows to all-bits-one, rather than wrap
* it will stick, preferring to leak the object rather than prematurely
* free it.
*/
#if QWITH_DUP
PERL_STATIC_INLINE void threadrc_inc(word *rcp)
{
while(1) {
word rc = word_get(rcp);
if(unlikely(rc == ~(word)0)) break;
if(likely(word_cset(rcp, rc, rc+1))) break;
}
}
PERL_STATIC_INLINE bool threadrc_dec(word *rcp)
{
while(1) {
word rc = word_get(rcp);
if(likely(rc == 0)) return 0;
if(unlikely(rc == ~(word)0)) return 1;
if(likely(word_cset(rcp, rc, rc-1))) return 1;
}
}
#endif /* QWITH_DUP */
/*
* opening with close-on-exec flag
*
* When we open file descriptors, we always want the close-on-exec flag
* set. Ideally we'd use the thread-safe (and convenient) O_CLOEXEC and
* F_DUPFD_CLOEXEC, but they're not available everywhere. So the wrappers
* open_cloexec(), openat_cloexec(), and dup_cloexec() encapsulate the
* job of setting the close-on-exec flag in the best manner possible.
*
* Even if the headers define O_CLOEXEC/F_DUPFD_CLOEXEC, it might not
* actually be implemented in the kernel at runtime. So it is necessary
* to experiment at runtime to see how to actually get the close-on-exec
* flag set. The experiment is run on the first attempts at opening.
* Experimentation is performed separately for open(2), openat(2),
* and fcntl(2)/F_DUPFD_CLOEXEC. In any sensible system open(2) and
* openat(2) will have identical treatment of the flags, but it's unwise
* to rely on sensibleness. We do rely on each syscall being consistent
* over time, within the scope of a single program run.
*
* Kernels that don't support O_CLOEXEC can't be relied upon to object
* if it's supplied. Linux, for example, ignores open(2) flags that
* it doesn't know about. So the experiment must check the actual flag
* state if open(2) appears to work. Anticipating that some other kernel
* will check the flags, EINVAL is also accepted as an indicator that
* O_CLOEXEC isn't valid. Once a definitive experimental result has been
* obtained, the system switches to one of three concrete strategies:
* use O_CLOEXEC only (if it worked), use F_SETFD only (if O_CLOEXEC was
* rejected or didn't work), or use both (if O_CLOEXEC was accepted and
* F_GETFD failed).
*/
enum {
CLOEXEC_EXPERIMENT,
CLOEXEC_AT_OPEN,
CLOEXEC_AFTER_OPEN,
CLOEXEC_AT_AND_AFTER_OPEN
};
static int cloexec_determine_strategy(int fd)
{
int fdflags = fcntl(fd, F_GETFD);
if(unlikely(fdflags == -1)) {
(void) fcntl(fd, F_SETFD, FD_CLOEXEC);
return CLOEXEC_AT_AND_AFTER_OPEN;
} else if(likely(fdflags & FD_CLOEXEC)) {
return CLOEXEC_AT_OPEN;
} else {
(void) fcntl(fd, F_SETFD, FD_CLOEXEC);
return CLOEXEC_AFTER_OPEN;
}
}
#define DO_EXPERIMENTING_CLOEXEC(OPEN_WITH) \
do { \
static int strategy = CLOEXEC_EXPERIMENT; \
switch(strategy) { \
case CLOEXEC_EXPERIMENT: default: { \
int fd = OPEN_WITH; \
if(unlikely(fd == -1)) { \
if(unlikely(errno == EINVAL)) { \
strategy = CLOEXEC_AFTER_OPEN; \
goto after_open; \
} \
return -1; \
} \
strategy = cloexec_determine_strategy(fd); \
return fd; \
} \
case CLOEXEC_AT_OPEN: { \
return OPEN_WITH; \
} \
case CLOEXEC_AFTER_OPEN: after_open: break; \
case CLOEXEC_AT_AND_AFTER_OPEN: { \
int fd = OPEN_WITH; \
if(likely(fd != -1)) \
(void) fcntl(fd, F_SETFD, FD_CLOEXEC); \
return fd; \
} \
} \
} while(0)
#define DO_CLOEXEC_AFTER_OPEN(OPEN_WITHOUT) \
do { \
int fd = OPEN_WITHOUT; \
if(likely(fd != -1)) (void) fcntl(fd, F_SETFD, FD_CLOEXEC); \
return fd; \
} while(0)
static int open_cloexec(char const *path, int flags, mode_t mode)
{
#ifdef O_CLOEXEC
DO_EXPERIMENTING_CLOEXEC(open(path, flags | O_CLOEXEC, mode));
#endif /* O_CLOEXEC */
DO_CLOEXEC_AFTER_OPEN(open(path, flags, mode));
}
#if QHAVE_OPENAT && QHAVE_FSTATAT && QHAVE_LINKAT && QHAVE_UNLINKAT && \
QHAVE_FDOPENDIR
static int openat_cloexec(int dirfd, char const *path, int flags, mode_t mode)
{
# ifdef O_CLOEXEC
DO_EXPERIMENTING_CLOEXEC(openat(dirfd, path, flags | O_CLOEXEC, mode));
# endif /* O_CLOEXEC */
DO_CLOEXEC_AFTER_OPEN(openat(dirfd, path, flags, mode));
}
#endif
#if QHAVE_OPENAT && QHAVE_FSTATAT && QHAVE_LINKAT && QHAVE_UNLINKAT && \
QHAVE_FDOPENDIR && !QWITH_DUP
PERL_STATIC_INLINE int dup_cloexec(int oldfd)
{
# ifdef F_DUPFD_CLOEXEC
DO_EXPERIMENTING_CLOEXEC(fcntl(oldfd, F_DUPFD_CLOEXEC, 0));
# endif /* F_DUPFD_CLOEXEC */
DO_CLOEXEC_AFTER_OPEN(dup(oldfd));
}
#endif
/*
* file operations relative to referenced directory
*
* A directory is preferably referenced by a file descriptor.
* File operations relative to it are performed by the system calls
* openat(2), fstatat(2), linkat(2), and unlinkat(2). This system
* means that the directory reference remains valid if the directory
* is renamed, and means that there is a minimum of name resolution.
* However, these system calls aren't available very widely, so an
* alternative mechanism is required.
*
* The alternative is that an absolute pathname is stored, along with
* the device number and inode of the directory. File operations are
* performed by using full pathnames, immediately after checking that
* the stored directory pathname still refers to the correct directory.
* If the directory is moved, operations will start failing.
*
* Which system to use is in the general case determined at runtime,
* because even with calls to the modern system calls compiling, there's
* no guarantee that the running kernel is one that supports them.
* We therefore experiment, once per program run, to determine which
* system to use. The experiment is performed at initialiasation,
* before the first directory-referencing operation, and all operations
* therefore proceed with knowledge of which system is being used.
* If any of the necessary system calls aren't supported by the C library,
* such that calls to them don't compile, then instead of experimenting
* we statically use only the backup system.
*
* In threaded builds we need to duplicate directory references
* between threads. A pathname-based directory reference could be
* easily duplicated by copying the name structure. A descriptor-based
* directory reference is trickier. We could dup(2) the file descriptor,
* but that can fail, and the ability to handle errors during thread
* cloning is very limited. The file descriptor limit could be a problem
* in a program that uses a lot of threads, and for short-lived threads
* we'd rather avoid the system call overhead. So instead we share the
* file descriptor between threads. This is done by putting the file
* descriptor in a structure with a reference count, which is maintained
* using thread-safe atomic operators. In fact we use the same reference
* counting scheme with pathname-based directory references, to avoid
* having to allocate new memory upon duplication.
*
* The functions here provide a syscall-like interface. Errors are
* signalled in errno.
*
* To handle directory references that could be either a pointer or an
* immediate integer, dirref_t is an integer type that is both at least as
* large as int and at least large enough to store a pointer. Nasty casts
* are required for the pointer case. For efficiency of use, a null
* directory reference is always a zero value, and zeroing memory can be
* relied upon to yield a null reference. Where directory references are
* immediate integer file descriptors, fd 0 must therefore be avoided.
* In the unlikely event that opening a directory reference yields fd 0,
* it will be dup(2)ed to a different value. (Zero could instead have
* been reserved for nullity by incrementing the fd value for dirref_t,
* but that would make common operations using the directory reference
* slightly more expensive.)
*/
#if QHAVE_OPENAT && QHAVE_FSTATAT && QHAVE_LINKAT && QHAVE_UNLINKAT && \
QHAVE_FDOPENDIR
# define QMAY_DIRREF_BY_FD 1
#else
# define QMAY_DIRREF_BY_FD 0
#endif
#if QMAY_DIRREF_BY_FD && QWITH_DUP
struct dirref_by_fd {
word rc; /* must be first in struct: see dirref_dup() */
int fd;
};
#endif /* QMAY_DIRREF_BY_FD && QWITH_DUP */
struct dirref_by_name {
#if QWITH_DUP
word rc; /* must be first in struct: see dirref_dup() */
#endif /* QWITH_DUP */
ino_t ino;
dev_t dev;
char name[1]; /* struct hack */
};
#if PTRSIZE <= INTSIZE
typedef unsigned dirref_t;
#elif PTRSIZE <= LONGSIZE
typedef unsigned long dirref_t;
#elif defined(HAS_LONG_LONG) && PTRSIZE <= LONGLONGSIZE
typedef unsigned long long dirref_t;
#else /* PTRSIZE > LONGLONGSIZE */
typedef UV dirref_t;
#endif /* PTRSIZE > LONGLONGSIZE */
#if QMAY_DIRREF_BY_FD
# if QWITH_DUP
# define DIRREF_BYFD_FD(dr) (NUM2PTR(struct dirref_by_fd *, (dr)))->fd
# else /* !QWITH_DUP */
# define DIRREF_BYFD_FD(dr) ((int)(dr))
# endif /* !QWITH_DUP */
#endif /* QMAY_DIRREF_BY_FD */
#if QMAY_DIRREF_BY_FD
enum {
DIRREF_EXPERIMENT,
DIRREF_BY_FD,
DIRREF_BY_NAME
};
static int dirref_strategy = DIRREF_EXPERIMENT;
#endif /* QMAY_DIRREF_BY_FD */
PERL_STATIC_INLINE void dirref_ensure_strategy(void)
{
#if QMAY_DIRREF_BY_FD
# if AT_FDCWD == -1
# define QAT_BADFD (-2)
# else /* AT_FDCWD != -1 */
# define QAT_BADFD (-1)
# endif /* AT_FDCWD != -1 */
int res;
struct stat st;
if(unlikely(dirref_strategy != DIRREF_EXPERIMENT)) return;
res = openat_cloexec(QAT_BADFD, "", O_RDONLY, 0);
if(unlikely(res != -1)) {
(void) close(res);
} else if(unlikely(errno == ENOSYS)) {
by_name:
dirref_strategy = DIRREF_BY_NAME;
return;
}
res = fstatat(QAT_BADFD, "", &st, 0);
if(likely(res == -1) && unlikely(errno == ENOSYS)) goto by_name;
res = linkat(QAT_BADFD, "", QAT_BADFD, "", 0);
if(likely(res == -1) && unlikely(errno == ENOSYS)) goto by_name;
res = unlinkat(QAT_BADFD, "", 0);
if(likely(res == -1) && unlikely(errno == ENOSYS)) goto by_name;
dirref_strategy = DIRREF_BY_FD;
#endif /* QMAY_DIRREF_BY_FD */
}
PERL_STATIC_INLINE bool dirref_referential(void)
{
#if QMAY_DIRREF_BY_FD
return likely(dirref_strategy == DIRREF_BY_FD);
#else /* !QMAY_DIRREF_BY_FD */
return 0;
#endif /* !QMAY_DIRREF_BY_FD */
}
#define dirref_null() ((dirref_t)0)
PERL_STATIC_INLINE bool dirref_is_null(dirref_t dirref)
{
return dirref == dirref_null();
}
static char *dirref_path_concat(char const *base, char const *rel)
{
size_t blen = strlen(base), rlen = strlen(rel);
size_t tlen = blen + rlen;
char *full;
if(unlikely(tlen < blen)) goto enomem;
tlen += 2;
if(unlikely(tlen < 2)) goto enomem;
full = malloc(tlen);
if(!likely(full)) {
enomem:
errno = ENOMEM;
return NULL;
}
(void) memcpy(full, base, blen);
if(unlikely(blen == 0) || likely(base[blen-1] != '/'))
full[blen++] = '/';
(void) memcpy(full + blen, rel, rlen+1);
return full;
}
static dirref_t dirref_open(char const *origname, struct stat *st)
{
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
int fd = open_cloexec(origname, O_RDONLY, 0);
if(likely(fd != -1) && unlikely(fstat(fd, st) == -1)) {
int er = errno;
(void) close(fd);
errno = er;
fd = -1;
}
# if QWITH_DUP
if(unlikely(fd == -1)) {
return dirref_null();
} else {
struct dirref_by_fd *byfd;
byfd = malloc(sizeof(struct dirref_by_fd));
if(!likely(byfd)) {
(void) close(fd);
errno = ENOMEM;
return dirref_null();
}
byfd->rc = 0;
byfd->fd = fd;
return NUM2PTR(dirref_t, byfd);
}
# else /* !QWITH_DUP */
if(unlikely(fd == 0)) {
int er;
fd = dup_cloexec(fd);
er = errno;
(void) close(0);
errno = er;
}
return unlikely(fd == -1) ? dirref_null() : (dirref_t)fd;
# endif /* !QWITH_DUP */
} else
#endif /* QMAY_DIRREF_BY_FD */
{
char *fullname;
size_t fullname_len, byname_len;
bool free_fullname;
struct dirref_by_name *byname;
#if QHAVE_REALPATH
long pmax;
#endif /* QHAVE_REALPATH */
if(unlikely(stat(origname, st) == -1)) return dirref_null();
#if QHAVE_REALPATH
# if QHAVE_PATHCONF && defined(_PC_PATH_MAX)
pmax = pathconf(".", _PC_PATH_MAX);
if(unlikely(pmax == -1))
# endif /* QHAVE_PATHCONF && _PC_PATH_MAX */
{
# ifdef PATH_MAX
pmax = PATH_MAX;
# else /* !PATH_MAX */
pmax = 4096;
# endif /* !PATH_MAX */
}
if(unlikely((long)(size_t)pmax != pmax ||
((size_t)pmax)+1 == 0))
goto enomem;
fullname = malloc(((size_t)pmax) + 1);
if(!likely(fullname)) goto enomem;
if(!likely(realpath(origname, fullname))) {
int er = errno;
free(fullname);
errno = er;
return dirref_null();
}
free_fullname = 1;
#elif QHAVE_GETCWD
size_t origname_len = strlen(origname);
if(likely(origname[0] == '/')) {
fullname = (char*)origname;
fullname_len = origname_len;
free_fullname = 0;
} else {
size_t bufsz = 256;
char *cwd;
cwd = malloc(bufsz);
if(!likely(cwd)) goto enomem;
while(1) {
char *newbuf;
if(likely(getcwd(cwd, bufsz))) break;
if(unlikely(errno != ERANGE)) {
int er = errno;
free(cwd);
errno = er;
return dirref_null();
}
bufsz <<= 2;
if(!likely(bufsz)) goto enomem_free_cwd;
newbuf = realloc(cwd, bufsz);
if(!likely(newbuf)) {
enomem_free_cwd:
free(cwd);
goto enomem;
}
cwd = newbuf;
}
fullname = dirref_path_concat(cwd, origname);
free(cwd);
if(!likely(fullname)) goto enomem;
free_fullname = 1;
}
#else /* !QHAVE_REALPATH && !QHAVE_GETCWD */
#error neither realpath nor getcwd available
#endif /* !QHAVE_REALPATH && !QHAVE_GETCWD */
fullname_len = strlen(fullname);
byname_len = offsetof(struct dirref_by_name, name) + 1 +
fullname_len;
if(unlikely(byname_len < fullname_len)) {
enomem_maybe_free_fullname:
if(free_fullname) free(fullname);
enomem:
errno = ENOMEM;
return dirref_null();
}
byname = malloc(byname_len);
if(!likely(byname)) goto enomem_maybe_free_fullname;
#if QWITH_DUP
byname->rc = 0;
#endif /* QWITH_DUP */
byname->dev = st->st_dev;
byname->ino = st->st_ino;
(void) memcpy(byname->name, fullname, fullname_len+1);
if(free_fullname) free(fullname);
return NUM2PTR(dirref_t, byname);
}
}
#if QWITH_DUP
PERL_STATIC_INLINE dirref_t dirref_dup(dirref_t dirref)
{
if(unlikely(dirref_is_null(dirref))) return dirref;
/*
* This code doesn't look at whether the directory reference is
* by fd or by name. It relies on the reference count being
* in the same place in both structures, which is achieved by
* putting it at the beginning of both.
*/
threadrc_inc(&(NUM2PTR(struct dirref_by_name *, dirref))->rc);
return dirref;
}
#endif /* QWITH_DUP */
PERL_STATIC_INLINE void dirref_close(dirref_t dirref)
{
#if QWITH_DUP
/*
* Like dirref_dup(), this doesn't distinguish the types of
* directory reference when manipulating the reference count.
*/
if(unlikely(threadrc_dec(
&(NUM2PTR(struct dirref_by_name *, dirref))->rc)))
return;
#endif /* QWITH_DUP */
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
# if QWITH_DUP
struct dirref_by_fd *byfd =
NUM2PTR(struct dirref_by_fd *, dirref);
(void) close(byfd->fd);
free(byfd);
# else /* !QWITH_DUP */
(void) close((int)dirref);
# endif /* !QWITH_DUP */
} else
#endif /* QMAY_DIRREF_BY_FD */
{
free(NUM2PTR(struct dirref_by_name *, dirref));
}
}
static bool dirref_byname_ok(struct dirref_by_name *byname)
{
struct stat st;
if(unlikely(stat(byname->name, &st) == -1)) {
if(likely(errno == ENOENT) || likely(errno == ENOTDIR))
errno = EIO;
return 0;
} else if(likely(st.st_dev == byname->dev &&
st.st_ino == byname->ino)) {
return 1;
} else {
errno = EIO;
return 0;
}
}
PERL_STATIC_INLINE DIR *dirref_dir_opendir(dirref_t dirref)
{
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
DIR *dirh;
int fd = openat_cloexec(DIRREF_BYFD_FD(dirref), ".",
O_RDONLY, 0);
if(unlikely(fd == -1)) return NULL;
dirh = fdopendir(fd);
if(!likely(dirh)) {
int er = errno;
(void) close(fd);
errno = er;
}
return dirh;
} else
#endif /* QMAY_DIRREF_BY_FD */
{
struct dirref_by_name *byname =
NUM2PTR(struct dirref_by_name *, dirref);
if(!likely(dirref_byname_ok(byname))) return NULL;
return opendir(byname->name);
}
}
static int dirref_rel_open_cloexec(dirref_t dirref, char const *rel,
int flags, mode_t mode)
{
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
return openat_cloexec(DIRREF_BYFD_FD(dirref), rel, flags, mode);
} else
#endif /* QMAY_DIRREF_BY_FD */
{
struct dirref_by_name *byname =
NUM2PTR(struct dirref_by_name *, dirref);
char *path;
int res, er;
path = dirref_path_concat(byname->name, rel);
if(!likely(path)) return -1;
res = !likely(dirref_byname_ok(byname)) ? -1 :
open_cloexec(path, flags, mode);
er = errno;
free(path);
errno = er;
return res;
}
}
PERL_STATIC_INLINE int dirref_rel_stat(dirref_t dirref, char const *rel,
struct stat *st)
{
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
return fstatat(DIRREF_BYFD_FD(dirref), rel, st, 0);
} else
#endif /* QMAY_DIRREF_BY_FD */
{
struct dirref_by_name *byname =
NUM2PTR(struct dirref_by_name *, dirref);
char *path;
int res, er;
path = dirref_path_concat(byname->name, rel);
if(!likely(path)) return -1;
res = !likely(dirref_byname_ok(byname)) ? -1 : stat(path, st);
er = errno;
free(path);
errno = er;
return res;
}
}
PERL_STATIC_INLINE int dirref_rel_link(dirref_t dirref, char const *oldrel,
char const *newrel)
{
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
return linkat(DIRREF_BYFD_FD(dirref), oldrel,
DIRREF_BYFD_FD(dirref), newrel, 0);
} else
#endif /* QMAY_DIRREF_BY_FD */
{
struct dirref_by_name *byname =
NUM2PTR(struct dirref_by_name *, dirref);
char *oldpath, *newpath;
int res, er;
oldpath = dirref_path_concat(byname->name, oldrel);
if(!likely(oldpath)) return -1;
newpath = dirref_path_concat(byname->name, newrel);
if(!likely(newpath)) {
free(oldpath);
errno = ENOMEM;
return -1;
}
res = !likely(dirref_byname_ok(byname)) ? -1 :
link(oldpath, newpath);
er = errno;
free(oldpath);
free(newpath);
errno = er;
return res;
}
}
static int dirref_rel_unlink(dirref_t dirref, char const *rel)
{
#if QMAY_DIRREF_BY_FD
if(likely(dirref_strategy == DIRREF_BY_FD)) {
return unlinkat(DIRREF_BYFD_FD(dirref), rel, 0);
} else
#endif /* QMAY_DIRREF_BY_FD */
{
struct dirref_by_name *byname =
NUM2PTR(struct dirref_by_name *, dirref);
char *path;
int res, er;
path = dirref_path_concat(byname->name, rel);
if(!likely(path)) return -1;
res = !likely(dirref_byname_ok(byname)) ? -1 : unlink(path);
er = errno;
free(path);
errno = er;
return res;
}
}
/* fd closing on scope stack */
static void THX_closefd_cleanup(pTHX_ void *fd_p_v)
{
int fd = *(int*)fd_p_v;
PERL_UNUSED_THX();
Safefree(fd_p_v);
if(unlikely(fd != -1)) close(fd);
}
#define closefd_save(fd) THX_closefd_save(aTHX_ fd)
static int *THX_closefd_save(pTHX_ int fd)
{
int *fd_p;
Newx(fd_p, 1, int);
*fd_p = fd;
SAVEDESTRUCTOR_X(THX_closefd_cleanup, fd_p);
return fd_p;
}
#define closefd_early(fdp) THX_closefd_early(aTHX_ fdp)
static void THX_closefd_early(pTHX_ int *fd_p)
{
int fd = *fd_p;
PERL_UNUSED_THX();
if(likely(fd != -1)) {
*fd_p = -1;
(void) close(fd);
}
}
typedef int *closefd_ref_t;
/* directory stream closing on scope stack */
static void THX_closedirh_cleanup(pTHX_ void *dirh_p_v)
{
DIR *dirh = *(DIR**)dirh_p_v;
PERL_UNUSED_THX();
Safefree(dirh_p_v);
if(unlikely(dirh)) closedir(dirh);
}
#define closedirh_save(dirh) THX_closedirh_save(aTHX_ dirh)
PERL_STATIC_INLINE DIR **THX_closedirh_save(pTHX_ DIR *dirh)
{
DIR **dirh_p;
Newx(dirh_p, 1, DIR*);
*dirh_p = dirh;
SAVEDESTRUCTOR_X(THX_closedirh_cleanup, dirh_p);
return dirh_p;
}
#define closedirh_early(dirhp) THX_closedirh_early(aTHX_ dirhp)
PERL_STATIC_INLINE void THX_closedirh_early(pTHX_ DIR **dirh_p)
{
DIR *dirh = *dirh_p;
PERL_UNUSED_THX();
if(likely(dirh)) {
*dirh_p = NULL;
(void) closedir(dirh);
}
}
typedef DIR **closedirh_ref_t;
/* file removal on scope stack */
struct unlinkfile_cleanup_par {
dirref_t dir;
char filename[1]; /* struct hack */
};
static void THX_unlinkfile_cleanup(pTHX_ void *par_p_v)
{
struct unlinkfile_cleanup_par *par_p = par_p_v;
dirref_t dir = par_p->dir;
PERL_UNUSED_THX();
if(!likely(dirref_is_null(dir)))
(void) dirref_rel_unlink(dir, par_p->filename);
Safefree(par_p_v);
}
#define unlinkfile_save(dir, fn) THX_unlinkfile_save(aTHX_ dir, fn)
static struct unlinkfile_cleanup_par *THX_unlinkfile_save(pTHX_ dirref_t dir,
char const *filename)
{
struct unlinkfile_cleanup_par *par_p;
char *par_p_c;
size_t fnlen = strlen(filename) + 1;
Newx(par_p_c, offsetof(struct unlinkfile_cleanup_par, filename) + fnlen,
char);
par_p = (struct unlinkfile_cleanup_par *)par_p_c;
par_p->dir = dir;
(void) memcpy(par_p->filename, filename, fnlen);
SAVEDESTRUCTOR_X(THX_unlinkfile_cleanup, par_p);
return par_p;
}
#define unlinkfile_cancel(par_p) THX_unlinkfile_cancel(aTHX_ par_p)
PERL_STATIC_INLINE void THX_unlinkfile_cancel(pTHX_
struct unlinkfile_cleanup_par *par_p)
{
PERL_UNUSED_THX();
par_p->dir = dirref_null();
}
#define unlinkfile_early(par_p) THX_unlinkfile_early(aTHX_ par_p)
PERL_STATIC_INLINE int THX_unlinkfile_early(pTHX_
struct unlinkfile_cleanup_par *par_p)
{
dirref_t dir = par_p->dir;
PERL_UNUSED_THX();
if(unlikely(dirref_is_null(dir))) return 0;
par_p->dir = dirref_null();
return dirref_rel_unlink(dir, par_p->filename);
}
typedef struct unlinkfile_cleanup_par *unlinkfile_ref_t;
/*
* string unwrapping
*
* A struct pvl encapsulates an octet string held as octets in memory.
* The memory's allocation is independent of this structure; the memory
* must have sufficient lifetime for the use to which the pvl will be put.
* pvl.pv may therefore point into an SV's buffer, or into separate
* mortally-allocated memory, or into a file mapping. The octet string
* is not necessarily NUL-terminated; pvl.len must be used to determine
* the length.
*
* A null value (representing the absence of a string) can be represented
* as a pvl with pvl.pv null.
*
* pvl_from_arg() handles taking an octet string argument supplied
* by a user of this module. It processes get magic exactly once.
* The pvl that it returns points either into the argument's buffer or
* to mortally-allocated memory.
*/
struct pvl {
char *pv;
size_t len;
};
PERL_STATIC_INLINE struct pvl pvl_null(void)
{
struct pvl pvl;
pvl.pv = NULL;
pvl.len = 0;
return pvl;
}
PERL_STATIC_INLINE bool pvl_is_null(struct pvl pvl)
{
return !pvl.pv;
}
#define pvl_from_arg(role, au, arg) THX_pvl_from_arg(aTHX_ role, au, arg)
static struct pvl THX_pvl_from_arg(pTHX_ char const *role, bool allow_undef,
SV *arg)
{
STRLEN len;
size_t d;
char *p, *q, *e;
struct pvl pvl;
SvGETMAGIC(arg);
if(unlikely(sv_is_glob(arg) || sv_is_regexp(arg))) goto invalid;
if(allow_undef && !SvOK(arg)) return pvl_null();
if(!likely(SvFLAGS(arg) &
(SVf_IOK|SVf_NOK|SVf_POK|SVp_IOK|SVp_NOK|SVp_POK))) {
invalid:
croak("%s is %s", role,
allow_undef ? "neither an octet string nor undef" :
"not an octet string");
}
pvl.pv = SvPV_nomg(arg, len);
pvl.len = len;
if(!unlikely(SvUTF8(arg))) return pvl;
e = pvl.pv + pvl.len;
for(d = 0, p = pvl.pv; p != e; ) {
U8 c = (U8)*p++;
if(unlikely(c & 0x80)) {
if(unlikely(c < 0xc2 || c > 0xc3 || p == e))
goto invalid;
c = (U8)*p++;
if(!likely(c >= 0x80 && c <= 0xbf)) goto invalid;
d++;
}
}
if(likely(d == 0)) return pvl;
p = pvl.pv;
pvl.len -= d;
Newx(pvl.pv, pvl.len, char);
SAVEFREEPV(pvl.pv);
for(q = pvl.pv; p != e; q++) {
U8 c = (U8)*p++;
if(unlikely(c & 0x80))
c = ((c & 0x03) << 6) | (((U8)*p++) & 0x3f);
*q = (char)c;
}
return pvl;
}
/*
* event counter enumeration
*
* See the "event counters" section below. These need to be defined
* early to feed into the MY_CXT definition below.
*/
#if QWITH_TALLY
enum {
K_STRING_READ,
K_STRING_WRITE,
K_BNODE_READ,
K_BNODE_WRITE,
K_KEY_COMPARE,
K_ROOT_CHANGE_ATTEMPT,
K_ROOT_CHANGE_SUCCESS,
K_FILE_CHANGE_ATTEMPT,
K_FILE_CHANGE_SUCCESS,
K_DATA_READ_OP,
K_DATA_WRITE_OP,
K_SZ
};
static char const * const tally_name_pv[K_SZ] = {
"string_read",
"string_write",
"bnode_read",
"bnode_write",
"key_compare",
"root_change_attempt",
"root_change_success",
"file_change_attempt",
"file_change_success",
"data_read_op",
"data_write_op",
};
#endif /* QWITH_TALLY */
/*
* per-thread data
*/
#define MY_CXT_KEY "Hash::SharedMem::_guts"XS_VERSION
typedef struct {
SV *safe_undef;
HV *sizes_table;
HV *shash_handle_stash;
#if QWITH_TALLY
SV *tally_name_sv[K_SZ];
#endif /* QWITH_TALLY */
} my_cxt_t;
START_MY_CXT
/*
* fanout limit
*
* This parameter is currently fixed at compile time. The value 15 is the
* result of an experiment with an amd64 system. (Perhaps it is a sweet
* spot due to node buffers coming in just under a power of two size.)
*/
#define MAXFANOUT 15
/*
* parameter word
*
* Variable aspects of the file format are encapsulated in a word quantity
* that is included in file headers. Some of the parameters are currently
* fixed at compile time, and others are runtime variable.
*/
#if MAXFANOUT < 3 || MAXFANOUT >= BYTE_MAX || !(MAXFANOUT & 1)
#error bad parameter: fanout limit unacceptable
#endif /* MAXFANOUT < 3 || MAXFANOUT >= BYTE_MAX || !(MAXFANOUT & 1) */
#define PARAMETER_WORD_FIXED_PART_VALUE (MAXFANOUT<<16)
#define PARAMETER_WORD(lsl, psl) \
(((word)(lsl)) | (((word)psl)<<8) | PARAMETER_WORD_FIXED_PART_VALUE)
#define PARAMETER_WORD_LINE_SZ_LOG2(par) ((int)((par) & 0xff))
#define PARAMETER_WORD_PAGE_SZ_LOG2(par) ((int)(((par) >> 8) & 0xff))
#define PARAMETER_WORD_FIXED_PART(par) ((par) & ~(word)0xffff)
PERL_STATIC_INLINE int llog2(long v)
{
int g;
if(unlikely(v <= 0)) return -1;
for(g = 0; !(v & 1); g++) v >>= 1;
return likely(v == 1) ? g : -1;
}
PERL_STATIC_INLINE int parameter_known_line_size_log2(void)
{
#if QHAVE_SYSCONF
int h = -1, l;
# ifdef _SC_LEVEL1_DCACHE_LINESIZE
l = llog2(sysconf(_SC_LEVEL1_DCACHE_LINESIZE));
if(likely(l > h)) h = l;
# endif /* _SC_LEVEL1_DCACHE_LINESIZE */
# ifdef _SC_LEVEL2_CACHE_LINESIZE
l = llog2(sysconf(_SC_LEVEL2_CACHE_LINESIZE));
if(unlikely(l > h)) h = l;
# endif /* _SC_LEVEL2_DCACHE_LINESIZE */
# ifdef _SC_LEVEL3_CACHE_LINESIZE
l = llog2(sysconf(_SC_LEVEL3_CACHE_LINESIZE));
if(unlikely(l > h)) h = l;
# endif /* _SC_LEVEL3_DCACHE_LINESIZE */
# ifdef _SC_LEVEL4_CACHE_LINESIZE
l = llog2(sysconf(_SC_LEVEL4_CACHE_LINESIZE));
if(unlikely(l > h)) h = l;
# endif /* _SC_LEVEL4_DCACHE_LINESIZE */
return h;
#else /* !QHAVE_SYSCONF */
return -1;
#endif /* !QHAVE_SYSCONF */
}
PERL_STATIC_INLINE int parameter_known_page_size_log2(void)
{
int l;
PERL_UNUSED_VAR(l);
#if QHAVE_SYSCONF
# ifdef _SC_PAGESIZE
l = llog2(sysconf(_SC_PAGESIZE));
if(likely(l != -1)) return l;
# endif /* _SC_PAGESIZE */
# ifdef _SC_PAGE_SIZE
# ifdef _SC_PAGESIZE
if(_SC_PAGE_SIZE != _SC_PAGESIZE)
# endif /* _SC_PAGESIZE */
{
l = llog2(sysconf(_SC_PAGE_SIZE));
if(likely(l != -1)) return l;
}
# endif /* _SC_PAGE_SIZE */
#endif /* QHAVE_SYSCONF */
#if QHAVE_GETPAGESIZE
l = llog2(getpagesize());
if(likely(l != -1)) return l;
#endif /* QHAVE_GETPAGESIZE */
return -1;
}
PERL_STATIC_INLINE word parameter_preferred(void)
{
int lsl = parameter_known_line_size_log2();
int psl = parameter_known_page_size_log2();
/*
* Where line/page sizes are not definitively known, guess.
* The standard guesses are line size 2^6 bytes and page size
* 2^12 bytes, matching the ia32/amd64 processors that are common
* in 2013. If one size is known and the other is not, the guess
* for the unknown parameter will be modified if necessary such
* that the guessed page size is no smaller than the guessed
* line size. Known line and page sizes could nevertheless be
* the other way round.
*/
if(unlikely(psl == -1)) psl = unlikely(lsl > 12) ? lsl : 12;
if(unlikely(lsl == -1)) lsl = unlikely(psl < 6) ? psl : 6;
/*
* Having determined (our best guess of) the system's actual
* line and page size, these must now be modified to conform to
* the requirements of the shash format. The shash line size
* must be at least word size, and the shash page size must be
* at least the line size. Sizes that are too big to deal with,
* such that intra-page pointers wouldn't fit into a word, will
* be reduced to a size that's still too bit to deal with but
* at least is sure not to overflow the fields they have to fit.
*/
if(unlikely(lsl < WORD_SZ_LOG2)) lsl = WORD_SZ_LOG2;
if(unlikely(psl < lsl)) psl = lsl;
if(unlikely(psl > WORD_NBIT)) psl = WORD_NBIT;
if(unlikely(lsl > WORD_NBIT)) lsl = WORD_NBIT;
return PARAMETER_WORD(lsl, psl);
}
/*
* size parameters
*
* A notional line and page size must be chosen for each shash, and should
* preferably (for performance) match the target machine architecture.
* Variable aspects of file layout depend on the chosen line and page
* size. File offsets are precomputed and stored in struct sizes.
*
* In the data file header, the zero padding after the initial immutable
* words (filling the remainder of the first line, unless lines are
* very small) is picked out as a feature of the header so that it can
* be used to represent the empty btree node and the empty string.
*/
#define DHD_MAGIC 0
#define DHD_PARAM (DHD_MAGIC+WORD_SZ)
#define DHD_LENGTH (DHD_PARAM+WORD_SZ)
#define DHD_ZEROPAD (DHD_LENGTH+WORD_SZ)
#define MFL_MAGIC 0
#define MFL_PARAM (MFL_MAGIC+WORD_SZ)
struct sizes {
word line_align_bits, page_align_bits;
word dhd_nextalloc_space, dhd_current_root, dhd_sz;
word dhd_zeropad_sz;
word mfl_lastalloc_datafileid, mfl_current_datafileid, mfl_sz;
#if QWITH_DUP
char margin; /* to be clobbered by SV duplication */
#endif /* QWITH_DUP */
};
#define IS_LINE_ALIGNED(sizes, v) (!((v) & (sizes)->line_align_bits))
#define LINE_ALIGN(sizes, v) ((((v)-1) | (sizes)->line_align_bits) + 1)
#define IS_PAGE_ALIGNED(sizes, v) (!((v) & (sizes)->page_align_bits))
#define PAGE_ALIGN(sizes, v) ((((v)-1) | (sizes)->page_align_bits) + 1)
#define sizes_construct(lsl, psl) THX_sizes_construct(aTHX_ lsl, psl)
PERL_STATIC_INLINE struct sizes const *THX_sizes_construct(pTHX_
int line_sz_log2, int page_sz_log2)
{
struct sizes *sizes;
PERL_UNUSED_THX();
Newx(sizes, 1, struct sizes);
if(unlikely(line_sz_log2 < WORD_SZ_LOG2 ||
page_sz_log2 < line_sz_log2 ||
line_sz_log2 >= WORD_NBIT ||
page_sz_log2 >= WORD_NBIT)) {
bad_parameters:
Safefree(sizes);
return NULL;
}
sizes->line_align_bits = (((word)1) << line_sz_log2) - 1;
sizes->page_align_bits = (((word)1) << page_sz_log2) - 1;
sizes->dhd_nextalloc_space = LINE_ALIGN(sizes, DHD_ZEROPAD);
if(!likely(sizes->dhd_nextalloc_space)) goto bad_parameters;
sizes->dhd_current_root =
LINE_ALIGN(sizes, sizes->dhd_nextalloc_space + WORD_SZ);
if(!likely(sizes->dhd_current_root)) goto bad_parameters;
sizes->dhd_sz = LINE_ALIGN(sizes, sizes->dhd_current_root + WORD_SZ);
if(!likely(sizes->dhd_sz)) goto bad_parameters;
sizes->dhd_zeropad_sz = sizes->dhd_nextalloc_space - DHD_ZEROPAD;
sizes->mfl_lastalloc_datafileid =
LINE_ALIGN(sizes, MFL_PARAM + WORD_SZ);
if(!likely(sizes->mfl_lastalloc_datafileid)) goto bad_parameters;
sizes->mfl_current_datafileid =
LINE_ALIGN(sizes, sizes->mfl_lastalloc_datafileid + WORD_SZ);
if(!likely(sizes->mfl_current_datafileid)) goto bad_parameters;
sizes->mfl_sz =
PAGE_ALIGN(sizes, sizes->mfl_current_datafileid + WORD_SZ);
if(!likely(sizes->mfl_sz)) goto bad_parameters;
return sizes;
}
#define sizes_lookup(par) THX_sizes_lookup(aTHX_ aMY_CXT_ par)
static SV *THX_sizes_lookup(pTHX_ pMY_CXT_ word par)
{
int line_sz_log2 = PARAMETER_WORD_LINE_SZ_LOG2(par);
int page_sz_log2 = PARAMETER_WORD_PAGE_SZ_LOG2(par);
char key[2];
SV **sizes_svp;
key[0] = line_sz_log2;
key[1] = page_sz_log2;
sizes_svp = hv_fetch(MY_CXT.sizes_table, key, 2, 0);
if(likely(sizes_svp)) {
return *sizes_svp;
} else {
struct sizes const *sizes =
sizes_construct(line_sz_log2, page_sz_log2);
SV *sizes_sv;
if(!likely(sizes)) return NULL;
sizes_sv = newSV_type(SVt_PV);
SvPV_set(sizes_sv, (char *)sizes);
SvLEN_set(sizes_sv, sizeof(struct sizes));
SvREADONLY_on(sizes_sv);
(void) hv_store(MY_CXT.sizes_table, key, 2, sizes_sv, 0);
return sizes_sv;
}
}
/*
* magic numbers
*/
#define DATA_FILE_MAGIC WORD_C(0xc693dac5ed5e47c2)
#define MASTER_FILE_MAGIC WORD_C(0xa58afd185cbf5af7)
/*
* reference-counted handling of mmaps
*
* We can have several objects referring to a single mapping, and those
* objects' need for the mapping have largely unrelated lifetimes.
* We want to keep the mapping as long as at least one object needs it.
* We therefore reify mappings as SVs, so that ordinary Perl reference
* counting is applied.
*
* However, in threaded builds we can end up needing to share a mapping
* between threads. (The alternative is to duplicate the mapping, for
* which there is no convenient technique.) SVs are not shared between
* threads, and are duplicated across thread cloning, so each thread
* has its own reference count. We therefore require a second layer of
* reference counting, maintained using thread-safe atomic operators,
* to manage the sharing between threads. (We could alternatively
* have had objects that need the mapping directly own a thread-safe
* counted reference, but presumably the intra-thread reference counting
* is cheaper.)
*/
static int THX_mmap_mg_free(pTHX_ SV *sv, MAGIC *mg)
{
void *addr;
PERL_UNUSED_THX();
#if QWITH_DUP
if(unlikely(threadrc_dec((word*)mg->mg_ptr))) return 0;
Safefree(mg->mg_ptr);
#endif /* QWITH_DUP */
PERL_UNUSED_ARG(mg);
addr = SvPVX(sv);
if(likely(addr)) (void) munmap(addr, SvUVX(sv));
return 0;
}
#if QWITH_DUP
static int THX_mmap_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *param)
{
PERL_UNUSED_ARG(param);
threadrc_inc((word*)mg->mg_ptr);
return 0;
}
#endif /* QWITH_DUP */
static MGVTBL const mmap_mgvtbl = {
0, /* get */
0, /* set */
0, /* len */
0, /* clear */
THX_mmap_mg_free, /* free */
#ifdef MGf_COPY
0, /* copy */
#endif /* MGf_COPY */
#ifdef MGf_DUP
# if QWITH_DUP
THX_mmap_mg_dup, /* dup */
# else /* !QWITH_DUP */
0, /* dup */
# endif /* !QWITH_DUP */
#endif /* MGf_DUP */
#ifdef MGf_LOCAL
0, /* local */
#endif /* MGf_LOCAL */
};
#define mmap_early_unmap(mapsv) THX_mmap_early_unmap(aTHX_ mapsv)
PERL_STATIC_INLINE void THX_mmap_early_unmap(pTHX_ SV *mapsv)
{
(void) sv_unmagicext(mapsv, PERL_MAGIC_ext, (MGVTBL*)&mmap_mgvtbl);
}
#define mmap_as_sv(fd, len, wr) THX_mmap_as_sv(aTHX_ fd, len, wr)
static SV *THX_mmap_as_sv(pTHX_ int fd, word len, bool writable)
{
SV *mapsv;
void *addr;
if(unlikely((word)(size_t)len != len || (word)(UV)len != len)) {
errno = ENOMEM;
return NULL;
}
mapsv = sv_2mortal(newSV_type(SVt_PVMG));
#if QWITH_DUP
{
word *rcp;
MAGIC *mg;
Newxz(rcp, 1, word);
mg = sv_magicext(mapsv, NULL, PERL_MAGIC_ext,
(MGVTBL*)&mmap_mgvtbl, (char*)rcp, 0);
mg->mg_flags |= MGf_DUP;
}
#else /* !QWITH_DUP */
(void) sv_magicext(mapsv, NULL, PERL_MAGIC_ext, (MGVTBL*)&mmap_mgvtbl,
NULL, 0);
#endif /* !QWITH_DUP */
addr = mmap(NULL, len,
likely(writable) ? (PROT_READ|PROT_WRITE) : PROT_READ,
MAP_SHARED, fd, 0);
if(unlikely(addr == MAP_FAILED)) return NULL;
SvPV_set(mapsv, (char *)addr);
SvUV_set(mapsv, len);
return mapsv;
}
/*
* event counters
*
* To make these cheap to use, each counter is just a word quantity.
* It is possible for these to wrap.
*/
#if QWITH_TALLY
# define tally_boot() THX_tally_boot(aTHX_ aMY_CXT)
PERL_STATIC_INLINE void THX_tally_boot(pTHX_ pMY_CXT)
{
int i;
for(i = 0; i != K_SZ; i++)
MY_CXT.tally_name_sv[i] = newSVpv_share(tally_name_pv[i], 0);
}
struct tally { word k[K_SZ]; };
# define tally_event(st, type) ((void) ((st)->k[type]++))
# define tally_zero(st) THX_tally_zero(aTHX_ st)
PERL_STATIC_INLINE void THX_tally_zero(pTHX_ struct tally *tally)
{
PERL_UNUSED_THX();
Zero(tally, 1, struct tally);
}
PERL_STATIC_INLINE void tally_add(struct tally *a, struct tally const *b)
{
int i;
for(i = 0; i != K_SZ; i++)
a->k[i] += b->k[i];
}
# define tally_newSVword(v) THX_tally_newSVword(aTHX_ v)
PERL_STATIC_INLINE SV *THX_tally_newSVword(pTHX_ word v)
{
if(likely((word)(UV)v == v)) {
return newSVuv((UV)v);
} else {
/*
* UV isn't big enough. To represent the word value
* exactly, generate a string in decimal. The exact
* numerical value can be recovered from that if the user
* tries hard, and if not then conversion to the default
* numeric types will at least have familiar behaviour.
*
* There might be a printf format that can decimalise a
* word, but there also might not be. As it won't make a
* huge difference to performance, rather than have two
* versions of the code, we just take the DIY approach.
* We know unsigned int is at least 32 bits (because the
* Perl core requires that) and we have a printf format
* for it.
*/
char buf[21], *p;
(void) sprintf(buf, "%08u%06u%06u",
(unsigned) (v / WORD_C(1000000000000)),
(unsigned) ((v / WORD_C(1000000)) % WORD_C(1000000)),
(unsigned) (v % WORD_C(1000000)));
for(p = buf; p[0] == '0'; p++) ;
return newSVpvn(p, buf+20 - p);
}
}
# define tally_as_hvref(st) THX_tally_as_hvref(aTHX_ st)
PERL_STATIC_INLINE SV *THX_tally_as_hvref(pTHX_ struct tally const *tally)
{
dMY_CXT;
HV *hv = newHV();
SV *hvref = newRV_ro_mortal_noinc((SV*)hv);
int i;
for(i = 0; i != K_SZ; i++) {
SV *v = tally_newSVword(tally->k[i]);
SvREADONLY_on(v);
(void) hv_store_ent(hv, MY_CXT.tally_name_sv[i], v,
SvSHARED_HASH(MY_CXT.tally_name_sv[i]));
}
return hvref;
}
#else /* !QWITH_TALLY */
# define tally_boot() ((void) 0)
# define tally_event(st, type) ((void) 0)
# define tally_zero(st) ((void) 0)
# define tally_add(a, b) ((void) 0)
# define tally_as_hvref(st) newRV_ro_mortal_noinc((SV*)newHV())
#endif /* !QWITH_TALLY */
/*
* top-level shash representation
*
* The same structure is used both for live shash handles that can
* update and for snapshot handles. Where a live shash has a memory
* mapping of the master file, a snapshot has a frozen root pointer.
* Both types of handle have a memory mapping of the data file. A live
* shash also has a file descriptor pointing at the directory.
*
* The same mode flag set is used for opening modes and for handle modes,
* because of the overlap.
*/
#define STOREMODE_READ 0x01
#define STOREMODE_WRITE 0x02
#define STOREMODE_CREATE 0x04
#define STOREMODE_EXCLUDE 0x08
#define STOREMODE_SNAPSHOT 0x10
struct shash {
unsigned mode;
word data_size;
word parameter;
#if QWITH_TALLY
struct tally tally;
#endif /* QWITH_TALLY */
union {
struct {
word data_file_id;
dirref_t dir;
SV *master_mmap_sv;
void *master_mmap;
} live;
struct {
word root;
} snapshot;
} u;
SV *top_pathname_sv;
SV *data_mmap_sv;
void *data_mmap;
#if QWITH_DUP
SV *sizes_sv;
#endif /* QWITH_DUP */
struct sizes const *sizes;
/*
* The last member of this structure must be one that can
* be reconstructed from others, because the default scalar
* duplication code doesn't quite copy the scalar's entire
* allocated buffer. It expects a scalar's buffer to contain
* a nul-terminated string, meaning that the last byte of the
* buffer is either the terminating nul or junk past the end of
* the string, so it doesn't actually copy that byte, but sets
* it to nul. So when this structure is stored in a scalar's
* buffer, with no nul terminator, the last member will be
* clobbered in the process of duplication, before our custom
* duplication code gets to run.
*/
};
static int THX_shash_mg_free(pTHX_ SV *sv, MAGIC *mg)
{
struct shash *sh = (struct shash *)SvPVX(sv);
PERL_UNUSED_ARG(mg);
if(!(sh->mode & STOREMODE_SNAPSHOT)) {
if(likely(sh->u.live.master_mmap_sv))
SvREFCNT_dec_NN(sh->u.live.master_mmap_sv);
if(likely(!dirref_is_null(sh->u.live.dir)))
dirref_close(sh->u.live.dir);
}
if(likely(sh->top_pathname_sv)) SvREFCNT_dec_NN(sh->top_pathname_sv);
if(likely(sh->data_mmap_sv)) SvREFCNT_dec_NN(sh->data_mmap_sv);
return 0;
}
#if QWITH_DUP
static int THX_shash_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *param)
{
struct shash *sh = (struct shash *)SvPVX(mg->mg_obj);
if(!(sh->mode & STOREMODE_SNAPSHOT)) {
if(likely(sh->u.live.master_mmap_sv)) {
sh->u.live.master_mmap_sv =
sv_dup_inc(sh->u.live.master_mmap_sv, param);
sh->u.live.master_mmap =
SvPVX(sh->u.live.master_mmap_sv);
}
sh->u.live.dir = dirref_dup(sh->u.live.dir);
}
sh->top_pathname_sv = sv_dup_inc(sh->top_pathname_sv, param);
if(likely(sh->data_mmap_sv)) {
sh->data_mmap_sv = sv_dup_inc(sh->data_mmap_sv, param);
sh->data_mmap = SvPVX(sh->data_mmap_sv);
}
if(likely(sh->sizes_sv)) {
sh->sizes_sv = sv_dup_inc(sh->sizes_sv, param);
sh->sizes = (struct sizes const *)SvPVX(sh->sizes_sv);
}
return 0;
}
#endif /* QWITH_DUP */
static MGVTBL const shash_mgvtbl = {
0, /* get */
0, /* set */
0, /* len */
0, /* clear */
THX_shash_mg_free, /* free */
#ifdef MGf_COPY
0, /* copy */
#endif /* MGf_COPY */
#ifdef MGf_DUP
# if QWITH_DUP
THX_shash_mg_dup, /* dup */
# else /* !QWITH_DUP */
0, /* dup */
# endif /* !QWITH_DUP */
#endif /* MGf_DUP */
#ifdef MGf_LOCAL
0, /* local */
#endif /* MGf_LOCAL */
};
#define shash_apply_magic(shsv) THX_shash_apply_magic(aTHX_ shsv)
PERL_STATIC_INLINE void THX_shash_apply_magic(pTHX_ SV *shsv)
{
MAGIC *mg = sv_magicext(shsv, shsv, PERL_MAGIC_ext,
(MGVTBL*)&shash_mgvtbl, NULL, 0);
PERL_UNUSED_VAR(mg);
#if QWITH_DUP
mg->mg_flags |= MGf_DUP;
#endif /* QWITH_DUP */
}
#define shash_or_null_from_svref(shsvref) \
THX_shash_or_null_from_svref(aTHX_ shsvref)
static struct shash *THX_shash_or_null_from_svref(pTHX_ SV *shsvref)
{
dMY_CXT;
SV *shsv;
SvGETMAGIC(shsvref);
return likely(SvROK(shsvref) && (shsv = SvRV(shsvref)) &&
SvOBJECT(shsv) &&
SvSTASH(shsv) == MY_CXT.shash_handle_stash) ?
(struct shash *)SvPVX(shsv) : NULL;
}
#define arg_error_notshash() THX_arg_error_notshash(aTHX)
PERL_STATIC_INLINE void THX_arg_error_notshash(pTHX) __attribute__noreturn__;
PERL_STATIC_INLINE void THX_arg_error_notshash(pTHX)
{
PERL_UNUSED_THX();
croak("handle is not a shared hash handle");
}
#define shash_from_svref(shsvref) THX_shash_from_svref(aTHX_ shsvref)
static struct shash *THX_shash_from_svref(pTHX_ SV *shsvref)
{
struct shash *sh = shash_or_null_from_svref(shsvref);
if(!likely(sh)) arg_error_notshash();
return sh;
}
#define arg_is_shash(arg) THX_arg_is_shash(aTHX_ arg)
PERL_STATIC_INLINE bool THX_arg_is_shash(pTHX_ SV *arg)
{
return cBOOL(shash_or_null_from_svref(arg));
}
#define arg_check_shash(arg) THX_arg_check_shash(aTHX_ arg)
static void THX_arg_check_shash(pTHX_ SV *arg)
{
if(!likely(arg_is_shash(arg))) arg_error_notshash();
}
#define shash_error(sh, act, msg) THX_shash_error(aTHX_ sh, act, msg)
static void THX_shash_error(pTHX_ struct shash *sh, char const *action,
char const *message) __attribute__noreturn__;
static void THX_shash_error(pTHX_ struct shash *sh, char const *action,
char const *message)
{
#if !PERL_VERSION_GE(5,8,1)
SV *m = mess("can't %s shared hash %"SVf": %s", action,
sh->top_pathname_sv, message);
sv_setsv(ERRSV, m);
croak(NULL);
#else /* >=5.8.1 */
# if !PERL_VERSION_GE(5,10,1)
SvUTF8_off(ERRSV);
# endif /* <5.10.1 */
croak("can't %s shared hash %"SVf": %s", action,
sh->top_pathname_sv, message);
#endif /* >=5.8.1 */
}
#define shash_error_data(sh) THX_shash_error_data(aTHX_ sh)
static void THX_shash_error_data(pTHX_ struct shash *sh)
__attribute__noreturn__;
static void THX_shash_error_data(pTHX_ struct shash *sh)
{
shash_error(sh, "use", "shared hash is corrupted");
}
#define shash_error_errnum(sh, act, en) \
THX_shash_error_errnum(aTHX_ sh, act, en)
static void THX_shash_error_errnum(pTHX_ struct shash *sh, char const *action,
int errnum) __attribute__noreturn__;
static void THX_shash_error_errnum(pTHX_ struct shash *sh, char const *action,
int errnum)
{
shash_error(sh, action, my_strerror(errnum));
}
#define shash_unlinkfile_early(sh, act, par_p) \
THX_shash_unlinkfile_early(aTHX_ sh, act, par_p)
static void THX_shash_unlinkfile_early(pTHX_ struct shash *sh,
char const *action, struct unlinkfile_cleanup_par *par_p)
{
int e;
if(likely(unlinkfile_early(par_p) != -1)) return;
e = errno;
if(likely(e == ENOENT) || likely(e == EBUSY)) return;
shash_error_errnum(sh, action, e);
}
#define shash_error_errno(sh, act) THX_shash_error_errno(aTHX_ sh, act)
static void THX_shash_error_errno(pTHX_ struct shash *sh, char const *action)
__attribute__noreturn__;
static void THX_shash_error_errno(pTHX_ struct shash *sh, char const *action)
{
shash_error_errnum(sh, action, errno);
}
#define shash_check_readable(sh, act) THX_shash_check_readable(aTHX_ sh, act)
static void THX_shash_check_readable(pTHX_ struct shash *sh, char const *action)
{
if(!likely(sh->mode & STOREMODE_READ))
shash_error(sh, action,
"shared hash was opened in unreadable mode");
}
#define shash_check_writable(sh, act) THX_shash_check_writable(aTHX_ sh, act)
static void THX_shash_check_writable(pTHX_ struct shash *sh, char const *action)
{
if(unlikely(sh->mode & STOREMODE_SNAPSHOT))
shash_error(sh, action, "shared hash handle is a snapshot");
if(!likely(sh->mode & STOREMODE_WRITE))
shash_error(sh, action,
"shared hash was opened in unwritable mode");
}
/* shash file handling */
#define FILENAME_PREFIX_LEN 10
#define MASTER_FILENAME "iNmv0,m$%3"
#define DATA_FILENAME_PREFIX "&\"JBLMEgGm"
#define DATA_FILENAME_SUFFIX_LEN (WORD_SZ<<1)
#define TEMP_FILENAME_PREFIX "DNaM6okQi;"
#define DATA_FILENAME_BUFSIZE (FILENAME_PREFIX_LEN+DATA_FILENAME_SUFFIX_LEN+1)
#define dir_make_data_filename(buf, fid) \
THX_dir_make_data_filename(aTHX_ buf, fid)
static void THX_dir_make_data_filename(pTHX_ char *buf, word fileid)
{
PERL_UNUSED_THX();
(void) sprintf(buf, "%s%08x%08x",
DATA_FILENAME_PREFIX, (unsigned)(fileid >> 32),
(unsigned)(fileid & WORD_C(0xffffffff)));
}
#define TEMP_FILENAME_BUFSIZE (FILENAME_PREFIX_LEN+8+8+8+1)
#define dir_make_temp_filename(buf) THX_dir_make_temp_filename(aTHX_ buf)
PERL_STATIC_INLINE void THX_dir_make_temp_filename(pTHX_ char *buf)
{
unsigned s, ns;
PERL_UNUSED_THX();
#if QHAVE_CLOCK_GETTIME && defined(CLOCK_REALTIME)
{
struct timespec ts;
if(likely(clock_gettime(CLOCK_REALTIME, &ts) == 0)) {
s = ts.tv_sec;
ns = ts.tv_nsec;
goto got_time;
}
}
#endif /* QHAVE_CLOCK_GETTIME && CLOCK_REALTIME */
#if QHAVE_GETTIMEOFDAY
{
struct timeval tv;
if(likely(gettimeofday(&tv, NULL) == 0)) {
s = tv.tv_sec;
ns = tv.tv_usec * 1000;
goto got_time;
}
}
#endif /* QHAVE_GETTIMEOFDAY */
{
s = time(NULL);
ns = 0;
goto got_time;
}
got_time:
(void) sprintf(buf, "%s%08x%08x%08x", TEMP_FILENAME_PREFIX,
s & 0xffffffffU, ns & 0xffffffffU,
((unsigned)getpid()) & 0xffffffffU);
}
enum {
FILENAME_CLASS_BOGUS,
FILENAME_CLASS_MASTER,
FILENAME_CLASS_TEMP,
FILENAME_CLASS_DATA
};
#define dir_filename_class(fn, id_p) THX_dir_filename_class(aTHX_ fn, id_p)
static int THX_dir_filename_class(pTHX_ char const *filename, word *id_p)
{
size_t fnlen;
PERL_UNUSED_THX();
if(filename[0] == '.') return FILENAME_CLASS_MASTER;
fnlen = strlen(filename);
if(fnlen == FILENAME_PREFIX_LEN &&
memcmp(filename, MASTER_FILENAME,
FILENAME_PREFIX_LEN) == 0)
return FILENAME_CLASS_MASTER;
if(fnlen >= FILENAME_PREFIX_LEN &&
memcmp(filename, TEMP_FILENAME_PREFIX,
FILENAME_PREFIX_LEN) == 0)
return FILENAME_CLASS_TEMP;
if(likely(fnlen == FILENAME_PREFIX_LEN+DATA_FILENAME_SUFFIX_LEN &&
memcmp(filename, DATA_FILENAME_PREFIX,
FILENAME_PREFIX_LEN) == 0)) {
char const *p;
word id = 0;
for(p = filename+FILENAME_PREFIX_LEN; ; p++) {
char c = *p;
word v;
if(!c) break;
if(likely(c >= '0' && c <= '9')) {
v = c - '0';
} else if(likely(c >= 'a' && c <= 'f')) {
v = c - 'a' + 10;
} else {
return FILENAME_CLASS_BOGUS;
}
id = (id << 4) | v;
}
if(likely(id != 0)) {
*id_p = id;
return FILENAME_CLASS_DATA;
}
}
return FILENAME_CLASS_BOGUS;
}
typedef void (*iterate_fn_t)(pTHX_ struct shash *sh, char const *action,
char const *fn, word arg);
#define dir_iterate(sh, act, iter, arg) \
THX_dir_iterate(aTHX_ sh, act, iter, arg)
static void THX_dir_iterate(pTHX_ struct shash *sh, char const *action,
iterate_fn_t THX_iterate, word arg)
{
DIR *dirh;
closedirh_ref_t dirhr;
int old_errno = errno;
dirh = dirref_dir_opendir(sh->u.live.dir);
if(!likely(dirh)) shash_error_errno(sh, action);
dirhr = closedirh_save(dirh);
while(1) {
struct dirent *de;
errno = 0;
de = readdir(dirh);
if(!likely(de)) break;
THX_iterate(aTHX_ sh, action, de->d_name, arg);
}
if(unlikely(errno)) shash_error_errno(sh, action);
errno = old_errno;
closedirh_early(dirhr);
}
static void THX_dir_clean_file(pTHX_ struct shash *sh, char const *action,
char const *fn, word curfileid)
{
word fileid;
int cls = dir_filename_class(fn, &fileid);
int e;
if(!unlikely(cls == FILENAME_CLASS_TEMP ||
(cls == FILENAME_CLASS_DATA &&
unlikely((curfileid - fileid - 1) <
(((word)1) << 62)))))
return;
if(!unlikely(dirref_rel_unlink(sh->u.live.dir, fn) == -1)) return;
e = errno;
if(likely(e == ENOENT) || likely(e == EBUSY)) return;
shash_error_errnum(sh, action, e);
}
#define dir_clean(sh, act, curfileid) THX_dir_clean(aTHX_ sh, act, curfileid)
PERL_STATIC_INLINE void THX_dir_clean(pTHX_ struct shash *sh,
char const *action, word curfileid)
{
dir_iterate(sh, action, THX_dir_clean_file, curfileid);
}
/*
* shash operation fundamentals
*
* Allocation of space in the shash is slightly complexified in order to
* use space efficiently, because at the low level allocation must be of
* integral lines, but objects only need to be word-aligned. Allocation
* of word-aligned space is performed by shash_alloc(). Where possible,
* this allocates from a line already owned by this process. If it
* needs to acquire a new line, and the new line happens to abut one
* already owned (which happens if no other process allocated space in
* the intervening time), it will take advantage of the contiguous region.
*
* Allocation is managed separately for each write operation. The state
* of allocation is managed in a struct shash_alloc, which must be created
* (on the stack) by the top-level mutation function. Principally this
* structure records any partial line that is owned by this process
* and available for allocation. When a write operation is complete,
* the allocation state (and any unused partial line) is discarded.
*/
#define NULL_PTR (~(word)0)
#define ZEROPAD_PTR ((word)DHD_ZEROPAD)
#define PTR_FLAG_ROLLOVER ((word)1)
#define unchecked_pointer_loc(sh, ptr) (&WORD_AT(sh->data_mmap, ptr))
#define pointer_loc(sh, ptr, sp) THX_pointer_loc(aTHX_ sh, ptr, sp)
static word *THX_pointer_loc(pTHX_ struct shash *sh, word ptr, word *spc_p)
{
word ds = sh->data_size;
if(!likely(IS_WORD_ALIGNED(ptr))) shash_error_data(sh);
if(unlikely(ptr >= ds)) shash_error_data(sh);
*spc_p = ds - ptr;
return unchecked_pointer_loc(sh, ptr);
}
#define shash_ensure_data_file(sh) THX_shash_ensure_data_file(aTHX_ sh)
static void THX_shash_ensure_data_file(pTHX_ struct shash *sh)
{
word datafileid;
char data_filename[DATA_FILENAME_BUFSIZE];
int data_fd;
closefd_ref_t fdr;
struct stat statbuf;
SV *mapsv;
tmps_ix_t old_tmps_floor;
datafileid = word_get(&WORD_AT(sh->u.live.master_mmap,
sh->sizes->mfl_current_datafileid));
if(likely(mapsv = sh->data_mmap_sv)) {
if(likely(datafileid == sh->u.live.data_file_id)) return;
sh->data_mmap_sv = NULL;
SvREFCNT_dec_NN(mapsv);
}
attempt_to_open_data:
if(unlikely(datafileid == 0)) {
word dsz = PAGE_ALIGN(sh->sizes, sh->sizes->dhd_sz + WORD_SZ);
char *map;
if(unlikely(!dsz || (word)(size_t)dsz != dsz ||
(word)(STRLEN)dsz != dsz))
shash_error_errnum(sh, "use", ENOMEM);
Newxz(map, dsz, char);
WORD_AT(map, DHD_MAGIC) = DATA_FILE_MAGIC;
WORD_AT(map, DHD_PARAM) = sh->parameter;
WORD_AT(map, DHD_LENGTH) = dsz;
WORD_AT(map, sh->sizes->dhd_nextalloc_space) = dsz;
WORD_AT(map, sh->sizes->dhd_current_root) =
sh->sizes->dhd_sz | PTR_FLAG_ROLLOVER;
mapsv = newSV_type(SVt_PV);
SvPV_set(mapsv, map);
SvLEN_set(mapsv, dsz);
sh->data_mmap = map;
sh->data_mmap_sv = mapsv;
sh->data_size = dsz;
sh->u.live.data_file_id = 0;
return;
}
dir_make_data_filename(data_filename, datafileid);
data_fd = dirref_rel_open_cloexec(sh->u.live.dir, data_filename,
likely(sh->mode & STOREMODE_WRITE) ? O_RDWR : O_RDONLY, 0);
if(unlikely(data_fd == -1)) {
word newdatafileid;
if(unlikely(errno != ENOENT)) shash_error_errno(sh, "use");
newdatafileid = word_get(&WORD_AT(sh->u.live.master_mmap,
sh->sizes->mfl_current_datafileid));
if(likely(newdatafileid != datafileid)) {
datafileid = newdatafileid;
goto attempt_to_open_data;
}
shash_error_data(sh);
}
fdr = closefd_save(data_fd);
if(unlikely(fstat(data_fd, &statbuf) == -1))
shash_error_errno(sh, "use");
if(!likely(S_ISREG(statbuf.st_mode) &&
(off_t)(word)statbuf.st_size == statbuf.st_size &&
(word)statbuf.st_size >= sh->sizes->dhd_sz &&
IS_PAGE_ALIGNED(sh->sizes, (word)statbuf.st_size)))
shash_error_data(sh);
sh->data_size = statbuf.st_size;
old_tmps_floor = PL_tmps_floor;
SAVETMPS;
mapsv = mmap_as_sv(data_fd, sh->data_size,
cBOOL(sh->mode & STOREMODE_WRITE));
if(!likely(mapsv)) shash_error_errno(sh, "use");
sh->u.live.data_file_id = datafileid;
sh->data_mmap_sv = SvREFCNT_inc_simple_NN(mapsv);
sh->data_mmap = SvPVX(mapsv);
FREETMPS;
PL_tmps_floor = old_tmps_floor;
closefd_early(fdr);
if(!likely(WORD_AT(sh->data_mmap, DHD_MAGIC) == DATA_FILE_MAGIC &&
WORD_AT(sh->data_mmap, DHD_PARAM) == sh->parameter &&
WORD_AT(sh->data_mmap, DHD_LENGTH) == sh->data_size))
shash_error_data(sh);
}
#define shash_error_toobig(sh, act) THX_shash_error_toobig(aTHX_ sh, act)
static void THX_shash_error_toobig(pTHX_ struct shash *sh, char const *action)
__attribute__noreturn__;
static void THX_shash_error_toobig(pTHX_ struct shash *sh, char const *action)
{
shash_error(sh, action, "data too large for a shared hash");
}
struct shash_alloc {
word prealloc_len;
byte *prealloc_loc;
char const *action;
jmp_buf fulljb;
};
#define shash_alloc(sh, alloc, len, pp) \
THX_shash_alloc(aTHX_ sh, alloc, len, pp)
static word *THX_shash_alloc(pTHX_ struct shash *sh, struct shash_alloc *alloc,
word len, word *ptr_p)
{
byte *prealloc_end, *loc;
word *nextalloc_p, data_size, pos, epos;
word wlen = WORD_ALIGN(len), llen;
if(!likely(wlen) && unlikely(len))
shash_error_toobig(sh, alloc->action);
if(unlikely(wlen <= alloc->prealloc_len)) goto got_prealloc;
prealloc_end = alloc->prealloc_loc + alloc->prealloc_len;
nextalloc_p = &WORD_AT(sh->data_mmap, sh->sizes->dhd_nextalloc_space);
data_size = sh->data_size;
pos = word_get(nextalloc_p);
if(unlikely(!IS_LINE_ALIGNED(sh->sizes, pos) || pos > data_size))
shash_error_data(sh);
if(likely(&BYTE_AT(sh->data_mmap, pos) == prealloc_end)) {
llen = LINE_ALIGN(sh->sizes, wlen - alloc->prealloc_len);
if(!likely(llen)) shash_error_toobig(sh, alloc->action);
epos = pos + llen;
if(unlikely(epos < pos || epos > data_size))
longjmp(alloc->fulljb, 1);
if(likely(word_cset(nextalloc_p, pos, epos))) {
alloc->prealloc_len += llen;
goto got_prealloc;
}
}
llen = LINE_ALIGN(sh->sizes, wlen);
if(!likely(llen)) shash_error_toobig(sh, alloc->action);
while(1) {
pos = word_get(nextalloc_p);
if(unlikely(!IS_LINE_ALIGNED(sh->sizes, pos) ||
pos > data_size))
shash_error_data(sh);
epos = pos + llen;
if(unlikely(epos < pos || epos > data_size))
longjmp(alloc->fulljb, 1);
if(likely(word_cset(nextalloc_p, pos, epos))) {
byte *newalloc_loc = &BYTE_AT(sh->data_mmap, pos);
alloc->prealloc_loc = newalloc_loc;
alloc->prealloc_len = llen;
break;
}
}
got_prealloc:
loc = alloc->prealloc_loc;
alloc->prealloc_loc += wlen;
alloc->prealloc_len -= wlen;
*ptr_p = loc - (byte*)sh->data_mmap;
return (word*)loc;
}
/* strings in the shash */
#define string_as_pvl(sh, ptr) THX_string_as_pvl(aTHX_ sh, ptr)
static struct pvl THX_string_as_pvl(pTHX_ struct shash *sh, word ptr)
{
word len, *loc, spc, alloclen;
struct pvl pvl;
loc = pointer_loc(sh, ptr, &spc);
len = loc[0];
alloclen = len + WORD_SZ+1;
if(unlikely(alloclen < WORD_SZ+1 || alloclen > spc))
shash_error_data(sh);
if(unlikely((word)(size_t)len != len))
shash_error_errnum(sh, "use", ENOMEM);
pvl.pv = (char*)&loc[1];
pvl.len = len;
if(unlikely(pvl.pv[pvl.len])) shash_error_data(sh);
tally_event(&sh->tally, K_STRING_READ);
return pvl;
}
static MGVTBL const string_mmapref_mgvtbl;
#define string_as_sv(sh, act, ptr) THX_string_as_sv(aTHX_ sh, act, ptr)
static SV *THX_string_as_sv(pTHX_ struct shash *sh, char const *action,
word ptr)
{
struct pvl pvl = string_as_pvl(sh, ptr);
SV *sv;
if(unlikely((size_t)(STRLEN)pvl.len != pvl.len))
shash_error_errnum(sh, action, ENOMEM);
TAINT;
/*
* There are two strategies available for returning the string
* as an SV. We can copy into a plain string SV, or we can point
* into the mmaped space. In the latter case the result SV needs
* magic to keep a reference to the object representing the mmap,
* to keep it mapped. In both time and memory, the overhead of
* pointing into the mmap is pretty much fixed, but the overhead
* of copying is roughly linear in the length of the string.
* The base overhead for copying is much less than the fixed
* overhead of mapping.
*
* We therefore want to copy short strings and map long strings.
* Choosing the threshold at which to switch is a black art.
*
* Empirical result for perl 5.16 on amd64 with glibc 2.11
* is that 119-octet strings are better copied and 120-octet
* strings are better mapped, with a sharp step in the cost of
* copying at that length. This is presumably due to the memory
* allocator switching strategy when allocating 128 octets or more
* (rounded up from 120+1).
*
* The memory allocations of interest are one XPV and the
* buffer for copying, and one XPVMG and one MAGIC for mapping.
* The ugly expression here tries to compare the two sets of
* allocations. The XPVMG+MAGIC - XPV difference is compared
* against the potential buffer size. It is presumed that the
* buffer length will be rounded up to a word-aligned size.
* The structure size difference is rounded up in an attempt to
* find a threshold likely to be used by the memory allocator.
* Ideally this would be rounded to the next power of 2, but we
* can't implement that in a constant expression, so it's actually
* rounded to the next multiple of the XPVMG size. The formula
* is slightly contrived so as to achieve the exact 120-octet
* threshold on the amd64 system used for speed trials (where
* MAGIC is 40 octets, XPV is 32 octets, and XPVMG is 64 octets).
*/
if(pvl.len < sizeof(XPVMG) *
((sizeof(MAGIC)+sizeof(XPVMG)*2-1) / sizeof(XPVMG)) -
sizeof(size_t)) {
sv = newSVpvn_mortal(pvl.pv, pvl.len);
} else {
sv = sv_2mortal(newSV_type(SVt_PVMG));
(void) sv_magicext(sv, sh->data_mmap_sv, PERL_MAGIC_ext,
(MGVTBL*)&string_mmapref_mgvtbl, NULL, 0);
SvPV_set(sv, pvl.pv);
SvCUR_set(sv, pvl.len);
SvPOK_on(sv);
SvTAINTED_on(sv);
}
SvREADONLY_on(sv);
return sv;
}
#define string_cmp_pvl(sh, aptr, bpvl) THX_string_cmp_pvl(aTHX_ sh, aptr, bpvl)
static int THX_string_cmp_pvl(pTHX_ struct shash *sh, word aptr,
struct pvl bpvl)
{
struct pvl apvl = string_as_pvl(sh, aptr);
int r;
tally_event(&sh->tally, K_KEY_COMPARE);
r = memcmp(apvl.pv, bpvl.pv, apvl.len < bpvl.len ? apvl.len : bpvl.len);
return r ? r : apvl.len == bpvl.len ? 0 : apvl.len < bpvl.len ? -1 : 1;
}
#define string_eq_pvl(sh, aptr, bpvl) THX_string_eq_pvl(aTHX_ sh, aptr, bpvl)
PERL_STATIC_INLINE int THX_string_eq_pvl(pTHX_ struct shash *sh, word aptr,
struct pvl bpvl)
{
struct pvl apvl = string_as_pvl(sh, aptr);
return apvl.len == bpvl.len && memcmp(apvl.pv, bpvl.pv, apvl.len) == 0;
}
#define string_write_from_pvl(sh, alloc, pvl) \
THX_string_write_from_pvl(aTHX_ sh, alloc, pvl)
static word THX_string_write_from_pvl(pTHX_ struct shash *sh,
struct shash_alloc *alloc, struct pvl pvl)
{
word alloclen, ptr, *loc;
if(unlikely((size_t)(word)pvl.len != pvl.len))
shash_error_toobig(sh, alloc->action);
if(unlikely(pvl.len == 0) &&
likely(sh->sizes->dhd_zeropad_sz >= WORD_SZ+1))
return ZEROPAD_PTR;
alloclen = ((word)pvl.len) + WORD_SZ + 1;
if(unlikely(alloclen < WORD_SZ+1))
shash_error_toobig(sh, alloc->action);
loc = shash_alloc(sh, alloc, alloclen, &ptr);
loc[0] = pvl.len;
(void) memcpy(&loc[1], pvl.pv, pvl.len);
((byte*)&loc[1])[pvl.len] = 0;
tally_event(&sh->tally, K_STRING_WRITE);
return ptr;
}
#define string_size(sh, ptr) THX_string_size(aTHX_ sh, ptr)
PERL_STATIC_INLINE word THX_string_size(pTHX_ struct shash *sh, word ptr)
{
word spc;
word len = pointer_loc(sh, ptr, &spc)[0];
if(unlikely(len == 0) && likely(sh->sizes->dhd_zeropad_sz >= WORD_SZ+1))
return 0;
return WORD_ALIGN(len + WORD_SZ+1);
}
#define string_migrate(shf, ptrf, sht, alloct) \
THX_string_migrate(aTHX_ shf, ptrf, sht, alloct)
PERL_STATIC_INLINE word THX_string_migrate(pTHX_ struct shash *shf, word ptrf,
struct shash *sht, struct shash_alloc *alloct)
{
return string_write_from_pvl(sht, alloct, string_as_pvl(shf, ptrf));
}
/*
* btrees in the shash
*
* Things are a bit asymmetric because we're only caching lower bound
* keys in the btree nodes. For the most part, the first key in each
* node is ignored, because it isn't needed in order to decide where
* to descend. The other keys (numbering one less than the number of
* subnodes) are treated as boundaries between the subnodes. Thus for
* descent purposes the leftmost nodes are treated as if ther lower
* bound key is the empty string (the leftmost possible key).
*
* The first key in a node is only interesting at the leaf layer, where
* ordering relative to the target key needs to be fully resolved.
* However, when descending to a non-leftmost node, the comparison
* against the node's first key has already been made in the parent node.
* So the node's first key only needs to be fully included in the search
* process for the leftmost leaf node.
*
* When inserting into the btree, by using the same search mechanism we
* always end up inserting subnodes after some existing subnode, except
* in the necessary special case where the key of interest precedes the
* first key in the shash.
*
* A cursor points to a location in a btree, keeping track of all of
* its ancestor nodes and the relevant index in each node. It can be
* used as if it points to an item in the btree, or as if it points to a
* gap (either between items or to the left or right of all the items).
* The cursor structure doesn't record which way it's being used; that's
* a matter of interpretation. A cursor structure pointing at an item
* is identical to the cursor structure pointing at the gap immediately
* to the right of that item. In order to represent pointing at the gap
* immediately to the left of the leftmost item, the cursor structure
* may point to a notional item just to the left of the leftmost item,
* in which case the index in each node is 0, except in the leaf layer,
* where the index is -1.
*/
#define MINFANOUT ((MAXFANOUT+1)>>1)
#define LAYER_MAX 0x3f
#define bnode_header_layer(h) ((h) & LAYER_MAX)
#define bnode_header_fanout(h) (((h) >> 8) & BYTE_MAX)
#define bnode_header_pad(h) ((h) & WORD_C(0xffffffffffff00c0))
#define bnode_body_loc(loc) (&(loc)[1])
#define bnode_check(sh, np, el, lp, fo) \
THX_bnode_check(aTHX_ sh, np, el, lp, fo)
static word const *THX_bnode_check(pTHX_ struct shash *sh, word ptr,
int expect_layer, int *layer_p, int *fanout_p)
{
word header, spc;
word const *loc;
int layer, fanout;
loc = pointer_loc(sh, ptr, &spc);
header = loc[0];
layer = bnode_header_layer(header);
fanout = bnode_header_fanout(header);
if(unlikely(bnode_header_pad(header) || fanout > MAXFANOUT ||
spc < WORD_SZ + (((size_t)fanout) << (WORD_SZ_LOG2+1))))
shash_error_data(sh);
if(unlikely(expect_layer == -1)) {
if(unlikely(fanout < 2 && layer != 0)) shash_error_data(sh);
} else {
if(unlikely(layer != expect_layer || fanout < MINFANOUT))
shash_error_data(sh);
}
*layer_p = layer;
*fanout_p = fanout;
tally_event(&sh->tally, K_BNODE_READ);
return loc;
}
#define BNODE_SEARCH_EXACT INT_MIN
#define bnode_search(sh, nl, fo, lm, kpvl) \
THX_bnode_search(aTHX_ sh, nl, fo, lm, kpvl)
static int THX_bnode_search(pTHX_ struct shash *sh, word const *loc,
int fanout, bool leftmost, struct pvl keypvl)
{
int l, r;
word const *nodebody = bnode_body_loc(loc);
for(l = unlikely(leftmost) ? -1 : 0, r = fanout - 1; l != r; ) {
/* binary search invariant:
* search key > lower bount of subnode [l]
* search key < upper bound of subnode [r]
*/
int m = (l+r+1) >> 1;
int cmpm = string_cmp_pvl(sh, nodebody[m << 1], keypvl);
if(unlikely(cmpm == 0)) {
return BNODE_SEARCH_EXACT | (m + 1);
} else if(cmpm > 0) {
r = m-1;
} else {
l = m;
}
}
return l + 1;
}
#define bnode_write(sh, alloc, nh, ne, nb) \
THX_bnode_write(aTHX_ sh, alloc, nh, ne, nb)
static word THX_bnode_write(pTHX_ struct shash *sh, struct shash_alloc *alloc,
int layer, int fanout, word const *nodebody)
{
word ptr, *loc;
if(unlikely(fanout == 0) && likely(layer == 0) &&
likely(sh->sizes->dhd_zeropad_sz >= WORD_SZ))
return ZEROPAD_PTR;
loc = shash_alloc(sh, alloc, WORD_SZ + (fanout << (WORD_SZ_LOG2+1)),
&ptr);
loc[0] = layer | (fanout << 8);
(void) memcpy(&loc[1], nodebody, fanout << (WORD_SZ_LOG2+1));
tally_event(&sh->tally, K_BNODE_WRITE);
return ptr;
}
struct cursor_entry {
word nodeptr;
short index;
byte fanout;
};
struct cursor {
byte root_layer;
struct cursor_entry ent[LAYER_MAX+1];
};
#define btree_seek_key(sh, cs, rt, keypvl) \
THX_btree_seek_key(aTHX_ sh, cs, rt, keypvl)
static bool THX_btree_seek_key(pTHX_ struct shash *sh, struct cursor *cursor,
word root, struct pvl keypvl)
{
bool leftmost = 1;
int layer, pos, fanout;
word ptr;
word const *ndloc;
ndloc = bnode_check(sh, root, -1, &layer, &fanout);
cursor->root_layer = layer;
cursor->ent[layer].nodeptr = root;
while(1) {
cursor->ent[layer].fanout = fanout;
pos = bnode_search(sh, ndloc, fanout, leftmost && layer == 0,
keypvl);
cursor->ent[layer].index = (pos & ~BNODE_SEARCH_EXACT) - 1;
if(unlikely(pos & BNODE_SEARCH_EXACT))
goto exact_match;
if(unlikely(layer == 0)) return 0;
if(likely(pos != 1)) leftmost = 0;
ptr = bnode_body_loc(ndloc)[(pos<<1)-1];
layer--;
cursor->ent[layer].nodeptr = ptr;
ndloc = bnode_check(sh, ptr, layer, &layer, &fanout);
}
exact_match:
if(likely(layer == 0)) return 1;
ptr = bnode_body_loc(ndloc)[((pos&~BNODE_SEARCH_EXACT)<<1)-1];
while(1) {
layer--;
cursor->ent[layer].nodeptr = ptr;
ndloc = bnode_check(sh, ptr, layer, &layer, &fanout);
cursor->ent[layer].fanout = fanout;
cursor->ent[layer].index = 0;
if(likely(layer == 0)) break;
ptr = bnode_body_loc(ndloc)[1];
}
return 1;
}
#define btree_seek_min(sh, cs, rt) THX_btree_seek_min(aTHX_ sh, cs, rt)
static bool THX_btree_seek_min(pTHX_ struct shash *sh,
struct cursor *cursor, word root)
{
int layer, fanout;
word const *ndloc;
ndloc = bnode_check(sh, root, -1, &layer, &fanout);
cursor->root_layer = layer;
cursor->ent[layer].nodeptr = root;
while(1) {
word ptr;
cursor->ent[layer].fanout = fanout;
cursor->ent[layer].index = 0;
if(unlikely(layer == 0)) return likely(fanout != 0);
ptr = bnode_body_loc(ndloc)[1];
layer--;
cursor->ent[layer].nodeptr = ptr;
ndloc = bnode_check(sh, ptr, layer, &layer, &fanout);
}
}
#define btree_seek_max(sh, cs, rt) THX_btree_seek_max(aTHX_ sh, cs, rt)
PERL_STATIC_INLINE bool THX_btree_seek_max(pTHX_ struct shash *sh,
struct cursor *cursor, word root)
{
int layer, fanout;
word const *ndloc;
ndloc = bnode_check(sh, root, -1, &layer, &fanout);
cursor->root_layer = layer;
cursor->ent[layer].nodeptr = root;
while(1) {
word ptr;
cursor->ent[layer].fanout = fanout;
cursor->ent[layer].index = fanout - 1;
if(unlikely(layer == 0)) return likely(fanout != 0);
ptr = bnode_body_loc(ndloc)[(fanout<<1)-1];
layer--;
cursor->ent[layer].nodeptr = ptr;
ndloc = bnode_check(sh, ptr, layer, &layer, &fanout);
}
}
#define btree_seek_inc(sh, cs) THX_btree_seek_inc(aTHX_ sh, cs)
static bool THX_btree_seek_inc(pTHX_ struct shash *sh, struct cursor *cursor)
{
int layer = 0, pos;
while(1) {
pos = cursor->ent[layer].index + 1;
if(likely(pos != cursor->ent[layer].fanout)) break;
if(unlikely(layer == cursor->root_layer)) return 0;
layer++;
}
cursor->ent[layer].index = pos;
if(unlikely(layer != 0)) {
word ptr = bnode_body_loc(
unchecked_pointer_loc(sh, cursor->ent[layer].nodeptr))
[(pos<<1)+1];
while(1) {
int fanout;
word const *ndloc;
layer--;
cursor->ent[layer].nodeptr = ptr;
ndloc = bnode_check(sh, ptr, layer, &layer, &fanout);
cursor->ent[layer].fanout = fanout;
cursor->ent[layer].index = 0;
if(likely(layer == 0)) break;
ptr = bnode_body_loc(ndloc)[1];
}
}
return 1;
}
#define btree_seek_dec(sh, cs) THX_btree_seek_dec(aTHX_ sh, cs)
PERL_STATIC_INLINE bool THX_btree_seek_dec(pTHX_ struct shash *sh,
struct cursor *cursor)
{
int layer = 0, pos;
while(1) {
pos = cursor->ent[layer].index - 1;
if(likely(pos != -1)) break;
if(unlikely(layer == cursor->root_layer)) return 0;
layer++;
}
cursor->ent[layer].index = pos;
if(unlikely(layer != 0)) {
word ptr = bnode_body_loc(
unchecked_pointer_loc(sh, cursor->ent[layer].nodeptr))
[(pos<<1)+1];
while(1) {
int fanout;
word const *ndloc;
layer--;
cursor->ent[layer].nodeptr = ptr;
ndloc = bnode_check(sh, ptr, layer, &layer, &fanout);
cursor->ent[layer].fanout = fanout;
cursor->ent[layer].index = fanout - 1;
if(likely(layer == 0)) break;
ptr = bnode_body_loc(ndloc)[(fanout<<1)-1];
}
}
return 1;
}
#define btree_cursor_key(sh, cs) THX_btree_cursor_key(aTHX_ sh, cs)
PERL_STATIC_INLINE word THX_btree_cursor_key(pTHX_ struct shash *sh,
struct cursor *cursor)
{
PERL_UNUSED_THX();
return bnode_body_loc(unchecked_pointer_loc(sh, cursor->ent[0].nodeptr))
[(cursor->ent[0].index << 1)];
}
#define btree_cursor_get(sh, cs) THX_btree_cursor_get(aTHX_ sh, cs)
PERL_STATIC_INLINE word THX_btree_cursor_get(pTHX_ struct shash *sh,
struct cursor *cursor)
{
PERL_UNUSED_THX();
return bnode_body_loc(unchecked_pointer_loc(sh, cursor->ent[0].nodeptr))
[(cursor->ent[0].index << 1) + 1];
}
#define btree_cursor_modify(sh, alloc, ocs, repl, ik, iv) \
THX_btree_cursor_modify(aTHX_ sh, alloc, ocs, repl, ik, iv)
static word THX_btree_cursor_modify(pTHX_ struct shash *sh,
struct shash_alloc *alloc, struct cursor *oldcursor,
bool replace, word inskeyptr, word insvalptr)
{
int ntorm, ntoin, layer = 0, posadj;
word inakey = NULL_PTR, inaval = NULL_PTR;
word inbkey = NULL_PTR, inbval = NULL_PTR;
word nodebody[(MAXFANOUT+MINFANOUT-1)*2];
ntorm = replace ? 1 : 0;
posadj = replace ? 0 : 1;
if(inskeyptr == NULL_PTR) {
ntoin = 0;
} else {
ntoin = 1;
inakey = inskeyptr;
inaval = insvalptr;
}
do {
int nfanout = oldcursor->ent[layer].fanout;
int modpos = oldcursor->ent[layer].index + posadj;
word *ndloc = unchecked_pointer_loc(sh,
oldcursor->ent[layer].nodeptr);
posadj = 0;
(void) memcpy(nodebody, bnode_body_loc(ndloc),
modpos << (WORD_SZ_LOG2+1));
if(likely(ntoin)) {
nodebody[modpos<<1] = inakey;
nodebody[(modpos<<1)+1] = inaval;
if(unlikely(ntoin > 1)) {
nodebody[(modpos<<1)+2] = inbkey;
nodebody[(modpos<<1)+3] = inbval;
}
}
(void) memcpy(nodebody + ((modpos+ntoin)<<1),
bnode_body_loc(ndloc) + ((modpos+ntorm)<<1),
(nfanout-(modpos+ntorm)) << (WORD_SZ_LOG2+1));
nfanout = nfanout - ntorm + ntoin;
if(likely(nfanout >= MINFANOUT)) {
ntorm = 1;
} else {
word const *upndloc;
int uppos;
if(likely(layer == oldcursor->root_layer)) {
if(unlikely(nfanout == 1) && likely(layer != 0))
return nodebody[1];
return bnode_write(sh, alloc, layer, nfanout,
nodebody);
}
ntorm = 2;
upndloc = unchecked_pointer_loc(sh,
oldcursor->ent[layer+1].nodeptr);
uppos = oldcursor->ent[layer+1].index;
if(likely(uppos + 1 !=
oldcursor->ent[layer+1].fanout)) {
int adjnlayer, adjnfanout;
word adjndptr =
bnode_body_loc(upndloc)[(uppos<<1) + 3];
word const *adjndloc =
bnode_check(sh, adjndptr, layer,
&adjnlayer, &adjnfanout);
(void) memcpy(nodebody + (nfanout<<1),
bnode_body_loc(adjndloc),
adjnfanout << (WORD_SZ_LOG2+1));
nfanout += adjnfanout;
} else {
int adjnlayer, adjnfanout;
word adjndptr;
word const *adjndloc;
posadj = -1;
adjndptr =
bnode_body_loc(upndloc)[(uppos<<1) - 1];
adjndloc = bnode_check(sh, adjndptr, layer,
&adjnlayer, &adjnfanout);
(void) memmove(nodebody + (adjnfanout<<1),
nodebody, nfanout << (WORD_SZ_LOG2+1));
(void) memcpy(nodebody,
bnode_body_loc(adjndloc),
adjnfanout << (WORD_SZ_LOG2+1));
nfanout += adjnfanout;
}
}
if(unlikely(nfanout > MAXFANOUT)) {
int splitpos = nfanout >> 1;
inakey = nodebody[0];
inaval = bnode_write(sh, alloc, layer, splitpos,
nodebody);
inbkey = nodebody[splitpos << 1];
inbval = bnode_write(sh, alloc, layer, nfanout-splitpos,
nodebody + (splitpos<<1));
ntoin = 2;
} else {
inakey = nodebody[0];
inaval = bnode_write(sh, alloc, layer, nfanout,
nodebody);
ntoin = 1;
}
} while(layer++ != oldcursor->root_layer);
if(likely(ntoin == 1)) return inaval;
if(unlikely(layer == LAYER_MAX+1))
shash_error_toobig(sh, alloc->action);
nodebody[0] = inakey;
nodebody[1] = inaval;
nodebody[2] = inbkey;
nodebody[3] = inbval;
return bnode_write(sh, alloc, layer, 2, nodebody);
}
#define btree_cursor_set(sh, alloc, ocs, repl, keypvl, valpvl) \
THX_btree_cursor_set(aTHX_ sh, alloc, ocs, repl, keypvl, valpvl)
static word THX_btree_cursor_set(pTHX_ struct shash *sh,
struct shash_alloc *alloc, struct cursor *oldcursor,
bool replace, struct pvl keypvl, struct pvl valpvl)
{
if(pvl_is_null(valpvl)) {
if(!replace)
return oldcursor->ent[oldcursor->root_layer].nodeptr;
return btree_cursor_modify(sh, alloc, oldcursor, 1,
NULL_PTR, NULL_PTR);
} else {
word keyptr;
if(replace) {
if(string_eq_pvl(sh, btree_cursor_get(sh, oldcursor),
valpvl))
return oldcursor->ent[oldcursor->root_layer]
.nodeptr;
keyptr = btree_cursor_key(sh, oldcursor);
} else {
keyptr = string_write_from_pvl(sh, alloc, keypvl);
}
return btree_cursor_modify(sh, alloc, oldcursor, replace,
keyptr, string_write_from_pvl(sh, alloc, valpvl));
}
}
#define btree_count(sh, rt) THX_btree_count(aTHX_ sh, rt)
static word THX_btree_count(pTHX_ struct shash *sh, word root)
{
struct cursor cur;
word cnt = 0;
if(!likely(btree_seek_min(sh, &cur, root))) return 0;
do {
cnt += cur.ent[0].fanout;
cur.ent[0].index = cur.ent[0].fanout - 1;
} while(btree_seek_inc(sh, &cur));
return cnt;
}
#define btree_size(sh, rt) THX_btree_size(aTHX_ sh, rt)
static word THX_btree_size(pTHX_ struct shash *sh, word root)
{
struct cursor cur;
word sz;
if(!likely(btree_seek_min(sh, &cur, root))) {
if(likely(sh->sizes->dhd_zeropad_sz >= WORD_SZ)) return 0;
sz = WORD_SZ;
} else {
sz = 0;
do {
int i;
word asz;
word *loc = bnode_body_loc(
unchecked_pointer_loc(sh, cur.ent[0].nodeptr));
for(i = cur.ent[0].fanout << 1; i--; ) {
asz = string_size(sh, *loc++);
sz += asz;
if(unlikely(sz < asz)) return ~(word)0;
}
/*
* To account for all the space occupied by the
* btree nodes, we allow a certain number of
* bytes per entry, such that there is space for
* an arbitrarily high btree of minimal fanout.
* The objective is to allow enough space
* per entry that for each minimally-filled
* layer-0 node we allocate space for that node
* and have one entry's allocation left over.
* That one-entry-per-node excess then accounts
* for the size of the layer-1 nodes with one
* entry's allocation per layer-1 node left
* over, and so on recursively. The space to
* allow per entry is theoretically the size
* of the minimally-filled node (WORD_SZ *
* (1+2*MINFANOUT)) divided by MINFANOUT-1;
* we round this up to an integral number of
* bytes per entry.
*
* Nodes that are more than minimally filled lead
* to this being an overestimate, because they
* are more space-efficient both in themselves
* and by using fewer higher-layer entries.
* An underfilled root node can lead to needing
* more bytes than this formula allows, but the
* space allowed for the node will always be
* strictly greater than the two words per entry
* required by the node body. Because the size
* is ultimately rounded up to word alignment
* (actually to line alignment), it is rounded
* up sufficiently to account for the single-word
* header of the root node.
*/
asz = cur.ent[0].fanout *
((WORD_SZ*(1+2*MINFANOUT) + MINFANOUT-2) /
(MINFANOUT-1));
sz += asz;
if(unlikely(sz < asz)) return ~(word)0;
cur.ent[0].index = cur.ent[0].fanout - 1;
} while(btree_seek_inc(sh, &cur));
}
sz = LINE_ALIGN(sh->sizes, sz);
return likely(sz) ? sz : ~(word)0;
}
#define btree_migrate_at_layer(shf, ptrf, el, sht, alloct) \
THX_btree_migrate_at_layer(aTHX_ shf, ptrf, el, sht, alloct)
static word THX_btree_migrate_at_layer(pTHX_ struct shash *shf, word ptrf,
int expect_layer, struct shash *sht, struct shash_alloc *alloct)
{
int layer, fanout, i;
word nodebody[MAXFANOUT*2];
word const *locf = bnode_body_loc(bnode_check(shf, ptrf, expect_layer,
&layer, &fanout));
word *loct = nodebody;
if(likely(layer == 0)) {
for(i = fanout << 1; i--; ) {
*loct++ = string_migrate(shf, *locf++, sht, alloct);
}
} else {
for(i = fanout; i--; ) {
word spc;
word ptrt = btree_migrate_at_layer(shf, locf[1],
layer-1, sht, alloct);
locf += 2;
*loct++ =
bnode_body_loc(pointer_loc(sht, ptrt, &spc))[0];
*loct++ = ptrt;
}
}
return bnode_write(sht, alloct, layer, fanout, nodebody);
}
#define btree_migrate(shf, ptrf, sht, act) \
THX_btree_migrate(aTHX_ shf, ptrf, sht, act)
static word THX_btree_migrate(pTHX_ struct shash *shf, word ptrf,
struct shash *sht, char const *action)
{
struct shash_alloc new_alloc;
if(unlikely(setjmp(new_alloc.fulljb)))
shash_error_errnum(sht, action, ENOSPC);
new_alloc.action = action;
new_alloc.prealloc_len = 0;
return btree_migrate_at_layer(shf, ptrf, -1, sht, &new_alloc);
}
/* mechanism for reading from shash */
#define shash_root_for_read(sh) THX_shash_root_for_read(aTHX_ sh)
PERL_STATIC_INLINE word THX_shash_root_for_read(pTHX_ struct shash *sh)
{
if(sh->mode & STOREMODE_SNAPSHOT) {
return sh->u.snapshot.root;
} else {
shash_ensure_data_file(sh);
return word_get(&WORD_AT(sh->data_mmap,
sh->sizes->dhd_current_root)) &
~PTR_FLAG_ROLLOVER;
}
}
/* mechanism for writing to shash */
PERL_STATIC_INLINE bool shash_change_root(struct shash *sh, word old, word new)
{
tally_event(&sh->tally, K_ROOT_CHANGE_ATTEMPT);
if(likely(word_cset(
&WORD_AT(sh->data_mmap, sh->sizes->dhd_current_root),
old, new))) {
tally_event(&sh->tally, K_ROOT_CHANGE_SUCCESS);
return 1;
} else {
return 0;
}
}
PERL_STATIC_INLINE bool shash_change_file(struct shash *sh, word old, word new)
{
tally_event(&sh->tally, K_FILE_CHANGE_ATTEMPT);
if(likely(word_cset(&WORD_AT(sh->u.live.master_mmap,
sh->sizes->mfl_current_datafileid),
old, new))) {
tally_event(&sh->tally, K_FILE_CHANGE_SUCCESS);
return 1;
} else {
return 0;
}
}
PERL_STATIC_INLINE void shash_initiate_rollover(struct shash *sh)
{
word *root_p = &WORD_AT(sh->data_mmap, sh->sizes->dhd_current_root);
while(1) {
word root = word_get(root_p);
if(unlikely(root & PTR_FLAG_ROLLOVER)) break;
if(likely(shash_change_root(sh, root,
root | PTR_FLAG_ROLLOVER)))
break;
}
}
#define shash_try_rollover(sh, act, addsz) \
THX_shash_try_rollover(aTHX_ sh, act, addsz)
PERL_STATIC_INLINE word THX_shash_try_rollover(pTHX_ struct shash *sh,
char const *action, word addsz)
{
char filename[DATA_FILENAME_BUFSIZE];
word *allocfileid_p;
word old_file_id, old_root_word, old_root;
word new_file_id, new_root, new_sz;
struct stat statbuf;
int new_fd;
unlinkfile_ref_t new_ulr;
closefd_ref_t new_fdr;
struct shash new_sh;
SV *old_mmap_sv;
tmps_ix_t old_tmps_floor;
old_root_word = word_get(&WORD_AT(sh->data_mmap,
sh->sizes->dhd_current_root));
old_root = old_root_word & ~PTR_FLAG_ROLLOVER;
new_sz = sh->sizes->dhd_sz + btree_size(sh, old_root);
if(unlikely(new_sz < sh->sizes->dhd_sz || (new_sz & (((word)7) << 61))))
shash_error_toobig(sh, action);
new_sz <<= 3;
new_sz += addsz;
if(unlikely(new_sz < addsz)) shash_error_toobig(sh, action);
new_sz = PAGE_ALIGN(sh->sizes, new_sz);
if(unlikely(!new_sz)) shash_error_toobig(sh, action);
if(unlikely((off_t)new_sz < 0 || (word)(off_t)new_sz != new_sz))
shash_error_errnum(sh, action, EFBIG);
tally_zero(&new_sh.tally);
new_sh.sizes = sh->sizes;
new_sh.parameter = sh->parameter;
new_sh.top_pathname_sv = sh->top_pathname_sv;
allocfileid_p = &WORD_AT(sh->u.live.master_mmap,
sh->sizes->mfl_lastalloc_datafileid);
do {
old_file_id = word_get(allocfileid_p);
new_file_id = old_file_id + 1;
if(unlikely(new_file_id == 0)) new_file_id = 1;
} while(!likely(word_cset(allocfileid_p, old_file_id, new_file_id)));
if(unlikely(dirref_rel_stat(sh->u.live.dir, MASTER_FILENAME, &statbuf)
== -1))
shash_error_errno(sh, action);
dir_make_data_filename(filename, new_file_id);
new_fd = dirref_rel_open_cloexec(sh->u.live.dir, filename,
O_RDWR|O_CREAT|O_EXCL, 0);
if(unlikely(new_fd == -1)) shash_error_errno(sh, action);
new_ulr = unlinkfile_save(sh->u.live.dir, filename);
if(unlikely(fchown(new_fd, -1, statbuf.st_gid) == -1) &&
unlikely(errno != EPERM))
shash_error_errno(sh, action);
if(unlikely(fchmod(new_fd, statbuf.st_mode &
(S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH))
== -1))
shash_error_errno(sh, action);
if(unlikely(fchown(new_fd, statbuf.st_uid, -1) == -1) &&
unlikely(errno != EPERM))
shash_error_errno(sh, action);
new_fdr = closefd_save(new_fd);
if(unlikely(ftruncate(new_fd, new_sz) == -1)) {
/*
* A file-too-big error may be reported as either
* EFBIG or EINVAL depending on OS. The former is more
* enlightening to the user, so always report it that way.
*/
int e = errno;
shash_error_errnum(sh, action, e == EINVAL ? EFBIG : e);
}
old_tmps_floor = PL_tmps_floor;
SAVETMPS;
new_sh.data_mmap_sv = mmap_as_sv(new_fd, new_sz, 1);
if(!likely(new_sh.data_mmap_sv)) shash_error_errno(sh, action);
new_sh.data_mmap = SvPVX(new_sh.data_mmap_sv);
new_sh.data_size = new_sz;
closefd_early(new_fdr);
WORD_AT(new_sh.data_mmap, DHD_MAGIC) = DATA_FILE_MAGIC;
WORD_AT(new_sh.data_mmap, DHD_PARAM) = sh->parameter;
WORD_AT(new_sh.data_mmap, DHD_LENGTH) = new_sz;
WORD_AT(new_sh.data_mmap, sh->sizes->dhd_nextalloc_space) =
sh->sizes->dhd_sz;
WORD_AT(new_sh.data_mmap, sh->sizes->dhd_current_root) = new_root =
btree_migrate(sh, old_root, &new_sh, action);
tally_add(&sh->tally, &new_sh.tally);
old_file_id = sh->u.live.data_file_id;
if((!(old_root_word & PTR_FLAG_ROLLOVER) &&
!likely(shash_change_root(sh, old_root_word,
old_root_word | PTR_FLAG_ROLLOVER))) ||
!likely(shash_change_file(sh,
old_file_id, new_file_id))) {
FREETMPS;
PL_tmps_floor = old_tmps_floor;
shash_unlinkfile_early(sh, action, new_ulr);
return NULL_PTR;
}
unlinkfile_cancel(new_ulr);
old_mmap_sv = sh->data_mmap_sv;
sh->data_mmap_sv = NULL;
SvREFCNT_dec_NN(old_mmap_sv);
sh->data_mmap_sv = SvREFCNT_inc_simple_NN(new_sh.data_mmap_sv);
sh->data_mmap = new_sh.data_mmap;
sh->data_size = new_sh.data_size;
sh->u.live.data_file_id = new_file_id;
FREETMPS;
PL_tmps_floor = old_tmps_floor;
if(likely(old_file_id != 0)) {
dir_make_data_filename(filename, old_file_id);
if(unlikely(dirref_rel_unlink(sh->u.live.dir, filename)
== -1)) {
int e = errno;
if(!(likely(e == ENOENT) || likely(e == EBUSY)))
shash_error_errnum(sh, action, e);
}
}
return new_root;
}
typedef word (*mutate_fn_t)(pTHX_ struct shash *sh, struct shash_alloc *alloc,
word oldroot, void *mutate_arg);
#define shash_mutate(sh, act, mut, marg) \
THX_shash_mutate(aTHX_ sh, act, mut, marg)
static void THX_shash_mutate(pTHX_ struct shash *sh, char const *action,
mutate_fn_t THX_mutate, void *mutate_arg)
{
struct shash_alloc alloc;
volatile word addsz = PAGE_ALIGN(sh->sizes, 1<<20);
volatile bool just_rolled_over = 0;
alloc.action = action;
if(unlikely(setjmp(alloc.fulljb))) {
if(unlikely(just_rolled_over)) {
word newaddsz = addsz <<= 1;
if(!likely(newaddsz)) shash_error_toobig(sh, action);
}
shash_initiate_rollover(sh);
}
while(1) {
word old_root, new_root;
just_rolled_over = 0;
shash_ensure_data_file(sh);
old_root = word_get(&WORD_AT(sh->data_mmap,
sh->sizes->dhd_current_root));
if(unlikely(old_root & PTR_FLAG_ROLLOVER)) {
old_root = shash_try_rollover(sh, action, addsz);
if(unlikely(old_root == NULL_PTR)) continue;
dir_clean(sh, action, sh->u.live.data_file_id);
just_rolled_over = 1;
}
alloc.prealloc_len = 0;
new_root = THX_mutate(aTHX_ sh, &alloc, old_root, mutate_arg);
if(likely(new_root == old_root) ||
likely(shash_change_root(sh,
old_root, new_root)))
break;
}
tally_event(&sh->tally, K_DATA_WRITE_OP);
}
/* shash opening and creation */
#define mode_from_sv(sv) THX_mode_from_sv(aTHX_ sv)
PERL_STATIC_INLINE unsigned THX_mode_from_sv(pTHX_ SV *modesv)
{
char const *modepv, *modeend, *p;
STRLEN modelen;
unsigned mode = 0;
SvGETMAGIC(modesv);
if(!likely(sv_is_string(modesv))) croak("mode is not a string");
modepv = SvPV_nomg(modesv, modelen);
modeend = modepv + modelen;
for(p = modepv; p != modeend; p++) {
char c = *p;
unsigned f;
switch(c) {
case 'r': f = STOREMODE_READ; break;
case 'w': f = STOREMODE_WRITE; break;
case 'c': f = STOREMODE_CREATE; break;
case 'e': f = STOREMODE_EXCLUDE; break;
default: {
f = 0;
if(likely(c >= ' ' && c <= '~'))
croak("unknown open mode flag `%c'", c);
else
croak("unknown open mode flag");
}
}
if(unlikely(mode & f))
croak("duplicate open mode flag `%c'", c);
mode |= f;
}
return mode;
}
#define mode_as_sv(m) THX_mode_as_sv(aTHX_ m)
PERL_STATIC_INLINE SV *THX_mode_as_sv(pTHX_ unsigned mode)
{
char buf[4], *p;
SV *modesv;
p = buf;
if(likely(mode & STOREMODE_READ)) *p++ = 'r';
if(likely(mode & STOREMODE_WRITE)) *p++ = 'w';
if(unlikely(mode & STOREMODE_CREATE)) *p++ = 'c';
if(unlikely(mode & STOREMODE_EXCLUDE)) *p++ = 'e';
modesv = newSVpvn_mortal(buf, p - buf);
SvREADONLY_on(modesv);
return modesv;
}
#define shash_open_error_magic(sh) THX_shash_open_error_magic(aTHX_ sh)
static void THX_shash_open_error_magic(pTHX_ struct shash *sh)
__attribute__noreturn__;
static void THX_shash_open_error_magic(pTHX_ struct shash *sh)
{
shash_error(sh, "open", "not a shared hash");
}
static void THX_shash_open_check_file(pTHX_ struct shash *sh,
char const *action, char const *fn, word arg)
{
word id;
PERL_UNUSED_ARG(action);
PERL_UNUSED_ARG(arg);
if(unlikely(dir_filename_class(fn, &id) == FILENAME_CLASS_BOGUS))
shash_open_error_magic(sh);
}
#define shash_open(psv, msv) THX_shash_open(aTHX_ psv, msv)
static SV *THX_shash_open(pTHX_ SV *top_pathname_sv, SV *mode_sv)
{
dMY_CXT;
char const *top_pathname_pv;
unsigned mode;
struct shash *sh;
SV *shsv, *shsvref, *mapsv, *sizes_sv;
dirref_t dir;
int master_fd;
struct stat statbuf;
unlinkfile_ref_t ulr;
char temp_filename[TEMP_FILENAME_BUFSIZE];
closefd_ref_t fdr;
void *map;
shsv = newSV_type(SVt_PVMG);
shsvref = newRV_ro_mortal_noinc(shsv);
Newxz(sh, 1, struct shash);
SvPV_set(shsv, (char *)sh);
SvLEN_set(shsv, sizeof(struct shash));
shash_apply_magic(shsv);
(void) sv_bless(shsvref, MY_CXT.shash_handle_stash);
SvGETMAGIC(top_pathname_sv);
if(!likely(sv_is_string(top_pathname_sv)))
croak("filename is not a string");
{
STRLEN len;
char *pv = SvPV_nomg(top_pathname_sv, len);
sh->top_pathname_sv = newSVpvn(pv, len);
if(unlikely(SvUTF8(top_pathname_sv)))
SvUTF8_on(sh->top_pathname_sv);
}
mode = mode_from_sv(mode_sv);
if(likely(mode & (STOREMODE_WRITE|STOREMODE_CREATE)))
TAINT_PROPER("shash_open");
sh->mode = mode & (STOREMODE_READ|STOREMODE_WRITE);
top_pathname_pv = SvPV_nolen(sh->top_pathname_sv);
sh->u.live.dir = dir = dirref_open(top_pathname_pv, &statbuf);
if(unlikely(dirref_is_null(dir))) {
if(!likely(errno == ENOENT && (mode & STOREMODE_CREATE)))
shash_error_errno(sh, "open");
if(unlikely(mkdir(top_pathname_pv, S_IRWXU|S_IRWXG|S_IRWXO)
== -1) &&
errno != EEXIST)
shash_error_errno(sh, "open");
sh->u.live.dir = dir = dirref_open(top_pathname_pv, &statbuf);
if(unlikely(dirref_is_null(dir))) shash_error_errno(sh, "open");
}
if(!likely(S_ISDIR(statbuf.st_mode)))
shash_open_error_magic(sh);
dir_iterate(sh, "open", THX_shash_open_check_file, 0);
master_fd = dirref_rel_open_cloexec(dir, MASTER_FILENAME,
likely(mode & STOREMODE_WRITE) ? O_RDWR : O_RDONLY, 0);
if(likely(master_fd != -1)) {
opened_master:
fdr = closefd_save(master_fd);
if(unlikely(mode & STOREMODE_EXCLUDE))
shash_error_errnum(sh, "open", EEXIST);
if(unlikely(fstat(master_fd, &statbuf) == -1))
shash_error_errno(sh, "open");
if(!likely(S_ISREG(statbuf.st_mode) &&
(off_t)(word)statbuf.st_size ==
statbuf.st_size &&
statbuf.st_size >= MFL_PARAM+WORD_SZ))
shash_open_error_magic(sh);
mapsv = mmap_as_sv(master_fd, MFL_PARAM+WORD_SZ, 0);
if(!likely(mapsv)) shash_error_errno(sh, "open");
map = SvPVX(mapsv);
if(!likely(WORD_AT(map, MFL_MAGIC) == MASTER_FILE_MAGIC))
shash_open_error_magic(sh);
sh->parameter = WORD_AT(map, MFL_PARAM);
if(unlikely(PARAMETER_WORD_FIXED_PART(sh->parameter) !=
PARAMETER_WORD_FIXED_PART_VALUE)) {
bad_parameter:
shash_error(sh, "open", "unsupported format");
}
sizes_sv = sizes_lookup(sh->parameter);
if(!likely(sizes_sv)) goto bad_parameter;
#if QWITH_DUP
sh->sizes_sv = sizes_sv;
#endif /* QWITH_DUP */
sh->sizes = (struct sizes const *)SvPVX(sizes_sv);
mmap_early_unmap(mapsv);
if(!likely((word)statbuf.st_size == sh->sizes->mfl_sz))
shash_open_error_magic(sh);
mapsv = mmap_as_sv(master_fd, sh->sizes->mfl_sz,
cBOOL(mode & STOREMODE_WRITE));
if(!likely(mapsv)) shash_error_errno(sh, "open");
sh->u.live.master_mmap_sv = SvREFCNT_inc_simple_NN(mapsv);
sh->u.live.master_mmap = SvPVX(mapsv);
closefd_early(fdr);
if(likely(mode & STOREMODE_WRITE))
dir_clean(sh, "open",
word_get(&WORD_AT(sh->u.live.master_mmap,
sh->sizes->mfl_current_datafileid)));
return shsvref;
}
if(!likely(errno == ENOENT && (mode & STOREMODE_CREATE)))
shash_error_errno(sh, "open");
sh->parameter = parameter_preferred();
sizes_sv = sizes_lookup(sh->parameter);
if(!likely(sizes_sv)) shash_error_errnum(sh, "open", ENOMEM);
#if QWITH_DUP
sh->sizes_sv = sizes_sv;
#endif /* QWITH_DUP */
sh->sizes = (struct sizes const *)SvPVX(sizes_sv);
if(unlikely((off_t)sh->sizes->mfl_sz < 0 ||
(word)(off_t)sh->sizes->mfl_sz != sh->sizes->mfl_sz))
shash_error_errnum(sh, "open", EFBIG);
dir_make_temp_filename(temp_filename);
master_fd = dirref_rel_open_cloexec(dir, temp_filename,
O_RDWR|O_CREAT|O_EXCL,
S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH);
if(unlikely(master_fd == -1)) shash_error_errno(sh, "open");
ulr = unlinkfile_save(dir, temp_filename);
fdr = closefd_save(master_fd);
if(unlikely(ftruncate(master_fd, sh->sizes->mfl_sz) == -1))
shash_error_errno(sh, "open");
mapsv = mmap_as_sv(master_fd, sh->sizes->mfl_sz, 1);
if(!likely(mapsv)) shash_error_errno(sh, "open");
sh->u.live.master_mmap_sv = SvREFCNT_inc_simple_NN(mapsv);
sh->u.live.master_mmap = map = SvPVX(mapsv);
closefd_early(fdr);
WORD_AT(map, MFL_MAGIC) = MASTER_FILE_MAGIC;
WORD_AT(map, MFL_PARAM) = sh->parameter;
if(unlikely(dirref_rel_link(dir, temp_filename, MASTER_FILENAME)
== -1)) {
if(unlikely(errno != EEXIST))
shash_error_errno(sh, "open");
mmap_early_unmap(mapsv);
sh->u.live.master_mmap_sv = NULL;
SvREFCNT_dec_NN(mapsv);
shash_unlinkfile_early(sh, "open", ulr);
master_fd = dirref_rel_open_cloexec(dir, MASTER_FILENAME,
likely(mode & STOREMODE_WRITE) ? O_RDWR : O_RDONLY, 0);
if(unlikely(master_fd == -1)) shash_error_errno(sh, "open");
goto opened_master;
}
shash_unlinkfile_early(sh, "open", ulr);
dir_clean(sh, "open", 0);
return shsvref;
}
/*
* API operations in base pp form
*
* These functions take a fixed number of arguments from the Perl stack,
* and put their mortal result on the stack. At the C level they take no
* arguments other than the Perl context and return no value. This is not
* the format used for actual pp_ functions, which implement ops, as those
* interact with PL_op. Nor is it the format used for XS function bodies,
* which take a variable number of arguments delimited by a stack mark.
* These pp1_ functions are the parts of the operations that are common
* to ops and XS functions.
*/
#define pp1_is_shash() THX_pp1_is_shash(aTHX)
static void THX_pp1_is_shash(pTHX)
{
dSP;
SETs(boolSV(arg_is_shash(TOPs)));
}
#define pp1_check_shash() THX_pp1_check_shash(aTHX)
static void THX_pp1_check_shash(pTHX)
{
dSP;
arg_check_shash(POPs);
if(unlikely(GIMME_V == G_SCALAR)) PUSHs(&PL_sv_undef);
PUTBACK;
}
#define pp1_shash_open() THX_pp1_shash_open(aTHX)
static void THX_pp1_shash_open(pTHX)
{
SV *sh;
dSP;
SV *mode_sv = POPs;
SV *top_pathname_sv = TOPs;
PUTBACK;
sh = shash_open(top_pathname_sv, mode_sv);
SPAGAIN;
SETs(sh);
}
#define pp1_shash_is_readable() THX_pp1_shash_is_readable(aTHX)
static void THX_pp1_shash_is_readable(pTHX)
{
dSP;
SETs(boolSV(likely(shash_from_svref(TOPs)->mode & STOREMODE_READ)));
}
#define pp1_shash_is_writable() THX_pp1_shash_is_writable(aTHX)
static void THX_pp1_shash_is_writable(pTHX)
{
dSP;
SETs(boolSV(likely(shash_from_svref(TOPs)->mode & STOREMODE_WRITE)));
}
#define pp1_shash_mode() THX_pp1_shash_mode(aTHX)
static void THX_pp1_shash_mode(pTHX)
{
dSP;
SETs(mode_as_sv(shash_from_svref(TOPs)->mode));
}
#define pp1_shash_exists() THX_pp1_shash_exists(aTHX)
static void THX_pp1_shash_exists(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *resultsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
resultsv = boolSV(btree_seek_key(sh, &cur, shash_root_for_read(sh),
keypvl));
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_length() THX_pp1_shash_length(aTHX)
static void THX_pp1_shash_length(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *resultsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
if(likely(btree_seek_key(sh, &cur, shash_root_for_read(sh), keypvl))) {
struct pvl valpvl =
string_as_pvl(sh, btree_cursor_get(sh, &cur));
if(unlikely((size_t)(UV)valpvl.len != valpvl.len))
shash_error_errnum(sh, "read", ENOMEM);
TAINT;
resultsv = sv_2mortal(newSVuv((UV)valpvl.len));
SvREADONLY_on(resultsv);
} else {
resultsv = &PL_sv_undef;
}
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_get() THX_pp1_shash_get(aTHX)
static void THX_pp1_shash_get(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *valsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
valsv = btree_seek_key(sh, &cur, shash_root_for_read(sh), keypvl) ?
string_as_sv(sh, "read", btree_cursor_get(sh, &cur)) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(valsv);
}
struct mutateargs_set {
struct pvl keypvl;
struct pvl newvalpvl;
};
static word THX_mutate_set(pTHX_ struct shash *sh, struct shash_alloc *alloc,
word oldroot, void *mutate_arg)
{
struct mutateargs_set *args = (struct mutateargs_set *)mutate_arg;
struct cursor oldcur;
bool match;
match = btree_seek_key(sh, &oldcur, oldroot, args->keypvl);
return btree_cursor_set(sh, alloc, &oldcur, match,
args->keypvl, args->newvalpvl);
}
#define pp1_shash_settish(au) THX_pp1_shash_settish(aTHX_ au)
static void THX_pp1_shash_settish(pTHX_ bool allow_undef)
{
SV *keysv, *newvalsv;
struct mutateargs_set args;
struct shash *sh;
dSP;
newvalsv = POPs;
keysv = POPs;
sh = shash_from_svref(POPs);
if(unlikely(GIMME_V == G_SCALAR)) PUSHs(&PL_sv_undef);
PUTBACK;
args.keypvl = pvl_from_arg("key", 0, keysv);
args.newvalpvl = pvl_from_arg("new value", allow_undef, newvalsv);
shash_check_writable(sh, "write");
shash_mutate(sh, "write", THX_mutate_set, &args);
}
#define pp1_shash_set() THX_pp1_shash_set(aTHX)
PERL_STATIC_INLINE void THX_pp1_shash_set(pTHX)
{
pp1_shash_settish(1);
}
#define pp1_shash_tied_store() THX_pp1_shash_tied_store(aTHX)
PERL_STATIC_INLINE void THX_pp1_shash_tied_store(pTHX)
{
pp1_shash_settish(0);
}
struct mutateargs_gset {
struct pvl keypvl;
struct pvl newvalpvl;
word oldvalptr;
};
static word THX_mutate_gset(pTHX_ struct shash *sh, struct shash_alloc *alloc,
word oldroot, void *mutate_arg)
{
struct mutateargs_gset *args = (struct mutateargs_gset *)mutate_arg;
struct cursor oldcur;
bool match;
match = btree_seek_key(sh, &oldcur, oldroot, args->keypvl);
args->oldvalptr = match ? btree_cursor_get(sh, &oldcur) : NULL_PTR;
return btree_cursor_set(sh, alloc, &oldcur, match,
args->keypvl, args->newvalpvl);
}
#define pp1_shash_gset() THX_pp1_shash_gset(aTHX)
static void THX_pp1_shash_gset(pTHX)
{
SV *keysv, *newvalsv, *oldvalsv;
struct mutateargs_gset args;
struct shash *sh;
dSP;
newvalsv = POPs;
keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
args.keypvl = pvl_from_arg("key", 0, keysv);
args.newvalpvl = pvl_from_arg("new value", 1, newvalsv);
shash_check_readable(sh, "update");
shash_check_writable(sh, "update");
shash_mutate(sh, "update", THX_mutate_gset, &args);
oldvalsv = args.oldvalptr == NULL_PTR ? &PL_sv_undef :
string_as_sv(sh, "update", args.oldvalptr);
SPAGAIN;
SETs(oldvalsv);
}
#define pp1_shash_tied_delete() THX_pp1_shash_tied_delete(aTHX)
PERL_STATIC_INLINE void THX_pp1_shash_tied_delete(pTHX)
{
dSP;
XPUSHs(&PL_sv_undef);
PUTBACK;
pp1_shash_gset();
}
struct mutateargs_cset {
struct pvl keypvl;
struct pvl chkvalpvl;
struct pvl newvalpvl;
bool result;
};
static word THX_mutate_cset(pTHX_ struct shash *sh, struct shash_alloc *alloc,
word oldroot, void *mutate_arg)
{
struct mutateargs_cset *args = (struct mutateargs_cset *)mutate_arg;
struct cursor oldcur;
bool match;
match = btree_seek_key(sh, &oldcur, oldroot, args->keypvl);
if(!likely(pvl_is_null(args->chkvalpvl) ? !match :
match && string_eq_pvl(sh,
btree_cursor_get(sh, &oldcur),
args->chkvalpvl))) {
args->result = 0;
return oldroot;
}
args->result = 1;
return btree_cursor_set(sh, alloc, &oldcur, match,
args->keypvl, args->newvalpvl);
}
#define pp1_shash_cset() THX_pp1_shash_cset(aTHX)
static void THX_pp1_shash_cset(pTHX)
{
SV *keysv, *chkvalsv, *newvalsv;
struct mutateargs_cset args;
struct shash *sh;
dSP;
newvalsv = POPs;
chkvalsv = POPs;
keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
args.keypvl = pvl_from_arg("key", 0, keysv);
args.chkvalpvl = pvl_from_arg("check value", 1, chkvalsv);
args.newvalpvl = pvl_from_arg("new value", 1, newvalsv);
shash_check_readable(sh, "update");
shash_check_writable(sh, "update");
shash_mutate(sh, "update", THX_mutate_cset, &args);
SPAGAIN;
SETs(boolSV(likely(args.result)));
}
#define pp1_shash_occupied() THX_pp1_shash_occupied(aTHX)
static void THX_pp1_shash_occupied(pTHX)
{
int layer, fanout;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
(void) bnode_check(sh, shash_root_for_read(sh), -1, &layer, &fanout);
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(boolSV(fanout != 0));
}
#define pp1_shash_count() THX_pp1_shash_count(aTHX)
static void THX_pp1_shash_count(pTHX)
{
word count;
SV *resultsv;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
count = btree_count(sh, shash_root_for_read(sh));
if(unlikely((word)(UV)count != count))
shash_error_errnum(sh, "read", ENOMEM);
TAINT;
resultsv = sv_2mortal(newSVuv((UV)count));
SvREADONLY_on(resultsv);
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_size() THX_pp1_shash_size(aTHX)
static void THX_pp1_shash_size(pTHX)
{
word size;
SV *resultsv;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
size = btree_size(sh, shash_root_for_read(sh));
if(unlikely((word)(UV)size != size))
shash_error_errnum(sh, "read", ENOMEM);
TAINT;
resultsv = sv_2mortal(newSVuv((UV)size));
SvREADONLY_on(resultsv);
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_key_min() THX_pp1_shash_key_min(aTHX)
static void THX_pp1_shash_key_min(pTHX)
{
int layer, fanout;
word const *ndloc;
SV *keysv;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
ndloc = bnode_check(sh, shash_root_for_read(sh), -1, &layer, &fanout);
keysv = likely(fanout != 0) ?
string_as_sv(sh, "read", bnode_body_loc(ndloc)[0]) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(keysv);
}
#define pp1_shash_key_max() THX_pp1_shash_key_max(aTHX)
static void THX_pp1_shash_key_max(pTHX)
{
struct cursor cur;
SV *keysv;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
keysv = likely(btree_seek_max(sh, &cur, shash_root_for_read(sh))) ?
string_as_sv(sh, "read", btree_cursor_key(sh, &cur)) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(keysv);
}
#define pp1_shash_key_ge() THX_pp1_shash_key_ge(aTHX)
static void THX_pp1_shash_key_ge(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *resultsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
resultsv = btree_seek_key(sh, &cur, shash_root_for_read(sh), keypvl) ||
likely(btree_seek_inc(sh, &cur)) ?
string_as_sv(sh, "read", btree_cursor_key(sh, &cur)) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_key_gt() THX_pp1_shash_key_gt(aTHX)
static void THX_pp1_shash_key_gt(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *resultsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
(void) btree_seek_key(sh, &cur, shash_root_for_read(sh), keypvl);
resultsv = likely(btree_seek_inc(sh, &cur)) ?
string_as_sv(sh, "read", btree_cursor_key(sh, &cur)) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_key_le() THX_pp1_shash_key_le(aTHX)
static void THX_pp1_shash_key_le(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *resultsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
(void) btree_seek_key(sh, &cur, shash_root_for_read(sh), keypvl);
resultsv = likely(cur.ent[0].index != -1) ?
string_as_sv(sh, "read", btree_cursor_key(sh, &cur)) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_key_lt() THX_pp1_shash_key_lt(aTHX)
static void THX_pp1_shash_key_lt(pTHX)
{
struct shash *sh;
struct pvl keypvl;
struct cursor cur;
SV *resultsv;
dSP;
SV *keysv = POPs;
PUTBACK;
sh = shash_from_svref(TOPs);
keypvl = pvl_from_arg("key", 0, keysv);
shash_check_readable(sh, "read");
resultsv = (btree_seek_key(sh, &cur, shash_root_for_read(sh), keypvl) ?
likely(btree_seek_dec(sh, &cur)) :
likely(cur.ent[0].index != -1)) ?
string_as_sv(sh, "read", btree_cursor_key(sh, &cur)) :
&PL_sv_undef;
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(resultsv);
}
#define pp1_shash_keys_array() THX_pp1_shash_keys_array(aTHX)
static void THX_pp1_shash_keys_array(pTHX)
{
word root, count;
AV *ar;
SV *aref;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
root = shash_root_for_read(sh);
count = btree_count(sh, root);
if(unlikely((array_ix_t)count < 0 || (word)(array_ix_t)count != count))
shash_error_errnum(sh, "read", ENOMEM);
ar = newAV();
aref = newRV_ro_mortal_noinc((SV*)ar);
if(likely(count != 0)) {
SV **abody;
struct cursor cur;
word i;
av_fill(ar, count-1);
abody = AvARRAY(ar);
if(!likely(btree_seek_min(sh, &cur, root)))
shash_error_data(sh);
for(i = 0; ; ) {
abody[i] = SvREFCNT_inc_NN(string_as_sv(sh, "read",
btree_cursor_key(sh, &cur)));
i++;
if(unlikely(i == count)) break;
if(!likely(btree_seek_inc(sh, &cur)))
shash_error_data(sh);
}
}
SvREADONLY_on((SV*)ar);
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(aref);
}
#define pp1_shash_keys_hash() THX_pp1_shash_keys_hash(aTHX)
static void THX_pp1_shash_keys_hash(pTHX)
{
HV *h;
SV *href;
struct cursor cur;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
h = newHV();
href = newRV_ro_mortal_noinc((SV*)h);
if(likely(btree_seek_min(sh, &cur, shash_root_for_read(sh)))) {
dMY_CXT;
SV *safe_undef = MY_CXT.safe_undef;
do {
struct pvl pvl = string_as_pvl(sh,
btree_cursor_key(sh, &cur));
if(unlikely((I32)pvl.len < 0 ||
(size_t)(I32)pvl.len != pvl.len))
shash_error_errnum(sh, "read", ENOMEM);
(void) hv_store(h, pvl.pv, (I32)pvl.len,
SvREFCNT_inc_simple_NN(safe_undef), 0);
} while(btree_seek_inc(sh, &cur));
}
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(href);
}
#define pp1_shash_group_get_hash() THX_pp1_shash_group_get_hash(aTHX)
static void THX_pp1_shash_group_get_hash(pTHX)
{
HV *h;
SV *href;
struct cursor cur;
dSP;
struct shash *sh = shash_from_svref(TOPs);
shash_check_readable(sh, "read");
h = newHV();
href = newRV_ro_mortal_noinc((SV*)h);
if(likely(btree_seek_min(sh, &cur, shash_root_for_read(sh)))) {
do {
struct pvl keypvl = string_as_pvl(sh,
btree_cursor_key(sh, &cur));
SV *valsv;
if(unlikely((I32)keypvl.len < 0 ||
(size_t)(I32)keypvl.len != keypvl.len))
shash_error_errnum(sh, "read", ENOMEM);
valsv = string_as_sv(sh, "read",
btree_cursor_get(sh, &cur));
(void) hv_store(h, keypvl.pv, (I32)keypvl.len,
SvREFCNT_inc_simple_NN(valsv), 0);
} while(btree_seek_inc(sh, &cur));
}
tally_event(&sh->tally, K_DATA_READ_OP);
SPAGAIN;
SETs(href);
}
#define pp1_shash_snapshot() THX_pp1_shash_snapshot(aTHX)
static void THX_pp1_shash_snapshot(pTHX)
{
SV *snapshsvref;
dSP;
SV *shsvref = TOPs;
struct shash *sh = shash_from_svref(shsvref);
if(unlikely(sh->mode & STOREMODE_SNAPSHOT)) {
snapshsvref = newRV_ro_mortal_inc(SvRV(shsvref));
} else {
dMY_CXT;
word root = shash_root_for_read(sh);
struct shash *snapsh;
SV *snapshsv;
snapshsv = newSV_type(SVt_PVMG);
snapshsvref = newRV_ro_mortal_noinc(snapshsv);
Newxz(snapsh, 1, struct shash);
SvPV_set(snapshsv, (char *)snapsh);
SvLEN_set(snapshsv, sizeof(struct shash));
shash_apply_magic(snapshsv);
(void) sv_bless(snapshsvref, MY_CXT.shash_handle_stash);
#if QWITH_DUP
snapsh->sizes_sv = sh->sizes_sv;
#endif /* QWITH_DUP */
snapsh->sizes = sh->sizes;
snapsh->parameter = sh->parameter;
snapsh->top_pathname_sv = SvREFCNT_inc_NN(sh->top_pathname_sv);
snapsh->mode =
(sh->mode & ~STOREMODE_WRITE) | STOREMODE_SNAPSHOT;
snapsh->data_mmap_sv = SvREFCNT_inc_NN(sh->data_mmap_sv);
snapsh->data_mmap = sh->data_mmap;
snapsh->data_size = sh->data_size;
snapsh->u.snapshot.root = root;
}
SETs(snapshsvref);
}
#define pp1_shash_is_snapshot() THX_pp1_shash_is_snapshot(aTHX)
static void THX_pp1_shash_is_snapshot(pTHX)
{
dSP;
SETs(boolSV(shash_from_svref(TOPs)->mode & STOREMODE_SNAPSHOT));
}
#define pp1_shash_idle() THX_pp1_shash_idle(aTHX)
static void THX_pp1_shash_idle(pTHX)
{
dSP;
struct shash *sh = shash_from_svref(POPs);
if(unlikely(GIMME_V == G_SCALAR)) PUSHs(&PL_sv_undef);
PUTBACK;
if(!unlikely(sh->mode & STOREMODE_SNAPSHOT)) {
SV *mapsv = sh->data_mmap_sv;
if(likely(mapsv)) {
sh->data_mmap_sv = NULL;
SvREFCNT_dec_NN(mapsv);
}
}
}
#define pp1_shash_tidy() THX_pp1_shash_tidy(aTHX)
static void THX_pp1_shash_tidy(pTHX)
{
int tries;
dSP;
struct shash *sh = shash_from_svref(POPs);
if(unlikely(GIMME_V == G_SCALAR)) PUSHs(&PL_sv_undef);
PUTBACK;
shash_check_writable(sh, "tidy");
for(tries = 3; tries--; ) {
shash_ensure_data_file(sh);
if(!likely(sh->u.live.data_file_id)) break;
if(likely(word_get(&WORD_AT(sh->data_mmap,
sh->sizes->dhd_nextalloc_space)) <
(sh->data_size >> 1)))
break;
if(likely(shash_try_rollover(sh, "tidy", 1<<20) != NULL_PTR))
break;
}
dir_clean(sh, "tidy", sh->u.live.data_file_id);
}
#define pp1_shash_tally_get() THX_pp1_shash_tally_get(aTHX)
static void THX_pp1_shash_tally_get(pTHX)
{
dSP;
struct shash *sh = shash_from_svref(TOPs);
PERL_UNUSED_VAR(sh);
SETs(tally_as_hvref(&sh->tally));
}
#define pp1_shash_tally_zero() THX_pp1_shash_tally_zero(aTHX)
static void THX_pp1_shash_tally_zero(pTHX)
{
dSP;
struct shash *sh = shash_from_svref(POPs);
if(unlikely(GIMME_V == G_SCALAR)) PUSHs(&PL_sv_undef);
PUTBACK;
PERL_UNUSED_VAR(sh);
tally_zero(&sh->tally);
}
#define pp1_shash_tally_gzero() THX_pp1_shash_tally_gzero(aTHX)
static void THX_pp1_shash_tally_gzero(pTHX)
{
dSP;
struct shash *sh = shash_from_svref(TOPs);
PERL_UNUSED_VAR(sh);
SETs(tally_as_hvref(&sh->tally));
tally_zero(&sh->tally);
}
/* API operations in pp form for ops */
#ifdef cv_set_call_checker
# define HSM_MAKE_PP(name) \
static OP *THX_pp_##name(pTHX) \
{ \
pp1_##name(); \
return NORMAL; \
}
HSM_MAKE_PP(is_shash)
HSM_MAKE_PP(check_shash)
HSM_MAKE_PP(shash_open)
HSM_MAKE_PP(shash_is_readable)
HSM_MAKE_PP(shash_is_writable)
HSM_MAKE_PP(shash_mode)
HSM_MAKE_PP(shash_exists)
HSM_MAKE_PP(shash_length)
HSM_MAKE_PP(shash_get)
HSM_MAKE_PP(shash_set)
HSM_MAKE_PP(shash_gset)
HSM_MAKE_PP(shash_cset)
HSM_MAKE_PP(shash_occupied)
HSM_MAKE_PP(shash_count)
HSM_MAKE_PP(shash_size)
HSM_MAKE_PP(shash_key_min)
HSM_MAKE_PP(shash_key_max)
HSM_MAKE_PP(shash_key_ge)
HSM_MAKE_PP(shash_key_gt)
HSM_MAKE_PP(shash_key_le)
HSM_MAKE_PP(shash_key_lt)
HSM_MAKE_PP(shash_keys_array)
HSM_MAKE_PP(shash_keys_hash)
HSM_MAKE_PP(shash_group_get_hash)
HSM_MAKE_PP(shash_snapshot)
HSM_MAKE_PP(shash_is_snapshot)
HSM_MAKE_PP(shash_idle)
HSM_MAKE_PP(shash_tidy)
HSM_MAKE_PP(shash_tally_get)
HSM_MAKE_PP(shash_tally_zero)
HSM_MAKE_PP(shash_tally_gzero)
#endif /* cv_set_call_checker */
/* API operations as XS function bodies */
#ifndef PERL_ARGS_ASSERT_CROAK_XS_USAGE
static void S_croak_xs_usage(const CV *, const char *);
# define croak_xs_usage(cv, params) S_croak_xs_usage(cv, params)
#endif /* !PERL_ARGS_ASSERT_CROAK_XS_USAGE */
#define HSM_MAKE_XSFUNC(name, arity, argnames) \
static void THX_xsfunc_##name(pTHX_ CV *cv) \
{ \
dMARK; dSP; \
if(unlikely(SP - MARK != arity)) croak_xs_usage(cv, argnames); \
pp1_##name(); \
}
HSM_MAKE_XSFUNC(is_shash, 1, "arg")
HSM_MAKE_XSFUNC(check_shash, 1, "arg")
HSM_MAKE_XSFUNC(shash_open, 2, "filename, mode")
HSM_MAKE_XSFUNC(shash_is_readable, 1, "shash")
HSM_MAKE_XSFUNC(shash_is_writable, 1, "shash")
HSM_MAKE_XSFUNC(shash_mode, 1, "shash")
HSM_MAKE_XSFUNC(shash_exists, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_length, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_get, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_set, 3, "shash, key, newvalue")
HSM_MAKE_XSFUNC(shash_tied_store, 3, "shash, key, newvalue")
HSM_MAKE_XSFUNC(shash_gset, 3, "shash, key, newvalue")
HSM_MAKE_XSFUNC(shash_tied_delete, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_cset, 4, "shash, key, chkvalue, newvalue")
HSM_MAKE_XSFUNC(shash_occupied, 1, "shash")
HSM_MAKE_XSFUNC(shash_count, 1, "shash")
HSM_MAKE_XSFUNC(shash_size, 1, "shash")
HSM_MAKE_XSFUNC(shash_key_min, 1, "shash")
HSM_MAKE_XSFUNC(shash_key_max, 1, "shash")
HSM_MAKE_XSFUNC(shash_key_ge, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_key_gt, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_key_le, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_key_lt, 2, "shash, key")
HSM_MAKE_XSFUNC(shash_keys_array, 1, "shash")
HSM_MAKE_XSFUNC(shash_keys_hash, 1, "shash")
HSM_MAKE_XSFUNC(shash_group_get_hash, 1, "shash")
HSM_MAKE_XSFUNC(shash_snapshot, 1, "shash")
HSM_MAKE_XSFUNC(shash_is_snapshot, 1, "shash")
HSM_MAKE_XSFUNC(shash_idle, 1, "shash")
HSM_MAKE_XSFUNC(shash_tidy, 1, "shash")
HSM_MAKE_XSFUNC(shash_tally_get, 1, "shash")
HSM_MAKE_XSFUNC(shash_tally_zero, 1, "shash")
HSM_MAKE_XSFUNC(shash_tally_gzero, 1, "shash")
#ifndef PERL_ARGS_ASSERT_CROAK_XS_USAGE
# undef croak_xs_usage
#endif /* !PERL_ARGS_ASSERT_CROAK_XS_USAGE */
/* checker to turn function calls into custom ops */
#ifdef cv_set_call_checker
static OP *THX_ck_entersub_args_hsm(pTHX_ OP *entersubop, GV *namegv, SV *ckobj)
{
CV *cv = (CV*)ckobj;
OP *pushop, *firstargop, *cvop, *lastargop, *argop, *newop;
int nargs;
entersubop = ck_entersub_args_proto(entersubop, namegv, (SV*)cv);
pushop = cUNOPx(entersubop)->op_first;
if(!OpHAS_SIBLING(pushop)) pushop = cUNOPx(pushop)->op_first;
firstargop = OpSIBLING(pushop);
for (cvop = firstargop; OpHAS_SIBLING(cvop); cvop = OpSIBLING(cvop)) ;
for (nargs = 0, lastargop = pushop, argop = firstargop; argop != cvop;
lastargop = argop, argop = OpSIBLING(argop))
nargs++;
if(unlikely(nargs != (int)CvPROTOLEN(cv))) return entersubop;
OpMORESIB_set(pushop, cvop);
OpLASTSIB_set(lastargop, NULL);
op_free(entersubop);
newop = newUNOP(OP_NULL, 0, lastargop);
cUNOPx(newop)->op_first = firstargop;
# ifdef XopENTRY_set
newop->op_type = OP_CUSTOM;
# else /* !XopENTRY_set */
newop->op_type = OP_DOFILE;
# endif /* !XopENTRY_set */
newop->op_ppaddr = DPTR2FPTR(Perl_ppaddr_t, CvXSUBANY(cv).any_ptr);
return newop;
}
#endif /* cv_set_call_checker */
MODULE = Hash::SharedMem PACKAGE = Hash::SharedMem
PROTOTYPES: DISABLE
BOOT:
{
dirref_ensure_strategy();
(void) newCONSTSUB(NULL, "Hash::SharedMem::shash_referential_handle",
boolSV(likely(dirref_referential())));
}
BOOT:
{
MY_CXT_INIT;
MY_CXT.safe_undef = newSV(0);
SvREADONLY_on(MY_CXT.safe_undef);
MY_CXT.sizes_table = newHV();
MY_CXT.shash_handle_stash = gv_stashpvs("Hash::SharedMem::Handle", 1);
tally_boot();
}
#if QWITH_DUP
void
CLONE(...)
CODE:
PERL_UNUSED_VAR(items);
{
MY_CXT_CLONE;
MY_CXT.safe_undef = newSV(0);
SvREADONLY_on(MY_CXT.safe_undef);
MY_CXT.sizes_table = newHV();
MY_CXT.shash_handle_stash =
gv_stashpvs("Hash::SharedMem::Handle", 1);
tally_boot();
}
#endif /* QWITH_DUP */
BOOT:
{
#ifdef cv_set_call_checker
# define PPFUNC_(name) THX_pp_##name,
#else /* !cv_set_call_checker */
# define PPFUNC_(name) /**/
#endif /* !cv_set_call_checker */
#define HSM_FUNC_TO_INSTALL(name, arity) \
{ \
"Hash::SharedMem::"#name, \
PPFUNC_(name) \
THX_xsfunc_##name, \
(arity), \
}
struct {
char const *fqsubname;
#ifdef cv_set_call_checker
Perl_ppaddr_t THX_pp;
#endif /* cv_set_call_checker */
XSUBADDR_t THX_xsfunc;
int arity;
} const funcs_to_install[] = {
HSM_FUNC_TO_INSTALL(is_shash, 1),
HSM_FUNC_TO_INSTALL(check_shash, 1),
HSM_FUNC_TO_INSTALL(shash_open, 2),
HSM_FUNC_TO_INSTALL(shash_is_readable, 1),
HSM_FUNC_TO_INSTALL(shash_is_writable, 1),
HSM_FUNC_TO_INSTALL(shash_mode, 1),
HSM_FUNC_TO_INSTALL(shash_exists, 2),
HSM_FUNC_TO_INSTALL(shash_length, 2),
HSM_FUNC_TO_INSTALL(shash_get, 2),
HSM_FUNC_TO_INSTALL(shash_set, 3),
HSM_FUNC_TO_INSTALL(shash_gset, 3),
HSM_FUNC_TO_INSTALL(shash_cset, 4),
HSM_FUNC_TO_INSTALL(shash_occupied, 1),
HSM_FUNC_TO_INSTALL(shash_count, 1),
HSM_FUNC_TO_INSTALL(shash_size, 1),
HSM_FUNC_TO_INSTALL(shash_key_min, 1),
HSM_FUNC_TO_INSTALL(shash_key_max, 1),
HSM_FUNC_TO_INSTALL(shash_key_ge, 2),
HSM_FUNC_TO_INSTALL(shash_key_gt, 2),
HSM_FUNC_TO_INSTALL(shash_key_le, 2),
HSM_FUNC_TO_INSTALL(shash_key_lt, 2),
HSM_FUNC_TO_INSTALL(shash_keys_array, 1),
HSM_FUNC_TO_INSTALL(shash_keys_hash, 1),
HSM_FUNC_TO_INSTALL(shash_group_get_hash, 1),
HSM_FUNC_TO_INSTALL(shash_snapshot, 1),
HSM_FUNC_TO_INSTALL(shash_is_snapshot, 1),
HSM_FUNC_TO_INSTALL(shash_idle, 1),
HSM_FUNC_TO_INSTALL(shash_tidy, 1),
HSM_FUNC_TO_INSTALL(shash_tally_get, 1),
HSM_FUNC_TO_INSTALL(shash_tally_zero, 1),
HSM_FUNC_TO_INSTALL(shash_tally_gzero, 1),
}, *fti;
int i;
for(i = C_ARRAY_LENGTH(funcs_to_install); i--; ) {
CV *fcv;
#if defined(cv_set_call_checker) && defined(XopENTRY_set)
XOP *xop;
char const *shortname;
#endif /* cv_set_call_checker && XopENTRY_set */
fti = &funcs_to_install[i];
fcv = newXSproto_portable((char*)fti->fqsubname,
fti->THX_xsfunc, __FILE__, "$$$$"+4-fti->arity);
#ifdef cv_set_call_checker
# ifdef XopENTRY_set
Newxz(xop, 1, XOP);
shortname = fti->fqsubname + sizeof("Hash::SharedMem::")-1;
XopENTRY_set(xop, xop_name, shortname);
XopENTRY_set(xop, xop_desc, shortname);
XopENTRY_set(xop, xop_class, OA_UNOP);
Perl_custom_op_register(aTHX_ fti->THX_pp, xop);
# endif /* XopENTRY_set */
CvXSUBANY(fcv).any_ptr = FPTR2DPTR(void*, fti->THX_pp);
cv_set_call_checker(fcv, THX_ck_entersub_args_hsm, (SV*)fcv);
#else /* !cv_set_call_checker */
PERL_UNUSED_VAR(fcv);
#endif /* !cv_set_call_checker */
}
}
BOOT:
{
HV *fstash = gv_stashpvs("Hash::SharedMem", 0);
(void) hv_stores(fstash, "shash_getd",
SvREFCNT_inc_NN(*hv_fetchs(fstash, "shash_exists", 0)));
}
MODULE = Hash::SharedMem PACKAGE = Hash::SharedMem::Handle
PROTOTYPES: DISABLE
SV *
referential_handle(SV *classname)
CODE:
PERL_UNUSED_VAR(classname);
RETVAL = boolSV(likely(dirref_referential()));
OUTPUT:
RETVAL
SV *
open(SV *classname, SV *filename, SV *mode)
CODE:
PERL_UNUSED_VAR(classname);
PUTBACK;
RETVAL = shash_open(filename, mode);
SvREFCNT_inc_simple_void_NN(RETVAL);
SPAGAIN;
OUTPUT:
RETVAL
BOOT:
{
HV *fstash = gv_stashpvs("Hash::SharedMem", 0);
HV *mstash = gv_stashpvs("Hash::SharedMem::Handle", 0);
HE *he;
for(hv_iterinit(fstash); (he = hv_iternext(fstash)); ) {
STRLEN klen;
char const *kpv = HePV(he, klen);
if(klen > 6 && memcmp(kpv, "shash_", 6) == 0 &&
!(klen == 24 &&
memcmp(kpv+6, "referential_handle", 18)
== 0) &&
!(klen == 10 && memcmp(kpv+6, "open", 4) == 0))
(void) hv_store(mstash, kpv+6, klen-6,
SvREFCNT_inc_NN(HeVAL(he)), 0);
}
}
SV *
TIEHASH(SV *classname, SV *arg0, SV *arg1 = NULL)
CODE:
PERL_UNUSED_VAR(classname);
if(!arg1) {
arg_check_shash(arg0);
RETVAL = newRV_ro_mortal_inc(SvRV(arg0));
} else {
PUTBACK;
RETVAL = shash_open(arg0, arg1);
SPAGAIN;
}
SvREFCNT_inc_simple_void_NN(RETVAL);
OUTPUT:
RETVAL
void
CLEAR(SV *shash)
PPCODE:
arg_check_shash(shash);
croak("can't clear shared hash");
BOOT:
{
HV *mstash = gv_stashpvs("Hash::SharedMem::Handle", 0);
(void) hv_stores(mstash, "EXISTS",
SvREFCNT_inc_NN(*hv_fetchs(mstash, "exists", 0)));
(void) hv_stores(mstash, "FETCH",
SvREFCNT_inc_NN(*hv_fetchs(mstash, "get", 0)));
(void) newXSproto_portable("Hash::SharedMem::Handle::STORE",
THX_xsfunc_shash_tied_store, __FILE__, "$$$");
(void) newXSproto_portable("Hash::SharedMem::Handle::DELETE",
THX_xsfunc_shash_tied_delete, __FILE__, "$$");
#if PERL_VERSION_GE(5,25,3)
(void) hv_stores(mstash, "SCALAR",
SvREFCNT_inc_NN(*hv_fetchs(mstash, "count", 0)));
#else /* <5.25.3 */
(void) hv_stores(mstash, "SCALAR",
SvREFCNT_inc_NN(*hv_fetchs(mstash, "occupied", 0)));
#endif /* <5.25.3 */
(void) hv_stores(mstash, "FIRSTKEY",
SvREFCNT_inc_NN(*hv_fetchs(mstash, "key_min", 0)));
(void) hv_stores(mstash, "NEXTKEY",
SvREFCNT_inc_NN(*hv_fetchs(mstash, "key_gt", 0)));
}
|