1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
// SPDX-License-Identifier: LGPL-2.1-or-later
/**
* @file
*
* libdrgn public interface.
*/
#ifndef DRGN_H
#define DRGN_H
// IWYU pragma: begin_exports
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
// IWYU pragma: end_exports
#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
/**
* @mainpage
*
* libdrgn provides the functionality of the
* [drgn](https://github.com/osandov/drgn) programmable debugger as a library.
* It implements the main drgn abstractions: @ref Programs, @ref Types, @ref
* Objects, and @ref StackTraces. See [Topics](topics.html) for detailed
* documentation.
*
* @subsection ThreadSafety Thread Safety
*
* Only one thread at a time should access the same @ref drgn_program (including
* @ref drgn_object, @ref drgn_type, @ref drgn_stack_trace, etc. from that
* program). It is safe to use different @ref drgn_program%s from concurrent
* threads.
*/
/** Major version of drgn. */
#define DRGN_VERSION_MAJOR 0
/** Minor version of drgn. */
#define DRGN_VERSION_MINOR 1
/** Patch level of drgn. */
#define DRGN_VERSION_PATCH 0
/**
* @defgroup ErrorHandling Error handling
*
* Error handling in libdrgn.
*
* Operations in libdrgn can fail for various reasons. libdrgn returns errors as
* @ref drgn_error.
*
* @{
*/
/** Error code for a @ref drgn_error. */
enum drgn_error_code {
/** Cannot allocate memory. */
DRGN_ERROR_NO_MEMORY,
/** Stop iteration. */
DRGN_ERROR_STOP,
/** Miscellaneous error. */
DRGN_ERROR_OTHER,
/** Invalid argument. */
DRGN_ERROR_INVALID_ARGUMENT,
/** Integer overflow. */
DRGN_ERROR_OVERFLOW,
/** Maximum recursion depth exceeded. */
DRGN_ERROR_RECURSION,
/** System call error. */
DRGN_ERROR_OS,
/** One or more files do not have debug information. */
DRGN_ERROR_MISSING_DEBUG_INFO,
/** Syntax error while parsing. */
DRGN_ERROR_SYNTAX,
/** Entry not found. */
DRGN_ERROR_LOOKUP,
/** Bad memory access. */
DRGN_ERROR_FAULT,
/** Type error in expression. */
DRGN_ERROR_TYPE,
/** Division by zero. */
DRGN_ERROR_ZERO_DIVISION,
/** Array out of bounds */
DRGN_ERROR_OUT_OF_BOUNDS,
/** Operation was attempted with absent object. */
DRGN_ERROR_OBJECT_ABSENT,
/** Functionality is not implemented. */
DRGN_ERROR_NOT_IMPLEMENTED,
/** Number of defined error codes. */
DRGN_NUM_ERROR_CODES,
} __attribute__((__packed__));
/**
* libdrgn error.
*
* All functions in libdrgn that can return an error return this type.
*/
struct drgn_error {
/** Error code. */
enum drgn_error_code code;
/**
* @private
*
* Whether this error needs to be passed to @ref drgn_error_destroy().
*
* This is @c true for the error codes returned from @ref
* drgn_error_create() and its related functions. Certain errors are
* statically allocated and do not need to be passed to @ref
* drgn_error_destroy() (but they can be).
*/
bool needs_destroy;
/**
* If @c code is @c DRGN_ERROR_OS, then the error number returned from
* the system call.
*/
int errnum;
/**
* If @c code is @c DRGN_ERROR_OS, then the path of the file which
* encountered the error if applicable. Otherwise, @c NULL.
*/
char *path;
/**
* If @c code is @c DRGN_ERROR_FAULT, then the address of the read
* which encountered the error.
*/
uint64_t address;
/** Human-readable error message. */
char *message;
};
/**
* Out of memory @ref drgn_error.
*
* This has a code of @ref DRGN_ERROR_NO_MEMORY. It can be returned if a memory
* allocation fails in order to avoid doing another memory allocation. It does
* not need to be passed to @ref drgn_error_destroy() (but it can be).
*/
extern struct drgn_error drgn_enomem;
/**
* Non-fatal lookup @ref drgn_error.
*
* This has a code of @ref DRGN_ERROR_LOOKUP. It does not need to be passed to
* @ref drgn_error_destroy() (but it can be).
*/
extern struct drgn_error drgn_not_found;
/**
* Create a @ref drgn_error.
*
* @param[in] code Error code.
* @param[in] message Human-readable error message. This string is copied.
* @return A new error with the given code and message. If there is a failure to
* allocate memory for the error or the message, @ref drgn_enomem is returned
* instead.
*/
struct drgn_error *drgn_error_create(enum drgn_error_code code,
const char *message)
__attribute__((__returns_nonnull__));
/**
* Create a @ref drgn_error from a printf-style format.
*
* @param[in] code Error code.
* @param[in] format printf-style format string.
* @param[in] ... Arguments for the format string.
* @return A new error with the given code and formatted message. If there is a
* failure to allocate memory for the error or the message, @ref drgn_enomem is
* returned instead.
*/
struct drgn_error *drgn_error_format(enum drgn_error_code code,
const char *format, ...)
__attribute__((__returns_nonnull__, __format__(__printf__, 2, 3)));
/**
* Create a @ref DRGN_ERROR_OS @ref drgn_error.
*
* @sa drgn_error_create().
*
* @param[in] errnum Error number (i.e., @c errno).
* @param[in] path If not @c NULL, the path of the file which encountered the
* error. This string is copied.
*/
struct drgn_error *drgn_error_create_os(const char *message, int errnum,
const char *path)
__attribute__((__returns_nonnull__));
/**
* Create a @ref DRGN_ERROR_OS @ref drgn_error with a printf-style formatted
* path.
*
* @param[in] errnum Error number (i.e., @c errno).
* @param[in] path_format printf-style format string for path.
* @param[in] ... Arguments for the format string.
*/
struct drgn_error *drgn_error_format_os(const char *message, int errnum,
const char *path_format, ...)
__attribute__((__returns_nonnull__, __format__(__printf__, 3, 4)));
/**
* Create a @ref DRGN_ERROR_FAULT @ref drgn_error.
*
* @param[in] message Human-readable error message. This string is copied.
* @param[in] address Address where the fault happened.
*/
struct drgn_error *drgn_error_create_fault(const char *message, uint64_t address)
__attribute__((__returns_nonnull__));
/**
*
* Create a @ref DRGN_ERROR_FAULT @ref drgn_error with a printf-style formatted
* message.
*
* @param[in] address Address where the fault happened.
* @param[in] format printf-style format string for message.
* @param[in] ... Arguments for the format string.
*/
struct drgn_error *drgn_error_format_fault(uint64_t address,
const char *format, ...)
__attribute__((__returns_nonnull__, __format__(__printf__, 2, 3)));
/*
* Create a copy of a @ref drgn_error.
*
* The source's error message and path are copied if necessary, so the source
* error can be destroyed without affecting the new error and vice versa.
*
* @param[in] src Error to copy.
* @return A new error with the same fields. If there is a failure to allocate
* memory, @ref drgn_enomem is returned instead.
*/
struct drgn_error *drgn_error_copy(struct drgn_error *src)
__attribute__((__returns_nonnull__));
/**
* Return a string representation of a @ref drgn_error.
*
* @param[in] err Error to write.
* @return Returned string, or @c NULL if memory could not be allocated. On
* success, must be freed with @c free().
*/
char *drgn_error_string(struct drgn_error *err);
/**
* Write a @ref drgn_error followed by a newline to a @c stdio stream.
*
* @param[in] file File to write to (usually @c stderr).
* @param[in] err Error to write.
* @return Non-negative on success, negative on failure.
*/
int drgn_error_fwrite(FILE *file, struct drgn_error *err);
/**
* Write a @ref drgn_error followed by a newline to a file descriptor.
*
* @param[in] fd File descriptor to write to.
* @param[in] err Error to write.
* @return Non-negative on success, negative on failure.
*/
int drgn_error_dwrite(int fd, struct drgn_error *err);
/**
* Free a @ref drgn_error.
*
* This must be called on any error returned from libdrgn unless otherwise
* noted.
*
* @param[in] err Error to destroy. If @c NULL, this is a no-op.
*/
void drgn_error_destroy(struct drgn_error *err);
/** @} */
/**
* @defgroup Languages Languages
*
* Programming languages.
*
* @{
*/
struct drgn_language; // IWYU pragma: export
/** C */
extern const struct drgn_language drgn_language_c;
/** C++ */
extern const struct drgn_language drgn_language_cpp;
/** Get the name of a @ref drgn_language. */
const char *drgn_language_name(const struct drgn_language *lang);
/** @} */
/**
* @ingroup Types
*
* Kinds of types.
*
* Every type in a program supported by libdrgn falls into one of these
* categories.
*/
enum drgn_type_kind {
/** Void type. */
DRGN_TYPE_VOID = 1,
/** Integer type. */
DRGN_TYPE_INT,
/** Boolean type. */
DRGN_TYPE_BOOL,
/** Floating-point type. */
DRGN_TYPE_FLOAT,
/** Structure type. */
DRGN_TYPE_STRUCT,
/** Union type. */
DRGN_TYPE_UNION,
/** Class type. */
DRGN_TYPE_CLASS,
/** Enumerated type. */
DRGN_TYPE_ENUM,
/** Type definition (a.k.a.\ alias) type. */
DRGN_TYPE_TYPEDEF,
/** Pointer type. */
DRGN_TYPE_POINTER,
/** Array type. */
DRGN_TYPE_ARRAY,
/** Function type. */
DRGN_TYPE_FUNCTION,
} __attribute__((__packed__));
/**
* @ingroup Types
*
* Type qualifiers.
*
* Some languages, like C, have the notion of qualifiers which add properties to
* a type. Qualifiers are represented as a bitmask; each qualifier is a bit.
*/
enum drgn_qualifiers {
/** Constant type. */
DRGN_QUALIFIER_CONST = (1 << 0),
/** Volatile type. */
DRGN_QUALIFIER_VOLATILE = (1 << 1),
/** Restrict type. */
DRGN_QUALIFIER_RESTRICT = (1 << 2),
/** Atomic type. */
DRGN_QUALIFIER_ATOMIC = (1 << 3),
/** Bitmask of all valid qualifiers. */
DRGN_ALL_QUALIFIERS = (1 << 4) - 1,
} __attribute__((__packed__));
/**
* @ingroup Types
*
* Qualified type.
*
* A type with qualifiers.
*
* @sa drgn_qualifiers
*/
struct drgn_qualified_type {
/** Unqualified type. */
struct drgn_type *type;
/** Bitmask of qualifiers on this type. */
enum drgn_qualifiers qualifiers;
};
#ifndef DRGN_ACCESSOR_LINKAGE
#define DRGN_ACCESSOR_LINKAGE extern
#endif
/**
* @ingroup Types
*
* Get the program that a @ref drgn_type is from.
*/
DRGN_ACCESSOR_LINKAGE
struct drgn_program *drgn_type_program(struct drgn_type *type);
/**
* @ingroup Types
*
* Get the language of a type.
*/
DRGN_ACCESSOR_LINKAGE
const struct drgn_language *drgn_type_language(struct drgn_type *type);
/**
* @defgroup Platforms Platforms
*
* Program platforms (i.e., architecture and ABI).
*
* @{
*/
/** An instruction set architecture. */
enum drgn_architecture {
DRGN_ARCH_UNKNOWN,
DRGN_ARCH_X86_64,
DRGN_ARCH_I386,
DRGN_ARCH_AARCH64,
DRGN_ARCH_ARM,
DRGN_ARCH_PPC64,
DRGN_ARCH_RISCV64,
DRGN_ARCH_RISCV32,
DRGN_ARCH_S390X,
DRGN_ARCH_S390,
};
/** Flags describing a @ref drgn_platform. */
enum drgn_platform_flags {
/** Platform is 64-bit. */
DRGN_PLATFORM_IS_64_BIT = (1 << 0),
/** Platform is little-endian. */
DRGN_PLATFORM_IS_LITTLE_ENDIAN = (1 << 1),
/** All valid platform flags. */
DRGN_ALL_PLATFORM_FLAGS = (1 << 2) - 1,
/** Use the default flags for the architecture. */
DRGN_PLATFORM_DEFAULT_FLAGS = UINT_MAX,
};
/**
* @struct drgn_platform
*
* The environment that a program runs on.
*/
struct drgn_platform; // IWYU pragma: export
/**
* @struct drgn_register
*
* A processor register.
*/
struct drgn_register; // IWYU pragma: export
/**
* Create a @ref drgn_platform.
*
* The returned platform should be destroyed with @ref drgn_platform_destroy().
*/
struct drgn_error *drgn_platform_create(enum drgn_architecture arch,
enum drgn_platform_flags flags,
struct drgn_platform **ret);
/** Destroy a @ref drgn_platform. */
void drgn_platform_destroy(struct drgn_platform *platform);
/** Get the instruction set architecture of a @ref drgn_platform. */
enum drgn_architecture drgn_platform_arch(const struct drgn_platform *platform);
/** Get the flags of a @ref drgn_platform. */
enum drgn_platform_flags
drgn_platform_flags(const struct drgn_platform *platform);
/** Get the number of @ref drgn_register's on a @ref drgn_platform. */
size_t drgn_platform_num_registers(const struct drgn_platform *platform);
/** Get the @p n-th @ref drgn_register of a @ref drgn_platform. */
const struct drgn_register *
drgn_platform_register(const struct drgn_platform *platform, size_t n);
/** Get a @ref drgn_register in a @ref drgn_platform by its name. */
const struct drgn_register *
drgn_platform_register_by_name(const struct drgn_platform *platform,
const char *name);
/** Return whether two platforms are identical. */
bool drgn_platform_eq(struct drgn_platform *a, struct drgn_platform *b);
/** Platform that drgn was compiled for. */
extern const struct drgn_platform drgn_host_platform;
/**
* Get the names of a @ref drgn_register.
*
* @param[out] num_names_ret Returned number of names.
* @return Array of names.
*/
const char * const *drgn_register_names(const struct drgn_register *reg,
size_t *num_names_ret);
/** @} */
struct drgn_object;
struct drgn_thread;
/**
* @defgroup Programs Programs
*
* Debugging programs.
*
* A program being debugged is represented by a @ref drgn_program.
*
* @{
*/
/**
* @struct drgn_program
*
* Program being debugged.
*
* A @ref drgn_program represents a crashed or running program. It supports
* looking up objects (@ref drgn_program_find_object()) and types (@ref
* drgn_program_find_type()) by name and reading arbitrary memory from the
* program (@ref drgn_program_read_memory()).
*
* A @ref drgn_program is created with @ref drgn_program_from_core_dump(), @ref
* drgn_program_from_kernel(), or @ref drgn_program_from_pid(). It must be freed
* with @ref drgn_program_destroy().
*/
struct drgn_program; // IWYU pragma: export
/** Flags which apply to a @ref drgn_program. */
enum drgn_program_flags {
/** The program is the Linux kernel. */
DRGN_PROGRAM_IS_LINUX_KERNEL = (1 << 0),
/** The program is currently running. */
DRGN_PROGRAM_IS_LIVE = (1 << 1),
/** The program is running on the local machine. */
DRGN_PROGRAM_IS_LOCAL = (1 << 2),
};
/**
* Create a @ref drgn_program.
*
* Usually, @ref drgn_program_from_core_dump(), @ref drgn_program_from_kernel(),
* and @ref drgn_program_from_pid() are more convenient to use. However, this
* can be used if more flexibility is required.
*
* @param[in] platform Platform that this program runs on, or @c NULL if it
* should be determined automatically. This is copied.
* @param[out] ret Returned program.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_create(const struct drgn_platform *platform,
struct drgn_program **ret);
/**
* Free a @ref drgn_program.
*
* @param[in] prog Program to free.
*/
void drgn_program_destroy(struct drgn_program *prog);
/**
* Callback implementing a memory read.
*
* @param[out] buf Buffer to read into.
* @param[in] address Address which we are reading from.
* @param[in] count Number of bytes to read.
* @param[in] offset Offset in bytes of @p address from the beginning of the
* segment.
* @param[in] arg Argument passed to @ref drgn_program_add_memory_segment().
* @param[in] physical Whether @c address is physical.
* @return @c NULL on success, non-@c NULL on error.
*/
typedef struct drgn_error *(*drgn_memory_read_fn)(void *buf, uint64_t address,
size_t count, uint64_t offset,
void *arg, bool physical);
/**
* Register a segment of memory in a @ref drgn_program.
*
* If the segment overlaps a previously registered segment, the new segment
* takes precedence. If any part of the segment is beyond the maximum address,
* that part is ignored.
*
* @param[in] address Address of the segment.
* @param[in] size Size of the segment in bytes.
* @param[in] read_fn Callback to read from segment.
* @param[in] arg Argument to pass to @p read_fn.
* @param[in] physical Whether to add a physical memory segment.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_program_add_memory_segment(struct drgn_program *prog, uint64_t address,
uint64_t size, drgn_memory_read_fn read_fn,
void *arg, bool physical);
/**
* Return whether a filename containing a definition (@p haystack) matches a
* filename being searched for (@p needle).
*
* The path is matched from right to left, so a definition in
* <tt>/usr/include/stdio.h</tt> will match <tt>stdio.h</tt>,
* <tt>include/stdio.h</tt>, <tt>usr/include/stdio.h</tt>, and
* <tt>/usr/include/stdio.h</tt>. An empty or @c NULL @p needle matches any @p
* haystack.
*/
bool drgn_filename_matches(const char *haystack, const char *needle);
enum {
/** Enable a handler after all enabled handlers. */
DRGN_HANDLER_REGISTER_ENABLE_LAST = SIZE_MAX,
/** Don't enable a handler. */
DRGN_HANDLER_REGISTER_DONT_ENABLE = SIZE_MAX - 1,
};
/** Type finder callback table. */
struct drgn_type_finder_ops {
/**
* Callback to destroy the type finder.
*
* This may be @c NULL.
*
* @param[in] arg Argument passed to @ref
* drgn_program_register_type_finder().
*/
void (*destroy)(void *arg);
/**
* Callback for finding a type.
*
* @param[in] kinds Kinds of types to find, as a bitmask of bits shifted
* by @ref drgn_type_kind. E.g., `(1 << DRGN_TYPE_STRUCT) | (1 <<
* DRGN_TYPE_CLASS)` means to find a structure or class type.
* @param[in] name Name of type (or tag, for structs, unions, and
* enums). This is @em not null-terminated.
* @param[in] name_len Length of @p name.
* @param[in] filename Filename containing the type definition or @c
* NULL. This should be matched with @ref drgn_filename_matches().
* @param[in] arg Argument passed to @ref
* drgn_program_register_type_finder().
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error. In particular, if
* the type is not found, this should return &@ref drgn_not_found; any
* other errors are considered fatal.
*/
struct drgn_error *(*find)(uint64_t kinds, const char *name,
size_t name_len, const char *filename,
void *arg, struct drgn_qualified_type *ret);
};
/**
* Register a type finding callback.
*
* @param[in] name Finder name. This is copied.
* @param[in] ops Callback table. This is copied.
* @param[in] arg Argument to pass to callbacks.
* @param[in] enable_index Insert the finder into the list of enabled finders at
* the given index. If @ref DRGN_HANDLER_REGISTER_ENABLE_LAST or greater than
* the number of enabled finders, insert it at the end. If @ref
* DRGN_HANDLER_REGISTER_DONT_ENABLE, don’t enable the finder.
*/
struct drgn_error *
drgn_program_register_type_finder(struct drgn_program *prog, const char *name,
const struct drgn_type_finder_ops *ops,
void *arg, size_t enable_index);
/**
* Get the names of all registered type finders.
*
* The order of the names is arbitrary.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_registered_type_finders(struct drgn_program *prog,
const char ***names_ret,
size_t *count_ret);
/**
* Set the list of enabled type finders.
*
* Finders are called in the same order as the list until a type is found.
*
* @param[in] names Names of finders to enable, in order.
* @param[in] count Number of names in @p names.
*/
struct drgn_error *
drgn_program_set_enabled_type_finders(struct drgn_program *prog,
const char * const *names,
size_t count);
/**
* Get the names of enabled type finders, in order.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *drgn_program_enabled_type_finders(struct drgn_program *prog,
const char ***names_ret,
size_t *count_ret);
/** Flags for @ref drgn_program_find_object(). */
enum drgn_find_object_flags {
/** Find a constant (e.g., enumeration constant or macro). */
DRGN_FIND_OBJECT_CONSTANT = 1 << 0,
/** Find a function. */
DRGN_FIND_OBJECT_FUNCTION = 1 << 1,
/** Find a variable. */
DRGN_FIND_OBJECT_VARIABLE = 1 << 2,
/** Find any kind of object. */
DRGN_FIND_OBJECT_ANY = (1 << 3) - 1,
};
/** Object finder callback table. */
struct drgn_object_finder_ops {
/**
* Callback to destroy the object finder.
*
* This may be @c NULL.
*
* @param[in] arg Argument passed to @ref
* drgn_program_register_object_finder().
*/
void (*destroy)(void *arg);
/**
* Callback for finding an object.
*
* @param[in] name Name of object. This is @em not null-terminated.
* @param[in] name_len Length of @p name.
* @param[in] filename Filename containing the object definition or @c
* NULL. This should be matched with @ref drgn_filename_matches().
* @param[in] flags Flags indicating what kind of object to look for.
* @param[in] arg Argument passed to @ref
* drgn_program_register_object_finder().
* @param[out] ret Returned object. This must only be modified on
* success.
* @return @c NULL on success, non-@c NULL on error. In particular, if
* the object is not found, this should return &@ref drgn_not_found; any
* other errors are considered fatal.
*/
struct drgn_error *(*find)(const char *name, size_t name_len,
const char *filename,
enum drgn_find_object_flags flags,
void *arg, struct drgn_object *ret);
};
/**
* Register an object finding callback.
*
* @param[in] name Finder name. This is copied.
* @param[in] ops Callback table. This is copied.
* @param[in] arg Argument to pass to callbacks.
* @param[in] enable_index Insert the finder into the list of enabled finders at
* the given index. If @ref DRGN_HANDLER_REGISTER_ENABLE_LAST or greater than
* the number of enabled finders, insert it at the end. If @ref
* DRGN_HANDLER_REGISTER_DONT_ENABLE, don’t enable the finder.
*/
struct drgn_error *
drgn_program_register_object_finder(struct drgn_program *prog, const char *name,
const struct drgn_object_finder_ops *ops,
void *arg, size_t enable_index);
/**
* Get the names of all registered object finders.
*
* The order of the names is arbitrary.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_registered_object_finders(struct drgn_program *prog,
const char ***names_ret,
size_t *count_ret);
/**
* Set the list of enabled object finders.
*
* Finders are called in the same order as the list until a object is found.
*
* @param[in] names Names of finders to enable, in order.
* @param[in] count Number of names in @p names.
*/
struct drgn_error *
drgn_program_set_enabled_object_finders(struct drgn_program *prog,
const char * const *names,
size_t count);
/**
* Get the names of enabled object finders, in order.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_enabled_object_finders(struct drgn_program *prog,
const char ***names_ret, size_t *count_ret);
/**
* Set a @ref drgn_program to a core dump.
*
* @sa drgn_program_from_core_dump()
*
* @param[in] path Core dump file path.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_set_core_dump(struct drgn_program *prog,
const char *path);
/**
* Set a @ref drgn_program to a core dump from a file descriptor.
*
* @param[in] path Core dump file descriptor.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_set_core_dump_fd(struct drgn_program *prog, int fd);
/**
* Set a @ref drgn_program to the running operating system kernel.
*
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_set_kernel(struct drgn_program *prog);
/**
* Set a @ref drgn_program to a custom Linux kernel target.
*
* This enables debugging a Linux kernel via a custom memory transport
* (e.g., RDMA, TCP/IP, or VMM introspection). It sets up page table walking
* for virtual address translation.
*
* Physical memory segment(s) must be registered via @ref
* drgn_program_add_memory_segment() with physical=true before reading memory.
* Platform must be set when creating the program.
*
* @param[in] vmcoreinfo Raw vmcoreinfo data. If vmcoreinfo was already set
* when creating the program, this is ignored.
* @param[in] vmcoreinfo_size Size of vmcoreinfo data in bytes.
* @param[in] is_live Whether the kernel is currently running.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_program_set_linux_kernel_custom(struct drgn_program *prog,
const char *vmcoreinfo,
size_t vmcoreinfo_size, bool is_live);
/**
* Set a @ref drgn_program to a running process.
*
* @sa drgn_program_from_pid()
*
* @param[in] pid Process ID.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_set_pid(struct drgn_program *prog, pid_t pid);
/**
* Create a @ref drgn_program from a core dump file.
*
* The type of program (e.g., userspace or kernel) is determined automatically.
*
* @param[in] path Core dump file path.
* @param[out] ret Returned program.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_from_core_dump(const char *path,
struct drgn_program **ret);
/**
* Create a @ref drgn_program from a core dump file descriptor.
*
* Same as @ref drgn_program_from_core_dump but with an already-opened file
* descriptor.
*
* @param[in] fd Core dump file path descriptor.
* @param[out] ret Returned program.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_from_core_dump_fd(int fd,
struct drgn_program **ret);
/**
* Create a @ref drgn_program from the running operating system kernel.
*
* This requires root privileges.
*
* @param[out] ret Returned program.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_from_kernel(struct drgn_program **ret);
/**
* Create a @ref drgn_program from the a running program.
*
* On Linux, this requires @c PTRACE_MODE_ATTACH_FSCREDS permissions (see
* <tt>ptrace(2)</tt>).
*
* @param[in] pid Process ID of the program to debug.
* @param[out] ret Returned program.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_from_pid(pid_t pid, struct drgn_program **ret);
/** Get the set of @ref drgn_program_flags applying to a @ref drgn_program. */
enum drgn_program_flags drgn_program_flags(struct drgn_program *prog);
/**
* Get the platform of a @ref drgn_program.
*
* This remains valid until the program is destroyed. It should @em not be
* destroyed with @ref drgn_platform_destroy().
* @return non-@c NULL on success, @c NULL if the platform is not known yet.
*/
const struct drgn_platform *drgn_program_platform(struct drgn_program *prog);
/**
* Get the size of an address in a @ref drgn_program.
*
* @param[out] ret Returned address size, in bytes.
*/
struct drgn_error *drgn_program_address_size(struct drgn_program *prog,
uint64_t *ret);
/**
* Get the path of the core dump that a @ref drgn_program was created from.
*
* @return Path which is valid until the program is destroyed, or @c NULL if the
* program was not created from a core dump.
*/
const char *drgn_program_core_dump_path(struct drgn_program *prog);
/** Get the default language of a @ref drgn_program. */
const struct drgn_language *drgn_program_language(struct drgn_program *prog);
/** Set the default language of a @ref drgn_program. */
void drgn_program_set_language(struct drgn_program *prog,
const struct drgn_language *lang);
/**
* Read from a program's memory.
*
* @param[in] prog Program to read from.
* @param[out] buf Buffer to read into.
* @param[in] address Starting address in memory to read.
* @param[in] count Number of bytes to read.
* @param[in] physical Whether @c address is physical. A program may support
* only virtual or physical addresses or both.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_read_memory(struct drgn_program *prog,
void *buf, uint64_t address,
size_t count, bool physical);
/**
* Read a C string from a program's memory.
*
* This reads up to and including the terminating null byte.
*
* @param[in] prog Program to read from.
* @param[in] address Starting address in memory to read.
* @param[in] physical Whether @c address is physical. See @ref
* drgn_program_read_memory().
* @param[in] max_size Stop after this many bytes are read, not including the
* null byte. A null byte is appended to @p ret in this case.
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_read_c_string(struct drgn_program *prog,
uint64_t address, bool physical,
size_t max_size, char **ret);
struct drgn_error *drgn_program_read_u8(struct drgn_program *prog,
uint64_t address, bool physical,
uint8_t *ret);
struct drgn_error *drgn_program_read_u16(struct drgn_program *prog,
uint64_t address, bool physical,
uint16_t *ret);
struct drgn_error *drgn_program_read_u32(struct drgn_program *prog,
uint64_t address, bool physical,
uint32_t *ret);
struct drgn_error *drgn_program_read_u64(struct drgn_program *prog,
uint64_t address, bool physical,
uint64_t *ret);
struct drgn_error *drgn_program_read_word(struct drgn_program *prog,
uint64_t address, bool physical,
uint64_t *ret);
/**
* @defgroup MemorySearches Memory searches
*
* Searching program memory for values or patterns.
*
* @{
*/
/**
* @struct drgn_memory_search_iterator
*
* An iterator over all matches of a value or pattern in memory.
*/
struct drgn_memory_search_iterator; // IWYU pragma: export
/**
* Search for all non-overlapping occurrences of a byte string in memory.
*
* @param needle[in] Byte string to search for. This is copied, so it need not
* remain valid after this function returns.
* @param[in] size Size of @p needle in bytes.
* @param[in] alignment Only consider addresses aligned to this value. Must be a
* power of two.
* @param[out] ret Returned memory search iterator.
*/
struct drgn_error *
drgn_program_search_memory(struct drgn_program *prog, const void *needle,
size_t size, uint64_t alignment,
struct drgn_memory_search_iterator **ret);
/**
* Search for all occurrences of an object's value in memory.
*
* @param[in] obj Object whose value to search for. Its value is copied, so it
* need not remain valid after this function returns.
* @param[out] ret Returned memory search iterator.
*/
struct drgn_error *
drgn_search_memory_for_object(const struct drgn_object *obj,
struct drgn_memory_search_iterator **ret);
/**
* Search for all occurrences of a 16-bit unsigned integer in memory.
*
* Natural alignment is assumed.
*
* @param[in] value Value to search for.
* @param[out] ret Returned memory search iterator.
*/
struct drgn_error *
drgn_program_search_memory_u16(struct drgn_program *prog, uint16_t value,
struct drgn_memory_search_iterator **ret);
/**
* Like @ref drgn_program_search_memory_u16(), but for a 32-bit unsigned
* integer.
*/
struct drgn_error *
drgn_program_search_memory_u32(struct drgn_program *prog, uint32_t value,
struct drgn_memory_search_iterator **ret);
/**
* Like @ref drgn_program_search_memory_u16(), but for a 64-bit unsigned
* integer.
*/
struct drgn_error *
drgn_program_search_memory_u64(struct drgn_program *prog, uint64_t value,
struct drgn_memory_search_iterator **ret);
/**
* Like @ref drgn_program_search_memory_u16(), but for a program word-sized
* unsigned integer.
*
* It is an error if @p value is out of range of the program word size.
*/
struct drgn_error *
drgn_program_search_memory_word(struct drgn_program *prog, uint64_t value,
struct drgn_memory_search_iterator **ret);
/**
* Search for all occurrences of one or more 16-bit unsigned integers in memory.
*
* Natural alignment is assumed.
*
* @param[in] values Values to search for. This is copied, so it need not remain
* valid after this function returns. May be @c NULL if @p num_values is 0.
* @param[in] num_values Number of values in @p values.
* @param[in] ignore_mask Mask of bits to ignore when comparing to @p values.
* @param[in] ranges Ranges to search for. `ranges[i][0]` is the minimum
* (inclusive) and `ranges[i][1]` is the maximum (inclusive). This is copied, so
* it need not remain valid after this function returns. May be @c NULL if @p
* num_ranges is 0.
* @param[in] num_ranges Number of ranges in @p ranges.
* @param[out] ret Returned memory search iterator.
*/
struct drgn_error *
drgn_program_search_memory_u16_multi(struct drgn_program *prog,
const uint16_t *values, size_t num_values,
uint16_t ignore_mask,
const uint16_t (*ranges)[2],
size_t num_ranges,
struct drgn_memory_search_iterator **ret);
/**
* Like @ref drgn_program_search_memory_u16_multi(), but for 32-bit unsigned
* integers.
*/
struct drgn_error *
drgn_program_search_memory_u32_multi(struct drgn_program *prog,
const uint32_t *values, size_t num_values,
uint32_t ignore_mask,
const uint32_t (*ranges)[2],
size_t num_ranges,
struct drgn_memory_search_iterator **ret);
/**
* Like @ref drgn_program_search_memory_u16_multi(), but for 64-bit unsigned
* integers.
*/
struct drgn_error *
drgn_program_search_memory_u64_multi(struct drgn_program *prog,
const uint64_t *values, size_t num_values,
uint64_t ignore_mask,
const uint64_t (*ranges)[2],
size_t num_ranges,
struct drgn_memory_search_iterator **ret);
/**
* Like @ref drgn_program_search_memory_u16_multi(), but for program word-sized
* unsigned integers.
*
* It is an error if any value is out of range of the program word size.
*/
struct drgn_error *
drgn_program_search_memory_word_multi(struct drgn_program *prog,
const uint64_t *values, size_t num_values,
uint64_t ignore_mask,
const uint64_t (*ranges)[2],
size_t num_ranges,
struct drgn_memory_search_iterator **ret);
/**
* Search for all non-overlapping matches of a regular expression pattern in
* memory.
*
* @param[in] pattern PCRE regular expression to search for. This need not
* remain valid after this function returns.
* @param[in] pattern_len Length of @p pattern in bytes.
* @param[in] utf8 If `false`, search for 8-bit strings. If `true`, search for
* Unicode strings.
* @param[out] ret Returned memory search iterator.
*/
struct drgn_error *
drgn_program_search_memory_regex(struct drgn_program *prog, const void *pattern,
size_t pattern_len, bool utf8,
struct drgn_memory_search_iterator **ret);
/** Destroy a @ref drgn_memory_search_iterator. */
void drgn_memory_search_iterator_destroy(struct drgn_memory_search_iterator *it);
/** Get the program that a memory search iterator is from. */
struct drgn_program *
drgn_memory_search_iterator_program(const struct drgn_memory_search_iterator *it);
/**
* Get the next match from a memory search.
*
* @param[out] addr_ret Returned address of match. May be @c NULL.
* @param[out] match_ret Returned match. This is valid until the next call to
* @ref drgn_memory_search_iterator_next() or @ref
* drgn_memory_search_iterator_set_address_range() with the same @p it, or until
* @p it is destroyed. May be @c NULL.
* @param[out] match_len_ret Length of @p match_ret in bytes. May be @c NULL.
*/
struct drgn_error *
drgn_memory_search_iterator_next(struct drgn_memory_search_iterator *it,
uint64_t *addr_ret, const void **match_ret,
size_t *match_len_ret);
/**
* Limit the address range of a memory search.
*
* This can be called before, during, or after iteration.
*
* @param[in] min_address Minimum address to search (inclusive).
* @param[in] max_address Maximum address to search (inclusive).
* @param[in] physical If `false`, search virtual memory. If `true`, search
* physical memory.
*/
struct drgn_error *
drgn_memory_search_iterator_set_address_range(struct drgn_memory_search_iterator *it,
uint64_t min_address,
uint64_t max_address,
bool physical);
/** @} */
/**
* Find a type in a program by name.
*
* The returned type is valid for the lifetime of the @ref drgn_program.
*
* @param[in] prog Program.
* @param[in] name Name of the type.
* @param[in] filename Filename containing the type definition. This is matched
* with @ref drgn_filename_matches(). If multiple definitions match, one is
* returned arbitrarily.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_find_type(struct drgn_program *prog,
const char *name,
const char *filename,
struct drgn_qualified_type *ret);
/**
* Find an object in a program by name.
*
* The object can be a variable, constant, or function depending on @p flags.
*
* @param[in] prog Program.
* @param[in] name Name of the object.
* @param[in] filename Filename containing the object definition. This is
* matched with @ref drgn_filename_matches(). If multiple definitions match, one
* is returned arbitrarily.
* @param[in] flags Flags indicating what kind of object to look for.
* @param[out] ret Returned object. This must have already been initialized with
* @ref drgn_object_init().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_find_object(struct drgn_program *prog,
const char *name,
const char *filename,
enum drgn_find_object_flags flags,
struct drgn_object *ret);
/**
* @ingroup Symbols
*
* @struct drgn_symbol
*
* A @ref drgn_symbol represents an entry in a program's symbol table.
*/
struct drgn_symbol; // IWYU pragma: export
/**
* Get the symbol containing the given address.
*
* @param[out] ret The returned symbol. It should be freed with @ref
* drgn_symbol_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_program_find_symbol_by_address(struct drgn_program *prog, uint64_t address,
struct drgn_symbol **ret);
/**
* Get the symbol corresponding to the given name.
*
* @param[out] ret The returned symbol. It should be freed with @ref
* drgn_symbol_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_find_symbol_by_name(struct drgn_program *prog,
const char *name,
struct drgn_symbol **ret);
/**
* Get all global and local symbols, optionally with the given name.
*
* @param[in] prog Program.
* @param[in] name Name to match. If @c NULL, returns all symbols.
* @param[out] syms_ret Returned array of symbols. On success, this must be
* freed with @ref drgn_symbols_destroy().
* @param[out] count_ret Returned number of symbols in @p syms_ret.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_find_symbols_by_name(struct drgn_program *prog,
const char *name,
struct drgn_symbol ***syms_ret,
size_t *count_ret);
/**
* Get all symbols containing the given address.
*
* @param[in] prog Program.
* @param[in] address Address to search for.
* @param[out] syms_ret Returned array of symbols. On success, this must be
* freed with @ref drgn_symbols_destroy().
* @param[out] count_ret Returned number of symbols in @p syms_ret.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_find_symbols_by_address(struct drgn_program *prog,
uint64_t address,
struct drgn_symbol ***syms_ret,
size_t *count_ret);
/** Flags for @ref drgn_symbol_finder_ops::find() */
enum drgn_find_symbol_flags {
/** Find symbols whose name matches the name argument */
DRGN_FIND_SYMBOL_NAME = 1 << 0,
/** Find symbols whose address matches the addr argument */
DRGN_FIND_SYMBOL_ADDR = 1 << 1,
/** Find only one symbol */
DRGN_FIND_SYMBOL_ONE = 1 << 2,
};
/** Result builder for @ref drgn_symbol_finder_ops::find() */
struct drgn_symbol_result_builder;
/**
* Add or set the return value for a symbol search
*
* Symbol finders should call this with each symbol search result. If the symbol
* search was @ref DRGN_FIND_SYMBOL_ONE, then only the most recent symbol added
* to the builder will be returned. Otherwise, all symbols added to the builder
* are returned. Returns true on success, or false on an allocation failure.
*/
bool
drgn_symbol_result_builder_add(struct drgn_symbol_result_builder *builder,
struct drgn_symbol *symbol);
/** Get the current number of results in a symbol search result. */
size_t drgn_symbol_result_builder_count(const struct drgn_symbol_result_builder *builder);
/** Symbol finder callback table. */
struct drgn_symbol_finder_ops {
/**
* Callback to destroy the symbol finder.
*
* This may be @c NULL.
*
* @param[in] arg Argument passed to @ref
* drgn_program_register_symbol_finder().
*/
void (*destroy)(void *arg);
/**
* Callback for finding one or more symbols.
*
* The callback should perform a symbol lookup based on the flags given
* in @p flags. When multiple flags are provided, the effect should be
* treated as a logical AND. Symbol results should be added to the
* result builder @p builder, via @ref drgn_symbol_result_builder_add().
* When @ref DRGN_FIND_SYMBOL_ONE is set, then the finding function
* should only return the single best symbol result, and short-circuit
* return.
*
* When no symbol is found, simply do not add any result to the builder.
* No error should be returned in this case.
*
* @param[in] name Name of the symbol to match
* @param[in] addr Address of the symbol to match
* @param[in] flags Flags indicating the desired behavior of the search
* @param[in] arg Argument passed to @ref
* drgn_program_register_symbol_finder().
* @param[in] builder Used to build the resulting symbol output
*/
struct drgn_error *(*find)(const char *name, uint64_t addr,
enum drgn_find_symbol_flags flags, void *arg,
struct drgn_symbol_result_builder *builder);
};
/**
* Register a symbol finding callback.
*
* @param[in] name Finder name. This is copied.
* @param[in] ops Callback table. This is copied.
* @param[in] arg Argument to pass to callbacks.
* @param[in] enable_index Insert the finder into the list of enabled finders at
* the given index. If @ref DRGN_HANDLER_REGISTER_ENABLE_LAST or greater than
* the number of enabled finders, insert it at the end. If @ref
* DRGN_HANDLER_REGISTER_DONT_ENABLE, don’t enable the finder.
*/
struct drgn_error *
drgn_program_register_symbol_finder(struct drgn_program *prog, const char *name,
const struct drgn_symbol_finder_ops *ops,
void *arg, size_t enable_index);
/**
* Get the names of all registered symbol finders.
*
* The order of the names is arbitrary.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_registered_symbol_finders(struct drgn_program *prog,
const char ***names_ret,
size_t *count_ret);
/**
* Set the list of enabled symbol finders.
*
* Finders are called in the same order as the list. In case of a search for
* multiple symbols, then the results of all callbacks are concatenated. If the
* search is for a single symbol, then the first callback which finds a symbol
* will short-circuit the search.
*
* @param[in] names Names of finders to enable, in order.
* @param[in] count Number of names in @p names.
*/
struct drgn_error *
drgn_program_set_enabled_symbol_finders(struct drgn_program *prog,
const char * const *names,
size_t count);
/**
* Get the names of enabled symbol finders, in order.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_enabled_symbol_finders(struct drgn_program *prog,
const char ***names_ret, size_t *count_ret);
/** Element type and size. */
struct drgn_element_info {
/** Type of the element. */
struct drgn_qualified_type qualified_type;
/**
* Size in bits of one element.
*
* Element @c i is at bit offset <tt>i * bit_size</tt>.
*/
uint64_t bit_size;
};
/**
* Get the element type and size of an array or pointer @ref drgn_type.
*
* @param[in] prog Program.
* @param[in] type Array or pointer. After this function is called, this type
* must remain valid until the program is destroyed.
* @param[out] ret Returned element information.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_element_info(struct drgn_program *prog,
struct drgn_type *type,
struct drgn_element_info *ret);
/** @} */
/**
* @defgroup Modules Modules
*
* Modules in a program and debugging information.
*
* @{
*/
/**
* An executable, library, or other binary file used by a program.
*
* Modules are uniquely identified by the combination of their kind (@ref
* drgn_module_kind()), name (@ref drgn_module_name()), and info (@ref
* drgn_module_info()).
*/
struct drgn_module;
/** Kinds of modules. */
enum drgn_module_kind {
/**
* Main module. For userspace programs, this is the executable. For the
* Linux kernel, this is `vmlinux`.
*/
DRGN_MODULE_MAIN,
/** Shared library (a.k.a. dynamic library or dynamic shared object). */
DRGN_MODULE_SHARED_LIBRARY,
/** Virtual dynamic shared object (vDSO). */
DRGN_MODULE_VDSO,
/** Relocatable object (e.g., Linux kernel loadable module). */
DRGN_MODULE_RELOCATABLE,
/** Extra debugging information. */
DRGN_MODULE_EXTRA,
} __attribute__((__packed__));
/**
* Find the created @ref drgn_module with the given @p name.
*
* If there are multiple modules with the given name, one is returned
* arbitrarily.
*
* @return Module, or @c NULL if not found.
*/
struct drgn_module *drgn_module_find_by_name(struct drgn_program *prog,
const char *name);
/**
* Find the created @ref drgn_module containing the given @p address.
*
* @return Module, or @c NULL if not found.
*/
struct drgn_module *drgn_module_find_by_address(struct drgn_program *prog,
uint64_t address);
/**
* Find the main module.
*
* @param[in] name Module name, or @c NULL to match any name.
*/
struct drgn_module *drgn_module_find_main(struct drgn_program *prog,
const char *name);
/**
* Find the main module, creating it if it doesn't already exist.
*
* @param[out] new_ret @c true if the module was newly created, @c false if it
* was found.
*/
struct drgn_error *drgn_module_find_or_create_main(struct drgn_program *prog,
const char *name,
struct drgn_module **ret,
bool *new_ret);
/** Find a shared library module. */
struct drgn_module *drgn_module_find_shared_library(struct drgn_program *prog,
const char *name,
uint64_t dynamic_address);
/**
* Find a shared library module, creating it if it doesn't already exist.
*
* @param[out] new_ret @c true if the module was newly created, @c false if it
* was found.
*/
struct drgn_error *
drgn_module_find_or_create_shared_library(struct drgn_program *prog,
const char *name,
uint64_t dynamic_address,
struct drgn_module **ret,
bool *new_ret);
/** Find a vDSO module. */
struct drgn_module *drgn_module_find_vdso(struct drgn_program *prog,
const char *name,
uint64_t dynamic_address);
/**
* Find a vDSO module, creating it if it doesn't already exist.
*
* @param[out] new_ret @c true if the module was newly created, @c false if it
* was found.
*/
struct drgn_error *drgn_module_find_or_create_vdso(struct drgn_program *prog,
const char *name,
uint64_t dynamic_address,
struct drgn_module **ret,
bool *new_ret);
/** Find a relocatable module. */
struct drgn_module *drgn_module_find_relocatable(struct drgn_program *prog,
const char *name,
uint64_t address);
/**
* Find a relocatable module, creating it if it doesn't already exist.
*
* @param[out] new_ret @c true if the module was newly created, @c false if it
* was found.
*/
struct drgn_error *
drgn_module_find_or_create_relocatable(struct drgn_program *prog,
const char *name, uint64_t address,
struct drgn_module **ret, bool *new_ret);
/**
* Find a created Linux kernel loadable module from a ``struct module *`` object.
*/
struct drgn_error *
drgn_module_find_linux_kernel_loadable(const struct drgn_object *module_obj,
struct drgn_module **ret);
/**
* Find a Linux kernel loadable module from a ``struct module *`` object, creating
* it if it doesn't already exist.
*
* @param[out] new_ret @c true if the module was newly created, @c false if it
* was found.
*/
struct drgn_error *
drgn_module_find_or_create_linux_kernel_loadable(const struct drgn_object *module_obj,
struct drgn_module **ret,
bool *new_ret);
/** Find an extra module. */
struct drgn_module *drgn_module_find_extra(struct drgn_program *prog,
const char *name, uint64_t id);
/**
* Find an extra module, creating it if it doesn't already exist.
*
* @param[out] new_ret @c true if the module was newly created, @c false if it
* was found.
*/
struct drgn_error *drgn_module_find_or_create_extra(struct drgn_program *prog,
const char *name,
uint64_t id,
struct drgn_module **ret,
bool *new_ret);
/** Get the program that a module is from. */
struct drgn_program *drgn_module_program(const struct drgn_module *module);
/** Get the kind of a module. */
enum drgn_module_kind drgn_module_kind(const struct drgn_module *module);
/** Get the name of a module. */
const char *drgn_module_name(const struct drgn_module *module);
/**
* Get the kind-specific info of a module.
*
* - For the main module, it is always 0.
* - For shared library and vDSO modules, it is the address of the dynamic
* section.
* - For relocatable modules, it is an address identifying the module (e.g., for
* Linux kernel loadable modules, it is the base address).
* - For extra modules, it is an arbitrary identification number.
*/
uint64_t drgn_module_info(const struct drgn_module *module);
/**
* Get the number of address ranges where a module is loaded.
*
* @param[out] ret Returned number of address ranges (zero if address ranges are
* empty or not set).
* @return @c true on success (including if address ranges are empty), @c false
* if address ranges are not set.
*/
bool drgn_module_num_address_ranges(const struct drgn_module *module,
size_t *ret);
/**
* Get the @p i-th address range where a module is loaded.
*
* @param[out] start_ret Minimum address (inclusive).
* @param[out] end_ret Maximum address (exclusive).
* @return @c true on success, @c false if @p i is out of bounds (i.e., if it is
* greater than @ref drgn_module_num_address_ranges()).
*/
bool drgn_module_address_range(const struct drgn_module *module, size_t i,
uint64_t *start_ret, uint64_t *end_ret);
/**
* Set the address range of a module.
*
* This is equivalent to:
*
* ```
* uint64_t range[2] = {start, end};
* drgn_module_set_address_ranges(module, &range, 1);
* ```
*/
struct drgn_error *drgn_module_set_address_range(struct drgn_module *module,
uint64_t start, uint64_t end);
/**
* Set the address ranges of a module.
*
* @param[in] ranges Ranges to set. The first element of each range is the
* start. The second is the end. The start must be less than the end. This is
* copied, so it need not remain valid after this function returns.
* @param[in] num_ranges Number of ranges in @p ranges.
*/
struct drgn_error *drgn_module_set_address_ranges(struct drgn_module *module,
uint64_t ranges[][2],
size_t num_ranges);
/** Unset the address ranges for a module. */
void drgn_module_unset_address_ranges(struct drgn_module *module);
/** Return whether a module's address ranges contain @p address. */
bool drgn_module_contains_address(const struct drgn_module *module,
uint64_t address);
/**
* Get the unique byte string (e.g., GNU build ID) identifying files used by
* a module.
*
* @param[out] raw_ret Returned raw build ID. @c NULL if not known. Valid until
* the build ID is changed.
* @param[out] raw_len_ret Size of returned build ID, in bytes. 0 if not known.
* @return Lowercase hexadecimal representation of build ID. @c NULL if not
* known. Valid until the build ID is changed.
*/
const char *drgn_module_build_id(const struct drgn_module *module,
const void **raw_ret, size_t *raw_len_ret);
/**
* Set the unique byte string (e.g., GNU build ID) identifying files used by a
* module.
*
* @param[in] build_id New build ID.
* @param[in] build_id_len New size of build ID, in bytes. May be 0 to unset the
* build ID.
*/
struct drgn_error *drgn_module_set_build_id(struct drgn_module *module,
const void *build_id,
size_t build_id_len);
/** Get the address of a section with the given name in a relocatable module. */
struct drgn_error *drgn_module_get_section_address(struct drgn_module *module,
const char *name,
uint64_t *ret);
/**
* Set the address of a section with the given name in a relocatable module.
*
* This is not allowed after a file has been assigned to the module.
*/
struct drgn_error *drgn_module_set_section_address(struct drgn_module *module,
const char *name,
uint64_t address);
/**
* Unset the address of a section with the given name in a relocatable module.
*
* This is not allowed after a file has been assigned to the module.
*/
struct drgn_error *drgn_module_delete_section_address(struct drgn_module *module,
const char *name);
/**
* Get the number of section addresses currently set in a relocatable module.
*/
struct drgn_error *drgn_module_num_section_addresses(struct drgn_module *module,
size_t *ret);
/** Iterator over set section addresses in a relocatable module. */
struct drgn_module_section_address_iterator;
/** Create a @ref drgn_module_section_address_iterator. */
struct drgn_error *
drgn_module_section_address_iterator_create(struct drgn_module *module,
struct drgn_module_section_address_iterator **ret);
/** Destroy a @ref drgn_module_section_address_iterator. */
void
drgn_module_section_address_iterator_destroy(struct drgn_module_section_address_iterator *it);
/** Get the module that a @ref drgn_module_section_address_iterator is for. */
struct drgn_module *
drgn_module_section_address_iterator_module(struct drgn_module_section_address_iterator *it);
/**
* Get the next section name and address from a @ref
* drgn_module_section_address_iterator.
*
* @param[out] name_ret Returned name. Valid until the the next call to @ref
* drgn_module_section_address_iterator_next() or @ref
* drgn_module_section_address_iterator_destroy() on @it.
* @param[out] address_ret Returned address.
*/
struct drgn_error *
drgn_module_section_address_iterator_next(struct drgn_module_section_address_iterator *it,
const char **name_ret,
uint64_t *address_ret);
/** Status of a file in a @ref drgn_module. */
enum drgn_module_file_status {
/** File has not been found and should be searched for. */
DRGN_MODULE_FILE_WANT,
/** File has already been found and assigned. */
DRGN_MODULE_FILE_HAVE,
/** File has not been found, but it should not be searched for. */
DRGN_MODULE_FILE_DONT_WANT,
/** File has not been found and is not needed. */
DRGN_MODULE_FILE_DONT_NEED,
/**
* File has been found, but it requires a supplementary file before it
* can be used.
*/
DRGN_MODULE_FILE_WANT_SUPPLEMENTARY,
};
/** Kind of supplementary file. */
enum drgn_supplementary_file_kind {
/** Not known or not needed. */
DRGN_SUPPLEMENTARY_FILE_NONE,
/**
* GNU-style supplementary debug file referred to by a
* ``.gnu_debugaltlink`` section.
*/
DRGN_SUPPLEMENTARY_FILE_GNU_DEBUGALTLINK,
};
/** Get the status of a module's loaded file. */
enum drgn_module_file_status
drgn_module_loaded_file_status(const struct drgn_module *module);
/** Set the status of a module's loaded file. */
bool drgn_module_set_loaded_file_status(struct drgn_module *module,
enum drgn_module_file_status status);
/**
* Get whether a module wants a loaded file.
*
* For future-proofness, debug info finders should prefer this over comparing
* @ref drgn_module_loaded_file_status() directly.
*/
bool drgn_module_wants_loaded_file(const struct drgn_module *module);
/** Get the absolute path of a module's loaded file, or @c NULL if not known. */
const char *drgn_module_loaded_file_path(const struct drgn_module *module);
/**
* Get the difference between the load address in the program and addresses in a
* module's loaded file.
*/
uint64_t drgn_module_loaded_file_bias(const struct drgn_module *module);
enum drgn_module_file_status
drgn_module_debug_file_status(const struct drgn_module *module);
bool drgn_module_set_debug_file_status(struct drgn_module *module,
enum drgn_module_file_status status);
/**
* Get whether a module wants a debug file.
*
* For future-proofness, debug info finders should prefer this over comparing
* @ref drgn_module_debug_file_status() directly.
*/
bool drgn_module_wants_debug_file(const struct drgn_module *module);
/** Get the absolute path of a module's debug file, or @c NULL if not known. */
const char *drgn_module_debug_file_path(const struct drgn_module *module);
/**
* Get the difference between the load address in the program and addresses in a
* module's debug file.
*/
uint64_t drgn_module_debug_file_bias(const struct drgn_module *module);
/** Get the kind of a module's supplementary debug file. */
enum drgn_supplementary_file_kind
drgn_module_supplementary_debug_file_kind(const struct drgn_module *module);
/**
* Get the absolute path of a module's supplementary debug file, or @c NULL if
* not known or not needed.
*/
const char *
drgn_module_supplementary_debug_file_path(const struct drgn_module *module);
/**
* Get information about the supplementary debug file that a module currently
* wants.
*
* @param[out] debug_file_path_ret Path of main file that wants the
* supplementary file.
* @param[out] supplementary_path_ret Path to supplementary file. This may be
* absolute or relative to @p debug_file_path_ret.
* @param[out] checksum_ret Unique identifier of the supplementary file.
* @param[out] checksum_len_ret Size of unique identifier, in bytes.
* @return Kind of supplementary file.
*/
enum drgn_supplementary_file_kind
drgn_module_wanted_supplementary_debug_file(struct drgn_module *module,
const char **debug_file_path_ret,
const char **supplementary_path_ret,
const void **checksum_ret,
size_t *checksum_len_ret);
/**
* Return the object associated with this module.
*
* For some modules, there may be an object related to it. For example, drgn
* automatically identifies the Linux kernel `struct module *` associated with
* loadable modules, and associates it with them. Users may set or replace an
* associated object with @ref drgn_set_module_object().
*
* @param[out] ret Initialized object where the module object is placed
*/
struct drgn_error *
drgn_module_object(const struct drgn_module *module, struct drgn_object *ret);
/**
* Set the object associated with this module.
* @param[in] obj A new (or replacement) object for the module
*/
struct drgn_error *
drgn_module_set_object(struct drgn_module *module, const struct drgn_object *obj);
/** Debugging information finder callback table. */
struct drgn_debug_info_finder_ops {
/**
* Callback to destroy the debug info finder.
*
* This may be @c NULL.
*
* @param[in] arg Argument passed to @ref
* drgn_program_register_debug_info_finder().
*/
void (*destroy)(void *arg);
/**
* Callback for finding debug info.
*
* @param[in] modules Array of modules that want debugging information.
* @param[in] num_modules Number of modules in @p modules.
* @param[in] arg Argument passed to @ref
* drgn_program_register_debug_info_finder().
* @return @c NULL on success, non-@c NULL on error. It is not an error
* for some debugging information to not be found.
*/
struct drgn_error *(*find)(struct drgn_module * const *modules,
size_t num_modules, void *arg);
};
/**
* Register a debugging information finding callback.
*
* @param[in] name Finder name. This is copied.
* @param[in] ops Callback table. This is copied.
* @param[in] arg Argument to pass to callbacks.
* @param[in] enable_index Insert the finder into the list of enabled finders at
* the given index. If @ref DRGN_HANDLER_REGISTER_ENABLE_LAST or greater than
* the number of enabled finders, insert it at the end. If @ref
* DRGN_HANDLER_REGISTER_DONT_ENABLE, don’t enable the finder.
*/
struct drgn_error *
drgn_program_register_debug_info_finder(struct drgn_program *prog,
const char *name,
const struct drgn_debug_info_finder_ops *ops,
void *arg, size_t enable_index);
/**
* Get the names of all registered debugging information finders.
*
* The order of the names is arbitrary.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_registered_debug_info_finders(struct drgn_program *prog,
const char ***names_ret,
size_t *count_ret);
/**
* Set the list of enabled debugging information finders.
*
* Finders are called in the same order as the list until all wanted files have
* been found.
*
* @param[in] names Names of finders to enable, in order.
* @param[in] count Number of names in @p names.
*/
struct drgn_error *
drgn_program_set_enabled_debug_info_finders(struct drgn_program *prog,
const char * const *names,
size_t count);
/**
* Get the names of enabled debugging information finders, in order.
*
* @param[out] names_ret Returned array of names.
* @param[out] count_ret Returned number of names in @p names_ret.
*/
struct drgn_error *
drgn_program_enabled_debug_info_finders(struct drgn_program *prog,
const char ***names_ret,
size_t *count_ret);
/** Options for debugging information searches. */
struct drgn_debug_info_options;
/** Create a @ref drgn_debug_info_options with the default settings. */
struct drgn_error *
drgn_debug_info_options_create(struct drgn_debug_info_options **ret);
/** Destroy a @ref drgn_debug_info_options. */
void
drgn_debug_info_options_destroy(struct drgn_debug_info_options *options);
/** Set all options in @p dst to the same as @p src. */
struct drgn_error *
drgn_debug_info_options_copy(struct drgn_debug_info_options *dst,
const struct drgn_debug_info_options *src);
/**
* Get the list of directories to search for debugging information files.
*
* @return Null-terminated list of directories. Valid until @ref
* drgn_debug_info_options_set_directories() or @ref
* drgn_debug_info_options_destroy() is called on @p options.
*/
const char * const *
drgn_debug_info_options_get_directories(const struct drgn_debug_info_options *options);
/**
* Set the list of directories to search for debugging information files.
*
* @param[in] value Null-terminated list of directories. It is copied, so it
* need not remain valid after this function returns.
*/
struct drgn_error *
drgn_debug_info_options_set_directories(struct drgn_debug_info_options *options,
const char * const *value)
__attribute__((__nonnull__(1, 2)));
/** Get whether to try module names that look like filesystem paths. */
bool
drgn_debug_info_options_get_try_module_name(const struct drgn_debug_info_options *options);
/** Set whether to try module names that look like filesystem paths. */
void
drgn_debug_info_options_set_try_module_name(struct drgn_debug_info_options *options,
bool value);
/** Get whether to try files by build ID. */
bool
drgn_debug_info_options_get_try_build_id(const struct drgn_debug_info_options *options);
/** Set whether to try files by build ID. */
void
drgn_debug_info_options_set_try_build_id(struct drgn_debug_info_options *options,
bool value);
/**
* Get the list of directories to search for by debug link.
*
* @return Null-terminated list of directories. Valid until @ref
* drgn_debug_info_options_set_debug_link_directories() or @ref
* drgn_debug_info_options_destroy() is called on @p options.
*/
const char * const *
drgn_debug_info_options_get_debug_link_directories(const struct drgn_debug_info_options *options);
/**
* Set the list of directories to search for by debug link.
*
* @param[in] value Null-terminated list of directories. It is copied, so it
* need not remain valid after this function returns.
*/
struct drgn_error *
drgn_debug_info_options_set_debug_link_directories(struct drgn_debug_info_options *options,
const char * const *value)
__attribute__((__nonnull__(1, 2)));
/** Get whether to try files by debug link. */
bool
drgn_debug_info_options_get_try_debug_link(const struct drgn_debug_info_options *options);
/** Set whether to try files by debug link. */
void
drgn_debug_info_options_set_try_debug_link(struct drgn_debug_info_options *options,
bool value);
/** Get whether to try files via procfs for local processes. */
bool
drgn_debug_info_options_get_try_procfs(const struct drgn_debug_info_options *options);
/** Set whether to try files via procfs for local processes. */
void
drgn_debug_info_options_set_try_procfs(struct drgn_debug_info_options *options,
bool value);
/** Get whether to try the vDSO embedded in a process's memory/core dump. */
bool
drgn_debug_info_options_get_try_embedded_vdso(const struct drgn_debug_info_options *options);
/** Set whether to try the vDSO embedded in a process's memory/core dump. */
void
drgn_debug_info_options_set_try_embedded_vdso(struct drgn_debug_info_options *options,
bool value);
/**
* Get whether to reuse a module's loaded file as its debug file or vice versa.
*/
bool
drgn_debug_info_options_get_try_reuse(const struct drgn_debug_info_options *options);
/**
* Set whether to reuse a module's loaded file as its debug file or vice versa.
*/
void
drgn_debug_info_options_set_try_reuse(struct drgn_debug_info_options *options,
bool value);
/** Get whether to try finding supplementary files. */
bool
drgn_debug_info_options_get_try_supplementary(const struct drgn_debug_info_options *options);
/** Set whether to try finding supplementary files. */
void
drgn_debug_info_options_set_try_supplementary(struct drgn_debug_info_options *options,
bool value);
/**
* Get the list of directories to search for kernel debugging information files.
*
* @return Null-terminated list of directories. Valid until @ref
* drgn_debug_info_options_set_kernel_directories() or @ref
* drgn_debug_info_options_destroy() is called on @p options.
*/
const char * const *
drgn_debug_info_options_get_kernel_directories(const struct drgn_debug_info_options *options);
/**
* Set the list of directories to search for kernel debugging information files.
*
* @param[in] value Null-terminated list of directories. It is copied, so it
* need not remain valid after this function returns.
*/
struct drgn_error *
drgn_debug_info_options_set_kernel_directories(struct drgn_debug_info_options *options,
const char * const *value)
__attribute__((__nonnull__(1, 2)));
/** Methods of searching for loadable kernel module debugging information. */
enum drgn_kmod_search_method {
DRGN_KMOD_SEARCH_NONE,
DRGN_KMOD_SEARCH_DEPMOD,
DRGN_KMOD_SEARCH_WALK,
DRGN_KMOD_SEARCH_DEPMOD_OR_WALK,
DRGN_KMOD_SEARCH_DEPMOD_AND_WALK,
} __attribute__((__packed__));
/** Get how to search for loadable kernel module debugging information. */
enum drgn_kmod_search_method
drgn_debug_info_options_get_try_kmod(const struct drgn_debug_info_options *options);
/** Set how to search for loadable kernel module debugging information. */
void
drgn_debug_info_options_set_try_kmod(struct drgn_debug_info_options *options,
enum drgn_kmod_search_method value);
/**
* Get the default debugging information options for @p prog.
*
* @return Program options. May be modified as needed. Must not be passed to
* @ref drgn_debug_info_options_destroy().
*/
struct drgn_debug_info_options *
drgn_program_debug_info_options(struct drgn_program *prog);
/**
* Load debugging information for the given modules from the standard locations.
*
* @param[in] options Options to use, or @p NULL to use the program's default
* options.
*/
struct drgn_error *
drgn_find_standard_debug_info(struct drgn_module * const *modules,
size_t num_modules,
struct drgn_debug_info_options *options);
/**
* Try to use the given file for a module.
*
* @param[in] path Path to file.
* @param[in] fd If nonnegative, an open file descriptor referring to the file.
* This always takes ownership of the file descriptor even if the file is not
* used or on error.
* @param[in] force If @c true, don't check whether the file matches the module.
*/
struct drgn_error *
drgn_module_try_file(struct drgn_module *module, const char *path, int fd,
bool force);
/** Iterator over a set of modules. */
struct drgn_module_iterator;
/** Destroy a @ref drgn_module_iterator. */
void
drgn_module_iterator_destroy(struct drgn_module_iterator *it);
/** Get the program that a module iterator is from. */
struct drgn_program *
drgn_module_iterator_program(const struct drgn_module_iterator *it);
/**
* Get the next module in a module iterator.
*
* @param[out] ret Returned module, or @c NULL if there are no more modules.
* @param[out] new_ret Whether the module was newly created. May be @c NULL.
*/
struct drgn_error *drgn_module_iterator_next(struct drgn_module_iterator *it,
struct drgn_module **ret,
bool *new_ret);
/** Create an iterator over created modules. */
struct drgn_error *
drgn_created_module_iterator_create(struct drgn_program *prog,
struct drgn_module_iterator **ret);
/**
* Create an iterator that determines what executables, libraries, etc. are
* loaded in the program and creates modules to represent them.
*/
struct drgn_error *
drgn_loaded_module_iterator_create(struct drgn_program *prog,
struct drgn_module_iterator **ret);
/**
* Determine what executables, libraries, etc. are loaded in the program and
* create modules to represent them.
*
* This is a shortcut for creating an iterator with @ref
* drgn_loaded_module_iterator_create() and calling @ref
* drgn_module_iterator_next() until it is exhausted.
*/
struct drgn_error *
drgn_create_loaded_modules(struct drgn_program *prog);
/**
* Load debugging information for the given set of files and/or modules.
*
* @param[in] load_default Whether to load all debugging information for all
* loaded modules. This implies @p load_main.
* @param[in] load_main Whether to load all debugging information for the main
* module.
*/
struct drgn_error *drgn_program_load_debug_info(struct drgn_program *prog,
const char **paths, size_t n,
bool load_default,
bool load_main);
/**
* Load debugging information for the given modules using the enabled debugging
* information finders.
*/
struct drgn_error *drgn_load_module_debug_info(struct drgn_module **modules,
size_t *num_modules);
/** @} */
/**
* @defgroup Logging Logging
*
* Logging configuration.
*
* drgn can log to a file (@ref drgn_program_set_log_file()) or an arbitrary
* callback (@ref drgn_program_set_log_callback()). Messages can be filtered
* based on the log level (@ref drgn_program_set_log_level()).
*
* By default, the log file is set to `stderr` and the log level is @ref
* DRGN_LOG_NONE, so logging is disabled.
*
* Additionally, drgn can display a progress bar for some operations, like
* downloading debugging information. By default, progress bars are displayed on
* standard error if standard error is a terminal, the log file is set to
* `stderr`, and the log level is less than or equal to @ref DRGN_LOG_WARNING,
* but this can be changed (@ref drgn_program_set_progress_file()).
*
* @{
*/
/** Log levels. */
enum drgn_log_level {
DRGN_LOG_DEBUG = 0,
DRGN_LOG_INFO = 1,
DRGN_LOG_WARNING = 2,
DRGN_LOG_ERROR = 3,
DRGN_LOG_CRITICAL = 4,
};
/** Don't log anything. */
#define DRGN_LOG_NONE (DRGN_LOG_CRITICAL + 1)
/**
* Set the minimum log level.
*
* Messages below this level will not be logged.
*
* @param[in] level Minimum @ref drgn_log_level to log, or @ref DRGN_LOG_NONE to
* disable logging.
*/
void drgn_program_set_log_level(struct drgn_program *prog, int level);
/**
* Get the minimum log level.
*
* @return Minimum @ref drgn_log_level being logged, or @ref DRGN_LOG_NONE if
* logging is disabled.
*/
int drgn_program_get_log_level(struct drgn_program *prog);
/** Write logs to the given file. */
void drgn_program_set_log_file(struct drgn_program *prog, FILE *file);
/**
* Log callback.
*
* @param[in] prog Program message was logged to.
* @param[in] arg `callback_arg` passed to @ref drgn_program_set_log_callback().
* @param[in] level Message level.
* @param[in] format printf-style format of message.
* @param[in] ap Arguments for @p format.
* @param[in] err Error to append after formatted message if non-@c NULL. This
* can be formatted with @ref drgn_error_string(), @ref drgn_error_fwrite(), or
* @ref drgn_error_dwrite().
*/
typedef void drgn_log_fn(struct drgn_program *prog, void *arg,
enum drgn_log_level level, const char *format,
va_list ap, struct drgn_error *err);
/**
* Set a callback to log to.
*
* @param[in] callback Callback to call for each log message. This is only
* called if the message's level is at least the current log level.
* @param[in] callback_arg Argument to pass to callback.
*/
void drgn_program_set_log_callback(struct drgn_program *prog,
drgn_log_fn *callback, void *callback_arg);
/**
* Get the current log callback.
*
* @param[out] callback_ret Returned callback.
* @param[out] callback_arg_ret Returned callback argument.
*/
void drgn_program_get_log_callback(struct drgn_program *prog,
drgn_log_fn **callback_ret,
void **callback_arg_ret);
/**
* Write progress bars to the given file.
*
* @param[in] file File, or @c NULL to disable progress bars.
*/
void drgn_program_set_progress_file(struct drgn_program *prog, FILE *file);
/** @} */
/**
* @defgroup Objects Objects
*
* Objects in a program.
*
* A @ref drgn_object represents an object (e.g., variable, constant, or
* function) in a program.
*
* Various operators and helpers are defined on objects; see @ref
* ObjectOperators and @ref ObjectHelpers.
*
* Many operations are language-specific. C is currently the only supported
* language.
*
* In drgn's emulation of C:
*
* - Signed and unsigned integer arithmetic is reduced modulo 2^width.
* - Integer division truncates towards zero.
* - Modulo has the sign of the dividend.
* - Division or modulo by 0 returns an error.
* - Shifts are reduced modulo 2^width. In particular, a shift by a value
* greater than the width returns 0.
* - Shifts by a negative number return an error.
* - Bitwise operators on signed integers act on the two's complement
* representation.
* - Pointer arithmetic is supported.
* - Integer literal have the first type of @c int, @c long, <tt>long long</tt>,
* and <tt>unsigned long long</tt> which can represent the value.
* - Boolean literals have type @c int (@b not @c _Bool).
* - Floating-point literals have type @c double.
* @{
*/
/** Kinds of objects. */
enum drgn_object_kind {
/** Constant or temporary computed value. */
DRGN_OBJECT_VALUE,
/** In program memory. */
DRGN_OBJECT_REFERENCE,
/** Absent (e.g. optimized out). */
DRGN_OBJECT_ABSENT,
} __attribute__((__packed__));
/**
* Object encodings.
*
* The value of a @ref drgn_object may be encoded in various ways depending on
* its type. This determines which field of a @ref drgn_value is used.
*
* The incomplete encodings are only possible for reference objects; values have
* a complete type.
*/
enum drgn_object_encoding {
/**
* Memory buffer.
*
* This is used for objects with a structure, union, class, or array
* type.
*/
DRGN_OBJECT_ENCODING_BUFFER,
/**
* Signed integer.
*
* This is used for objects with a signed integer or signed enumerated
* type no larger than 64 bits.
*/
DRGN_OBJECT_ENCODING_SIGNED,
/**
* Unsigned integer.
*
* This is used for objects with a unsigned integer, boolean, or pointer
* type no larger than 64 bits.
*/
DRGN_OBJECT_ENCODING_UNSIGNED,
/**
* Big signed integer.
*
* This is used for objects with a signed integer or signed enumerated
* type larger than 64 bits.
*/
DRGN_OBJECT_ENCODING_SIGNED_BIG,
/**
* Big unsigned integer.
*
* This is used for objects with a unsigned integer, boolean, or pointer
* type larger than 64 bits.
*/
DRGN_OBJECT_ENCODING_UNSIGNED_BIG,
/**
* Floating-point value.
*
* This used for objects with a floating-point type.
*/
DRGN_OBJECT_ENCODING_FLOAT,
/**
* No value.
*
* This is used for reference objects with a void or function type.
*/
DRGN_OBJECT_ENCODING_NONE = -1,
/**
* Incomplete buffer value.
*
* This is used for reference objects with an incomplete structure,
* union, class, or array type.
*/
DRGN_OBJECT_ENCODING_INCOMPLETE_BUFFER = -2,
/**
* Incomplete integer value.
*
* This is used for reference objects with an incomplete enumerated
* types.
*/
DRGN_OBJECT_ENCODING_INCOMPLETE_INTEGER = -3,
} __attribute__((__packed__));
/**
* Return whether a type corresponding to an object encoding is complete.
*
* @sa drgn_type_is_complete()
*/
static inline bool
drgn_object_encoding_is_complete(enum drgn_object_encoding encoding)
{
return encoding >= 0;
}
/** Value of a @ref drgn_object. */
union drgn_value {
/**
* Pointer to an external buffer for a @ref DRGN_OBJECT_ENCODING_BUFFER,
* @ref DRGN_OBJECT_ENCODING_SIGNED_BIG, or @ref
* DRGN_OBJECT_ENCODING_UNSIGNED_BIG value.
*
* For @ref DRGN_OBJECT_ENCODING_BUFFER, this contains the object's
* representation in the memory of the program.
*
* For @ref DRGN_OBJECT_ENCODING_SIGNED_BIG and @ref
* DRGN_OBJECT_ENCODING_UNSIGNED_BIG, the representation of the value is
* an implementation detail which may change.
*/
char *bufp;
/**
* Inline buffer for a @ref DRGN_OBJECT_ENCODING_BUFFER value.
*
* Tiny buffers (see @ref drgn_value_is_inline()) are stored inline here
* instead of in a separate allocation.
*/
char ibuf[8];
/** @ref DRGN_OBJECT_ENCODING_SIGNED value. */
int64_t svalue;
/** @ref DRGN_OBJECT_ENCODING_UNSIGNED value. */
uint64_t uvalue;
/** @ref DRGN_OBJECT_ENCODING_FLOAT value. */
double fvalue;
};
/**
* Return the number of bytes needed to store the given number of bits.
*
* @param[in] bits Number of bits.
*/
static inline uint64_t drgn_value_size(uint64_t bits)
{
return bits / CHAR_BIT + (bits % CHAR_BIT ? 1 : 0);
}
/**
* Return whether the given number of bits can be stored in the inline buffer of
* a @ref drgn_value (@ref drgn_value::ibuf).
*
* @param[in] bits Number of bits.
*/
static inline bool drgn_value_is_inline(uint64_t bits)
{
return bits <= CHAR_BIT * sizeof(((union drgn_value *)0)->ibuf);
}
/** Reason object is absent. */
enum drgn_absence_reason {
/** Another reason not listed below. */
DRGN_ABSENCE_REASON_OTHER,
/** Object was optimized out by the compiler. */
DRGN_ABSENCE_REASON_OPTIMIZED_OUT,
/** Encountered unknown debugging information. */
DRGN_ABSENCE_REASON_NOT_IMPLEMENTED,
};
/**
* Object in a program.
*
* A @ref drgn_object represents a symbol or value in a program. It can be in
* the memory of the program (a "reference"), a temporary computed value (a
* "value"), or "absent".
*
* A @ref drgn_object must be initialized with @ref drgn_object_init() before it
* is used. It can then be set and otherwise changed repeatedly. When the object
* is no longer needed, it must be deinitialized @ref drgn_object_deinit().
*
* It is more effecient to initialize an object once and reuse it rather than
* creating a new one repeatedly (e.g., in a loop).
*
* Members of a @ref drgn_object should not be modified except through the
* provided functions.
*/
struct drgn_object {
/** Type of this object. */
struct drgn_type *type;
/**
* Size of this object in bits.
*
* This is usually the size of @ref drgn_object::type, but it may be
* smaller if this is a bit field (@ref drgn_object::is_bit_field).
*/
uint64_t bit_size;
/** Qualifiers on @ref drgn_object::type. */
enum drgn_qualifiers qualifiers;
/** How this object is encoded. */
enum drgn_object_encoding encoding;
/** Kind of this object. */
enum drgn_object_kind kind;
/** Whether this object is a bit field. */
bool is_bit_field;
/**
* Whether this object is little-endian.
*
* Valid only for scalars (i.e., @ref DRGN_OBJECT_ENCODING_SIGNED, @ref
* DRGN_OBJECT_ENCODING_UNSIGNED, @ref DRGN_OBJECT_ENCODING_SIGNED_BIG,
* @ref DRGN_OBJECT_ENCODING_UNSIGNED_BIG, @ref
* DRGN_OBJECT_ENCODING_FLOAT, or @ref
* DRGN_OBJECT_ENCODING_INCOMPLETE_INTEGER).
*/
bool little_endian;
/**
* Offset in bits from @c address.
*
* Valid only for reference objects.
*/
uint8_t bit_offset;
union {
/** Value of value object. */
union drgn_value value;
/** Address of reference object. */
uint64_t address;
/** Reason object is absent. */
enum drgn_absence_reason absence_reason;
};
};
/** Return the number of bytes needed to store an object's value. */
static inline uint64_t drgn_object_size(const struct drgn_object *obj)
{
return drgn_value_size(obj->bit_size);
}
/**
* Return whether an object's value can be stored in the inline buffer of a @ref
* drgn_value (@ref drgn_value::ibuf).
*/
static inline bool drgn_object_is_inline(const struct drgn_object *obj)
{
return drgn_value_is_inline(obj->bit_size);
}
/** Return an object's buffer. */
#define drgn_object_buffer(obj) ({ \
__auto_type _obj = (obj); \
drgn_object_is_inline(_obj) ? _obj->value.ibuf : _obj->value.bufp; \
})
/** Get the type of a @ref drgn_object. */
static inline struct drgn_qualified_type
drgn_object_qualified_type(const struct drgn_object *obj)
{
return (struct drgn_qualified_type){
.type = obj->type,
.qualifiers = obj->qualifiers,
};
}
/**
* Initialize a @ref drgn_object.
*
* The object is initialized to an absent object with a void type. This must be
* paired with a call to @ref drgn_object_deinit().
*
* @param[in] obj Object to initialize.
* @param[in] prog Program containing the object.
*/
void drgn_object_init(struct drgn_object *obj, struct drgn_program *prog);
/**
* Deinitialize a @ref drgn_object.
*
* The object cannot be used after this unless it is reinitialized with @ref
* drgn_object_init().
*
* @param[in] obj Object to deinitialize.
*/
void drgn_object_deinit(struct drgn_object *obj);
/**
* Define and initialize a @ref drgn_object named @p obj that is automatically
* deinitialized when it goes out of scope.
*
* This is equivalent to
*
* ```
* struct drgn_object obj;
* drgn_object_init(&obj, prog);
* ...
* drgn_object_deinit(&obj);
* ```
*
* @param[in] obj Name of object.
* @param[in] prog Program containing the object.
*/
#define DRGN_OBJECT(obj, prog) \
struct drgn_object obj \
__attribute__((__cleanup__(drgn_object_deinit))) = \
drgn_object_initializer(prog)
struct drgn_object drgn_object_initializer(struct drgn_program *prog);
/** Get the program that a @ref drgn_object is from. */
static inline struct drgn_program *
drgn_object_program(const struct drgn_object *obj)
{
return drgn_type_program(obj->type);
}
/** Get the language of a @ref drgn_object from its type. */
static inline const struct drgn_language *
drgn_object_language(const struct drgn_object *obj)
{
return drgn_type_language(obj->type);
}
/**
* @defgroup ObjectSetters Setters
*
* Object setters.
*
* Once a @ref drgn_object is initialized with @ref drgn_object_init(), it may
* be set any number of times.
*
* @{
*/
/**
* Set a @ref drgn_object to a signed value.
*
* @param[out] res Object to set.
* @param[in] qualified_type Type to set to.
* @param[in] svalue Value to set to.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_set_signed(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
int64_t svalue, uint64_t bit_field_size);
/**
* Set a @ref drgn_object to an unsigned value.
*
* @param[out] res Object to set.
* @param[in] qualified_type Type to set to.
* @param[in] uvalue Value to set to.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_set_unsigned(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
uint64_t uvalue, uint64_t bit_field_size);
/**
* Set a @ref drgn_object to a floating-point value.
*
* @param[out] res Object to set.
* @param[in] qualified_type Type to set to.
* @param[in] fvalue Value to set to.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_set_float(struct drgn_object *res,
struct drgn_qualified_type qualified_type, double fvalue);
/**
* Set a @ref drgn_object from a buffer.
*
* @param[out] res Object to set.
* @param[in] qualified_type Type to set to.
* @param[in] buf Buffer to set to. It is copied, so it need not remain valid
* after this function returns.
* @param[in] buf_size Size of @p buf, in bytes. `buf_size * 8` must be at least
* `bit_size + bit_offset`, where @c bit_size is @p bit_field_size if non-zero
* and the size of @p qualified_type in bits otherwise.
* @param[in] bit_offset Offset of the value from the beginning of the buffer,
* in bits. This is usually 0. It must be aligned to a byte unless the type is
* scalar.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_set_from_buffer(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
const void *buf, size_t buf_size,
uint64_t bit_offset, uint64_t bit_field_size);
/**
* Set a @ref drgn_object to a reference.
*
* @param[out] res Object to set.
* @param[in] qualified_type Type to set to.
* @param[in] address Address of the object.
* @param[in] bit_offset Offset of the value from @p address, in bits. This is
* usually 0.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_set_reference(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
uint64_t address, uint64_t bit_offset,
uint64_t bit_field_size);
/**
* Set a @ref drgn_object as absent.
*
* @param[out] res Object to set.
* @param[in] qualified_type Type to set to.
* @param[in] reason Reason object is absent.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_set_absent(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
enum drgn_absence_reason reason,
uint64_t bit_field_size);
/**
* Set a @ref drgn_object to a integer literal.
*
* This determines the type based on the programming language of the program
* that the object belongs to.
*
* @param[out] res Object to set.
* @param[in] uvalue Integer value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_integer_literal(struct drgn_object *res,
uint64_t uvalue);
/**
* Set a @ref drgn_object to a boolean literal.
*
* This determines the type based on the programming language of the program
* that the object belongs to.
*
* @param[out] res Object to set.
* @param[in] bvalue Boolean value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_bool_literal(struct drgn_object *res,
bool bvalue);
/**
* Set a @ref drgn_object to a floating-point literal.
*
* This determines the type based on the programming language of the program
* that the object belongs to.
*
* @param[out] res Object to set.
* @param[in] fvalue Floating-point value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_float_literal(struct drgn_object *res,
double fvalue);
/** @} */
/**
* @defgroup ObjectHelpers Helpers
*
* Object helpers.
*
* Several helpers are provided for working with @ref drgn_object%s.
*
* Helpers which return a @ref drgn_object have the same calling convention: the
* result object is the first argument, which must be initialized and may be the
* same as the input object argument; the result is only modified if the helper
* succeeds.
*
* @{
*/
/**
* Set a @ref drgn_object to another object.
*
* This copies @c obj to @c res. If @c obj is a value, then @c res is set to a
* value with the same type and value, and similarly if @c obj was a reference,
* @c res is set to the same reference.
*
* @param[out] res Destination object.
* @param[in] obj Source object.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_copy(struct drgn_object *res,
const struct drgn_object *obj);
/**
* Get a @ref drgn_object from a "fragment" of an object.
*
* This is a low-level interface used to implement @ref drgn_object_subscript(),
* @ref drgn_object_member(), and @ref drgn_object_reinterpret(). Those
* functions are usually more convenient.
*
* If multiple elements of an array are accessed (e.g., when iterating through
* it), it can be more efficient to call @ref drgn_program_element_info() once
* to get the required information and this function with the computed bit
* offset for each element.
*
* If the same member of a type is accessed repeatedly (e.g., in a loop), it can
* be more efficient to call @ref drgn_type_find_member() once to get the
* required information and this function to access the member each time.
*
* @sa drgn_object_dereference_offset
*
* @param[out] res Destination object.
* @param[in] obj Source object.
* @param[in] qualified_type Result type.
* @param[in] bit_offset Offset in bits from the beginning of @p obj.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_fragment(struct drgn_object *res,
const struct drgn_object *obj,
struct drgn_qualified_type qualified_type,
int64_t bit_offset,
uint64_t bit_field_size);
/**
* Get a @ref drgn_object from dereferencing a pointer object with an offset.
*
* This is a low-level interface used to implement @ref drgn_object_subscript()
* and @ref drgn_object_member_dereference(). Those functions are usually more
* convenient, but this function can be more efficient if accessing multiple
* elements or the same member multiple times.
*
* @sa drgn_object_fragment
*
* @param[out] res Dereferenced object.
* @param[in] obj Pointer object.
* @param[in] qualified_type Result type.
* @param[in] bit_offset Offset in bits from the address given by the value of
* @p obj.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_dereference_offset(struct drgn_object *res,
const struct drgn_object *obj,
struct drgn_qualified_type qualified_type,
int64_t bit_offset, uint64_t bit_field_size);
/**
* Read a @ref drgn_object.
*
* If @c obj is already a value, then this is equivalent to @ref
* drgn_object_copy(). If @c is a reference, then this reads the reference and
* sets @p res to the value.
*
* @param[out] res Object to set.
* @param[in] obj Object to read.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_read(struct drgn_object *res,
const struct drgn_object *obj);
/**
* Read the value of a @ref drgn_object.
*
* If @p obj is a value, that value is returned directly. If @p is a reference,
* the value is read into the provided temporary buffer.
*
* This must be paired with @ref drgn_object_deinit_value().
*
* @param[in] obj Object to read.
* @param[in] value Temporary value to use if necessary.
* @param[out] ret Pointer to the returned value, which is <tt>&obj->value</tt>
* if @p obj is a value, or @p value if @p obj is a reference.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_read_value(const struct drgn_object *obj,
union drgn_value *value,
const union drgn_value **ret);
/**
* Deinitialize a value which was read with @ref drgn_object_read_value().
*
* @param[in] obj Object which was read.
* @param[in] value Value returned from @ref drgn_object_read_value() in @p ret.
*/
void drgn_object_deinit_value(const struct drgn_object *obj,
const union drgn_value *value);
/**
* Get the binary representation of the value of a @ref drgn_object.
*
* @param[out] Buffer to read into. Size must be at least
* `drgn_object_size(obj)`.
*/
struct drgn_error *drgn_object_read_bytes(const struct drgn_object *obj,
void *buf);
/**
* Get the value of an object encoded with @ref
* drgn_object_encoding::DRGN_OBJECT_ENCODING_SIGNED.
*
* If the object is not a signed integer, an error is returned.
*
* @param[in] obj Object to read.
* @param[out] ret Returned value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_read_signed(const struct drgn_object *obj,
int64_t *ret);
/**
* Get the value of an object encoded with @ref
* drgn_object_encoding::DRGN_OBJECT_ENCODING_UNSIGNED.
*
* If the object is not an unsigned integer, an error is returned.
*
* @param[in] obj Object to read.
* @param[out] ret Returned value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_read_unsigned(const struct drgn_object *obj,
uint64_t *ret);
/**
* Get the value of an object encoded with @ref
* drgn_object_encoding::DRGN_OBJECT_ENCODING_SIGNED or @ref
* drgn_object_encoding::DRGN_OBJECT_ENCODING_UNSIGNED.
*
* If the object is not an integer, an error is returned.
*
* @param[in] obj Object to read.
* @param[out] ret Returned value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_read_integer(const struct drgn_object *obj,
union drgn_value *ret);
/**
* Get the value of an object encoded with @ref
* drgn_object_encoding::DRGN_OBJECT_ENCODING_FLOAT.
*
* If the object does not have a floating-point type, an error is returned.
*
* @param[in] obj Object to read.
* @param[out] ret Returned value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_read_float(const struct drgn_object *obj,
double *ret);
/**
* Read the null-terminated string pointed to by a @ref drgn_object.
*
* This is only valid for pointers and arrays. The element type is ignored; this
* operates byte-by-byte.
*
* For pointers and flexible arrays, this stops at the first null byte.
*
* For complete arrays, this stops at the first null byte or at the end of the
* array.
*
* The returned string is always null-terminated.
*
* @param[in] obj Object to read.
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
*/
struct drgn_error *drgn_object_read_c_string(const struct drgn_object *obj,
char **ret);
/** Flags to control @ref drgn_format_object() output. */
enum drgn_format_object_flags {
DRGN_FORMAT_OBJECT_DEREFERENCE = 1 << 0,
DRGN_FORMAT_OBJECT_SYMBOLIZE = 1 << 1,
DRGN_FORMAT_OBJECT_STRING = 1 << 2,
DRGN_FORMAT_OBJECT_CHAR = 1 << 3,
DRGN_FORMAT_OBJECT_TYPE_NAME = 1 << 4,
DRGN_FORMAT_OBJECT_MEMBER_TYPE_NAMES = 1 << 5,
DRGN_FORMAT_OBJECT_ELEMENT_TYPE_NAMES = 1 << 6,
DRGN_FORMAT_OBJECT_MEMBERS_SAME_LINE = 1 << 7,
DRGN_FORMAT_OBJECT_ELEMENTS_SAME_LINE = 1 << 8,
DRGN_FORMAT_OBJECT_MEMBER_NAMES = 1 << 9,
DRGN_FORMAT_OBJECT_ELEMENT_INDICES = 1 << 10,
DRGN_FORMAT_OBJECT_IMPLICIT_MEMBERS = 1 << 11,
DRGN_FORMAT_OBJECT_IMPLICIT_ELEMENTS = 1 << 12,
/** Default "pretty" flags. */
DRGN_FORMAT_OBJECT_PRETTY = (DRGN_FORMAT_OBJECT_DEREFERENCE |
DRGN_FORMAT_OBJECT_SYMBOLIZE |
DRGN_FORMAT_OBJECT_STRING |
DRGN_FORMAT_OBJECT_TYPE_NAME |
DRGN_FORMAT_OBJECT_MEMBER_TYPE_NAMES |
DRGN_FORMAT_OBJECT_ELEMENTS_SAME_LINE |
DRGN_FORMAT_OBJECT_MEMBER_NAMES |
DRGN_FORMAT_OBJECT_IMPLICIT_MEMBERS),
DRGN_FORMAT_OBJECT_VALID_FLAGS = (1 << 13) - 1,
};
/** Formatting options for @ref drgn_format_object(). */
struct drgn_format_object_options {
/**
* Number of columns to limit output to when the expression can be
* reasonably wrapped. The default is @c SIZE_MAX.
*/
size_t columns;
/**
* Flags to control formatting. The default is @ref
* DRGN_FORMAT_OBJECT_PRETTY.
*/
enum drgn_format_object_flags flags;
/** Base to format integers in (8, 10, or 16). The default is 10. */
int integer_base;
};
/**
* Format a @ref drgn_object as a string.
*
* This will format the object similarly to an expression in its programming
* language.
*
* @param[in] obj Object to format.
* @param[in] options Formatting options, or @c NULL to use the default options.
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_format_object(const struct drgn_object *obj,
const struct drgn_format_object_options *options,
char **ret);
/** @} */
/**
* @defgroup ObjectOperators Operators
*
* Object operators.
*
* Various operators are defined on @ref drgn_object%s. These operators obey the
* rules of the programming language of the given objects.
*
* Operators which return a @ref drgn_object have the same calling convention:
* the result object is the first argument, which must be initialized and may be
* the same as one or more of the operands; the result is only modified if the
* operator succeeds.
*
* @{
*/
/**
* Set a @ref drgn_object to the value of an object explicitly casted to a
* another type.
*
* This uses the programming language's rules for explicit conversions, like the
* cast operator.
*
* @sa drgn_object_implicit_convert(), drgn_object_reinterpret()
*
* @param[out] res Object to set. Always set to a value object.
* @param[in] qualified_type New type.
* @param[in] obj Object to cast.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_cast(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
const struct drgn_object *obj);
/**
* Set a @ref drgn_object to the value of an object implicitly converted to a
* another type.
*
* This uses the programming language's rules for implicit conversions, like
* when assigning to a variable or passing arguments to a function call.
*
* @sa drgn_object_cast(), drgn_object_reinterpret()
*
* @param[out] res Object to set. Always set to a value object.
* @param[in] qualified_type New type.
* @param[in] bit_field_size If the object should be a bit field, its size in
* bits. Otherwise, 0.
* @param[in] obj Object to convert.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_implicit_convert(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
uint64_t bit_field_size,
const struct drgn_object *obj);
/**
* Set a @ref drgn_object to the representation of an object reinterpreted as
* another type.
*
* This reinterprets the raw memory of the object, so an object can be
* reinterpreted as any other type.
*
* @sa drgn_object_cast(), drgn_object_implicit_convert()
*
* @param[out] res Object to set. If @p obj is a value, set to a value. If @p
* obj is a reference, set to a reference.
* @param[in] qualified_type New type.
* @param[in] obj Object to reinterpret.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_object_reinterpret(struct drgn_object *res,
struct drgn_qualified_type qualified_type,
const struct drgn_object *obj);
/**
* @ref drgn_object binary operator.
*
* Binary operators apply any language-specific conversions to @p lhs and @p
* rhs, apply the operator, and store the result in @p res.
*
* @param[out] res Operator result. May be the same as @p lhs and/or @p rhs.
* @param[in] lhs Operator left hand side.
* @param[in] rhs Operator right hand side.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
typedef struct drgn_error *drgn_binary_op(struct drgn_object *res,
const struct drgn_object *lhs,
const struct drgn_object *rhs);
/**
* @ref drgn_object unary operator.
*
* Unary operators apply any language-specific conversions to @p obj, apply the
* operator, and store the result in @p res.
*
* @param[out] res Operator result. May be the same as @p obj.
* @param[in] obj Operand.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
typedef struct drgn_error *drgn_unary_op(struct drgn_object *res,
const struct drgn_object *obj);
/**
* Convert a @ref drgn_object to a boolean value.
*
* This gets the "truthiness" of an object according to its programming
* language.
*
* @param[in] obj Object.
* @param[out] ret Returned boolean value.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_bool(const struct drgn_object *obj, bool *ret);
/**
* Compare the value of two @ref drgn_object%s.
*
* This applies any language-specific conversions to @p lhs and @p rhs and
* compares the resulting values.
*
* @param[in] lhs Comparison left hand side.
* @param[in] rhs Comparison right hand side.
* @param[out] ret 0 if the operands are equal, < 0 if @p lhs < @p rhs, and > 0
* if @p lhs > @p rhs.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_cmp(const struct drgn_object *lhs,
const struct drgn_object *rhs, int *ret);
/** Add (@c +) two @ref drgn_object%s. */
drgn_binary_op drgn_object_add;
/** Subtract (@c -) a @ref drgn_object from another. */
drgn_binary_op drgn_object_sub;
/** Multiply (@c *) two @ref drgn_object%s. */
drgn_binary_op drgn_object_mul;
/** Divide (@c /) a @ref drgn_object by another. */
drgn_binary_op drgn_object_div;
/** Calculate the modulus (@c %) of two @ref drgn_object%s. */
drgn_binary_op drgn_object_mod;
/** Left shift (@c <<) a @ref drgn_object by another. */
drgn_binary_op drgn_object_lshift;
/** Right shift (@c >>) a @ref drgn_object by another. */
drgn_binary_op drgn_object_rshift;
/** Calculate the bitwise and (@c &) of two @ref drgn_object%s. */
drgn_binary_op drgn_object_and;
/** Calculate the bitwise or (@c |) of two @ref drgn_object%s. */
drgn_binary_op drgn_object_or;
/** Calculate the bitwise exclusive or (@c ^) of two @ref drgn_object%s. */
drgn_binary_op drgn_object_xor;
/** Apply unary plus (@c +) to a @ref drgn_object. */
drgn_unary_op drgn_object_pos;
/** Calculate the arithmetic negation (@c -) of a @ref drgn_object. */
drgn_unary_op drgn_object_neg;
/** Calculate the bitwise negation (@c ~) of a @ref drgn_object. */
drgn_unary_op drgn_object_not;
/**
* Get the address of (@c &) a @ref drgn_object as an object.
*
* This is only possible for reference objects, as value objects don't have an
* address in the program.
*
* @param[out] res Resulting pointer value. May be the same as @p obj.
* @param[in] obj Reference object.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *drgn_object_address_of(struct drgn_object *res,
const struct drgn_object *obj);
/**
* Subscript (@c []) a @ref drgn_object.
*
* This is applicable to pointers and arrays.
*
* @param[out] res Resulting element. May be the same as @p obj.
* @param[in] obj Object to subscript.
* @param[in] index Element index.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *drgn_object_subscript(struct drgn_object *res,
const struct drgn_object *obj,
int64_t index);
/**
* Deference (@c *) a @ref drgn_object.
*
* This is equivalent to @ref drgn_object_subscript with an index of 0.
*
* @param[out] res Deferenced object. May be the same as @p obj.
* @param[in] obj Object to dereference.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
static inline struct drgn_error *
drgn_object_dereference(struct drgn_object *res, const struct drgn_object *obj)
{
return drgn_object_subscript(res, obj, 0);
}
/**
* Slice (i.e., get an array from a range of another array) a @ref drgn_object.
*
* This is applicable to pointers and arrays.
*
* @param[out] res Resulting array. May be the same as @p obj.
* @param[in] obj Object to slice.
* @param[in] start Start index (inclusive).
* @param[in] end End index (exclusive).
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *drgn_object_slice(struct drgn_object *res,
const struct drgn_object *obj,
int64_t start, int64_t end);
/**
* Get a member of a structure, union, or class @ref drgn_object (@c .).
*
* @param[out] res Returned member. May be the same as @p obj.
* @param[in] obj Object.
* @param[in] member_name Name of member.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *drgn_object_member(struct drgn_object *res,
const struct drgn_object *obj,
const char *member_name);
/**
* Get a member of a pointer @ref drgn_object (@c ->).
*
* This is applicable to pointers to structures and pointers to unions.
*
* @param[out] res Returned member. May be the same as @p obj.
* @param[in] obj Object.
* @param[in] member_name Name of member.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *drgn_object_member_dereference(struct drgn_object *res,
const struct drgn_object *obj,
const char *member_name);
/**
* Get a subobject (member or element) of this object.
*
* @param[out] res Returned subobject. May be the same as @p obj.
* @param[in] obj Object.
* @param[in] designator One or more member references or array subscripts.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *drgn_object_subobject(struct drgn_object *res,
const struct drgn_object *obj,
const char *member_designator);
/**
* Get the containing object of a member @ref drgn_object.
*
* This corresponds to the @c container_of() macro commonly used in C.
*
* @param[out] res Returned object. May be the same as @p obj.
* @param[in] obj Pointer to a member.
* @param[in] qualified_type Type which contains the member.
* @param[in] member_designator Name of the member in @p qualified_type. This
* can include one or more member references and zero or more array subscripts.
* @return @c NULL on success, non-@c NULL on error. @p res is not modified on
* error.
*/
struct drgn_error *
drgn_object_container_of(struct drgn_object *res, const struct drgn_object *obj,
struct drgn_qualified_type qualified_type,
const char *member_designator);
/**
* Get the size of a @ref drgn_object in bytes.
*
* @param[in] obj Object.
* @param[out] ret Returned size.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_object_sizeof(const struct drgn_object *obj,
uint64_t *ret);
/** @} */
/** @} */
/**
* @ingroup LazyObjects
*
* Callback to evaluate and/or free a @ref drgn_lazy_object.
*
* If @p res is not @c NULL, then this should return the object in @p res and
* free @p arg if necessary. If this returns an error, it may be called again
* (so @p arg must remain valid).
*
* If @p res is @c NULL, then this should free @p arg if necessary; it must not
* return an error.
*
* @param[out] res Result object (if evaluating) or @c NULL (if freeing). This
* is already initialized and should not be deinitialized on error.
* @param[in] arg Callback argument passed to @ref
* drgn_lazy_object_init_thunk().
* @return @c NULL on success, non-@c NULL on error.
*/
typedef struct drgn_error *drgn_object_thunk_fn(struct drgn_object *res,
void *arg);
/**
* @ingroup LazyObjects
*
* Lazily-evaluated object.
*
* A lazy object may be in two states: unevaluated, in which case a callback
* must be called to evaluate the object, or evaluated, in which case the object
* is cached. To evaluate an object, the callback is called, and the result is
* cached.
*
* This is for internal use only.
*/
union drgn_lazy_object {
/** Object if it has already been evaluated. */
struct drgn_object obj;
/** Thunk if the object has not been evaluated yet. */
struct {
/**
* Always @c NULL to indicate an unevaluated lazy object.
*
* This must be at the same offset as @ref drgn_object::type.
*/
struct drgn_type *dummy_type;
/** Program owning this thunk. */
struct drgn_program *prog;
/** Callback. */
drgn_object_thunk_fn *fn;
/** Argument passed to @ref drgn_lazy_object::thunk::fn. */
void *arg;
} thunk;
};
/**
* @defgroup Types Types
*
* Type descriptors.
*
* Types in a program are represented by @ref drgn_type.
*
* Type descriptors have various fields depending on the kind of type. For each
* field @c foo, there is a @c drgn_type_kind_has_foo() helper which returns
* whether the given kind of type has the field @c foo; a @c drgn_type_has_foo()
* helper which does the same but takes a type; and a @c drgn_type_foo() helper
* which returns the field. For members, enumerators, parameters, and template
* parameters, there is also a @c drgn_type_num_foo() helper.
*
* @{
*/
/** Primitive types known to drgn. */
enum drgn_primitive_type {
/* Primitive C types. */
DRGN_C_TYPE_VOID,
DRGN_C_TYPE_CHAR,
DRGN_C_TYPE_SIGNED_CHAR,
DRGN_C_TYPE_UNSIGNED_CHAR,
DRGN_C_TYPE_SHORT,
DRGN_C_TYPE_UNSIGNED_SHORT,
DRGN_C_TYPE_INT,
DRGN_C_TYPE_UNSIGNED_INT,
DRGN_C_TYPE_LONG,
DRGN_C_TYPE_UNSIGNED_LONG,
DRGN_C_TYPE_LONG_LONG,
DRGN_C_TYPE_UNSIGNED_LONG_LONG,
DRGN_C_TYPE_BOOL,
DRGN_C_TYPE_FLOAT,
DRGN_C_TYPE_DOUBLE,
DRGN_C_TYPE_LONG_DOUBLE,
DRGN_C_TYPE_SIZE_T,
DRGN_C_TYPE_PTRDIFF_T,
DRGN_PRIMITIVE_TYPE_NUM,
DRGN_NOT_PRIMITIVE_TYPE = DRGN_PRIMITIVE_TYPE_NUM,
/*
* Make sure to update api_reference.rst and type.c when adding anything
* here.
*/
} __attribute__((__packed__));
/** Member of a structure, union, or class type. */
struct drgn_type_member {
/**
* Member as an object.
*
* Access this with @ref drgn_member_object() or @ref
* drgn_member_type().
*/
union drgn_lazy_object object;
/** Member name or @c NULL if it is unnamed. */
const char *name;
/**
* Offset in bits from the beginning of the type to the beginning of
* this member (i.e., for little-endian machines, the least significant
* bit, and for big-endian machines, the most significant bit). Members
* are usually aligned to at least a byte, so this is usually a multiple
* of 8 (but that may not be the case for bit fields).
*/
uint64_t bit_offset;
};
/** Value of an enumerated type. */
struct drgn_type_enumerator {
/** Enumerator name. */
const char *name;
union {
/** Enumerator value if the type is signed. */
int64_t svalue;
/** Enumerator value if the type is unsigned. */
uint64_t uvalue;
};
};
/** Parameter of a function type. */
struct drgn_type_parameter {
/**
* Parameter type and default argument.
*
* Access this with @ref drgn_parameter_default_argument() or @ref
* drgn_parameter_type().
*/
union drgn_lazy_object default_argument;
/** Parameter name or @c NULL if it is unnamed. */
const char *name;
};
/** Template parameter of a structure, union, class, or function type. */
struct drgn_type_template_parameter {
/**
* Template parameter type or value.
*
* Access this with @ref drgn_template_parameter_type() and @ref
* drgn_template_parameter_object().
*/
union drgn_lazy_object argument;
/** Template parameter name or @c NULL if it is unnamed. */
const char *name;
/** Whether the argument is the default. */
bool is_default;
};
/**
* @struct drgn_type
*
* Type descriptor.
*
* Access it with the getters in @ref Types.
*/
struct drgn_type;
/** Get the kind of a type. */
DRGN_ACCESSOR_LINKAGE
enum drgn_type_kind drgn_type_kind(struct drgn_type *type);
/** Get the primitive type corresponding to a @ref drgn_type. */
DRGN_ACCESSOR_LINKAGE
enum drgn_primitive_type drgn_type_primitive(struct drgn_type *type);
/**
* Get whether a type is complete (i.e., the type definition is known).
*
* This is always @c false for the void type. It may be @c false for structure,
* union, class, enumerated, and array types, as well as typedef types where the
* underlying type is one of those. Otherwise, it is always @c true.
*/
DRGN_ACCESSOR_LINKAGE
bool drgn_type_is_complete(struct drgn_type *type);
/**
* Get whether a kind of type has a name. This is true for integer, boolean,
* floating-point, and typedef types.
*/
static inline bool drgn_type_kind_has_name(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_INT ||
kind == DRGN_TYPE_BOOL ||
kind == DRGN_TYPE_FLOAT ||
kind == DRGN_TYPE_TYPEDEF);
}
/** Get whether a type has a name. @sa drgn_type_kind_has_name() */
static inline bool drgn_type_has_name(struct drgn_type *type)
{
return drgn_type_kind_has_name(drgn_type_kind(type));
}
/**
* Get the name of a type. @ref drgn_type_has_name() must be true for this type.
*/
DRGN_ACCESSOR_LINKAGE
const char *drgn_type_name(struct drgn_type *type);
/**
* Get whether a kind of type has a size. This is true for integer, boolean,
* floating-point, structure, union, class, and pointer types.
*/
static inline bool drgn_type_kind_has_size(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_INT ||
kind == DRGN_TYPE_BOOL ||
kind == DRGN_TYPE_FLOAT ||
kind == DRGN_TYPE_STRUCT ||
kind == DRGN_TYPE_UNION ||
kind == DRGN_TYPE_CLASS ||
kind == DRGN_TYPE_POINTER);
}
/** Get whether a type has a size. @sa drgn_type_kind_has_size() */
static inline bool drgn_type_has_size(struct drgn_type *type)
{
return drgn_type_kind_has_size(drgn_type_kind(type));
}
/**
* Get the size of a type in bytes. @ref drgn_type_has_size() must be true for
* this type.
*/
DRGN_ACCESSOR_LINKAGE
uint64_t drgn_type_size(struct drgn_type *type);
/**
* Get whether a kind of type has a signedness. This is true for integer types.
*/
static inline bool drgn_type_kind_has_is_signed(enum drgn_type_kind kind)
{
return kind == DRGN_TYPE_INT;
}
/** Get whether a type has a signedness. @sa drgn_type_kind_has_is_signed() */
static inline bool drgn_type_has_is_signed(struct drgn_type *type)
{
return drgn_type_kind_has_is_signed(drgn_type_kind(type));
}
/**
* Get the signedness of a type. @ref drgn_type_has_is_signed() must be true for
* this type.
*/
DRGN_ACCESSOR_LINKAGE
bool drgn_type_is_signed(struct drgn_type *type);
/**
* Get whether a kind of type has a byte order. This is true for integer,
* boolean, floating-point, and pointer types.
*/
static inline bool drgn_type_kind_has_little_endian(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_INT ||
kind == DRGN_TYPE_BOOL ||
kind == DRGN_TYPE_FLOAT ||
kind == DRGN_TYPE_POINTER);
}
/**
* Get whether a type has a byte order. @sa drgn_type_kind_has_little_endian()
*/
static inline bool drgn_type_has_little_endian(struct drgn_type *type)
{
return drgn_type_kind_has_little_endian(drgn_type_kind(type));
}
/**
* Get the byte order of a type. @ref drgn_type_has_little_endian() must be true
* for this type.
*
* @return @c true if the type is little-endian, @c false if it is big-endian.
*/
DRGN_ACCESSOR_LINKAGE
bool drgn_type_little_endian(struct drgn_type *type);
/**
* Get whether a kind of type has a tag. This is true for structure, union,
* class, and enumerated types.
*/
static inline bool drgn_type_kind_has_tag(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_STRUCT ||
kind == DRGN_TYPE_UNION ||
kind == DRGN_TYPE_CLASS ||
kind == DRGN_TYPE_ENUM);
}
/** Get whether a type has a tag. @sa drgn_type_kind_has_tag() */
static inline bool drgn_type_has_tag(struct drgn_type *type)
{
return drgn_type_kind_has_tag(drgn_type_kind(type));
}
/**
* Get the tag of a type. @ref drgn_type_has_tag() must be true for this type.
*/
DRGN_ACCESSOR_LINKAGE
const char *drgn_type_tag(struct drgn_type *type);
/**
* Get whether a kind of type has members. This is true for structure, union,
* and class types.
*/
static inline bool drgn_type_kind_has_members(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_STRUCT ||
kind == DRGN_TYPE_UNION ||
kind == DRGN_TYPE_CLASS);
}
/** Get whether a type has members. @sa drgn_type_kind_has_members() */
static inline bool drgn_type_has_members(struct drgn_type *type)
{
return drgn_type_kind_has_members(drgn_type_kind(type));
}
/**
* Get the members of a type. @ref drgn_type_has_members() must be true for this
* type.
*/
DRGN_ACCESSOR_LINKAGE
struct drgn_type_member *drgn_type_members(struct drgn_type *type);
/**
* Get the number of members of a type. @ref drgn_type_has_members() must be
* true for this type. If the type is incomplete, this is always zero.
*/
DRGN_ACCESSOR_LINKAGE
size_t drgn_type_num_members(struct drgn_type *type);
/**
* Get whether a kind of type has a wrapped type. This is true for enumerated,
* typedef, pointer, array, and function types.
*/
static inline bool drgn_type_kind_has_type(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_ENUM ||
kind == DRGN_TYPE_TYPEDEF ||
kind == DRGN_TYPE_POINTER ||
kind == DRGN_TYPE_ARRAY ||
kind == DRGN_TYPE_FUNCTION);
}
/** Get whether a type has a wrapped type. @sa drgn_type_kind_has_type() */
static inline bool drgn_type_has_type(struct drgn_type *type)
{
return drgn_type_kind_has_type(drgn_type_kind(type));
}
/**
* Get the type wrapped by this type.
*
* For an enumerated type, this is the compatible integer type. It is @c NULL if
* the enumerated type is incomplete.
*
* For a typedef type, this is the aliased type.
*
* For a pointer type, this is the referenced type.
*
* For an array type, this is the element type.
*
* For a function type, this is the return type.
*/
DRGN_ACCESSOR_LINKAGE
struct drgn_qualified_type drgn_type_type(struct drgn_type *type);
/**
* Get whether a kind of type has enumerators. This is true for enumerated
* types.
*/
static inline bool drgn_type_kind_has_enumerators(enum drgn_type_kind kind)
{
return kind == DRGN_TYPE_ENUM;
}
/** Get whether a type has enumerators. @sa drgn_type_kind_has_enumerators() */
static inline bool drgn_type_has_enumerators(struct drgn_type *type)
{
return drgn_type_kind_has_enumerators(drgn_type_kind(type));
}
/**
* Get the enumerators of a type. @ref drgn_type_has_enumerators() must be true
* for this type.
*/
DRGN_ACCESSOR_LINKAGE
struct drgn_type_enumerator *drgn_type_enumerators(struct drgn_type *type);
/**
* Get the number of enumerators of a type. @ref drgn_type_has_enumerators()
* must be true for this type. If the type is incomplete, this is always zero.
*/
DRGN_ACCESSOR_LINKAGE
size_t drgn_type_num_enumerators(struct drgn_type *type);
/** Get whether a kind of type has a length. This is true for array types. */
static inline bool drgn_type_kind_has_length(enum drgn_type_kind kind)
{
return kind == DRGN_TYPE_ARRAY;
}
/** Get whether a type has a length. @sa drgn_type_kind_has_length() */
static inline bool drgn_type_has_length(struct drgn_type *type)
{
return drgn_type_kind_has_length(drgn_type_kind(type));
}
/**
* Get the length of a type. @ref drgn_type_has_length() must be true for this
* type. If the type is incomplete, this is always zero.
*/
DRGN_ACCESSOR_LINKAGE
uint64_t drgn_type_length(struct drgn_type *type);
/**
* Get whether a kind of type has parameters. This is true for function types.
*/
static inline bool drgn_type_kind_has_parameters(enum drgn_type_kind kind)
{
return kind == DRGN_TYPE_FUNCTION;
}
/** Get whether a type has parameters. @sa drgn_type_kind_has_parameters() */
static inline bool drgn_type_has_parameters(struct drgn_type *type)
{
return drgn_type_kind_has_parameters(drgn_type_kind(type));
}
/**
* Get the parameters of a type. @ref drgn_type_has_parameters() must be true
* for this type.
*/
DRGN_ACCESSOR_LINKAGE
struct drgn_type_parameter *drgn_type_parameters(struct drgn_type *type);
/**
* Get the number of parameters of a type. @ref drgn_type_has_parameters() must
* be true for this type.
*/
DRGN_ACCESSOR_LINKAGE
size_t drgn_type_num_parameters(struct drgn_type *type);
/**
* Get whether a kind of type can be variadic. This is true for function types.
*/
static inline bool drgn_type_kind_has_is_variadic(enum drgn_type_kind kind)
{
return kind == DRGN_TYPE_FUNCTION;
}
/** Get whether a type can be variadic. @sa drgn_type_kind_has_is_variadic() */
static inline bool drgn_type_has_is_variadic(struct drgn_type *type)
{
return drgn_type_kind_has_is_variadic(drgn_type_kind(type));
}
/**
* Get whether a type is variadic. @ref drgn_type_has_is_variadic() must be true
* for this type.
*/
DRGN_ACCESSOR_LINKAGE
bool drgn_type_is_variadic(struct drgn_type *type);
/** Get whether a kind of type can have template parameters. */
static inline bool
drgn_type_kind_has_template_parameters(enum drgn_type_kind kind)
{
return (kind == DRGN_TYPE_STRUCT ||
kind == DRGN_TYPE_UNION ||
kind == DRGN_TYPE_CLASS ||
kind == DRGN_TYPE_FUNCTION);
}
/** Get whether a type can have template parameters. */
static inline bool drgn_type_has_template_parameters(struct drgn_type *type)
{
return drgn_type_kind_has_template_parameters(drgn_type_kind(type));
}
/**
* Get the template parameters of a type. @ref
* drgn_type_has_template_parameters() must be true for this type.
*/
DRGN_ACCESSOR_LINKAGE
struct drgn_type_template_parameter *
drgn_type_template_parameters(struct drgn_type *type);
/**
* Get the number of template parameters of a type. @ref
* drgn_type_has_template_parameters() must be true for this type.
*/
DRGN_ACCESSOR_LINKAGE
size_t drgn_type_num_template_parameters(struct drgn_type *type);
/** Remove all top-level typedefs from a @ref drgn_qualified_type. */
struct drgn_qualified_type
drgn_qualified_type_unaliased(struct drgn_qualified_type qualified_type);
/**
* Get the object corresponding to a @ref drgn_type_member.
*
* @param[in] member Member.
* @param[out] ret Returned object.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_member_object(struct drgn_type_member *member,
const struct drgn_object **ret)
__attribute__((__nonnull__(1, 2)));
/**
* Get the type of a @ref drgn_type_member.
*
* @param[in] member Member.
* @param[out] type_ret Returned type.
* @param[out] bit_field_size_ret If the member is a bit field, returned size of
* the field in bits. Otherwise, returned as 0. Can be @c NULL if not needed.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_member_type(struct drgn_type_member *member,
struct drgn_qualified_type *type_ret,
uint64_t *bit_field_size_ret)
__attribute__((__nonnull__(1, 2)));
/**
* Get the default argument of a @ref drgn_type_parameter.
*
* @param[in] parameter Parameter.
* @param[out] ret Returned object.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_parameter_default_argument(struct drgn_type_parameter *parameter,
const struct drgn_object **ret)
__attribute__((__nonnull__(1, 2)));
/**
* Get the type of a @ref drgn_type_parameter.
*
* @param[in] parameter Parameter.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_parameter_type(struct drgn_type_parameter *parameter,
struct drgn_qualified_type *ret)
__attribute__((__nonnull__(1, 2)));
/**
* Get the type of a @ref drgn_type_template_parameter.
*
* If the template parameter is a non-type template parameter, this is the type
* of its value.
*
* @param[in] parameter Template parameter.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_template_parameter_type(struct drgn_type_template_parameter *parameter,
struct drgn_qualified_type *ret)
__attribute__((__nonnull__(1, 2)));
/**
* Get the value of a @ref drgn_type_template_parameter.
*
* @param[in] parameter Template parameter.
* @param[out] ret Returned object. If @p parameter is a type template
* parameter, this is returned as @c NULL.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_template_parameter_object(struct drgn_type_template_parameter *parameter,
const struct drgn_object **ret)
__attribute__((__nonnull__(1, 2)));
/**
* Get the size of a type in bytes.
*
* Unlike @ref drgn_type_size(), this is applicable to any type which has a
* meaningful size, including typedefs and arrays. Void, function, and
* incomplete types do not have a size; an error is returned for those types.
*
* @param[in] type Type.
* @param[out] ret Returned size.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_type_sizeof(struct drgn_type *type, uint64_t *ret);
/**
* Get the alignment requirement of a type.
*
* This corresponds to @c _Alignof() in C.
*
* @param[in] type Type.
* @param[out] ret Returned alignment.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_type_alignof(struct drgn_qualified_type qualified_type,
uint64_t *ret);
/**
* Get the offset in bytes of a member from the start of a structure, union, or
* class type.
*
* This corresponds to @c offsetof() in C.
*
* @param[in] type Type which contains the member.
* @param[in] member_designator Name of the member in @p type. This can include
* one or more member references and zero or more array subscripts.
*/
struct drgn_error *drgn_type_offsetof(struct drgn_type *type,
const char *member_designator,
uint64_t *ret);
/**
* Like @ref drgn_type_find_member(), but takes the length of @p member_name.
*/
struct drgn_error *
drgn_type_find_member_len(struct drgn_type *type, const char *member_name,
size_t member_name_len,
struct drgn_type_member **member_ret,
uint64_t *bit_offset_ret);
/**
* Find a member in a @ref drgn_type by name.
*
* If the type has any unnamed members, this also matches members of those
* unnamed members, recursively.
*
* @param[in] type Structure, union, or class type.
* @param[in] member_name Name of member.
* @param[out] member_ret Returned member.
* @param[out] bit_offset_ret Returned offset in bits from the beginning of @p
* type to the beginning of the member. This can be different from @ref
* drgn_type_member::bit_offset if the returned member was found in an unnamed
* member of @p type.
*/
static inline struct drgn_error *
drgn_type_find_member(struct drgn_type *type, const char *member_name,
struct drgn_type_member **member_ret,
uint64_t *bit_offset_ret)
{
return drgn_type_find_member_len(type, member_name, strlen(member_name),
member_ret, bit_offset_ret);
}
/** Like @ref drgn_type_has_member(), but takes the length of @p member_name. */
struct drgn_error *drgn_type_has_member_len(struct drgn_type *type,
const char *member_name,
size_t member_name_len, bool *ret);
/**
* Return whether a @ref drgn_type has a member with the given name.
*
* @param[in] type Structure, union, or class type.
* @param[in] member_name Name of member.
*/
static inline struct drgn_error *drgn_type_has_member(struct drgn_type *type,
const char *member_name,
bool *ret)
{
return drgn_type_has_member_len(type, member_name, strlen(member_name),
ret);
}
/**
* Format the name of a type as a string.
*
* This will format the name of the type as it would be referred to in its
* programming language.
*
* @param[in] qualified_type Type to format.
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_format_type_name(struct drgn_qualified_type qualified_type, char **ret);
/**
* Format the definition of a type as a string.
*
* This will format the type as it would be defined in its programming language.
*
* @param[in] qualified_type Type to format.
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_format_type(struct drgn_qualified_type qualified_type,
char **ret);
/**
* Format a variable declaration with the given type and name.
*
* This will format the variable as it would be declared in its programming
* language.
*
* @param[in] qualified_type Variable type.
* @param[in] name Variable name.
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_format_variable_declaration(struct drgn_qualified_type qualified_type,
const char *name, char **ret)
__attribute__((__nonnull__(2, 3)));
/** @} */
/**
* @defgroup Symbols Symbols
*
* Symbol table entries.
*
* @sa drgn_program_find_symbol_by_address()
*
* @{
*/
/** Symbol linkage behavior and visibility. */
enum drgn_symbol_binding {
DRGN_SYMBOL_BINDING_UNKNOWN,
/*
* These values match the ELF STB_* definitions (offset by 1). This is
* an implementation detail; future values may not correspond 1:1 with
* ELF definitions.
*/
DRGN_SYMBOL_BINDING_LOCAL,
DRGN_SYMBOL_BINDING_GLOBAL,
DRGN_SYMBOL_BINDING_WEAK,
DRGN_SYMBOL_BINDING_UNIQUE = 11, /* STB_GNU_UNIQUE + 1 */
} __attribute__((__packed__));
/** Kind of entity represented by a symbol. */
enum drgn_symbol_kind {
/*
* Like enum drgn_symbol_binding, these values match the ELF STT_*
* definitions, but this will not necessarily be true for future values.
*/
DRGN_SYMBOL_KIND_UNKNOWN,
DRGN_SYMBOL_KIND_OBJECT,
DRGN_SYMBOL_KIND_FUNC,
DRGN_SYMBOL_KIND_SECTION,
DRGN_SYMBOL_KIND_FILE,
DRGN_SYMBOL_KIND_COMMON,
DRGN_SYMBOL_KIND_TLS,
DRGN_SYMBOL_KIND_IFUNC = 10, /* STT_GNU_IFUNC */
} __attribute__((__packed__));
/** Describes the lifetime of an object provided to drgn */
enum drgn_lifetime {
/**
* DRGN_LIFETIME_STATIC: the object is guaranteed to outlive the
* drgn_program itself. drgn will not free or copy the object.
*/
DRGN_LIFETIME_STATIC,
/**
* DRGN_LIFETIME_EXTERNAL: the object is externally managed. It will
* live as long as the object it is associated with, but may be freed
* after. drgn will never free the object. If drgn must copy a data
* structure, the object will be duplicated, and drgn will own the new
* object.
*/
DRGN_LIFETIME_EXTERNAL,
/**
* DRGN_LIFETIME_OWNED: the object lifetime is managed by drgn. It
* should be freed when the containing object is freed. If the
* containing object is copied, it must also be copied.
*/
DRGN_LIFETIME_OWNED,
} __attribute__((__packed__));
/**
* Create a new @ref drgn_symbol with the given values
*
* All parameters should be self-explanatory, except for @a name_lifetime.
* Clients can use this to describe how drgn should treat the string @a name.
* Strings with lifetime @c STATIC will never be copied or freed. Strings with
* lifetime @c OWNED will always be copied or and freed with the symbol. Strings
* with lifetime EXTERNAL will not be freed, but if the Symbol is copied, they
* will be copied.
*/
struct drgn_error *
drgn_symbol_create(const char *name, uint64_t address, uint64_t size,
enum drgn_symbol_binding binding, enum drgn_symbol_kind kind,
enum drgn_lifetime name_lifetime, struct drgn_symbol **ret);
/** Destroy a @ref drgn_symbol. */
void drgn_symbol_destroy(struct drgn_symbol *sym);
/**
* Destroy each @ref drgn_symbol in @syms, and free the array.
*
* This will ignore any @c NULL entry in the array, allowing you to take
* ownership of any symbol from the array prior to freeing the rest. For each
* symbol you take ownership of, you must free it with @ref
* drgn_symbol_destroy().
*/
void drgn_symbols_destroy(struct drgn_symbol **syms, size_t count);
/**
* Get the name of a @ref drgn_symbol.
*
* The returned string is valid until @p sym is destroyed. It should not be
* freed.
*/
const char *drgn_symbol_name(struct drgn_symbol *sym);
/** Get the start address of a @ref drgn_symbol. */
uint64_t drgn_symbol_address(struct drgn_symbol *sym);
/** Get the size in bytes of a @ref drgn_symbol. */
uint64_t drgn_symbol_size(struct drgn_symbol *sym);
/** Get the binding of a @ref drgn_symbol. */
enum drgn_symbol_binding drgn_symbol_binding(struct drgn_symbol *sym);
/** Get the kind of a @ref drgn_symbol. */
enum drgn_symbol_kind drgn_symbol_kind(struct drgn_symbol *sym);
/** Return whether two symbols are identical. */
bool drgn_symbol_eq(struct drgn_symbol *a, struct drgn_symbol *b);
/** @} */
/**
* @defgroup StackTraces Stack traces
*
* Call stacks and stack frames.
*
* @{
*/
struct drgn_stack_trace; // IWYU pragma: export
/** Destroy a @ref drgn_stack_trace. */
void drgn_stack_trace_destroy(struct drgn_stack_trace *trace);
/** Get the @ref drgn_program that a @ref drgn_stack_trace came from. */
struct drgn_program *drgn_stack_trace_program(struct drgn_stack_trace *trace);
/** Get the number of stack frames in a stack trace. */
size_t drgn_stack_trace_num_frames(struct drgn_stack_trace *trace);
/**
* Format a stack trace as a string.
*
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_format_stack_trace(struct drgn_stack_trace *trace,
char **ret);
/** Return whether a stack frame was interrupted (e.g., by a signal). */
bool drgn_stack_frame_interrupted(struct drgn_stack_trace *trace, size_t frame);
/**
* Format a stack frame as a string.
*
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_format_stack_frame(struct drgn_stack_trace *trace,
size_t frame, char **ret);
/**
* Format the source code location of a stack frame as a string.
*
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_format_stack_frame_source(struct drgn_stack_trace *trace, size_t frame,
char **ret);
/**
* Get the best available name for a stack frame.
*
* @param[out] ret Returned name. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_stack_frame_name(struct drgn_stack_trace *trace,
size_t frame, char **ret);
/**
* Get the name of the function at a stack frame.
*
* @return Function name. This is valid until the stack trace is destroyed; it
* should not be freed. @c NULL if the name could not be determined.
*/
const char *drgn_stack_frame_function_name(struct drgn_stack_trace *trace,
size_t frame);
/**
* Get the name of the function or symbol at a stack frame's source code
* location.
*
* @param[out] ret Returned name, or @c NULL if not found. On success, it must
* be freed with @c free(). On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_stack_frame_source_name(struct drgn_stack_trace *trace,
size_t frame, char **ret);
/** Return whether a stack frame is for an inlined call. */
bool drgn_stack_frame_is_inline(struct drgn_stack_trace *trace, size_t frame);
/**
* Get the source code location of a stack frame.
*
* @param[out] line_ret Returned line number. Returned as 0 if unknown. May be
* @c NULL if not needed.
* @param[out] column_ret Returned column number. Returned as 0 if unknown. May
* be @c NULL if not needed.
* @return Filename. This is valid until the stack trace is destroyed; it should
* not be freed. @c NULL if the location could not be determined (in which case
* `*line_ret` and `*column_ret` are not modified).
*/
const char *drgn_stack_frame_source(struct drgn_stack_trace *trace,
size_t frame, int *line_ret,
int *column_ret);
/**
* Get the program counter at a stack frame.
*
* @param[out] ret Returned program counter.
* @return @c true if the program counter is known, @c false if it is not.
*/
bool drgn_stack_frame_pc(struct drgn_stack_trace *trace, size_t frame,
uint64_t *ret);
/**
* Get the stack pointer at a stack frame.
*
* @param[out] ret Returned stack pointer.
* @return @c true if the stack pointer is known, @c false if it is not.
*/
bool drgn_stack_frame_sp(struct drgn_stack_trace *trace, size_t frame,
uint64_t *ret);
/**
* Get the function symbol at a stack frame.
*
* @param[out] ret Returned symbol. On success, it should be freed with @ref
* drgn_symbol_destroy(). On error, its contents are undefined.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_stack_frame_symbol(struct drgn_stack_trace *trace,
size_t frame,
struct drgn_symbol **ret);
/**
* Get the names of local objects in the scope of this frame.
*
* The array of names must be freed with @ref drgn_stack_frame_locals_destroy().
*
* @param[out] names_ret Returned array of names. On success, must be freed with
* @ref drgn_stack_frame_locals_destroy().
* @param[out] count_ret Returned number of names in @p names_ret.
* @return @c NULL on success, non-@c NULL on error
*/
struct drgn_error *
drgn_stack_frame_locals(struct drgn_stack_trace *trace, size_t frame,
const char ***names_ret, size_t *count_ret);
/**
* Free an array of names returned by @ref drgn_stack_frame_locals().
*
* The individual names from this array are invalid once this function is
* called. Any string which will be used later should be copied.
*
* @param names Array of names returned by @ref drgn_stack_frame_locals().
* @param count Count returned by @ref drgn_stack_frame_locals().
*/
void drgn_stack_frame_locals_destroy(const char **names, size_t count);
/**
* Find an object in the scope of a stack frame.
*
* @param[in] name Object name.
* @param[out] ret Returned object. This must have already been initialized with
* @ref drgn_object_init().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_stack_frame_find_object(struct drgn_stack_trace *trace, size_t frame,
const char *name, struct drgn_object *ret);
/**
* Get the value of a register in a stack frame.
*
* @param[in] reg Register to get. Must be from the platform of the program that
* the trace was taken from.
* @param[out] ret Returned register value.
* @return @c true on success, @c false if the value is not known or the
* register is too large to return in a @c uint64_t.
*/
bool drgn_stack_frame_register(struct drgn_stack_trace *trace, size_t frame,
const struct drgn_register *reg, uint64_t *ret);
/**
* Get a stack trace for the thread with the given thread ID.
*
* @param[out] ret Returned stack trace. On success, it should be freed with
* @ref drgn_stack_trace_destroy(). On error, its contents are undefined.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_stack_trace(struct drgn_program *prog,
uint32_t tid,
struct drgn_stack_trace **ret);
/**
* Get a stack trace with the supplied list of program counters.
*
* @param[out] ret Returned stack trace. On success, it should be freed with
* @ref drgn_stack_trace_destroy(). On error, its contents are undefined.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_program_stack_trace_from_pcs(struct drgn_program *prog,
const uint64_t *pcs,
size_t pcs_size,
struct drgn_stack_trace **ret);
/**
* Get a stack trace for the thread represented by @p obj.
*
* @sa drgn_program_stack_trace().
*/
struct drgn_error *drgn_object_stack_trace(const struct drgn_object *obj,
struct drgn_stack_trace **ret);
/** @} */
/**
* @defgroup SourceLocations Source locations
*
* Source code locations.
*
* @{
*/
/**
* @struct drgn_source_location_list
*
* List of source code locations.
*/
struct drgn_source_location_list; // IWYU pragma: export
/** Destroy a @ref drgn_source_location_list. */
void drgn_source_location_list_destroy(struct drgn_source_location_list *locs);
/**
* Get the @ref drgn_program that a @ref drgn_source_location_list came from.
*/
struct drgn_program *
drgn_source_location_list_program(struct drgn_source_location_list *locs);
/** Get the number of locations in a source location list. */
size_t drgn_source_location_list_length(struct drgn_source_location_list *locs);
/**
* Format a source location list as a string.
*
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_format_source_location_list(struct drgn_source_location_list *locs,
char **ret);
/**
* Format a single location in a source location list as a string.
*
* @param[out] ret Returned string. On success, it must be freed with @c free().
* On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_format_source_location_list_at(struct drgn_source_location_list *locs,
size_t i, char **ret);
/**
* Get the filename, line number, and column number at a single location in a
* source location list.
*
* @param[out] line_ret Returned line number. Returned as 0 if unknown. May be
* @c NULL if not needed.
* @param[out] column_ret Returned column number. Returned as 0 if unknown. May
* be @c NULL if not needed.
* @return Filename. This is valid until the source location list is destroyed;
* it should not be freed. @c NULL if the location could not be determined (in
* which case `*line_ret` and `*column_ret` are not modified).
*/
const char *
drgn_source_location_list_source_at(struct drgn_source_location_list *locs,
size_t i, int *line_ret, int *column_ret);
/**
* Get the name of the function or symbol at a single location in a source
* location list.
*
* @param[out] ret Returned name, or @c NULL if not found. On success, it must
* be freed with @c free(). On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_source_location_list_name_at(struct drgn_source_location_list *locs,
size_t i, char **ret);
/**
* Find the source code location containing a code address.
*
* @param[in] address Code address.
* @param[out] ret Returned source location list.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_program_source_location(struct drgn_program *prog, uint64_t address,
struct drgn_source_location_list **ret);
/**
* Find the source code location containing a code address given as a symbol
* name or hexadecimal address, optionally followed by a `+` character and a
* decimal or hexadecimal offset
*
* @param[in] address Code address.
* @param[out] ret Returned source location list.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_program_addr2line(struct drgn_program *prog, const char *address,
struct drgn_source_location_list **ret);
/** @} */
/**
* @defgroup Threads Threads
*
* Threads in a program.
*
* @{
*/
/**
* @struct drgn_thread
*
* A thread in a program.
*/
struct drgn_thread;
/**
* Create a copy of a @ref drgn_thread.
*
* @param[in] thread Thread to copy.
* @param[out] ret Returned copy. On success, must be destroyed with @ref
* drgn_thread_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_thread_dup(const struct drgn_thread *thread,
struct drgn_thread **ret);
/** Free a @ref drgn_thread. */
void drgn_thread_destroy(struct drgn_thread *thread);
/**
* @struct drgn_thread_iterator
*
* An iterator over all the threads in a program.
*/
struct drgn_thread_iterator;
/**
* Get an iterator over all of the threads in the program.
*
* @param[out] ret Returned iterator, which can be advanced with @ref
* drgn_thread_iterator_next, and must be destroyed with @ref
* drgn_thread_iterator_destroy.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_thread_iterator_create(struct drgn_program *prog,
struct drgn_thread_iterator **ret);
/** Free a @ref drgn_thread_iterator. */
void drgn_thread_iterator_destroy(struct drgn_thread_iterator *it);
/**
* Get the next thread from a @ref drgn_thread_iterator.
*
* @param[out] ret Borrowed thread handle, or @c NULL if there are no more
* threads. This is valid until until the next call to @ref
* drgn_thread_iterator_next() with the same @p it, or until @p it is destroyed.
* It may be copied with @ref drgn_thread_dup() if it is needed for longer. This
* must NOT be destroyed with @ref drgn_thread_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_thread_iterator_next(struct drgn_thread_iterator *it,
struct drgn_thread **ret);
/**
* Get the thread with the given thread ID.
*
* @param[in] tid Thread ID.
* @param[out] ret New thread handle, or @c NULL if not found. On success, must
* be destroyed with @ref drgn_thread_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_find_thread(struct drgn_program *prog,
uint32_t tid,
struct drgn_thread **ret);
/**
* Get the main program thread.
*
* @param[out] ret Borrowed thread handle. This is valid for the lifetime of @p
* prog. This must NOT be destroyed with @ref drgn_thread_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_main_thread(struct drgn_program *prog,
struct drgn_thread **ret);
/**
* Get the thread that caused the program to crash.
*
* @param[out] ret Borrowed thread handle. This is valid for the lifetime of @p
* prog. This must NOT be destroyed with @ref drgn_thread_destroy().
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_program_crashed_thread(struct drgn_program *prog,
struct drgn_thread **ret);
/**
* Get the object for the given thread. This is currently only defined for the
* Linux kernel.
*
* @param[out] ret Returned object. This must not be modified and is valid for
* the lifetime of @p thread. It can be copied with @ref drgn_object_copy() if
* it is needed for longer.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_thread_object(struct drgn_thread *thread,
const struct drgn_object **ret);
/**
* Get a stack trace for the thread represented by @p thread.
*
* @sa drgn_program_stack_trace().
*/
struct drgn_error *drgn_thread_stack_trace(struct drgn_thread *thread,
struct drgn_stack_trace **ret);
/**
* Get name for the thread represented by @p thread.
*
* @param[out] ret Returned thread name, or @c NULL if not found. On success, it
* should be freed with free(). On error, it is not modified.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_thread_name(struct drgn_thread *thread, char **ret);
/** @} */
#endif /* DRGN_H */
|