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
|
/* Copyright (c) 2011, 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 */
#ifndef RPL_GTID_H_INCLUDED
#define RPL_GTID_H_INCLUDED
#include <atomic>
#include <cinttypes>
#include <list>
#include <mutex> // std::adopt_lock_t
#include "libbinlogevents/include/compression/base.h" // binary_log::transaction::compression::type
#include "libbinlogevents/include/gtids/global.h"
#include "libbinlogevents/include/uuid.h"
#include "map_helpers.h"
#include "my_dbug.h"
#include "my_thread_local.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_rwlock.h" // mysql_rwlock_t
#include "prealloced_array.h" // Prealloced_array
#include "sql/rpl_reporting.h" // MAX_SLAVE_ERRMSG
#include "template_utils.h"
class Table_ref;
class THD;
/**
Report an error from code that can be linked into either the server
or mysqlbinlog. There is no common error reporting mechanism, so we
have to duplicate the error message (write it out in the source file
for mysqlbinlog, write it in share/messages_to_clients.txt for the
server).
@param MYSQLBINLOG_ERROR arguments to mysqlbinlog's 'error'
function, including the function call parentheses
@param SERVER_ERROR arguments to my_error, including the function
call parentheses.
*/
#ifndef MYSQL_SERVER
#define BINLOG_ERROR(MYSQLBINLOG_ERROR, SERVER_ERROR) error MYSQLBINLOG_ERROR
#else
#define BINLOG_ERROR(MYSQLBINLOG_ERROR, SERVER_ERROR) my_error SERVER_ERROR
#endif
extern PSI_memory_key key_memory_Gtid_set_to_string;
extern PSI_memory_key key_memory_Owned_gtids_to_string;
extern PSI_memory_key key_memory_Gtid_state_to_string;
extern PSI_memory_key key_memory_Gtid_cache_to_string;
extern PSI_memory_key key_memory_Gtid_set_Interval_chunk;
extern PSI_memory_key key_memory_Gtid_state_group_commit_sidno;
/**
This macro is used to check that the given character, pointed to by the
character pointer, is a space or not.
*/
#define SKIP_WHITESPACE() \
while (my_isspace(&my_charset_utf8mb3_general_ci, *s)) s++
/*
This macro must be used to filter out parts of the code that
is not used now but may be useful in future. In other words,
we want to keep such code until we make up our minds on whether
it should be removed or not.
*/
#undef NON_DISABLED_GTID
/*
This macro must be used to filter out parts of the code that
is not used now but we are not sure if there is a bug around
them. In other words, we want to keep such code until we have
time to investigate it.
*/
#undef NON_ERROR_GTID
#ifdef MYSQL_SERVER
class String;
class THD;
#endif // ifdef MYSQL_SERVER
/// Type of SIDNO (source ID number, first component of GTID)
typedef int rpl_sidno;
/// GNO, the second (numeric) component of a GTID, is an alias of
/// binary_log::gtids::gno_t
using rpl_gno = binary_log::gtids::gno_t;
typedef int64 rpl_binlog_pos;
/**
Generic return type for many functions that can succeed or fail.
This is used in conjunction with the macros below for functions where
the return status either indicates "success" or "failure". It
provides the following features:
- The macros can be used to conveniently propagate errors from
called functions back to the caller.
- If a function is expected to print an error using my_error before
it returns an error status, then the macros assert that my_error
has been called.
- Does a DBUG_PRINT before returning failure.
*/
enum enum_return_status {
/// The function completed successfully.
RETURN_STATUS_OK = 0,
/// The function completed with error but did not report it.
RETURN_STATUS_UNREPORTED_ERROR = 1,
/// The function completed with error and has called my_error.
RETURN_STATUS_REPORTED_ERROR = 2
};
/**
@def __CHECK_RETURN_STATUS
Lowest level macro used in the PROPAGATE_* and RETURN_* macros
below.
If NDEBUG is defined, does nothing. Otherwise, if STATUS is
RETURN_STATUS_OK, does nothing; otherwise, make a dbug printout and
(if ALLOW_UNREPORTED==0) assert that STATUS !=
RETURN_STATUS_UNREPORTED.
@param STATUS The status to return.
@param ACTION A text that describes what we are doing: either
"Returning" or "Propagating" (used in DBUG_PRINT macros)
@param STATUS_NAME The stringified version of the STATUS (used in
DBUG_PRINT macros).
@param ALLOW_UNREPORTED If false, the macro asserts that STATUS is
not RETURN_STATUS_UNREPORTED_ERROR.
*/
#ifdef NDEBUG
#define __CHECK_RETURN_STATUS(STATUS, ACTION, STATUS_NAME, ALLOW_UNREPORTED)
#else
extern void check_return_status(enum_return_status status, const char *action,
const char *status_name, int allow_unreported);
#define __CHECK_RETURN_STATUS(STATUS, ACTION, STATUS_NAME, ALLOW_UNREPORTED) \
check_return_status(STATUS, ACTION, STATUS_NAME, ALLOW_UNREPORTED);
#endif
/**
Low-level macro that checks if STATUS is RETURN_STATUS_OK; if it is
not, then RETURN_VALUE is returned.
@see __DO_RETURN_STATUS
*/
#define __PROPAGATE_ERROR(STATUS, RETURN_VALUE, ALLOW_UNREPORTED) \
do { \
enum_return_status __propagate_error_status = STATUS; \
if (__propagate_error_status != RETURN_STATUS_OK) { \
__CHECK_RETURN_STATUS(__propagate_error_status, "Propagating", #STATUS, \
ALLOW_UNREPORTED); \
return RETURN_VALUE; \
} \
} while (0)
/// Low-level macro that returns STATUS. @see __DO_RETURN_STATUS
#define __RETURN_STATUS(STATUS, ALLOW_UNREPORTED) \
do { \
enum_return_status __return_status_status = STATUS; \
__CHECK_RETURN_STATUS(__return_status_status, "Returning", #STATUS, \
ALLOW_UNREPORTED); \
return __return_status_status; \
} while (0)
/**
If STATUS (of type enum_return_status) returns RETURN_STATUS_OK,
does nothing; otherwise, does a DBUG_PRINT and returns STATUS.
*/
#define PROPAGATE_ERROR(STATUS) \
__PROPAGATE_ERROR(STATUS, __propagate_error_status, true)
/**
If STATUS (of type enum_return_status) returns RETURN_STATUS_OK,
does nothing; otherwise asserts that STATUS ==
RETURN_STATUS_REPORTED_ERROR, does a DBUG_PRINT, and returns STATUS.
*/
#define PROPAGATE_REPORTED_ERROR(STATUS) \
__PROPAGATE_ERROR(STATUS, __propagate_error_status, false)
/**
If STATUS (of type enum_return_status) returns RETURN_STATUS_OK,
does nothing; otherwise asserts that STATUS ==
RETURN_STATUS_REPORTED_ERROR, does a DBUG_PRINT, and returns 1.
*/
#define PROPAGATE_REPORTED_ERROR_INT(STATUS) __PROPAGATE_ERROR(STATUS, 1, false)
/**
If STATUS returns something else than RETURN_STATUS_OK, does a
DBUG_PRINT. Then, returns STATUS.
*/
#define RETURN_STATUS(STATUS) __RETURN_STATUS(STATUS, true)
/**
Asserts that STATUS is not RETURN_STATUS_UNREPORTED_ERROR. Then, if
STATUS is RETURN_STATUS_REPORTED_ERROR, does a DBUG_PRINT. Then,
returns STATUS.
*/
#define RETURN_REPORTED_STATUS(STATUS) __RETURN_STATUS(STATUS, false)
/// Returns RETURN_STATUS_OK.
#define RETURN_OK return RETURN_STATUS_OK
/// Does a DBUG_PRINT and returns RETURN_STATUS_REPORTED_ERROR.
#define RETURN_REPORTED_ERROR RETURN_STATUS(RETURN_STATUS_REPORTED_ERROR)
/// Does a DBUG_PRINT and returns RETURN_STATUS_UNREPORTED_ERROR.
#define RETURN_UNREPORTED_ERROR RETURN_STATUS(RETURN_STATUS_UNREPORTED_ERROR)
/**
enum to map the result of Uuid::parse to the above Macros
*/
inline enum_return_status map_macro_enum(int status) {
DBUG_TRACE;
if (status == 0)
RETURN_OK;
else
RETURN_UNREPORTED_ERROR;
}
/**
Possible values for ENFORCE_GTID_CONSISTENCY.
*/
enum enum_gtid_consistency_mode {
GTID_CONSISTENCY_MODE_OFF = 0,
GTID_CONSISTENCY_MODE_ON = 1,
GTID_CONSISTENCY_MODE_WARN = 2
};
/**
Strings holding the enumeration values for
gtid_consistency_mode_names. Use get_gtid_consistency_mode_string
instead of accessing this directly.
*/
extern const char *gtid_consistency_mode_names[];
/**
Current value for ENFORCE_GTID_CONSISTENCY.
Don't use this directly; use get_gtid_consistency_mode.
*/
extern ulong _gtid_consistency_mode;
/**
Return the current value of ENFORCE_GTID_CONSISTENCY.
Caller must hold global_sid_lock.rdlock.
*/
enum_gtid_consistency_mode get_gtid_consistency_mode();
/// Return the given GTID_CONSISTENCY_MODE as a string.
inline const char *get_gtid_consistency_mode_string(
enum_gtid_consistency_mode mode) {
return gtid_consistency_mode_names[(int)mode];
}
/**
Return the current value of ENFORCE_GTID_CONSISTENCY as a string.
Caller must hold global_sid_lock.rdlock.
*/
inline const char *get_gtid_consistency_mode_string() {
return get_gtid_consistency_mode_string(get_gtid_consistency_mode());
}
/// One-past-the-max value of GNO
const rpl_gno GNO_END = INT64_MAX;
/// If the GNO goes above the number, generate a warning.
const rpl_gno GNO_WARNING_THRESHOLD = (GNO_END / 100) * 99;
/// The length of MAX_GNO when printed in decimal.
const int MAX_GNO_TEXT_LENGTH = 19;
/// The maximal possible length of thread_id when printed in decimal.
const int MAX_THREAD_ID_TEXT_LENGTH = 19;
/**
Parse a GNO from a string.
@param s Pointer to the string. *s will advance to the end of the
parsed GNO, if a correct GNO is found.
@retval GNO if a correct GNO (i.e., 0 or positive number) was found.
@retval -1 otherwise.
*/
rpl_gno parse_gno(const char **s);
/**
Formats a GNO as a string.
@param s The buffer.
@param gno The GNO.
@return Length of the generated string.
*/
int format_gno(char *s, rpl_gno gno);
typedef binary_log::Uuid rpl_sid;
/**
This has the functionality of mysql_rwlock_t, with two differences:
1. It has additional operations to check if the read and/or write lock
is held at the moment.
2. It is wrapped in an object-oriented interface.
Note that the assertions do not check whether *this* thread has
taken the lock (that would be more complicated as it would require a
dynamic data structure). Luckily, it is still likely that the
assertions find bugs where a thread forgot to take a lock, because
most of the time most locks are only used by one thread at a time.
The assertions are no-ops when DBUG is off.
*/
class Checkable_rwlock {
public:
/// Initialize this Checkable_rwlock.
Checkable_rwlock(
#if defined(HAVE_PSI_INTERFACE)
PSI_rwlock_key psi_key [[maybe_unused]] = 0
#endif
) {
#ifndef NDEBUG
m_lock_state.store(0);
m_dbug_trace = true;
#else
m_is_write_lock = false;
#endif
#if defined(HAVE_PSI_INTERFACE)
mysql_rwlock_init(psi_key, &m_rwlock);
#else
mysql_rwlock_init(0, &m_rwlock);
#endif
}
/// Destroy this Checkable_lock.
~Checkable_rwlock() { mysql_rwlock_destroy(&m_rwlock); }
enum enum_lock_type { NO_LOCK, READ_LOCK, WRITE_LOCK, TRY_READ_LOCK };
/**
RAII class to acquire a lock for the duration of a block.
*/
class Guard {
Checkable_rwlock &m_lock;
enum_lock_type m_lock_type;
public:
/**
Create a guard, and optionally acquire a lock on it.
*/
Guard(Checkable_rwlock &lock, enum_lock_type lock_type)
: m_lock(lock), m_lock_type(NO_LOCK) {
DBUG_TRACE;
switch (lock_type) {
case READ_LOCK:
rdlock();
break;
case WRITE_LOCK:
wrlock();
break;
case TRY_READ_LOCK:
tryrdlock();
break;
case NO_LOCK:
break;
}
}
/**
Create a guard, assuming the caller already holds a lock on it.
*/
Guard(Checkable_rwlock &lock, enum_lock_type lock_type,
std::adopt_lock_t t [[maybe_unused]])
: m_lock(lock), m_lock_type(lock_type) {
DBUG_TRACE;
switch (lock_type) {
case READ_LOCK:
lock.assert_some_rdlock();
break;
case WRITE_LOCK:
lock.assert_some_wrlock();
break;
case TRY_READ_LOCK:
case NO_LOCK:
break;
}
}
/// Objects of this class should not be copied or moved.
Guard(Guard const ©) = delete;
Guard(Guard const &©) = delete;
/// Unlock on destruct.
~Guard() {
DBUG_TRACE;
unlock_if_locked();
}
/// Acquire the read lock.
void rdlock() {
DBUG_TRACE;
assert(m_lock_type == NO_LOCK);
m_lock.rdlock();
m_lock_type = READ_LOCK;
}
/// Acquire the write lock.
void wrlock() {
DBUG_TRACE;
assert(m_lock_type == NO_LOCK);
m_lock.wrlock();
m_lock_type = WRITE_LOCK;
}
/**
Try to acquire the write lock, and fail if it cannot be
immediately granted.
*/
int trywrlock() {
DBUG_TRACE;
assert(m_lock_type == NO_LOCK);
int ret = m_lock.trywrlock();
if (ret == 0) m_lock_type = WRITE_LOCK;
return ret;
}
/**
Try to acquire a read lock, and fail if it cannot be
immediately granted.
*/
int tryrdlock() {
DBUG_TRACE;
assert(m_lock_type == NO_LOCK);
int ret = m_lock.tryrdlock();
if (ret == 0) m_lock_type = READ_LOCK;
return ret;
}
/// Unlock the lock.
void unlock() {
DBUG_TRACE;
assert(m_lock_type != NO_LOCK);
m_lock.unlock();
}
/// Unlock the lock, if it was acquired by this guard.
void unlock_if_locked() {
DBUG_TRACE;
if (m_lock_type != NO_LOCK) unlock();
}
/// Return the underlying Checkable_rwlock object.
Checkable_rwlock &get_lock() const { return m_lock; }
/// Return true if this object is read locked.
bool is_rdlocked() const { return m_lock_type == READ_LOCK; }
/// Return true if this object is write locked.
bool is_wrlocked() const { return m_lock_type == WRITE_LOCK; }
/// Return true if this object is either read locked or write locked.
bool is_locked() const { return m_lock_type != NO_LOCK; }
};
/// Acquire the read lock.
inline void rdlock() {
mysql_rwlock_rdlock(&m_rwlock);
assert_no_wrlock();
#ifndef NDEBUG
if (m_dbug_trace) DBUG_PRINT("info", ("%p.rdlock()", this));
++m_lock_state;
#endif
}
/// Acquire the write lock.
inline void wrlock() {
mysql_rwlock_wrlock(&m_rwlock);
assert_no_lock();
#ifndef NDEBUG
if (m_dbug_trace) DBUG_PRINT("info", ("%p.wrlock()", this));
m_lock_state.store(-1);
#else
m_is_write_lock = true;
#endif
}
/// Release the lock (whether it is a write or read lock).
inline void unlock() {
assert_some_lock();
#ifndef NDEBUG
if (m_dbug_trace) DBUG_PRINT("info", ("%p.unlock()", this));
int val = m_lock_state.load();
if (val > 0)
--m_lock_state;
else if (val == -1)
m_lock_state.store(0);
else
assert(0);
#else
m_is_write_lock = false;
#endif
mysql_rwlock_unlock(&m_rwlock);
}
/**
Return true if the write lock is held. Must only be called by
threads that hold a lock.
*/
inline bool is_wrlock() {
assert_some_lock();
#ifndef NDEBUG
return get_state() == -1;
#else
return m_is_write_lock;
#endif
}
/**
Return 0 if the write lock is held, otherwise an error will be returned.
*/
inline int trywrlock() {
int ret = mysql_rwlock_trywrlock(&m_rwlock);
if (ret == 0) {
assert_no_lock();
#ifndef NDEBUG
if (m_dbug_trace) DBUG_PRINT("info", ("%p.wrlock()", this));
m_lock_state.store(-1);
#else
m_is_write_lock = true;
#endif
}
return ret;
}
/**
Return 0 if the read lock is held, otherwise an error will be returned.
*/
inline int tryrdlock() {
int ret = mysql_rwlock_tryrdlock(&m_rwlock);
if (ret == 0) {
assert_no_wrlock();
#ifndef NDEBUG
if (m_dbug_trace) DBUG_PRINT("info", ("%p.rdlock()", this));
++m_lock_state;
#endif
}
return ret;
}
/// Assert that some thread holds either the read or the write lock.
inline void assert_some_lock() const { assert(get_state() != 0); }
/// Assert that some thread holds the read lock.
inline void assert_some_rdlock() const { assert(get_state() > 0); }
/// Assert that some thread holds the write lock.
inline void assert_some_wrlock() const { assert(get_state() == -1); }
/// Assert that no thread holds the write lock.
inline void assert_no_wrlock() const { assert(get_state() >= 0); }
/// Assert that no thread holds the read lock.
inline void assert_no_rdlock() const { assert(get_state() <= 0); }
/// Assert that no thread holds read or write lock.
inline void assert_no_lock() const { assert(get_state() == 0); }
#ifndef NDEBUG
/// If enabled, print any lock/unlock operations to the DBUG trace.
bool m_dbug_trace;
private:
/**
The state of the lock:
0 - not locked
-1 - write locked
>0 - read locked by that many threads
*/
std::atomic<int32> m_lock_state;
/// Read lock_state atomically and return the value.
inline int32 get_state() const { return m_lock_state.load(); }
#else
private:
bool m_is_write_lock;
#endif
/// The rwlock.
mysql_rwlock_t m_rwlock;
};
/// Protects Gtid_state. See comment above gtid_state for details.
extern Checkable_rwlock *global_sid_lock;
/**
Class to access the value of @@global.gtid_mode in an efficient and
thread-safe manner.
*/
class Gtid_mode {
private:
std::atomic<int> m_atomic_mode;
public:
Gtid_mode() : m_atomic_mode(0) {}
/**
The sys_var framework needs a variable of type ulong to store the
value in. The sys_var framework takes the value from there, but
we copy it (in the methods of sys_var_gtid_mode) to the atomic
value Gtid_mode::mode, and use only that in all other places.
*/
static ulong sysvar_mode;
/// Possible values for @@global.gtid_mode.
enum value_type {
/**
New transactions are anonymous. Replicated transactions must be
anonymous; replicated GTID-transactions generate an error.
*/
OFF = 0,
DEFAULT = OFF,
/**
New transactions are anonyomus. Replicated transactions can be
either anonymous or GTID-transactions.
*/
OFF_PERMISSIVE = 1,
/**
New transactions are GTID-transactions. Replicated transactions
can be either anonymous or GTID-transactions.
*/
ON_PERMISSIVE = 2,
/**
New transactions are GTID-transactions. Replicated transactions
must be GTID-transactions; replicated anonymous transactions
generate an error.
*/
ON = 3
};
/**
Strings holding the enumeration values for gtid_mode. Use
Gtid_mode::get_string instead of accessing this directly.
*/
static const char *names[];
/**
Protects updates to @@global.gtid_mode.
SET @@global.gtid_mode will try to take the write lock. If the
lock is not granted immediately, SET will fail.
Thus, any other operation can block updates to
@@global.gtid_mode by acquiring the read lock.
*/
static Checkable_rwlock lock;
/**
Set a new value for @@global.gtid_mode.
This should only be called from Sys_var_gtid_mode::global_update
and gtid_server_init.
*/
void set(value_type value);
public:
/**
Return the current gtid_mode as an enumeration value.
*/
value_type get() const;
#ifndef NDEBUG
/**
Return the current gtid_mode as a string.
Used only for debugging. Non-debug code typically reads and acts
on the enum value before printing it. Then it is better to print
the enum value.
*/
const char *get_string() const;
#endif // ifndef NDEBUG
/**
Return the given string gtid_mode as an enumeration value.
@param s The string to decode.
@return A pair, where the first component indicates failure and
the second component is the GTID_MODE. Specifically, the first
component is false if the string is a valid GTID_MODE, and true if
it is not.
*/
static std::pair<bool, value_type> from_string(std::string s);
/// Return the given gtid_mode as a string.
static const char *to_string(value_type value);
};
std::ostream &operator<<(std::ostream &oss, Gtid_mode::value_type const &mode);
#ifndef NDEBUG
/**
Typically, code will print Gtid_mode only after reading and acting
on the enum value. Then it is better to print the enum value than to
read the shared resource again. Hence we enable this only in debug
mode, since it makes more sense to just get the string when doing a
debug printout.
*/
std::ostream &operator<<(std::ostream &oss, Gtid_mode const &mode);
#endif
/**
The one and only instance of Gtid_mode.
All access to @@global.gtid_mode should use this object.
*/
extern Gtid_mode global_gtid_mode;
/**
Represents a bidirectional map between SID and SIDNO.
SIDNOs are always numbers greater or equal to 1.
This data structure OPTIONALLY knows of a read-write lock that
protects the number of SIDNOs. The lock is provided by the invoker
of the constructor and it is generally the caller's responsibility
to acquire the read lock. If the lock is not NULL, access methods
assert that the caller already holds the read (or write) lock. If
the lock is not NULL and a method of this class grows the number of
SIDNOs, then the method temporarily upgrades this lock to a write
lock and then degrades it to a read lock again; there will be a
short period when the lock is not held at all.
*/
class Sid_map {
public:
/**
Create this Sid_map.
@param sid_lock Read-write lock that protects updates to the
number of SIDNOs.
*/
Sid_map(Checkable_rwlock *sid_lock);
/// Destroy this Sid_map.
~Sid_map();
/**
Clears this Sid_map (for RESET SLAVE)
@return RETURN_STATUS_OK or RETURN_STAUTS_REPORTED_ERROR
*/
enum_return_status clear();
/**
Add the given SID to this map if it does not already exist.
The caller must hold the read lock or write lock on sid_lock
before invoking this function. If the SID does not exist in this
map, it will release the read lock, take a write lock, update the
map, release the write lock, and take the read lock again.
@param sid The SID.
@retval SIDNO The SIDNO for the SID (a new SIDNO if the SID did
not exist, an existing if it did exist).
@retval negative Error. This function calls my_error.
*/
rpl_sidno add_sid(const rpl_sid &sid);
/**
Get the SIDNO for a given SID
The caller must hold the read lock on sid_lock before invoking
this function.
@param sid The SID.
@retval SIDNO if the given SID exists in this map.
@retval 0 if the given SID does not exist in this map.
*/
rpl_sidno sid_to_sidno(const rpl_sid &sid) const {
if (sid_lock != nullptr) sid_lock->assert_some_lock();
const auto it = _sid_to_sidno.find(sid);
if (it == _sid_to_sidno.end()) return 0;
return it->second->sidno;
}
/**
Get the SID for a given SIDNO.
Raises an assertion if the SIDNO is not valid.
If need_lock is true, acquires sid_lock->rdlock; otherwise asserts
that it is held already.
@param sidno The SIDNO.
@param need_lock If true, and sid_lock!=NULL, this function will
acquire sid_lock before looking up the sid, and then release
it. If false, and sid_lock!=NULL, this function will assert the
sid_lock is already held. If sid_lock==NULL, nothing is done
w.r.t. locking.
@retval NULL The SIDNO does not exist in this map.
@retval pointer Pointer to the SID. The data is shared with this
Sid_map, so should not be modified. It is safe to read the data
even after this Sid_map is modified, but not if this Sid_map is
destroyed.
*/
const rpl_sid &sidno_to_sid(rpl_sidno sidno, bool need_lock = false) const {
if (sid_lock != nullptr) {
if (need_lock)
sid_lock->rdlock();
else
sid_lock->assert_some_lock();
}
assert(sidno >= 1 && sidno <= get_max_sidno());
const rpl_sid &ret = (_sidno_to_sid[sidno - 1])->sid;
if (sid_lock != nullptr && need_lock) sid_lock->unlock();
return ret;
}
/**
Return the n'th smallest sidno, in the order of the SID's UUID.
The caller must hold the read or write lock on sid_lock before
invoking this function.
@param n A number in the interval [0, get_max_sidno()-1], inclusively.
*/
rpl_sidno get_sorted_sidno(rpl_sidno n) const {
if (sid_lock != nullptr) sid_lock->assert_some_lock();
return _sorted[n];
}
/**
Return the biggest sidno in this Sid_map.
The caller must hold the read or write lock on sid_lock before
invoking this function.
*/
rpl_sidno get_max_sidno() const {
if (sid_lock != nullptr) sid_lock->assert_some_lock();
return static_cast<rpl_sidno>(_sidno_to_sid.size());
}
/// Return the sid_lock.
Checkable_rwlock *get_sid_lock() const { return sid_lock; }
/**
Deep copy this Sid_map to dest.
The caller must hold:
* the read lock on this sid_lock
* the write lock on the dest sid_lock
before invoking this function.
@param[out] dest The Sid_map to which the sids and sidnos will
be copied.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status copy(Sid_map *dest);
private:
/// Node pointed to by both the hash and the array.
struct Node {
rpl_sidno sidno;
rpl_sid sid;
};
static const uchar *sid_map_get_key(const uchar *ptr, size_t *length) {
const Node *node = pointer_cast<const Node *>(ptr);
*length = binary_log::Uuid::BYTE_LENGTH;
return node->sid.bytes;
}
/**
Create a Node from the given SIDNO and SID and add it to
_sidno_to_sid, _sid_to_sidno, and _sorted.
The caller must hold the write lock on sid_lock before invoking
this function.
@param sidno The SIDNO to add.
@param sid The SID to add.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status add_node(rpl_sidno sidno, const rpl_sid &sid);
/// Read-write lock that protects updates to the number of SIDNOs.
mutable Checkable_rwlock *sid_lock;
/**
Array that maps SIDNO to SID; the element at index N points to a
Node with SIDNO N-1.
*/
Prealloced_array<Node *, 8> _sidno_to_sid;
/**
Hash that maps SID to SIDNO.
*/
malloc_unordered_map<rpl_sid, unique_ptr_my_free<Node>, binary_log::Hash_Uuid>
_sid_to_sidno{key_memory_Sid_map_Node};
/**
Array that maps numbers in the interval [0, get_max_sidno()-1] to
SIDNOs, in order of increasing SID.
@see Sid_map::get_sorted_sidno.
*/
Prealloced_array<rpl_sidno, 8> _sorted;
};
extern Sid_map *global_sid_map;
/**
Represents a growable array where each element contains a mutex and
a condition variable.
Each element can be locked, unlocked, broadcast, or waited for, and
it is possible to call "THD::enter_cond" for the condition. The
allowed indexes range from 0, inclusive, to get_max_index(),
inclusive. Initially there are zero elements (and get_max_index()
returns -1); more elements can be allocated by calling
ensure_index().
This data structure has a read-write lock that protects the number
of elements. The lock is provided by the invoker of the constructor
and it is generally the caller's responsibility to acquire the read
lock. Access methods assert that the caller already holds the read
(or write) lock. If a method of this class grows the number of
elements, then the method temporarily upgrades this lock to a write
lock and then degrades it to a read lock again; there will be a
short period when the lock is not held at all.
*/
class Mutex_cond_array {
public:
/**
Create a new Mutex_cond_array.
@param global_lock Read-write lock that protects updates to the
number of elements.
*/
Mutex_cond_array(Checkable_rwlock *global_lock);
/// Destroy this object.
~Mutex_cond_array();
/// Lock the n'th mutex.
inline void lock(int n) const {
assert_not_owner(n);
mysql_mutex_lock(&get_mutex_cond(n)->mutex);
}
/// Unlock the n'th mutex.
inline void unlock(int n) const {
assert_owner(n);
mysql_mutex_unlock(&get_mutex_cond(n)->mutex);
}
/// Broadcast the n'th condition.
inline void broadcast(int n) const {
mysql_cond_broadcast(&get_mutex_cond(n)->cond);
}
/**
Assert that this thread owns the n'th mutex.
This is a no-op if NDEBUG is on.
*/
inline void assert_owner(int n [[maybe_unused]]) const {
#ifndef NDEBUG
mysql_mutex_assert_owner(&get_mutex_cond(n)->mutex);
#endif
}
/**
Assert that this thread does not own the n'th mutex.
This is a no-op if NDEBUG is on.
*/
inline void assert_not_owner(int n [[maybe_unused]]) const {
#ifndef NDEBUG
mysql_mutex_assert_not_owner(&get_mutex_cond(n)->mutex);
#endif
}
/**
Wait for signal on the n'th condition variable.
The caller must hold the read lock or write lock on sid_lock, as
well as the nth mutex lock, before invoking this function. The
sid_lock will be released, whereas the mutex will be released
during the wait and (atomically) re-acquired when the wait ends
or the timeout is reached.
@param[in] thd THD object for the calling thread.
@param[in] sidno Condition variable to wait for.
@param[in] abstime The absolute point in time when the wait times
out and stops, or NULL to wait indefinitely.
@retval false Success.
@retval true Failure: either timeout or thread was killed. If
thread was killed, the error has been generated.
*/
inline bool wait(const THD *thd, int sidno, struct timespec *abstime) const {
DBUG_TRACE;
int error = 0;
Mutex_cond *mutex_cond = get_mutex_cond(sidno);
global_lock->unlock();
mysql_mutex_assert_owner(&mutex_cond->mutex);
if (is_thd_killed(thd)) return true;
if (abstime != nullptr)
error =
mysql_cond_timedwait(&mutex_cond->cond, &mutex_cond->mutex, abstime);
else
mysql_cond_wait(&mutex_cond->cond, &mutex_cond->mutex);
mysql_mutex_assert_owner(&mutex_cond->mutex);
return is_timeout(error);
}
#ifdef MYSQL_SERVER
/// Execute THD::enter_cond for the n'th condition variable.
void enter_cond(THD *thd, int n, PSI_stage_info *stage,
PSI_stage_info *old_stage) const;
#endif // ifdef MYSQL_SERVER
/// Return the greatest addressable index in this Mutex_cond_array.
inline int get_max_index() const {
global_lock->assert_some_lock();
return static_cast<int>(m_array.size() - 1);
}
/**
Grows the array so that the given index fits.
If the array is grown, the global_lock is temporarily upgraded to
a write lock and then degraded again; there will be a
short period when the lock is not held at all.
@param n The index.
@return RETURN_OK or RETURN_REPORTED_ERROR
*/
enum_return_status ensure_index(int n);
private:
/**
Return true if the given THD is killed.
@param[in] thd - The thread object
@retval true - thread is killed
false - thread not killed
*/
bool is_thd_killed(const THD *thd) const;
/// A mutex/cond pair.
struct Mutex_cond {
mysql_mutex_t mutex;
mysql_cond_t cond;
};
/// Return the Nth Mutex_cond object
inline Mutex_cond *get_mutex_cond(int n) const {
global_lock->assert_some_lock();
assert(n <= get_max_index());
Mutex_cond *ret = m_array[n];
assert(ret);
return ret;
}
/// Read-write lock that protects updates to the number of elements.
mutable Checkable_rwlock *global_lock;
Prealloced_array<Mutex_cond *, 8> m_array;
};
/**
Holds information about a GTID interval: the sidno, the first gno
and the last gno of this interval.
*/
struct Gtid_interval {
/* SIDNO of this Gtid interval. */
rpl_sidno sidno;
/* The first GNO of this Gtid interval. */
rpl_gno gno_start;
/* The last GNO of this Gtid interval. */
rpl_gno gno_end;
void set(rpl_sidno sid_no, rpl_gno start, rpl_gno end) {
sidno = sid_no;
gno_start = start;
gno_end = end;
}
};
/**
TODO: Move this structure to libbinlogevents/include/control_events.h
when we start using C++11.
Holds information about a GTID: the sidno and the gno.
This is a POD. It has to be a POD because it is part of
Gtid_specification, which has to be a POD because it is used in
THD::variables.
*/
struct Gtid {
/// SIDNO of this Gtid.
rpl_sidno sidno;
/// GNO of this Gtid.
rpl_gno gno;
/// Set both components to 0.
void clear() {
sidno = 0;
gno = 0;
}
/// Set both components to the given, positive values.
void set(rpl_sidno sidno_arg, rpl_gno gno_arg) {
assert(sidno_arg > 0);
assert(gno_arg > 0);
assert(gno_arg < GNO_END);
sidno = sidno_arg;
gno = gno_arg;
}
/**
Return true if sidno is zero (and assert that gno is zero too in
this case).
*/
bool is_empty() const {
// check that gno is not set inconsistently
if (sidno <= 0)
assert(gno == 0);
else
assert(gno > 0);
return sidno == 0;
}
/**
The maximal length of the textual representation of a SID, not
including the terminating '\0'.
*/
static const int MAX_TEXT_LENGTH =
binary_log::Uuid::TEXT_LENGTH + 1 + MAX_GNO_TEXT_LENGTH;
/**
Return true if parse() would succeed, but don't store the
result anywhere.
*/
static bool is_valid(const char *text);
/**
Convert a Gtid to a string.
@param sid the sid to use. This overrides the sidno of this Gtid.
@param[out] buf Buffer to store the Gtid in (normally
MAX_TEXT_LENGTH+1 bytes long).
@return Length of the string, not counting '\0'.
*/
int to_string(const rpl_sid &sid, char *buf) const;
/**
Convert this Gtid to a string.
@param sid_map sid_map to use when converting sidno to a SID.
@param[out] buf Buffer to store the Gtid in (normally
MAX_TEXT_LENGTH+1 bytes long).
@param need_lock If true, the function will acquire sid_map->sid_lock;
otherwise it will assert that the lock is held.
@return Length of the string, not counting '\0'.
*/
int to_string(const Sid_map *sid_map, char *buf,
bool need_lock = false) const;
/// Returns true if this Gtid has the same sid and gno as 'other'.
bool equals(const Gtid &other) const {
return sidno == other.sidno && gno == other.gno;
}
/**
Parses the given string and stores in this Gtid.
@param sid_map sid_map to use when converting SID to a sidno.
@param text The text to parse
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status parse(Sid_map *sid_map, const char *text);
#ifndef NDEBUG
/// Debug only: print this Gtid to stdout.
void print(const Sid_map *sid_map) const {
char buf[MAX_TEXT_LENGTH + 1];
to_string(sid_map, buf);
printf("%s\n", buf);
}
#endif
/// Print this Gtid to the trace file if debug is enabled; no-op otherwise.
void dbug_print(const Sid_map *sid_map [[maybe_unused]],
const char *text [[maybe_unused]] = "",
bool need_lock [[maybe_unused]] = false) const {
#ifndef NDEBUG
char buf[MAX_TEXT_LENGTH + 1];
to_string(sid_map, buf, need_lock);
DBUG_PRINT("info", ("%s%s%s", text, *text ? ": " : "", buf));
#endif
}
};
/// Structure to store the GTID and timing information.
struct Trx_monitoring_info {
/// GTID being monitored.
Gtid gtid;
/// OCT of the GTID being monitored.
ulonglong original_commit_timestamp;
/// ICT of the GTID being monitored.
ulonglong immediate_commit_timestamp;
/// When the GTID transaction started to be processed.
ulonglong start_time;
/// When the GTID transaction finished to be processed.
ulonglong end_time;
/// True if the GTID is being applied but will be skipped.
bool skipped;
/// True when this information contains useful data.
bool is_info_set;
/// Number of the last transient error of this transaction
uint last_transient_error_number;
/// Message of the last transient error of this transaction
char last_transient_error_message[MAX_SLAVE_ERRMSG];
/// Timestamp in microseconds of the last transient error of this transaction
ulonglong last_transient_error_timestamp;
/// Number of times this transaction was retried
ulong transaction_retries;
/// True when the transaction is retrying
bool is_retrying;
/// The compression type
binary_log::transaction::compression::type compression_type;
/// The compressed bytes
ulonglong compressed_bytes;
/// The uncompressed bytes
ulonglong uncompressed_bytes;
/// Constructor
Trx_monitoring_info();
/// Copy constructor
Trx_monitoring_info(const Trx_monitoring_info &info);
Trx_monitoring_info &operator=(const Trx_monitoring_info &) = default;
/// Clear all fields of the structure.
void clear();
/**
Copies this transaction monitoring information to the output parameters
passed as input, which are the corresponding fields in a replication
performance schema table.
@param[in] sid_map The SID map for the GTID.
@param[out] gtid_arg GTID field in the PS table.
@param[out] gtid_length_arg Length of the GTID as string.
@param[out] original_commit_ts_arg The original commit timestamp.
@param[out] immediate_commit_ts_arg The immediate commit timestamp.
@param[out] start_time_arg The start time field.
*/
void copy_to_ps_table(Sid_map *sid_map, char *gtid_arg, uint *gtid_length_arg,
ulonglong *original_commit_ts_arg,
ulonglong *immediate_commit_ts_arg,
ulonglong *start_time_arg) const;
/**
Copies this transaction monitoring information to the output parameters
passed as input, which are the corresponding fields in a replication
performance schema table.
@param[in] sid_map The SID map for the GTID.
@param[out] gtid_arg GTID field in the PS table.
@param[out] gtid_length_arg Length of the GTID as string.
@param[out] original_commit_ts_arg The original commit timestamp.
@param[out] immediate_commit_ts_arg The immediate commit timestamp.
@param[out] start_time_arg The start time field.
@param[out] end_time_arg The end time field. This can be null
when the PS table fields are for the
"still processing" information.
*/
void copy_to_ps_table(Sid_map *sid_map, char *gtid_arg, uint *gtid_length_arg,
ulonglong *original_commit_ts_arg,
ulonglong *immediate_commit_ts_arg,
ulonglong *start_time_arg,
ulonglong *end_time_arg) const;
/**
Copies this transaction monitoring information to the output parameters
passed as input, which are the corresponding fields in a replication
performance schema table.
@param[in] sid_map The SID map for the GTID.
@param[out] gtid_arg GTID field in the PS table.
@param[out] gtid_length_arg Length of the GTID as string.
@param[out] original_commit_ts_arg The original commit timestamp.
@param[out] immediate_commit_ts_arg The immediate commit timestamp.
@param[out] start_time_arg The start time field.
@param[out] last_transient_errno_arg The last transient error
number.
@param[out] last_transient_errmsg_arg The last transient error
message.
@param[out] last_transient_errmsg_length_arg Length of the last transient
error message.
@param[out] last_transient_timestamp_arg The last transient error
timestamp.
@param[out] retries_count_arg The total number of retries for
this transaction.
*/
void copy_to_ps_table(
Sid_map *sid_map, char *gtid_arg, uint *gtid_length_arg,
ulonglong *original_commit_ts_arg, ulonglong *immediate_commit_ts_arg,
ulonglong *start_time_arg, uint *last_transient_errno_arg,
char *last_transient_errmsg_arg, uint *last_transient_errmsg_length_arg,
ulonglong *last_transient_timestamp_arg, ulong *retries_count_arg) const;
/**
Copies this transaction monitoring information to the output parameters
passed as input, which are the corresponding fields in a replication
performance schema table.
@param[in] sid_map The SID map for the GTID.
@param[out] gtid_arg GTID field in the PS table.
@param[out] gtid_length_arg Length of the GTID as string.
@param[out] original_commit_ts_arg The original commit timestamp.
@param[out] immediate_commit_ts_arg The immediate commit timestamp.
@param[out] start_time_arg The start time field.
@param[out] end_time_arg The end time field. This can be
null when the PS table fields
are for the "still processing"
information.
@param[out] last_transient_errno_arg The last transient error
number.
@param[out] last_transient_errmsg_arg The last transient error
message.
@param[out] last_transient_errmsg_length_arg Length of the last transient
error message.
@param[out] last_transient_timestamp_arg The last transient error
timestamp.
@param[out] retries_count_arg The total number of retries for
this transaction.
*/
void copy_to_ps_table(Sid_map *sid_map, char *gtid_arg, uint *gtid_length_arg,
ulonglong *original_commit_ts_arg,
ulonglong *immediate_commit_ts_arg,
ulonglong *start_time_arg, ulonglong *end_time_arg,
uint *last_transient_errno_arg,
char *last_transient_errmsg_arg,
uint *last_transient_errmsg_length_arg,
ulonglong *last_transient_timestamp_arg,
ulong *retries_count_arg) const;
};
/**
Stores information to monitor a transaction during the different replication
stages.
*/
class Gtid_monitoring_info {
public:
/**
Create this GTID monitoring info object.
@param atomic_mutex_arg When specified, this object will rely on the mutex
to arbitrate the read/update access to object data.
This will be used by the receiver thread, relying
on mi->data_lock. When no mutex is specified, the
object will rely on its own atomic mechanism.
*/
Gtid_monitoring_info(mysql_mutex_t *atomic_mutex_arg = nullptr);
/// Destroy this GTID monitoring info object.
~Gtid_monitoring_info();
protected:
/// Holds information about transaction being processed.
Trx_monitoring_info *processing_trx;
/// Holds information about the last processed transaction.
Trx_monitoring_info *last_processed_trx;
private:
/**
Mutex arbitrating the atomic access to the object.
Some Gtid_monitoring_info will rely on replication thread locks
(i.e.: the Master_info's one rely on mi->data_lock, that is already
acquired every time the Gtid_monitoring_info needs to be updated).
Other Gtid_monitoring_info will rely on an atomic lock implemented
in this class to avoid overlapped reads and writes over the information.
(i.e.: the Relay_log_info's one sometimes is updated without rli locks).
When atomic_mutex is NULL, the object will rely on its own atomic
mechanism.
*/
mysql_mutex_t *atomic_mutex;
/// The atomic locked flag.
std::atomic<bool> atomic_locked{false};
#ifndef NDEBUG
/// Flag to assert the atomic lock behavior.
bool is_locked = false;
#endif
public:
/**
Lock this object when no thread mutex is used to arbitrate the access.
*/
void atomic_lock();
/**
Unlock this object when no thread mutex is used to arbitrate the access.
*/
void atomic_unlock();
/**
Clear all monitoring information.
*/
void clear();
/**
Clear only the processing_trx monitoring info.
*/
void clear_processing_trx();
/**
Clear only the last_processed_trx monitoring info.
*/
void clear_last_processed_trx();
/**
Sets the initial monitoring information.
@param gtid_arg The Gtid to be stored.
@param original_ts_arg The original commit timestamp of the GTID.
@param immediate_ts_arg The immediate commit timestamp of the GTID.
@param skipped_arg True if the GTID was already applied.
This only make sense for applier threads.
That's why it is false by default.
*/
void start(Gtid gtid_arg, ulonglong original_ts_arg,
ulonglong immediate_ts_arg, bool skipped_arg = false);
void update(binary_log::transaction::compression::type t, size_t payload_size,
size_t uncompressed_size);
/**
Sets the final information, copy processing info to last_processed
and clears processing info.
*/
void finish();
/**
Copies both processing_trx and last_processed_trx info to other
Trx_monitoring_info structures.
@param[out] processing_dest The destination of processing_trx.
@param[out] last_processed_dest The destination of last_processed_trx.
*/
void copy_info_to(Trx_monitoring_info *processing_dest,
Trx_monitoring_info *last_processed_dest);
/**
Copies all monitoring info to other Gtid_monitoring_info object.
@param[out] dest The destination Gtid_monitoring_info.
*/
void copy_info_to(Gtid_monitoring_info *dest);
/// Returns true if the processing_trx is set, false otherwise.
bool is_processing_trx_set();
/// Returns the GTID of the processing_trx.
const Gtid *get_processing_trx_gtid();
/**
Stores the information about the last transient error in the current
transaction, namely: the error number, message and total number of retries.
It also sets the timestamp for this error.
@param transient_errno_arg The number of the transient error in this
transaction.
@param transient_err_message_arg The message of this transient error.
@param trans_retries_arg The number of times this transaction has
been retried.
*/
void store_transient_error(uint transient_errno_arg,
const char *transient_err_message_arg,
ulong trans_retries_arg);
};
/**
Represents a set of GTIDs.
This is structured as an array, indexed by SIDNO, where each element
contains a linked list of intervals.
This data structure OPTIONALLY knows of a Sid_map that gives a
correspondence between SIDNO and SID. If the Sid_map is NULL, then
operations that require a Sid_map - printing and parsing - raise an
assertion.
This data structure OPTIONALLY knows of a read-write lock that
protects the number of SIDNOs. The lock is provided by the invoker
of the constructor and it is generally the caller's responsibility
to acquire the read lock. If the lock is not NULL, access methods
assert that the caller already holds the read (or write) lock. If
the lock is not NULL and a method of this class grows the number of
SIDNOs, then the method temporarily upgrades this lock to a write
lock and then degrades it to a read lock again; there will be a
short period when the lock is not held at all.
*/
class Gtid_set {
public:
static PSI_mutex_key key_gtid_executed_free_intervals_mutex;
/**
Constructs a new, empty Gtid_set.
@param sid_map The Sid_map to use, or NULL if this Gtid_set
should not have a Sid_map.
@param sid_lock Read-write lock that protects updates to the
number of SIDs. This may be NULL if such changes do not need to be
protected.
*/
Gtid_set(Sid_map *sid_map, Checkable_rwlock *sid_lock = nullptr);
/**
Constructs a new Gtid_set that contains the gtids in the given
string, in the same format as add_gtid_text(char *).
@param sid_map The Sid_map to use for SIDs.
@param text The text to parse.
@param status Will be set to RETURN_STATUS_OK on success or
RETURN_STATUS_REPORTED_ERROR on error.
@param sid_lock Read/write lock to protect changes in the number
of SIDs with. This may be NULL if such changes do not need to be
protected.
If sid_lock != NULL, then the read lock on sid_lock must be held
before calling this function. If the array is grown, sid_lock is
temporarily upgraded to a write lock and then degraded again;
there will be a short period when the lock is not held at all.
*/
Gtid_set(Sid_map *sid_map, const char *text, enum_return_status *status,
Checkable_rwlock *sid_lock = nullptr);
private:
/// Worker for the constructor.
void init();
public:
/// Destroy this Gtid_set.
~Gtid_set();
/**
Claim ownership of memory.
@param claim claim ownership of memory.
*/
void claim_memory_ownership(bool claim);
/**
Removes all gtids from this Gtid_set.
This does not deallocate anything: if gtids are added later,
existing allocated memory will be re-used.
*/
void clear();
/**
Removes all gtids from this Gtid_set and clear all the sidnos
used by the Gtid_set and it's SID map.
This does not deallocate anything: if gtids are added later,
existing allocated memory will be re-used.
*/
void clear_set_and_sid_map();
/**
Adds the given GTID to this Gtid_set.
The SIDNO must exist in the Gtid_set before this function is called.
@param sidno SIDNO of the GTID to add.
@param gno GNO of the GTID to add.
*/
void _add_gtid(rpl_sidno sidno, rpl_gno gno) {
DBUG_TRACE;
assert(sidno > 0);
assert(gno > 0);
assert(gno < GNO_END);
Interval_iterator ivit(this, sidno);
Free_intervals_lock lock(this);
add_gno_interval(&ivit, gno, gno + 1, &lock);
return;
}
/**
Removes the given GTID from this Gtid_set.
@param sidno SIDNO of the GTID to remove.
@param gno GNO of the GTID to remove.
*/
void _remove_gtid(rpl_sidno sidno, rpl_gno gno) {
DBUG_TRACE;
if (sidno <= get_max_sidno()) {
Interval_iterator ivit(this, sidno);
Free_intervals_lock lock(this);
remove_gno_interval(&ivit, gno, gno + 1, &lock);
}
return;
}
/**
Adds the given GTID to this Gtid_set.
The SIDNO must exist in the Gtid_set before this function is called.
@param gtid Gtid to add.
*/
void _add_gtid(const Gtid >id) { _add_gtid(gtid.sidno, gtid.gno); }
/**
Removes the given GTID from this Gtid_set.
@param gtid Gtid to remove.
*/
void _remove_gtid(const Gtid >id) { _remove_gtid(gtid.sidno, gtid.gno); }
/**
Adds all gtids from the given Gtid_set to this Gtid_set.
If sid_lock != NULL, then the read lock must be held before
calling this function. If a new sidno is added so that the array
of lists of intervals is grown, sid_lock is temporarily upgraded
to a write lock and then degraded again; there will be a short
period when the lock is not held at all.
@param other The Gtid_set to add.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status add_gtid_set(const Gtid_set *other);
/**
Removes all gtids in the given Gtid_set from this Gtid_set.
@param other The Gtid_set to remove.
*/
void remove_gtid_set(const Gtid_set *other);
/**
Removes all intervals of 'other' for a given SIDNO, from 'this'.
Example:
this = A:1-100, B:1-100
other = A:1-100, B:1-50, C:1-100
this.remove_intervals_for_sidno(other, B) = A:1-100, B:51-100
It is not required that the intervals exist in this Gtid_set.
@param other The set to remove.
@param sidno The sidno to remove.
*/
void remove_intervals_for_sidno(Gtid_set *other, rpl_sidno sidno);
/**
Adds the set of GTIDs represented by the given string to this Gtid_set.
The string must have the format of a comma-separated list of zero
or more of the following items:
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX(:NUMBER+(-NUMBER)?)*
| ANONYMOUS
Each X is a hexadecimal digit (upper- or lowercase).
NUMBER is a decimal, 0xhex, or 0oct number.
The start of an interval must be greater than 0. The end of an
interval may be 0, but any interval that has an endpoint that
is smaller than the start is discarded.
The string can start with an optional '+' appender qualifier
which triggers @c executed_gtids and @c lost_gtids set examination
on the matter of disjointness with the one being added.
If sid_lock != NULL, then the read lock on sid_lock must be held
before calling this function. If a new sidno is added so that the
array of lists of intervals is grown, sid_lock is temporarily
upgraded to a write lock and then degraded again; there will be a
short period when the lock is not held at all.
@param text The string to parse.
@param [in,out] anonymous If this is NULL, ANONYMOUS is not
allowed. If this is not NULL, it will be set to true if the
anonymous GTID was found; false otherwise.
@param[in,out] starts_with_plus If this is not NULL, the string may
optionally begin with a '+' character, and *starts_with_plus will
be set to true if the plus character is present. If this is NULL,
no plus is allowed at the begin of the string.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status add_gtid_text(const char *text, bool *anonymous = nullptr,
bool *starts_with_plus = nullptr);
/**
Decodes a Gtid_set from the given string.
@param encoded The string to parse.
@param length The number of bytes.
@param actual_length If this is not NULL, it is set to the number
of bytes used by the encoding (which may be less than 'length').
If this is NULL, an error is generated if the encoding is shorter
than the given 'length'.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status add_gtid_encoding(const uchar *encoded, size_t length,
size_t *actual_length = nullptr);
/// Return true iff the given GTID exists in this set.
bool contains_gtid(rpl_sidno sidno, rpl_gno gno) const;
/// Return true iff the given GTID exists in this set.
bool contains_gtid(const Gtid >id) const {
return contains_gtid(gtid.sidno, gtid.gno);
}
// Get last gno or 0 if this set is empty.
rpl_gno get_last_gno(rpl_sidno sidno) const;
/// Returns the maximal sidno that this Gtid_set currently has space for.
rpl_sidno get_max_sidno() const {
if (sid_lock) sid_lock->assert_some_lock();
return static_cast<rpl_sidno>(m_intervals.size());
}
/**
Allocates space for all sidnos up to the given sidno in the array of
intervals. The sidno must exist in the Sid_map associated with this
Gtid_set.
If sid_lock != NULL, then the read lock on sid_lock must be held
before calling this function. If the array is grown, sid_lock is
temporarily upgraded to a write lock and then degraded again;
there will be a short period when the lock is not held at all.
@param sidno The SIDNO.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status ensure_sidno(rpl_sidno sidno);
/// Returns true if this Gtid_set is a subset of the other Gtid_set.
bool is_subset(const Gtid_set *super) const;
/// Returns true if this Gtid_set is a non equal subset of the other Gtid_set.
bool is_subset_not_equals(const Gtid_set *super) const {
return (is_subset(super) && !equals(super));
}
/**
Returns true if this Gtid_set is a subset of the given gtid_set
on the given superset_sidno and subset_sidno.
@param super Gtid_set with which this->gtid_set needs to be
compared
@param superset_sidno The sidno that will be compared, relative to
super->sid_map.
@param subset_sidno The sidno that will be compared, relative to
this->sid_map.
@return true If 'this' Gtid_set is subset of given
'super' Gtid_set.
false If 'this' Gtid_set is *not* subset of given
'super' Gtid_set.
*/
bool is_subset_for_sid(const Gtid_set *super, rpl_sidno superset_sidno,
rpl_sidno subset_sidno) const;
/// Returns true if there is a least one element of this Gtid_set in
/// the other Gtid_set.
bool is_intersection_nonempty(const Gtid_set *other) const;
/**
Add the intersection of this Gtid_set and the other Gtid_set to result.
@param other The Gtid_set to intersect with this Gtid_set
@param result Gtid_set where the result will be stored.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status intersection(const Gtid_set *other, Gtid_set *result);
/// Returns true if this Gtid_set is empty.
bool is_empty() const {
Gtid_iterator git(this);
return git.get().sidno == 0;
}
/**
Return true if the size of the set is greater than or equal to the given
number. The size is measure in number of GTIDs, i.e., total length of all
intervals.
@param num Number to compare with
@retval true if the set contains >= num GTIDs.
@retval false if the set contains < num GTIDs.
*/
bool is_size_greater_than_or_equal(ulonglong num) const;
/**
What is the count of all the GTIDs in all intervals for a sidno
@param sidno The sidno that contains the intervals
@return the number of all GTIDs in all intervals
*/
ulonglong get_gtid_count(rpl_sidno sidno) const {
Const_interval_iterator ivit(this, sidno);
ulonglong ret = 0;
while (ivit.get() != nullptr) {
ret += ivit.get()->end - ivit.get()->start;
ivit.next();
}
return ret;
}
/**
Returns true if this Gtid_set contains at least one GTID with
the given SIDNO.
@param sidno The SIDNO to test.
@retval true The SIDNO is less than or equal to the max SIDNO, and
there is at least one GTID with this SIDNO.
@retval false The SIDNO is greater than the max SIDNO, or there is
no GTID with this SIDNO.
*/
bool contains_sidno(rpl_sidno sidno) const {
assert(sidno >= 1);
if (sidno > get_max_sidno()) return false;
Const_interval_iterator ivit(this, sidno);
return ivit.get() != nullptr;
}
/**
Returns true if the given string is a valid specification of a
Gtid_set, false otherwise.
*/
static bool is_valid(const char *text);
/**
Class Gtid_set::String_format defines the separators used by
Gtid_set::to_string.
*/
struct String_format {
/// The generated string begins with this.
const char *begin;
/// The generated string begins with this.
const char *end;
/// In 'SID:GNO', this is the ':'
const char *sid_gno_separator;
/// In 'SID:GNO-GNO', this is the '-'
const char *gno_start_end_separator;
/// In 'SID:GNO:GNO', this is the second ':'
const char *gno_gno_separator;
/// In 'SID:GNO,SID:GNO', this is the ','
const char *gno_sid_separator;
/// If the set is empty and this is not NULL, then this string is generated.
const char *empty_set_string;
/// The following fields are the lengths of each field above.
const int begin_length;
const int end_length;
const int sid_gno_separator_length;
const int gno_start_end_separator_length;
const int gno_gno_separator_length;
const int gno_sid_separator_length;
const int empty_set_string_length;
};
/**
Returns the length of the output from to_string.
@warning This does not include the trailing '\0', so your buffer
needs space for get_string_length() + 1 characters.
@param string_format String_format object that specifies
separators in the resulting text.
@return The length.
*/
size_t get_string_length(const String_format *string_format = nullptr) const;
/**
Formats this Gtid_set as a string and saves in a given buffer.
@param[out] buf Pointer to the buffer where the string should be
stored. This should have size at least get_string_length()+1.
@param need_lock If this Gtid_set has a sid_lock, then the write
lock must be held while generating the string. If this parameter
is true, then this function acquires and releases the lock;
otherwise it asserts that the caller holds the lock.
@param string_format String_format object that specifies
separators in the resulting text.
@return Length of the generated string.
*/
size_t to_string(char *buf, bool need_lock = false,
const String_format *string_format = nullptr) const;
/**
Formats a Gtid_set as a string and saves in a newly allocated buffer.
@param[out] buf Pointer to pointer to string. The function will
set it to point to the newly allocated buffer, or NULL on out of memory.
@param need_lock If this Gtid_set has a sid_lock, then the write
lock must be held while generating the string. If this parameter
is true, then this function acquires and releases the lock;
otherwise it asserts that the caller holds the lock.
@param string_format Specifies how to format the string.
@retval Length of the generated string, or -1 on out of memory.
*/
long to_string(char **buf, bool need_lock = false,
const String_format *string_format = nullptr) const;
#ifndef NDEBUG
/// Debug only: Print this Gtid_set to stdout.
/// For use with C `printf`
void print(bool need_lock = false,
const Gtid_set::String_format *sf = nullptr) const {
char *str;
to_string(&str, need_lock, sf);
printf("%s\n", str ? str : "out of memory in Gtid_set::print");
my_free(str);
}
/// For use with C++ `std::ostream`
inline friend std::ostream &operator<<(std::ostream &os, const Gtid_set &in) {
char *str;
in.to_string(&str, true, nullptr);
os << std::string(str) << std::flush;
my_free(str);
return os;
}
#endif
/**
Print this Gtid_set to the trace file if debug is enabled; no-op
otherwise.
*/
void dbug_print(const char *text [[maybe_unused]] = "",
bool need_lock [[maybe_unused]] = false,
const Gtid_set::String_format *sf
[[maybe_unused]] = nullptr) const {
#ifndef NDEBUG
char *str;
to_string(&str, need_lock, sf);
DBUG_PRINT("info", ("%s%s'%s'", text, *text ? ": " : "",
str ? str : "out of memory in Gtid_set::dbug_print"));
my_free(str);
#endif
}
/**
Gets all gtid intervals from this Gtid_set.
@param[out] gtid_intervals Store all gtid intervals from this Gtid_set.
*/
void get_gtid_intervals(std::list<Gtid_interval> *gtid_intervals) const;
/**
The default String_format: the format understood by
add_gtid_text(const char *).
*/
static const String_format default_string_format;
/**
String_format useful to generate an SQL string: the string is
wrapped in single quotes and there is a newline between SIDs.
*/
static const String_format sql_string_format;
/**
String_format for printing the Gtid_set commented: the string is
not quote-wrapped, and every SID is on a new line with a leading '# '.
*/
static const String_format commented_string_format;
/// Return the Sid_map associated with this Gtid_set.
Sid_map *get_sid_map() const { return sid_map; }
/**
Represents one element in the linked list of intervals associated
with a SIDNO.
*/
struct Interval {
public:
/// The first GNO of this interval.
rpl_gno start;
/// The first GNO after this interval.
rpl_gno end;
/// Return true iff this interval is equal to the given interval.
bool equals(const Interval &other) const {
return start == other.start && end == other.end;
}
/// Pointer to next interval in list.
Interval *next;
};
/**
Provides an array of Intervals that this Gtid_set can use when
gtids are subsequently added. This can be used as an
optimization, to reduce allocation for sets that have a known
number of intervals.
@param n_intervals The number of intervals to add.
@param intervals_param Array of n_intervals intervals.
*/
void add_interval_memory(int n_intervals, Interval *intervals_param) {
if (sid_lock != nullptr) mysql_mutex_lock(&free_intervals_mutex);
add_interval_memory_lock_taken(n_intervals, intervals_param);
if (sid_lock != nullptr) mysql_mutex_unlock(&free_intervals_mutex);
}
/**
Iterator over intervals for a given SIDNO.
This is an abstract template class, used as a common base class
for Const_interval_iterator and Interval_iterator.
The iterator always points to an interval pointer. The interval
pointer is either the initial pointer into the list, or the next
pointer of one of the intervals in the list.
*/
template <typename Gtid_set_p, typename Interval_p>
class Interval_iterator_base {
public:
/**
Construct a new iterator over the GNO intervals for a given Gtid_set.
@param gtid_set The Gtid_set.
@param sidno The SIDNO.
*/
Interval_iterator_base(Gtid_set_p gtid_set, rpl_sidno sidno) {
assert(sidno >= 1 && sidno <= gtid_set->get_max_sidno());
init(gtid_set, sidno);
}
/// Construct a new iterator over the free intervals of a Gtid_set.
Interval_iterator_base(Gtid_set_p gtid_set) {
p = const_cast<Interval_p *>(>id_set->free_intervals);
}
/// Reset this iterator.
inline void init(Gtid_set_p gtid_set, rpl_sidno sidno) {
p = const_cast<Interval_p *>(>id_set->m_intervals[sidno - 1]);
}
/// Advance current_elem one step.
inline void next() {
assert(*p != nullptr);
p = const_cast<Interval_p *>(&(*p)->next);
}
/// Return current_elem.
inline Interval_p get() const { return *p; }
protected:
/**
Holds the address of the 'next' pointer of the previous element,
or the address of the initial pointer into the list, if the
current element is the first element.
*/
Interval_p *p;
};
/**
Iterator over intervals of a const Gtid_set.
*/
class Const_interval_iterator
: public Interval_iterator_base<const Gtid_set *, const Interval *> {
public:
/// Create this Const_interval_iterator.
Const_interval_iterator(const Gtid_set *gtid_set, rpl_sidno sidno)
: Interval_iterator_base<const Gtid_set *, const Interval *>(gtid_set,
sidno) {}
/// Create this Const_interval_iterator.
Const_interval_iterator(const Gtid_set *gtid_set)
: Interval_iterator_base<const Gtid_set *, const Interval *>(gtid_set) {
}
};
/**
Iterator over intervals of a non-const Gtid_set, with additional
methods to modify the Gtid_set.
*/
class Interval_iterator
: public Interval_iterator_base<Gtid_set *, Interval *> {
public:
/// Create this Interval_iterator.
Interval_iterator(Gtid_set *gtid_set, rpl_sidno sidno)
: Interval_iterator_base<Gtid_set *, Interval *>(gtid_set, sidno) {}
/// Destroy this Interval_iterator.
Interval_iterator(Gtid_set *gtid_set)
: Interval_iterator_base<Gtid_set *, Interval *>(gtid_set) {}
private:
/**
Set current_elem to the given Interval but do not touch the
next pointer of the given Interval.
*/
inline void set(Interval *iv) { *p = iv; }
/// Insert the given element before current_elem.
inline void insert(Interval *iv) {
iv->next = *p;
set(iv);
}
/// Remove current_elem.
inline void remove(Gtid_set *gtid_set) {
assert(get() != nullptr);
Interval *next = (*p)->next;
gtid_set->put_free_interval(*p);
set(next);
}
/**
Only Gtid_set is allowed to use set/insert/remove.
They are not safe to use from other code because: (1) very easy
to make a mistakes (2) they don't clear cached_string_format or
cached_string_length.
*/
friend class Gtid_set;
};
/**
Iterator over all gtids in a Gtid_set. This is a const
iterator; it does not allow modification of the Gtid_set.
*/
class Gtid_iterator {
public:
Gtid_iterator(const Gtid_set *gs) : gtid_set(gs), sidno(0), ivit(gs) {
if (gs->sid_lock != nullptr) gs->sid_lock->assert_some_wrlock();
next_sidno();
}
/// Advance to next gtid.
inline void next() {
assert(gno > 0 && sidno > 0);
// go to next GTID in current interval
gno++;
// end of interval? then go to next interval for this sidno
if (gno == ivit.get()->end) {
ivit.next();
const Interval *iv = ivit.get();
// last interval for this sidno? then go to next sidno
if (iv == nullptr) {
next_sidno();
// last sidno? then don't try more
if (sidno == 0) return;
iv = ivit.get();
}
gno = iv->start;
}
}
/// Return next gtid, or {0,0} if we reached the end.
inline Gtid get() const {
Gtid ret = {sidno, gno};
return ret;
}
private:
/// Find the next sidno that has one or more intervals.
inline void next_sidno() {
const Interval *iv;
do {
sidno++;
if (sidno > gtid_set->get_max_sidno()) {
sidno = 0;
gno = 0;
return;
}
ivit.init(gtid_set, sidno);
iv = ivit.get();
} while (iv == nullptr);
gno = iv->start;
}
/// The Gtid_set we iterate over.
const Gtid_set *gtid_set;
/**
The SIDNO of the current element, or 0 if the iterator is past
the last element.
*/
rpl_sidno sidno;
/**
The GNO of the current element, or 0 if the iterator is past the
last element.
*/
rpl_gno gno;
/// Iterator over the intervals for the current SIDNO.
Const_interval_iterator ivit;
};
public:
/**
Encodes this Gtid_set as a binary string.
*/
void encode(uchar *buf) const;
/**
Returns the length of this Gtid_set when encoded using the
encode() function.
*/
size_t get_encoded_length() const;
private:
/**
Contains a list of intervals allocated by this Gtid_set. When a
method of this class needs a new interval and there are no more
free intervals, a new Interval_chunk is allocated and the
intervals of it are added to the list of free intervals.
*/
struct Interval_chunk {
Interval_chunk *next;
Interval intervals[1];
};
/// The default number of intervals in an Interval_chunk.
static const int CHUNK_GROW_SIZE = 8;
/**
Return true if the given sidno of this Gtid_set contains the same
intervals as the given sidno of the other Gtid_set.
@param sidno SIDNO to check for this Gtid_set.
@param other Other Gtid_set
@param other_sidno SIDNO to check in other.
@return true if equal, false is not equal.
*/
bool sidno_equals(rpl_sidno sidno, const Gtid_set *other,
rpl_sidno other_sidno) const;
/// Returns true if this Gtid_set is equal to the other Gtid_set.
bool equals(const Gtid_set *other) const;
/// Return the number of intervals for the given sidno.
int get_n_intervals(rpl_sidno sidno) const {
Const_interval_iterator ivit(this, sidno);
int ret = 0;
while (ivit.get() != nullptr) {
ret++;
ivit.next();
}
return ret;
}
/// Return the number of intervals in this Gtid_set.
int get_n_intervals() const {
if (sid_lock != nullptr) sid_lock->assert_some_wrlock();
rpl_sidno max_sidno = get_max_sidno();
int ret = 0;
for (rpl_sidno sidno = 1; sidno < max_sidno; sidno++)
ret += get_n_intervals(sidno);
return ret;
}
/**
Allocates a new chunk of Intervals and adds them to the list of
unused intervals.
@param size The number of intervals in this chunk
*/
void create_new_chunk(int size);
/**
Returns a fresh new Interval object.
This usually does not require any real allocation, it only pops
the first interval from the list of free intervals. If there are
no free intervals, it calls create_new_chunk.
@param out The resulting Interval* will be stored here.
*/
void get_free_interval(Interval **out);
/**
Puts the given interval in the list of free intervals. Does not
unlink it from its place in any other list.
*/
void put_free_interval(Interval *iv);
/**
Like add_interval_memory, but does not acquire
free_intervals_mutex.
@see Gtid_set::add_interval_memory
*/
void add_interval_memory_lock_taken(int n_ivs, Interval *ivs);
/// Read-write lock that protects updates to the number of SIDs.
mutable Checkable_rwlock *sid_lock;
/**
Lock protecting the list of free intervals. This lock is only
used if sid_lock is not NULL.
*/
mysql_mutex_t free_intervals_mutex;
/**
Class representing a lock on free_intervals_mutex.
This is used by the add_* and remove_* functions. The lock is
declared by the top-level function and a pointer to the lock is
passed down to low-level functions. If the low-level function
decides to access the free intervals list, then it acquires the
lock. The lock is then automatically released by the destructor
when the top-level function returns.
The lock is not taken if Gtid_set->sid_lock == NULL; such
Gtid_sets are assumed to be thread-local.
*/
class Free_intervals_lock {
public:
/// Create a new lock, but do not acquire it.
Free_intervals_lock(Gtid_set *_gtid_set)
: gtid_set(_gtid_set), locked(false) {}
/// Lock the lock if it is not already locked.
void lock_if_not_locked() {
if (gtid_set->sid_lock && !locked) {
mysql_mutex_lock(>id_set->free_intervals_mutex);
locked = true;
}
}
/// Lock the lock if it is locked.
void unlock_if_locked() {
if (gtid_set->sid_lock && locked) {
mysql_mutex_unlock(>id_set->free_intervals_mutex);
locked = false;
}
}
/// Destroy this object and unlock the lock if it is locked.
~Free_intervals_lock() { unlock_if_locked(); }
private:
Gtid_set *gtid_set;
bool locked;
};
void assert_free_intervals_locked() {
if (sid_lock != nullptr) mysql_mutex_assert_owner(&free_intervals_mutex);
}
/**
Adds the interval (start, end) to the given Interval_iterator.
This is the lowest-level function that adds gtids; this is where
Interval objects are added, grown, or merged.
@param ivitp Pointer to iterator. After this function returns,
the current_element of the iterator will be the interval that
contains start and end.
@param start The first GNO in the interval.
@param end The first GNO after the interval.
@param lock If this function has to add or remove an interval,
then this lock will be taken unless it is already taken. This
mechanism means that the lock will be taken lazily by
e.g. add_gtid_set() the first time that the list of free intervals
is accessed, and automatically released when add_gtid_set()
returns.
*/
void add_gno_interval(Interval_iterator *ivitp, rpl_gno start, rpl_gno end,
Free_intervals_lock *lock);
/**
Removes the interval (start, end) from the given
Interval_iterator. This is the lowest-level function that removes
gtids; this is where Interval objects are removed, truncated, or
split.
It is not required that the gtids in the interval exist in this
Gtid_set.
@param ivitp Pointer to iterator. After this function returns,
the current_element of the iterator will be the next interval
after end.
@param start The first GNO in the interval.
@param end The first GNO after the interval.
@param lock If this function has to add or remove an interval,
then this lock will be taken unless it is already taken. This
mechanism means that the lock will be taken lazily by
e.g. add_gtid_set() the first time that the list of free intervals
is accessed, and automatically released when add_gtid_set()
returns.
*/
void remove_gno_interval(Interval_iterator *ivitp, rpl_gno start, rpl_gno end,
Free_intervals_lock *lock);
/**
Adds a list of intervals to the given SIDNO.
The SIDNO must exist in the Gtid_set before this function is called.
@param sidno The SIDNO to which intervals will be added.
@param ivit Iterator over the intervals to add. This is typically
an iterator over some other Gtid_set.
@param lock If this function has to add or remove an interval,
then this lock will be taken unless it is already taken. This
mechanism means that the lock will be taken lazily by
e.g. add_gtid_set() the first time that the list of free intervals
is accessed, and automatically released when add_gtid_set()
returns.
*/
void add_gno_intervals(rpl_sidno sidno, Const_interval_iterator ivit,
Free_intervals_lock *lock);
/**
Removes a list of intervals from the given SIDNO.
It is not required that the intervals exist in this Gtid_set.
@param sidno The SIDNO from which intervals will be removed.
@param ivit Iterator over the intervals to remove. This is typically
an iterator over some other Gtid_set.
@param lock If this function has to add or remove an interval,
then this lock will be taken unless it is already taken. This
mechanism means that the lock will be taken lazily by
e.g. add_gtid_set() the first time that the list of free intervals
is accessed, and automatically released when add_gtid_set()
returns.
*/
void remove_gno_intervals(rpl_sidno sidno, Const_interval_iterator ivit,
Free_intervals_lock *lock);
/// Returns true if every interval of sub is a subset of some
/// interval of super.
static bool is_interval_subset(Const_interval_iterator *sub,
Const_interval_iterator *super);
/// Returns true if at least one sidno in ivit1 is also in ivit2.
static bool is_interval_intersection_nonempty(Const_interval_iterator *ivit1,
Const_interval_iterator *ivit2);
/// Sid_map associated with this Gtid_set.
Sid_map *sid_map;
/**
Array where the N'th element contains the head pointer to the
intervals of SIDNO N+1.
*/
Prealloced_array<Interval *, 8> m_intervals;
/// Linked list of free intervals.
Interval *free_intervals;
/// Linked list of chunks.
Interval_chunk *chunks;
/// If the string is cached.
mutable bool has_cached_string_length;
/// The string length.
mutable size_t cached_string_length;
/// The String_format that was used when cached_string_length was computed.
mutable const String_format *cached_string_format;
#ifndef NDEBUG
/**
The number of chunks. Used only to check some invariants when
DBUG is on.
*/
int n_chunks;
#endif
/// Used by unit tests that need to access private members.
#ifdef FRIEND_OF_GTID_SET
friend FRIEND_OF_GTID_SET;
#endif
/// Only Free_intervals_lock is allowed to access free_intervals_mutex.
friend class Gtid_set::Free_intervals_lock;
};
/**
Holds information about a Gtid_set. Can also be NULL.
This is used as backend storage for @@session.gtid_next_list. The
idea is that we allow the user to set this to NULL, but we keep the
Gtid_set object so that we can re-use the allocated memory and
avoid costly allocations later.
This is stored in struct system_variables (defined in sql_class.h),
which is cleared using memset(0); hence the negated form of
is_non_null.
The convention is: if is_non_null is false, then the value of the
session variable is NULL, and the field gtid_set may be NULL or
non-NULL. If is_non_null is true, then the value of the session
variable is not NULL, and the field gtid_set has to be non-NULL.
This is a POD. It has to be a POD because it is stored in
THD::variables.
*/
struct Gtid_set_or_null {
/// Pointer to the Gtid_set.
Gtid_set *gtid_set;
/// True if this Gtid_set is NULL.
bool is_non_null;
/// Return NULL if this is NULL, otherwise return the Gtid_set.
inline Gtid_set *get_gtid_set() const {
assert(!(is_non_null && gtid_set == nullptr));
return is_non_null ? gtid_set : nullptr;
}
/**
Do nothing if this object is non-null; set to empty set otherwise.
@return NULL if out of memory; Gtid_set otherwise.
*/
Gtid_set *set_non_null(Sid_map *sm) {
if (!is_non_null) {
if (gtid_set == nullptr)
gtid_set = new Gtid_set(sm);
else
gtid_set->clear();
}
is_non_null = (gtid_set != nullptr);
return gtid_set;
}
/// Set this Gtid_set to NULL.
inline void set_null() { is_non_null = false; }
};
/**
Represents the set of GTIDs that are owned by some thread.
This data structure has a read-write lock that protects the number
of SIDNOs. The lock is provided by the invoker of the constructor
and it is generally the caller's responsibility to acquire the read
lock. Access methods assert that the caller already holds the read
(or write) lock. If a method of this class grows the number of
SIDNOs, then the method temporarily upgrades this lock to a write
lock and then degrades it to a read lock again; there will be a
short period when the lock is not held at all.
The internal representation is a multi-valued map from GTIDs to
threads, mapping GTIDs to one or more threads that owns it.
In Group Replication multiple threads can own a GTID whereas if GR
is disabeld there is at most one owner per GTID.
*/
class Owned_gtids {
public:
/**
Constructs a new, empty Owned_gtids object.
@param sid_lock Read-write lock that protects updates to the
number of SIDs.
*/
Owned_gtids(Checkable_rwlock *sid_lock);
/// Destroys this Owned_gtids.
~Owned_gtids();
/**
Add a GTID to this Owned_gtids.
@param gtid The Gtid to add.
@param owner The my_thread_id of the gtid to add.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status add_gtid_owner(const Gtid >id, my_thread_id owner);
/*
Fill all gtids into the given Gtid_set object. It doesn't clear the given
gtid set before filling its owned gtids into it.
*/
void get_gtids(Gtid_set >id_set) const;
/**
Removes the given GTID.
If the gtid does not exist in this Owned_gtids object, does
nothing.
@param gtid The Gtid.
@param owner thread_id of the owner thread
*/
void remove_gtid(const Gtid >id, const my_thread_id owner);
/**
Ensures that this Owned_gtids object can accommodate SIDNOs up to
the given SIDNO.
If this Owned_gtids object needs to be resized, then the lock
will be temporarily upgraded to a write lock and then degraded to
a read lock again; there will be a short period when the lock is
not held at all.
@param sidno The SIDNO.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status ensure_sidno(rpl_sidno sidno);
/// Returns true if there is a least one element of this Owned_gtids
/// set in the other Gtid_set.
bool is_intersection_nonempty(const Gtid_set *other) const;
/// Returns true if this Owned_gtids is empty.
bool is_empty() const {
Gtid_iterator git(this);
return git.get().sidno == 0;
}
/// Returns the maximal sidno that this Owned_gtids currently has space for.
rpl_sidno get_max_sidno() const {
sid_lock->assert_some_lock();
return static_cast<rpl_sidno>(sidno_to_hash.size());
}
/**
Write a string representation of this Owned_gtids to the given buffer.
@param out Buffer to write to.
@return Number of characters written.
*/
int to_string(char *out) const {
char *p = out;
rpl_sidno max_sidno = get_max_sidno();
rpl_sidno sid_map_max_sidno = global_sid_map->get_max_sidno();
for (rpl_sidno sid_i = 0; sid_i < sid_map_max_sidno; sid_i++) {
rpl_sidno sidno = global_sid_map->get_sorted_sidno(sid_i);
if (sidno > max_sidno) continue;
bool printed_sid = false;
for (const auto &key_and_value : *get_hash(sidno)) {
Node *node = key_and_value.second.get();
assert(node != nullptr);
if (!printed_sid) {
p += global_sid_map->sidno_to_sid(sidno).to_string(p);
printed_sid = true;
}
p += sprintf(p, ":%" PRId64 "#%u", node->gno, node->owner);
}
}
*p = 0;
return (int)(p - out);
}
/**
Return an upper bound on the length of the string representation
of this Owned_gtids. The actual length may be smaller. This
includes the trailing '\0'.
*/
size_t get_max_string_length() const {
rpl_sidno max_sidno = get_max_sidno();
size_t ret = 0;
for (rpl_sidno sidno = 1; sidno <= max_sidno; sidno++) {
size_t records = get_hash(sidno)->size();
if (records > 0)
ret +=
binary_log::Uuid::TEXT_LENGTH +
records * (1 + MAX_GNO_TEXT_LENGTH + 1 + MAX_THREAD_ID_TEXT_LENGTH);
}
return 1 + ret;
}
/**
Return true if the given thread is the owner of any gtids.
*/
bool thread_owns_anything(my_thread_id thd_id) const {
Gtid_iterator git(this);
Node *node = git.get_node();
while (node != nullptr) {
if (node->owner == thd_id) return true;
git.next();
node = git.get_node();
}
return false;
}
#ifndef NDEBUG
/**
Debug only: return a newly allocated string representation of
this Owned_gtids.
*/
char *to_string() const {
char *str = (char *)my_malloc(key_memory_Owned_gtids_to_string,
get_max_string_length(), MYF(MY_WME));
assert(str != nullptr);
to_string(str);
return str;
}
/// Debug only: print this Owned_gtids to stdout.
void print() const {
char *str = to_string();
printf("%s\n", str);
my_free(str);
}
#endif
/**
Print this Owned_gtids to the trace file if debug is enabled; no-op
otherwise.
*/
void dbug_print(const char *text [[maybe_unused]] = "") const {
#ifndef NDEBUG
char *str = to_string();
DBUG_PRINT("info", ("%s%s%s", text, *text ? ": " : "", str));
my_free(str);
#endif
}
/**
If thd_id==0, returns true when gtid is not owned by any thread.
If thd_id!=0, returns true when gtid is owned by that thread.
*/
bool is_owned_by(const Gtid >id, const my_thread_id thd_id) const;
private:
/// Represents one owned GTID.
struct Node {
/// GNO of the GTID.
rpl_gno gno;
/// Owner of the GTID.
my_thread_id owner;
};
/// Read-write lock that protects updates to the number of SIDs.
mutable Checkable_rwlock *sid_lock;
/// Returns the hash for the given SIDNO.
malloc_unordered_multimap<rpl_gno, unique_ptr_my_free<Node>> *get_hash(
rpl_sidno sidno) const {
assert(sidno >= 1 && sidno <= get_max_sidno());
sid_lock->assert_some_lock();
return sidno_to_hash[sidno - 1];
}
/// Return true iff this Owned_gtids object contains the given gtid.
bool contains_gtid(const Gtid >id) const;
/// Growable array of hashes.
Prealloced_array<
malloc_unordered_multimap<rpl_gno, unique_ptr_my_free<Node>> *, 8>
sidno_to_hash;
public:
/**
Iterator over all gtids in a Owned_gtids set. This is a const
iterator; it does not allow modification of the set.
*/
class Gtid_iterator {
public:
Gtid_iterator(const Owned_gtids *og)
: owned_gtids(og), sidno(1), hash(nullptr), node(nullptr) {
max_sidno = owned_gtids->get_max_sidno();
if (sidno <= max_sidno) {
hash = owned_gtids->get_hash(sidno);
node_it = hash->begin();
}
next();
}
/// Advance to next GTID.
inline void next() {
#ifndef NDEBUG
if (owned_gtids->sid_lock) owned_gtids->sid_lock->assert_some_wrlock();
#endif
while (sidno <= max_sidno) {
assert(hash != nullptr);
if (node_it != hash->end()) {
node = node_it->second.get();
assert(node != nullptr);
// Jump to next node on next iteration.
++node_it;
return;
}
// hash is initialized on constructor or in previous iteration
// for current SIDNO, so we must increment for next iteration.
sidno++;
if (sidno <= max_sidno) {
hash = owned_gtids->get_hash(sidno);
node_it = hash->begin();
}
}
node = nullptr;
}
/// Return next GTID, or {0,0} if we reached the end.
inline Gtid get() const {
Gtid ret = {0, 0};
if (node) {
ret.sidno = sidno;
ret.gno = node->gno;
}
return ret;
}
/// Return the current GTID Node, or NULL if we reached the end.
inline Node *get_node() const { return node; }
private:
/// The Owned_gtids set we iterate over.
const Owned_gtids *owned_gtids;
/// The SIDNO of the current element, or 1 in the initial iteration.
rpl_sidno sidno;
/// Max SIDNO of the current iterator.
rpl_sidno max_sidno;
/// Current SIDNO hash.
malloc_unordered_multimap<rpl_gno, unique_ptr_my_free<Node>> *hash;
/// Current node iterator on current SIDNO hash.
malloc_unordered_multimap<rpl_gno, unique_ptr_my_free<Node>>::const_iterator
node_it;
/// Current node on current SIDNO hash.
Node *node;
};
};
/**
Represents the server's GTID state: the set of committed GTIDs, the
set of lost gtids, the set of owned gtids, the owner of each owned
gtid, and a Mutex_cond_array that protects updates to gtids of
each SIDNO.
Locking:
This data structure has a read-write lock that protects the number
of SIDNOs, and a Mutex_cond_array that contains one mutex per SIDNO.
The rwlock is always the global_sid_lock.
Access methods generally assert that the caller already holds the
appropriate lock:
- before accessing any global data, hold at least the rdlock.
- before accessing a specific SIDNO in a Gtid_set or Owned_gtids
(e.g., calling Gtid_set::_add_gtid(Gtid)), hold either the rdlock
and the SIDNO's mutex lock; or the wrlock. If you need to hold
multiple mutexes, they must be acquired in order of increasing
SIDNO.
- before starting an operation that needs to access all SIDs
(e.g. Gtid_set::to_string()), hold the wrlock.
The access type (read/write) does not matter; the write lock only
implies that the entire data structure is locked whereas the read
lock implies that everything except SID-specific data is locked.
*/
class Gtid_state {
public:
/**
Constructs a new Gtid_state object.
@param _sid_lock Read-write lock that protects updates to the
number of SIDs.
@param _sid_map Sid_map used by this Gtid_state.
*/
Gtid_state(Checkable_rwlock *_sid_lock, Sid_map *_sid_map)
: sid_lock(_sid_lock),
sid_map(_sid_map),
sid_locks(sid_lock),
lost_gtids(sid_map, sid_lock),
executed_gtids(sid_map, sid_lock),
gtids_only_in_table(sid_map, sid_lock),
previous_gtids_logged(sid_map, sid_lock),
owned_gtids(sid_lock),
commit_group_sidnos(key_memory_Gtid_state_group_commit_sidno) {}
/**
Add @@GLOBAL.SERVER_UUID to this binlog's Sid_map.
This can't be done in the constructor because the constructor is
invoked at server startup before SERVER_UUID is initialized.
The caller must hold the read lock or write lock on sid_locks
before invoking this function.
@retval 0 Success
@retval 1 Error (out of memory or IO error).
*/
int init();
/**
Reset the state and persistor after RESET MASTER: remove all logged
and lost gtids, but keep owned gtids as they are.
The caller must hold the write lock on sid_lock before calling
this function.
@param thd Thread requesting to reset the persistor
@retval 0 Success
@retval -1 Error
*/
int clear(THD *thd);
/**
Returns true if the given GTID is logged.
@param gtid The Gtid to check.
@retval true The gtid is logged in the binary log.
@retval false The gtid is not logged in the binary log.
*/
bool is_executed(const Gtid >id) const {
DBUG_TRACE;
sid_locks.assert_owner(gtid.sidno);
bool ret = executed_gtids.contains_gtid(gtid);
return ret;
}
/**
Returns true if GTID is owned, otherwise returns 0.
@param gtid The Gtid to check.
@return true if some thread owns the gtid, false if the gtid is
not owned
*/
bool is_owned(const Gtid >id) const {
return !owned_gtids.is_owned_by(gtid, 0);
}
#ifdef MYSQL_SERVER
/**
Acquires ownership of the given GTID, on behalf of the given thread.
The caller must lock the SIDNO before invoking this function.
@param thd The thread that will own the GTID.
@param gtid The Gtid to acquire ownership of.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status acquire_ownership(THD *thd, const Gtid >id);
/**
This function updates both the THD and the Gtid_state to reflect that
the transaction set of transactions has ended, and it does this for the
whole commit group (by following the thd->next_to_commit pointer).
It will:
- Clean up the thread state when a thread owned GTIDs is empty.
- Release ownership of all GTIDs owned by the THDs. This removes
the GTIDs from Owned_gtids and clears the ownership status in the
THDs object.
- Add the owned GTIDs to executed_gtids when the thread is committing.
- Decrease counters of GTID-violating transactions.
- Send a broadcast on the condition variable for every sidno for
which we released ownership.
@param first_thd The first thread of the group commit that needs GTIDs to
be updated.
*/
void update_commit_group(THD *first_thd);
/**
Remove the GTID owned by thread from owned GTIDs, stating that
thd->owned_gtid was committed.
This will:
- remove owned GTID from owned_gtids;
- remove all owned GTIDS from thd->owned_gtid and thd->owned_gtid_set;
@param thd Thread for which owned gtids are updated.
*/
void update_on_commit(THD *thd);
/**
Update the state after the given thread has rollbacked.
This will:
- release ownership of all GTIDs owned by the THD;
- remove owned GTID from owned_gtids;
- remove all owned GTIDS from thd->owned_gtid and thd->owned_gtid_set;
- send a broadcast on the condition variable for every sidno for
which we released ownership.
@param thd Thread for which owned gtids are updated.
*/
void update_on_rollback(THD *thd);
/**
Acquire anonymous ownership.
The caller must hold either sid_lock.rdlock or
sid_lock.wrlock. (The caller must have taken the lock and checked
that gtid_mode!=ON before calling this function, or else the
gtid_mode could have changed to ON by a concurrent SET GTID_MODE.)
*/
void acquire_anonymous_ownership() {
DBUG_TRACE;
sid_lock->assert_some_lock();
assert(global_gtid_mode.get() != Gtid_mode::ON);
#ifndef NDEBUG
int32 new_value =
#endif
++atomic_anonymous_gtid_count;
DBUG_PRINT("info",
("atomic_anonymous_gtid_count increased to %d", new_value));
assert(new_value >= 1);
return;
}
/// Release anonymous ownership.
void release_anonymous_ownership() {
DBUG_TRACE;
sid_lock->assert_some_lock();
assert(global_gtid_mode.get() != Gtid_mode::ON);
#ifndef NDEBUG
int32 new_value =
#endif
--atomic_anonymous_gtid_count;
DBUG_PRINT("info",
("atomic_anonymous_gtid_count decreased to %d", new_value));
assert(new_value >= 0);
return;
}
/// Return the number of clients that hold anonymous ownership.
int32 get_anonymous_ownership_count() { return atomic_anonymous_gtid_count; }
/**
Increase the global counter when starting a GTID-violating
transaction having GTID_NEXT=AUTOMATIC.
*/
void begin_automatic_gtid_violating_transaction() {
DBUG_TRACE;
assert(global_gtid_mode.get() <= Gtid_mode::OFF_PERMISSIVE);
assert(get_gtid_consistency_mode() != GTID_CONSISTENCY_MODE_ON);
#ifndef NDEBUG
int32 new_value =
#endif
++atomic_automatic_gtid_violation_count;
DBUG_PRINT(
"info",
("ongoing_automatic_gtid_violating_transaction_count increased to %d",
new_value));
assert(new_value >= 1);
return;
}
/**
Decrease the global counter when ending a GTID-violating
transaction having GTID_NEXT=AUTOMATIC.
*/
void end_automatic_gtid_violating_transaction() {
DBUG_TRACE;
#ifndef NDEBUG
global_sid_lock->rdlock();
assert(global_gtid_mode.get() <= Gtid_mode::OFF_PERMISSIVE);
assert(get_gtid_consistency_mode() != GTID_CONSISTENCY_MODE_ON);
global_sid_lock->unlock();
int32 new_value =
#endif
--atomic_automatic_gtid_violation_count;
DBUG_PRINT(
"info",
("ongoing_automatic_gtid_violating_transaction_count decreased to %d",
new_value));
assert(new_value >= 0);
return;
}
/**
Return the number of ongoing GTID-violating transactions having
GTID_NEXT=AUTOMATIC.
*/
int32 get_automatic_gtid_violating_transaction_count() {
return atomic_automatic_gtid_violation_count;
}
/**
Increase the global counter when starting a GTID-violating
transaction having GTID_NEXT=ANONYMOUS.
*/
void begin_anonymous_gtid_violating_transaction() {
DBUG_TRACE;
assert(global_gtid_mode.get() != Gtid_mode::ON);
assert(get_gtid_consistency_mode() != GTID_CONSISTENCY_MODE_ON);
#ifndef NDEBUG
int32 new_value =
#endif
++atomic_anonymous_gtid_violation_count;
DBUG_PRINT("info", ("atomic_anonymous_gtid_violation_count increased to %d",
new_value));
assert(new_value >= 1);
return;
}
/**
Decrease the global counter when ending a GTID-violating
transaction having GTID_NEXT=ANONYMOUS.
*/
void end_anonymous_gtid_violating_transaction() {
DBUG_TRACE;
#ifndef NDEBUG
global_sid_lock->rdlock();
assert(global_gtid_mode.get() != Gtid_mode::ON);
assert(get_gtid_consistency_mode() != GTID_CONSISTENCY_MODE_ON);
global_sid_lock->unlock();
int32 new_value =
#endif
--atomic_anonymous_gtid_violation_count;
DBUG_PRINT(
"info",
("ongoing_anonymous_gtid_violating_transaction_count decreased to %d",
new_value));
assert(new_value >= 0);
return;
}
void end_gtid_violating_transaction(THD *thd);
/**
Return the number of ongoing GTID-violating transactions having
GTID_NEXT=AUTOMATIC.
*/
int32 get_anonymous_gtid_violating_transaction_count() {
return atomic_anonymous_gtid_violation_count;
}
/**
Increase the global counter when starting a call to
WAIT_FOR_EXECUTED_GTID_SET or WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS.
*/
void begin_gtid_wait() {
DBUG_TRACE;
assert(global_gtid_mode.get() != Gtid_mode::OFF);
#ifndef NDEBUG
int32 new_value =
#endif
++atomic_gtid_wait_count;
DBUG_PRINT("info", ("atomic_gtid_wait_count changed from %d to %d",
new_value - 1, new_value));
assert(new_value >= 1);
return;
}
/**
Decrease the global counter when ending a call to
WAIT_FOR_EXECUTED_GTID_SET or WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS.
*/
void end_gtid_wait() {
DBUG_TRACE;
assert(global_gtid_mode.get() != Gtid_mode::OFF);
#ifndef NDEBUG
int32 new_value =
#endif
--atomic_gtid_wait_count;
DBUG_PRINT("info", ("atomic_gtid_wait_count changed from %d to %d",
new_value + 1, new_value));
assert(new_value >= 0);
return;
}
/**
Return the number of clients that have an ongoing call to
WAIT_FOR_EXECUTED_GTID_SET or WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS.
*/
int32 get_gtid_wait_count() { return atomic_gtid_wait_count; }
#endif // ifdef MYSQL_SERVER
/**
Computes the next available GNO.
@param sidno The GTID's SIDNO.
@retval -1 The range of GNOs was exhausted (i.e., more than 1<<63-1
GTIDs with the same UUID have been generated).
@retval >0 The GNO for the GTID.
*/
rpl_gno get_automatic_gno(rpl_sidno sidno) const;
private:
/**
The next_free_gno variable will be set with the supposed next free GNO
every time a new GNO is delivered automatically or when a transaction is
rolled back, releasing a GNO smaller than the last one delivered.
It was introduced in an optimization of Gtid_state::get_automatic_gno and
Gtid_state::generate_automatic_gtid functions.
Locking scheme
This variable can be read and modified in four places:
- During server startup, holding global_sid_lock.wrlock;
- By a client thread holding global_sid_lock.wrlock (doing a RESET MASTER);
- By a client thread calling MYSQL_BIN_LOG::write_transaction function
(often the group commit FLUSH stage leader). It will call
Gtid_state::generate_automatic_gtid, that will acquire
global_sid_lock.rdlock and lock_sidno(get_server_sidno()) when getting a
new automatically generated GTID;
- By a client thread rolling back, holding global_sid_lock.rdlock
and lock_sidno(get_server_sidno()).
*/
rpl_gno next_free_gno;
public:
/**
Return the last executed GNO for a given SIDNO, e.g.
for the following set: UUID:1-10, UUID:12, UUID:15-20
20 will be returned.
@param sidno The GTID's SIDNO.
@retval The GNO or 0 if set is empty.
*/
rpl_gno get_last_executed_gno(rpl_sidno sidno) const;
/**
Generates the GTID (or ANONYMOUS, if GTID_MODE = OFF or
OFF_PERMISSIVE) for the THD, and acquires ownership.
@param thd The thread.
@param specified_sidno Externally generated sidno.
@param specified_gno Externally generated gno.
@param[in,out] locked_sidno This parameter should be used when there is
a need of generating many GTIDs without having
to acquire/release a sidno_lock many times.
The caller must hold global_sid_lock and unlock
the locked_sidno after invocation when
locked_sidno > 0 if locked_sidno!=NULL.
The caller must not hold global_sid_lock when
locked_sidno==NULL.
See comments on function code to more details.
@return RETURN_STATUS_OK or RETURN_STATUS_ERROR. Error can happen
in case of out of memory or if the range of GNOs was exhausted.
*/
enum_return_status generate_automatic_gtid(THD *thd,
rpl_sidno specified_sidno = 0,
rpl_gno specified_gno = 0,
rpl_sidno *locked_sidno = nullptr);
/// Locks a mutex for the given SIDNO.
void lock_sidno(rpl_sidno sidno) { sid_locks.lock(sidno); }
/// Unlocks a mutex for the given SIDNO.
void unlock_sidno(rpl_sidno sidno) { sid_locks.unlock(sidno); }
/// Broadcasts updates for the given SIDNO.
void broadcast_sidno(rpl_sidno sidno) { sid_locks.broadcast(sidno); }
/// Assert that we own the given SIDNO.
void assert_sidno_lock_owner(rpl_sidno sidno) const {
sid_locks.assert_owner(sidno);
}
#ifdef MYSQL_SERVER
/**
Wait for a signal on the given SIDNO.
NOTE: This releases a lock!
This requires that the caller holds a read lock on sid_lock. It
will release the lock before waiting; neither global_sid_lock nor
the mutex lock on SIDNO will not be held when this function
returns.
@param thd THD object of the caller.
@param sidno Sidno to wait for.
@param[in] abstime The absolute point in time when the wait times
out and stops, or NULL to wait indefinitely.
@param[in] update_thd_status when true updates the stage info with
the new wait condition, when false keeps the current stage info.
@retval false Success.
@retval true Failure: either timeout or thread was killed. If
thread was killed, the error has been generated.
*/
bool wait_for_sidno(THD *thd, rpl_sidno sidno, struct timespec *abstime,
bool update_thd_status = true);
/**
This is only a shorthand for wait_for_sidno, which contains
additional debug printouts and assertions for the case when the
caller waits for one specific GTID.
*/
bool wait_for_gtid(THD *thd, const Gtid >id,
struct timespec *abstime = nullptr);
/**
Wait until the given Gtid_set is included in @@GLOBAL.GTID_EXECUTED.
@param thd The calling thread.
@param gtid_set Gtid_set to wait for.
@param[in] timeout The maximum number of milliseconds that the
function should wait, or 0 to wait indefinitely.
@param[in] update_thd_status when true updates the stage info with
the new wait condition, when false keeps the current stage info.
@retval false Success.
@retval true Failure: either timeout or thread was killed. If
thread was killed, the error has been generated.
*/
bool wait_for_gtid_set(THD *thd, Gtid_set *gtid_set, double timeout,
bool update_thd_status = true);
#endif // ifdef MYSQL_SERVER
/**
Locks one mutex for each SIDNO where the given Gtid_set has at
least one GTID. Locks are acquired in order of increasing SIDNO.
*/
void lock_sidnos(const Gtid_set *set);
/**
Unlocks the mutex for each SIDNO where the given Gtid_set has at
least one GTID.
*/
void unlock_sidnos(const Gtid_set *set);
/**
Broadcasts the condition variable for each SIDNO where the given
Gtid_set has at least one GTID.
*/
void broadcast_sidnos(const Gtid_set *set);
/**
Ensure that owned_gtids, executed_gtids, lost_gtids, gtids_only_in_table,
previous_gtids_logged and sid_locks have room for at least as many SIDNOs
as sid_map.
This function must only be called in one place:
Sid_map::add_sid().
Requires that the write lock on sid_locks is held. If any object
needs to be resized, then the lock will be temporarily upgraded to
a write lock and then degraded to a read lock again; there will be
a short period when the lock is not held at all.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status ensure_sidno();
/**
Adds the given Gtid_set to lost_gtids and executed_gtids.
lost_gtids must be a subset of executed_gtids.
purged_gtid and executed_gtid sets are appended with the argument set
provided the latter is disjoint with gtid_executed owned_gtids.
Requires that the caller holds global_sid_lock.wrlock.
@param[in,out] gtid_set The gtid_set to add. If the gtid_set
does not start with a plus sign (starts_with_plus is false),
@@GLOBAL.GTID_PURGED will be removed from the gtid_set.
@param starts_with_plus If true, the gtid_set passed is required to
be disjoint from @@GLOBAL.GTID_PURGED; if false, the gtid_set passed
is required to be a superset of @@GLOBAL.GTID_PURGED.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status add_lost_gtids(Gtid_set *gtid_set, bool starts_with_plus);
/** Updates previously logged GTID set before writing to table. */
void update_prev_gtids(Gtid_set *write_gtid_set);
/// Return a pointer to the Gtid_set that contains the lost gtids.
const Gtid_set *get_lost_gtids() const { return &lost_gtids; }
/*
Return a pointer to the Gtid_set that contains the stored gtids
in gtid_executed table.
*/
const Gtid_set *get_executed_gtids() const { return &executed_gtids; }
/*
Return a pointer to the Gtid_set that contains the stored gtids
only in gtid_executed table, not in binlog files.
*/
const Gtid_set *get_gtids_only_in_table() const {
return >ids_only_in_table;
}
/*
Return a pointer to the Gtid_set that contains the previous stored
gtids in the last binlog file.
*/
const Gtid_set *get_previous_gtids_logged() const {
return &previous_gtids_logged;
}
/// Return a pointer to the Owned_gtids that contains the owned gtids.
const Owned_gtids *get_owned_gtids() const { return &owned_gtids; }
/// Return the server's SID's SIDNO
rpl_sidno get_server_sidno() const { return server_sidno; }
/// Return the server's SID
const rpl_sid &get_server_sid() const {
return global_sid_map->sidno_to_sid(server_sidno);
}
#ifndef NDEBUG
/**
Debug only: Returns an upper bound on the length of the string
generated by to_string(), not counting '\0'. The actual length
may be shorter.
*/
size_t get_max_string_length() const {
return owned_gtids.get_max_string_length() +
executed_gtids.get_string_length() + lost_gtids.get_string_length() +
gtids_only_in_table.get_string_length() +
previous_gtids_logged.get_string_length() + 150;
}
/// Debug only: Generate a string in the given buffer and return the length.
int to_string(char *buf) const {
char *p = buf;
p += sprintf(p, "Executed GTIDs:\n");
p += executed_gtids.to_string(p);
p += sprintf(p, "\nOwned GTIDs:\n");
p += owned_gtids.to_string(p);
p += sprintf(p, "\nLost GTIDs:\n");
p += lost_gtids.to_string(p);
p += sprintf(p, "\nGTIDs only_in_table:\n");
p += lost_gtids.to_string(p);
return (int)(p - buf);
}
/// Debug only: return a newly allocated string, or NULL on out-of-memory.
char *to_string() const {
char *str = (char *)my_malloc(key_memory_Gtid_state_to_string,
get_max_string_length(), MYF(MY_WME));
to_string(str);
return str;
}
/// Debug only: print this Gtid_state to stdout.
void print() const {
char *str = to_string();
printf("%s", str);
my_free(str);
}
#endif
/**
Print this Gtid_state to the trace file if debug is enabled; no-op
otherwise.
*/
void dbug_print(const char *text [[maybe_unused]] = "") const {
#ifndef NDEBUG
sid_lock->assert_some_wrlock();
char *str = to_string();
DBUG_PRINT("info", ("%s%s%s", text, *text ? ": " : "", str));
my_free(str);
#endif
}
/**
Save gtid owned by the thd into executed_gtids variable
and gtid_executed table.
@param thd Session to commit
@retval
0 OK
@retval
-1 Error
*/
int save(THD *thd);
/**
Insert the gtid set into table.
@param gtid_set contains a set of gtid, which holds
the sidno and the gno.
@retval
0 OK
@retval
-1 Error
*/
int save(const Gtid_set *gtid_set);
/**
Save the set of gtids logged in the last binlog into gtid_executed table.
@retval
0 OK
@retval
-1 Error
*/
int save_gtids_of_last_binlog_into_table();
/**
Fetch gtids from gtid_executed table and store them into
gtid_executed set.
@retval
0 OK
@retval
1 The table was not found.
@retval
-1 Error
*/
int read_gtid_executed_from_table();
/**
Compress the gtid_executed table, read each row by the PK(sid, gno_start)
in increasing order, compress the first consecutive gtids range
(delete consecutive gtids from the second consecutive gtid, then
update the first gtid) within a single transaction.
@param thd Thread requesting to compress the table
@retval
0 OK
@retval
1 The table was not found.
@retval
-1 Error
*/
int compress(THD *thd);
#ifdef MYSQL_SERVER
/**
Push a warning to client if user is modifying the gtid_executed
table explicitly by a non-XA transaction. Push an error to client
if user is modifying it explicitly by a XA transaction.
@param thd Thread requesting to access the table
@param table The table is being accessed.
@retval 0 No warning or error was pushed to the client.
@retval 1 Push a warning to client.
@retval 2 Push an error to client.
*/
int warn_or_err_on_modify_gtid_table(THD *thd, Table_ref *table);
#endif
private:
/**
Remove the GTID owned by thread from owned GTIDs.
This will:
- Clean up the thread state if the thread owned GTIDs is empty.
- Release ownership of all GTIDs owned by the THD. This removes
the GTID from Owned_gtids and clears the ownership status in the
THD object.
- Add the owned GTID to executed_gtids if the is_commit flag is
set.
- Decrease counters of GTID-violating transactions.
- Send a broadcast on the condition variable for every sidno for
which we released ownership.
@param[in] thd Thread for which owned gtids are updated.
@param[in] is_commit If true, the update is for a commit (not a rollback).
*/
void update_gtids_impl(THD *thd, bool is_commit);
#ifdef HAVE_GTID_NEXT_LIST
/// Lock all SIDNOs owned by the given THD.
void lock_owned_sidnos(const THD *thd);
#endif
/// Unlock all SIDNOs owned by the given THD.
void unlock_owned_sidnos(const THD *thd);
/// Broadcast the condition for all SIDNOs owned by the given THD.
void broadcast_owned_sidnos(const THD *thd);
/// Read-write lock that protects updates to the number of SIDs.
mutable Checkable_rwlock *sid_lock;
/// The Sid_map used by this Gtid_state.
mutable Sid_map *sid_map;
/// Contains one mutex/cond pair for every SIDNO.
Mutex_cond_array sid_locks;
/**
The set of GTIDs that existed in some previously purged binary log.
This is always a subset of executed_gtids.
*/
Gtid_set lost_gtids;
/*
The set of GTIDs that has been executed and
stored into gtid_executed table.
*/
Gtid_set executed_gtids;
/*
The set of GTIDs that exists only in gtid_executed table, not in
binlog files.
*/
Gtid_set gtids_only_in_table;
/* The previous GTIDs in the last binlog. */
Gtid_set previous_gtids_logged;
/// The set of GTIDs that are owned by some thread.
Owned_gtids owned_gtids;
/// The SIDNO for this server.
rpl_sidno server_sidno;
/// The number of anonymous transactions owned by any client.
std::atomic<int32> atomic_anonymous_gtid_count{0};
/// The number of GTID-violating transactions that use GTID_NEXT=AUTOMATIC.
std::atomic<int32> atomic_automatic_gtid_violation_count{0};
/// The number of GTID-violating transactions that use GTID_NEXT=AUTOMATIC.
std::atomic<int32> atomic_anonymous_gtid_violation_count{0};
/// The number of clients that are executing
/// WAIT_FOR_EXECUTED_GTID_SET or WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS.
std::atomic<int32> atomic_gtid_wait_count{0};
/// Used by unit tests that need to access private members.
#ifdef FRIEND_OF_GTID_STATE
friend FRIEND_OF_GTID_STATE;
#endif
/**
This is a sub task of update_on_rollback responsible only to handle
the case of a thread that needs to skip GTID operations when it has
"failed to commit".
Administrative commands [CHECK|REPAIR|OPTIMIZE|ANALYZE] TABLE
are written to the binary log even when they fail. When the
commands fail, they will call update_on_rollback; later they will
write the binary log. But we must not do any of the things in
update_gtids_impl if we are going to write the binary log. So
these statements set the skip_gtid_rollback flag, which tells
update_on_rollback to return early. When the statements are
written to the binary log they will call update_on_commit as
usual.
@param[in] thd - Thread to be evaluated.
@retval true The transaction should skip the rollback, false otherwise.
*/
bool update_gtids_impl_check_skip_gtid_rollback(THD *thd);
/**
This is a sub task of update_gtids_impl responsible only to handle
the case of a thread that owns nothing and does not violate GTID
consistency.
If the THD does not own anything, there is nothing to do, so we can do an
early return of the update process. Except if there is a GTID consistency
violation; then we need to decrease the counter, so then we can continue
executing inside update_gtids_impl.
@param[in] thd - Thread to be evaluated.
@retval true The transaction can be skipped because it owns nothing and
does not violate GTID consistency, false otherwise.
*/
bool update_gtids_impl_do_nothing(THD *thd);
/**
This is a sub task of update_gtids_impl responsible only to evaluate
if the thread is committing in the middle of a statement by checking
THD's is_commit_in_middle_of_statement flag.
This flag is true for anonymous transactions, when the
'transaction' has been split into multiple transactions in the
binlog, and the present transaction is not the last one.
This means two things:
- We should not release anonymous ownership in case
gtid_next=anonymous. If we did, it would be possible for user
to set GTID_MODE=ON from a concurrent transaction, making it
impossible to commit the current transaction.
- We should not decrease the counters for GTID-violating
statements. If we did, it would be possible for a concurrent
client to set ENFORCE_GTID_CONSISTENCY=ON despite there is an
ongoing transaction that violates GTID consistency.
The flag is set in two cases:
1. We are committing the statement cache when there are more
changes in the transaction cache.
This happens either because a single statement in the
beginning of a transaction updates both transactional and
non-transactional tables, or because we are committing a
non-transactional update in the middle of a transaction when
binlog_direct_non_transactional_updates=1.
In this case, the flag is set further down in this function.
2. The statement is one of the special statements that may
generate multiple transactions: CREATE...SELECT, DROP TABLE,
DROP DATABASE. See comment for THD::owned_gtid in
sql/sql_class.h.
In this case, the THD::is_commit_in_middle_of_statement flag
is set by the caller and the flag becomes true here.
@param[in] thd - Thread to be evaluated.
@return The value of thread's is_commit_in_middle_of_statement flag.
*/
bool update_gtids_impl_begin(THD *thd);
/**
Handle the case that the thread own a set of GTIDs.
This is a sub task of update_gtids_impl responsible only to handle
the case of a thread with a set of GTIDs being updated.
- Release ownership of the GTIDs owned by the THD. This removes
the GTID from Owned_gtids and clears the ownership status in the
THD object.
- Add the owned GTIDs to executed_gtids if the is_commit flag is set.
- Send a broadcast on the condition variable for the sidno which we
released ownership.
@param[in] thd - Thread for which owned GTID set should be updated.
@param[in] is_commit - If the thread is being updated by a commit.
*/
void update_gtids_impl_own_gtid_set(THD *thd, bool is_commit);
/**
Lock a given sidno of a transaction being updated.
This is a sub task of update_gtids_impl responsible only to lock the
sidno of the GTID being updated.
@param[in] sidno - The sidno to be locked.
*/
void update_gtids_impl_lock_sidno(rpl_sidno sidno);
/**
Locks the sidnos of all the GTIDs of the commit group starting on the
transaction passed as parameter.
This is a sub task of update_commit_group responsible only to lock the
sidno(s) of the GTID(s) being updated.
The function should follow thd->next_to_commit to lock all sidnos of all
transactions being updated in a group.
@param[in] thd - Thread that owns the GTID(s) to be updated or leader
of the commit group in the case of a commit group
update.
*/
void update_gtids_impl_lock_sidnos(THD *thd);
/**
Handle the case that the thread own a single non-anonymous GTID.
This is a sub task of update_gtids_impl responsible only to handle
the case of a thread with a single non-anonymous GTID being updated
either for commit or rollback.
- Release ownership of the GTID owned by the THD. This removes
the GTID from Owned_gtids and clears the ownership status in the
THD object.
- Add the owned GTID to executed_gtids if the is_commit flag is set.
- Send a broadcast on the condition variable for the sidno which we
released ownership.
@param[in] thd - Thread to be updated that owns single non-anonymous GTID.
@param[in] is_commit - If the thread is being updated by a commit.
*/
void update_gtids_impl_own_gtid(THD *thd, bool is_commit);
/**
Unlock a given sidno after broadcasting its changes.
This is a sub task of update_gtids_impl responsible only to
unlock the sidno of the GTID being updated after broadcasting
its changes.
@param[in] sidno - The sidno to be broadcasted and unlocked.
*/
void update_gtids_impl_broadcast_and_unlock_sidno(rpl_sidno sidno);
/**
Unlocks all locked sidnos after broadcasting their changes.
This is a sub task of update_commit_group responsible only to
unlock the sidno(s) of the GTID(s) being updated after broadcasting
their changes.
*/
void update_gtids_impl_broadcast_and_unlock_sidnos();
/**
Handle the case that the thread owns ANONYMOUS GTID.
This is a sub task of update_gtids_impl responsible only to handle
the case of a thread with an ANONYMOUS GTID being updated.
- Release ownership of the anonymous GTID owned by the THD and clears
the ownership status in the THD object.
- Decrease counters of GTID-violating transactions.
@param[in] thd - Thread to be updated that owns anonymous GTID.
@param[in,out] more_trx - If the 'transaction' has been split into
multiple transactions in the binlog.
This is firstly assigned with the return of
Gtid_state::update_gtids_impl_begin function, and
its value can be set to true when
Gtid_state::update_gtids_impl_anonymous_gtid
detects more content on the transaction cache.
*/
void update_gtids_impl_own_anonymous(THD *thd, bool *more_trx);
/**
Handle the case that the thread owns nothing.
This is a sub task of update_gtids_impl responsible only to handle
the case of a thread that owns nothing being updated.
There are two cases when this happens:
- Normally, it is a rollback of an automatic transaction, so
the is_commit is false and gtid_next=automatic.
- There is also a corner case. This case may happen for a transaction
that uses GTID_NEXT=AUTOMATIC, and violates GTID_CONSISTENCY, and
commits changes to the database, but does not write to the binary log,
so that no GTID is generated. An example is CREATE TEMPORARY TABLE
inside a transaction when binlog_format=row. Despite the thread does
not own anything, the GTID consistency violation makes it necessary to
call end_gtid_violating_transaction. Therefore
MYSQL_BIN_LOG::gtid_end_transaction will call
gtid_state->update_on_commit in this case, and subsequently we will
reach this case.
@param[in] thd - Thread to be updated that owns anonymous GTID.
*/
void update_gtids_impl_own_nothing(THD *thd);
/**
Handle the final part of update_gtids_impl.
This is a sub task of update_gtids_impl responsible only to handle
the call to end_gtid_violating_transaction function when there is no
more transactions split after the current transaction.
@param[in] thd - Thread for which owned GTID is updated.
@param[in] more_trx - This is the value returned from
Gtid_state::update_gtids_impl_begin and can be
changed for transactions owning anonymous GTID at
Gtid_state::update_gtids_impl_own_anonymous.
*/
void update_gtids_impl_end(THD *thd, bool more_trx);
/**
This array is used by Gtid_state_update_gtids_impl* functions.
The array items (one per sidno of the sid_map) will be set as true for
each sidno that requires to be locked when updating a set of GTIDs
(at Gtid_set::update_gtids_impl_lock_sidnos).
The array items will be set false at
Gtid_set::update_gtids_impl_broadcast_and_unlock_sidnos.
It is used to so that lock, unlock, and broadcast operations are only
called once per sidno per commit group, instead of once per transaction.
Its access is protected by:
- global_sid_lock->wrlock when growing and cleaning up;
- MYSQL_BIN_LOG::LOCK_commit when setting true/false on array items.
*/
Prealloced_array<bool, 8> commit_group_sidnos;
/**
Ensure that commit_group_sidnos have room for the SIDNO passed as
parameter.
This function must only be called in one place:
Gtid_state::ensure_sidno().
@param sidno The SIDNO.
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status ensure_commit_group_sidnos(rpl_sidno sidno);
};
/*
BUG# #18089914 - REFACTORING: RENAME GROUP TO GTID
changed AUTOMATIC_GROUP to AUTOMATIC_GTID
changed ANONYMOUS_GROUP to ANONYMOUS_GTID
changed INVALID_GROUP to INVALID_GTID
changed UNDEFINED_GROUP to UNDEFINED_GTID
changed GTID_GROUPto ASSIGNED_GTID
changed NOT_YET_DETERMINED_GROUP to NOT_YET_DETERMINED_GTID
*/
/**
Enumeration of different types of values for Gtid_specification,
i.e, the different internal states that @@session.gtid_next can be in.
*/
enum enum_gtid_type {
/**
Specifies that the GTID has not been generated yet; it will be
generated on commit. It will depend on the GTID_MODE: if
GTID_MODE<=OFF_PERMISSIVE, then the transaction will be anonymous;
if GTID_MODE>=ON_PERMISSIVE, then the transaction will be assigned
a new GTID.
This is the default value: thd->variables.gtid_next has this state
when GTID_NEXT="AUTOMATIC".
It is important that AUTOMATIC_GTID==0 so that the default value
for thd->variables->gtid_next.type is AUTOMATIC_GTID.
*/
AUTOMATIC_GTID = 0,
/**
Specifies that the transaction has been assigned a GTID (UUID:NUMBER).
thd->variables.gtid_next has this state when GTID_NEXT="UUID:NUMBER".
This is the state of GTID-transactions replicated to the slave.
*/
ASSIGNED_GTID,
/**
Specifies that the transaction is anonymous, i.e., it does not
have a GTID and will never be assigned one.
thd->variables.gtid_next has this state when GTID_NEXT="ANONYMOUS".
This is the state of any transaction generated on a pre-GTID
server, or on a server with GTID_MODE==OFF.
*/
ANONYMOUS_GTID,
/**
GTID_NEXT is set to this state after a transaction with
GTID_NEXT=='UUID:NUMBER' is committed.
This is used to protect against a special case of unsafe
non-transactional updates.
Background: Non-transactional updates are allowed as long as they
are sane. Non-transactional updates must be single-statement
transactions; they must not be mixed with transactional updates in
the same statement or in the same transaction. Since
non-transactional updates must be logged separately from
transactional updates, a single mixed statement would generate two
different transactions.
Problematic case: Consider a transaction, Tx1, that updates two
transactional tables on the master, t1 and t2. Then slave (s1) later
replays Tx1. However, t2 is a non-transactional table at s1. As such, s1
will report an error because it cannot split Tx1 into two different
transactions. Had no error been reported, then Tx1 would be split into Tx1
and Tx2, potentially causing severe harm in case some form of fail-over
procedure is later engaged by s1.
To detect this case on the slave and generate an appropriate error
message rather than causing an inconsistency in the GTID state, we
do as follows. When committing a transaction that has
GTID_NEXT==UUID:NUMBER, we set GTID_NEXT to UNDEFINED_GTID. When
the next part of the transaction is being processed, an error is
generated, because it is not allowed to execute a transaction when
GTID_NEXT==UNDEFINED. In the normal case, the error is not
generated, because there will always be a Gtid_log_event after the
next transaction.
*/
UNDEFINED_GTID,
/**
GTID_NEXT is set to this state by the slave applier thread when it
reads a Format_description_log_event that does not originate from
this server.
Background: when the slave applier thread reads a relay log that
comes from a pre-GTID master, it must preserve the transactions as
anonymous transactions, even if GTID_MODE>=ON_PERMISSIVE. This
may happen, e.g., if the relay log was received when master and
slave had GTID_MODE=OFF or when master and slave were old, and the
relay log is applied when slave has GTID_MODE>=ON_PERMISSIVE.
So the slave thread should set GTID_NEXT=ANONYMOUS for the next
transaction when it starts to process an old binary log. However,
there is no way for the slave to tell if the binary log is old,
until it sees the first transaction. If the first transaction
begins with a Gtid_log_event, we have the GTID there; if it begins
with query_log_event, row events, etc, then this is an old binary
log. So at the time the binary log begins, we just set
GTID_NEXT=NOT_YET_DETERMINED_GTID. If it remains
NOT_YET_DETERMINED when the next transaction begins,
gtid_pre_statement_checks will automatically turn it into an
anonymous transaction. If a Gtid_log_event comes across before
the next transaction starts, then the Gtid_log_event will just set
GTID_NEXT='UUID:NUMBER' accordingly.
*/
NOT_YET_DETERMINED_GTID,
/**
The applier sets GTID_NEXT this state internally, when it
processes an Anonymous_gtid_log_event on a channel having
ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS, before it calls
set_gtid_next. This tells set_gtid_next to generate a new,
sequential GTID, and acquire ownership for it. Thus, this state
is only used for a very brief period of time. It is not
user-visible.
*/
PRE_GENERATE_GTID
};
/// Global state of GTIDs.
extern Gtid_state *gtid_state;
/**
This struct represents a specification of a GTID for a statement to
be executed: either "AUTOMATIC", "ANONYMOUS", or "SID:GNO".
This is a POD. It has to be a POD because it is used in THD::variables.
*/
struct Gtid_specification {
/// The type of this GTID
enum_gtid_type type;
/**
The GTID:
{ SIDNO, GNO } if type == GTID;
{ 0, 0 } if type == AUTOMATIC or ANONYMOUS.
*/
Gtid gtid;
/// Set the type to ASSIGNED_GTID and SID, GNO to the given values.
void set(rpl_sidno sidno, rpl_gno gno) {
gtid.set(sidno, gno);
type = ASSIGNED_GTID;
}
/// Set the type to ASSIGNED_GTID and SID, GNO to the given Gtid.
void set(const Gtid >id_param) { set(gtid_param.sidno, gtid_param.gno); }
/// Set the type to AUTOMATIC_GTID.
void set_automatic() { type = AUTOMATIC_GTID; }
/// Set the type to ANONYMOUS_GTID.
void set_anonymous() { type = ANONYMOUS_GTID; }
/// Set the type to NOT_YET_DETERMINED_GTID.
void set_not_yet_determined() { type = NOT_YET_DETERMINED_GTID; }
/// Set to undefined. Must only be called if the type is ASSIGNED_GTID.
void set_undefined() {
assert(type == ASSIGNED_GTID);
type = UNDEFINED_GTID;
}
/// Return true if this Gtid_specification is equal to 'other'.
bool equals(const Gtid_specification &other) const {
return (type == other.type &&
(type != ASSIGNED_GTID || gtid.equals(other.gtid)));
}
/**
Return true if this Gtid_specification is a ASSIGNED_GTID with the
same SID, GNO as 'other_gtid'.
*/
bool equals(const Gtid &other_gtid) const {
return type == ASSIGNED_GTID && gtid.equals(other_gtid);
}
#ifdef MYSQL_SERVER
/**
Parses the given string and stores in this Gtid_specification.
@param sid_map sid_map to use when converting SID to a sidno.
@param text The text to parse
@return RETURN_STATUS_OK or RETURN_STATUS_REPORTED_ERROR.
*/
enum_return_status parse(Sid_map *sid_map, const char *text);
/// Returns true if the given string is a valid Gtid_specification.
static bool is_valid(const char *text);
#endif
static const int MAX_TEXT_LENGTH = Gtid::MAX_TEXT_LENGTH;
/**
Writes this Gtid_specification to the given string buffer.
@param sid_map Sid_map to use if the type of this
Gtid_specification is ASSIGNED_GTID.
@param [out] buf The buffer
@param need_lock If true, this function acquires global_sid_lock
before looking up the sidno in sid_map, and then releases it. If
false, this function asserts that the lock is held by the caller.
@retval The number of characters written.
*/
int to_string(const Sid_map *sid_map, char *buf,
bool need_lock = false) const;
/**
Writes this Gtid_specification to the given string buffer.
@param sid SID to use if the type of this Gtid_specification is
ASSIGNED_GTID. Can be NULL if this Gtid_specification is
ANONYMOUS_GTID or AUTOMATIC_GTID.
@param[out] buf The buffer
@retval The number of characters written.
*/
int to_string(const rpl_sid *sid, char *buf) const;
#ifndef NDEBUG
/// Debug only: print this Gtid_specification to stdout.
void print() const {
char buf[MAX_TEXT_LENGTH + 1];
to_string(global_sid_map, buf);
printf("%s\n", buf);
}
#endif
/**
Print this Gtid_specification to the trace file if debug is
enabled; no-op otherwise.
*/
void dbug_print(const char *text [[maybe_unused]] = "",
bool need_lock [[maybe_unused]] = false) const {
#ifndef NDEBUG
char buf[MAX_TEXT_LENGTH + 1];
to_string(global_sid_map, buf, need_lock);
DBUG_PRINT("info", ("%s%s%s", text, *text ? ": " : "", buf));
#endif
}
};
/**
Indicates if a statement should be skipped or not. Used as return
value from gtid_before_statement.
*/
enum enum_gtid_statement_status {
/// Statement can execute.
GTID_STATEMENT_EXECUTE,
/// Statement should be cancelled.
GTID_STATEMENT_CANCEL,
/**
Statement should be skipped, but there may be an implicit commit
after the statement if gtid_commit is set.
*/
GTID_STATEMENT_SKIP
};
#ifdef MYSQL_SERVER
/**
Check if current transaction should be skipped, that is, if GTID_NEXT
was already logged.
@param thd The calling thread.
@retval true Transaction was already logged.
@retval false Transaction must be executed.
*/
bool is_already_logged_transaction(const THD *thd);
/**
Perform GTID-related checks before executing a statement:
- Check that the current statement does not contradict
enforce_gtid_consistency.
- Check that there is no implicit commit in a transaction when
GTID_NEXT==UUID:NUMBER.
- Change thd->variables.gtid_next.type to ANONYMOUS_GTID if it is
currently NOT_YET_DETERMINED_GTID.
- Check whether the statement should be cancelled.
@param thd THD object for the session.
@retval GTID_STATEMENT_EXECUTE The normal case: the checks
succeeded, and statement can execute.
@retval GTID_STATEMENT_CANCEL The checks failed; an
error has be generated and the statement must stop.
@retval GTID_STATEMENT_SKIP The checks succeeded, but the GTID has
already been executed (exists in GTID_EXECUTED). So the statement
must not execute; however, if there are implicit commits, then the
implicit commits must execute.
*/
enum_gtid_statement_status gtid_pre_statement_checks(THD *thd);
/**
Perform GTID-related checks before executing a statement, but after
executing an implicit commit before the statement, if any:
If gtid_next=anonymous, but the thread does not hold anonymous
ownership, then acquire anonymous ownership. (Do this only if this
is not an 'innocent' statement, i.e., SET/SHOW/DO/SELECT that does
not invoke a stored function.)
It is important that this is done after the implicit commit, because
the implicit commit may release anonymous ownership.
@param thd THD object for the session
@retval false Success.
@retval true Error. Error can happen if GTID_MODE=ON. The error has
been reported by (a function called by) this function.
*/
bool gtid_pre_statement_post_implicit_commit_checks(THD *thd);
/**
Acquire ownership of the given Gtid_specification.
The Gtid_specification must be of type ASSIGNED_GTID or ANONYMOUS_GTID.
The caller must hold global_sid_lock (normally the rdlock). The
lock may be temporarily released and acquired again. In the end,
the lock will be released, so the caller should *not* release the
lock.
The function will try to acquire ownership of the GTID and update
both THD::gtid_next, Gtid_state::owned_gtids, and
THD::owned_gtid / THD::owned_sid.
@param thd The thread that acquires ownership.
@param spec The Gtid_specification.
@retval false Success: either we have acquired ownership of the
GTID, or it is already included in GTID_EXECUTED and will be
skipped.
@retval true Failure; the thread was killed or an error occurred.
The error has been reported using my_error.
*/
bool set_gtid_next(THD *thd, const Gtid_specification &spec);
#ifdef HAVE_GTID_NEXT_LIST
int gtid_acquire_ownership_multiple(THD *thd);
#endif
/**
Return sidno for a given sid, see Sid_map::add_sid() for details.
*/
rpl_sidno get_sidno_from_global_sid_map(rpl_sid sid);
/**
Return last gno for a given sidno, see
Gtid_state::get_last_executed_gno() for details.
*/
rpl_gno get_last_executed_gno(rpl_sidno sidno);
void gtid_set_performance_schema_values(const THD *thd);
/**
If gtid_next=ANONYMOUS or NOT_YET_DETERMINED, but the thread does
not hold anonymous ownership, acquire anonymous ownership.
@param thd Thread.
@retval true Error (can happen if gtid_mode=ON and
gtid_next=anonymous). The error has already been reported using
my_error.
@retval false Success.
*/
bool gtid_reacquire_ownership_if_anonymous(THD *thd);
/**
The function commits or rolls back the gtid state if it needs to.
It's supposed to be invoked at the end of transaction commit or
rollback, as well as as at the end of XA prepare.
@param thd Thread context
@param needs_to The actual work will be done when the parameter is true
@param do_commit When true the gtid state changes are committed, otherwise
they are rolled back.
*/
inline void gtid_state_commit_or_rollback(THD *thd, bool needs_to,
bool do_commit) {
if (needs_to) {
if (do_commit)
gtid_state->update_on_commit(thd);
else
gtid_state->update_on_rollback(thd);
}
}
#endif // ifdef MYSQL_SERVER
#endif /* RPL_GTID_H_INCLUDED */
|