1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914
|
/* Copyright (c) 2007, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "sql/mdl.h"
#include <time.h>
#include <algorithm>
#include <atomic>
#include <functional>
#include "lf.h"
#include "m_ctype.h"
#include "my_dbug.h"
#include "my_macros.h"
#include "my_murmur3.h"
#include "my_sharedlib.h"
#include "my_sys.h"
#include "my_systime.h"
#include "my_thread.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/components/services/bits/psi_cond_bits.h"
#include "mysql/components/services/bits/psi_memory_bits.h"
#include "mysql/components/services/bits/psi_mutex_bits.h"
#include "mysql/components/services/bits/psi_rwlock_bits.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_mdl.h"
#include "mysql/psi/mysql_memory.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_stage.h"
#include "mysql/psi/psi_mdl.h"
#include "mysql/service_thd_wait.h"
#include "mysqld_error.h"
#include "prealloced_array.h"
#include "sql/debug_sync.h"
#include "sql/thr_malloc.h"
extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *system_charset_info;
static PSI_memory_key key_memory_MDL_context_acquire_locks;
#ifdef HAVE_PSI_INTERFACE
static PSI_mutex_key key_MDL_wait_LOCK_wait_status;
static PSI_mutex_info all_mdl_mutexes[] = {{&key_MDL_wait_LOCK_wait_status,
"MDL_wait::LOCK_wait_status", 0, 0,
PSI_DOCUMENT_ME}};
static PSI_rwlock_key key_MDL_lock_rwlock;
static PSI_rwlock_key key_MDL_context_LOCK_waiting_for;
static PSI_rwlock_info all_mdl_rwlocks[] = {
{&key_MDL_lock_rwlock, "MDL_lock::rwlock", PSI_FLAG_RWLOCK_PR, 0,
PSI_DOCUMENT_ME},
{&key_MDL_context_LOCK_waiting_for, "MDL_context::LOCK_waiting_for",
PSI_FLAG_RWLOCK_PR, 0, PSI_DOCUMENT_ME}};
static PSI_cond_key key_MDL_wait_COND_wait_status;
static PSI_cond_info all_mdl_conds[] = {{&key_MDL_wait_COND_wait_status,
"MDL_context::COND_wait_status", 0, 0,
PSI_DOCUMENT_ME}};
static PSI_memory_info all_mdl_memory[] = {
{&key_memory_MDL_context_acquire_locks, "MDL_context::acquire_locks", 0, 0,
"Buffer for sorting lock requests."}};
/**
Initialise all the performance schema instrumentation points
used by the MDL subsystem.
*/
static void init_mdl_psi_keys(void) {
int count;
count = static_cast<int>(array_elements(all_mdl_mutexes));
mysql_mutex_register("sql", all_mdl_mutexes, count);
count = static_cast<int>(array_elements(all_mdl_rwlocks));
mysql_rwlock_register("sql", all_mdl_rwlocks, count);
count = static_cast<int>(array_elements(all_mdl_conds));
mysql_cond_register("sql", all_mdl_conds, count);
count = static_cast<int>(array_elements(all_mdl_memory));
mysql_memory_register("sql", all_mdl_memory, count);
MDL_key::init_psi_keys();
}
#endif /* HAVE_PSI_INTERFACE */
/**
Thread state names to be used in case when we have to wait on resource
belonging to certain namespace.
*/
PSI_stage_info MDL_key::m_namespace_to_wait_state_name[NAMESPACE_END] = {
{0, "Waiting for global read lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for backup lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for tablespace metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for schema metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for table metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for stored function metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for stored procedure metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for trigger metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for event metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for commit lock", 0, PSI_DOCUMENT_ME},
{0, "User lock", 0, PSI_DOCUMENT_ME}, /* Be compatible with old status. */
{0, "Waiting for locking service lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for spatial reference system lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for acl cache lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for column statistics lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for resource groups metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for foreign key metadata lock", 0, PSI_DOCUMENT_ME},
{0, "Waiting for check constraint metadata lock", 0, PSI_DOCUMENT_ME}};
#ifdef HAVE_PSI_INTERFACE
void MDL_key::init_psi_keys() {
int i;
int count;
PSI_stage_info *info [[maybe_unused]];
count =
static_cast<int>(array_elements(MDL_key::m_namespace_to_wait_state_name));
for (i = 0; i < count; i++) {
/* mysql_stage_register wants an array of pointers, registering 1 by 1. */
info = &MDL_key::m_namespace_to_wait_state_name[i];
mysql_stage_register("sql", &info, 1);
}
}
#endif
static bool mdl_initialized = false;
/**
A collection of all MDL locks. A singleton,
there is only one instance of the map in the server.
*/
class MDL_map {
public:
void init();
void destroy();
inline MDL_lock *find(LF_PINS *pins, const MDL_key *key, bool *pinned);
inline MDL_lock *find_or_insert(LF_PINS *pins, const MDL_key *key,
bool *pinned);
/**
Decrement unused MDL_lock objects counter.
*/
void lock_object_used() { --m_unused_lock_objects; }
/**
Increment unused MDL_lock objects counter. If number of such objects
exceeds threshold and unused/total objects ratio is high enough try
to free some of them.
*/
void lock_object_unused(MDL_context *ctx, LF_PINS *pins) {
/*
Use thread local copy of unused locks counter for performance/
scalability reasons. It is updated on both successful and failed
attempts to delete unused MDL_lock objects in order to avoid infinite
loops,
*/
int32 unused_locks = ++m_unused_lock_objects;
while (unused_locks > mdl_locks_unused_locks_low_water &&
(unused_locks > m_locks.count * MDL_LOCKS_UNUSED_LOCKS_MIN_RATIO)) {
/*
If number of unused lock objects exceeds low water threshold and
unused/total objects ratio is high enough - try to do random dive
into m_locks hash, find an unused object by iterating upwards
through its split-ordered list and try to free it.
If we fail to do this - update local copy of unused objects
counter and retry if needed,
Note that:
*) It is not big deal if "m_unused_lock_objects" due to races becomes
negative temporarily as we perform signed comparison.
*) There is a good chance that we will find an unused object quickly
because unused/total ratio is high enough.
*) There is no possibility for infinite loop since our PRNG works
in such way that we eventually cycle through all LF_HASH hash
buckets (@sa MDL_context::get_random()).
*) Thanks to the fact that we choose random object to expel -
objects which are used more often will naturally stay
in the cache and rarely used objects will be expelled from it.
*) Non-atomic read of LF_HASH::count which happens above should be
OK as LF_HASH code does them too + preceding atomic operation
provides memory barrier.
*/
remove_random_unused(ctx, pins, &unused_locks);
}
}
/**
Get number of unused MDL_lock objects in MDL_map cache.
@note Does non-atomic read so can return stale results. This is OK since
this method is used only in unit-tests. The latter employ means
of thread synchronization which are external to MDL and prevent
memory reordering/ensure that thread calling this method have
up-to-date view on the memory. @sa m_unused_lock_objects.
*/
int32 get_unused_locks_count() const { return m_unused_lock_objects.load(); }
/**
Allocate pins which are necessary for MDL_context/thread to be able
to work with MDL_map container.
*/
LF_PINS *get_pins() { return lf_hash_get_pins(&m_locks); }
/**
Check if MDL_lock object corresponding to the key is going to be
singleton.
*/
bool is_lock_object_singleton(const MDL_key *mdl_key) const {
return (mdl_key->mdl_namespace() == MDL_key::GLOBAL ||
mdl_key->mdl_namespace() == MDL_key::COMMIT ||
mdl_key->mdl_namespace() == MDL_key::ACL_CACHE ||
mdl_key->mdl_namespace() == MDL_key::BACKUP_LOCK);
}
private:
void remove_random_unused(MDL_context *ctx, LF_PINS *pins,
int32 *unused_locks);
/** LF_HASH with all locks in the server. */
LF_HASH m_locks;
/** Pre-allocated MDL_lock object for GLOBAL namespace. */
MDL_lock *m_global_lock;
/** Pre-allocated MDL_lock object for COMMIT namespace. */
MDL_lock *m_commit_lock;
/** Pre-allocated MDL_lock object for ACL_CACHE namespace. */
MDL_lock *m_acl_cache_lock;
/** Pre-allocated MDL_lock object for BACKUP_LOCK namespace. */
MDL_lock *m_backup_lock;
/**
Number of unused MDL_lock objects in the server.
Updated using atomic operations, read using both atomic and ordinary
reads. We assume that ordinary reads of 32-bit words can't result in
partial results, but may produce stale results thanks to memory
reordering, LF_HASH seems to be using similar assumption.
Note that due to fact that updates to this counter are not atomic with
marking MDL_lock objects as used/unused it might easily get negative
for some short period of time. Code which uses its value needs to take
this into account.
*/
std::atomic<int32> m_unused_lock_objects;
};
/**
Threshold for number of unused MDL_lock objects.
We will start considering freeing some unused objects only after exceeding
this value and if unused/total objects ratio is high enough.
Normally this threshold is constant. It is exposed outside of MDL subsystem
as a variable only in order to simplify unit testing.
*/
int32 mdl_locks_unused_locks_low_water =
MDL_LOCKS_UNUSED_LOCKS_LOW_WATER_DEFAULT;
/**
A context of the recursive traversal through all contexts
in all sessions in search for deadlock.
*/
class Deadlock_detection_visitor : public MDL_wait_for_graph_visitor {
public:
Deadlock_detection_visitor(MDL_context *start_node_arg)
: m_start_node(start_node_arg),
m_victim(nullptr),
m_current_search_depth(0),
m_found_deadlock(false) {}
bool enter_node(MDL_context *node) override;
void leave_node(MDL_context *node) override;
bool inspect_edge(MDL_context *dest) override;
MDL_context *get_victim() const { return m_victim; }
private:
/**
Change the deadlock victim to a new one if it has lower deadlock
weight.
*/
void opt_change_victim_to(MDL_context *new_victim);
private:
/**
The context which has initiated the search. There
can be multiple searches happening in parallel at the same time.
*/
MDL_context *m_start_node;
/** If a deadlock is found, the context that identifies the victim. */
MDL_context *m_victim;
/** Set to the 0 at start. Increased whenever
we descend into another MDL context (aka traverse to the next
wait-for graph node). When MAX_SEARCH_DEPTH is reached, we
assume that a deadlock is found, even if we have not found a
loop.
*/
uint m_current_search_depth;
/** true if we found a deadlock. */
bool m_found_deadlock;
/**
Maximum depth for deadlock searches. After this depth is
achieved we will unconditionally declare that there is a
deadlock.
@note This depth should be small enough to avoid stack
being exhausted by recursive search algorithm.
TODO: Find out what is the optimal value for this parameter.
Current value is safe, but probably sub-optimal,
as there is an anecdotal evidence that real-life
deadlocks are even shorter typically.
*/
static const uint MAX_SEARCH_DEPTH = 32;
};
/**
Enter a node of a wait-for graph. After
a node is entered, inspect_edge() will be called
for all wait-for destinations of this node. Then
leave_node() will be called.
We call "enter_node()" for all nodes we inspect,
including the starting node.
@retval true Maximum search depth exceeded.
@retval false OK.
*/
bool Deadlock_detection_visitor::enter_node(MDL_context *node) {
m_found_deadlock = ++m_current_search_depth >= MAX_SEARCH_DEPTH;
if (m_found_deadlock) {
assert(!m_victim);
opt_change_victim_to(node);
}
return m_found_deadlock;
}
/**
Done inspecting this node. Decrease the search
depth. If a deadlock is found, and we are
backtracking to the start node, optionally
change the deadlock victim to one with lower
deadlock weight.
*/
void Deadlock_detection_visitor::leave_node(MDL_context *node) {
--m_current_search_depth;
if (m_found_deadlock) opt_change_victim_to(node);
}
/**
Inspect a wait-for graph edge from one MDL context to another.
@retval true A loop is found.
@retval false No loop is found.
*/
bool Deadlock_detection_visitor::inspect_edge(MDL_context *node) {
m_found_deadlock = node == m_start_node;
return m_found_deadlock;
}
/**
Change the deadlock victim to a new one if it has lower deadlock
weight.
@param new_victim New candidate for deadlock victim.
*/
void Deadlock_detection_visitor::opt_change_victim_to(MDL_context *new_victim) {
if (m_victim == nullptr ||
m_victim->get_deadlock_weight() >= new_victim->get_deadlock_weight()) {
/* Swap victims, unlock the old one. */
MDL_context *tmp = m_victim;
m_victim = new_victim;
m_victim->lock_deadlock_victim();
if (tmp) tmp->unlock_deadlock_victim();
}
}
/**
Get a bit corresponding to enum_mdl_type value in a granted/waiting bitmaps
and compatibility matrices.
*/
#define MDL_BIT(A) static_cast<MDL_lock::bitmap_t>(1U << A)
/**
The lock context. Created internally for an acquired lock.
For a given name, there exists only one MDL_lock instance,
and it exists only when the lock has been granted.
Can be seen as an MDL subsystem's version of TABLE_SHARE.
This is an abstract class which lacks information about
compatibility rules for lock types. They should be specified
in its descendants.
*/
class MDL_lock {
public:
typedef unsigned short bitmap_t;
class Ticket_list {
public:
typedef I_P_List<MDL_ticket,
I_P_List_adapter<MDL_ticket, &MDL_ticket::next_in_lock,
&MDL_ticket::prev_in_lock>,
I_P_List_null_counter, I_P_List_fast_push_back<MDL_ticket>>
List;
operator const List &() const { return m_list; }
Ticket_list() : m_bitmap(0) {}
void add_ticket(MDL_ticket *ticket);
void remove_ticket(MDL_ticket *ticket);
bool is_empty() const { return m_list.is_empty(); }
bitmap_t bitmap() const { return m_bitmap; }
private:
void clear_bit_if_not_in_list(enum_mdl_type type);
private:
/** List of tickets. */
List m_list;
/** Bitmap of types of tickets in this list. */
bitmap_t m_bitmap;
};
typedef Ticket_list::List::Iterator Ticket_iterator;
typedef longlong fast_path_state_t;
/**
Helper struct which defines how different types of locks are handled
for a specific MDL_lock. In practice we use only two strategies: "scoped"
lock strategy for locks in GLOBAL, COMMIT, TABLESPACE and SCHEMA namespaces
and "object" lock strategy for all other namespaces.
*/
struct MDL_lock_strategy {
/**
Compatibility (or rather "incompatibility") matrices for lock types.
Array of bitmaps which elements specify which granted locks are
incompatible with the type of lock being requested.
*/
bitmap_t m_granted_incompatible[MDL_TYPE_END];
/**
Arrays of bitmaps which elements specify which waiting locks are
incompatible with the type of lock being requested. Basically, each
array defines priorities between lock types.
We need 4 separate arrays since in order to prevent starvation for
some of lock request types, we use different priority matrices:
0) in "normal" situation.
1) in situation when the number of successively granted "piglet" requests
exceeds the max_write_lock_count limit.
2) in situation when the number of successively granted "hog" requests
exceeds the max_write_lock_count limit.
3) in situation when both "piglet" and "hog" counters exceed limit.
*/
bitmap_t m_waiting_incompatible[4][MDL_TYPE_END];
/**
Array of increments for "unobtrusive" types of lock requests for locks.
@sa MDL_lock::get_unobtrusive_lock_increment().
*/
fast_path_state_t m_unobtrusive_lock_increment[MDL_TYPE_END];
/**
Indicates that locks of this type are affected by
the max_write_lock_count limit.
*/
bool m_is_affected_by_max_write_lock_count;
#ifndef NDEBUG
/**
Indicate that a type is legal with this strategy. Only for asserts and
debug-only checks.
*/
bool legal_type[MDL_TYPE_END];
#endif /* not defined NDEBUG */
/**
Pointer to a static method which determines if the type of lock
requested requires notification of conflicting locks. NULL if there
are no lock types requiring notification.
*/
bool (*m_needs_notification)(const MDL_ticket *ticket);
/**
Pointer to a static method which allows notification of owners of
conflicting locks about the fact that a type of lock requiring
notification was requested.
*/
void (*m_notify_conflicting_locks)(MDL_context *ctx, MDL_lock *lock);
/**
Pointer to a static method which converts information about
locks granted using "fast" path from fast_path_state_t
representation to bitmap of lock types.
*/
bitmap_t (*m_fast_path_granted_bitmap)(const MDL_lock &lock);
/**
Pointer to a static method which determines if waiting for the lock
should be aborted when when connection is lost. NULL if locks of
this type don't require such aborts.
*/
bool (*m_needs_connection_check)(const MDL_lock *lock);
};
public:
/** The key of the object (data) being protected. */
MDL_key key;
/**
Read-write lock protecting this lock context.
@note The fact that we use read-write lock prefers readers here is
important as deadlock detector won't work correctly otherwise.
For example, imagine that we have following waiters graph:
ctxA -> obj1 -> ctxB -> obj1 -|
^ |
|----------------------------|
and both ctxA and ctxB start deadlock detection process:
ctxA read-locks obj1 ctxB read-locks obj2
ctxA goes deeper ctxB goes deeper
Now ctxC comes in who wants to start waiting on obj1, also
ctxD comes in who wants to start waiting on obj2.
ctxC tries to write-lock obj1 ctxD tries to write-lock obj2
ctxC is blocked ctxD is blocked
Now ctxA and ctxB resume their search:
ctxA tries to read-lock obj2 ctxB tries to read-lock obj1
If m_rwlock prefers writes (or fair) both ctxA and ctxB would be
blocked because of pending write locks from ctxD and ctxC
correspondingly. Thus we will get a deadlock in deadlock detector.
If m_wrlock prefers readers (actually ignoring pending writers is
enough) ctxA and ctxB will continue and no deadlock will occur.
*/
mysql_prlock_t m_rwlock;
const bitmap_t *incompatible_granted_types_bitmap() const {
return m_strategy->m_granted_incompatible;
}
const bitmap_t *incompatible_waiting_types_bitmap() const {
return m_strategy
->m_waiting_incompatible[m_current_waiting_incompatible_idx];
}
/**
Get index of priority matrice in MDL_lock_strategy::m_waiting_incompatible
array which corresponds to current values of the m_piglet_lock_count and
m_hog_lock_count counters and the max_write_lock_count threshold.
*/
uint get_incompatible_waiting_types_bitmap_idx() const {
mysql_prlock_assert_write_owner(&m_rwlock);
/*
To prevent starvation for lock types with lower priority use:
*) MDL_lock_strategy::m_waiting_incompatible[0] matrice by default.
*) MDL_lock_strategy::m_waiting_incompatible[1] when the number of
successively granted "piglet" requests exceeds max_write_lock_count.
*) MDL_lock_strategy::m_waiting_incompatible[2] when the number of
successively granted "hog" requests exceeds max_write_lock_count.
*) MDL_lock_strategy::m_waiting_incompatible[3] when both "piglet" and
"hog" counters exceed this limit.
*/
uint idx = 0;
if (m_piglet_lock_count >= max_write_lock_count) idx += 1;
if (m_hog_lock_count >= max_write_lock_count) idx += 2;
return idx;
}
/**
Switch priority matrice for the MDL_lock object if m_piglet_lock_count or/
and m_hog_lock_count counters have crossed max_write_lock_count threshold.
@returns true - if priority matrice has been changed, false - otherwise.
*/
bool switch_incompatible_waiting_types_bitmap_if_needed() {
mysql_prlock_assert_write_owner(&m_rwlock);
uint new_idx = get_incompatible_waiting_types_bitmap_idx();
if (m_current_waiting_incompatible_idx == new_idx) return false;
m_current_waiting_incompatible_idx = new_idx;
return true;
}
bool has_pending_conflicting_lock(enum_mdl_type type);
bool can_grant_lock(enum_mdl_type type,
const MDL_context *requestor_ctx) const;
void reschedule_waiters();
void remove_ticket(MDL_context *ctx, LF_PINS *pins,
Ticket_list MDL_lock::*queue, MDL_ticket *ticket);
bool visit_subgraph(MDL_ticket *waiting_ticket,
MDL_wait_for_graph_visitor *gvisitor);
bool needs_notification(const MDL_ticket *ticket) const {
return m_strategy->m_needs_notification
? m_strategy->m_needs_notification(ticket)
: false;
}
void notify_conflicting_locks(MDL_context *ctx) {
if (m_strategy->m_notify_conflicting_locks)
m_strategy->m_notify_conflicting_locks(ctx, this);
}
bool needs_connection_check() const {
return m_strategy->m_needs_connection_check
? m_strategy->m_needs_connection_check(this)
: false;
}
inline static bool needs_hton_notification(
MDL_key::enum_mdl_namespace mdl_namespace);
bool is_affected_by_max_write_lock_count() const {
/*
Disable max_write_lock_count handling for ACL_CACHE namespace to
enable optimization that avoids find_deadlock() for it.
@note In theory we can make ACL_CACHE to use scoped lock strategy
instead, but such a change is likely to be more intrusive.
*/
return key.mdl_namespace() != MDL_key::ACL_CACHE &&
m_strategy->m_is_affected_by_max_write_lock_count;
}
/**
If we just have granted a lock of "piglet" or "hog" type and there are
pending lower priority locks, increase the appropriate counter. If this
counter now exceeds the max_write_lock_count threshold, switch priority
matrice for the MDL_lock object.
@returns true - if priority matrice has been changed, false - otherwise.
*/
bool count_piglets_and_hogs(enum_mdl_type type) {
mysql_prlock_assert_write_owner(&m_rwlock);
if ((MDL_BIT(type) & MDL_OBJECT_HOG_LOCK_TYPES) != 0) {
if (m_waiting.bitmap() & ~MDL_OBJECT_HOG_LOCK_TYPES) {
m_hog_lock_count++;
if (switch_incompatible_waiting_types_bitmap_if_needed()) return true;
}
} else if (type == MDL_SHARED_WRITE) {
if (m_waiting.bitmap() & MDL_BIT(MDL_SHARED_READ_ONLY)) {
m_piglet_lock_count++;
if (switch_incompatible_waiting_types_bitmap_if_needed()) return true;
}
}
return false;
}
/**
@returns "Fast path" increment for request for "unobtrusive" type
of lock, 0 - if it is request for "obtrusive" type of
lock.
@note We split all lock types for each of MDL namespaces
in two sets:
A) "unobtrusive" lock types
1) Each type from this set should be compatible with all other
types from the set (including itself).
2) These types should be common for DML operations
Our goal is to optimize acquisition and release of locks of this
type by avoiding complex checks and manipulations on m_waiting/
m_granted bitmaps/lists. We replace them with a check of and
increment/decrement of integer counters.
We call the latter type of acquisition/release "fast path".
Use of "fast path" reduces the size of critical section associated
with MDL_lock::m_rwlock lock in the common case and thus increases
scalability.
The amount by which acquisition/release of specific type
"unobtrusive" lock increases/decreases packed counter in
MDL_lock::m_fast_path_state is returned by this function.
B) "obtrusive" lock types
1) Granted or pending lock of those type is incompatible with
some other types of locks or with itself.
2) Not common for DML operations
These locks have to be always acquired involving manipulations on
m_waiting/m_granted bitmaps/lists, i.e. we have to use "slow path"
for them. Moreover in the presence of active/pending locks from
"obtrusive" set we have to acquire using "slow path" even locks of
"unobtrusive" type.
@see MDL_scoped_lock::m_unobtrusive_lock_increment and
@see MDL_object_lock::m_unobtrusive_lock_increment for
definitions of these sets for scoped and per-object locks.
*/
inline static fast_path_state_t get_unobtrusive_lock_increment(
const MDL_request *request);
/**
@returns "Fast path" increment if type of lock is "unobtrusive" type,
0 - if it is "obtrusive" type of lock.
*/
fast_path_state_t get_unobtrusive_lock_increment(enum_mdl_type type) const {
return m_strategy->m_unobtrusive_lock_increment[type];
}
/**
Check if type of lock requested is "obtrusive" type of lock.
@sa MDL_lock::get_unobtrusive_lock_increment() description.
*/
bool is_obtrusive_lock(enum_mdl_type type) const {
return get_unobtrusive_lock_increment(type) == 0;
}
/**
Return set of types of lock requests which were granted using
"fast path" algorithm in the bitmap_t form.
This method is only called from MDL_lock::can_grant_lock() and its
return value is only important when we are trying to figure out if
we can grant an obtrusive lock. But this means that the HAS_OBTRUSIVE
flag is set so all changes to m_fast_path_state happen under protection
of MDL_lock::m_rwlock (see invariant [INV1]).
Since can_grant_lock() is called only when MDL_lock::m_rwlock is held,
it is safe to do an ordinary read of m_fast_path_state here.
*/
bitmap_t fast_path_granted_bitmap() const {
return m_strategy->m_fast_path_granted_bitmap(*this);
}
/** List of granted tickets for this lock. */
Ticket_list m_granted;
/** Tickets for contexts waiting to acquire a lock. */
Ticket_list m_waiting;
private:
/**
Number of times high priority, "hog" lock requests (X, SNRW, SNW) have been
granted while lower priority lock requests (all other types) were waiting.
Currently used only for object locks. Protected by m_rwlock lock.
*/
ulong m_hog_lock_count;
/**
Number of times high priority, "piglet" lock requests (SW) have been
granted while locks requests with lower priority (SRO) were waiting.
Currently used only for object locks. Protected by m_rwlock lock.
*/
ulong m_piglet_lock_count;
/**
Index of one of the MDL_lock_strategy::m_waiting_incompatible
arrays which represents the current priority matrice.
*/
uint m_current_waiting_incompatible_idx;
public:
/**
Do "expensive" part of MDL_lock object initialization,
Called by LF_ALLOCATOR for each newly malloc()'ed MDL_lock object, is not
called in cases when LF_ALLOCATOR decides to reuse object which was
returned to it earlier. "Full" initialization happens later by calling
MDL_lock::reinit(). So @sa MDL_lock::reiniti()
*/
MDL_lock() : m_obtrusive_locks_granted_waiting_count(0) {
mysql_prlock_init(key_MDL_lock_rwlock, &m_rwlock);
}
inline void reinit(const MDL_key *mdl_key);
~MDL_lock() { mysql_prlock_destroy(&m_rwlock); }
inline static MDL_lock *create(const MDL_key *key);
inline static void destroy(MDL_lock *lock);
inline MDL_context *get_lock_owner() const;
/**
Get MDL lock strategy corresponding to MDL key.
@param key Reference to MDL_key object
@return the type of strategy scoped or object corresponding to MDL key.
*/
inline static const MDL_lock_strategy *get_strategy(const MDL_key &key) {
switch (key.mdl_namespace()) {
case MDL_key::GLOBAL:
case MDL_key::TABLESPACE:
case MDL_key::SCHEMA:
case MDL_key::COMMIT:
case MDL_key::BACKUP_LOCK:
case MDL_key::RESOURCE_GROUPS:
case MDL_key::FOREIGN_KEY:
case MDL_key::CHECK_CONSTRAINT:
return &m_scoped_lock_strategy;
default:
return &m_object_lock_strategy;
}
}
public:
/**
Number of granted or waiting lock requests of "obtrusive" type.
Also includes "obtrusive" lock requests for which we about to check
if they can be granted.
@sa MDL_lock::get_unobtrusive_lock_increment() description.
@note This number doesn't include "unobtrusive" locks which were acquired
using "slow path".
*/
uint m_obtrusive_locks_granted_waiting_count;
/**
Flag in MDL_lock::m_fast_path_state that indicates that the MDL_lock
object was marked for destruction and will be destroyed once all threads
referencing to it through hazard pointers have unpinned it.
Set using atomic compare-and-swap AND under protection of
MDL_lock::m_rwlock lock.
Thanks to this can be read either by using atomic compare-and-swap OR
using ordinary read under protection of MDL_lock::m_rwlock lock.
*/
static const fast_path_state_t IS_DESTROYED = 1ULL << 62;
/**
Flag in MDL_lock::m_fast_path_state that indicates that there are
"obtrusive" locks which are granted, waiting or for which we are
about to check if they can be granted.
Corresponds to "MDL_lock::m_obtrusive_locks_granted_waiting_count == 0"
predicate.
Set using atomic compare-and-swap AND under protection of
MDL_lock::m_rwlock lock.
Thanks to this can be read either by using atomic compare-and-swap OR
using ordinary read under protection of MDL_lock::m_rwlock lock.
Invariant [INV1]: When this flag is set all changes to m_fast_path_state
member has to be done under protection of m_rwlock lock.
*/
static const fast_path_state_t HAS_OBTRUSIVE = 1ULL << 61;
/**
Flag in MDL_lock::m_fast_path_state that indicates that there are
"slow" path locks which are granted, waiting or for which we are
about to check if they can be granted.
Corresponds to MDL_lock::m_granted/m_waiting lists being non-empty
(except special case in MDL_context::try_acquire_lock()).
Set using atomic compare-and-swap AND under protection of m_rwlock
lock. The latter is necessary because value of this flag needs to be
synchronized with contents of MDL_lock::m_granted/m_waiting lists.
*/
static const fast_path_state_t HAS_SLOW_PATH = 1ULL << 60;
/**
Combination of IS_DESTROYED/HAS_OBTRUSIVE/HAS_SLOW_PATH flags and packed
counters of specific types of "unobtrusive" locks which were granted using
"fast path".
@see MDL_scoped_lock::m_unobtrusive_lock_increment and
@see MDL_object_lock::m_unobtrusive_lock_increment for details about how
counts of different types of locks are packed into this field.
@note Doesn't include "unobtrusive" locks granted using "slow path".
@note We use combination of atomic operations and protection by
MDL_lock::m_rwlock lock to work with this member:
* Write and Read-Modify-Write operations are always carried out
atomically. This is necessary to avoid lost updates on 32-bit
platforms among other things.
* In some cases Reads can be done non-atomically because we don't
really care about value which they will return (for example,
if further down the line there will be an atomic compare-and-swap
operation, which will validate this value and provide the correct
value if the validation will fail).
* In other cases Reads can be done non-atomically since they happen
under protection of MDL_lock::m_rwlock and there is some invariant
which ensures that concurrent updates of the m_fast_path_state
member can't happen while MDL_lock::m_rwlock is held
(@sa IS_DESTROYED, HAS_OBTRUSIVE, HAS_SLOW_PATH).
@note IMPORTANT!!!
In order to enforce the above rules and other invariants,
MDL_lock::m_fast_path_state should not be updated directly.
Use fast_path_state_cas()/add()/reset() wrapper methods instead.
*/
std::atomic<fast_path_state_t> m_fast_path_state;
/**
Wrapper for atomic compare-and-swap operation on m_fast_path_state member
which enforces locking and other invariants.
*/
bool fast_path_state_cas(fast_path_state_t *old_state,
fast_path_state_t new_state) {
/*
IS_DESTROYED, HAS_OBTRUSIVE and HAS_SLOW_PATH flags can be set or
cleared only while holding MDL_lock::m_rwlock lock.
If HAS_SLOW_PATH flag is set all changes to m_fast_path_state
should happen under protection of MDL_lock::m_rwlock ([INV1]).
*/
#if !defined(NDEBUG)
if (((*old_state & (IS_DESTROYED | HAS_OBTRUSIVE | HAS_SLOW_PATH)) !=
(new_state & (IS_DESTROYED | HAS_OBTRUSIVE | HAS_SLOW_PATH))) ||
*old_state & HAS_OBTRUSIVE) {
mysql_prlock_assert_write_owner(&m_rwlock);
}
#endif
/*
We should not change state of destroyed object
(fast_path_state_reset() being exception).
*/
assert(!(*old_state & IS_DESTROYED));
return atomic_compare_exchange_strong(&m_fast_path_state, old_state,
new_state);
}
/**
Wrapper for atomic add operation on m_fast_path_state member
which enforces locking and other invariants.
*/
fast_path_state_t fast_path_state_add(fast_path_state_t value) {
/*
Invariant [INV1] requires all changes to m_fast_path_state happen
under protection of m_rwlock if HAS_OBTRUSIVE flag is set.
Since this operation doesn't check this flag it can be called only
under protection of m_rwlock.
*/
mysql_prlock_assert_write_owner(&m_rwlock);
fast_path_state_t old_state = m_fast_path_state.fetch_add(value);
/*
We should not change state of destroyed object
(fast_path_state_reset() being exception).
*/
assert(!(old_state & IS_DESTROYED));
return old_state;
}
/**
Wrapper for resetting m_fast_path_state enforcing locking invariants.
*/
void fast_path_state_reset() {
/* HAS_DESTROYED flag can be cleared only under protection of m_rwlock. */
mysql_prlock_assert_write_owner(&m_rwlock);
m_fast_path_state.store(0);
}
/**
Pointer to strategy object which defines how different types of lock
requests should be handled for the namespace to which this lock belongs.
@sa MDL_lock::m_scoped_lock_strategy and MDL_lock:m_object_lock_strategy.
*/
const MDL_lock_strategy *m_strategy;
/**
Get bitmap of "unobtrusive" locks granted using "fast path" algorithm
for scoped locks.
@sa MDL_lock::fast_path_granted_bitmap() for explanation about why it
is safe to use non-atomic read of MDL_lock::m_fast_path_state here.
*/
static bitmap_t scoped_lock_fast_path_granted_bitmap(const MDL_lock &lock) {
return (lock.m_fast_path_state.load() & 0xFFFFFFFFFFFFFFFULL)
? MDL_BIT(MDL_INTENTION_EXCLUSIVE)
: 0;
}
/**
Check if we are requesting X lock on the object, so threads holding
conflicting S/SH metadata locks on it need to be notified.
@sa MDL_lock::object_lock_notify_conflicting_locks.
*/
static bool object_lock_needs_notification(const MDL_ticket *ticket) {
return (ticket->get_type() == MDL_EXCLUSIVE);
}
static void object_lock_notify_conflicting_locks(MDL_context *ctx,
MDL_lock *lock);
/**
Get bitmap of "unobtrusive" locks granted using "fast path" algorithm
for per-object locks.
@sa MDL_lock::fast_path_granted_bitmap() for explanation about why it
is safe to use non-atomic read of MDL_lock::m_fast_path_state here.
*/
static bitmap_t object_lock_fast_path_granted_bitmap(const MDL_lock &lock) {
bitmap_t result = 0;
fast_path_state_t fps = lock.m_fast_path_state;
if (fps & 0xFFFFFULL) result |= MDL_BIT(MDL_SHARED);
if (fps & (0xFFFFFULL << 20)) result |= MDL_BIT(MDL_SHARED_READ);
if (fps & (0xFFFFFULL << 40)) result |= MDL_BIT(MDL_SHARED_WRITE);
return result;
}
/**
Check if MDL_lock object represents user-level lock,locking service
lock or acl cache lock, so threads waiting for it need to check if
connection is lost and abort waiting when it is.
*/
static bool object_lock_needs_connection_check(const MDL_lock *lock) {
return (lock->key.mdl_namespace() == MDL_key::USER_LEVEL_LOCK ||
lock->key.mdl_namespace() == MDL_key::LOCKING_SERVICE ||
lock->key.mdl_namespace() == MDL_key::ACL_CACHE);
}
/**
Bitmap with "hog" lock types for object locks.
Locks of these types can easily starve out lower priority locks.
To prevent this we only grant them max_write_lock_count times in
a row while other lock types are waiting.
*/
static const bitmap_t MDL_OBJECT_HOG_LOCK_TYPES =
(MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_EXCLUSIVE));
static const MDL_lock_strategy m_scoped_lock_strategy;
static const MDL_lock_strategy m_object_lock_strategy;
};
static MDL_map mdl_locks;
static const uchar *mdl_locks_key(const uchar *record, size_t *length) {
const MDL_lock *lock = pointer_cast<const MDL_lock *>(record);
*length = lock->key.length();
return lock->key.ptr();
}
/**
Initialize the metadata locking subsystem.
This function is called at server startup.
In particular, initializes the new global mutex and
the associated condition variable: LOCK_mdl and COND_mdl.
These locking primitives are implementation details of the MDL
subsystem and are private to it.
*/
void mdl_init() {
assert(!mdl_initialized);
mdl_initialized = true;
#ifdef HAVE_PSI_INTERFACE
init_mdl_psi_keys();
#endif
mdl_locks.init();
}
/**
Release resources of metadata locking subsystem.
Destroys the global mutex and the condition variable.
Called at server shutdown.
*/
void mdl_destroy() {
if (mdl_initialized) {
mdl_initialized = false;
mdl_locks.destroy();
}
}
/**
Get number of unused MDL_lock objects in MDL_map cache.
Mostly needed for unit-testing.
*/
int32 mdl_get_unused_locks_count() {
return mdl_locks.get_unused_locks_count();
}
extern "C" {
static void mdl_lock_cons(uchar *arg) {
new (arg + LF_HASH_OVERHEAD) MDL_lock();
}
static void mdl_lock_dtor(uchar *arg) {
MDL_lock *lock = (MDL_lock *)(arg + LF_HASH_OVERHEAD);
lock->~MDL_lock();
}
static void mdl_lock_reinit(uchar *dst_arg, const uchar *src_arg) {
MDL_lock *dst = (MDL_lock *)dst_arg;
const MDL_key *src = (const MDL_key *)src_arg;
dst->reinit(src);
}
/**
Adapter function which allows to use murmur3 with LF_HASH implementation.
*/
static uint murmur3_adapter(const LF_HASH *, const uchar *key, size_t length) {
return murmur3_32(key, length, 0);
}
} /* extern "C" */
/** Initialize the container for all MDL locks. */
void MDL_map::init() {
MDL_key global_lock_key(MDL_key::GLOBAL, "", "");
MDL_key commit_lock_key(MDL_key::COMMIT, "", "");
MDL_key acl_cache_lock_key(MDL_key::ACL_CACHE, "", "");
MDL_key backup_lock_key(MDL_key::BACKUP_LOCK, "", "");
m_global_lock = MDL_lock::create(&global_lock_key);
m_commit_lock = MDL_lock::create(&commit_lock_key);
m_acl_cache_lock = MDL_lock::create(&acl_cache_lock_key);
m_backup_lock = MDL_lock::create(&backup_lock_key);
m_unused_lock_objects = 0;
lf_hash_init2(&m_locks, sizeof(MDL_lock), LF_HASH_UNIQUE, 0, 0, mdl_locks_key,
&my_charset_bin, &murmur3_adapter, &mdl_lock_cons,
&mdl_lock_dtor, &mdl_lock_reinit);
}
/**
Destroy the container for all MDL locks.
@pre It must be empty.
*/
void MDL_map::destroy() {
MDL_lock::destroy(m_global_lock);
MDL_lock::destroy(m_commit_lock);
MDL_lock::destroy(m_acl_cache_lock);
MDL_lock::destroy(m_backup_lock);
lf_hash_destroy(&m_locks);
}
/**
Find MDL_lock object corresponding to the key.
@param[in,out] pins LF_PINS to be used for pinning pointers during
look-up and returned MDL_lock object.
@param[in] mdl_key Key for which MDL_lock object needs to be found.
@param[out] pinned true - if MDL_lock object is pinned,
false - if MDL_lock object doesn't require pinning
(i.e. it is an object for GLOBAL, COMMIT or
ACL_CACHE namespaces).
@retval MY_LF_ERRPTR - Failure (OOM)
@retval other-non-NULL - MDL_lock object found.
@retval NULL - Object not found.
*/
MDL_lock *MDL_map::find(LF_PINS *pins, const MDL_key *mdl_key, bool *pinned) {
MDL_lock *lock = nullptr;
if (is_lock_object_singleton(mdl_key)) {
/*
Avoid look up in m_locks hash when lock for GLOBAL, COMMIT or ACL_CACHE
namespace is requested. Return pointer to pre-allocated MDL_lock instance
instead. Such an optimization allows us to avoid a few atomic operations
for any statement changing data.
It works since these namespaces contain only one element so keys
for them look like '<namespace-id>\0\0'.
*/
assert(mdl_key->length() == 3);
switch (mdl_key->mdl_namespace()) {
case MDL_key::GLOBAL:
lock = m_global_lock;
break;
case MDL_key::COMMIT:
lock = m_commit_lock;
break;
case MDL_key::ACL_CACHE:
lock = m_acl_cache_lock;
break;
case MDL_key::BACKUP_LOCK:
lock = m_backup_lock;
break;
default:
assert(false);
}
*pinned = false;
return lock;
}
lock = static_cast<MDL_lock *>(
lf_hash_search(&m_locks, pins, mdl_key->ptr(), mdl_key->length()));
if (lock == nullptr || lock == MY_LF_ERRPTR) {
lf_hash_search_unpin(pins);
*pinned = false; // Avoid warnings on older compilers.
return lock;
}
*pinned = true;
return lock;
}
/**
Find MDL_lock object corresponding to the key, create it
if it does not exist.
@param[in,out] pins LF_PINS to be used for pinning pointers during
look-up and returned MDL_lock object.
@param[in] mdl_key Key for which MDL_lock object needs to be found.
@param[out] pinned true - if MDL_lock object is pinned,
false - if MDL_lock object doesn't require pinning
(i.e. it is an object for GLOBAL, COMMIT or
ACL_CACHE namespaces).
@retval non-NULL - Success. MDL_lock instance for the key with
locked MDL_lock::m_rwlock.
@retval NULL - Failure (OOM).
*/
MDL_lock *MDL_map::find_or_insert(LF_PINS *pins, const MDL_key *mdl_key,
bool *pinned) {
MDL_lock *lock = nullptr;
while ((lock = find(pins, mdl_key, pinned)) == nullptr) {
/*
MDL_lock for key isn't present in hash, try to insert new object.
This can fail due to concurrent inserts.
*/
int rc = lf_hash_insert(&m_locks, pins, mdl_key);
if (rc == -1) /* If OOM. */
return nullptr;
else if (rc == 0) {
/*
New MDL_lock object is not used yet. So we need to
increment number of unused lock objects.
*/
++m_unused_lock_objects;
}
}
if (lock == MY_LF_ERRPTR) {
/* If OOM in lf_hash_search. */
return nullptr;
}
return lock;
}
extern "C" {
/**
Helper function which allows to check if MDL_lock object stored in LF_HASH
is unused - i.e. doesn't have any locks on both "fast" and "slow" paths
and is not marked as deleted.
*/
static int mdl_lock_match_unused(const uchar *arg,
void *match_arg [[maybe_unused]]) {
const MDL_lock *lock = (const MDL_lock *)arg;
/*
It is OK to check MDL_lock::m_fast_path_state non-atomically here
since the fact that MDL_lock object is unused will be properly
validated later anyway.
*/
return (lock->m_fast_path_state.load() == 0);
}
} /* extern "C" */
/**
Try to find random MDL_lock object in MDL_map for which there are no "fast"
path nor "slow" path locks. If found - mark it as destroyed, remove object
from MDL_map and return it back to allocator.
@param[in] ctx Context on which behalf we are trying to remove
unused object. Primarily needed to generate
random value to be used for random dive into
the hash in MDL_map.
@param[in,out] pins Pins for the calling thread to be used for
hash lookup and deletion.
@param[out] unused_locks Number of unused lock objects after operation.
@note
In reality MDL_lock object will be returned to allocator once it is no
longer pinned by any threads.
*/
void MDL_map::remove_random_unused(MDL_context *ctx, LF_PINS *pins,
int32 *unused_locks) {
DEBUG_SYNC(ctx->get_thd(), "mdl_remove_random_unused_before_search");
/*
Try to find an unused MDL_lock object by doing random dive into the hash.
Since this method is called only when unused/total lock objects ratio is
high enough, there is a good chance for this technique to succeed.
*/
MDL_lock *lock = static_cast<MDL_lock *>(lf_hash_random_match(
&m_locks, pins, &mdl_lock_match_unused, ctx->get_random(), nullptr));
if (lock == nullptr || lock == MY_LF_ERRPTR) {
/*
We were unlucky and no unused objects were found. This can happen,
for example, if our random dive into LF_HASH was close to the tail
of split-ordered list used in its implementation or if some other
thread managed to destroy or start re-using MDL_lock object
concurrently.
*/
lf_hash_search_unpin(pins);
*unused_locks = m_unused_lock_objects;
return;
}
DEBUG_SYNC(ctx->get_thd(), "mdl_remove_random_unused_after_search");
/*
Acquire MDL_lock::m_rwlock to ensure that IS_DESTROYED flag is set
atomically AND under protection of MDL_lock::m_rwlock, so it can be
safely read using both atomics and ordinary read under protection of
m_rwlock. This also means that it is safe to unpin MDL_lock object
after we have checked its IS_DESTROYED flag if we keep m_rwlock lock.
*/
mysql_prlock_wrlock(&lock->m_rwlock);
if (lock->m_fast_path_state & MDL_lock::IS_DESTROYED) {
/*
Somebody has managed to mark MDL_lock object as destroyed before
we have acquired MDL_lock::m_rwlock.
*/
mysql_prlock_unlock(&lock->m_rwlock);
lf_hash_search_unpin(pins);
*unused_locks = m_unused_lock_objects;
return;
}
lf_hash_search_unpin(pins);
/*
Atomically check that number of "fast path" and "slow path" locks is 0 and
set IS_DESTROYED flag.
This is the only place where we rely on the fact that our compare-and-swap
operation can't spuriously fail i.e. is of strong kind.
*/
MDL_lock::fast_path_state_t old_state = 0;
if (lock->fast_path_state_cas(&old_state, MDL_lock::IS_DESTROYED)) {
/*
There were no "fast path" or "slow path" references and we
have successfully set IS_DESTROYED flag.
*/
mysql_prlock_unlock(&lock->m_rwlock);
DEBUG_SYNC(ctx->get_thd(),
"mdl_remove_random_unused_after_is_destroyed_set");
/*
Even though other threads can't rely on the MDL_lock object being around
once IS_DESTROYED flag is set, we know that it was not removed from
the hash yet (as it is responsibility of the current thread, i.e. one
which executes this MDL_map::remove_random_unused() call) and thus was
not deallocated.
And since lf_hash_delete() finds and pins the object for the key as its
first step and keeps pins until its end it is safe to use MDL_lock::key
as parameter to lf_hash_delete().
*/
int rc =
lf_hash_delete(&m_locks, pins, lock->key.ptr(), lock->key.length());
/* The MDL_lock object must be present in the hash. */
assert(rc != 1);
if (rc == -1) {
/*
In unlikely case of OOM MDL_lock object stays in the hash. The best
thing we can do is to reset IS_DESTROYED flag. The object will be
destroyed either by further calls to lf_hash_delete() or by final
call to lf_hash_destroy().
Resetting needs to happen atomically AND under protection of
MDL_lock::m_rwlock so it safe to read this flag both using atomics
and ordinary reads under protection of m_rwlock lock.
*/
mysql_prlock_wrlock(&lock->m_rwlock);
lock->fast_path_state_reset();
mysql_prlock_unlock(&lock->m_rwlock);
} else {
/* Success. */
*unused_locks = --m_unused_lock_objects;
}
} else {
/*
Some other thread has managed to find and use this MDL_lock object after
it has been found by the above call to lf_hash_random_match().
There are/were "fast" or "slow path" references so MDL_lock object can't
be deleted.
Assert that compare-and-swap operation is of strong kind and can't
fail spuriously.
*/
assert(old_state != 0);
mysql_prlock_unlock(&lock->m_rwlock);
*unused_locks = m_unused_lock_objects;
}
}
/**
Initialize a metadata locking context.
This is to be called when a new server connection is created.
*/
MDL_context::MDL_context()
: m_owner(nullptr),
m_needs_thr_lock_abort(false),
m_force_dml_deadlock_weight(false),
m_waiting_for(nullptr),
m_pins(nullptr),
m_rand_state(UINT_MAX32) {
mysql_prlock_init(key_MDL_context_LOCK_waiting_for, &m_LOCK_waiting_for);
}
/**
Destroy metadata locking context.
Assumes and asserts that there are no active or pending locks
associated with this context at the time of the destruction.
Currently does nothing. Asserts that there are no pending
or satisfied lock requests. The pending locks must be released
prior to destruction. This is a new way to express the assertion
that all tables are closed before a connection is destroyed.
*/
void MDL_context::destroy() {
assert(m_ticket_store.is_empty());
mysql_prlock_destroy(&m_LOCK_waiting_for);
if (m_pins) lf_hash_put_pins(m_pins);
}
/**
Allocate pins which are necessary to work with MDL_map container
if they are not allocated already.
@return true with error in DA if pinbox is exhausted, false otherwise.
*/
bool MDL_context::fix_pins() {
if (!m_pins) m_pins = mdl_locks.get_pins();
if (m_pins == nullptr) {
my_error(ER_MDL_OUT_OF_RESOURCES, MYF(0));
return true;
}
return false;
}
/**
Initialize a lock request.
This is to be used for every lock request.
Note that initialization and allocation are split into two
calls. This is to allow flexible memory management of lock
requests. Normally a lock request is stored in statement memory
(e.g. is a member of class Table_ref), but we would also like
to allow allocation of lock requests in other memory roots,
for example in the grant subsystem, to lock privilege tables.
The MDL subsystem does not own or manage memory of lock requests.
@param mdl_namespace Id of namespace of object to be locked
@param db_arg Name of database to which the object belongs
@param name_arg Name of of the object
@param mdl_type_arg The MDL lock type for the request.
@param mdl_duration_arg The MDL duration for the request.
@param src_file Source file name issuing the request.
@param src_line Source line number issuing the request.
*/
void MDL_request::init_with_source(MDL_key::enum_mdl_namespace mdl_namespace,
const char *db_arg, const char *name_arg,
enum_mdl_type mdl_type_arg,
enum_mdl_duration mdl_duration_arg,
const char *src_file, uint src_line) {
#if !defined(NDEBUG)
// Make sure all I_S tables (except ndb tables) are in CAPITAL letters.
bool is_ndb_table = (name_arg && (strncmp(name_arg, "ndb", 3) == 0));
assert(mdl_namespace != MDL_key::TABLE ||
my_strcasecmp(system_charset_info, "information_schema", db_arg) ||
is_ndb_table || !name_arg ||
my_isupper(system_charset_info, name_arg[0]));
#endif
key.mdl_key_init(mdl_namespace, db_arg, name_arg);
type = mdl_type_arg;
duration = mdl_duration_arg;
ticket = nullptr;
m_src_file = src_file;
m_src_line = src_line;
}
/**
Initialize a lock request using pre-built MDL_key.
@sa MDL_request::init(namespace, db, name, type).
@param key_arg The pre-built MDL key for the request.
@param mdl_type_arg The MDL lock type for the request.
@param mdl_duration_arg The MDL duration for the request.
@param src_file Source file name issuing the request.
@param src_line Source line number issuing the request.
*/
void MDL_request::init_by_key_with_source(const MDL_key *key_arg,
enum_mdl_type mdl_type_arg,
enum_mdl_duration mdl_duration_arg,
const char *src_file, uint src_line) {
key.mdl_key_init(key_arg);
type = mdl_type_arg;
duration = mdl_duration_arg;
ticket = nullptr;
m_src_file = src_file;
m_src_line = src_line;
}
/**
Initialize a lock request using partial MDL key.
@sa MDL_request::init(namespace, db, name, type).
@remark The partial key must be "<database>\0<name>\0".
@param namespace_arg Id of namespace of object to be locked
@param part_key_arg Partial key.
@param part_key_length_arg Partial key length
@param db_length_arg Database name length.
@param mdl_type_arg The MDL lock type for the request.
@param mdl_duration_arg The MDL duration for the request.
@param src_file Source file name issuing the request.
@param src_line Source line number issuing the request.
*/
void MDL_request::init_by_part_key_with_source(
MDL_key::enum_mdl_namespace namespace_arg, const char *part_key_arg,
size_t part_key_length_arg, size_t db_length_arg,
enum_mdl_type mdl_type_arg, enum_mdl_duration mdl_duration_arg,
const char *src_file, uint src_line) {
key.mdl_key_init(namespace_arg, part_key_arg, part_key_length_arg,
db_length_arg);
type = mdl_type_arg;
duration = mdl_duration_arg;
ticket = nullptr;
m_src_file = src_file;
m_src_line = src_line;
}
/**
Auxiliary functions needed for creation/destruction of MDL_lock objects.
*/
inline MDL_lock *MDL_lock::create(const MDL_key *mdl_key) {
MDL_lock *result = new (std::nothrow) MDL_lock();
if (result) result->reinit(mdl_key);
return result;
}
void MDL_lock::destroy(MDL_lock *lock) { delete lock; }
/**
Finalize initialization or re-initialize MDL_lock returned from
LF_ALLOCATOR's cache to represent object identified by provided key.
@note All non-static MDL_lock members:
1) either have to be reinitialized here
(like IS_DESTROYED flag in MDL_lock::m_fast_path_state).
2) or need to be initialized in constructor AND returned to their
pristine state once they are removed from MDL_map container
(like MDL_lock::m_granted or MDL_lock::m_rwlock).
Otherwise it is possible that we will end up in situation
when "new" (actually reused) MDL_lock object inserted in
LF_HASH will inherit some values from old object.
*/
inline void MDL_lock::reinit(const MDL_key *mdl_key) {
key.mdl_key_init(mdl_key);
m_strategy = MDL_lock::get_strategy(*mdl_key);
m_hog_lock_count = 0;
m_piglet_lock_count = 0;
m_current_waiting_incompatible_idx = 0;
m_fast_path_state = 0;
/*
Check that we have clean "m_granted" and "m_waiting" sets/lists in both
cases when we have fresh and re-used object.
*/
assert(m_granted.is_empty() && m_waiting.is_empty());
/* The same should be true for "m_obtrusive_locks_granted_waiting_count". */
assert(m_obtrusive_locks_granted_waiting_count == 0);
}
/**
@returns "Fast path" increment for request for "unobtrusive" type
of lock, 0 - if it is request for "obtrusive" type of
lock.
@sa Description at method declaration for more details.
*/
MDL_lock::fast_path_state_t MDL_lock::get_unobtrusive_lock_increment(
const MDL_request *request) {
return MDL_lock::get_strategy(request->key)
->m_unobtrusive_lock_increment[request->type];
}
/**
Indicates whether object belongs to namespace which requires storage engine
to be notified before acquiring and after releasing exclusive lock.
*/
bool MDL_lock::needs_hton_notification(
MDL_key::enum_mdl_namespace mdl_namespace) {
switch (mdl_namespace) {
case MDL_key::TABLESPACE:
case MDL_key::SCHEMA:
case MDL_key::TABLE:
case MDL_key::FUNCTION:
case MDL_key::PROCEDURE:
case MDL_key::TRIGGER:
case MDL_key::EVENT:
return true;
default:
return false;
}
}
/**
Auxiliary functions needed for creation/destruction of MDL_ticket
objects.
@todo This naive implementation should be replaced with one that saves
on memory allocation by reusing released objects.
*/
MDL_ticket *MDL_ticket::create(MDL_context *ctx_arg, enum_mdl_type type_arg
#ifndef NDEBUG
,
enum_mdl_duration duration_arg
#endif
) {
return new (std::nothrow) MDL_ticket(ctx_arg, type_arg
#ifndef NDEBUG
,
duration_arg
#endif
);
}
void MDL_ticket::destroy(MDL_ticket *ticket) {
mysql_mdl_destroy(ticket->m_psi);
ticket->m_psi = nullptr;
delete ticket;
}
/**
Return the 'weight' of this ticket for the victim selection algorithm.
Requests with lower weight are preferred to requests with higher weight
when choosing a victim.
@note When MDL_context::m_force_dml_deadlock_weight is set, the return value
of this method is ignored and DEADLOCK_WEIGHT_DML is used for the
context.
*/
uint MDL_ticket::get_deadlock_weight() const {
/*
Waits for user-level locks have lower weight than waits for locks
typically acquired by DDL, so we don't abort DDL in case of deadlock
involving user-level locks and DDL. Deadlock errors are not normally
expected from DDL by users.
Waits for user-level locks have higher weight than waits for locks
acquired by DML, so we prefer to abort DML in case of deadlock involving
user-level locks and DML. User-level locks are explicitly requested by
user, so they are probably important for them. Plus users expect
deadlocks from DML transactions and for DML statements executed in
@@autocommit=1 mode back-off and retry algorithm hides deadlock errors.
*/
if (m_lock->key.mdl_namespace() == MDL_key::USER_LEVEL_LOCK)
return DEADLOCK_WEIGHT_ULL;
/*
Locks higher or equal to MDL_SHARED_UPGRADABLE:
*) Are typically acquired for DDL and LOCK TABLES statements.
*) Are often acquired in a way which doesn't allow simple release of
locks and restart of lock acquisition process in case of deadlock
(e.g. through lock_table_names() call).
To avoid such statements getting aborted with ER_LOCK_DEADLOCK error
we use the higher DEADLOCK_WEIGHT_DDL weight for them.
Note that two DDL statements should not typically deadlock with each
other since they normally acquire locks in the same order, thanks to
to the fact that lock_table_names() uses MDL_context::acquire_locks()
method which sorts lock requests before trying to acquire them.
In cases when "strong" locks can be acquired out-of-order (e.g. for
LOCK TABLES) we try to use DEADLOCK_WEIGHT_DML instead.
TODO/FIXME: The below condition needs to be updated. The fact that a
lock from GLOBAL namespace is requested no longer means
that this is a DDL statement. There is a bug report about
this.
*/
if (m_lock->key.mdl_namespace() == MDL_key::GLOBAL ||
m_type >= MDL_SHARED_UPGRADABLE)
return DEADLOCK_WEIGHT_DDL;
return DEADLOCK_WEIGHT_DML;
}
/** Construct an empty wait slot. */
MDL_wait::MDL_wait() : m_wait_status(WS_EMPTY) {
mysql_mutex_init(key_MDL_wait_LOCK_wait_status, &m_LOCK_wait_status, nullptr);
mysql_cond_init(key_MDL_wait_COND_wait_status, &m_COND_wait_status);
}
/** Destroy system resources. */
MDL_wait::~MDL_wait() {
mysql_mutex_destroy(&m_LOCK_wait_status);
mysql_cond_destroy(&m_COND_wait_status);
}
/**
Set the status unless it's already set. Return false if set,
true otherwise.
*/
bool MDL_wait::set_status(enum_wait_status status_arg) {
bool was_occupied = true;
mysql_mutex_lock(&m_LOCK_wait_status);
if (m_wait_status == WS_EMPTY) {
was_occupied = false;
m_wait_status = status_arg;
mysql_cond_signal(&m_COND_wait_status);
}
mysql_mutex_unlock(&m_LOCK_wait_status);
return was_occupied;
}
/** Query the current value of the wait slot. */
MDL_wait::enum_wait_status MDL_wait::get_status() {
enum_wait_status result;
mysql_mutex_lock(&m_LOCK_wait_status);
result = m_wait_status;
mysql_mutex_unlock(&m_LOCK_wait_status);
return result;
}
/** Clear the current value of the wait slot. */
void MDL_wait::reset_status() {
mysql_mutex_lock(&m_LOCK_wait_status);
m_wait_status = WS_EMPTY;
mysql_mutex_unlock(&m_LOCK_wait_status);
}
/**
Wait for the status to be assigned to this wait slot.
@param owner MDL context owner.
@param abs_timeout Absolute time after which waiting should stop.
@param set_status_on_timeout true - If in case of timeout waiting
context should close the wait slot by
sending TIMEOUT to itself.
false - Otherwise.
@param wait_state_name Thread state name to be set for duration of wait.
@returns Signal posted.
*/
MDL_wait::enum_wait_status MDL_wait::timed_wait(
MDL_context_owner *owner, struct timespec *abs_timeout,
bool set_status_on_timeout, const PSI_stage_info *wait_state_name) {
PSI_stage_info old_stage;
enum_wait_status result;
int wait_result = 0;
mysql_mutex_lock(&m_LOCK_wait_status);
owner->ENTER_COND(&m_COND_wait_status, &m_LOCK_wait_status, wait_state_name,
&old_stage);
thd_wait_begin(nullptr, THD_WAIT_META_DATA_LOCK);
while (!m_wait_status && !owner->is_killed() && !is_timeout(wait_result)) {
wait_result = mysql_cond_timedwait(&m_COND_wait_status, &m_LOCK_wait_status,
abs_timeout);
}
thd_wait_end(nullptr);
if (m_wait_status == WS_EMPTY) {
/*
Wait has ended not due to a status being set from another
thread but due to this connection/statement being killed or a
time out.
To avoid races, which may occur if another thread sets
GRANTED status before the code which calls this method
processes the abort/timeout, we assign the status under
protection of the m_LOCK_wait_status, within the critical
section. An exception is when set_status_on_timeout is
false, which means that the caller intends to restart the
wait.
*/
if (owner->is_killed())
m_wait_status = KILLED;
else if (set_status_on_timeout)
m_wait_status = TIMEOUT;
}
result = m_wait_status;
mysql_mutex_unlock(&m_LOCK_wait_status);
owner->EXIT_COND(&old_stage);
return result;
}
/**
Clear bit corresponding to the type of metadata lock in bitmap representing
set of such types if list of tickets does not contain ticket with such type.
@param[in] type Type of metadata lock to look up in the list.
*/
void MDL_lock::Ticket_list::clear_bit_if_not_in_list(enum_mdl_type type) {
MDL_lock::Ticket_iterator it(m_list);
const MDL_ticket *ticket;
while ((ticket = it++))
if (ticket->get_type() == type) return;
m_bitmap &= ~MDL_BIT(type);
}
/**
Add ticket to MDL_lock's list of waiting requests and
update corresponding bitmap of lock types.
*/
void MDL_lock::Ticket_list::add_ticket(MDL_ticket *ticket) {
/*
Ticket being added to the list must have MDL_ticket::m_lock set,
since for such tickets methods accessing this member might be
called by other threads.
*/
assert(ticket->get_lock());
/*
Add ticket to the *back* of the queue to ensure fairness
among requests with the same priority.
*/
m_list.push_back(ticket);
m_bitmap |= MDL_BIT(ticket->get_type());
}
/**
Remove ticket from MDL_lock's list of requests and
update corresponding bitmap of lock types.
*/
void MDL_lock::Ticket_list::remove_ticket(MDL_ticket *ticket) {
m_list.remove(ticket);
/*
Check if waiting queue has another ticket with the same type as
one which was removed. If there is no such ticket, i.e. we have
removed last ticket of particular type, then we need to update
bitmap of waiting ticket's types.
Note that in most common case, i.e. when shared lock is removed
from waiting queue, we are likely to find ticket of the same
type early without performing full iteration through the list.
So this method should not be too expensive.
*/
clear_bit_if_not_in_list(ticket->get_type());
}
/**
Determine waiting contexts which requests for the lock can be
satisfied, grant lock to them and wake them up.
@note Together with MDL_lock::add_ticket() this method implements
fair scheduling among requests with the same priority.
It tries to grant lock from the head of waiters list, while
add_ticket() adds new requests to the back of this list.
*/
void MDL_lock::reschedule_waiters() {
MDL_lock::Ticket_iterator it(m_waiting);
MDL_ticket *ticket;
/*
Find the first (and hence the oldest) waiting request which
can be satisfied (taking into account priority). Grant lock to it.
Repeat the process for the remainder of waiters.
Note we don't need to re-start iteration from the head of the
list after satisfying the first suitable request as in our case
all compatible types of requests have the same priority.
TODO/FIXME: We should:
- Either switch to scheduling without priorities
which will allow to stop iteration through the
list of waiters once we found the first ticket
which can't be satisfied
- Or implement some check using bitmaps which will
allow to stop iteration in cases when, e.g., we
grant SNRW lock and there are no pending S or
SH locks.
*/
while ((ticket = it++)) {
if (can_grant_lock(ticket->get_type(), ticket->get_ctx())) {
if (!ticket->get_ctx()->m_wait.set_status(MDL_wait::GRANTED)) {
/*
Satisfy the found request by updating lock structures.
It is OK to do so even after waking up the waiter since any
session which tries to get any information about the state of
this lock has to acquire MDL_lock::m_rwlock first and thus,
when manages to do so, already sees an updated state of the
MDL_lock object.
It doesn't matter if we are dealing with "obtrusive" lock here,
we are moving lock request from waiting to granted lists,
so m_obtrusive_locks_granted_waiting_count should stay the same.
*/
m_waiting.remove_ticket(ticket);
m_granted.add_ticket(ticket);
if (is_affected_by_max_write_lock_count()) {
/*
Increase the counter of successively granted high priority "hog" or
"piglet" locks, if we have granted one and there are pending
lower priority locks.
*/
if (count_piglets_and_hogs(ticket->get_type())) {
/*
Switch of priority matrice might have unblocked some lower-prio
locks which are still compatible with the lock type we just have
granted (for example, when we grant SNW lock and there are pending
requests of SR type). Restart iteration to wake them up, otherwise
we might get deadlocks.
*/
it.rewind();
continue;
}
}
}
/*
If we could not update the wait slot of the waiter,
it can be due to fact that its connection/statement was
killed or it has timed out (i.e. the slot is not empty).
Since in all such cases the waiter assumes that the lock was
not been granted, we should keep the request in the waiting
queue and look for another request to reschedule.
*/
}
}
if (is_affected_by_max_write_lock_count()) {
/*
Reset number of successively granted higher-prio "hog"/"piglet" locks
if there are no pending lower-prio conflicting locks.
This ensures:
- That m_hog_lock_count/m_piglet_lock_count is correctly reset after
a strong lock is released and weak locks are granted (or there are
no other lock requests).
- That the situation when SNW lock is granted along with some SR/SRO
locks, but SW locks are still blocked is handled correctly.
- That m_hog_lock_count/m_piglet_lock_count is zero in all cases
when there are no pending weak locks (e.g. when weak locks are
removed due to deadlock, being killed or timeout).
Also switch priority matrice accordingly. Note that switch in
this particular place doesn't require reschedule since:
1) We never switch to a matrice which prefers lower priority locks
more than "hog"/"piglet" locks here (this might have happened if
MDL_lock::switch_incompatible_waiting_types_bitmap_if_needed()
was used instead and max_write_lock_count was decreased
concurrently).
2) When we switch from matrice #1 (which prefers SRO over SW) to
default matrice #0 only the priority of SW vs SRO requests changes.
Since the switch happens only when there are no pending SRO
locks, no reschedule is required.
3) When we switch from matrice #2 (which prefers all non-"nog" over
"hog" requests) to default matrice #0 only the priority of "hog" vs
non-"hog" requests changes. But since this happens when there are
no non-"hog" requests, no reschedule is required.
4) When we switch from matrice #3 (which prefers SRO over SW and
non-"hog"-minus-SW over "hog" locks) to default matrice #0 only
the priority of non-"hog"-minus-SW vs "hog" and SRO vs SW changes
(see invariant [INV3]). Since the switch happens only when there
are no pending non-"hog"-minus-SW/SRO requests, no reschedule is
required.
Note that we might be switching priority matrice in a situation when we
had pending SRO/non-"hog"/non-"hog"-minus-SW requests at the start of
the call but they were granted during the loop. If some "piglet"/"hog"
requests are compatible with those lower priority locks, they were
granted as well. Those which were not compatible were not granted and
should stay waiting until lower priority locks are released (in other
words, the fact that a lock moved from pending to granted doesn't unblock
additional requests, see invariant [INV2]).
*/
if (m_current_waiting_incompatible_idx == 3) {
/*
We can't simply switch from matrice #3 to matrice #2 when there are no
pending SRO locks, as that would allow a stream of concurrent SW and SRO
requests to starve out "hog" locks when max_write_lock_count is set
(there will be always pending SW or/and SRO locks in this case, so no
switch back to matrice #0 will ever happen).
So we switch from matrice #3 to #0 directly and ignore pending SW/SWLP
locks. This is OK as situation when matrice #3 is active can only
occur when there were max_write_lock_count SW locks granted recently
(before switch from #0 -> #1 which preceded switch #3 or before switch
#2 -> #3).
*/
if ((m_waiting.bitmap() &
~(MDL_OBJECT_HOG_LOCK_TYPES | MDL_BIT(MDL_SHARED_WRITE) |
MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO))) == 0) {
m_piglet_lock_count = 0;
m_hog_lock_count = 0;
m_current_waiting_incompatible_idx = 0;
}
} else {
if ((m_waiting.bitmap() & ~MDL_OBJECT_HOG_LOCK_TYPES) == 0) {
m_hog_lock_count = 0;
m_current_waiting_incompatible_idx &= ~2;
}
if ((m_waiting.bitmap() & MDL_BIT(MDL_SHARED_READ_ONLY)) == 0) {
m_piglet_lock_count = 0;
m_current_waiting_incompatible_idx &= ~1;
}
}
}
}
/**
Strategy instances to be used with scoped metadata locks (i.e. locks
from GLOBAL, COMMIT, TABLESPACE, BACKUP_LOCK and SCHEMA namespaces).
The only locking modes which are supported at the moment are SHARED and
INTENTION EXCLUSIVE and EXCLUSIVE.
*/
const MDL_lock::MDL_lock_strategy MDL_lock::m_scoped_lock_strategy = {
/**
Compatibility (or rather "incompatibility") matrices for scoped metadata
lock. Arrays of bitmaps which elements specify which granted/waiting locks
are incompatible with type of lock being requested.
The first array specifies if particular type of request can be satisfied
if there is granted scoped lock of certain type.
| Type of active |
Request | scoped lock |
type | IS(*) IX S X |
---------+------------------+
IS | + + + + |
IX | + + - - |
S | + - + - |
X | + - - - |
Here: "+" -- means that request can be satisfied
"-" -- means that request can't be satisfied and should wait
(*) Since intention shared scoped locks are compatible with all other
type of locks we don't even have any accounting for them.
Note that relation between scoped locks and objects locks requested
by statement is not straightforward and is therefore fully defined
by SQL-layer.
For example, in order to support global read lock implementation
SQL-layer acquires IX lock in GLOBAL namespace for each statement
that can modify metadata or data (i.e. for each statement that
needs SW, SU, SNW, SNRW or X object locks). OTOH, to ensure that
DROP DATABASE works correctly with concurrent DDL, IX metadata locks
in SCHEMA namespace are acquired for DDL statements which can update
metadata in the schema (i.e. which acquire SU, SNW, SNRW and X locks
on schema objects) and aren't acquired for DML.
*/
{MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_INTENTION_EXCLUSIVE), 0, 0, 0, 0, 0,
0, 0, 0,
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED) |
MDL_BIT(MDL_INTENTION_EXCLUSIVE)},
/**
Each array in the next group specifies if a particular type of request can
be satisfied if there is already a waiting request for the scoped lock of
a certain type. I.e. each array specifies a matrice with priorities for
different lock types.
Scoped locks only use the first array which represents the "default"
priority matrix. The remaining 3 matrices are not relevant for them.
| Pending |
Request | scoped lock |
type | IS(*) IX S X |
---------+-----------------+
IS | + + + + |
IX | + + - - |
S | + + + - |
X | + + + + |
Here the meaning of "+", "-" and (*) is the same as above.
*/
{{MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED), MDL_BIT(MDL_EXCLUSIVE), 0,
0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
/**
Array of increments for "unobtrusive" types of lock requests for scoped
locks.
@sa MDL_lock::get_unobtrusive_lock_increment().
For scoped locks:
- "unobtrusive" types: IX
- "obtrusive" types: X and S
We encode number of IX locks acquired using "fast path" in bits 0 .. 59
of MDL_lock::m_fast_path_state.
*/
{1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
/*
In scoped locks, only IX lock request would starve because of X/S.
But that is practically a very rare case. So we don't apply the
max_write_lock_count limit to them.
*/
false,
#ifndef NDEBUG
// In scoped locks, only IX, SHARED and X is allowed.
{true, true, false, false, false, false, false, false, false, false, true},
#endif /* not defined NDEBUG */
/*
Scoped locks doesn't require notification of owners of conflicting
locks for any type of requests. Hence 'm_needs_notification' is NULL.
*/
nullptr,
/*
For the same reason, 'm_notify_conflicting_locks' is NULL for scoped
locks.
*/
nullptr,
&MDL_lock::scoped_lock_fast_path_granted_bitmap,
/* Scoped locks never require connection check. */
nullptr};
/**
Strategy instance for per-object locks.
Supports all locked modes except INTENTION EXCLUSIVE locks.
*/
const MDL_lock::MDL_lock_strategy MDL_lock::m_object_lock_strategy = {
/**
Compatibility (or rather "incompatibility") matrices for per-object
metadata lock. Arrays of bitmaps which elements specify which granted/
waiting locks are incompatible with type of lock being requested.
The first array specifies if particular type of request can be satisfied
if there is granted lock of certain type.
Request | Granted requests for lock |
type | S SH SR SW SWLP SU SRO SNW SNRW X |
----------+---------------------------------------------+
S | + + + + + + + + + - |
SH | + + + + + + + + + - |
SR | + + + + + + + + - - |
SW | + + + + + + - - - - |
SWLP | + + + + + + - - - - |
SU | + + + + + - + - - - |
SRO | + + + - - + + + - - |
SNW | + + + - - - + - - - |
SNRW | + + - - - - - - - - |
X | - - - - - - - - - - |
Here: "+" -- means that request can be satisfied
"-" -- means that request can't be satisfied and should wait
@note In cases then current context already has "stronger" type
of lock on the object it will be automatically granted
thanks to usage of the MDL_context::find_ticket() method.
@note IX locks are excluded since they are not used for per-object
metadata locks.
*/
{0, MDL_BIT(MDL_EXCLUSIVE), MDL_BIT(MDL_EXCLUSIVE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_UPGRADABLE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO) | MDL_BIT(MDL_SHARED_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_UPGRADABLE) |
MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO) | MDL_BIT(MDL_SHARED_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY) |
MDL_BIT(MDL_SHARED_UPGRADABLE) | MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO) |
MDL_BIT(MDL_SHARED_WRITE) | MDL_BIT(MDL_SHARED_READ),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY) |
MDL_BIT(MDL_SHARED_UPGRADABLE) | MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO) |
MDL_BIT(MDL_SHARED_WRITE) | MDL_BIT(MDL_SHARED_READ) |
MDL_BIT(MDL_SHARED_HIGH_PRIO) | MDL_BIT(MDL_SHARED)},
/**
Each array in the next group specifies if a particular type of request can
be satisfied if there is a waiting request for the same lock of a certain
type. In other words each array specifies a priority matrix for different
lock types.
We use each of the arrays depending on whether the number of successively
granted "piglet" and "hog" lock requests exceed the max_write_lock_count
threshold. This is necessary to avoid high priority lock requests starving
out requests with lower priority.
The first array in the group is used in default situation when both
MDL_lock::m_piglet_lock_count and MDL_lock::m_hog_lock_count don't exceed
the threshold.
A priority matrice specified by it looks like:
Request | Pending requests for lock |
type | S SH SR SW SWLP SU SRO SNW SNRW X |
----------+--------------------------------------------+
S | + + + + + + + + + - |
SH | + + + + + + + + + + |
SR | + + + + + + + + - - |
SW | + + + + + + + - - - |
SWLP | + + + + + + - - - - |
SU | + + + + + + + + + - |
SRO | + + + - + + + + - - |
SNW | + + + + + + + + + - |
SNRW | + + + + + + + + + - |
X | + + + + + + + + + + |
Invariant [INV2]: for all priority matrices, if A is the set of
incompatible waiting requests for a given request and B is the set
of incompatible granted requests for the same request, then A will
always be a subset of B. This means that moving a lock from waiting
to granted state doesn't unblock additional requests.
MDL_lock::reschedule_waiters() code relies on this.
*/
{{0, MDL_BIT(MDL_EXCLUSIVE), 0,
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
MDL_BIT(MDL_EXCLUSIVE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_WRITE),
MDL_BIT(MDL_EXCLUSIVE), MDL_BIT(MDL_EXCLUSIVE), 0},
/**
The second array in the group is used when the number of successively
granted "piglet" (SW) locks exceeds max_write_lock_count.
It is the same matrix as in the first case but with the SW lock type
having lower priority than the SRO lock type.
*/
{0, MDL_BIT(MDL_EXCLUSIVE), 0,
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
MDL_BIT(MDL_EXCLUSIVE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE),
MDL_BIT(MDL_EXCLUSIVE), MDL_BIT(MDL_EXCLUSIVE), 0},
/**
The third array in the group is used when the number of successively
granted "hog" (SNW, SNRW, X) locks exceeds max_write_lock_count.
In this case S, SH, SR, SW, SNRW, SRO and SU locks types have
priority over all "hog" types.
*/
{0, 0, 0, 0, 0, MDL_BIT(MDL_SHARED_READ_ONLY), 0,
MDL_BIT(MDL_SHARED_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_UPGRADABLE) |
MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO) | MDL_BIT(MDL_SHARED_WRITE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_READ_ONLY) |
MDL_BIT(MDL_SHARED_UPGRADABLE) | MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO) |
MDL_BIT(MDL_SHARED_WRITE) | MDL_BIT(MDL_SHARED_READ),
static_cast<bitmap_t>(~MDL_OBJECT_HOG_LOCK_TYPES)},
/**
The fourth array in the group is used when both the number of
successively granted "piglet" (SW) and the number of successively granted
"hog" (SNW, SNRW, X) locks exceed max_write_lock_count.
This matrice prefers SRO locks over SW/SWLP locks. And non-"hog" locks
other than SW/SWLP over "hog" locks.
Note that the fact that "hog" locks have the same priority vs SW/SWLP
locks as in the default matrice (#0) is important and is relied upon in
MDL_lock::reschedule_waiters(). This is invariant [INV3].
*/
{0, 0, 0, 0,
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_NO_READ_WRITE) |
MDL_BIT(MDL_SHARED_NO_WRITE) | MDL_BIT(MDL_SHARED_READ_ONLY),
0, 0, MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_UPGRADABLE),
MDL_BIT(MDL_EXCLUSIVE) | MDL_BIT(MDL_SHARED_READ_ONLY) |
MDL_BIT(MDL_SHARED_UPGRADABLE) | MDL_BIT(MDL_SHARED_READ),
static_cast<bitmap_t>(~(MDL_OBJECT_HOG_LOCK_TYPES |
MDL_BIT(MDL_SHARED_WRITE) |
MDL_BIT(MDL_SHARED_WRITE_LOW_PRIO)))}},
/**
Array of increments for "unobtrusive" types of lock requests for
per-object locks.
@sa MDL_lock::get_unobtrusive_lock_increment().
For per-object locks:
- "unobtrusive" types: S, SH, SR and SW
- "obtrusive" types: SU, SRO, SNW, SNRW, X
Number of locks acquired using "fast path" are encoded in the following
bits of MDL_lock::m_fast_path_state:
- bits 0 .. 19 - S and SH (we don't differentiate them once acquired)
- bits 20 .. 39 - SR
- bits 40 .. 59 - SW and SWLP (we don't differentiate them once acquired)
Overflow is not an issue as we are unlikely to support more than 2^20 - 1
concurrent connections in foreseeable future.
This encoding defines the below contents of increment array.
*/
{0, 1, 1, 1ULL << 20, 1ULL << 40, 1ULL << 40, 0, 0, 0, 0, 0},
/*
To prevent starvation, "hog" and "piglet" lock types are only granted
max_write_lock_count times in a row while conflicting lock types are
waiting.
*/
true,
#ifndef NDEBUG
// For object locks all types, except IX, are permitted
{false, true, true, true, true, true, true, true, true, true, true},
#endif /* not defined NDEBUG */
&MDL_lock::object_lock_needs_notification,
&MDL_lock::object_lock_notify_conflicting_locks,
&MDL_lock::object_lock_fast_path_granted_bitmap,
&MDL_lock::object_lock_needs_connection_check};
/**
Check if request for the metadata lock can be satisfied given its
current state.
@param type_arg The requested lock type.
@param requestor_ctx The MDL context of the requestor.
@retval true Lock request can be satisfied
@retval false There is some conflicting lock.
@note In cases then current context already has "stronger" type
of lock on the object it will be automatically granted
thanks to usage of the MDL_context::find_ticket() method.
*/
bool MDL_lock::can_grant_lock(enum_mdl_type type_arg,
const MDL_context *requestor_ctx) const {
bool can_grant = false;
bitmap_t waiting_incompat_map = incompatible_waiting_types_bitmap()[type_arg];
bitmap_t granted_incompat_map = incompatible_granted_types_bitmap()[type_arg];
/*
New lock request can be satisfied iff:
- There are no incompatible types of satisfied requests
in other contexts
- There are no waiting requests which have higher priority
than this request.
*/
if (!(m_waiting.bitmap() & waiting_incompat_map)) {
if (!(fast_path_granted_bitmap() & granted_incompat_map)) {
if (!(m_granted.bitmap() & granted_incompat_map))
can_grant = true;
else {
Ticket_iterator it(m_granted);
MDL_ticket *ticket;
/*
There is an incompatible lock. Check that it belongs to some
other context.
If we are trying to acquire "unobtrusive" type of lock then the
confliciting lock must be from "obtrusive" set, therefore it should
have been acquired using "slow path" and should be present in
m_granted list.
If we are trying to acquire "obtrusive" type of lock then it can be
either another "obtrusive" lock or "unobtrusive" type of lock
acquired on "slow path" (can't be "unobtrusive" lock on fast path
because of surrounding if-statement). In either case it should be
present in m_granted list.
*/
while ((ticket = it++)) {
if (ticket->get_ctx() != requestor_ctx &&
ticket->is_incompatible_when_granted(type_arg))
break;
}
if (ticket == nullptr) /* Incompatible locks are our own. */
can_grant = true;
}
} else {
/*
Our lock request conflicts with one of granted "fast path" locks:
This means that we are trying to acquire "obtrusive" lock and:
a) Either we are called from MDL_context::try_acquire_lock_impl()
and then all "fast path" locks belonging to this context were
materialized (as we do for "obtrusive" locks).
b) Or we are called from MDL_lock::reschedule_waiters() then
this context is waiting for this request and all its "fast
path" locks were materialized before the wait.
The above means that conflicting granted "fast path" lock cannot
belong to us and our request cannot be satisfied.
*/
}
}
return can_grant;
}
/**
Return the first MDL_context which owns the lock.
@return Pointer to the first MDL_context which has acquired the lock
NULL if there are no such contexts.
@note This method works properly only for locks acquired using
"slow" path. It won't return context if it has used "fast"
path to acquire the lock.
*/
inline MDL_context *MDL_lock::get_lock_owner() const {
Ticket_iterator it(m_granted);
MDL_ticket *ticket;
if ((ticket = it++)) return ticket->get_ctx();
return nullptr;
}
/** Remove a ticket from waiting or pending queue and wakeup up waiters. */
void MDL_lock::remove_ticket(MDL_context *ctx, LF_PINS *pins,
Ticket_list MDL_lock::*list, MDL_ticket *ticket) {
bool is_obtrusive = is_obtrusive_lock(ticket->get_type());
bool is_singleton = mdl_locks.is_lock_object_singleton(&key);
mysql_prlock_wrlock(&m_rwlock);
(this->*list).remove_ticket(ticket);
/*
If we are removing "obtrusive" type of request either from granted or
waiting lists we need to decrement "obtrusive" requests counter.
Once last ticket for "obtrusive" lock is removed we should clear
HAS_OBTRUSIVE flag in m_fast_path_state as well.
*/
bool last_obtrusive =
is_obtrusive && ((--m_obtrusive_locks_granted_waiting_count) == 0);
/*
If both m_granted and m_waiting lists become empty as result we also
need to clear HAS_SLOW_PATH flag in m_fast_path_state.
*/
bool last_slow_path = m_granted.is_empty() && m_waiting.is_empty();
bool last_use = false;
if (last_slow_path || last_obtrusive) {
fast_path_state_t old_state = m_fast_path_state;
fast_path_state_t new_state;
do {
new_state = old_state;
if (last_slow_path) new_state &= ~MDL_lock::HAS_SLOW_PATH;
if (last_obtrusive) new_state &= ~MDL_lock::HAS_OBTRUSIVE;
} while (!fast_path_state_cas(&old_state, new_state));
/*
We don't have any "fast" or "slow" path locks. MDL_lock object becomes
unused so unused objects counter needs to be incremented.
*/
if (new_state == 0) last_use = true;
}
if (last_slow_path) {
/*
We might end-up with the last waiting ticket being removed and non-0
m_hog_lock_count/m_piglet_lock_count in the following situation:
1) There is a granted "hog"/"piglet" lock blocking a lower priority lock
request.
2) The lower priority lock request is timed out or killed. It is not yet
removed from waiters list and bitmap.
3) The "Hog"/"piglet" lock is released. Its reschedule_waiters() call
will still see the pending lower priority lock so it won't reset
the m_hog_lock_count/m_piglet_lock_count counters.
4) MDL_lock::remove_ticket() is called for the timed out/killed
lower priority ticket. Which turns out to be the last ticket
for this lock.
Hence we need to reset these counters here.
*/
m_hog_lock_count = 0;
m_piglet_lock_count = 0;
m_current_waiting_incompatible_idx = 0;
} else {
/*
There can be some contexts waiting to acquire a lock
which now might be able to do it. Grant the lock to
them and wake them up!
We always try to reschedule locks, since there is no easy way
(i.e. by looking at the bitmaps) to find out whether it is
required or not.
In a general case, even when the queue's bitmap is not changed
after removal of the ticket, there is a chance that some request
can be satisfied (due to the fact that a granted request
reflected in the bitmap might belong to the same context as a
pending request).
*/
reschedule_waiters();
}
mysql_prlock_unlock(&m_rwlock);
/* Don't count singleton MDL_lock objects as unused. */
if (last_use && !is_singleton) mdl_locks.lock_object_unused(ctx, pins);
}
/**
Check if we have any pending locks which conflict with existing
shared lock.
@pre The ticket must match an acquired lock.
@return true if there is a conflicting lock request, false otherwise.
*/
bool MDL_lock::has_pending_conflicting_lock(enum_mdl_type type) {
bool result;
mysql_mutex_assert_not_owner(&LOCK_open);
mysql_prlock_rdlock(&m_rwlock);
result = (m_waiting.bitmap() & incompatible_granted_types_bitmap()[type]);
mysql_prlock_unlock(&m_rwlock);
return result;
}
MDL_wait_for_graph_visitor::~MDL_wait_for_graph_visitor() = default;
MDL_wait_for_subgraph::~MDL_wait_for_subgraph() = default;
/**
Check if ticket represents metadata lock of "stronger" or equal type
than specified one. I.e. if metadata lock represented by ticket won't
allow any of locks which are not allowed by specified type of lock.
@return true if ticket has stronger or equal type
false otherwise.
*/
bool MDL_ticket::has_stronger_or_equal_type(enum_mdl_type type) const {
const MDL_lock::bitmap_t *granted_incompat_map =
m_lock->incompatible_granted_types_bitmap();
return !(granted_incompat_map[type] & ~(granted_incompat_map[m_type]));
}
bool MDL_ticket::is_incompatible_when_granted(enum_mdl_type type) const {
return (MDL_BIT(m_type) & m_lock->incompatible_granted_types_bitmap()[type]);
}
bool MDL_ticket::is_incompatible_when_waiting(enum_mdl_type type) const {
return (MDL_BIT(m_type) & m_lock->incompatible_waiting_types_bitmap()[type]);
}
#ifndef NDEBUG
bool equivalent(const MDL_ticket *a, const MDL_ticket *b,
enum_mdl_duration target_duration) {
if (a == b) {
// Same pointer (incl. nullptr) are equivalent
return true;
}
if (a->get_lock() != b->get_lock()) {
// If they refer to different locks, they are never equivalent
return false;
}
if (a->get_duration() == target_duration &&
b->get_duration() == target_duration) {
// Different objects, but which has the same lock, AND both refer to the
// target duration are equivalent
return true;
}
if (a->get_duration() != target_duration &&
b->get_duration() != target_duration) {
// Different objects with same lock are still equivalent, if neither has
// the target duration
return true;
}
return false;
}
#endif /* not defined NDEBUG */
/**
Check whether the context already holds a compatible lock ticket
on an object.
Start searching from list of locks for the same duration as lock
being requested. If not look at lists for other durations.
@param mdl_request Lock request object for lock to be acquired
@param[out] result_duration Duration of lock which was found.
@note Tickets which correspond to lock types "stronger" than one
being requested are also considered compatible.
@return A pointer to the lock ticket for the object or NULL otherwise.
*/
MDL_ticket *MDL_context::find_ticket(MDL_request *mdl_request,
enum_mdl_duration *result_duration) {
auto h = m_ticket_store.find(*mdl_request);
*result_duration = h.m_dur;
return h.m_ticket;
}
/**
Try to acquire one lock.
Unlike exclusive locks, shared locks are acquired one by
one. This is interface is chosen to simplify introduction of
the new locking API to the system. MDL_context::try_acquire_lock()
is currently used from open_table(), and there we have only one
table to work with.
This function may also be used to try to acquire an exclusive
lock on a destination table, by ALTER TABLE ... RENAME.
Returns immediately without any side effect if encounters a lock
conflict. Otherwise takes the lock.
@param [in,out] mdl_request Lock request object for lock to be acquired
@retval false Success. The lock may have not been acquired.
Check the ticket, if it's NULL, a conflicting lock
exists.
@retval true Out of resources, an error has been reported.
*/
bool MDL_context::try_acquire_lock(MDL_request *mdl_request) {
MDL_ticket *ticket = nullptr;
if (try_acquire_lock_impl(mdl_request, &ticket)) return true;
if (!mdl_request->ticket) {
/*
Our attempt to acquire lock without waiting has failed.
Let us release resources which were acquired in the process.
We don't need to count MDL_lock object as unused and possibly
delete it here because:
- Either there was a conflicting ticket in MDL_lock::m_granted/
m_waiting lists during our call to MDL_lock::can_grant_lock().
This ticket can't go away while MDL_lock::m_rwlock is held.
- Or we have tried to acquire an "obtrusive" lock and there was
a conflicting "fast path" lock in MDL_lock::m_fast_path_state
counter during our call to MDL_lock::can_grant_lock().
In this case HAS_OBTRUSIVE lock flag should have been set before
call to MDL_lock::can_grant_lock() so release of this "fast path"
lock will have to take slow path (see release_lock() and invariant
[INV1]). This means that conflicting "fast path" lock can't go
away until MDL_lock::m_rwlock is released or HAS_OBSTRUSIVE flag
is cleared. In the latter case counting MDL_lock object as unused
is responsibility of thread which is decrementing "fast path" lock
counter. MDL_lock object can't be deleted under out feet since
thread doing deletion needs to acquire MDL_lock::m_rwlock first.
*/
MDL_lock *lock = ticket->m_lock;
bool last_obtrusive =
lock->is_obtrusive_lock(mdl_request->type) &&
((--lock->m_obtrusive_locks_granted_waiting_count) == 0);
bool last_slow_path =
lock->m_granted.is_empty() && lock->m_waiting.is_empty();
if (last_slow_path || last_obtrusive) {
MDL_lock::fast_path_state_t old_state = lock->m_fast_path_state;
MDL_lock::fast_path_state_t new_state;
do {
new_state = old_state;
if (last_slow_path) new_state &= ~MDL_lock::HAS_SLOW_PATH;
if (last_obtrusive) new_state &= ~MDL_lock::HAS_OBTRUSIVE;
} while (!lock->fast_path_state_cas(&old_state, new_state));
}
mysql_prlock_unlock(&lock->m_rwlock);
/*
If SEs were notified about impending lock acquisition, the failure
to acquire it requires the same notification as lock release.
*/
if (ticket->m_hton_notified) {
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::POST_RELEASE_NOTIFY);
m_owner->notify_hton_post_release_exclusive(&mdl_request->key);
}
MDL_ticket::destroy(ticket);
}
return false;
}
/**
"Materialize" requests for locks which were satisfied using
"fast path" by properly including them into corresponding
MDL_lock::m_granted bitmaps/lists and removing it from
packed counter in MDL_lock::m_fast_path_state.
@note In future we might optimize this method if necessary,
for example, by keeping pointer to first "fast path"
ticket.
*/
void MDL_context::materialize_fast_path_locks() {
int i;
for (i = 0; i < MDL_DURATION_END; i++) {
MDL_ticket_store::List_iterator it = m_ticket_store.list_iterator(i);
MDL_ticket *matf = m_ticket_store.materialized_front(i);
for (MDL_ticket *ticket = it++; ticket != matf; ticket = it++) {
if (ticket->m_is_fast_path) {
MDL_lock *lock = ticket->m_lock;
MDL_lock::fast_path_state_t unobtrusive_lock_increment =
lock->get_unobtrusive_lock_increment(ticket->get_type());
ticket->m_is_fast_path = false;
mysql_prlock_wrlock(&lock->m_rwlock);
lock->m_granted.add_ticket(ticket);
/*
Atomically decrement counter in MDL_lock::m_fast_path_state.
This needs to happen under protection of MDL_lock::m_rwlock to make
it atomic with addition of ticket to MDL_lock::m_granted list and
to enforce invariant [INV1].
*/
MDL_lock::fast_path_state_t old_state = lock->m_fast_path_state;
while (!lock->fast_path_state_cas(
&old_state, ((old_state - unobtrusive_lock_increment) |
MDL_lock::HAS_SLOW_PATH))) {
}
mysql_prlock_unlock(&lock->m_rwlock);
}
}
}
m_ticket_store.set_materialized();
}
/**
Auxiliary method for acquiring lock without waiting.
@param [in,out] mdl_request Lock request object for lock to be acquired
@param [out] out_ticket Ticket for the request in case when lock
has not been acquired.
@retval false Success. The lock may have not been acquired.
Check MDL_request::ticket, if it's NULL, a conflicting
lock exists. In this case "out_ticket" out parameter
points to ticket which was constructed for the request.
MDL_ticket::m_lock points to the corresponding MDL_lock
object and MDL_lock::m_rwlock write-locked.
@retval true Out of resources, an error has been reported.
*/
bool MDL_context::try_acquire_lock_impl(MDL_request *mdl_request,
MDL_ticket **out_ticket) {
MDL_lock *lock;
MDL_key *key = &mdl_request->key;
MDL_ticket *ticket;
enum_mdl_duration found_duration;
MDL_lock::fast_path_state_t unobtrusive_lock_increment;
bool force_slow;
bool pinned;
assert(mdl_request->ticket == nullptr);
/* Don't take chances in production. */
mdl_request->ticket = nullptr;
mysql_mutex_assert_not_owner(&LOCK_open);
/*
Check whether the context already holds a shared lock on the object,
and if so, grant the request.
*/
if ((ticket = find_ticket(mdl_request, &found_duration))) {
assert(ticket->m_lock);
assert(ticket->has_stronger_or_equal_type(mdl_request->type));
/*
If the request is for a transactional lock, and we found
a transactional lock, just reuse the found ticket.
It's possible that we found a transactional lock,
but the request is for a HANDLER lock. In that case HANDLER
code will clone the ticket (see below why it's needed).
If the request is for a transactional lock, and we found
a HANDLER lock, create a copy, to make sure that when user
does HANDLER CLOSE, the transactional lock is not released.
If the request is for a handler lock, and we found a
HANDLER lock, also do the clone. HANDLER CLOSE for one alias
should not release the lock on the table HANDLER opened through
a different alias.
*/
mdl_request->ticket = ticket;
if ((found_duration != mdl_request->duration ||
mdl_request->duration == MDL_EXPLICIT) &&
clone_ticket(mdl_request)) {
/* Clone failed. */
mdl_request->ticket = nullptr;
return true;
}
return false;
}
/*
Prepare context for lookup in MDL_map container by allocating pins
if necessary. This also ensures that this MDL_context has pins allocated
and ready for future attempts elements from MDL_map container (which
might happen during lock release).
*/
if (fix_pins()) return true;
if (!(ticket = MDL_ticket::create(this, mdl_request->type
#ifndef NDEBUG
,
mdl_request->duration
#endif
)))
return true;
/*
Get increment for "fast path" or indication that this is
request for "obtrusive" type of lock outside of critical section.
*/
unobtrusive_lock_increment =
MDL_lock::get_unobtrusive_lock_increment(mdl_request);
/*
If this "obtrusive" type we have to take "slow path".
If this context has open HANDLERs we have to take "slow path"
as well for MDL_object_lock::notify_conflicting_locks() to work
properly.
*/
force_slow = !unobtrusive_lock_increment || m_needs_thr_lock_abort;
/*
If "obtrusive" lock is requested we need to "materialize" all fast
path tickets, so MDL_lock::can_grant_lock() can safely assume
that all granted "fast path" locks belong to different context.
*/
if (!unobtrusive_lock_increment) materialize_fast_path_locks();
assert(ticket->m_psi == nullptr);
ticket->m_psi = mysql_mdl_create(
ticket, key, mdl_request->type, mdl_request->duration,
MDL_ticket::PENDING, mdl_request->m_src_file, mdl_request->m_src_line);
/*
We need to notify/get permission from storage engines before acquiring
X lock if it is requested in one of namespaces interesting for SEs.
*/
if (mdl_request->type == MDL_EXCLUSIVE &&
MDL_lock::needs_hton_notification(key->mdl_namespace())) {
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::PRE_ACQUIRE_NOTIFY);
bool victimized;
if (m_owner->notify_hton_pre_acquire_exclusive(key, &victimized)) {
MDL_ticket::destroy(ticket);
my_error(victimized ? ER_LOCK_DEADLOCK : ER_LOCK_REFUSED_BY_ENGINE,
MYF(0));
return true;
}
ticket->m_hton_notified = true;
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::PENDING);
}
retry:
/*
The below call pins pointer to returned MDL_lock object (unless
it is the singleton object for GLOBAL, COMMIT or ACL_CACHE namespaces).
*/
if (!(lock = mdl_locks.find_or_insert(m_pins, key, &pinned))) {
/*
If SEs were notified about impending lock acquisition, the failure
to acquire it requires the same notification as lock release.
*/
if (ticket->m_hton_notified) {
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::POST_RELEASE_NOTIFY);
m_owner->notify_hton_post_release_exclusive(key);
}
MDL_ticket::destroy(ticket);
return true;
}
/*
Code counting unused MDL_lock objects below assumes that object is not
pinned iff it is a singleton.
*/
assert(mdl_locks.is_lock_object_singleton(key) == !pinned);
if (!force_slow) {
/*
"Fast path".
Hurray! We are acquiring "unobtrusive" type of lock and not forced
to take "slow path" because of open HANDLERs.
Let us do a few checks first to figure out if we really can acquire
lock using "fast path".
Since the MDL_lock object is pinned at this point (or it is the
singleton) we can access its members without risk of it getting deleted
under out feet.
Ordinary read of MDL_lock::m_fast_path_state which we do here is OK as
correctness of value returned by it will be anyway validated by atomic
compare-and-swap which happens later.
In theory, this algorithm will work correctly (but not very efficiently)
if the read will return random values.
In practice, it won't return values which are too out-of-date as the
above call to MDL_map::find_or_insert() contains memory barrier.
*/
MDL_lock::fast_path_state_t old_state = lock->m_fast_path_state;
bool first_use;
do {
/*
Check if hash look-up returned object marked as destroyed or
it was marked as such while it was pinned by us. If yes we
need to unpin it and retry look-up.
*/
if (old_state & MDL_lock::IS_DESTROYED) {
if (pinned) lf_hash_search_unpin(m_pins);
DEBUG_SYNC(get_thd(), "mdl_acquire_lock_is_destroyed_fast_path");
goto retry;
}
/*
Check that there are no granted/pending "obtrusive" locks and nobody
even is about to try to check if such lock can be acquired.
In these cases we need to take "slow path".
*/
if (old_state & MDL_lock::HAS_OBTRUSIVE) goto slow_path;
/*
If m_fast_path_state doesn't have HAS_SLOW_PATH set and all "fast"
path counters are 0 then we are about to use an unused MDL_lock
object. We need to decrement unused objects counter eventually.
*/
first_use = (old_state == 0);
/*
Now we simply need to increment m_fast_path_state with a value which
corresponds to type of our request (i.e. increment part this member
which contains counter which corresponds to this type).
This needs to be done as atomic operation with the above checks,
which is achieved by using atomic compare-and-swap.
@sa MDL_object_lock::m_unobtrusive_lock_increment for explanation
why overflow is not an issue here.
*/
} while (!lock->fast_path_state_cas(
&old_state, old_state + unobtrusive_lock_increment));
/*
Lock has been acquired. Since this can only be an "unobtrusive" lock and
there were no active/pending requests for "obtrusive" locks, we don't need
to care about "hog" and "piglet" locks and the max_write_lock_count
threshold.
*/
if (pinned) lf_hash_search_unpin(m_pins);
/*
Don't count singleton MDL_lock objects as used, use "pinned == false"
as an indication of such objects.
*/
if (first_use && pinned) mdl_locks.lock_object_used();
/*
Since this MDL_ticket is not visible to any threads other than
the current one, we can set MDL_ticket::m_lock member without
protect of MDL_lock::m_rwlock. MDL_lock won't be deleted
underneath our feet as MDL_lock::m_fast_path_state serves as
reference counter in this case.
*/
ticket->m_lock = lock;
ticket->m_is_fast_path = true;
m_ticket_store.push_front(mdl_request->duration, ticket);
mdl_request->ticket = ticket;
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::GRANTED);
return false;
}
slow_path:
/*
"Slow path".
Do full-blown check and list manipulation if necessary.
*/
mysql_prlock_wrlock(&lock->m_rwlock);
/*
First of all, let us check if hash look-up returned MDL_lock object which
is marked as destroyed or was marked as such while it was pinned by us.
If we have got such object we need to retry look-up.
We can use ordinary non-atomic read in this case as this flag is set under
protection of MDL_lock::m_rwlock (we can get inconsistent data for other
parts of m_fast_path_state due to concurrent atomic updates, but we don't
care about them yet).
*/
MDL_lock::fast_path_state_t state = lock->m_fast_path_state;
if (state & MDL_lock::IS_DESTROYED) {
mysql_prlock_unlock(&lock->m_rwlock);
/*
We can't unpin object earlier as lf_hash_delete() might have been
called for it already and so LF_ALLOCATOR is free to deallocate it
once unpinned.
*/
if (pinned) lf_hash_search_unpin(m_pins);
DEBUG_SYNC(get_thd(), "mdl_acquire_lock_is_destroyed_slow_path");
goto retry;
}
/*
Object was not marked as destroyed. Since it can't be deleted from hash
and deallocated until this happens we can unpin it and work with it safely
while MDL_lock::m_rwlock is held.
*/
if (pinned) lf_hash_search_unpin(m_pins);
/*
When we try to acquire the first obtrusive lock for MDL_lock object we
need to atomically set the HAS_OBTRUSIVE flag in m_fast_path_state before
we call the MDL_lock::can_grant_lock() method.
This is necessary to prevent concurrent fast path acquisitions from
invalidating the results of this method.
*/
bool first_obtrusive_lock =
(unobtrusive_lock_increment == 0) &&
((lock->m_obtrusive_locks_granted_waiting_count++) == 0);
bool first_use = false;
/*
When we try to acquire the first "slow" path lock for MDL_lock object
we also need to atomically set HAS_SLOW_PATH flag. It is OK to read
HAS_SLOW_PATH non-atomically here since it can be only set under
protection of MDL_lock::m_rwlock lock.
*/
if (!(state & MDL_lock::HAS_SLOW_PATH) || first_obtrusive_lock) {
do {
/*
If HAS_SLOW_PATH flag is not set and all "fast" path counters
are zero we are about to use previously unused MDL_lock object.
MDL_map::m_unused_lock_objects counter needs to be decremented
eventually.
*/
first_use = (state == 0);
} while (!lock->fast_path_state_cas(
&state, state | MDL_lock::HAS_SLOW_PATH |
(first_obtrusive_lock ? MDL_lock::HAS_OBTRUSIVE : 0)));
}
/*
Don't count singleton MDL_lock objects as used, use "pinned == false"
as an indication of such objects.
If the fact that we do this atomic decrement under MDL_lock::m_rwlock
ever becomes bottleneck (which is unlikely) it can be safely moved
outside of critical section.
*/
if (first_use && pinned) mdl_locks.lock_object_used();
ticket->m_lock = lock;
if (lock->can_grant_lock(mdl_request->type, this)) {
lock->m_granted.add_ticket(ticket);
if (lock->is_affected_by_max_write_lock_count()) {
/*
If we have acquired an higher-prio "piglet" or "hog" lock while there
are pending lower priority locks, we need to increment the appropriate
counter.
If one or both of these counters exceed the max_write_lock_count
threshold, change priority matrice for this MDL_lock object.
Reschedule waiters to avoid problems when the change of matrice
happens concurrently to other thread acquiring a lower priority
lock between its call to MDL_lock::can_grant_lock() and
MDL_context::find_deadlock().
*/
if (lock->count_piglets_and_hogs(mdl_request->type))
lock->reschedule_waiters();
}
mysql_prlock_unlock(&lock->m_rwlock);
m_ticket_store.push_front(mdl_request->duration, ticket);
mdl_request->ticket = ticket;
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::GRANTED);
} else
*out_ticket = ticket;
return false;
}
/**
Create a copy of a granted ticket.
This is used to make sure that HANDLER ticket
is never shared with a ticket that belongs to
a transaction, so that when we HANDLER CLOSE,
we don't release a transactional ticket, and
vice versa -- when we COMMIT, we don't mistakenly
release a ticket for an open HANDLER.
@retval true An error occurred.
@retval false Success.
*/
bool MDL_context::clone_ticket(MDL_request *mdl_request) {
MDL_ticket *ticket;
mysql_mutex_assert_not_owner(&LOCK_open);
/*
Since in theory we can clone ticket belonging to a different context
we need to prepare target context for possible attempts to release
lock and thus possible removal of MDL_lock from MDL_map container.
So we allocate pins to be able to work with this container if they
are not allocated already.
*/
if (fix_pins()) return true;
/*
By submitting mdl_request->type to MDL_ticket::create()
we effectively downgrade the cloned lock to the level of
the request.
*/
if (!(ticket = MDL_ticket::create(this, mdl_request->type
#ifndef NDEBUG
,
mdl_request->duration
#endif
)))
return true;
assert(ticket->m_psi == nullptr);
ticket->m_psi = mysql_mdl_create(
ticket, &mdl_request->key, mdl_request->type, mdl_request->duration,
MDL_ticket::PENDING, mdl_request->m_src_file, mdl_request->m_src_line);
/* clone() is not supposed to be used to get a stronger lock. */
assert(mdl_request->ticket->has_stronger_or_equal_type(ticket->m_type));
/*
If we are to clone exclusive lock in namespace requiring notification
of storage engines we need to notify/get permission from SEs similarly
to situation when lock acquired.
*/
if (mdl_request->type == MDL_EXCLUSIVE &&
MDL_lock::needs_hton_notification(mdl_request->key.mdl_namespace())) {
assert(mdl_request->ticket->m_hton_notified);
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::PRE_ACQUIRE_NOTIFY);
bool victimized;
if (m_owner->notify_hton_pre_acquire_exclusive(&mdl_request->key,
&victimized)) {
MDL_ticket::destroy(ticket);
my_error(victimized ? ER_LOCK_DEADLOCK : ER_LOCK_REFUSED_BY_ENGINE,
MYF(0));
return true;
}
ticket->m_hton_notified = true;
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::PENDING);
}
ticket->m_lock = mdl_request->ticket->m_lock;
if (mdl_request->ticket->m_is_fast_path) {
/*
We are cloning ticket which was acquired on "fast path".
Let us use "fast path" to create clone as well.
*/
MDL_lock::fast_path_state_t unobtrusive_lock_increment =
ticket->m_lock->get_unobtrusive_lock_increment(ticket->get_type());
/*
"Obtrusive" type of lock can't be cloned from weaker, "unobtrusive"
type of lock.
*/
assert(unobtrusive_lock_increment != 0);
/*
Increment of counter in MDL_lock::m_fast_path_state needs to happen here
atomically and under protection of MDL_lock::m_rwlock in order to enforce
invariant [INV1].
*/
mysql_prlock_wrlock(&ticket->m_lock->m_rwlock);
ticket->m_lock->fast_path_state_add(unobtrusive_lock_increment);
mysql_prlock_unlock(&ticket->m_lock->m_rwlock);
ticket->m_is_fast_path = true;
} else {
/*
We are cloning ticket which was acquired on "slow path".
We will use "slow path" for new ticket as well. We also
need to take into account if new ticket corresponds to
"obtrusive" lock.
*/
bool is_obtrusive = ticket->m_lock->is_obtrusive_lock(ticket->m_type);
mysql_prlock_wrlock(&ticket->m_lock->m_rwlock);
ticket->m_lock->m_granted.add_ticket(ticket);
if (is_obtrusive) {
/*
We don't need to set HAS_OBTRUSIVE flag in MDL_lock::m_fast_path_state
here as it is already set since the ticket being cloned already
represents "obtrusive" lock for this MDL_lock object.
*/
assert(ticket->m_lock->m_obtrusive_locks_granted_waiting_count != 0);
++ticket->m_lock->m_obtrusive_locks_granted_waiting_count;
}
mysql_prlock_unlock(&ticket->m_lock->m_rwlock);
}
mdl_request->ticket = ticket;
m_ticket_store.push_front(mdl_request->duration, ticket);
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::GRANTED);
return false;
}
/**
Notify threads holding S/SH metadata locks on an object, which conflict
with a pending X lock.
@note Currently this method is guaranteed to notify shared lock
owners which have MDL_context::m_needs_thr_lock_abort flag
set (as for others conficting locks might have been acquired
on "fast path" and thus might be absent from list of granted
locks).
This is OK as notification for other contexts is anyway
no-op now.
@note We don't notify threads holding other than S/SH types of
conflicting locks on the object since notification should
not be needed and anyway will be no-op for them (unless
they also hold S/SH locks on the object).
@param ctx MDL_context for current thread.
@param lock MDL_lock object representing lock which is to be
acquired.
*/
void MDL_lock::object_lock_notify_conflicting_locks(MDL_context *ctx,
MDL_lock *lock) {
Ticket_iterator it(lock->m_granted);
MDL_ticket *conflicting_ticket;
while ((conflicting_ticket = it++)) {
if (conflicting_ticket->get_ctx() != ctx &&
(conflicting_ticket->get_type() == MDL_SHARED ||
conflicting_ticket->get_type() == MDL_SHARED_HIGH_PRIO) &&
conflicting_ticket->get_ctx()->get_owner()->get_thd() != nullptr) {
MDL_context *conflicting_ctx = conflicting_ticket->get_ctx();
/*
If thread which holds conflicting lock is waiting on table-level
lock or some other non-MDL resource we might need to wake it up
by calling code outside of MDL.
The only scenario in which it is important now looks like:
Thread 1: HANDLER t1 OPEN, acquires S metadata lock on t1.
Thread 2: LOCK TABLES t1 WRITE, t2 READ LOCAL, acquire
SNRW lock on t1, SR lock on t2 and TL_READ THR_LOCK
lock on t2.
Thread 1: Executes UPDATE t2 SET i = 1 or some other DML which
will directly or indirectly block on THR_LOCK for t2.
Thread 2: Does ALTER TABLE t1 ... which tries to upgrade SNRW
metadata lock to X lock and blocks because of S lock
from open HANDLER.
A similar scenario is possible when MERGE tables are used instead
of the READ LOCAL clause.
Once we will get rid of the support for READ LOCAL and MERGE clauses
this code can be removed.
*/
ctx->get_owner()->notify_shared_lock(
conflicting_ctx->get_owner(),
conflicting_ctx->get_needs_thr_lock_abort());
}
}
}
/**
Acquire one lock with waiting for conflicting locks to go away if needed.
@param [in,out] mdl_request Lock request object for lock to be acquired
@param lock_wait_timeout Seconds to wait before timeout.
@retval false Success. MDL_request::ticket points to the ticket
for the lock.
@retval true Failure (Out of resources or waiting is aborted),
*/
bool MDL_context::acquire_lock(MDL_request *mdl_request,
Timeout_type lock_wait_timeout) {
// in order to test bug#34594035 call functions that before the fix
// caused crash and return failure
DBUG_EXECUTE_IF("bug34594035_fail_acl_cache_lock",
debug_sync(get_thd(), "123", 3);
mysql_prlock_wrlock(&m_LOCK_waiting_for);
mysql_prlock_unlock(&m_LOCK_waiting_for);
DBUG_SET("-d,bug34594035_fail_acl_cache_lock"); return true;);
if (lock_wait_timeout == 0) {
/*
Resort to try_acquire_lock() in case of zero timeout.
This allows to avoid unnecessary deadlock detection attempt and "fake"
deadlocks which might result from it.
In case of failure to acquire lock, try_acquire_lock() preserves
invariants by updating MDL_lock::fast_path_state and obtrusive locks
count. It also performs SE notification if needed.
*/
if (try_acquire_lock(mdl_request)) return true;
if (!mdl_request->ticket) {
/* We have failed to acquire lock instantly. */
DEBUG_SYNC(get_thd(), "mdl_acquire_lock_wait");
my_error(ER_LOCK_WAIT_TIMEOUT, MYF(0));
return true;
}
return false;
}
/* Normal, non-zero timeout case. */
MDL_lock *lock;
MDL_ticket *ticket = nullptr;
struct timespec abs_timeout;
MDL_wait::enum_wait_status wait_status;
/* Do some work outside the critical section. */
set_timespec(&abs_timeout, lock_wait_timeout);
if (try_acquire_lock_impl(mdl_request, &ticket)) return true;
if (mdl_request->ticket) {
/*
We have managed to acquire lock without waiting.
MDL_lock, MDL_context and MDL_request were updated
accordingly, so we can simply return success.
*/
return false;
}
/*
Our attempt to acquire lock without waiting has failed.
As a result of this attempt we got MDL_ticket with m_lock
member pointing to the corresponding MDL_lock object which
has MDL_lock::m_rwlock write-locked.
*/
lock = ticket->m_lock;
lock->m_waiting.add_ticket(ticket);
/*
Once we added a pending ticket to the waiting queue,
we must ensure that our wait slot is empty, so
that our lock request can be scheduled. Do that in the
critical section formed by the acquired write lock on MDL_lock.
*/
m_wait.reset_status();
if (lock->needs_notification(ticket)) lock->notify_conflicting_locks(this);
mysql_prlock_unlock(&lock->m_rwlock);
#ifdef HAVE_PSI_METADATA_INTERFACE
PSI_metadata_locker_state state;
PSI_metadata_locker *locker = nullptr;
if (ticket->m_psi != nullptr) {
locker = PSI_METADATA_CALL(start_metadata_wait)(&state, ticket->m_psi,
__FILE__, __LINE__);
}
#endif
will_wait_for(ticket);
/* There is a shared or exclusive lock on the object. */
DEBUG_SYNC(get_thd(), "mdl_acquire_lock_wait");
/*
Avoid deadlock detection in case when we are sure that introduction of
pending lock hasn't introduced new deadlocks, because pending lock
of this type doesn't block acquisition of other locks and there are
no existing waiters for this context.
We do this for specific case when we try to acquire S lock on ACL_CACHE
singleton. While being singleton this lock is acquired by each connection
attempt and in some cases even by each statement, so on systems with many
connections deadlock detection can get really expensive.
Doing the same in a general case is non-trivial (whether addition of
pending request will create more waiters depends on situation with
max_write_lock_count at least for object locks) and is likely to provide
less benefits.
There is another optimization for case when we try to acquire S lock on
ACL_CACHE singleton and there are MDL waiters for this context.
In this case we delay deadlock detection for 1 second in the hope that
our request will be granted before that and the deadlock detection
will be skipped. Note that this should be most common case as ACL_CACHE
lock is supposed to be held for short periods only. If threads acquiring
S lock on ACL_CACHE have to wait for more than 1 second, then the system
is likely to be trouble (as it means more than 1 second stalls for any
statement doing privilege checks).
We don't apply this optimization in cases when locks are acquired on
behalf of replication applier with commit order waits, as deadlocks
are likely in such situation and it is better to detect it ASAP.
*/
bool delayed_find_deadlock = false;
if (lock->key.mdl_namespace() != MDL_key::ACL_CACHE ||
ticket->m_type != MDL_SHARED ||
get_owner()->might_have_commit_order_waiters()) {
find_deadlock();
} else if (has_locks()) {
// Locks in ACL_CACHE namespace always need connection check, so
assert(lock->needs_connection_check());
delayed_find_deadlock = true;
}
if (lock->needs_notification(ticket) || lock->needs_connection_check()) {
struct timespec abs_shortwait;
set_timespec(&abs_shortwait, 1);
wait_status = MDL_wait::WS_EMPTY;
while (cmp_timespec(&abs_shortwait, &abs_timeout) <= 0) {
/* abs_timeout is far away. Wait a short while and notify locks. */
wait_status = m_wait.timed_wait(m_owner, &abs_shortwait, false,
mdl_request->key.get_wait_state_name());
if (wait_status != MDL_wait::WS_EMPTY) break;
if (lock->needs_connection_check() && !m_owner->is_connected()) {
/*
If this is user-level lock and the client is disconnected don't wait
forever: assume it's the same as statement being killed (this differs
from pre-5.7 where we treat it as timeout, but is more logical).
Using MDL_wait::set_status() to set status atomically wastes one
condition variable wake up but should happen rarely.
We don't want to do this check for all types of metadata locks since
in general case we may want to complete wait/operation even when
connection is lost (e.g. in case of logging into slow/general log).
*/
if (!m_wait.set_status(MDL_wait::KILLED))
wait_status = MDL_wait::KILLED;
break;
}
if (lock->needs_notification(ticket)) {
mysql_prlock_wrlock(&lock->m_rwlock);
lock->notify_conflicting_locks(this);
mysql_prlock_unlock(&lock->m_rwlock);
}
if (delayed_find_deadlock) {
find_deadlock();
delayed_find_deadlock = false;
}
set_timespec(&abs_shortwait, 1);
}
if (wait_status == MDL_wait::WS_EMPTY)
wait_status = m_wait.timed_wait(m_owner, &abs_timeout, true,
mdl_request->key.get_wait_state_name());
} else {
wait_status = m_wait.timed_wait(m_owner, &abs_timeout, true,
mdl_request->key.get_wait_state_name());
}
done_waiting_for();
#ifdef HAVE_PSI_METADATA_INTERFACE
if (locker != nullptr) {
PSI_METADATA_CALL(end_metadata_wait)(locker, 0);
}
#endif
if (wait_status != MDL_wait::GRANTED) {
lock->remove_ticket(this, m_pins, &MDL_lock::m_waiting, ticket);
/*
If SEs were notified about impending lock acquisition, the failure
to acquire it requires the same notification as lock release.
*/
if (ticket->m_hton_notified) {
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::POST_RELEASE_NOTIFY);
m_owner->notify_hton_post_release_exclusive(&mdl_request->key);
}
MDL_ticket::destroy(ticket);
switch (wait_status) {
case MDL_wait::VICTIM:
my_error(ER_LOCK_DEADLOCK, MYF(0));
break;
case MDL_wait::TIMEOUT:
my_error(ER_LOCK_WAIT_TIMEOUT, MYF(0));
break;
case MDL_wait::KILLED:
if (get_owner()->is_killed() == ER_QUERY_TIMEOUT)
my_error(ER_QUERY_TIMEOUT, MYF(0));
else
my_error(ER_QUERY_INTERRUPTED, MYF(0));
break;
default:
assert(0);
break;
}
return true;
}
/*
We have been granted our request.
State of MDL_lock object is already being appropriately updated by a
concurrent thread (@sa MDL_lock:reschedule_waiters()).
So all we need to do is to update MDL_context and MDL_request objects.
*/
assert(wait_status == MDL_wait::GRANTED);
m_ticket_store.push_front(mdl_request->duration, ticket);
mdl_request->ticket = ticket;
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::GRANTED);
return false;
}
class MDL_request_cmp {
public:
bool operator()(const MDL_request *req1, const MDL_request *req2) {
int rc = req1->key.cmp(&req2->key);
/*
In cases when both requests correspond to the same key, we need to put
the request for the stronger lock type first, to avoid extra deadlocks.
We do this by simply comparing types of lock requests.
This works OK since it is mostly needed to avoid the scenario when
LOCK TABLES t1 WRITE, t1 READ acquires SRO lock before SNRW lock.
It won't work in the general case (e.g. SRO is not stronger than SW).
*/
if (rc == 0)
rc = static_cast<int>(req2->type) - static_cast<int>(req1->type);
return rc < 0;
}
};
/**
Acquire exclusive locks. There must be no granted locks in the
context.
This is a replacement of lock_table_names(). It is used in
RENAME, DROP and other DDL SQL statements.
@param mdl_requests List of requests for locks to be acquired.
@param lock_wait_timeout Seconds to wait before timeout.
@note The list of requests should not contain non-exclusive lock requests.
There should not be any acquired locks in the context.
@note Assumes that one already owns scoped intention exclusive lock.
@note If acquisition fails any locks with MDL_EXPLICIT duration that had
already been taken, are released. Not just locks with MDL_STATEMENT
and MDL_TRANSACTION duration. This makes acquition of MDL_EXPLICIT
locks atomic (all or nothing). This is needed for the locking
service plugin API.
@retval false Success
@retval true Failure
*/
bool MDL_context::acquire_locks(MDL_request_list *mdl_requests,
Timeout_type lock_wait_timeout) {
MDL_request_list::Iterator it(*mdl_requests);
MDL_request **p_req;
MDL_savepoint mdl_svp = mdl_savepoint();
/*
Remember the first MDL_EXPLICIT ticket so that we can release
any new such locks taken if acquisition fails.
*/
MDL_ticket *explicit_front = m_ticket_store.front(MDL_EXPLICIT);
const size_t req_count = mdl_requests->elements();
if (req_count == 0) return false;
/* Sort requests according to MDL_key. */
Prealloced_array<MDL_request *, 16> sort_buf(
key_memory_MDL_context_acquire_locks);
if (sort_buf.reserve(req_count)) return true;
for (size_t ii = 0; ii < req_count; ++ii) {
sort_buf.push_back(it++);
}
std::sort(sort_buf.begin(), sort_buf.end(), MDL_request_cmp());
size_t num_acquired = 0;
for (p_req = sort_buf.begin(); p_req != sort_buf.end(); p_req++) {
if (acquire_lock(*p_req, lock_wait_timeout)) goto err;
++num_acquired;
}
return false;
err:
/*
Release locks we have managed to acquire so far.
Use rollback_to_savepoint() since there may be duplicate
requests that got assigned the same ticket.
*/
rollback_to_savepoint(mdl_svp);
/*
Also release the MDL_EXPLICIT locks taken in this call.
The locking service plugin API needs acquisition of such
locks to be atomic as well.
*/
release_locks_stored_before(MDL_EXPLICIT, explicit_front);
/* Reset lock requests back to its initial state. */
for (p_req = sort_buf.begin(); p_req != sort_buf.begin() + num_acquired;
p_req++) {
(*p_req)->ticket = nullptr;
}
return true;
}
bool MDL_context::clone_tickets(const MDL_context *ticket_owner,
enum_mdl_duration duration) {
MDL_ticket *ticket;
MDL_ticket_store::List_iterator it_ticket =
ticket_owner->m_ticket_store.list_iterator(duration);
bool ret = false;
MDL_request request;
while ((ticket = it_ticket++)) {
assert(ticket->m_lock);
MDL_REQUEST_INIT_BY_KEY(&request, ticket->get_key(), ticket->get_type(),
duration);
request.ticket = ticket;
ret = clone_ticket(&request);
if (ret) break;
}
if (ret) {
Ticket_iterator it_ticket1 = m_ticket_store.list_iterator(duration);
while ((ticket = it_ticket1++)) {
release_lock(ticket);
}
}
return ret;
}
/**
Upgrade a shared metadata lock.
Used in ALTER TABLE and CREATE TABLE.
@param mdl_ticket Lock to upgrade.
@param new_type Lock type to upgrade to.
@param lock_wait_timeout Seconds to wait before timeout.
@note In case of failure to upgrade lock (e.g. because upgrader
was killed) leaves lock in its original state (locked in
shared mode).
@note There can be only one upgrader for a lock or we will have deadlock.
This invariant is ensured by the fact that upgradeable locks SU, SNW
and SNRW are not compatible with each other and themselves in case
of ALTER TABLE operation.
In case of CREATE TABLE operation there is chance of deadlock as 'S'
is compatible with 'S'. But the deadlock is recovered by backoff and
retry mechanism.
@retval false Success
@retval true Failure (thread was killed)
*/
bool MDL_context::upgrade_shared_lock(MDL_ticket *mdl_ticket,
enum_mdl_type new_type,
Timeout_type lock_wait_timeout) {
MDL_request mdl_new_lock_request;
MDL_savepoint mdl_svp = mdl_savepoint();
bool is_new_ticket;
MDL_lock *lock;
DBUG_TRACE;
DEBUG_SYNC(get_thd(), "mdl_upgrade_lock");
/*
Do nothing if already upgraded. Used when we FLUSH TABLE under
LOCK TABLES and a table is listed twice in LOCK TABLES list.
*/
if (mdl_ticket->has_stronger_or_equal_type(new_type)) return false;
MDL_REQUEST_INIT_BY_KEY(&mdl_new_lock_request, &mdl_ticket->m_lock->key,
new_type, MDL_TRANSACTION);
if (acquire_lock(&mdl_new_lock_request, lock_wait_timeout)) return true;
is_new_ticket = !has_lock(mdl_svp, mdl_new_lock_request.ticket);
lock = mdl_ticket->m_lock;
/* Code below assumes that we were upgrading to "obtrusive" type of lock. */
assert(lock->is_obtrusive_lock(new_type));
/* Merge the acquired and the original lock. @todo: move to a method. */
mysql_prlock_wrlock(&lock->m_rwlock);
if (is_new_ticket) {
lock->m_granted.remove_ticket(mdl_new_lock_request.ticket);
/*
We should not clear HAS_OBTRUSIVE flag in this case as we will
get "obtrusive' lock as result in any case.
*/
--lock->m_obtrusive_locks_granted_waiting_count;
}
/*
Set the new type of lock in the ticket. To update state of
MDL_lock object correctly we need to temporarily exclude
ticket from the granted queue or "fast path" counter and
then include lock back into granted queue.
Note that with current code at this point we can't have
"fast path" tickets as upgrade to "obtrusive" locks
materializes tickets normally. Still we cover this case
for completeness.
*/
if (mdl_ticket->m_is_fast_path) {
/*
Decrement of counter in MDL_lock::m_fast_path_state needs to be done
under protection of MDL_lock::m_rwlock to ensure that it is atomic with
changes to MDL_lock::m_granted list and to enforce invariant [INV1].
Note that since we have HAS_OBTRUSIVE flag set at this point all
concurrent lock acquisitions and releases will have to acquire
MDL_lock::m_rwlock, so nobody will see results of this decrement until
m_rwlock is released.
*/
lock->fast_path_state_add(
-lock->get_unobtrusive_lock_increment(mdl_ticket->m_type));
mdl_ticket->m_is_fast_path = false;
} else {
lock->m_granted.remove_ticket(mdl_ticket);
/*
Also if we are upgrading from "obtrusive" lock we need to temporarily
decrement m_obtrusive_locks_granted_waiting_count counter.
We should not clear HAS_OBTRUSIVE flag in this case as we will get
"obtrusive' lock as result in any case.
*/
if (lock->is_obtrusive_lock(mdl_ticket->m_type))
--lock->m_obtrusive_locks_granted_waiting_count;
}
mdl_ticket->m_type = new_type;
mysql_mdl_set_type(mdl_ticket->m_psi, new_type);
lock->m_granted.add_ticket(mdl_ticket);
/*
Since we always upgrade to "obtrusive" type of lock we need to
increment m_obtrusive_locks_granted_waiting_count counter.
HAS_OBTRUSIVE flag has been already set by acquire_lock()
and should not have been cleared since then.
*/
assert(lock->m_fast_path_state & MDL_lock::HAS_OBTRUSIVE);
++lock->m_obtrusive_locks_granted_waiting_count;
mysql_prlock_unlock(&lock->m_rwlock);
/*
The below code can't handle situation when we upgrade to lock requiring
SE notification and it turns out that we already have lock of this type
associated with different ticket.
*/
assert(is_new_ticket || !mdl_new_lock_request.ticket->m_hton_notified);
mdl_ticket->m_hton_notified = mdl_new_lock_request.ticket->m_hton_notified;
if (is_new_ticket) {
m_ticket_store.remove(MDL_TRANSACTION, mdl_new_lock_request.ticket);
MDL_ticket::destroy(mdl_new_lock_request.ticket);
}
return false;
}
/**
A fragment of recursive traversal of the wait-for graph
in search for deadlocks. Direct the deadlock visitor to all
contexts that own the lock the current node in the wait-for
graph is waiting for.
As long as the initial node is remembered in the visitor,
a deadlock is found when the same node is seen twice.
*/
bool MDL_lock::visit_subgraph(MDL_ticket *waiting_ticket,
MDL_wait_for_graph_visitor *gvisitor) {
MDL_ticket *ticket;
MDL_context *src_ctx = waiting_ticket->get_ctx();
bool result = true;
mysql_prlock_rdlock(&m_rwlock);
/*
Iterators must be initialized after taking a read lock.
Note that MDL_ticket's which correspond to lock requests satisfied
on "fast path" are not present in m_granted list and thus
corresponding edges are missing from wait-for graph.
It is OK since contexts with "fast path" tickets are not allowed to
wait for any resource (they have to convert "fast path" tickets to
normal tickets first) and thus cannot participate in deadlock.
@sa MDL_contex::will_wait_for().
*/
Ticket_iterator granted_it(m_granted);
Ticket_iterator waiting_it(m_waiting);
/*
MDL_lock's waiting and granted queues and MDL_context::m_waiting_for
member are updated by different threads when the lock is granted
(see MDL_context::acquire_lock() and MDL_lock::reschedule_waiters()).
As a result, here we may encounter a situation when MDL_lock data
already reflects the fact that the lock was granted but
m_waiting_for member has not been updated yet.
For example, imagine that:
thread1: Owns SNW lock on table t1.
thread2: Attempts to acquire SW lock on t1,
but sees an active SNW lock.
Thus adds the ticket to the waiting queue and
sets m_waiting_for to point to the ticket.
thread1: Releases SNW lock, updates MDL_lock object to
grant SW lock to thread2 (moves the ticket for
SW from waiting to the active queue).
Attempts to acquire a new SNW lock on t1,
sees an active SW lock (since it is present in the
active queue), adds ticket for SNW lock to the waiting
queue, sets m_waiting_for to point to this ticket.
At this point deadlock detection algorithm run by thread1 will see that:
- Thread1 waits for SNW lock on t1 (since m_waiting_for is set).
- SNW lock is not granted, because it conflicts with active SW lock
owned by thread 2 (since ticket for SW is present in granted queue).
- Thread2 waits for SW lock (since its m_waiting_for has not been
updated yet!).
- SW lock is not granted because there is pending SNW lock from thread1.
Therefore deadlock should exist [sic!].
To avoid detection of such false deadlocks we need to check the "actual"
status of the ticket being waited for, before analyzing its blockers.
We do this by checking the wait status of the context which is waiting
for it. To avoid races this has to be done under protection of
MDL_lock::m_rwlock lock.
*/
if (src_ctx->m_wait.get_status() != MDL_wait::WS_EMPTY) {
result = false;
goto end;
}
/*
To avoid visiting nodes which were already marked as victims of
deadlock detection (or whose requests were already satisfied) we
enter the node only after peeking at its wait status.
This is necessary to avoid active waiting in a situation
when previous searches for a deadlock already selected the
node we're about to enter as a victim (see the comment
in MDL_context::find_deadlock() for explanation why several searches
can be performed for the same wait).
There is no guarantee that the node isn't chosen a victim while we
are visiting it but this is OK: in the worst case we might do some
extra work and one more context might be chosen as a victim.
*/
if (gvisitor->enter_node(src_ctx)) goto end;
/*
We do a breadth-first search first -- that is, inspect all
edges of the current node, and only then follow up to the next
node. In workloads that involve wait-for graph loops this
has proven to be a more efficient strategy [citation missing].
*/
while ((ticket = granted_it++)) {
/* Filter out edges that point to the same node. */
if (ticket->get_ctx() != src_ctx &&
ticket->is_incompatible_when_granted(waiting_ticket->get_type()) &&
gvisitor->inspect_edge(ticket->get_ctx())) {
goto end_leave_node;
}
}
while ((ticket = waiting_it++)) {
/* Filter out edges that point to the same node. */
if (ticket->get_ctx() != src_ctx &&
ticket->is_incompatible_when_waiting(waiting_ticket->get_type()) &&
gvisitor->inspect_edge(ticket->get_ctx())) {
goto end_leave_node;
}
}
/* Recurse and inspect all adjacent nodes. */
granted_it.rewind();
while ((ticket = granted_it++)) {
if (ticket->get_ctx() != src_ctx &&
ticket->is_incompatible_when_granted(waiting_ticket->get_type()) &&
ticket->get_ctx()->visit_subgraph(gvisitor)) {
goto end_leave_node;
}
}
waiting_it.rewind();
while ((ticket = waiting_it++)) {
if (ticket->get_ctx() != src_ctx &&
ticket->is_incompatible_when_waiting(waiting_ticket->get_type()) &&
ticket->get_ctx()->visit_subgraph(gvisitor)) {
goto end_leave_node;
}
}
result = false;
end_leave_node:
gvisitor->leave_node(src_ctx);
end:
mysql_prlock_unlock(&m_rwlock);
return result;
}
/**
Traverse a portion of wait-for graph which is reachable
through the edge represented by this ticket and search
for deadlocks.
@retval true A deadlock is found. A pointer to deadlock
victim is saved in the visitor.
@retval false
*/
bool MDL_ticket::accept_visitor(MDL_wait_for_graph_visitor *gvisitor) {
return m_lock->visit_subgraph(this, gvisitor);
}
/**
A fragment of recursive traversal of the wait-for graph of
MDL contexts in the server in search for deadlocks.
Assume this MDL context is a node in the wait-for graph,
and direct the visitor to all adjacent nodes. As long
as the starting node is remembered in the visitor, a
deadlock is found when the same node is visited twice.
One MDL context is connected to another in the wait-for
graph if it waits on a resource that is held by the other
context.
@retval true A deadlock is found. A pointer to deadlock
victim is saved in the visitor.
@retval false
*/
bool MDL_context::visit_subgraph(MDL_wait_for_graph_visitor *gvisitor) {
bool result = false;
mysql_prlock_rdlock(&m_LOCK_waiting_for);
if (m_waiting_for) result = m_waiting_for->accept_visitor(gvisitor);
mysql_prlock_unlock(&m_LOCK_waiting_for);
return result;
}
/**
Try to find a deadlock. This function produces no errors.
@note If during deadlock resolution context which performs deadlock
detection is chosen as a victim it will be informed about the
fact by setting VICTIM status to its wait slot.
*/
void MDL_context::find_deadlock() {
while (true) {
/*
The fact that we use fresh instance of gvisitor for each
search performed by find_deadlock() below is important,
the code responsible for victim selection relies on this.
*/
Deadlock_detection_visitor dvisitor(this);
MDL_context *victim;
if (!visit_subgraph(&dvisitor)) {
/* No deadlocks are found! */
break;
}
victim = dvisitor.get_victim();
/*
Failure to change status of the victim is OK as it means
that the victim has received some other message and is
about to stop its waiting/to break deadlock loop.
Even when the initiator of the deadlock search is
chosen the victim, we need to set the respective wait
result in order to "close" it for any attempt to
schedule the request.
This is needed to avoid a possible race during
cleanup in case when the lock request on which the
context was waiting is concurrently satisfied.
*/
(void)victim->m_wait.set_status(MDL_wait::VICTIM);
victim->unlock_deadlock_victim();
if (victim == this) break;
/*
After adding a new edge to the waiting graph we found that it
creates a loop (i.e. there is a deadlock). We decided to destroy
this loop by removing an edge, but not the one that we added.
Since this doesn't guarantee that all loops created by addition
of the new edge are destroyed, we have to repeat the search.
*/
}
}
/**
Release lock.
@param duration Lock duration.
@param ticket Ticket for lock to be released.
*/
void MDL_context::release_lock(enum_mdl_duration duration, MDL_ticket *ticket) {
MDL_lock *lock = ticket->m_lock;
MDL_key key_for_hton;
DBUG_TRACE;
DBUG_PRINT("enter", ("db=%s name=%s", lock->key.db_name(), lock->key.name()));
assert(this == ticket->get_ctx());
mysql_mutex_assert_not_owner(&LOCK_open);
// Remove ticket from the Ticket_store before actually releasing the lock,
// so this removal process can safely reference MDL_lock::m_key in cases
// when Ticket_store uses hash-based secondary index.
m_ticket_store.remove(duration, ticket);
/*
If lock we are about to release requires post-release notification
of SEs, we need to save its MDL_key on stack. This is necessary to
be able to pass this key to SEs after corresponding MDL_lock object
might be freed as result of lock release.
*/
if (ticket->m_hton_notified) key_for_hton.mdl_key_init(&lock->key);
if (ticket->m_is_fast_path) {
/*
We are releasing ticket which represents lock request which was
satisfied using "fast path". We can use "fast path" release
algorithm of release for it as well.
*/
MDL_lock::fast_path_state_t unobtrusive_lock_increment =
lock->get_unobtrusive_lock_increment(ticket->get_type());
bool is_singleton = mdl_locks.is_lock_object_singleton(&lock->key);
/* We should not have "fast path" tickets for "obtrusive" lock types. */
assert(unobtrusive_lock_increment != 0);
/*
We need decrement part of m_fast_path_state which holds number of
acquired "fast path" locks of this type. This needs to be done
by atomic compare-and-swap.
The same atomic compare-and-swap needs to check:
*) If HAS_OBSTRUSIVE flag is set. In this case we need to acquire
MDL_lock::m_rwlock before changing m_fast_path_state. This is
needed to enforce invariant [INV1] and also because we might
have to atomically wake-up some waiters for our "unobtrusive"
lock to go away.
*) If we are about to release last "fast path" lock and there
are no "slow path" locks. In this case we need to count
MDL_lock object as unused and maybe even delete some
unused MDL_lock objects eventually.
Similarly to the case with "fast path" acquisition it is OK to
perform ordinary read of MDL_lock::m_fast_path_state as correctness
of value returned by it will be validated by atomic compare-and-swap.
Again, in theory, this algorithm will work correctly if the read will
return random values.
*/
MDL_lock::fast_path_state_t old_state = lock->m_fast_path_state;
bool last_use;
do {
if (old_state & MDL_lock::HAS_OBTRUSIVE) {
mysql_prlock_wrlock(&lock->m_rwlock);
/*
It is possible that obtrusive lock has gone away since we have
read m_fast_path_state value. This means that there is possibility
that there are no "slow path" locks (HAS_SLOW_PATH is not set) and
we are about to release last "fast path" lock. In this case MDL_lock
will become unused and needs to be counted as such eventually.
*/
last_use = (lock->fast_path_state_add(-unobtrusive_lock_increment) ==
unobtrusive_lock_increment);
/*
There might be some lock requests waiting for ticket being released
to go away. Since this is "fast path" ticket it represents
"unobtrusive" type of lock. In this case if there are any waiters
for it there should be "obtrusive" type of request among them.
*/
if (lock->m_obtrusive_locks_granted_waiting_count)
lock->reschedule_waiters();
mysql_prlock_unlock(&lock->m_rwlock);
goto end_fast_path;
}
/*
If there are no "slow path" locks (HAS_SLOW_PATH is not set) and
we are about to release last "fast path" lock - MDL_lock object
will become unused and needs to be counted as such.
*/
last_use = (old_state == unobtrusive_lock_increment);
} while (!lock->fast_path_state_cas(
&old_state, old_state - unobtrusive_lock_increment));
end_fast_path:
/* Don't count singleton MDL_lock objects as unused. */
if (last_use && !is_singleton) mdl_locks.lock_object_unused(this, m_pins);
} else {
/*
Lock request represented by ticket was acquired using "slow path"
or ticket was materialized later. We need to use "slow path" release.
*/
lock->remove_ticket(this, m_pins, &MDL_lock::m_granted, ticket);
}
if (ticket->m_hton_notified) {
mysql_mdl_set_status(ticket->m_psi, MDL_ticket::POST_RELEASE_NOTIFY);
m_owner->notify_hton_post_release_exclusive(&key_for_hton);
}
MDL_ticket::destroy(ticket);
}
/**
Release lock with explicit duration.
@param ticket Ticket for lock to be released.
*/
void MDL_context::release_lock(MDL_ticket *ticket) {
assert(ticket->m_duration == MDL_EXPLICIT);
release_lock(MDL_EXPLICIT, ticket);
}
/**
Release all locks associated with the context. If the sentinel
is not NULL, do not release locks stored in the list after and
including the sentinel.
Statement and transactional locks are added to the beginning of
the corresponding lists, i.e. stored in reverse temporal order.
This allows to employ this function to:
- back off in case of a lock conflict.
- release all locks in the end of a statement or transaction
- rollback to a savepoint.
*/
void MDL_context::release_locks_stored_before(enum_mdl_duration duration,
MDL_ticket *sentinel) {
DBUG_TRACE;
MDL_ticket *ticket;
MDL_ticket_store::List_iterator it = m_ticket_store.list_iterator(duration);
if (m_ticket_store.is_empty(duration)) {
return;
}
while ((ticket = it++) && ticket != sentinel) {
DBUG_PRINT("info", ("found lock to release ticket=%p", ticket));
release_lock(duration, ticket);
}
}
/**
Release all explicit locks in the context which correspond to the
same name/object as this lock request.
@param name One of the locks for the name/object for which all
locks should be released.
*/
void MDL_context::release_all_locks_for_name(MDL_ticket *name) {
/* Use MDL_ticket::m_lock to identify other locks for the same object. */
MDL_lock *lock = name->m_lock;
/* Remove matching lock tickets from the context. */
MDL_ticket *ticket;
MDL_ticket_store::List_iterator it_ticket =
m_ticket_store.list_iterator(MDL_EXPLICIT);
while ((ticket = it_ticket++)) {
assert(ticket->m_lock);
if (ticket->m_lock == lock) release_lock(MDL_EXPLICIT, ticket);
}
}
/**
Release all explicit locks in the context for which the release()
method of the provided visitor evalates to true.
@param visitor Object to ask if the lock should be released.
*/
void MDL_context::release_locks(MDL_release_locks_visitor *visitor) {
/* Remove matching lock tickets from the context. */
MDL_ticket *ticket;
MDL_ticket_store::List_iterator it_ticket =
m_ticket_store.list_iterator(MDL_EXPLICIT);
while ((ticket = it_ticket++)) {
assert(ticket->m_lock);
if (visitor->release(ticket)) release_lock(MDL_EXPLICIT, ticket);
}
}
/**
Downgrade an EXCLUSIVE or SHARED_NO_WRITE lock to shared metadata lock.
@param new_type Type of lock to which exclusive lock should be downgraded.
*/
void MDL_ticket::downgrade_lock(enum_mdl_type new_type) {
bool new_type_is_unobtrusive;
mysql_mutex_assert_not_owner(&LOCK_open);
assert(m_lock->m_strategy->legal_type[new_type]);
/*
Do nothing if already downgraded. Used when we FLUSH TABLE under
LOCK TABLES and a table is listed twice in LOCK TABLES list.
Note that this code might even try to "downgrade" a weak lock
(e.g. SW) to a stronger one (e.g SNRW). So we can't even assert
here that target lock is weaker than existing lock.
*/
if (m_type == new_type || !has_stronger_or_equal_type(new_type)) return;
/* Only allow downgrade from EXCLUSIVE and SHARED_NO_WRITE. */
assert(m_type == MDL_EXCLUSIVE || m_type == MDL_SHARED_NO_WRITE);
/* Below we assume that we always downgrade "obtrusive" locks. */
assert(m_lock->is_obtrusive_lock(m_type));
new_type_is_unobtrusive = !m_lock->is_obtrusive_lock(new_type);
mysql_prlock_wrlock(&m_lock->m_rwlock);
/*
To update state of MDL_lock object correctly we need to temporarily
exclude ticket from the granted queue and then include it back.
Since we downgrade only "obtrusive" locks we can always assume that the
ticket for the lock being downgraded is a "slow path" ticket.
If we are downgrading to non-"obtrusive" lock we also should decrement
counter of waiting and granted "obtrusive" locks.
*/
m_lock->m_granted.remove_ticket(this);
if (new_type_is_unobtrusive) {
if ((--m_lock->m_obtrusive_locks_granted_waiting_count) == 0) {
/*
We are downgrading the last "obtrusive" lock. So we need to clear
HAS_OBTRUSIVE flag.
Note that it doesn't matter that we do this before including ticket
to MDL_lock::m_granted list. Threads requesting "obtrusive" locks
won't see this until MDL_lock::m_rwlock is released. And threads
requesting "unobtrusive" locks don't care about this ticket.
*/
MDL_lock::fast_path_state_t old_state = m_lock->m_fast_path_state;
while (!m_lock->fast_path_state_cas(
&old_state, old_state & ~MDL_lock::HAS_OBTRUSIVE)) {
}
}
}
m_type = new_type;
mysql_mdl_set_type(m_psi, new_type);
m_lock->m_granted.add_ticket(this);
m_lock->reschedule_waiters();
mysql_prlock_unlock(&m_lock->m_rwlock);
/*
When we downgrade X lock for which SEs were notified about lock
acquisition we treat situation in the same way as lock release
(from SEs notification point of view).
*/
if (m_hton_notified) {
mysql_mdl_set_status(m_psi, MDL_ticket::POST_RELEASE_NOTIFY);
m_ctx->get_owner()->notify_hton_post_release_exclusive(&m_lock->key);
m_hton_notified = false;
mysql_mdl_set_status(m_psi, MDL_ticket::GRANTED);
}
}
/**
Auxiliary function which allows to check if we have some kind of lock on
a object. Returns true if we have a lock of an equal to given or stronger
type.
@param mdl_key Key to check for ownership
@param mdl_type Lock type. Pass in the weakest type to find
out if there is at least some lock.
@return TRUE if current context contains satisfied lock for the object,
FALSE otherwise.
*/
bool MDL_context::owns_equal_or_stronger_lock(const MDL_key *mdl_key,
enum_mdl_type mdl_type) {
MDL_request mdl_request;
enum_mdl_duration not_used;
/* We don't care about exact duration of lock here. */
MDL_REQUEST_INIT_BY_KEY(&mdl_request, mdl_key, mdl_type, MDL_TRANSACTION);
MDL_ticket *ticket = find_ticket(&mdl_request, ¬_used);
assert(ticket == nullptr || ticket->m_lock);
return ticket;
}
/**
Auxiliary function which allows to check if we have some kind of lock on
a object. Returns TRUE if we have a lock of an equal to given or stronger
type.
@param mdl_namespace Id of object namespace
@param db Name of the database
@param name Name of the object
@param mdl_type Lock type. Pass in the weakest type to find
out if there is at least some lock.
@return true if current context contains satisfied lock for the object,
false otherwise.
*/
bool MDL_context::owns_equal_or_stronger_lock(
MDL_key::enum_mdl_namespace mdl_namespace, const char *db, const char *name,
enum_mdl_type mdl_type) {
MDL_request mdl_request;
enum_mdl_duration not_used;
/* We don't care about exact duration of lock here. */
MDL_REQUEST_INIT(&mdl_request, mdl_namespace, db, name, mdl_type,
MDL_TRANSACTION);
MDL_ticket *ticket = find_ticket(&mdl_request, ¬_used);
assert(ticket == nullptr || ticket->m_lock);
return ticket;
}
/**
Find the first context which owns the lock and inspect it by
calling MDL_context_visitor::visit_context() method.
@return True in case error. False otherwise. There
is no guarantee that owner was found in either case.
@note This method only works properly for locks which were
acquired using "slow" path.
*/
bool MDL_context::find_lock_owner(const MDL_key *mdl_key,
MDL_context_visitor *visitor) {
MDL_lock *lock = nullptr;
MDL_context *owner;
bool pinned;
if (fix_pins()) return true;
retry:
if ((lock = mdl_locks.find(m_pins, mdl_key, &pinned)) == MY_LF_ERRPTR)
return true;
/* No MDL_lock object, no owner, nothing to visit. */
if (lock == nullptr) return false;
mysql_prlock_rdlock(&lock->m_rwlock);
if (lock->m_fast_path_state & MDL_lock::IS_DESTROYED) {
mysql_prlock_unlock(&lock->m_rwlock);
if (pinned) lf_hash_search_unpin(m_pins);
DEBUG_SYNC(get_thd(), "mdl_find_lock_owner_is_destroyed");
goto retry;
}
if (pinned) lf_hash_search_unpin(m_pins);
if ((owner = lock->get_lock_owner())) visitor->visit_context(owner);
mysql_prlock_unlock(&lock->m_rwlock);
return false;
}
/**
Check if we have any pending locks which conflict with existing shared lock.
@pre The ticket must match an acquired lock.
@return true if there is a conflicting lock request, false otherwise.
*/
bool MDL_ticket::has_pending_conflicting_lock() const {
return m_lock->has_pending_conflicting_lock(m_type);
}
/** Return a key identifying this lock. */
const MDL_key *MDL_ticket::get_key() const { return &m_lock->key; }
/**
Releases metadata locks that were acquired after a specific savepoint.
@note Used to release tickets acquired during a savepoint unit.
@note It's safe to iterate and unlock any locks after taken after this
savepoint because other statements that take other special locks
cause a implicit commit (ie LOCK TABLES).
*/
void MDL_context::rollback_to_savepoint(const MDL_savepoint &mdl_savepoint) {
DBUG_TRACE;
/* If savepoint is NULL, it is from the start of the transaction. */
release_locks_stored_before(MDL_STATEMENT, mdl_savepoint.m_stmt_ticket);
release_locks_stored_before(MDL_TRANSACTION, mdl_savepoint.m_trans_ticket);
}
/**
Release locks acquired by normal statements (SELECT, UPDATE,
DELETE, etc) in the course of a transaction. Do not release
HANDLER locks, if there are any.
This method is used at the end of a transaction, in
implementation of COMMIT (implicit or explicit) and ROLLBACK.
*/
void MDL_context::release_transactional_locks() {
DBUG_TRACE;
release_locks_stored_before(MDL_STATEMENT, nullptr);
release_locks_stored_before(MDL_TRANSACTION, nullptr);
}
void MDL_context::release_statement_locks() {
DBUG_TRACE;
release_locks_stored_before(MDL_STATEMENT, nullptr);
}
/**
Does this savepoint have this lock?
@retval true The ticket is older than the savepoint or
is an LT, HA or GLR ticket. Thus it belongs
to the savepoint or has explicit duration.
@retval false The ticket is newer than the savepoint.
and is not an LT, HA or GLR ticket.
*/
bool MDL_context::has_lock(const MDL_savepoint &mdl_savepoint,
MDL_ticket *mdl_ticket) {
MDL_ticket *ticket;
/* Start from the beginning, most likely mdl_ticket's been just acquired. */
MDL_ticket_store::List_iterator s_it =
m_ticket_store.list_iterator(MDL_STATEMENT);
MDL_ticket_store::List_iterator t_it =
m_ticket_store.list_iterator(MDL_TRANSACTION);
while ((ticket = s_it++) && ticket != mdl_savepoint.m_stmt_ticket) {
if (ticket == mdl_ticket) return false;
}
while ((ticket = t_it++) && ticket != mdl_savepoint.m_trans_ticket) {
if (ticket == mdl_ticket) return false;
}
return true;
}
/**
Does this context have an lock of the given namespace?
@retval true At least one lock of given namespace held
@retval false No locks of the given namespace held
*/
bool MDL_context::has_locks(MDL_key::enum_mdl_namespace mdl_namespace) const {
MDL_ticket *ticket;
for (int i = 0; i < MDL_DURATION_END; i++) {
enum_mdl_duration duration = static_cast<enum_mdl_duration>(i);
MDL_ticket_store::List_iterator it = m_ticket_store.list_iterator(duration);
while ((ticket = it++)) {
if (ticket->get_key()->mdl_namespace() == mdl_namespace) return true;
}
}
return false;
}
/**
Do we hold any locks which are possibly being waited
for by another MDL_context?
@retval true A lock being 'waited_for' was found.
@retval false No one waits for the lock(s) we hold.
@note Should only be called from the thread which
owns the MDL_context
*/
bool MDL_context::has_locks_waited_for() const {
MDL_ticket *ticket;
for (int i = 0; i < MDL_DURATION_END; i++) {
const enum_mdl_duration duration = static_cast<enum_mdl_duration>(i);
MDL_ticket_store::List_iterator it = m_ticket_store.list_iterator(duration);
while ((ticket = it++)) {
MDL_lock *const lock = ticket->m_lock;
mysql_prlock_rdlock(&lock->m_rwlock);
const bool has_waiters = !lock->m_waiting.is_empty();
mysql_prlock_unlock(&lock->m_rwlock);
if (!has_waiters) return true;
}
}
return false;
}
/**
Change lock duration for transactional lock.
@param mdl_ticket Ticket representing lock.
@param duration Lock duration to be set.
@note This method only supports changing duration of
transactional lock to some other duration.
*/
void MDL_context::set_lock_duration(MDL_ticket *mdl_ticket,
enum_mdl_duration duration) {
assert(mdl_ticket->m_duration == MDL_TRANSACTION &&
duration != MDL_TRANSACTION);
m_ticket_store.remove(MDL_TRANSACTION, mdl_ticket);
m_ticket_store.push_front(duration, mdl_ticket);
#ifndef NDEBUG
mdl_ticket->m_duration = duration;
#endif
/*
Table performance_schema.metadata_locks
exposes the DURATION column, update it.
*/
if (mdl_ticket->m_psi) {
mysql_mdl_set_duration(mdl_ticket->m_psi, duration);
}
}
/**
Set explicit duration for all locks in the context.
*/
void MDL_context::set_explicit_duration_for_all_locks() {
m_ticket_store.move_all_to_explicit_duration();
}
/**
Set transactional duration for all locks in the context.
*/
void MDL_context::set_transaction_duration_for_all_locks() {
m_ticket_store.move_explicit_to_transaction_duration();
}
size_t MDL_ticket_store::Hash::operator()(const MDL_key *k) const {
return static_cast<size_t>(murmur3_32(k->ptr(), k->length(), 0));
}
MDL_ticket_store::MDL_ticket_handle MDL_ticket_store::find_in_lists(
const MDL_request &req) const {
for (int i = 0; i < MDL_DURATION_END; i++) {
int di = (req.duration + i) % MDL_DURATION_END;
List_iterator it(m_durations[di].m_ticket_list);
for (MDL_ticket *ticket = it++; ticket != nullptr; ticket = it++) {
if (req.key.is_equal(ticket->get_key()) &&
ticket->has_stronger_or_equal_type(req.type)) {
return {ticket, static_cast<enum_mdl_duration>(di)};
}
}
}
return {nullptr, MDL_DURATION_END};
}
MDL_ticket_store::MDL_ticket_handle MDL_ticket_store::find_in_hash(
const MDL_request &req) const {
auto foundrng = m_map->equal_range(&req.key);
const MDL_ticket_handle *found_handle = nullptr;
// VS tags std::find_if with 'nodiscard'.
(void)std::find_if(foundrng.first, foundrng.second,
[&](const Ticket_map::value_type &vt) {
auto &th = vt.second;
if (!th.m_ticket->has_stronger_or_equal_type(req.type)) {
return false;
}
found_handle = &th;
return (th.m_dur == req.duration);
});
if (found_handle != nullptr) {
return *found_handle;
}
return {nullptr, MDL_DURATION_END};
}
bool MDL_ticket_store::is_empty() const {
return (std::all_of(
std::begin(m_durations), std::end(m_durations), [](const Duration &d) {
assert(!d.m_ticket_list.is_empty() || d.m_mat_front == nullptr);
return d.m_ticket_list.is_empty();
}));
}
bool MDL_ticket_store::is_empty(int di) const {
return m_durations[di].m_ticket_list.is_empty();
}
MDL_ticket *MDL_ticket_store::front(int di) {
return m_durations[di].m_ticket_list.front();
}
void MDL_ticket_store::push_front(enum_mdl_duration dur, MDL_ticket *ticket) {
++m_count;
m_durations[dur].m_ticket_list.push_front(ticket);
/*
Note that we do not update m_durations[dur].m_mat_front here. That
is ok, since it is only to be used as an optimization for
MDL_context::materialize_fast_path_locks(). So if the ticket being
added is already materialized it does not break an invariant, and
m_mat_front will be updated the next time
MDL_context::materialize_fast_path_locks() runs.
*/
if (m_count < THRESHOLD) {
return;
}
if (m_count == THRESHOLD) {
// If this is the first time we cross the threshold, the map must
// be allocated
if (m_map == nullptr) {
m_map.reset(new Ticket_map{INITIAL_BUCKET_COUNT, Hash{}, Key_equal{}});
}
// In any event, it should now be empty
assert(m_map->empty());
/*
When the THRESHOLD value is reached, the unordered map must be
populated with all the tickets added before reaching the
threshold.
*/
for_each_ticket_in_ticket_lists(
[this](MDL_ticket *t, enum_mdl_duration da) {
m_map->emplace(t->get_key(), MDL_ticket_handle{t, da});
});
assert(m_map->size() == m_count);
return;
}
m_map->emplace(ticket->get_key(), MDL_ticket_handle{ticket, dur});
assert(m_map->size() == m_count);
}
void MDL_ticket_store::remove(enum_mdl_duration dur, MDL_ticket *ticket) {
--m_count;
m_durations[dur].m_ticket_list.remove(ticket);
if (m_durations[dur].m_mat_front == ticket) {
m_durations[dur].m_mat_front = ticket->next_in_context;
}
if (m_count < THRESHOLD - 1) {
assert(m_map == nullptr || m_map->empty());
return;
}
assert(m_map != nullptr && m_map->size() == m_count + 1);
if (m_count == THRESHOLD - 1) {
// This remove dipped us below threshold
m_map->clear();
return;
}
assert(m_count >= THRESHOLD);
auto foundrng = m_map->equal_range(ticket->get_key());
auto foundit = std::find_if(
foundrng.first, foundrng.second, [&](const Ticket_map::value_type &vt) {
auto &th = vt.second;
assert(th.m_ticket != ticket || th.m_dur == dur);
return (th.m_ticket == ticket);
});
assert(foundit != foundrng.second);
if (foundit != foundrng.second) {
m_map->erase(foundit);
}
assert(m_map->size() == m_count);
}
void MDL_ticket_store::move_all_to_explicit_duration() {
int i;
MDL_ticket *ticket;
/*
It is assumed that at this point all the locks in the context are
materialized. So the next call to MDL_context::materialize_fast_path_locks()
will not be considering these locks. m_mat_front is valid for the current
list of tickets with explicit duration and if we had added all the tickets
which previously had transaction duration at the front, it would still be
valid. But since we are using the swap-trick below, all the previously
transactional tickets end up at the tail end of the list, and the order of
the already explicit tickets is reversed when they are moved (remove pops
from the front and push_front adds to the front). So unless all the tickets
were already materialized we're guaranteed that m_mat_front is wrong after
the swapping and moving. Hence we set m_mat_front of tickets with explicit
duration to null so that the next call to
MDL_context::materialize_fast_path_locks() will set it appropriately.
*/
m_durations[MDL_EXPLICIT].m_mat_front = nullptr;
/*
In the most common case when this function is called list
of transactional locks is bigger than list of locks with
explicit duration. So we start by swapping these two lists
and then move elements from new list of transactional
locks and list of statement locks to list of locks with
explicit duration.
*/
m_durations[MDL_EXPLICIT].m_ticket_list.swap(
m_durations[MDL_TRANSACTION].m_ticket_list);
for (i = 0; i < MDL_EXPLICIT; i++) {
m_durations[i].m_mat_front = nullptr;
List_iterator it_ticket(m_durations[i].m_ticket_list);
while ((ticket = it_ticket++)) {
m_durations[i].m_ticket_list.remove(ticket);
m_durations[MDL_EXPLICIT].m_ticket_list.push_front(ticket);
}
}
#ifndef NDEBUG
List_iterator exp_it(m_durations[MDL_EXPLICIT].m_ticket_list);
while ((ticket = exp_it++)) {
ticket->set_duration(MDL_EXPLICIT);
}
#endif
// Must also change duration in map
if (m_map != nullptr) {
for (auto &p : *m_map) {
p.second.m_dur = MDL_EXPLICIT;
}
}
}
void MDL_ticket_store::move_explicit_to_transaction_duration() {
MDL_ticket *ticket;
/*
In the most common case when this function is called list
of explicit locks is bigger than two other lists (in fact,
list of statement locks is always empty). So we start by
swapping list of explicit and transactional locks and then
move contents of new list of explicit locks to list of
locks with transactional duration.
*/
assert(m_durations[MDL_STATEMENT].m_ticket_list.is_empty());
assert(m_durations[MDL_STATEMENT].m_mat_front == nullptr);
m_durations[MDL_TRANSACTION].m_ticket_list.swap(
m_durations[MDL_EXPLICIT].m_ticket_list);
m_durations[MDL_EXPLICIT].m_mat_front = nullptr;
List_iterator it_ticket(m_durations[MDL_EXPLICIT].m_ticket_list);
while ((ticket = it_ticket++)) {
m_durations[MDL_EXPLICIT].m_ticket_list.remove(ticket);
m_durations[MDL_TRANSACTION].m_ticket_list.push_front(ticket);
}
/*
Note that we do not update
m_durations[MDL_TRANSACTION].m_mat_front here. That is ok, since
it is only to be used as an optimization for
MDL_context::materialize_fast_path_locks(). So if the tickets
being added are already materialized it does not break an
invariant, and m_mat_front will be updated the next time
MDL_context::materialize_fast_path_locks() runs.
*/
#ifndef NDEBUG
List_iterator trans_it(m_durations[MDL_TRANSACTION].m_ticket_list);
while ((ticket = trans_it++)) {
ticket->set_duration(MDL_TRANSACTION);
}
#endif
// Must also change duration in map
if (m_map != nullptr) {
for (auto &p : *m_map) {
p.second.m_dur = MDL_TRANSACTION;
}
}
}
MDL_ticket_store::MDL_ticket_handle MDL_ticket_store::find(
const MDL_request &req) const {
#ifndef NDEBUG
if (m_count >= THRESHOLD) {
MDL_ticket_handle list_h = find_in_lists(req);
MDL_ticket_handle hash_h = find_in_hash(req);
assert(equivalent(list_h.m_ticket, hash_h.m_ticket, req.duration));
}
#endif /*! NDEBUG */
return (m_map == nullptr || m_count < THRESHOLD) ? find_in_lists(req)
: find_in_hash(req);
}
void MDL_ticket_store::set_materialized() {
for (auto &d : m_durations) {
d.m_mat_front = d.m_ticket_list.front();
}
}
MDL_ticket *MDL_ticket_store::materialized_front(int di) {
return m_durations[di].m_mat_front;
}
|