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
|
/*
Copyright (c) 2000, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "sql/sql_class.h"
#include <assert.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <algorithm>
#include <utility>
#include "field_types.h"
#include "m_ctype.h"
#include "m_string.h"
#include "mutex_lock.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_loglevel.h"
#include "my_systime.h"
#include "my_thread.h"
#include "my_time.h"
#include "mysql/components/services/bits/psi_error_bits.h"
#include "mysql/components/services/log_builtins.h" // LogErr
#include "mysql/components/services/log_shared.h"
#include "mysql/plugin_audit.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_error.h"
#include "mysql/psi/mysql_ps.h"
#include "mysql/psi/mysql_stage.h"
#include "mysql/psi/mysql_statement.h"
#include "mysql/psi/mysql_table.h"
#include "mysql/psi/psi_table.h"
#include "mysql/service_mysql_alloc.h"
#include "mysys_err.h" // EE_OUTOFMEMORY
#include "pfs_statement_provider.h"
#include "rpl_source.h" // unregister_slave
#include "sql/auth/sql_security_ctx.h"
#include "sql/binlog.h"
#include "sql/check_stack.h"
#include "sql/conn_handler/connection_handler_manager.h" // Connection_handler_manager
#include "sql/current_thd.h"
#include "sql/dd/cache/dictionary_client.h" // Dictionary_client
#include "sql/dd/dd_kill_immunizer.h" // dd:DD_kill_immunizer
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/derror.h" // ER_THD
#include "sql/enum_query_type.h"
#include "sql/error_handler.h" // Internal_error_handler
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/item.h"
#include "sql/item_func.h" // user_var_entry
#include "sql/lock.h" // mysql_lock_abort_for_thread
#include "sql/locking_service.h" // release_all_locking_service_locks
#include "sql/log_event.h"
#include "sql/mdl_context_backup.h" // MDL context backup for XA
#include "sql/mysqld.h" // global_system_variables ...
#include "sql/mysqld_thd_manager.h" // Global_THD_manager
#include "sql/parse_location.h"
#include "sql/protocol.h"
#include "sql/protocol_classic.h"
#include "sql/psi_memory_key.h"
#include "sql/query_result.h"
#include "sql/rpl_rli.h" // Relay_log_info
#include "sql/rpl_transaction_write_set_ctx.h"
#include "sql/server_component/mysql_thd_store_imp.h"
#include "sql/sp_cache.h" // sp_cache_clear
#include "sql/sp_head.h" // sp_head
#include "sql/sql_audit.h" // mysql_audit_free_thd
#include "sql/sql_backup_lock.h" // release_backup_lock
#include "sql/sql_base.h" // close_temporary_tables
#include "sql/sql_callback.h" // MYSQL_CALLBACK
#include "sql/sql_cmd.h"
#include "sql/sql_handler.h" // mysql_ha_cleanup
#include "sql/sql_lex.h"
#include "sql/sql_parse.h" // is_update_query
#include "sql/sql_plugin.h" // plugin_thdvar_init
#include "sql/sql_prepare.h" // Prepared_statement
#include "sql/sql_profile.h"
#include "sql/sql_timer.h" // thd_timer_destroy
#include "sql/table.h"
#include "sql/table_cache.h" // table_cache_manager
#include "sql/tc_log.h"
#include "sql/thr_malloc.h"
#include "sql/transaction.h" // trans_rollback
#include "sql/transaction_info.h"
#include "sql/xa.h"
#include "sql/xa/sql_cmd_xa.h" // Sql_cmd_xa_*
#include "sql/xa/transaction_cache.h" // xa::Transaction_cache
#include "storage/perfschema/pfs_instr_class.h" // PFS_CLASS_STAGE
#include "storage/perfschema/terminology_use_previous.h"
#include "template_utils.h"
#include "thr_mutex.h"
class Parse_tree_root;
using std::max;
using std::min;
using std::unique_ptr;
/*
The following is used to initialise Table_ident with a internal
table name
*/
char empty_c_string[1] = {0}; /* used for not defined db */
const char *const THD::DEFAULT_WHERE = "field list";
extern PSI_stage_info stage_waiting_for_disk_space;
#ifndef NDEBUG
/**
For debug purpose only. Used for
MTR mem_cnt_sql_keys, mem_cnt_temptable_keys keys.
@param thd pointer to THD object
*/
bool fail_on_alloc(THD *thd) {
char alloc_name[512];
if (!thd->current_key_name) return false;
if (DBUG_EVALUATE_IF(thd->current_key_name, 1, 0)) {
thd->conn_mem_alloc_number++;
snprintf(alloc_name, sizeof(alloc_name), "alloc_number%llu",
thd->conn_mem_alloc_number);
if (DBUG_EVALUATE_IF(alloc_name, 1, 0)) return true;
}
return false;
}
#endif
void Thd_mem_cnt::disable() {
if (m_enabled) {
flush();
m_enabled = false;
}
}
/**
Increase memory counter at 'alloc' operation. Update
global memory counter.
@param size amount of memory allocated.
*/
void Thd_mem_cnt::alloc_cnt(size_t size) {
mem_counter += size;
max_conn_mem = std::max(max_conn_mem, mem_counter);
if (!m_enabled) {
return;
}
assert(!opt_initialize && m_thd != nullptr);
assert(!m_thd->kill_immunizer || !m_thd->kill_immunizer->is_active() ||
!is_error_mode());
assert(m_thd->is_killable);
#ifndef NDEBUG
if (is_error_mode() && fail_on_alloc(m_thd)) {
m_thd->is_mem_cnt_error_issued = true;
generate_error(ER_DA_CONN_LIMIT, m_thd->variables.conn_mem_limit,
mem_counter);
}
#endif
if (mem_counter > m_thd->variables.conn_mem_limit) {
#ifndef NDEBUG
// Used for testing the entering to idle state
// after successful statement execution (see mem_cnt_common_debug.test).
if (!DBUG_EVALUATE_IF("mem_cnt_no_error_on_exec_session", 1, 0))
#endif
(void)generate_error(ER_DA_CONN_LIMIT, m_thd->variables.conn_mem_limit,
mem_counter);
}
if ((curr_mode & MEM_CNT_UPDATE_GLOBAL_COUNTER) &&
m_thd->variables.conn_global_mem_tracking &&
max_conn_mem > glob_mem_counter) {
const ulonglong curr_mem =
(max_conn_mem / m_thd->variables.conn_mem_chunk_size + 1) *
m_thd->variables.conn_mem_chunk_size;
assert(curr_mem > glob_mem_counter && curr_mem > mem_counter);
ulonglong delta = curr_mem - glob_mem_counter;
ulonglong global_conn_mem_counter_save;
ulonglong global_conn_mem_limit_save;
{
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
global_conn_mem_counter += delta;
global_conn_mem_counter_save = global_conn_mem_counter;
global_conn_mem_limit_save = global_conn_mem_limit;
}
glob_mem_counter = curr_mem;
max_conn_mem = std::max(max_conn_mem, glob_mem_counter);
if (global_conn_mem_counter_save > global_conn_mem_limit_save) {
#ifndef NDEBUG
// Used for testing the entering to idle state
// after successful statement execution (see mem_cnt_common_debug.test).
if (DBUG_EVALUATE_IF("mem_cnt_no_error_on_exec_global", 1, 0)) return;
#endif
(void)generate_error(ER_DA_GLOBAL_CONN_LIMIT, global_conn_mem_limit_save,
global_conn_mem_counter_save);
}
}
}
/**
Decrease memory counter at 'free' operation.
@param size amount of memory freed.
*/
void Thd_mem_cnt::free_cnt(size_t size) {
if (mem_counter >= size) {
mem_counter -= size;
} else {
/* Freeing memory allocated by another. */
mem_counter = 0;
}
}
/**
Function resets current memory counter mode and adjusts
global memory counter according to thread memory counter.
@returns -1 if OOM error, 0 otherwise.
*/
int Thd_mem_cnt::reset() {
restore_mode();
max_conn_mem = mem_counter;
if (m_thd->variables.conn_global_mem_tracking &&
(curr_mode & MEM_CNT_UPDATE_GLOBAL_COUNTER)) {
ulonglong delta;
ulonglong global_conn_mem_counter_save;
ulonglong global_conn_mem_limit_save;
if (glob_mem_counter > mem_counter) {
delta = glob_mem_counter - mem_counter;
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
assert(global_conn_mem_counter >= delta);
global_conn_mem_counter -= delta;
global_conn_mem_counter_save = global_conn_mem_counter;
global_conn_mem_limit_save = global_conn_mem_limit;
} else {
delta = mem_counter - glob_mem_counter;
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
global_conn_mem_counter += delta;
global_conn_mem_counter_save = global_conn_mem_counter;
global_conn_mem_limit_save = global_conn_mem_limit;
}
glob_mem_counter = mem_counter;
if (is_connection_stage &&
(global_conn_mem_counter_save > global_conn_mem_limit_save))
return generate_error(ER_DA_GLOBAL_CONN_LIMIT, global_conn_mem_limit_save,
global_conn_mem_counter_save);
}
if (is_connection_stage && (mem_counter > m_thd->variables.conn_mem_limit))
return generate_error(ER_DA_CONN_LIMIT, m_thd->variables.conn_mem_limit,
mem_counter);
is_connection_stage = false;
return 0;
}
/**
Function flushes memory counters before deleting the memory counter object.
*/
void Thd_mem_cnt::flush() {
max_conn_mem = mem_counter = 0;
if (glob_mem_counter > 0) {
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
assert(global_conn_mem_counter >= glob_mem_counter);
global_conn_mem_counter -= glob_mem_counter;
}
glob_mem_counter = 0;
}
/**
Generate OOM error and set therad to KILL_CONNECTION
state. Do nothing if thread is already killed or any error is
already issued.
@param err_no Error number.
@param mem_limit Memory limit.
@param mem_size Memory size.
@returns -1 if OOM error is generated, 0 otherwise.
*/
int Thd_mem_cnt::generate_error(int err_no, ulonglong mem_limit,
ulonglong mem_size) {
if (is_error_mode()) {
int err_no_tmp = 0;
bool is_log_err = is_error_log_mode();
assert(!m_thd->kill_immunizer || !m_thd->kill_immunizer->is_active());
// Set NO ERROR mode to avoid error message duplication.
no_error_mode();
// No OOM error if any error is already issued or fatal error is set.
if (!m_thd->is_error() && !m_thd->is_fatal_error()) {
MUTEX_LOCK(lock, &m_thd->LOCK_thd_data);
// Ignore OOM error if thread is already killed.
if (!m_thd->killed) {
err_no_tmp = err_no;
m_thd->killed = THD::KILL_CONNECTION;
}
}
if (err_no_tmp) {
m_thd->push_diagnostics_area(&m_da, false);
my_error(err_no_tmp, MYF(0), mem_limit, mem_size);
m_thd->pop_diagnostics_area();
if (is_log_err) {
switch (err_no_tmp) {
case ER_DA_CONN_LIMIT:
LogErr(ERROR_LEVEL, ER_CONN_LIMIT, mem_limit, mem_size);
break;
case ER_DA_GLOBAL_CONN_LIMIT:
LogErr(ERROR_LEVEL, ER_GLOBAL_CONN_LIMIT, mem_limit, mem_size);
break;
default:
assert(0);
}
}
return -1;
}
}
return 0;
}
/**
Set THD error status using memory counter diagnostics area.
*/
void Thd_mem_cnt::set_thd_error_status() const {
m_thd->get_stmt_da()->set_overwrite_status(true);
m_thd->get_stmt_da()->set_error_status(
m_da.mysql_errno(), m_da.message_text(), m_da.returned_sqlstate());
m_thd->get_stmt_da()->set_overwrite_status(false);
}
void THD::Transaction_state::backup(THD *thd) {
this->m_sql_command = thd->lex->sql_command;
this->m_trx = thd->get_transaction();
thd->backup_ha_data(&this->m_ha_data);
this->m_tx_isolation = thd->tx_isolation;
this->m_tx_read_only = thd->tx_read_only;
this->m_thd_option_bits = thd->variables.option_bits;
this->m_sql_mode = thd->variables.sql_mode;
this->m_transaction_psi = thd->m_transaction_psi;
this->m_server_status = thd->server_status;
this->m_in_lock_tables = thd->in_lock_tables;
this->m_time_zone_used = thd->time_zone_used;
this->m_transaction_rollback_request = thd->transaction_rollback_request;
}
void THD::Transaction_state::restore(THD *thd) {
thd->set_transaction(this->m_trx);
thd->restore_ha_data(this->m_ha_data);
thd->tx_isolation = this->m_tx_isolation;
thd->variables.sql_mode = this->m_sql_mode;
thd->tx_read_only = this->m_tx_read_only;
thd->variables.option_bits = this->m_thd_option_bits;
thd->m_transaction_psi = this->m_transaction_psi;
thd->server_status = this->m_server_status;
thd->lex->sql_command = this->m_sql_command;
thd->in_lock_tables = this->m_in_lock_tables;
thd->time_zone_used = this->m_time_zone_used;
thd->transaction_rollback_request = this->m_transaction_rollback_request;
}
THD::Attachable_trx::Attachable_trx(THD *thd, Attachable_trx *prev_trx)
: m_thd(thd),
m_reset_lex(RESET_LEX),
m_prev_attachable_trx(prev_trx),
m_trx_state() {
// Save the transaction state.
m_trx_state.backup(m_thd);
// Save and reset query-tables-list and reset the sql-command.
//
// NOTE: ha_innobase::store_lock() takes the current sql-command into account.
// It must be SQLCOM_SELECT.
//
// Do NOT reset LEX if we're running tests. LEX is used by SELECT statements.
bool reset = (m_reset_lex == RESET_LEX ? true : false);
if (DBUG_EVALUATE_IF("use_attachable_trx", false, reset)) {
m_thd->lex->reset_n_backup_query_tables_list(
m_trx_state.m_query_tables_list);
m_thd->lex->sql_command = SQLCOM_SELECT;
}
// Save and reset open-tables.
m_thd->reset_n_backup_open_tables_state(&m_trx_state.m_open_tables_state,
Open_tables_state::SYSTEM_TABLES);
// Reset transaction state.
m_thd->m_transaction.release(); // it's been backed up.
DBUG_EXECUTE_IF("after_delete_wait", {
const char act[] = "now SIGNAL leader_reached WAIT_FOR leader_proceed";
assert(!debug_sync_set_action(m_thd, STRING_WITH_LEN(act)));
DBUG_SET("-d,after_delete_wait");
DBUG_SET("-d,block_leader_after_delete");
};);
m_thd->m_transaction.reset(new Transaction_ctx());
// Prepare for a new attachable transaction for read-only DD-transaction.
// LOCK_thd_data must be locked to prevent e.g. KILL CONNECTION from
// reading ha_data after clear() but before resize().
mysql_mutex_lock(&m_thd->LOCK_thd_data);
m_thd->ha_data.clear();
m_thd->ha_data.resize(m_thd->ha_data.capacity());
mysql_mutex_unlock(&m_thd->LOCK_thd_data);
// The attachable transaction must used READ COMMITTED isolation level.
m_thd->tx_isolation = ISO_READ_COMMITTED;
// The attachable transaction must be read-only.
m_thd->tx_read_only = true;
// The attachable transaction must be AUTOCOMMIT.
m_thd->variables.option_bits |= OPTION_AUTOCOMMIT;
m_thd->variables.option_bits &= ~OPTION_NOT_AUTOCOMMIT;
m_thd->variables.option_bits &= ~OPTION_BEGIN;
// Nothing should be binlogged from attachable transactions and disabling
// the binary log allows skipping some code related to figuring out what
// log format should be used.
m_thd->variables.option_bits &= ~OPTION_BIN_LOG;
// Possible parent's involvement to multi-statement transaction is masked
m_thd->server_status &= ~SERVER_STATUS_IN_TRANS;
m_thd->server_status &= ~SERVER_STATUS_IN_TRANS_READONLY;
// Reset SQL_MODE during system operations.
m_thd->variables.sql_mode = 0;
// Reset transaction instrumentation.
m_thd->m_transaction_psi = nullptr;
// Reset THD::in_lock_tables so InnoDB won't start acquiring table locks.
m_thd->in_lock_tables = false;
// Reset @@session.time_zone usage indicator for consistency.
m_thd->time_zone_used = false;
/*
InnoDB can ask to start attachable transaction while rolling back
the regular transaction. Reset rollback request flag to avoid it
influencing attachable transaction we are initiating.
*/
m_thd->transaction_rollback_request = false;
}
THD::Attachable_trx::~Attachable_trx() {
// Ensure that the SE didn't request rollback in the attachable transaction.
// Having THD::transaction_rollback_request set most likely means that we've
// experienced some sort of deadlock/timeout while processing the attachable
// transaction. That is not possible by the definition of an attachable
// transaction.
assert(!m_thd->transaction_rollback_request);
// Commit the attachable transaction before discarding transaction state.
// This is mostly needed to properly reset transaction state in SE.
// Note: We can't rely on InnoDB hack which auto-magically commits InnoDB
// transaction when the last table for a statement in auto-commit mode is
// unlocked. Apparently it doesn't work correctly in some corner cases
// (for example, when statement is killed just after tables are locked but
// before any other operations on the table happes). We try not to rely on
// it in other places on SQL-layer as well.
trans_commit_attachable(m_thd);
// Close all the tables that are open till now.
close_thread_tables(m_thd);
// Cleanup connection specific state which was created for attachable
// transaction (for InnoDB removes cached transaction object).
//
// Note that we need to call handlerton::close_connection for all SEs
// and not only SEs which participated in attachable transaction since
// connection specific state can be created when TABLE object is simply
// expelled from the Table Cache (e.g. this happens for MyISAM).
ha_close_connection(m_thd);
// Restore the transaction state.
m_trx_state.restore(m_thd);
m_thd->restore_backup_open_tables_state(&m_trx_state.m_open_tables_state);
bool reset = (m_reset_lex == RESET_LEX ? true : false);
if (DBUG_EVALUATE_IF("use_attachable_trx", false, reset)) {
m_thd->lex->restore_backup_query_tables_list(
m_trx_state.m_query_tables_list);
}
}
THD::Attachable_trx_rw::Attachable_trx_rw(THD *thd)
: Attachable_trx(thd, nullptr) {
m_thd->tx_read_only = false;
m_thd->lex->sql_command = SQLCOM_END;
thd->get_transaction()->xid_state()->set_state(XID_STATE::XA_NOTR);
}
void THD::enter_stage(const PSI_stage_info *new_stage,
PSI_stage_info *old_stage,
const char *calling_func [[maybe_unused]],
const char *calling_file,
const unsigned int calling_line) {
DBUG_PRINT("THD::enter_stage",
("'%s' %s:%d", new_stage ? new_stage->m_name : "", calling_file,
calling_line));
if (old_stage != nullptr) {
old_stage->m_key = m_current_stage_key;
old_stage->m_name = proc_info();
}
if (new_stage != nullptr) {
const char *msg = new_stage->m_name;
#if defined(ENABLED_PROFILING)
profiling->status_change(msg, calling_func, calling_file, calling_line);
#endif
m_current_stage_key = new_stage->m_key;
set_proc_info(msg);
store_cached_properties(cached_properties::RW_STATUS);
m_stage_progress_psi =
MYSQL_SET_STAGE(m_current_stage_key, calling_file, calling_line);
} else {
m_stage_progress_psi = nullptr;
}
return;
}
const char *THD::proc_info(const System_variables &sysvars) const {
DBUG_TRACE;
const char *ret = proc_info();
terminology_use_previous::enum_compatibility_version version =
static_cast<terminology_use_previous::enum_compatibility_version>(
sysvars.terminology_use_previous);
DBUG_PRINT("info", ("session.terminology_use_previous=%d", (int)version));
if ((ret != nullptr) && (version != terminology_use_previous::NONE)) {
auto compatible_name_info =
terminology_use_previous::lookup(PFS_CLASS_STAGE, ret, false);
#ifndef NDEBUG
if (compatible_name_info.version)
DBUG_PRINT(
"info",
("old name found for proc info (aka stage) <%s>; "
"old name is <%s>; "
"old version is %d; "
"returning %s name",
ret, compatible_name_info.old_name, compatible_name_info.version,
version <= compatible_name_info.version ? "old" : "new"));
else
DBUG_PRINT("info", ("no old name for proc info (aka stage) <%s>", ret));
#endif // ifndef NDEBUG
if (version <= compatible_name_info.version)
ret = compatible_name_info.old_name;
}
return ret;
}
void Open_tables_state::set_open_tables_state(Open_tables_state *state) {
this->open_tables = state->open_tables;
this->temporary_tables = state->temporary_tables;
this->lock = state->lock;
this->extra_lock = state->extra_lock;
this->locked_tables_mode = state->locked_tables_mode;
this->state_flags = state->state_flags;
this->m_reprepare_observers = state->m_reprepare_observers;
}
void Open_tables_state::reset_open_tables_state() {
open_tables = nullptr;
temporary_tables = nullptr;
lock = nullptr;
extra_lock = nullptr;
locked_tables_mode = LTM_NONE;
state_flags = 0U;
reset_reprepare_observers();
}
THD::THD(bool enable_plugins)
: Query_arena(&main_mem_root, STMT_REGULAR_EXECUTION),
mark_used_columns(MARK_COLUMNS_READ),
want_privilege(0),
main_lex(new LEX),
lex(main_lex.get()),
m_dd_client(new dd::cache::Dictionary_client(this)),
m_query_string(NULL_CSTR),
m_db(NULL_CSTR),
rli_fake(nullptr),
rli_slave(nullptr),
copy_status_var_ptr(nullptr),
initial_status_var(nullptr),
status_var_aggregated(false),
m_connection_attributes(),
m_current_query_cost(0),
m_current_query_partial_plans(0),
m_main_security_ctx(this),
m_security_ctx(&m_main_security_ctx),
protocol_text(new Protocol_text),
protocol_binary(new Protocol_binary),
query_plan(this),
m_current_stage_key(0),
current_mutex(nullptr),
current_cond(nullptr),
m_is_admin_conn(false),
in_sub_stmt(0),
fill_status_recursion_level(0),
fill_variables_recursion_level(0),
ha_data(PSI_NOT_INSTRUMENTED, ha_data.initial_capacity),
binlog_row_event_extra_data(nullptr),
skip_readonly_check(false),
binlog_unsafe_warning_flags(0),
binlog_table_maps(0),
binlog_accessed_db_names(nullptr),
m_trans_log_file(nullptr),
m_trans_fixed_log_file(nullptr),
m_trans_end_pos(0),
m_transaction(new Transaction_ctx()),
m_attachable_trx(nullptr),
table_map_for_update(0),
m_examined_row_count(0),
#if defined(ENABLED_PROFILING)
profiling(new PROFILING),
#endif
m_stage_progress_psi(nullptr),
m_digest(nullptr),
m_statement_psi(nullptr),
m_transaction_psi(nullptr),
m_idle_psi(nullptr),
m_server_idle(false),
user_var_events(key_memory_user_var_entry),
next_to_commit(nullptr),
binlog_need_explicit_defaults_ts(false),
kill_immunizer(nullptr),
m_is_fatal_error(false),
transaction_rollback_request(false),
is_fatal_sub_stmt_error(false),
rand_used(false),
time_zone_used(false),
in_lock_tables(false),
derived_tables_processing(false),
parsing_system_view(false),
sp_runtime_ctx(nullptr),
m_parser_state(nullptr),
work_part_info(nullptr),
// No need to instrument, highly unlikely to have that many plugins.
audit_class_plugins(PSI_NOT_INSTRUMENTED),
audit_class_mask(PSI_NOT_INSTRUMENTED),
#if defined(ENABLED_DEBUG_SYNC)
debug_sync_control(nullptr),
#endif /* defined(ENABLED_DEBUG_SYNC) */
m_enable_plugins(enable_plugins),
m_audited(true),
#ifdef HAVE_GTID_NEXT_LIST
owned_gtid_set(global_sid_map),
#endif
skip_gtid_rollback(false),
is_commit_in_middle_of_statement(false),
has_gtid_consistency_violation(false),
main_mem_root(key_memory_thd_main_mem_root,
global_system_variables.query_alloc_block_size),
main_da(false),
m_parser_da(false),
m_query_rewrite_plugin_da(false),
m_query_rewrite_plugin_da_ptr(&m_query_rewrite_plugin_da),
m_stmt_da(&main_da),
duplicate_slave_id(false),
is_a_srv_session_thd(false),
m_is_plugin_fake_ddl(false),
m_inside_system_variable_global_update(false),
bind_parameter_values(nullptr),
bind_parameter_values_count(0),
external_store_() {
main_lex->reset();
set_psi(nullptr);
mdl_context.init(this);
stmt_arena = this;
thread_stack = nullptr;
m_catalog.str = "std";
m_catalog.length = 3;
password = 0;
query_start_usec_used = false;
check_for_truncated_fields = CHECK_FIELD_IGNORE;
killed = NOT_KILLED;
is_slave_error = thread_specific_used = false;
tmp_table = 0;
num_truncated_fields = 0L;
m_sent_row_count = 0L;
current_found_rows = 0;
previous_found_rows = 0;
is_operating_gtid_table_implicitly = false;
is_operating_substatement_implicitly = false;
m_row_count_func = -1;
statement_id_counter = 0UL;
// Must be reset to handle error with THD's created for init of mysqld
lex->thd = nullptr;
lex->set_current_query_block(nullptr);
m_lock_usec = 0L;
slave_thread = false;
memset(&variables, 0, sizeof(variables));
m_thread_id = Global_THD_manager::reserved_thread_id;
file_id = 0;
query_id = 0;
query_name_consts = 0;
db_charset = global_system_variables.collation_database;
is_killable = false;
binlog_evt_union.do_union = false;
enable_slow_log = false;
commit_error = CE_NONE;
tx_commit_pending = false;
durability_property = HA_REGULAR_DURABILITY;
#ifndef NDEBUG
dbug_sentry = THD_SENTRY_MAGIC;
current_key_name = nullptr;
conn_mem_alloc_number = 0;
is_mem_cnt_error_issued = false;
#endif
mysql_audit_init_thd(this);
net.vio = nullptr;
system_thread = NON_SYSTEM_THREAD;
peer_port = 0; // For SHOW PROCESSLIST
get_transaction()->m_flags.enabled = true;
m_resource_group_ctx.m_cur_resource_group = nullptr;
m_resource_group_ctx.m_switch_resource_group_str[0] = '\0';
m_resource_group_ctx.m_warn = 0;
m_safe_to_display.store(false);
mysql_mutex_init(key_LOCK_thd_data, &LOCK_thd_data, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_query, &LOCK_thd_query, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_sysvar, &LOCK_thd_sysvar, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_protocol, &LOCK_thd_protocol,
MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_security_ctx, &LOCK_thd_security_ctx,
MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_query_plan, &LOCK_query_plan, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_current_cond, &LOCK_current_cond,
MY_MUTEX_INIT_FAST);
mysql_cond_init(key_COND_thr_lock, &COND_thr_lock);
/*Initialize connection delegation mutex and cond*/
mysql_mutex_init(key_LOCK_group_replication_connection_mutex,
&LOCK_group_replication_connection_mutex,
MY_MUTEX_INIT_FAST);
mysql_cond_init(key_COND_group_replication_connection_cond_var,
&COND_group_replication_connection_cond_var);
/* Variables with default values */
set_proc_info("login");
where = THD::DEFAULT_WHERE;
server_id = ::server_id;
unmasked_server_id = server_id;
set_command(COM_CONNECT);
*scramble = '\0';
/* Call to init() below requires fully initialized Open_tables_state. */
reset_open_tables_state();
init();
#if defined(ENABLED_PROFILING)
profiling->set_thd(this);
#endif
m_user_connect = nullptr;
user_vars.clear();
sp_proc_cache = nullptr;
sp_func_cache = nullptr;
/* Protocol */
m_protocol = protocol_text.get(); // Default protocol
protocol_text->init(this);
protocol_binary->init(this);
protocol_text->set_client_capabilities(0); // minimalistic client
store_cached_properties();
/*
Make sure thr_lock_info_init() is called for threads which do not get
assigned a proper thread_id value but keep using reserved_thread_id.
*/
thr_lock_info_init(&lock_info, m_thread_id, &COND_thr_lock);
m_internal_handler = nullptr;
m_binlog_invoker = false;
memset(&m_invoker_user, 0, sizeof(m_invoker_user));
memset(&m_invoker_host, 0, sizeof(m_invoker_host));
binlog_next_event_pos.file_name = nullptr;
binlog_next_event_pos.pos = 0;
timer = nullptr;
timer_cache = nullptr;
m_token_array = nullptr;
if (max_digest_length > 0) {
m_token_array = (unsigned char *)my_malloc(PSI_INSTRUMENT_ME,
max_digest_length, MYF(MY_WME));
}
#ifndef NDEBUG
debug_binlog_xid_last.reset();
#endif
set_system_user(false);
set_connection_admin(false);
m_mem_cnt.set_thd(this);
}
void THD::store_cached_properties(cached_properties prop_mask) {
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
auto is_selected = [this, prop_mask](cached_properties property) -> bool {
return (this->m_protocol != nullptr &&
static_cast<int>(prop_mask) & static_cast<int>(property));
};
if (is_selected(cached_properties::IS_ALIVE))
m_cached_is_connection_alive.store(m_protocol->connection_alive());
if (is_selected(cached_properties::RW_STATUS))
m_cached_rw_status.store(m_protocol->get_rw_status());
}
void THD::copy_table_access_properties(THD *thd) {
thread_stack = thd->thread_stack;
variables.option_bits = thd->variables.option_bits & OPTION_BIN_LOG;
skip_readonly_check = thd->skip_readonly_check;
tx_isolation = thd->tx_isolation;
}
void THD::set_transaction(Transaction_ctx *transaction_ctx) {
assert(is_attachable_ro_transaction_active());
delete m_transaction.release();
m_transaction.reset(transaction_ctx);
}
bool THD::set_db(const LEX_CSTRING &new_db) {
bool result;
/*
Acquiring mutex LOCK_thd_data as we either free the memory allocated
for the database and reallocating the memory for the new db or memcpy
the new_db to the db.
*/
mysql_mutex_lock(&LOCK_thd_data);
/* Do not reallocate memory if current chunk is big enough. */
if (m_db.str && new_db.str && m_db.length >= new_db.length)
memcpy(const_cast<char *>(m_db.str), new_db.str, new_db.length + 1);
else {
my_free(const_cast<char *>(m_db.str));
m_db = NULL_CSTR;
if (new_db.str)
m_db.str = my_strndup(key_memory_THD_db, new_db.str, new_db.length,
MYF(MY_WME | ME_FATALERROR));
}
m_db.length = m_db.str ? new_db.length : 0;
mysql_mutex_unlock(&LOCK_thd_data);
result = new_db.str && !m_db.str;
#ifdef HAVE_PSI_THREAD_INTERFACE
if (!result)
PSI_THREAD_CALL(set_thread_db)(new_db.str, static_cast<int>(new_db.length));
#endif
return result;
}
void THD::push_internal_handler(Internal_error_handler *handler) {
if (m_internal_handler) {
handler->m_prev_internal_handler = m_internal_handler;
m_internal_handler = handler;
} else
m_internal_handler = handler;
}
bool THD::handle_condition(uint sql_errno, const char *sqlstate,
Sql_condition::enum_severity_level *level,
const char *msg) {
if (!m_internal_handler) return false;
for (Internal_error_handler *error_handler = m_internal_handler;
error_handler; error_handler = error_handler->m_prev_internal_handler) {
if (error_handler->handle_condition(this, sql_errno, sqlstate, level, msg))
return true;
}
return false;
}
Internal_error_handler *THD::pop_internal_handler() {
assert(m_internal_handler != nullptr);
Internal_error_handler *popped_handler = m_internal_handler;
m_internal_handler = m_internal_handler->m_prev_internal_handler;
return popped_handler;
}
void THD::raise_error(uint sql_errno) {
const char *msg = ER_THD_NONCONST(this, sql_errno);
(void)raise_condition(sql_errno, nullptr, Sql_condition::SL_ERROR, msg);
}
void THD::raise_error_printf(uint sql_errno, ...) {
va_list args;
char ebuff[MYSQL_ERRMSG_SIZE];
DBUG_TRACE;
DBUG_PRINT("my", ("nr: %d errno: %d", sql_errno, errno));
const char *format = ER_THD_NONCONST(this, sql_errno);
va_start(args, sql_errno);
vsnprintf(ebuff, sizeof(ebuff), format, args);
va_end(args);
(void)raise_condition(sql_errno, nullptr, Sql_condition::SL_ERROR, ebuff);
}
void THD::raise_warning(uint sql_errno) {
const char *msg = ER_THD_NONCONST(this, sql_errno);
(void)raise_condition(sql_errno, nullptr, Sql_condition::SL_WARNING, msg);
}
void THD::raise_warning_printf(uint sql_errno, ...) {
va_list args;
char ebuff[MYSQL_ERRMSG_SIZE];
DBUG_TRACE;
DBUG_PRINT("enter", ("warning: %u", sql_errno));
const char *format = ER_THD_NONCONST(this, sql_errno);
va_start(args, sql_errno);
vsnprintf(ebuff, sizeof(ebuff), format, args);
va_end(args);
(void)raise_condition(sql_errno, nullptr, Sql_condition::SL_WARNING, ebuff);
}
void THD::raise_note(uint sql_errno) {
DBUG_TRACE;
DBUG_PRINT("enter", ("code: %d", sql_errno));
if (!(variables.option_bits & OPTION_SQL_NOTES)) return;
const char *msg = ER_THD_NONCONST(this, sql_errno);
(void)raise_condition(sql_errno, nullptr, Sql_condition::SL_NOTE, msg);
}
void THD::raise_note_printf(uint sql_errno, ...) {
va_list args;
char ebuff[MYSQL_ERRMSG_SIZE];
DBUG_TRACE;
DBUG_PRINT("enter", ("code: %u", sql_errno));
if (!(variables.option_bits & OPTION_SQL_NOTES)) return;
const char *format = ER_THD_NONCONST(this, sql_errno);
va_start(args, sql_errno);
vsnprintf(ebuff, sizeof(ebuff), format, args);
va_end(args);
(void)raise_condition(sql_errno, nullptr, Sql_condition::SL_NOTE, ebuff);
}
my_timeval THD::query_start_timeval_trunc(uint decimals) {
my_timeval tv;
tv.m_tv_sec = start_time.tv_sec;
if (decimals) {
tv.m_tv_usec = start_time.tv_usec;
my_timeval_trunc(&tv, decimals);
query_start_usec_used = true;
} else {
tv.m_tv_usec = 0;
}
return tv;
}
Sql_condition *THD::raise_condition(uint sql_errno, const char *sqlstate,
Sql_condition::enum_severity_level level,
const char *msg, bool fatal_error) {
DBUG_TRACE;
if (!(variables.option_bits & OPTION_SQL_NOTES) &&
(level == Sql_condition::SL_NOTE))
return nullptr;
assert(sql_errno != 0);
if (sql_errno == 0) /* Safety in release build */
sql_errno = ER_UNKNOWN_ERROR;
if (msg == nullptr) msg = ER_THD_NONCONST(this, sql_errno);
if (sqlstate == nullptr) sqlstate = mysql_errno_to_sqlstate(sql_errno);
if (fatal_error) {
// Only makes sense for errors
assert(level == Sql_condition::SL_ERROR);
this->fatal_error();
}
MYSQL_LOG_ERROR(sql_errno, PSI_ERROR_OPERATION_RAISED);
if (handle_condition(sql_errno, sqlstate, &level, msg)) return nullptr;
Diagnostics_area *da = get_stmt_da();
if (level == Sql_condition::SL_ERROR) {
/*
Reporting an error invokes audit API call that notifies the error
to the plugin. Audit API that generate the error adds a protection
(condition handler) that prevents entering infinite recursion, when
a plugin signals error, when already handling the error.
mysql_audit_notify() must therefore be called after handle_condition().
*/
mysql_audit_notify(this, AUDIT_EVENT(MYSQL_AUDIT_GENERAL_ERROR), sql_errno,
msg, strlen(msg));
is_slave_error = true; // needed to catch query errors during replication
if (!da->is_error()) {
set_row_count_func(-1);
da->set_error_status(sql_errno, msg, sqlstate);
}
}
/*
Avoid pushing a condition for fatal out of memory errors as this will
require memory allocation and therefore might fail. Non fatal out of
memory errors can occur if raised by SIGNAL/RESIGNAL statement.
*/
Sql_condition *cond = nullptr;
if (!(is_fatal_error() &&
(sql_errno == EE_OUTOFMEMORY || sql_errno == ER_OUTOFMEMORY ||
sql_errno == ER_STD_BAD_ALLOC_ERROR))) {
cond = da->push_warning(this, sql_errno, sqlstate, level, msg);
}
return cond;
}
/*
Init common variables that has to be reset on start and on cleanup_connection
*/
void THD::init(void) {
plugin_thdvar_init(this, m_enable_plugins);
/*
variables= global_system_variables above has reset
variables.pseudo_thread_id to 0. We need to correct it here to
avoid temporary tables replication failure.
*/
variables.pseudo_thread_id = m_thread_id;
/*
NOTE: reset_connection command will reset the THD to its default state.
All system variables whose scope is SESSION ONLY should be set to their
default values here.
*/
reset_first_successful_insert_id();
user_time.tv_sec = user_time.tv_usec = 0;
start_time.tv_sec = start_time.tv_usec = 0;
set_time();
auto_inc_intervals_forced.clear();
{
ulong tmp;
tmp = sql_rnd_with_mutex();
randominit(&rand,
tmp + static_cast<ulong>(reinterpret_cast<uintptr_t>(&rand)),
tmp + (ulong)::atomic_global_query_id);
}
server_status = SERVER_STATUS_AUTOCOMMIT;
if (variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES)
server_status |= SERVER_STATUS_NO_BACKSLASH_ESCAPES;
get_transaction()->reset_unsafe_rollback_flags(Transaction_ctx::SESSION);
get_transaction()->reset_unsafe_rollback_flags(Transaction_ctx::STMT);
open_options = ha_open_options;
update_lock_default =
(variables.low_priority_updates ? TL_WRITE_LOW_PRIORITY : TL_WRITE);
insert_lock_default =
(variables.low_priority_updates ? TL_WRITE_LOW_PRIORITY
: TL_WRITE_CONCURRENT_INSERT);
tx_isolation = (enum_tx_isolation)variables.transaction_isolation;
tx_read_only = variables.transaction_read_only;
tx_priority = 0;
thd_tx_priority = 0;
update_charset();
reset_current_stmt_binlog_format_row();
reset_binlog_local_stmt_filter();
memset(&status_var, 0, sizeof(status_var));
binlog_row_event_extra_data = nullptr;
if (variables.sql_log_bin)
variables.option_bits |= OPTION_BIN_LOG;
else
variables.option_bits &= ~OPTION_BIN_LOG;
#if defined(ENABLED_DEBUG_SYNC)
/* Initialize the Debug Sync Facility. See debug_sync.cc. */
debug_sync_init_thread(this);
#endif /* defined(ENABLED_DEBUG_SYNC) */
/* Initialize session_tracker and create all tracker objects */
session_tracker.init(this->charset());
session_tracker.enable(this);
owned_gtid.clear();
owned_sid.clear();
m_se_gtid_flags.reset();
owned_gtid.dbug_print(nullptr, "set owned_gtid (clear) in THD::init");
/*
This will clear the writeset session history and re-set delegate state to
INIT
*/
rpl_thd_ctx.init();
/*
This variable is used to temporarily disable the password validation plugin
when a RANDOM PASSWORD is generated during SET PASSWORD,CREATE USER or
ALTER USER statements.
*/
m_disable_password_validation = false;
}
void THD::init_query_mem_roots() {
mem_root->set_block_size(variables.query_alloc_block_size);
get_transaction()->init_mem_root_defaults(variables.trans_alloc_block_size,
variables.trans_prealloc_size);
}
void THD::set_new_thread_id() {
m_thread_id = Global_THD_manager::get_instance()->get_new_thread_id();
variables.pseudo_thread_id = m_thread_id;
thr_lock_info_init(&lock_info, m_thread_id, &COND_thr_lock);
}
/*
Do what's needed when one invokes change user
SYNOPSIS
cleanup_connection()
IMPLEMENTATION
Reset all resources that are connection specific
*/
void THD::cleanup_connection(void) {
mysql_mutex_lock(&LOCK_status);
add_to_status(&global_status_var, &status_var);
reset_system_status_vars(&status_var);
mysql_mutex_unlock(&LOCK_status);
cleanup();
#if defined(ENABLED_DEBUG_SYNC)
/* End the Debug Sync Facility. See debug_sync.cc. */
debug_sync_end_thread(this);
#endif /* defined(ENABLED_DEBUG_SYNC) */
killed = NOT_KILLED;
rpl_thd_ctx.set_tx_rpl_delegate_stage_status(
Rpl_thd_context::TX_RPL_STAGE_CONNECTION_CLEANED);
running_explain_analyze = false;
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::ACTIVE;
init();
stmt_map.reset();
user_vars.clear();
sp_cache_clear(&sp_proc_cache);
sp_cache_clear(&sp_func_cache);
clear_error();
// clear the warnings
get_stmt_da()->reset_condition_info(this);
// clear profiling information
#if defined(ENABLED_PROFILING)
profiling->cleanup();
#endif
#ifndef NDEBUG
/* DEBUG code only (begin) */
bool check_cleanup = false;
DBUG_EXECUTE_IF("debug_test_cleanup_connection", check_cleanup = true;);
if (check_cleanup) {
/* isolation level should be default */
assert(variables.transaction_isolation == ISO_REPEATABLE_READ);
/* check autocommit is ON by default */
assert(server_status == SERVER_STATUS_AUTOCOMMIT);
/* check prepared stmts are cleaned up */
assert(prepared_stmt_count == 0);
/* check diagnostic area is cleaned up */
assert(get_stmt_da()->status() == Diagnostics_area::DA_EMPTY);
/* check if temp tables are deleted */
assert(temporary_tables == nullptr);
/* check if tables are unlocked */
assert(locked_tables_list.locked_tables() == nullptr);
}
/* DEBUG code only (end) */
#endif
}
bool THD::is_cleanup_done() {
return (m_thd_life_cycle_stage ==
enum_thd_life_cycle_stages::ACTIVE_AND_CLEAN ||
m_thd_life_cycle_stage >= enum_thd_life_cycle_stages::CLEANED_UP);
}
/*
Do what's needed when one invokes change user.
Also used during THD::release_resources, i.e. prior to THD destruction.
*/
void THD::cleanup(void) {
Transaction_ctx *trn_ctx = get_transaction();
XID_STATE *xs = trn_ctx->xid_state();
DBUG_TRACE;
assert(!is_cleanup_done());
DEBUG_SYNC(this, "thd_cleanup_start");
killed = KILL_CONNECTION;
if (trn_ctx->xid_state()->has_state(XID_STATE::XA_PREPARED)) {
/*
Return error is not an option as XA is in prepared state and
connection is gone. Log the error and continue.
*/
if (MDL_context_backup_manager::instance().create_backup(
&mdl_context, xs->get_xid()->key(), xs->get_xid()->key_length())) {
LogErr(ERROR_LEVEL, ER_XA_CANT_CREATE_MDL_BACKUP);
}
xa::Transaction_cache::detach(trn_ctx);
} else {
xs->set_state(XID_STATE::XA_NOTR);
trans_rollback(this);
xa::Transaction_cache::remove(trn_ctx);
}
locked_tables_list.unlock_locked_tables(this);
mysql_ha_cleanup(this);
assert(open_tables == nullptr);
/*
If the thread was in the middle of an ongoing transaction (rolled
back a few lines above) or under LOCK TABLES (unlocked the tables
and left the mode a few lines above), there will be outstanding
metadata locks. Release them.
*/
mdl_context.release_transactional_locks();
/* Release the global read lock, if acquired. */
if (global_read_lock.is_acquired())
global_read_lock.unlock_global_read_lock(this);
mysql_ull_cleanup(this);
/*
All locking service locks must be released on disconnect.
*/
release_all_locking_service_locks(this);
/*
If Backup Lock was acquired it must be released on disconnect.
*/
release_backup_lock(this);
/* All metadata locks must have been released by now. */
assert(!mdl_context.has_locks());
/* Protects user_vars. */
mysql_mutex_lock(&LOCK_thd_data);
user_vars.clear();
mysql_mutex_unlock(&LOCK_thd_data);
/*
When we call drop table for temporary tables, the
user_var_events container is not cleared this might
cause error if the container was filled before the
drop table command is called.
So call this before calling close_temporary_tables.
*/
user_var_events.clear();
close_temporary_tables(this);
sp_cache_clear(&sp_proc_cache);
sp_cache_clear(&sp_func_cache);
/*
Actions above might generate events for the binary log, so we
commit the current transaction coordinator after executing cleanup
actions.
*/
if (tc_log && !trn_ctx->xid_state()->has_state(XID_STATE::XA_PREPARED))
tc_log->commit(this, true);
/*
Destroy trackers only after finishing manipulations with transaction
state to avoid issues with Transaction_state_tracker.
*/
session_tracker.deinit();
/*
If we have a Security_context, make sure it is "logged out"
*/
if (m_thd_life_cycle_stage == enum_thd_life_cycle_stages::ACTIVE)
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::ACTIVE_AND_CLEAN;
else
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::CLEANED_UP;
}
bool THD::release_resources_done() const {
return m_thd_life_cycle_stage ==
enum_thd_life_cycle_stages::RESOURCES_RELEASED;
}
bool THD::is_being_disposed() const {
#ifndef NDEBUG
if (current_thd != this) mysql_mutex_assert_owner(&LOCK_thd_data);
#endif
return (m_thd_life_cycle_stage >=
enum_thd_life_cycle_stages::SCHEDULED_FOR_DISPOSAL);
}
void THD::start_disposal() {
mysql_mutex_assert_owner(&LOCK_thd_data);
assert(!is_being_disposed());
if (m_thd_life_cycle_stage == enum_thd_life_cycle_stages::ACTIVE_AND_CLEAN)
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::CLEANED_UP;
else
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::SCHEDULED_FOR_DISPOSAL;
}
/**
Release most resources, prior to THD destruction.
*/
void THD::release_resources() {
Global_THD_manager::get_instance()->release_thread_id(m_thread_id);
/* Ensure that no one is using THD */
mysql_mutex_lock(&LOCK_query_plan);
mysql_mutex_lock(&LOCK_thd_data);
// Mark THD life cycle state as "SCHEDULED_FOR_DISPOSAL".
start_disposal();
/* Close connection */
if (is_classic_protocol() && get_protocol_classic()->get_vio()) {
vio_delete(get_protocol_classic()->get_vio());
get_protocol_classic()->end_net();
store_cached_properties();
}
/* modification plan for UPDATE/DELETE should be freed. */
assert(query_plan.get_modification_plan() == nullptr);
mysql_mutex_unlock(&LOCK_thd_data);
mysql_mutex_unlock(&LOCK_query_plan);
mysql_mutex_lock(&LOCK_thd_query);
mysql_mutex_unlock(&LOCK_thd_query);
mysql_audit_free_thd(this);
stmt_map.reset(); /* close all prepared statements */
if (!is_cleanup_done()) cleanup();
mdl_context.destroy();
ha_close_connection(this);
/*
Debug sync system must be closed after ha_close_connection, because
DEBUG_SYNC is used in InnoDB connection handlerton close.
*/
#if defined(ENABLED_DEBUG_SYNC)
/* End the Debug Sync Facility. See debug_sync.cc. */
debug_sync_end_thread(this);
#endif /* defined(ENABLED_DEBUG_SYNC) */
plugin_thdvar_cleanup(this, m_enable_plugins);
assert(timer == nullptr);
if (timer_cache) thd_timer_destroy(timer_cache);
if (rli_fake) {
rli_fake->end_info();
delete rli_fake;
rli_fake = nullptr;
}
/* See if any component stored data. If so, try to free it */
if (!external_store_.empty())
(void)free_thd_store_resource(this, external_store_);
if (current_thd == this) restore_globals();
mysql_mutex_lock(&LOCK_status);
/* Add thread status to the global totals. */
add_to_status(&global_status_var, &status_var);
#ifdef HAVE_PSI_THREAD_INTERFACE
/* Aggregate thread status into the Performance Schema. */
if (m_psi != nullptr) {
PSI_THREAD_CALL(aggregate_thread_status)(m_psi);
}
#endif /* HAVE_PSI_THREAD_INTERFACE */
/* Ensure that the thread status is not re-aggregated to the global totals. */
status_var_aggregated = true;
mysql_mutex_unlock(&LOCK_status);
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::RESOURCES_RELEASED;
disable_mem_cnt();
}
THD::~THD() {
THD_CHECK_SENTRY(this);
DBUG_TRACE;
DBUG_PRINT("info", ("THD dtor, this %p", this));
if (!release_resources_done()) release_resources();
clear_next_event_pos();
/* Ensure that no one is using THD */
mysql_mutex_lock(&LOCK_thd_data);
mysql_mutex_unlock(&LOCK_thd_data);
mysql_mutex_lock(&LOCK_thd_query);
mysql_mutex_unlock(&LOCK_thd_query);
assert(!m_attachable_trx);
my_free(const_cast<char *>(m_db.str));
m_db = NULL_CSTR;
get_transaction()->free_memory();
mysql_mutex_destroy(&LOCK_query_plan);
mysql_mutex_destroy(&LOCK_thd_data);
mysql_mutex_destroy(&LOCK_thd_query);
mysql_mutex_destroy(&LOCK_thd_sysvar);
mysql_mutex_destroy(&LOCK_thd_protocol);
mysql_mutex_destroy(&LOCK_thd_security_ctx);
mysql_mutex_destroy(&LOCK_current_cond);
mysql_mutex_destroy(&LOCK_group_replication_connection_mutex);
mysql_cond_destroy(&COND_thr_lock);
mysql_cond_destroy(&COND_group_replication_connection_cond_var);
#ifndef NDEBUG
dbug_sentry = THD_SENTRY_GONE;
#endif
if (variables.gtid_next_list.gtid_set != nullptr) {
#ifdef HAVE_GTID_NEXT_LIST
delete variables.gtid_next_list.gtid_set;
variables.gtid_next_list.gtid_set = NULL;
variables.gtid_next_list.is_non_null = false;
#else
assert(0);
#endif
}
if (rli_slave) rli_slave->cleanup_after_session();
/*
As slaves can be added in one mysql command like COM_REGISTER_SLAVE
but then need to be removed on error scenarios, we call this method
here
*/
unregister_replica(this, true, true);
main_mem_root.Clear();
if (m_token_array != nullptr) {
my_free(m_token_array);
}
m_thd_life_cycle_stage = enum_thd_life_cycle_stages::DISPOSED;
}
/**
Awake a thread.
@param[in] state_to_set value for THD::killed
This is normally called from another thread's THD object.
@note Do always call this while holding LOCK_thd_data.
*/
void THD::awake(THD::killed_state state_to_set) {
DBUG_TRACE;
DBUG_PRINT("enter", ("this: %p current_thd: %p", this, current_thd));
THD_CHECK_SENTRY(this);
mysql_mutex_assert_owner(&LOCK_thd_data);
/* Shutdown clone vio always, to wake up clone waiting for remote. */
shutdown_clone_vio();
/*
If THD is in kill immune mode (i.e. operation on new DD tables is in
progress) then just save state_to_set with THD::kill_immunizer object.
While exiting kill immune mode, awake() is called again with the killed
state saved in THD::kill_immunizer object.
*/
if (kill_immunizer && kill_immunizer->is_active()) {
kill_immunizer->save_killed_state(state_to_set);
return;
}
/*
Set killed flag if the connection is being killed (state_to_set
is KILL_CONNECTION) or the connection is processing a query
(state_to_set is KILL_QUERY and m_server_idle flag is not set).
If the connection is idle and state_to_set is KILL QUERY, the
the killed flag is not set so that it doesn't affect the next
command incorrectly.
*/
if (this->m_server_idle && state_to_set == KILL_QUERY) { /* nothing */
} else {
killed = state_to_set;
}
if (state_to_set != THD::KILL_QUERY && state_to_set != THD::KILL_TIMEOUT) {
if (this != current_thd || kill_immunizer) {
assert(!kill_immunizer || !kill_immunizer->is_active());
/*
Before sending a signal, let's close the socket of the thread
that is being killed ("this", which is not the current thread).
This is to make sure it does not block if the signal is lost.
This needs to be done only on platforms where signals are not
a reliable interruption mechanism.
Note that the downside of this mechanism is that we could close
the connection while "this" target thread is in the middle of
sending a result to the application, thus violating the client-
server protocol.
On the other hand, without closing the socket we have a race
condition. If "this" target thread passes the check of
thd->killed, and then the current thread runs through
THD::awake(), sets the 'killed' flag and completes the
signaling, and then the target thread runs into read(), it will
block on the socket. As a result of the discussions around
Bug#37780, it has been decided that we accept the race
condition. A second KILL awakes the target from read().
If we are killing ourselves, we know that we are not blocked.
We also know that we will check thd->killed before we go for
reading the next statement.
*/
shutdown_active_vio();
}
/* Send an event to the scheduler that a thread should be killed. */
if (!slave_thread)
MYSQL_CALLBACK(Connection_handler_manager::event_functions,
post_kill_notification, (this));
}
/* Interrupt target waiting inside a storage engine. */
if (state_to_set != THD::NOT_KILLED) ha_kill_connection(this);
if (state_to_set == THD::KILL_TIMEOUT) {
assert(!status_var_aggregated);
status_var.max_execution_time_exceeded++;
}
/* Broadcast a condition to kick the target if it is waiting on it. */
if (is_killable) {
mysql_mutex_lock(&LOCK_current_cond);
/*
This broadcast could be up in the air if the victim thread
exits the cond in the time between read and broadcast, but that is
ok since all we want to do is to make the victim thread get out
of waiting on current_cond.
If we see a non-zero current_cond: it cannot be an old value (because
then exit_cond() should have run and it can't because we have mutex); so
it is the true value but maybe current_mutex is not yet non-zero (we're
in the middle of enter_cond() and there is a "memory order
inversion"). So we test the mutex too to not lock 0.
Note that there is a small chance we fail to kill. If victim has locked
current_mutex, but hasn't yet entered enter_cond() (which means that
current_cond and current_mutex are 0), then the victim will not get
a signal and it may wait "forever" on the cond (until
we issue a second KILL or the status it's waiting for happens).
It's true that we have set its thd->killed but it may not
see it immediately and so may have time to reach the cond_wait().
However, where possible, we test for killed once again after
enter_cond(). This should make the signaling as safe as possible.
However, there is still a small chance of failure on platforms with
instruction or memory write reordering.
*/
if (current_cond.load() && current_mutex.load()) {
DBUG_EXECUTE_IF("before_dump_thread_acquires_current_mutex", {
const char act[] =
"now signal dump_thread_signal wait_for go_dump_thread";
assert(!debug_sync_set_action(current_thd, STRING_WITH_LEN(act)));
};);
mysql_mutex_lock(current_mutex);
mysql_cond_broadcast(current_cond);
mysql_mutex_unlock(current_mutex);
}
mysql_mutex_unlock(&LOCK_current_cond);
}
}
/**
Close the Vio associated this session.
@remark LOCK_thd_data is taken due to the fact that
the Vio might be disassociated concurrently.
*/
void THD::disconnect(bool server_shutdown) {
Vio *vio = nullptr;
mysql_mutex_lock(&LOCK_thd_data);
/* Shutdown clone vio always, to wake up clone waiting for remote. */
shutdown_clone_vio();
/*
If thread is in kill immune mode (i.e. operation on new DD tables
is in progress) then just save state_to_set with THD::kill_immunizer
object.
While exiting kill immune mode, awake() is called again with the killed
state saved in THD::kill_immunizer object.
active_vio is already associated to the thread when it is in the kill
immune mode. THD::awake() closes the active_vio.
*/
if (kill_immunizer != nullptr)
kill_immunizer->save_killed_state(THD::KILL_CONNECTION);
else {
killed = THD::KILL_CONNECTION;
/*
Since a active vio might might have not been set yet, in
any case save a reference to avoid closing a inexistent
one or closing the vio twice if there is a active one.
*/
vio = active_vio;
shutdown_active_vio();
/* Disconnect even if a active vio is not associated. */
if (is_classic_protocol() && get_protocol_classic()->get_vio() != vio &&
get_protocol_classic()->connection_alive()) {
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
m_protocol->shutdown(server_shutdown);
}
}
mysql_mutex_unlock(&LOCK_thd_data);
}
void THD::notify_shared_lock(MDL_context_owner *ctx_in_use,
bool needs_thr_lock_abort) {
THD *in_use = ctx_in_use->get_thd();
if (needs_thr_lock_abort) {
mysql_mutex_lock(&in_use->LOCK_thd_data);
for (TABLE *thd_table = in_use->open_tables; thd_table;
thd_table = thd_table->next) {
/*
Check for TABLE::has_invalid_dict() is needed as we can have TABLE
objects for which handler::open() was not called in THD::open_tables
list. For example, such TABLE objects are used to update information
about views which are dependent on table being ALTERed. Calling
mysql_lock_abort_for_thread() for such tables is not safe.
*/
if (!thd_table->has_invalid_dict())
mysql_lock_abort_for_thread(this, thd_table);
}
mysql_mutex_unlock(&in_use->LOCK_thd_data);
}
}
/*
Remember the location of thread info, the structure needed for
(*THR_MALLOC)->Alloc() and the structure for the net buffer
*/
void THD::store_globals() {
/*
Assert that thread_stack is initialized: it's necessary to be able
to track stack overrun.
*/
assert(thread_stack);
current_thd = this;
THR_MALLOC = &mem_root;
/*
is_killable is concurrently readable by a killer thread.
It is protected by LOCK_thd_data, it is not needed to lock while the
value is changing from false not true. If the kill thread reads
true we need to ensure that the thread doesn't proceed to assign
another thread to the same TLS reference.
*/
is_killable = true;
#ifndef NDEBUG
/*
Let mysqld define the thread id (not mysys)
This allows us to move THD to different threads if needed.
*/
set_my_thread_var_id(m_thread_id);
#endif
real_id = my_thread_self();
}
/*
Remove the thread specific info (THD and mem_root pointer) stored during
store_global call for this thread.
*/
void THD::restore_globals() {
// Remove reference to specific OS thread.
real_id = 0;
/*
Assert that thread_stack is initialized: it's necessary to be able
to track stack overrun.
*/
assert(thread_stack);
/* Undocking the thread specific data. */
current_thd = nullptr;
THR_MALLOC = nullptr;
}
/*
Cleanup after query.
SYNOPSIS
THD::cleanup_after_query()
DESCRIPTION
This function is used to reset thread data to its default state.
NOTE
This function is not suitable for setting thread data to some
non-default values, as there is only one replication thread, so
different master threads may overwrite data of each other on
slave.
*/
void THD::cleanup_after_query() {
/*
Reset rand_used so that detection of calls to rand() will save random
seeds if needed by the slave.
Do not reset rand_used if inside a stored function or trigger because
only the call to these operations is logged. Thus only the calling
statement needs to detect rand() calls made by its substatements. These
substatements must not set rand_used to 0 because it would remove the
detection of rand() by the calling statement.
*/
if (!in_sub_stmt) /* stored functions and triggers are a special case */
{
/* Forget those values, for next binlogger: */
stmt_depends_on_first_successful_insert_id_in_prev_stmt = false;
auto_inc_intervals_in_cur_stmt_for_binlog.clear();
rand_used = false;
binlog_accessed_db_names = nullptr;
/*
Clean possible unused INSERT_ID events by current statement.
is_update_query() is needed to ignore SET statements:
Statements that don't update anything directly and don't
used stored functions. This is mostly necessary to ignore
statements in binlog between SET INSERT_ID and DML statement
which is intended to consume its event (there can be other
SET statements between them).
*/
if ((rli_slave || rli_fake) && is_update_query(lex->sql_command))
auto_inc_intervals_forced.clear();
}
/*
In case of stored procedures, stored functions, triggers and events
m_trans_fixed_log_file will not be set to NULL. The memory will be reused.
*/
if (!sp_runtime_ctx) m_trans_fixed_log_file = nullptr;
/*
Forget the binlog stmt filter for the next query.
There are some code paths that:
- do not call THD::decide_logging_format()
- do call THD::binlog_query(),
making this reset necessary.
*/
reset_binlog_local_stmt_filter();
if (first_successful_insert_id_in_cur_stmt > 0) {
/* set what LAST_INSERT_ID() will return */
first_successful_insert_id_in_prev_stmt =
first_successful_insert_id_in_cur_stmt;
first_successful_insert_id_in_cur_stmt = 0;
}
arg_of_last_insert_id_function = false;
/* Hack for cleaning up view security contexts */
List_iterator<Security_context> it(m_view_ctx_list);
while (Security_context *ctx = it++) {
ctx->logout();
}
m_view_ctx_list.clear();
// Cleanup and free items that were created during this execution
cleanup_items(item_list());
free_items();
/* Reset where. */
where = THD::DEFAULT_WHERE;
/* reset table map for multi-table update */
table_map_for_update = 0;
m_binlog_invoker = false;
/* reset replication info structure */
if (lex) {
lex->mi.repl_ignore_server_ids.clear();
}
if (rli_slave) rli_slave->cleanup_after_query();
// Set the default "cute" mode for the execution environment:
check_for_truncated_fields = CHECK_FIELD_IGNORE;
}
/*
Convert a string to another character set
@param to Store new allocated string here
@param to_cs New character set for allocated string
@param from String to convert
@param from_length Length of string to convert
@param from_cs Original character set
@param report_error Raise error (when true) or warning (when false) if
there is problem when doing conversion
@note to will be 0-terminated to make it easy to pass to system funcs
@retval false ok
@retval true End of memory.
In this case to->str will point to 0 and to->length will be 0.
*/
bool THD::convert_string(LEX_STRING *to, const CHARSET_INFO *to_cs,
const char *from, size_t from_length,
const CHARSET_INFO *from_cs, bool report_error) {
DBUG_TRACE;
size_t new_length = to_cs->mbmaxlen * from_length;
if (!(to->str = (char *)alloc(new_length + 1))) {
to->length = 0; // Safety fix
return true; // EOM
}
uint errors = 0;
to->length = copy_and_convert(to->str, new_length, to_cs, from, from_length,
from_cs, &errors);
to->str[to->length] = 0; // Safety
if (errors != 0) {
char printable_buff[32];
convert_to_printable(printable_buff, sizeof(printable_buff), from,
from_length, from_cs, 6);
if (report_error) {
my_error(ER_CANNOT_CONVERT_STRING, MYF(0), printable_buff,
from_cs->csname, to_cs->csname);
return true;
} else {
push_warning_printf(this, Sql_condition::SL_WARNING,
ER_INVALID_CHARACTER_STRING,
ER_THD(this, ER_CANNOT_CONVERT_STRING),
printable_buff, from_cs->csname, to_cs->csname);
}
}
return false;
}
/*
Update some cache variables when character set changes
*/
void THD::update_charset() {
size_t not_used;
charset_is_system_charset = !String::needs_conversion(
0, variables.character_set_client, system_charset_info, ¬_used);
charset_is_collation_connection =
!String::needs_conversion(0, variables.character_set_client,
variables.collation_connection, ¬_used);
charset_is_character_set_filesystem =
!String::needs_conversion(0, variables.character_set_client,
variables.character_set_filesystem, ¬_used);
}
int THD::send_explain_fields(Query_result *result) {
mem_root_deque<Item *> field_list(current_thd->mem_root);
Item *item;
CHARSET_INFO *cs = system_charset_info;
field_list.push_back(new Item_return_int("id", 3, MYSQL_TYPE_LONGLONG));
field_list.push_back(new Item_empty_string("select_type", 19, cs));
field_list.push_back(item =
new Item_empty_string("table", NAME_CHAR_LEN, cs));
item->set_nullable(true);
/* Maximum length of string that make_used_partitions_str() can produce */
item = new Item_empty_string("partitions", MAX_PARTITIONS * (1 + FN_LEN), cs);
field_list.push_back(item);
item->set_nullable(true);
field_list.push_back(item = new Item_empty_string("type", 10, cs));
item->set_nullable(true);
field_list.push_back(item = new Item_empty_string(
"possible_keys", NAME_CHAR_LEN * MAX_KEY, cs));
item->set_nullable(true);
field_list.push_back(item = new Item_empty_string("key", NAME_CHAR_LEN, cs));
item->set_nullable(true);
field_list.push_back(
item = new Item_empty_string("key_len", NAME_CHAR_LEN * MAX_KEY));
item->set_nullable(true);
field_list.push_back(
item = new Item_empty_string("ref", NAME_CHAR_LEN * MAX_REF_PARTS, cs));
item->set_nullable(true);
field_list.push_back(
item = new Item_return_int("rows", 10, MYSQL_TYPE_LONGLONG));
item->set_nullable(true);
field_list.push_back(
item = new Item_float(NAME_STRING("filtered"), 0.1234, 2, 4));
item->set_nullable(true);
field_list.push_back(new Item_empty_string("Extra", 255, cs));
item->set_nullable(true);
return (result->send_result_set_metadata(
this, field_list, Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF));
}
enum_vio_type THD::get_vio_type() const {
DBUG_TRACE;
return get_protocol()->connection_type();
}
void THD::shutdown_active_vio() {
DBUG_TRACE;
mysql_mutex_assert_owner(&LOCK_thd_data);
if (active_vio) {
#ifdef USE_PPOLL_IN_VIO
// Vio::thread_id may not be correct if the THD has been
// associated with a different OS thread since the Vio object was
// created. So we store the current THD::real_id here so that
// vio_shutdown() will not try to send SIGALRM to an incorrect, or
// invalid thread id.
active_vio->thread_id = real_id;
#endif /* USE_PPOLL_IN_VIO */
vio_shutdown(active_vio);
active_vio = nullptr;
m_SSL = nullptr;
}
}
void THD::shutdown_clone_vio() {
DBUG_TRACE;
mysql_mutex_assert_owner(&LOCK_thd_data);
if (clone_vio != nullptr) {
#ifdef USE_PPOLL_IN_VIO
// Vio::thread_id may not be correct if the THD has been
// associated with a different OS thread since the Vio object was
// created. So we store the current THD::real_id here so that
// vio_shutdown() will not try to send SIGALRM to an incorrect, or
// invalid thread id.
clone_vio->thread_id = real_id;
#endif /* USE_PPOLL_IN_VIO */
vio_shutdown(clone_vio);
clone_vio = nullptr;
}
}
/*
Register an item tree tree transformation, performed by the query
optimizer.
*/
void THD::nocheck_register_item_tree_change(Item **place, Item *new_value) {
Item_change_record *change;
/*
Now we use one node per change, which adds some memory overhead,
but still is rather fast as we use mem_root->alloc() for allocations.
A list of item tree changes of an average query should be short.
*/
void *change_mem = mem_root->Alloc(sizeof(*change));
if (change_mem == nullptr) {
/*
OOM, thd->fatal_error() is called by the error handler of the
memroot. Just return.
*/
return;
}
change = new (change_mem) Item_change_record(place, new_value);
change_list.push_front(change);
}
void THD::rollback_item_tree_changes() {
I_List_iterator<Item_change_record> it(change_list);
Item_change_record *change;
DBUG_TRACE;
while ((change = it++)) {
if (change->m_cancel) continue;
DBUG_PRINT("info", ("rollback_item_tree_changes "
"place %p curr_value %p old_value %p",
change->place, *change->place, change->old_value));
*change->place = change->old_value;
}
/* We can forget about changes memory: it's allocated in runtime memroot */
change_list.clear();
}
void Query_arena::add_item(Item *item) {
item->next_free = m_item_list;
m_item_list = item;
}
void Query_arena::free_items() {
Item *next;
DBUG_TRACE;
/* This works because items are allocated with (*THR_MALLOC)->Alloc() */
for (; m_item_list; m_item_list = next) {
next = m_item_list->next_free;
m_item_list->delete_self();
}
/* Postcondition: free_list is 0 */
}
void Query_arena::set_query_arena(const Query_arena &set) {
mem_root = set.mem_root;
set_item_list(set.item_list());
state = set.state;
}
void Query_arena::swap_query_arena(const Query_arena &source,
Query_arena *backup) {
backup->set_query_arena(*this);
set_query_arena(source);
}
void THD::end_statement() {
DBUG_TRACE;
/* Cleanup SQL processing state to reuse this statement in next query. */
lex_end(lex);
lex->result = nullptr; // Prepare for next statement
/* Note that item list is freed in cleanup_after_query() */
/*
Don't free mem_root, as mem_root is freed in the end of dispatch_command
(once for any command).
*/
}
Prepared_statement_map::Prepared_statement_map()
: st_hash(key_memory_prepared_statement_infrastructure),
names_hash(system_charset_info,
key_memory_prepared_statement_infrastructure),
m_last_found_statement(nullptr) {}
int Prepared_statement_map::insert(Prepared_statement *statement) {
st_hash.emplace(statement->id(), unique_ptr<Prepared_statement>(statement));
if (statement->name().str) {
names_hash.emplace(to_string(statement->name()), statement);
}
mysql_mutex_lock(&LOCK_prepared_stmt_count);
/*
We don't check that prepared_stmt_count is <= max_prepared_stmt_count
because we would like to allow to lower the total limit
of prepared statements below the current count. In that case
no new statements can be added until prepared_stmt_count drops below
the limit.
*/
if (prepared_stmt_count >= max_prepared_stmt_count) {
mysql_mutex_unlock(&LOCK_prepared_stmt_count);
my_error(ER_MAX_PREPARED_STMT_COUNT_REACHED, MYF(0),
max_prepared_stmt_count);
goto err_max;
}
prepared_stmt_count++;
mysql_mutex_unlock(&LOCK_prepared_stmt_count);
m_last_found_statement = statement;
return 0;
err_max:
if (statement->name().str) names_hash.erase(to_string(statement->name()));
st_hash.erase(statement->id());
return 1;
}
Prepared_statement *Prepared_statement_map::find_by_name(
const LEX_CSTRING &name) {
return find_or_nullptr(names_hash, to_string(name));
}
Prepared_statement *Prepared_statement_map::find(ulong id) {
if (m_last_found_statement == nullptr || id != m_last_found_statement->id()) {
Prepared_statement *stmt = find_or_nullptr(st_hash, id);
if (stmt && stmt->name().str) return nullptr;
m_last_found_statement = stmt;
}
return m_last_found_statement;
}
void Prepared_statement_map::erase(Prepared_statement *statement) {
if (statement == m_last_found_statement) m_last_found_statement = nullptr;
if (statement->name().str) names_hash.erase(to_string(statement->name()));
st_hash.erase(statement->id());
mysql_mutex_lock(&LOCK_prepared_stmt_count);
assert(prepared_stmt_count > 0);
prepared_stmt_count--;
mysql_mutex_unlock(&LOCK_prepared_stmt_count);
}
void Prepared_statement_map::claim_memory_ownership(bool claim) {
for (const auto &key_and_value : st_hash) {
my_claim(key_and_value.second.get(), claim);
}
}
void Prepared_statement_map::reset() {
if (!st_hash.empty()) {
#ifdef HAVE_PSI_PS_INTERFACE
for (auto &key_and_value : st_hash) {
Prepared_statement *stmt = key_and_value.second.get();
MYSQL_DESTROY_PS(stmt->get_PS_prepared_stmt());
}
#endif
mysql_mutex_lock(&LOCK_prepared_stmt_count);
assert(prepared_stmt_count >= st_hash.size());
prepared_stmt_count -= st_hash.size();
mysql_mutex_unlock(&LOCK_prepared_stmt_count);
}
names_hash.clear();
st_hash.clear();
m_last_found_statement = nullptr;
}
Prepared_statement_map::~Prepared_statement_map() {
/*
We do not want to grab the global LOCK_prepared_stmt_count mutex here.
reset() should already have been called to maintain prepared_stmt_count.
*/
assert(st_hash.empty());
}
void THD::send_kill_message() const {
int err = killed;
if (m_mem_cnt.is_error()) {
assert(err == KILL_CONNECTION);
m_mem_cnt.set_thd_error_status();
return;
}
if (err && !get_stmt_da()->is_set()) {
if ((err == KILL_CONNECTION) && !connection_events_loop_aborted())
err = KILL_QUERY;
/*
KILL is fatal because:
- if a condition handler was allowed to trap and ignore a KILL, one
could create routines which the DBA could not kill
- INSERT/UPDATE IGNORE should fail: if KILL arrives during
JOIN::optimize(), statement cannot possibly run as its caller expected
=> "OK" would be misleading the caller.
EXPLAIN ANALYZE still succeeds (but with a warning in the output),
assuming it's come as far as the execution stage, so that the user
can look at the execution plan and statistics so far.
*/
if (!running_explain_analyze) {
my_error(err, MYF(ME_FATALERROR));
}
}
}
/****************************************************************************
Handling of open and locked tables states.
This is used when we want to open/lock (and then close) some tables when
we already have a set of tables open and locked. We use these methods for
access to mysql.proc table to find definitions of stored routines.
****************************************************************************/
void THD::reset_n_backup_open_tables_state(Open_tables_backup *backup,
uint add_state_flags) {
DBUG_TRACE;
backup->set_open_tables_state(this);
backup->mdl_system_tables_svp = mdl_context.mdl_savepoint();
reset_open_tables_state();
state_flags |= (Open_tables_state::BACKUPS_AVAIL | add_state_flags);
}
void THD::restore_backup_open_tables_state(Open_tables_backup *backup) {
DBUG_TRACE;
mdl_context.rollback_to_savepoint(backup->mdl_system_tables_svp);
/*
Before we will throw away current open tables state we want
to be sure that it was properly cleaned up.
*/
assert(open_tables == nullptr && temporary_tables == nullptr &&
lock == nullptr && locked_tables_mode == LTM_NONE &&
get_reprepare_observer() == nullptr);
set_open_tables_state(backup);
}
void THD::begin_attachable_ro_transaction() {
m_attachable_trx = new Attachable_trx(this, m_attachable_trx);
}
void THD::end_attachable_transaction() {
Attachable_trx *prev_trx = m_attachable_trx->get_prev_attachable_trx();
delete m_attachable_trx;
// Restore attachable transaction which was active before we started
// the one which just has ended. NULL in most cases.
m_attachable_trx = prev_trx;
}
void THD::begin_attachable_rw_transaction() {
assert(!m_attachable_trx);
m_attachable_trx = new Attachable_trx_rw(this);
}
/****************************************************************************
Handling of statement states in functions and triggers.
This is used to ensure that the function/trigger gets a clean state
to work with and does not cause any side effects of the calling statement.
It also allows most stored functions and triggers to replicate even
if they are used items that would normally be stored in the binary
replication (like last_insert_id() etc...)
The following things is done
- Disable binary logging for the duration of the statement
- Disable multi-result-sets for the duration of the statement
- Value of last_insert_id() is saved and restored
- Value set by 'SET INSERT_ID=#' is reset and restored
- Value for found_rows() is reset and restored
- examined_row_count is added to the total
- num_truncated_fields is added to the total
- new savepoint level is created and destroyed
NOTES:
Seed for random() is saved for the first! usage of RAND()
We reset examined_row_count and num_truncated_fields and add these to the
result to ensure that if we have a bug that would reset these within
a function, we are not losing any rows from the main statement.
We do not reset value of last_insert_id().
****************************************************************************/
void THD::reset_sub_statement_state(Sub_statement_state *backup,
uint new_state) {
backup->option_bits = variables.option_bits;
backup->check_for_truncated_fields = check_for_truncated_fields;
backup->in_sub_stmt = in_sub_stmt;
backup->enable_slow_log = enable_slow_log;
backup->current_found_rows = current_found_rows;
backup->previous_found_rows = previous_found_rows;
backup->examined_row_count = m_examined_row_count;
backup->sent_row_count = m_sent_row_count;
backup->num_truncated_fields = num_truncated_fields;
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
backup->client_capabilities = m_protocol->get_client_capabilities();
backup->savepoints = get_transaction()->m_savepoints;
backup->first_successful_insert_id_in_prev_stmt =
first_successful_insert_id_in_prev_stmt;
backup->first_successful_insert_id_in_cur_stmt =
first_successful_insert_id_in_cur_stmt;
if ((!lex->requires_prelocking() || is_update_query(lex->sql_command)) &&
!is_current_stmt_binlog_format_row()) {
variables.option_bits &= ~OPTION_BIN_LOG;
}
if ((backup->option_bits & OPTION_BIN_LOG) &&
is_update_query(lex->sql_command) && !is_current_stmt_binlog_format_row())
mysql_bin_log.start_union_events(this, this->query_id);
/* Disable result sets */
if (is_classic_protocol())
get_protocol_classic()->remove_client_capability(CLIENT_MULTI_RESULTS);
in_sub_stmt |= new_state;
m_examined_row_count = 0;
m_sent_row_count = 0;
num_truncated_fields = 0;
get_transaction()->m_savepoints = nullptr;
first_successful_insert_id_in_cur_stmt = 0;
/* Reset savepoint on transaction write set */
if (is_current_stmt_binlog_row_enabled_with_write_set_extraction()) {
get_transaction()->get_transaction_write_set_ctx()->reset_savepoint_list();
}
}
void THD::restore_sub_statement_state(Sub_statement_state *backup) {
DBUG_TRACE;
/*
To save resources we want to release savepoints which were created
during execution of function or trigger before leaving their savepoint
level. It is enough to release first savepoint set on this level since
all later savepoints will be released automatically.
*/
if (get_transaction()->m_savepoints) {
SAVEPOINT *sv;
for (sv = get_transaction()->m_savepoints; sv->prev; sv = sv->prev) {
}
/* ha_release_savepoint() never returns error. */
(void)ha_release_savepoint(this, sv);
}
check_for_truncated_fields = backup->check_for_truncated_fields;
get_transaction()->m_savepoints = backup->savepoints;
variables.option_bits = backup->option_bits;
in_sub_stmt = backup->in_sub_stmt;
enable_slow_log = backup->enable_slow_log;
first_successful_insert_id_in_prev_stmt =
backup->first_successful_insert_id_in_prev_stmt;
first_successful_insert_id_in_cur_stmt =
backup->first_successful_insert_id_in_cur_stmt;
current_found_rows = backup->current_found_rows;
previous_found_rows = backup->previous_found_rows;
set_sent_row_count(backup->sent_row_count);
if (is_classic_protocol())
get_protocol_classic()->set_client_capabilities(
backup->client_capabilities);
/*
If we've left sub-statement mode, reset the fatal error flag.
Otherwise keep the current value, to propagate it up the sub-statement
stack.
NOTE: is_fatal_sub_stmt_error can be set only if we've been in the
sub-statement mode.
*/
if (!in_sub_stmt) is_fatal_sub_stmt_error = false;
if ((variables.option_bits & OPTION_BIN_LOG) &&
is_update_query(lex->sql_command) && !is_current_stmt_binlog_format_row())
mysql_bin_log.stop_union_events(this);
/*
The below assert mostly serves as reminder that optimization in
DML_prelocking_strategy::handle_table() relies on the fact
that stored function/trigger can't change FOREIGN_KEY_CHECKS
value for the top-level statement which invokes them.
*/
assert((variables.option_bits & OPTION_NO_FOREIGN_KEY_CHECKS) ==
(backup->option_bits & OPTION_NO_FOREIGN_KEY_CHECKS));
/*
The following is added to the old values as we are interested in the
total complexity of the query
*/
inc_examined_row_count(backup->examined_row_count);
num_truncated_fields += backup->num_truncated_fields;
/* Restore savepoint on transaction write set */
if (is_current_stmt_binlog_row_enabled_with_write_set_extraction()) {
get_transaction()
->get_transaction_write_set_ctx()
->restore_savepoint_list();
}
}
void THD::set_sent_row_count(ha_rows count) {
m_sent_row_count = count;
MYSQL_SET_STATEMENT_ROWS_SENT(m_statement_psi, m_sent_row_count);
}
void THD::inc_sent_row_count(ha_rows count) {
m_sent_row_count += count;
MYSQL_SET_STATEMENT_ROWS_SENT(m_statement_psi, m_sent_row_count);
}
void THD::inc_examined_row_count(ha_rows count) {
m_examined_row_count += count;
MYSQL_SET_STATEMENT_ROWS_EXAMINED(m_statement_psi, m_examined_row_count);
}
void THD::inc_status_created_tmp_disk_tables() {
assert(!status_var_aggregated);
status_var.created_tmp_disk_tables++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_created_tmp_disk_tables)(m_statement_psi, 1);
#endif
}
void THD::inc_status_created_tmp_tables() {
assert(!status_var_aggregated);
status_var.created_tmp_tables++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_created_tmp_tables)(m_statement_psi, 1);
#endif
}
void THD::inc_status_select_full_join() {
assert(!status_var_aggregated);
status_var.select_full_join_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_select_full_join)(m_statement_psi, 1);
#endif
}
void THD::inc_status_select_full_range_join() {
assert(!status_var_aggregated);
status_var.select_full_range_join_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_select_full_range_join)(m_statement_psi, 1);
#endif
}
void THD::inc_status_select_range() {
assert(!status_var_aggregated);
status_var.select_range_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_select_range)(m_statement_psi, 1);
#endif
}
void THD::inc_status_select_range_check() {
assert(!status_var_aggregated);
status_var.select_range_check_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_select_range_check)(m_statement_psi, 1);
#endif
}
void THD::inc_status_select_scan() {
assert(!status_var_aggregated);
status_var.select_scan_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_select_scan)(m_statement_psi, 1);
#endif
}
void THD::inc_status_sort_merge_passes() {
assert(!status_var_aggregated);
status_var.filesort_merge_passes++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_sort_merge_passes)(m_statement_psi, 1);
#endif
}
void THD::inc_status_sort_range() {
assert(!status_var_aggregated);
status_var.filesort_range_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_sort_range)(m_statement_psi, 1);
#endif
}
void THD::inc_status_sort_rows(ha_rows count) {
assert(!status_var_aggregated);
status_var.filesort_rows += count;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_sort_rows)
(m_statement_psi, static_cast<ulong>(count));
#endif
}
void THD::inc_status_sort_scan() {
assert(!status_var_aggregated);
status_var.filesort_scan_count++;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(inc_statement_sort_scan)(m_statement_psi, 1);
#endif
}
void THD::set_status_no_index_used() {
server_status |= SERVER_QUERY_NO_INDEX_USED;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(set_statement_no_index_used)(m_statement_psi);
#endif
}
void THD::set_status_no_good_index_used() {
server_status |= SERVER_QUERY_NO_GOOD_INDEX_USED;
#ifdef HAVE_PSI_STATEMENT_INTERFACE
PSI_STATEMENT_CALL(set_statement_no_good_index_used)(m_statement_psi);
#endif
}
void THD::set_command(enum enum_server_command command) {
m_command = command;
#ifdef HAVE_PSI_THREAD_INTERFACE
PSI_THREAD_CALL(set_thread_command)(m_command);
#endif
}
void THD::debug_assert_query_locked() const {
if (current_thd != this) mysql_mutex_assert_owner(&LOCK_thd_query);
}
void THD::set_query(LEX_CSTRING query_arg) {
assert(this == current_thd);
mysql_mutex_lock(&LOCK_thd_query);
m_query_string = query_arg;
mysql_mutex_unlock(&LOCK_thd_query);
}
/**
Leave explicit LOCK TABLES or prelocked mode and restore value of
transaction sentinel in MDL subsystem.
*/
void THD::leave_locked_tables_mode() {
if (locked_tables_mode == LTM_LOCK_TABLES) {
/*
When leaving LOCK TABLES mode we have to change the duration of most
of the metadata locks being held, except for HANDLER and GRL locks,
to transactional for them to be properly released at UNLOCK TABLES.
*/
mdl_context.set_transaction_duration_for_all_locks();
/*
Make sure we don't release the global read lock and commit blocker
when leaving LTM.
*/
global_read_lock.set_explicit_lock_duration(this);
/*
Also ensure that we don't release metadata locks for open HANDLERs
and user-level locks.
*/
if (!handler_tables_hash.empty()) mysql_ha_set_explicit_lock_duration(this);
if (!ull_hash.empty()) mysql_ull_set_explicit_lock_duration(this);
}
locked_tables_mode = LTM_NONE;
}
void THD::get_definer(LEX_USER *definer) {
binlog_invoker();
if (slave_thread && has_invoker()) {
definer->user = m_invoker_user;
definer->host = m_invoker_host;
definer->first_factor_auth_info.plugin = EMPTY_CSTR;
definer->first_factor_auth_info.auth = {};
} else
get_default_definer(this, definer);
}
/**
Mark transaction to rollback and mark error as fatal to a sub-statement.
@param all true <=> rollback main transaction.
*/
void THD::mark_transaction_to_rollback(bool all) {
/*
There is no point in setting is_fatal_sub_stmt_error unless
we are actually in_sub_stmt.
*/
if (in_sub_stmt) is_fatal_sub_stmt_error = true;
transaction_rollback_request = all;
}
void THD::set_next_event_pos(const char *_filename, ulonglong _pos) {
char *&filename = binlog_next_event_pos.file_name;
if (filename == nullptr) {
/* First time, allocate maximal buffer */
filename =
(char *)my_malloc(key_memory_LOG_POS_COORD, FN_REFLEN + 1, MYF(MY_WME));
if (filename == nullptr) return;
}
assert(strlen(_filename) <= FN_REFLEN);
strcpy(filename, _filename);
filename[FN_REFLEN] = 0;
binlog_next_event_pos.pos = _pos;
}
void THD::clear_next_event_pos() {
if (binlog_next_event_pos.file_name != nullptr) {
my_free(binlog_next_event_pos.file_name);
}
binlog_next_event_pos.file_name = nullptr;
binlog_next_event_pos.pos = 0;
}
void THD::set_original_commit_timestamp_for_slave_thread() {
/*
This function may be called in four cases:
- From SQL thread while executing Gtid_log_event::do_apply_event
- From an mts worker thread that executes a Gtid_log_event::do_apply_event.
- From an mts worker thread that is processing an old binlog that
is missing Gtid events completely, from gtid_pre_statement_checks().
- From a normal client thread that is executing output from
mysqlbinlog when mysqlbinlog is processing an old binlog file
that is missing Gtid events completely, from
gtid_pre_statement_checks() for a statement that appears after a
BINLOG statement containing a Format_description_log_event
originating from the master.
Because of the last case, we need to add the following conditions to set
original_commit_timestamp.
*/
if (system_thread == SYSTEM_THREAD_SLAVE_SQL ||
system_thread == SYSTEM_THREAD_SLAVE_WORKER) {
rli_slave->original_commit_timestamp = variables.original_commit_timestamp;
}
}
void THD::set_user_connect(USER_CONN *uc) {
DBUG_TRACE;
m_user_connect = uc;
}
void THD::increment_user_connections_counter() {
DBUG_TRACE;
m_user_connect->connections++;
}
void THD::decrement_user_connections_counter() {
DBUG_TRACE;
assert(m_user_connect->connections > 0);
m_user_connect->connections--;
}
void THD::increment_con_per_hour_counter() {
DBUG_TRACE;
m_user_connect->conn_per_hour++;
}
void THD::increment_updates_counter() {
DBUG_TRACE;
m_user_connect->updates++;
}
void THD::increment_questions_counter() {
DBUG_TRACE;
m_user_connect->questions++;
}
/*
Reset per-hour user resource limits when it has been more than
an hour since they were last checked
SYNOPSIS:
time_out_user_resource_limits()
NOTE:
This assumes that the LOCK_user_conn mutex has been acquired, so it is
safe to test and modify members of the USER_CONN structure.
*/
void THD::time_out_user_resource_limits() {
mysql_mutex_assert_owner(&LOCK_user_conn);
ulonglong check_time = start_utime;
DBUG_TRACE;
/* If more than a hour since last check, reset resource checking */
if (check_time - m_user_connect->reset_utime >= 3600000000LL) {
m_user_connect->questions = 1;
m_user_connect->updates = 0;
m_user_connect->conn_per_hour = 0;
m_user_connect->reset_utime = check_time;
}
}
#ifndef NDEBUG
void THD::Query_plan::assert_plan_is_locked_if_other() const {
if (current_thd != thd) mysql_mutex_assert_owner(&thd->LOCK_query_plan);
}
#endif
void THD::Query_plan::set_query_plan(enum_sql_command sql_cmd, LEX *lex_arg,
bool ps) {
assert(current_thd == thd);
// No need to grab mutex for repeated (SQLCOM_END, NULL, false).
if (sql_command == sql_cmd && lex == lex_arg && is_ps == ps) {
return;
}
thd->lock_query_plan();
sql_command = sql_cmd;
lex = lex_arg;
is_ps = ps;
thd->unlock_query_plan();
}
void THD::Query_plan::set_modification_plan(Modification_plan *plan_arg) {
assert(current_thd == thd);
mysql_mutex_assert_owner(&thd->LOCK_query_plan);
modification_plan = plan_arg;
}
/**
Push an error message into MySQL diagnostic area with line number and position
This function provides semantic action implementers with a way
to push the famous "You have a syntax error near..." error
message into the diagnostic area, which is normally produced only if
a syntax error is discovered according to the Bison grammar.
Unlike the syntax_error_at() function, the error position points to the last
parsed token.
@note Parse-time only function!
@param format Error format message. NULL means ER(ER_SYNTAX_ERROR).
*/
void THD::syntax_error(const char *format, ...) {
va_list args;
va_start(args, format);
vsyntax_error_at(m_parser_state->m_lip.get_tok_start(), format, args);
va_end(args);
}
/**
Push an error message into MySQL diagnostic area with line number and position
This function provides semantic action implementers with a way
to push the famous "You have a syntax error near..." error
message into the diagnostic area, which is normally produced only if
a syntax error is discovered according to the Bison grammar.
Unlike the syntax_error_at() function, the error position points to the last
parsed token.
@note Parse-time only function!
@param mysql_errno Error number to get a format string with ER_THD().
*/
void THD::syntax_error(int mysql_errno, ...) {
va_list args;
va_start(args, mysql_errno);
vsyntax_error_at(m_parser_state->m_lip.get_tok_start(),
ER_THD_NONCONST(this, mysql_errno), args);
va_end(args);
}
/**
Push a syntax error message into MySQL diagnostic area with line
and position information.
This function provides semantic action implementers with a way
to push the famous "You have a syntax error near..." error
message into the diagnostic area, which is normally produced only if
a parse error is discovered internally by the Bison generated
parser.
@note Parse-time only function!
@param location YYSTYPE object: error position.
@param format Error format message. NULL means ER(ER_SYNTAX_ERROR).
*/
void THD::syntax_error_at(const YYLTYPE &location, const char *format, ...) {
va_list args;
va_start(args, format);
vsyntax_error_at(location, format, args);
va_end(args);
}
/**
Push a syntax error message into MySQL diagnostic area with line
and position information.
This function provides semantic action implementers with a way
to push the famous "You have a syntax error near..." error
message into the diagnostic area, which is normally produced only if
a parse error is discovered internally by the Bison generated
parser.
@note Parse-time only function!
@param location YYSTYPE object: error position
@param mysql_errno Error number to get a format string with ER_THD()
*/
void THD::syntax_error_at(const YYLTYPE &location, int mysql_errno, ...) {
va_list args;
va_start(args, mysql_errno);
vsyntax_error_at(location, ER_THD_NONCONST(this, mysql_errno), args);
va_end(args);
}
void THD::vsyntax_error_at(const YYLTYPE &location, const char *format,
va_list args) {
vsyntax_error_at(location.raw.start, format, args);
}
/**
Push a syntax error message into MySQL diagnostic area with line number and
position
This function provides semantic action implementers with a way
to push the famous "You have a syntax error near..." error
message into the error stack, which is normally produced only if
a parse error is discovered internally by the Bison generated
parser.
@param pos_in_lexer_raw_buffer Pointer into LEX::m_buf or NULL.
@param format An error message format string.
@param args Arguments to the format string.
*/
void THD::vsyntax_error_at(const char *pos_in_lexer_raw_buffer,
const char *format, va_list args) {
assert(pos_in_lexer_raw_buffer == nullptr ||
(pos_in_lexer_raw_buffer >= m_parser_state->m_lip.get_buf() &&
pos_in_lexer_raw_buffer <= m_parser_state->m_lip.get_end_of_query()));
char buff[MYSQL_ERRMSG_SIZE];
if (check_stack_overrun(this, STACK_MIN_SIZE, (uchar *)buff)) return;
const uint lineno =
pos_in_lexer_raw_buffer
? m_parser_state->m_lip.get_lineno(pos_in_lexer_raw_buffer)
: 1;
const char *pos = pos_in_lexer_raw_buffer ? pos_in_lexer_raw_buffer : "";
ErrConvString err(pos, strlen(pos), variables.character_set_client);
(void)vsnprintf(buff, sizeof(buff), format, args);
my_printf_error(ER_PARSE_ERROR, ER_THD(this, ER_PARSE_ERROR), MYF(0), buff,
err.ptr(), lineno);
}
bool THD::send_result_metadata(const mem_root_deque<Item *> &list, uint flags) {
DBUG_TRACE;
uchar buff[MAX_FIELD_WIDTH];
String tmp((char *)buff, sizeof(buff), &my_charset_bin);
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
if (m_protocol->start_result_metadata(CountVisibleFields(list), flags,
variables.character_set_results))
goto err;
switch (variables.resultset_metadata) {
case RESULTSET_METADATA_FULL:
/* Send metadata. */
for (Item *item : VisibleFields(list)) {
Send_field field;
item->make_field(&field);
m_protocol->start_row();
if (m_protocol->send_field_metadata(&field,
item->charset_for_protocol()))
goto err;
if (flags & Protocol::SEND_DEFAULTS) item->send(m_protocol, &tmp);
if (m_protocol->end_row()) return true;
}
break;
case RESULTSET_METADATA_NONE:
/* Skip metadata. */
break;
default:
/* Unknown @@resultset_metadata value. */
return true;
}
return m_protocol->end_result_metadata();
err:
my_error(ER_OUT_OF_RESOURCES, MYF(0)); /* purecov: inspected */
return true; /* purecov: inspected */
}
bool THD::send_result_set_row(const mem_root_deque<Item *> &row_items) {
char buffer[MAX_FIELD_WIDTH];
String str_buffer(buffer, sizeof(buffer), &my_charset_bin);
DBUG_TRACE;
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
for (Item *item : VisibleFields(row_items)) {
if (item->send(m_protocol, &str_buffer) || is_error()) return true;
/*
Reset str_buffer to its original state, as it may have been altered in
Item::send().
*/
str_buffer.set(buffer, sizeof(buffer), &my_charset_bin);
}
return false;
}
void THD::send_statement_status() {
DBUG_TRACE;
assert(!get_stmt_da()->is_sent());
bool error = false;
Diagnostics_area *da = get_stmt_da();
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
/* Can not be true, but do not take chances in production. */
if (da->is_sent()) return;
switch (da->status()) {
case Diagnostics_area::DA_ERROR:
assert(!is_mem_cnt_error_issued || is_mem_cnt_error());
/* The query failed, send error to log and abort bootstrap. */
error = m_protocol->send_error(da->mysql_errno(), da->message_text(),
da->returned_sqlstate());
break;
case Diagnostics_area::DA_EOF:
error =
m_protocol->send_eof(server_status, da->last_statement_cond_count());
break;
case Diagnostics_area::DA_OK:
error = m_protocol->send_ok(
server_status, da->last_statement_cond_count(), da->affected_rows(),
da->last_insert_id(), da->message_text());
break;
case Diagnostics_area::DA_DISABLED:
break;
case Diagnostics_area::DA_EMPTY:
default:
assert(0);
error = m_protocol->send_ok(server_status, 0, 0, 0, nullptr);
break;
}
if (!error) da->set_is_sent(true);
}
void THD::claim_memory_ownership(bool claim [[maybe_unused]]) {
#ifdef HAVE_PSI_MEMORY_INTERFACE
/*
Ownership of the THD object is transferred to this thread.
This happens typically:
- in the event scheduler,
when the scheduler thread creates a work item and
starts a worker thread to run it
- in the main thread, when the code that accepts a new
network connection creates a work item and starts a
connection thread to run it.
Accounting for memory statistics needs to be told
that memory allocated by thread X now belongs to thread Y,
so that statistics by thread/account/user/host are accurate.
Inspect every piece of memory allocated in THD,
and call PSI_MEMORY_CALL(memory_claim)().
*/
main_mem_root.Claim(claim);
my_claim(m_token_array, claim);
Protocol_classic *p = get_protocol_classic();
if (p != nullptr) p->claim_memory_ownership(claim);
session_tracker.claim_memory_ownership(claim);
session_sysvar_res_mgr.claim_memory_ownership(claim);
for (const auto &key_and_value : user_vars) {
my_claim(key_and_value.second.get(), claim);
}
#if defined(ENABLED_DEBUG_SYNC)
debug_sync_claim_memory_ownership(this, claim);
#endif /* defined(ENABLED_DEBUG_SYNC) */
get_transaction()->claim_memory_ownership(claim);
stmt_map.claim_memory_ownership(claim);
#endif /* HAVE_PSI_MEMORY_INTERFACE */
}
void THD::rpl_detach_engine_ha_data() {
Relay_log_info *rli =
is_binlog_applier() ? rli_fake : (slave_thread ? rli_slave : nullptr);
assert(!rli_fake || !rli_fake->is_engine_ha_data_detached());
assert(!rli_slave || !rli_slave->is_engine_ha_data_detached());
if (rli) rli->detach_engine_ha_data(this);
}
void THD::rpl_reattach_engine_ha_data() {
Relay_log_info *rli =
is_binlog_applier() ? rli_fake : (slave_thread ? rli_slave : nullptr);
assert(!rli_fake || rli_fake->is_engine_ha_data_detached());
assert(!rli_slave || rli_slave->is_engine_ha_data_detached());
if (rli) rli->reattach_engine_ha_data(this);
}
bool THD::is_engine_ha_data_detached() const {
Relay_log_info *rli =
is_binlog_applier() ? rli_fake : (slave_thread ? rli_slave : nullptr);
return rli ? rli->is_engine_ha_data_detached() : false;
}
bool THD::is_current_stmt_binlog_disabled() const {
return (!(variables.option_bits & OPTION_BIN_LOG) ||
!mysql_bin_log.is_open());
}
bool THD::is_current_stmt_binlog_log_replica_updates_disabled() const {
return ((!opt_bin_log || (slave_thread && !opt_log_replica_updates)) ||
!mysql_bin_log.is_open());
}
bool THD::is_current_stmt_binlog_enabled_and_caches_empty() const {
return mysql_bin_log.is_current_stmt_binlog_enabled_and_caches_empty(this);
}
bool THD::is_current_stmt_binlog_row_enabled_with_write_set_extraction() const {
return ((variables.transaction_write_set_extraction != HASH_ALGORITHM_OFF) &&
is_current_stmt_binlog_format_row() &&
!is_current_stmt_binlog_disabled());
}
void THD::enable_low_level_commit_ordering() {
DBUG_TRACE;
m_is_low_level_commit_ordering_enabled = true;
}
void THD::disable_low_level_commit_ordering() {
DBUG_TRACE;
m_is_low_level_commit_ordering_enabled = false;
}
bool THD::is_low_level_commit_ordering_enabled() const {
DBUG_TRACE;
return m_is_low_level_commit_ordering_enabled;
}
bool THD::Query_plan::is_single_table_plan() const {
assert_plan_is_locked_if_other();
return lex->m_sql_cmd->is_single_table_plan();
}
const String THD::normalized_query() {
m_normalized_query.mem_free();
lex->unit->print(this, &m_normalized_query, QT_NORMALIZED_FORMAT);
return m_normalized_query;
}
bool add_item_to_list(THD *thd, Item *item) {
return thd->lex->query_block->add_item_to_list(item);
}
THD::Transaction_state::Transaction_state()
: m_query_tables_list(new Query_tables_list()),
m_ha_data(PSI_NOT_INSTRUMENTED, m_ha_data.initial_capacity) {}
THD::Transaction_state::~Transaction_state() { delete m_query_tables_list; }
bool THD::notify_hton_pre_acquire_exclusive(const MDL_key *mdl_key,
bool *victimized) {
return ha_notify_exclusive_mdl(this, mdl_key, HA_NOTIFY_PRE_EVENT,
victimized);
}
void THD::notify_hton_post_release_exclusive(const MDL_key *mdl_key) {
bool unused_arg;
ha_notify_exclusive_mdl(this, mdl_key, HA_NOTIFY_POST_EVENT, &unused_arg);
}
/**
Call parser to transform statement into a parse tree.
Then, transform the parse tree further into an AST, ready for resolving.
*/
bool THD::sql_parser() {
/*
SQL parser function generated by YACC from sql_yacc.yy.
In the case of success returns 0, and THD::is_error() is false.
Otherwise returns 1, or THD::>is_error() is true.
The second (output) parameter "root" returns the new parse tree.
It is undefined (unchanged) on error. If "root" is NULL on success,
then the parser has already called lex->make_sql_cmd() internally.
*/
extern int MYSQLparse(class THD * thd, class Parse_tree_root * *root);
Parse_tree_root *root = nullptr;
if (MYSQLparse(this, &root) || is_error()) {
/*
Restore the original LEX if it was replaced when parsing
a stored procedure. We must ensure that a parsing error
does not leave any side effects in the THD.
*/
cleanup_after_parse_error();
return true;
}
if (root != nullptr && lex->make_sql_cmd(root)) {
return true;
}
return false;
}
bool THD::is_one_phase_commit() {
/* Check if XA Commit. */
if (lex->sql_command != SQLCOM_XA_COMMIT) {
return (false);
}
auto xa_commit_cmd = static_cast<Sql_cmd_xa_commit *>(lex->m_sql_cmd);
auto xa_op = xa_commit_cmd->get_xa_opt();
return (xa_op == XA_ONE_PHASE);
}
bool THD::is_secondary_storage_engine_eligible() const {
// STATEMENT based replication is enabled and the statement is CTAS or
// INSERT INTO SELECT
if (variables.binlog_format == BINLOG_FORMAT_STMT &&
(lex->sql_command == SQLCOM_CREATE_TABLE ||
lex->sql_command == SQLCOM_INSERT_SELECT))
return false;
// Secondary engines had been disabled in the session
if (secondary_engine_optimization() ==
Secondary_engine_optimization::PRIMARY_ONLY)
return false;
// The user has explicitly disabled secondary engines
if (variables.use_secondary_engine == SECONDARY_ENGINE_OFF) return false;
// LOCK TABLES mode is active
if (locked_tables_mode != LTM_NONE) return false;
// Multi-statement transaction mode is active and the statement is not a
// CREATE TABLE AS SELECT (these are safe due to COMMIT being run before
// and after the statement is executed)
if ((in_multi_stmt_transaction_mode() &&
lex->sql_command != SQLCOM_CREATE_TABLE))
return false;
// It is a sub-statement of a stored procedure
if (sp_runtime_ctx != nullptr) return false;
return true;
}
void THD::swap_rewritten_query(String &query_arg) {
assert(this == current_thd);
mysql_mutex_lock(&LOCK_thd_query);
m_rewritten_query.swap(query_arg);
// The rewritten query should always be a valid C string, just in case.
(void)m_rewritten_query.c_ptr_safe();
mysql_mutex_unlock(&LOCK_thd_query);
}
/**
Restore session state in case of parse error.
This is a clean up function that is invoked after the Bison generated
parser before returning an error from THD::sql_parser(). If your
semantic actions manipulate with the session state (which
is a very bad practice and should not normally be employed) and
need a clean-up in case of error, and you can not use %destructor
rule in the grammar file itself, this function should be used
to implement the clean up.
*/
void THD::cleanup_after_parse_error() {
sp_head *sp = lex->sphead;
if (sp) {
sp->m_parser_data.finish_parsing_sp_body(this);
// Do not delete sp_head if is invoked in the context of sp execution.
if (sp_runtime_ctx == nullptr) {
sp_head::destroy(sp);
lex->sphead = nullptr;
}
}
}
bool THD::is_classic_protocol() const {
return get_protocol()->type() == Protocol::PROTOCOL_BINARY ||
get_protocol()->type() == Protocol::PROTOCOL_TEXT;
}
bool THD::is_connected(bool use_cached_connection_alive) {
/*
All system threads (e.g., the slave IO thread) are connected but
not using vio. So this function always returns true for all
system threads.
*/
if (system_thread) return true;
/*
In some situations, e.g. when generating information_schema.processlist,
we can live with a cached value to avoid introducing mutex usage.
*/
if (use_cached_connection_alive) {
DEBUG_SYNC(current_thd, "wait_before_checking_alive");
return m_cached_is_connection_alive.load();
}
if (is_classic_protocol())
return get_protocol()->connection_alive() &&
vio_is_connected(get_protocol_classic()->get_vio());
return get_protocol()->connection_alive();
}
uint THD::get_protocol_rw_status() { return m_cached_rw_status.load(); }
Protocol *THD::get_protocol() {
store_cached_properties();
return m_protocol;
}
Protocol_classic *THD::get_protocol_classic() {
assert(is_classic_protocol());
store_cached_properties();
return pointer_cast<Protocol_classic *>(m_protocol);
}
void THD::push_protocol(Protocol *protocol) {
assert(m_protocol != nullptr);
assert(protocol != nullptr);
m_protocol->push_protocol(protocol);
m_protocol = protocol;
store_cached_properties();
}
void THD::pop_protocol() {
assert(m_protocol != nullptr);
m_protocol = m_protocol->pop_protocol();
assert(m_protocol != nullptr);
store_cached_properties();
}
void THD::set_time() {
start_utime = my_micro_time();
m_lock_usec = 0;
if (user_time.tv_sec || user_time.tv_usec)
start_time = user_time;
else
my_micro_time_to_timeval(start_utime, &start_time);
#ifdef HAVE_PSI_THREAD_INTERFACE
PSI_THREAD_CALL(set_thread_start_time)(query_start_in_secs());
#endif
}
void THD::inc_lock_usec(ulonglong lock_usec) {
/*
If mysql_lock_tables() is called multiple times,
we sum all the lock times here.
This is the desired behavior, to know how much
time was spent waiting on SQL tables.
When Innodb reports additional lock time for DATA locks,
it is counted as well.
The performance_schema lock time for the current
statement is updated accordingly.
*/
m_lock_usec += lock_usec;
MYSQL_SET_STATEMENT_LOCK_TIME(m_statement_psi, m_lock_usec);
}
void THD::update_slow_query_status() {
if (my_micro_time() > start_utime + variables.long_query_time)
server_status |= SERVER_QUERY_WAS_SLOW;
}
bool THD::add_external(unsigned int slot, void *data) {
if (!data)
external_store_.erase(slot);
else
external_store_[slot] = data;
return false;
}
void *THD::fetch_external(unsigned int slot) {
return external_store_.at(slot) ? external_store_.at(slot) : nullptr;
}
/**
Initialize the transactional ddl context when executing CREATE TABLE ...
SELECT command with engine which supports atomic DDL.
@param db Schema name in which table is being created.
@param tablename Table name being created.
@param hton Handlerton representing engine used for table.
*/
void Transactional_ddl_context::init(dd::String_type db,
dd::String_type tablename,
const handlerton *hton) {
assert(m_hton == nullptr);
/*
Currently, Transactional_ddl_context is used only for CREATE TABLE ... START
TRANSACTION statement.
*/
assert(m_thd->lex->sql_command == SQLCOM_CREATE_TABLE);
m_db = db;
m_tablename = tablename;
m_hton = hton;
}
/**
Remove the table share used while creating the table, if the transaction
is being rolledback.
*/
void Transactional_ddl_context::rollback() {
if (!inited()) return;
/*
Since the transaction is being rolledback, We need to unlock and close the
table belonging to this transaction.
*/
if (m_thd->lock) mysql_unlock_tables(m_thd, m_thd->lock);
m_thd->lock = nullptr;
if (m_thd->open_tables) close_thread_table(m_thd, &m_thd->open_tables);
table_cache_manager.lock_all_and_tdc();
TABLE_SHARE *share =
get_cached_table_share(m_db.c_str(), m_tablename.c_str());
if (share) {
tdc_remove_table(m_thd, TDC_RT_REMOVE_ALL, m_db.c_str(),
m_tablename.c_str(), true);
#ifdef HAVE_PSI_TABLE_INTERFACE
// quick_rm_table() was not called, so remove the P_S table share here.
PSI_TABLE_CALL(drop_table_share)
(false, m_db.c_str(), strlen(m_db.c_str()), m_tablename.c_str(),
strlen(m_tablename.c_str()));
#endif
}
table_cache_manager.unlock_all_and_tdc();
}
/**
End the transactional context created by calling post ddl hook for engine
on which table is being created. This is done after transaction rollback
and commit.
*/
void Transactional_ddl_context::post_ddl() {
if (!inited()) return;
if (m_hton && m_hton->post_ddl) {
m_hton->post_ddl(m_thd);
}
m_hton = nullptr;
m_db = "";
m_tablename = "";
}
void my_ok(THD *thd, ulonglong affected_rows, ulonglong id,
const char *message) {
thd->set_row_count_func(affected_rows);
thd->get_stmt_da()->set_ok_status(affected_rows, id, message);
}
void my_eof(THD *thd) {
thd->set_row_count_func(-1);
thd->get_stmt_da()->set_eof_status(thd);
if (thd->variables.session_track_transaction_info > TX_TRACK_NONE) {
TX_TRACKER_GET(tst);
tst->add_trx_state(thd, TX_RESULT_SET);
}
}
|