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
|
/*
* Oracle Linux DTrace.
* Copyright (c) 2010, 2025, Oracle and/or its affiliates. All rights reserved.
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
/*
* Portions Copyright 2007 Chad Mynhier
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <ctype.h>
#include <fcntl.h>
#include <string.h>
#include <memory.h>
#include <errno.h>
#include <dirent.h>
#include <limits.h>
#include <signal.h>
#include <assert.h>
#include <sys/ptrace.h>
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/user.h>
#include <sys/wait.h>
#include <dt_debug.h>
#include <platform.h>
#include <port.h>
#include "Pcontrol.h"
#include "libproc.h"
char procfs_path[PATH_MAX] = "/proc";
static int systemd_system = -1; /* 1 if this is a system running systemd. */
static void Pfree_internal(struct ps_prochandle *P);
static void ignored_child_wait(struct ps_prochandle *P, pid_t pid,
void (*fun)(struct ps_prochandle *P, pid_t pid));
static void ignored_child_flush(struct ps_prochandle *P, pid_t pid);
static prev_states_t *Ppush_state(struct ps_prochandle *P, int state);
static int Ppop_state(struct ps_prochandle *P);
static int Pwait_handle_waitpid(struct ps_prochandle *P, int status);
static int bkpt_handle(struct ps_prochandle *P, uintptr_t addr);
static int bkpt_handle_start(struct ps_prochandle *P, bkpt_t *bkpt);
static int bkpt_handle_post_singlestep(struct ps_prochandle *P, bkpt_t *bkpt);
static int Pbkpt_continue_internal(struct ps_prochandle *P, bkpt_t *bkpt,
int singlestep);
static void Punbkpt_child_poke(struct ps_prochandle *P, pid_t pid, bkpt_t *bkpt);
static void bkpt_flush(struct ps_prochandle *P, pid_t pid, int gone);
static bkpt_t *bkpt_by_addr(struct ps_prochandle *P, uintptr_t addr,
int delete);
static int add_bkpt(struct ps_prochandle *P, uintptr_t addr,
int after_singlestep, int notifier,
int (*bkpt_handler)(uintptr_t addr, void *data),
void (*bkpt_cleanup)(void *data),
void *data);
static void delete_bkpt_handler(struct bkpt *bkpt);
static jmp_buf **single_thread_unwinder_pad(struct ps_prochandle *unused);
static void Pdump_proc_status(pid_t pid);
static ptrace_lock_hook_fun *ptrace_lock_hook;
static waitpid_lock_hook_fun *waitpid_lock_hook;
libproc_unwinder_pad_fun *libproc_unwinder_pad = single_thread_unwinder_pad;
#define LIBPROC_PTRACE_OPTIONS PTRACE_O_TRACEEXEC | \
PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK | \
PTRACE_O_TRACEEXIT
_dt_printflike_(1,2)
void
_dprintf(const char *format, ...)
{
va_list alist;
if (!_dtrace_debug)
return;
va_start(alist, format);
dt_debug_printf("libproc", format, alist);
va_end(alist);
}
/*
* Single-threaded unwinder pad, used if no other pad is registered.
*/
static __thread jmp_buf *default_unwinder_pad;
static jmp_buf **
single_thread_unwinder_pad(struct ps_prochandle *unused)
{
return &default_unwinder_pad;
}
/*
* Create a new controlled process.
* Leave it stopped on successful exit from exec() or execve().
* Return an opaque pointer to its process control structure.
* Return NULL if process cannot be created (fork()/exec() not successful).
*/
struct ps_prochandle *
Pcreate(
const char *file, /* executable file name */
char *const *argv, /* argument vector */
void *wrap_arg, /* args for hooks and wrappers */
int *perr) /* pointer to error return code */
{
struct ps_prochandle *P;
char procname[PATH_MAX + MAXLEN_PID + strlen("/exe") + 1];
pid_t pid;
int rc;
int status;
int forkblock[2];
if ((P = malloc(sizeof(struct ps_prochandle))) == NULL) {
*perr = ENOMEM;
return NULL;
}
memset(P, 0, sizeof(*P));
P->bkpts = calloc(BKPT_HASH_BUCKETS, sizeof(struct bkpt_t *));
if (!P->bkpts) {
_dprintf("Out of memory initializing breakpoint hash\n");
*perr = ENOMEM;
free(P);
return NULL;
}
P->wrap_arg = wrap_arg;
Pset_ptrace_wrapper(P, NULL);
Pset_pwait_wrapper(P, NULL);
if (pipe(forkblock) < 0) {
*perr = errno;
_dprintf("Pcreate: out of fds forking %s\n", file);
free(P);
return NULL;
}
if ((pid = fork()) == -1) {
free(P);
close(forkblock[0]);
close(forkblock[1]);
*perr = EAGAIN;
return NULL;
}
if (pid == 0) { /* child process */
id_t id;
int dummy;
/*
* If running setuid or setgid, reset credentials to normal,
* then wait for our parent to ptrace us.
*/
if ((id = getgid()) != getegid())
setgid(id);
if ((id = getuid()) != geteuid())
setuid(id);
close(forkblock[1]);
read(forkblock[0], &dummy, 1);
close(forkblock[0]);
execvp(file, argv); /* execute the program */
_exit(127);
}
close(forkblock[0]);
/*
* Initialize the process structure. Because we have ptrace()d
* explicitly, without using Ptrace(), we must update the ptrace count
* and related state, and call the lock hook ourselves.
*/
P->state = PS_TRACESTOP;
P->ptrace_count++;
P->ptraced = TRUE;
P->ptrace_halted = TRUE;
P->noninvasive = FALSE;
P->pid = pid;
if (Ppush_state(P, PS_RUN) == NULL) {
rc = errno;
_dprintf("Pcreate: error pushing state: %s\n", strerror(errno));
goto bad;
}
if (ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 1);
if (Psym_init(P) < 0) {
rc = errno;
_dprintf("Pcreate: error initializing symbol table: %s\n",
strerror(errno));
goto bad;
}
/*
* ptrace() the process with our tracing options active, and unblock it.
*/
if (wrapped_ptrace(P, PTRACE_SEIZE, pid, 0, LIBPROC_PTRACE_OPTIONS |
PTRACE_O_TRACECLONE) < 0) {
rc = errno;
_dprintf("Pcreate: seize of %s failed: %s\n", file,
strerror(errno));
goto bad;
}
close(forkblock[1]);
while (waitpid(pid, &status, 0) < 0 && errno == EINTR);
if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGTRAP ||
(status >> 8) != (SIGTRAP | PTRACE_EVENT_EXEC << 8)) {
rc = ENOENT;
_dprintf ("Pcreate: exec of %s failed\n", file);
goto bad_untrace;
}
/*
* Initialize the memfd, now we have exec()ed. Leave the mapfilefd unset
* until needed.
*/
P->mapfilefd = -1;
P->memfd = -1;
if (Pmemfd(P) == -1) { /* populate ->memfd */
/* error already reported */
rc = errno;
goto bad_untrace;
}
/*
* The process is now stopped, waiting in execve() until resumed.
*/
snprintf(procname, sizeof(procname), "%s/%d/exe",
procfs_path, P->pid);
if ((Pread_isa_info(P, procname)) < 0) {
/* error already reported */
rc = errno;
goto bad_untrace;
}
_dprintf("Pcreate: forked off PID %i from %s\n", P->pid, file);
*perr = 0;
return P;
bad_untrace:
Puntrace(P, 0);
bad:
kill(pid, SIGKILL);
*perr = rc;
if (ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 0);
Pfree_internal(P);
return NULL;
}
/*
* Grab an existing process. Try to force it to stop (but failure at this is
* not an error, except if we manage to ptrace() but not stop).
*
* By default, upon Puntrace(), the process will be set running again, but not
* released. Use Ptrace_set_detached() to change this behaviour, or Prelease() to
* unconditionally release.
*
* Return an opaque pointer to its process control structure.
*
* pid: UNIX process ID.
* noninvasiveness: if 1, inability to ptrace() is not an error; if 2, do a
* noninvasive grab unconditionally
* already_ptraced: if 1, this process is already in ptrace() trace-stop state
* wrap_arg: arg for hooks and wrappers
* perr: pointer to error return code.
*/
struct ps_prochandle *
Pgrab(pid_t pid, int noninvasiveness, int already_ptraced, void *wrap_arg,
int *perr)
{
struct ps_prochandle *P;
char procname[PATH_MAX + MAXLEN_PID + strlen("/exe") + 1];
*perr = 0;
if (kill(pid, 0) == ESRCH) {
*perr = errno;
return NULL;
}
if ((P = malloc(sizeof(struct ps_prochandle))) == NULL) {
*perr = ENOMEM;
return NULL;
}
memset(P, 0, sizeof(*P));
P->state = already_ptraced ? PS_TRACESTOP : PS_RUN;
P->pid = pid;
P->detach = 1;
if (Psym_init(P) < 0)
goto bad;
P->bkpts = calloc(BKPT_HASH_BUCKETS, sizeof(struct bkpt_t *));
if (!P->bkpts)
goto bad;
P->wrap_arg = wrap_arg;
Pset_ptrace_wrapper(P, NULL);
Pset_pwait_wrapper(P, NULL);
P->memfd = -1;
P->mapfilefd = -1;
if (noninvasiveness < 2) {
/*
* Populate ->memfd as a side-effect.
*/
if (Pmemfd(P) == -1) {
if (noninvasiveness < 1)
/* error already reported */
goto bad;
else
noninvasiveness = 2;
} else if (!already_ptraced) {
/*
* Pmemfd() grabbed, try to ptrace().
*/
*perr = Ptrace(P, 1);
if (*perr < 0) {
if (noninvasiveness < 1) {
_dprintf("%i: Pgrab(): not grabbed.\n", P->pid);
Pfree_internal(P);
return NULL;
}
close(P->memfd);
_dprintf("%i: Pgrab(): grabbed noninvasively.\n", P->pid);
noninvasiveness = 2;
}
} else {
P->ptrace_count = 1;
if (Ppush_state(P, PS_RUN) == NULL)
goto bad;
P->ptraced = TRUE;
P->ptrace_halted = TRUE;
}
}
/*
* Noninvasive grab, or error doing possibly-noninvasive grab promoted
* it to definite noninvasiveness.
*/
if (*perr || noninvasiveness > 1) {
_dprintf("%i: grabbing noninvasively.\n", P->pid);
P->noninvasive = TRUE;
}
snprintf(procname, sizeof(procname), "%s/%d/exe",
procfs_path, P->pid);
if ((Pread_isa_info(P, procname)) < 0)
/* error already reported */
goto bad_untrace;
_dprintf ("Pgrab: grabbed PID %i.\n", P->pid);
return P;
bad_untrace:
Puntrace(P, 0);
bad:
*perr = errno;
Pfree_internal(P);
return NULL;
}
/*
* Free a process control structure.
*
* Close the file descriptors but don't do the Prelease logic, nor replace
* breakpoints with their original content. (Thus, extremely internal.)
*/
static void
Pfree_internal(struct ps_prochandle *P)
{
rd_free(P->rap);
Pclose(P);
Psym_free(P);
free(P->auxv);
free(P->bkpts);
free(P);
}
/*
* Free a process control structure, external version.
* Aborts if the process is not already released.
*/
void
Pfree(struct ps_prochandle *P)
{
if (P == NULL)
return;
assert(P->released);
Pfree_internal(P);
}
/*
* Close the process's cached file descriptors and expensive state.
*
* It is reloaded when needed.
*/
void
Pclose(struct ps_prochandle *P)
{
if (!P)
return;
Preset_maps(P);
if (P->memfd > -1) {
close(P->memfd);
P->memfd = -1;
}
if (P->mapfilefd > -1) {
close(P->mapfilefd);
P->mapfilefd = -1;
}
}
/*
* Return true if this process has any fds open.
*/
int
Phasfds(struct ps_prochandle *P)
{
return P->memfd > -1;
}
/*
* Return the state of the process, one of the PS_* values.
*/
int
Pstate(struct ps_prochandle *P)
{
/*
* Act like free() with respect to null pointers: a null pointer is dead,
* by definition.
*/
if (P == NULL)
return PS_DEAD;
return P->state;
}
/*
* Return the open memory file descriptor for the process, reopening it if
* needed.
*
* Although technically unnecessary, also prohibit digging about in process
* memory if the process is not being ptrace()d, since such digging is risky if
* we cannot robustly stop the process before it hits regions of interest.
*
* Clients must not close this file descriptor, nor use it after the process is
* freed or Pclose()d.
*/
int
Pmemfd(struct ps_prochandle *P)
{
char procname[PATH_MAX + MAXLEN_PID + strlen("/") + 1];
char *fname;
if ((P->memfd != -1) || P->noninvasive)
return P->memfd;
snprintf(procname, sizeof(procname), "%s/%d/",
procfs_path, (int)P->pid);
fname = procname + strlen(procname);
strcpy(fname, "mem");
if ((P->memfd = open(procname, O_RDONLY | O_EXCL | O_CLOEXEC)) < 0) {
_dprintf("Pmemfd: failed to open %s: %s\n",
procname, strerror(errno));
return -1;
}
return P->memfd;
}
/*
* Return an fd to the /proc/<pid>/map_files directory, suitable for openat().
*
* Returns -1 on any failure at all: the caller must compensate.
*
* -ENOENT failures are 'sticky' and will cause this function to fail
* persistently, throughout the run.
*/
int
Pmapfilefd(struct ps_prochandle *P)
{
char procname[PATH_MAX + MAXLEN_PID + strlen("/") + 1];
char *fname;
static int no_map_files;
if (no_map_files)
return -1;
if (P->mapfilefd != -1)
return P->mapfilefd;
snprintf(procname, sizeof(procname), "%s/%d/",
procfs_path, (int)P->pid);
fname = procname + strlen(procname);
strcpy(fname, "map_files");
P->mapfilefd = open(procname, O_PATH | O_CLOEXEC | O_DIRECTORY);
/*
* Nonexistent-file failures are permanent: this is a kernel that does
* not support map_files at all, so repeatedly reopening is a waste of
* time.
*/
if ((P->mapfilefd < 0) && (errno == ENOENT))
no_map_files = 1;
return P->mapfilefd;
}
/*
* Return 1 if the process is dynamically linked.
*/
int
Pdynamically_linked(struct ps_prochandle *P)
{
/*
* This is populated by the r_debug computation code, so call it now,
* and fail if it fails.
*/
if (r_debug(P) < 0)
return -1;
return !P->no_dyn;
}
/*
* Release the process.
*
* release_mode is one of the PS_RELEASE_* constants:
*
* PS_RELEASE_NORMAL: detach, remove breakpoints, but do not kill
*
* PS_RELEASE_KILL: kill the process and detach.
*
* PS_RELEASE_NO_DETACH: do not resume, unpoke breakpoints, or detach. This
* lets the caller reinitialize libproc state without affecting a process halted
* at exec(). We also do not call the lock hook in this situation, balancing a
* lack of lock hook invocation in Pgrab() when already_ptraced is set: this
* means that other threads cannot sneak in in the brief instant while the
* ps_prochandle no longer exists.
*
* Note: unlike Puntrace(), this operation (in PS_RELEASE_NORMAL mode) releases
* *all* outstanding traces, cleans up all breakpoints, and detaches
* unconditionally. It's meant to be used if the tracer is dying or completely
* losing interest in its tracee, not merely if it doesn't want to trace it
* right now.
*
* This function is safe to call repeatedly.
*/
void
Prelease(struct ps_prochandle *P, int release_mode)
{
if (!P)
return;
if (P->released)
return;
while (P->ptrace_states.dl_next != NULL)
Ppop_state(P);
if (P->state == PS_DEAD) {
_dprintf("Prelease: releasing handle %p of dead pid %d\n",
(void *)P, (int)P->pid);
bkpt_flush(P, 0, TRUE);
goto unlock_exit;
}
rd_release(P->rap);
bkpt_flush(P, 0, release_mode == PS_RELEASE_NO_DETACH);
_dprintf("Prelease: releasing handle %p pid %d\n",
(void *)P, (int)P->pid);
if (release_mode == PS_RELEASE_KILL)
kill(P->pid, SIGKILL);
else if (P->ptraced && (release_mode != PS_RELEASE_NO_DETACH))
wrapped_ptrace(P, PTRACE_DETACH, (int)P->pid, 0, 0);
unlock_exit:
/*
* Flip the released vector *before* we release locks, because
* at any point after this a Pfree() can come in. and it
* asserts that P->released.
*/
P->state = PS_DEAD;
P->released = TRUE;
if (P->ptrace_count != 0 && ptrace_lock_hook &&
release_mode != PS_RELEASE_NO_DETACH)
ptrace_lock_hook(P, P->wrap_arg, 0);
dt_debug_dump(0);
}
/*
* Wait for the process to stop for any reason, possibly blocking.
*
* (A blocking wait will be automatically followed by as many nonblocking waits
* as are necessary to drain the queue of requests and leave the child in a
* state capable of handling more ptrace() requests -- or dead.)
*
* The return_early flag is checked right before we wait; if nonzero, an
* immediate return is carried out. (This should almost close the race where
* the thread is interrupted by being hit by a signal before the waitpid()
* starts. In the absence of a waitpid_sigunmask() I don't think we can close
* it completely...)
*
* Returns the number of state changes processed, or -1 on error. 0 can be
* returned if this thread was hit with a signal.
*
* The debugging strings starting "process status change" are relied upon by the
* libproc/tst.signals.sh test.
*/
long
Pwait_internal(struct ps_prochandle *P, boolean_t block, int *return_early)
{
long err;
long num_waits = 0;
long one_wait;
int status;
/*
* If we wait for something to happen while stopped at a breakpoint, we
* will deadlock, especially if what we get is another SIGTRAP. So
* demote the Pwait() to a nonblocking one, in case a significant state
* change (e.g. death) has happened that we need to know about.
*/
if (P->bkpt_halted)
block = 0;
/*
* If we are waiting for a pending stop, but pending_stops is zero, we
* know an earlier Pwait() (whether from a breakpoint handler or from
* another thread) has raced with this one and consumed the stop. A
* blocking Pwait() will follow: in order not to block forever, we must
* convert it to nonblocking.
*/
if (P->awaiting_pending_stops && P->pending_stops == 0 && block)
block = 0;
/*
* Never do a blocking wait for a process we already know is dead or
* trace-stopped. (A process that is merely stopped can be waited for:
* we will still receive state transitions for it courtesy of
* PTRACE_LISTEN.)
*/
if (P->state == PS_TRACESTOP)
block = 0;
/*
* Never wait at all for a process we already know is dead: the PID may
* have been reallocated, and we'll end up waiting for the wrong
* process.
*/
if (P->state == PS_DEAD)
return 0;
/*
* If a noninvasively traced process gets Pwait()ed on (which is
* routine, its use is pervasive), don't wait: we'll only get an ECHILD,
* which will spuriously cause us to conclude that the process is dead.
*/
if (P->noninvasive)
return 0;
do {
errno = 0;
if (block && waitpid_lock_hook)
waitpid_lock_hook(P, P->wrap_arg, 1);
/*
* Return at once if so requested. (We lock and then possibly
* unlock again to minimize the size of the race window in which
* the signal might hit before waitpid() starts.)
*/
_dt_barrier_(return_early);
if (return_early && *return_early > 0) {
if (block && waitpid_lock_hook)
waitpid_lock_hook(P, P->wrap_arg, 0);
return 0;
}
_dt_barrier_(return_early);
err = waitpid(P->pid, &status, __WALL | (!block ? WNOHANG : 0));
if (block && waitpid_lock_hook)
waitpid_lock_hook(P, P->wrap_arg, 0);
switch (err) {
case 0:
return 0;
case -1:
if (block && errno == EINTR)
return 0;
if (errno == ECHILD) {
_dprintf("%i: Pwait: got ECHILD from waitpid(), state %i, trace count %i, halted %i\n", P->pid, P->state, P->ptrace_count, P->ptrace_halted);
P->state = PS_DEAD;
Pdump_proc_status(P->pid);
return 0;
}
_dprintf("Pwait: error waiting: %s\n",
strerror(errno));
return -1;
}
} while (block && errno == EINTR);
if (Pwait_handle_waitpid(P, status) < 0)
return -1;
/*
* Now repeatedly loop, processing more waits until none remain.
*/
do {
one_wait = Pwait(P, 0, NULL);
num_waits += one_wait;
} while (one_wait > 0);
return num_waits + 1;
}
/*
* Change the process status according to the status word returned by waitpid().
*
* Returns -1 on error.
*/
static int
Pwait_handle_waitpid(struct ps_prochandle *P, int status)
{
uintptr_t ip = 0;
if (WIFCONTINUED(status)) {
_dprintf("%i: process got SIGCONT.\n", P->pid);
P->state = PS_RUN;
return 0;
}
/*
* Exit under ptrace() monitoring. We have to detect, and ignore,
* PTRACE_EVENT_EXIT, because we need PTRACE_EVENT_EXIT to reliably
* detect the early vanishing of TRACEFORKed children, for which we must
* have PTRACE_EVENT_EXIT turned on before the fork() happens. However,
* we cannot mark the process dead at this stage, because the kernel
* will not fire proc::exit until later: if we consider the process dead
* at this stage, and dtrace terminates as a result, it will miss that
* firing.
*/
if ((status >> 8) == (SIGTRAP | PTRACE_EVENT_EXIT << 8)) {
_dprintf("%i: process status change: exit coming.\n", P->pid);
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL, 0);
return 0;
}
/*
* Now the real exit detection.
*/
if (WIFEXITED(status)) {
_dprintf("%i: process status change: exited with "
"exitcode %i\n", P->pid, WEXITSTATUS(status));
P->state = PS_DEAD;
return 0;
}
/*
* PTRACE_INTERRUPT stop or group-stop.
*/
if ((status >> 16) == PTRACE_EVENT_STOP) {
/*
* This is a PTRACE_INTERRUPT trickling in, or a group-stop
* trickling in *after* resumption but before SIGCONT arrives.
* Check pending_stops and group_stopped to see if we are
* expecting an interrupt, or have changed state in such a way
* that a stop is no longer expected: if so, just resume.
*/
if (WSTOPSIG(status) == SIGTRAP) {
P->listening = 0;
if (P->group_stopped) {
/*
* We change the state to PS_RUN here to
* immediately indicate to callers of Pstate()
* that the process has been resumed: the
* SIGCONT's arrival also sets it, but this
* generally has no effect.
*/
_dprintf("%i: group-stop ending, SIGCONT expected soon.\n",
P->pid);
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL, 0);
P->group_stopped = 0;
P->state = PS_RUN;
} else if (P->pending_stops > 0) {
/*
* Expected PTRACE_INTERRUPT. Do not resume.
*/
_dprintf("%i: process status change: "
"PTRACE_INTERRUPTed.\n", P->pid);
P->pending_stops--;
P->state = PS_TRACESTOP;
} else {
/*
* Unexpected / latent PTRACE_INTERRUPT. Resume
* automatically.
*/
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL, 0);
_dprintf("%i: Unexpected PTRACE_EVENT_STOP, "
"resuming automatically.\n", P->pid);
P->state = PS_RUN;
}
} else if ((P->listening) && (P->pending_stops > 0)) {
/*
* PTRACE_INTERRUPT during PTRACE_LISTEN. Do not
* resume: transition out of listening state, but not
* out of group-stop.
*/
_dprintf("%i: process status change: no longer "
"LISTENing, PTRACE_INTERRUPTed.\n", P->pid);
P->listening = 0;
P->pending_stops--;
P->state = PS_TRACESTOP;
} else if ((P->state == PS_RUN) || (P->state == PS_STOP)) {
/*
* Group-stop: we will already be in stopped state, if
* need be. LISTEN for further changes, but do not
* resume. (If already traced, Puntrace() will do a
* LISTEN for us.)
*/
_dprintf("%i: Process status change: group-stop: "
"LISTENed.\n", P->pid);
P->group_stopped = 1;
P->listening = 1;
P->state = PS_STOP;
wrapped_ptrace(P, PTRACE_LISTEN, P->pid, NULL,
NULL);
} else {
_dprintf("%i: random PTRACE_EVENT_STOP.\n", P->pid);
}
return 0;
}
/*
* Hit by a signal after PTRACE_LISTEN. Resend it and resume (causing a
* signal-delivery stop, to be processed on the next cycle).
*/
if (WIFSTOPPED(status) &&
(WSTOPSIG(status) != SIGTRAP) &&
((status >> 16) == PTRACE_EVENT_STOP)) {
_dprintf("%i: process status change: child got stopping signal, "
"received after PTRACE_LISTEN: reinjecting.\n",
WSTOPSIG(status));
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL,
WSTOPSIG(status));
return 0;
}
/*
* Signal-delivery-stop. Possibly adjust process state, and reinject.
*/
if ((WIFSTOPPED(status)) && (WSTOPSIG(status) != SIGTRAP)) {
switch (WSTOPSIG(status)) {
case SIGSTOP:
case SIGTSTP:
case SIGTTIN:
case SIGTTOU:
_dprintf("%i: process status change: child got "
"stopping signal %i.\n", P->pid, WSTOPSIG(status));
P->state = PS_STOP;
break;
case SIGCONT:
_dprintf("%i: process status change: SIGCONT.\n",
P->pid);
P->state = PS_RUN;
break;
default: ;
_dprintf("%i: process status change: child got "
"signal %i.\n", P->pid, WSTOPSIG(status));
/*
* Not a stopping signal.
*/
}
if (P->ptraced) {
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL,
WSTOPSIG(status));
P->state = PS_RUN;
}
return 0;
}
/*
* A terminating signal. If this is not a SIGTRAP, reinject it.
* (SIGTRAP is handled further down.)
*/
if ((WIFSIGNALED(status)) && (WTERMSIG(status) != SIGTRAP)) {
_dprintf("%i: process status change: child got "
"terminating signal %i.\n", P->pid, WTERMSIG(status));
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL, WTERMSIG(status));
return 0;
}
/*
* TRACEEXEC trap. Our breakpoints are gone, our auxv has changed, our
* memfd needs closing for a later reopen, we need to figure out if this
* is a 64-bit process anew, any (internal) exec() handler should be
* called, and we need to seize control again.
*
* Note: much of this may be unnecessary if the caller has defined an
* exec() pad to longjmp() to, but there's no guarantee that the caller
* will always Pfree() us after that jump, so do it anyway.
*
* We are always tracing the thread group leader, so most of the
* complexity around execve() tracing goes away.
*
* We can't do much about errors here: if we lose control, we lose
* control.
*/
if ((status >> 8) == (SIGTRAP | PTRACE_EVENT_EXEC << 8)) {
char procname[PATH_MAX + MAXLEN_PID + strlen("/exe") + 1];
jmp_buf *exec_jmp;
_dprintf("%i: process status change: exec() detected, "
"resetting...\n", P->pid);
P->state = PS_TRACESTOP;
Pclose(P);
snprintf(procname, sizeof(procname), "%s/%d/exe",
procfs_path, P->pid);
/*
* This reports its error itself, but if there *is* an
* error, there's not much we can do. Leave elf64 et al
* unchanged: most of the time, the ELF class and
* bitness don't change across exec().
*/
Pread_isa_info(P, procname);
bkpt_flush(P, 0, TRUE);
free(P->auxv);
P->auxv = NULL;
P->nauxv = 0;
P->tracing_bkpt = 0;
P->bkpt_halted = 0;
P->bkpt_consume = 0;
P->r_debug_addr = 0;
P->info_valid = 0;
P->group_stopped = 0;
P->listening = 0;
if ((P->ptrace_count == 0) && ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 1);
while (P->ptrace_states.dl_next != NULL)
Ppop_state(P);
P->ptrace_count = 1;
Ppush_state(P, PS_RUN);
P->ptraced = TRUE;
P->ptrace_halted = TRUE;
P->state = PS_TRACESTOP;
/*
* If we have an exec jump buffer, jump to it. Do not move out
* of trace-stop: the caller can do that after resetting itself
* properly.
*/
exec_jmp = *(libproc_unwinder_pad(P));
if (exec_jmp != NULL)
longjmp(*exec_jmp, 1);
Puntrace(P, 0);
return 0;
}
/*
* TRACEFORK or TRACEVFORK trap. Remove the breakpoints in the new
* child, since we don't trace forked children (yet). All other state
* remains unchanged.
*/
if (((status >> 8) == (SIGTRAP | PTRACE_EVENT_FORK << 8)) ||
((status >> 8) == (SIGTRAP | PTRACE_EVENT_VFORK << 8)))
{
unsigned long pid; /* Cannot be pid_t */
P->state = PS_TRACESTOP;
if (wrapped_ptrace(P, PTRACE_GETEVENTMSG, P->pid, NULL, &pid) < 0)
_dprintf("%i: process status change: fork() or vfork() "
"detected but PID cannot be determined: %s; ignoring.\n",
P->pid, strerror(errno));
else {
_dprintf("%lu: process status change: fork() or vfork() "
"detected, discarding breakpoints...\n", pid);
/*
* Flush breakpoints in the child and detach from it,
* once it has halted.
*/
ignored_child_wait(P, pid, ignored_child_flush);
}
if (wrapped_ptrace(P, PTRACE_CONT, P->pid, 0, 0) < 0)
_dprintf("%i: cannot continue parent: %s\n", P->pid,
strerror(errno));
else
_dprintf("%i: continued parent.\n", P->pid);
P->state = PS_RUN;
return 0;
}
/*
* TRACECLONE trap. A new thread (or something near enough to it that
* we can treat it as one). DTrace is not ready for this everywhere
* yet: stop monitoring shared library activity, if we were. (We should
* ideally remove all breakpoints too, but this is only a kludge, so for
* now we can safely rely on the assumption that the only outstanding
* breakpoints are on DT_DEBUG, removed by rd_event_suppress(), and on
* main(), etc, which can only be hit by the main thread, which we are
* monitoring.)
*/
if ((status >> 8) == (SIGTRAP | PTRACE_EVENT_CLONE << 8))
{
unsigned long pid; /* Cannot be pid_t */
P->state = PS_TRACESTOP;
wrapped_ptrace(P, PTRACE_GETEVENTMSG, P->pid, NULL,
&pid);
_dprintf("%i: process status change: thread creation detected, "
"suppressing rd events in new pid %li...\n", P->pid,
pid);
rd_event_suppress(P->rap);
/*
* Stop tracing thread creation now, and detach from the
* newly-created child thread so we are not bothered by its
* signals and it runs undisturbed. We can detach just as if
* this were a forked child, except that we do not want to
* remove breakpoints (a suboptimal kludge: see above).
*/
wrapped_ptrace(P, PTRACE_SETOPTIONS, 0, LIBPROC_PTRACE_OPTIONS);
ignored_child_wait(P, pid, NULL);
wrapped_ptrace(P, PTRACE_CONT, P->pid, 0, 0);
P->state = PS_RUN;
return 0;
}
/*
* Other ptrace() traps are generally unexpected unless some breakpoints
* are active. We can only get this far when ptrace()ing, so we know it
* must be valid to call ptrace() ourselves.
*
* Trap, possibly breakpoint trap.
*
* If we are in the midst of processing a breakpoint on a machine with
* hardware singlestepping, we already know our breakpoint address.
* Otherwise -- and always, in the case of software singlestepping -- we
* must acquire the tracee's IP address and verify that it really is a
* breakpoint and not a random third-party SIGTRAP, and pass it on if
* not.
*
* If bkpt_consume is turned on, we want to simply consume the trap
* without invoking the breakpoint handler. (This is used when doing a
* Pbkpt_continue() on a singlestepping SIGSTOPPed process which may or
* may not already have trapped.)
*/
P->state = PS_TRACESTOP;
#ifndef NEED_SOFTWARE_SINGLESTEP
ip = P->tracing_bkpt;
#endif
if (ip == 0) {
bkpt_t *bkpt;
ip = Pget_bkpt_ip(P, 0);
bkpt = bkpt_by_addr(P, ip, FALSE);
if (((unsigned long)ip == -1) || !bkpt) {
int sig = 0;
/*
* This is not a known breakpoint nor a temporary
* singlestepping breakpoint. Reinject it.
*/
_dprintf("Pwait: %i: process status change at "
"address %lx: signal %i/%i does not correspond to "
"a known breakpoint.\n", P->pid, ip,
WTERMSIG(status), WSTOPSIG(status));
if ((WIFSTOPPED(status)) && (WSTOPSIG(status)) == SIGTRAP)
P->state = PS_STOP;
if (((WIFSIGNALED(status)) && (WTERMSIG(status) == SIGTRAP)) ||
((WIFSTOPPED(status)) && (WSTOPSIG(status)) == SIGTRAP))
sig = SIGTRAP;
wrapped_ptrace(P, PTRACE_CONT, P->pid, NULL, sig);
return 0;
}
}
if (!P->bkpt_consume)
P->state = bkpt_handle(P, ip);
return 0;
}
/*
* Wait for a random traced child that we do not otherwise care about to halt,
* then detach from it after calling 'fun'.
*
* This child is not one we are doing anything in particular to, other than
* calling 'fun': we expect only PTRACE_EVENT_STOP / EXEC / CLONE / FORK /
* VFORK, termination, or signals. We pass on all the signals, return on
* termination, and detach when a STOP is seen. When a CLONE or VFORK are seen,
* recursively call ourselves to do the same thing to the new child. If an EXEC
* is seen, note that fun() should not be called, since its purpose is to fix up
* the new child for future detached operation by doing things like removing
* breakpoints, and on exec() all such things are gone.
*
* Errors are ignored, because there's not much we can do about them.
*/
static void
ignored_child_wait(struct ps_prochandle *P, pid_t pid,
void (*fun)(struct ps_prochandle *P, pid_t pid))
{
int status;
_dprintf("%i: waiting for ignored child %i to halt\n", P->pid, pid);
while (1) {
do {
errno = 0;
if (waitpid(pid, &status, __WALL | __WNOTHREAD) < 0)
if ((errno != -EINTR) && (errno != 0))
return;
} while (errno == -EINTR);
/*
* Stop. Call the fun() (if set), detach, and return.
*/
if ((status >> 16) == PTRACE_EVENT_STOP) {
if (fun)
fun(P, pid);
if (wrapped_ptrace(P, PTRACE_DETACH, pid, 0, SIGCONT) < 0)
_dprintf("Cannot detach from ignored %i: %s\n",
pid, strerror(errno));
return;
}
/*
* Process terminated.
*/
if ((status >> 8) == (SIGTRAP | PTRACE_EVENT_EXIT << 8)) {
if (wrapped_ptrace(P, PTRACE_DETACH, pid, 0, 0) < 0)
_dprintf("Cannot resume dying ignored %i\n",
pid);
return;
}
/*
* Signal delivery stops. Reinject them.
*/
if (WIFSTOPPED(status)) {
wrapped_ptrace(P, PTRACE_CONT, pid, NULL,
WSTOPSIG(status));
}
if (WIFSIGNALED(status)) {
wrapped_ptrace(P, PTRACE_CONT, pid, NULL,
WTERMSIG(status));
}
/*
* fork() or vfork() trap. Just get going again (via a
* recursive call).
*/
if (((status >> 8) == (SIGTRAP | PTRACE_EVENT_FORK << 8)) ||
((status >> 8) == (SIGTRAP | PTRACE_EVENT_VFORK << 8))) {
unsigned long new_pid; /* Cannot be pid_t */
if (wrapped_ptrace(P, PTRACE_GETEVENTMSG, pid, NULL,
&new_pid) == 0) {
_dprintf("%i: recursive ignored fork()/clone().\n",
pid);
ignored_child_wait(P, new_pid, fun);
}
}
/*
* exec(). We don't want to call the fun() any more.
*/
if ((status >> 8) == (SIGTRAP | PTRACE_EVENT_EXEC << 8))
fun = NULL;
}
}
/*
* Called to dispose of breakpoints in a fork()ed child, once it is traceable.
*/
static void
ignored_child_flush(struct ps_prochandle *P, pid_t pid)
{
bkpt_flush(P, pid, FALSE);
}
/*
* If true, detach the process when no ptraces or breakpoints are outstanding.
* Otherwise, leave it attached, but running.
*/
void
Ptrace_set_detached(struct ps_prochandle *P, boolean_t detach)
{
P->detach = detach;
}
/*
* Push a state onto the state stack. Return that state, in case the caller
* wants to mutate it.
*/
static prev_states_t *
Ppush_state(struct ps_prochandle *P, int state)
{
prev_states_t *s;
s = malloc(sizeof(struct prev_states));
if (s == NULL)
return NULL;
s->state = state;
dt_list_prepend(&P->ptrace_states, s);
_dprintf("%i: Ppush_state(): ptrace_count %i, state %i\n", P->pid, P->ptrace_count, s->state);
return s;
}
/*
* Pop a state off the state stack and return it.
*/
static int
Ppop_state(struct ps_prochandle *P)
{
prev_states_t *s;
int state;
s = dt_list_next(&P->ptrace_states);
dt_list_delete(&P->ptrace_states, s);
_dprintf("%i: Ppop_state(): ptrace_count %i, state %i\n", P->pid, P->ptrace_count+1, s->state);
state = s->state;
free(s);
return state;
}
/*
* Change the state at the top of the stack.
*/
static void
Pset_orig_state(struct ps_prochandle *P, int state)
{
prev_states_t *s;
s = dt_list_next(&P->ptrace_states);
if (s)
s->state = state;
}
/*
* Grab a ptrace(), unless one is already grabbed: increment the ptrace count.
* Regardless, the process will be PS_TRACESTOP on return if 'stopped' (unless
* the process is dead or un-ptraceable).
*
* Returns zero or a positive number on success, or a negative error code.
*
* Failure to trace is considered an error unless called from within Pgrab().
*/
int
Ptrace(struct ps_prochandle *P, int stopped)
{
int err = 0;
prev_states_t *state;
if (P->noninvasive)
return -ESRCH;
if (P->ptrace_count == 0 && ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 1);
P->ptrace_count++;
state = Ppush_state(P, P->state);
if (state == NULL) {
err = -ENOMEM;
goto err_nostate;
}
if (P->ptraced) {
int listen_interrupt;
/*
* In this case, we must take care that anything already queued
* for Pwait() is correctly processed, before demanding a stop.
* We should also not try to stop something that is already
* stopped in ptrace(), nor try to resume it. We know the
* PTRACE_INTERRUPT has arrived when the traceee is no longer in
* run state.
*
* Additionally, if the tracee is already stopped by a SIGSTOP
* and we are LISTENing for it, waiting is expected: we want to
* hang on until the PTRACE_INTERRUPT is processed, since only
* that event clears the listening state and makes it possible
* for other ptrace requests to succeed.
*/
Pwait(P, 0, NULL);
state->state = P->state;
if ((!stopped) || (P->state == PS_TRACESTOP))
return 0;
if (P->state == PS_DEAD)
return -ECHILD;
listen_interrupt = P->listening;
P->ptrace_halted = TRUE;
wrapped_ptrace(P, PTRACE_INTERRUPT, P->pid, 0);
P->pending_stops++;
P->awaiting_pending_stops++;
while (P->pending_stops &&
((P->state == PS_RUN) ||
(listen_interrupt && P->listening)))
Pwait(P, 1, NULL);
P->awaiting_pending_stops--;
return 0;
}
if (wrapped_ptrace(P, PTRACE_SEIZE, P->pid, 0, LIBPROC_PTRACE_OPTIONS |
PTRACE_O_TRACECLONE) < 0) {
goto err;
}
P->ptraced = TRUE;
if (stopped) {
P->ptrace_halted = TRUE;
if (wrapped_ptrace(P, PTRACE_INTERRUPT, P->pid, 0, 0) < 0) {
wrapped_ptrace(P, PTRACE_DETACH, P->pid, 0, 0);
goto err;
}
/*
* Now wait for the interrupt to trickle in.
*/
P->pending_stops++;
P->awaiting_pending_stops++;
while (P->pending_stops && P->state == PS_RUN) {
if (Pwait(P, 1, NULL) == -1)
goto err;
}
P->awaiting_pending_stops--;
if ((P->state != PS_TRACESTOP) &&
(P->state != PS_STOP)) {
err = -ECHILD;
goto err;
}
}
return err;
err:
err = -errno;
/*
* Note a subtlety here: the Ptrace_count may have been reduced, and the state
* popped to match, by an exec() or other operation within the Pwait().
*/
if (P->ptrace_count)
Ppop_state(P);
err_nostate:
if (P->ptrace_count)
P->ptrace_count--;
if (P->ptrace_count == 0 && ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 0);
_dprintf("Ptrace(): error return (possibly other tracer), trace count now %i: %s\n",
P->ptrace_count, strerror(errno));
if (err != -ECHILD)
return err;
else
return -ESRCH; /* for a clearer message */
}
/*
* Ungrab a ptrace(), setting the process running if the balancing Ptrace() call
* stopped it. If none are left, set running, or detach if P->detach.
* If stuck at a breakpoint, continue from the breakpoint, poking text back in.
*
* If 'leave_stopped' is set, the process is not restarted upon Puntrace(), even
* if the balancing Ptrace() stopped it: it is up to the caller to resume.
*
* Lots of P->state comparisons are needed here, because a PTRACE_CONT is only
* valid if the process was stopped beforehand: otherwise, you get -ESRCH,
* which is helpfully indistinguishable from the error you get when the process
* is dead.
*/
void
Puntrace(struct ps_prochandle *P, int leave_stopped)
{
int prev_state;
/*
* Protect against unbalanced Ptrace()/Puntrace() and already-
* terminated processes; operations interrupted by process termination
* might reasonably do a Puntrace() to balance out a previous Ptrace(),
* but everything is freed and we just want to drop out after balancing
* the ptrace() count.
*/
if ((!P->ptraced) || (P->ptrace_count == 0))
return;
P->ptrace_count--;
if (P->released) {
_dprintf("%i: Puntrace(): early return, process is released\n", P->pid);
return;
}
prev_state = Ppop_state(P);
/*
* Still under Ptrace(), or a stay in stop state requested, or stuck in
* stop state by request of an earlier breakpoint handler? OK, nothing
* needs doing, except possibly a resume, using Pbkpt_continue() so as
* to do the right thing if a breakpoint is outstanding.
*/
if (P->ptrace_count || P->bkpt_halted || leave_stopped ||
prev_state != PS_RUN) {
if ((prev_state == PS_RUN) && (P->state == PS_TRACESTOP)) {
_dprintf("%i: Continuing because previous state was "
"PS_RUN\n", P->pid);
/*
* Pbkpt_continue() will usually reset our previous state,
* but it leaves it unchanged if it finds that we were not
* stopped at a breakpoint. Do it by hand in that case.
*/
if (!Pbkpt_continue(P))
P->state = prev_state;
P->ptrace_halted = FALSE;
} else if ((prev_state == PS_STOP) &&
(P->state == PS_TRACESTOP)) {
P->state = prev_state;
P->group_stopped = 1;
P->listening = 1;
_dprintf("%i: LISTENing because previous state was "
"PS_STOP\n", P->pid);
wrapped_ptrace(P, PTRACE_LISTEN, P->pid, NULL,
NULL);
}
if (P->ptrace_count == 0 && ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 0);
return;
}
/*
* Not in Ptrace(): at top level, not halted at a breakpoint.
*
* Continue the process, or detach it if requested, no breakpoints
* are outstanding, and no rd_agent is active.
*/
if ((!P->detach) || P->rap || (P->num_bkpts > 0)) {
if (P->state == PS_TRACESTOP) {
_dprintf("%i: Continuing.\n", P->pid);
if (!Pbkpt_continue(P))
P->state = PS_RUN;
P->ptrace_halted = FALSE;
Pwait(P, 0, NULL);
}
} else {
_dprintf("%i: Detaching.\n", P->pid);
P->state = PS_RUN;
P->ptraced = FALSE;
if ((wrapped_ptrace(P, PTRACE_DETACH, P->pid, 0, 0) < 0) &&
(errno == ESRCH)) {
_dprintf("%i: Punbkpt(): -ESRCH, process is dead.\n",
P->pid);
P->state = PS_DEAD;
}
P->ptrace_halted = FALSE;
P->info_valid = 0;
}
if (P->ptrace_count == 0 && ptrace_lock_hook)
ptrace_lock_hook(P, P->wrap_arg, 0);
}
/*
* Given a breakpoint address, find the corresponding bkpt structure, or NULL if
* none. If delete is set, remove it from the hash too.
*/
static bkpt_t
*bkpt_by_addr(struct ps_prochandle *P, uintptr_t addr,
int delete)
{
uint_t h = addr % BKPT_HASH_BUCKETS;
bkpt_t *last_bkpt = NULL;
bkpt_t *bkpt;
for (bkpt = P->bkpts[h]; bkpt != NULL; bkpt = bkpt->bkpt_next) {
if (bkpt->bkpt_addr == addr) {
if (delete) {
if (last_bkpt)
last_bkpt->bkpt_next = bkpt->bkpt_next;
else
P->bkpts[h] = bkpt->bkpt_next;
bkpt->bkpt_next = NULL;
}
return bkpt;
}
last_bkpt = bkpt;
}
return NULL;
}
/*
* Return a given machine word with the breakpoint instruction masked over the
* start of it.
*/
static unsigned long
mask_bkpt(unsigned long word)
{
union {
unsigned long insn;
char bkpt[sizeof(unsigned long)];
} bkpt;
bkpt.insn = word;
memcpy(bkpt.bkpt, (char *)plat_bkpt, sizeof(plat_bkpt));
return bkpt.insn;
}
/*
* Introduce a breakpoint on a particular address with the given handler.
*
* The breakpoint handler should return nonzero to remain stopped at this4
* breakpoint, or zero to continue. The cleanup handler can clean up any
* additional state associated with this breakpoint's 'data' on Punbkpt() or
* Prelease().
*
* If after_singlestep, the handler is called after singlestepping, rather than
* before. In both cases, the process is trace-stopped when the call happens,
* and the instruction at the breakpoint site is the original instruction
* (not the breakpoint instruction).
*
* The handler returns a PS_ value that indicates what it wants doing to
* the process:
* PS_RUN: continue past breakpoint
* PS_TRACESTOP, PS_STOP: stop at breakpoint
* PS_DEAD: process was killed
*
* Calling this function on an existing breakpoint cleans up the old one's state
* and reassigns it.
*
* Returns 0 on success, or an errno value on failure.
*/
int
Pbkpt(struct ps_prochandle *P, uintptr_t addr, int after_singlestep,
int (*bkpt_handler)(uintptr_t addr, void *data),
void (*bkpt_cleanup)(void *data),
void *data)
{
if (P->noninvasive)
return -ESRCH;
return add_bkpt(P, addr, after_singlestep, FALSE, bkpt_handler,
bkpt_cleanup, data);
}
/*
* A notifier is just like a breakpoint, except that it cannot change the
* control flow of the program. One address can have only one breakpoint
* associated with it, but as many notifiers as you like. A notifier shares
* the same after-singlestepping property as any breakpoint at its address, but
* has its own cleanup and private data.
*/
int
Pbkpt_notifier(struct ps_prochandle *P, uintptr_t addr, int after_singlestep,
void (*bkpt_handler)(uintptr_t addr, void *data),
void (*bkpt_cleanup)(void *data),
void *data)
{
if (P->noninvasive)
return -ESRCH;
return add_bkpt(P, addr, after_singlestep, TRUE,
(int (*)(uintptr_t addr, void *data))bkpt_handler,
bkpt_cleanup, data);
}
static int
add_bkpt(struct ps_prochandle *P, uintptr_t addr, int after_singlestep,
int is_notifier, int (*bkpt_handler)(uintptr_t addr, void *data),
void (*bkpt_cleanup)(void *data),
void *data)
{
bkpt_t *bkpt = bkpt_by_addr(P, addr, FALSE);
uint_t h = addr % BKPT_HASH_BUCKETS;
bkpt_handler_t *notifier = NULL;
int err;
/*
* Already present? Just tweak it.
*/
if (bkpt && !is_notifier) {
if (bkpt->bkpt_handler.bkpt_cleanup)
bkpt->bkpt_handler.bkpt_cleanup(bkpt->bkpt_handler.bkpt_data);
bkpt->bkpt_handler.bkpt_handler = bkpt_handler;
bkpt->bkpt_handler.bkpt_cleanup = bkpt_cleanup;
bkpt->bkpt_handler.bkpt_data = data;
bkpt->after_singlestep = after_singlestep;
return 0;
}
/*
* Prepare the notifier structure. Adding a notifier multiple times
* leads to its being called multiple times.
*/
if (is_notifier) {
notifier = malloc(sizeof(struct bkpt_handler));
if (!notifier)
return -ENOMEM;
memset(notifier, 0, sizeof(struct bkpt_handler));
notifier->bkpt_handler = bkpt_handler;
notifier->bkpt_cleanup = bkpt_cleanup;
notifier->bkpt_data = data;
if (bkpt) {
dt_list_append(&bkpt->bkpt_notifiers, notifier);
return 0;
}
}
err = Ptrace(P, 1);
if (err < 0)
goto err2;
/*
* Allocate and poke in a new breakpoint. This breakpoint may have no
* handler, if this is a notifier addition.
*/
bkpt = malloc(sizeof(struct bkpt));
if (!bkpt)
goto err;
memset(bkpt, 0, sizeof(struct bkpt));
if (!is_notifier) {
bkpt->bkpt_handler.bkpt_handler = bkpt_handler;
bkpt->bkpt_handler.bkpt_cleanup = bkpt_cleanup;
bkpt->bkpt_handler.bkpt_data = data;
} else
dt_list_append(&bkpt->bkpt_notifiers, notifier);
bkpt->after_singlestep = after_singlestep;
bkpt->bkpt_addr = addr;
errno = 0;
bkpt->orig_insn = wrapped_ptrace(P, PTRACE_PEEKTEXT, P->pid,
addr, 0);
if (errno != 0) {
free(bkpt);
goto err;
}
if (wrapped_ptrace(P, PTRACE_POKETEXT, P->pid, addr,
mask_bkpt(bkpt->orig_insn)) < 0) {
free(bkpt);
goto err;
}
bkpt->bkpt_next = P->bkpts[h];
P->bkpts[h] = bkpt;
P->num_bkpts++;
_dprintf("%i: Added breakpoint on %lx\n", P->pid, addr);
/*
* Breakpoint added. Because at least one breakpoint is in force, this
* Puntrace() will have the effect of resuming the child iff it is the
* topmost such, but never of detaching, no matter what the state of
* P->detach.
*/
Puntrace(P, 0);
return 0;
err:
err = errno;
err2:
_dprintf("%i: Cannot add breakpoint on %lx: %s\n", P->pid,
addr, strerror(errno));
Puntrace(P, 0);
free(notifier);
return err;
}
/*
* Remove a breakpoint on a given address, if one exists there, or (if we are
* currently in a handler for that address) arrange to do it later.
*
* The cleanup handlers, if any, are called, in reverse order of handler
* addition.
*/
void
Punbkpt(struct ps_prochandle *P, uintptr_t addr)
{
bkpt_t *bkpt;
int err;
int orig_ptrace_halted = P->ptrace_halted;
/*
* Sanity check, twice, to avoid bugs leading to underflow.
*
* Halt the child and Pwait() before we start manipulating the
* breakpoint hash, to avoid incoming traps on breakpoints we have
* stopped tracking.
*/
if (P->num_bkpts == 0) {
_dprintf("%i: Punbkpt() called with %lx, but no breakpoints are "
"outstanding.\n", P->pid, addr);
return;
}
err = Ptrace(P, 1);
if (err < 0) {
_dprintf("%i: Unexpected error %s ptrace()ing to remove "
"breakpoint.", P->pid, strerror(err));
return;
}
/*
* If we are currently inside a handler for this breakpoint, or inside
* the temporary singlestepping breakpoint associated with it, arrange
* to remove it later, after handler execution is complete. Only do a
* lookup-with-unchain if this is not so.
*/
bkpt = bkpt_by_addr(P, addr, FALSE);
if (!bkpt) {
_dprintf("%i: Punbkpt() called with %lx, which is not a known "
"breakpoint.\n", P->pid, addr);
Puntrace(P, 0);
return;
}
if (bkpt->in_handler) {
bkpt->pending_removal = 1;
Puntrace(P, 0);
return;
}
if (bkpt->bkpt_singlestep && bkpt->bkpt_singlestep->in_handler) {
bkpt->bkpt_singlestep->pending_removal = 1;
Puntrace(P, 0);
return;
}
Pwait(P, 0, NULL);
bkpt = bkpt_by_addr(P, addr, TRUE);
P->num_bkpts--;
/*
* If we are not singlestepping past this breakpoint now, we have to
* poke the old content back in (and we delegate to Punbkpt_child_poke()
* to do that). Otherwise, we just have to adjust our instruction
* pointer and resume (and the resumption is done automatically for us
* when we Puntrace() in any case).
*/
if (P->tracing_bkpt != bkpt->bkpt_addr)
Punbkpt_child_poke(P, 0, bkpt);
else {
_dprintf("%i: Breakpoint at %lx already poked back, changing "
"instruction pointer\n", P->pid, bkpt->bkpt_addr);
if (Preset_bkpt_ip(P, P->tracing_bkpt) < 0)
switch (errno) {
case ESRCH:
_dprintf("%i: Punbkpt(): -ESRCH, process is dead.\n",
P->pid);
P->state = PS_DEAD;
return;
case 0: break;
default:
_dprintf("%i: Unknown error doing instruction "
"pointer adjustment while removing "
"breakpoint: %s\n", P->pid,
strerror(errno));
}
P->tracing_bkpt = 0;
P->bkpt_halted = 0;
/*
* If we were stopped by this breakpoint rather than by a nested
* Ptrace(), set ourselves running again on Puntrace().
*/
if (!orig_ptrace_halted)
Pset_orig_state(P, PS_RUN);
}
delete_bkpt_handler(bkpt);
Puntrace(P, 0);
_dprintf("%i: Removed breakpoint on %lx\n", P->pid, addr);
}
/*
* Poke back the pre-breakpoint text into the given breakpoint, in the process
* tracked by prochandle P, or (if pid is nonzero) into that process instead.
* (In the latter case, no process state changes happen on error, either.)
*/
static void
Punbkpt_child_poke(struct ps_prochandle *P, pid_t pid, bkpt_t *bkpt)
{
uintptr_t insn;
pid_t child_pid = pid;
if (child_pid == 0)
child_pid = P->pid;
/*
* Only overwrite the breakpoint insn if it is still a breakpoint. If
* it has changed (perhaps due to a new text section being mapped in),
* do nothing.
*/
errno = 0;
insn = wrapped_ptrace(P, PTRACE_PEEKTEXT, child_pid,
bkpt->bkpt_addr, 0);
if (errno == 0 && insn == mask_bkpt(insn) &&
wrapped_ptrace(P, PTRACE_POKETEXT, child_pid,
bkpt->bkpt_addr, bkpt->orig_insn) < 0)
switch (errno) {
case ESRCH:
_dprintf("%i: Punbkpt_child_poke(): -ESRCH, process is dead.\n",
child_pid);
if (!pid)
P->state = PS_DEAD;
return;
case EIO:
case EFAULT:
/* The address in the child has disappeared. */
_dprintf("%i: Instruction pokeback into %lx failed: "
"%s\n", child_pid, bkpt->bkpt_addr,
strerror(errno));
case 0: break;
default:
_dprintf("%i: Unknown error removing breakpoint:"
"%s\n", child_pid, strerror(errno));
}
}
/*
* Discard breakpoint state.
*
* Done when the child process is dead or being released or its address space
* has vanished due to an exec(), or when the child has (v)fork()ed.
*
* Rendered more complicated by the need to do local breakpoint cleanup even if
* the process is gone, and by the fact that in fork() or clone() situations we
* want to clean up remote breakpoints but not the local ones. (We cannot use
* Punbkpt() in the former situation because the process might have exec()ed,
* and we do not want to continue it, nor modify the address of breakpoints that
* can no longer exist within it: we also need to cancel out the 'in local
* handler' flag which otherwise stops breakpoints being removed immediately,
* since if this function is called any active handlers will never be
* re-entered: either the ps_prochandle is about to disappear, or the process
* has just exec()ed, thus is running, thus we cannot be inside a breakpoint
* handler, since that implies the process is stopped.)
*
* If the pid is nonzero, the local breakpoint state is not cleaned up: if
* 'gone' is nonzero, the child's breakpoints are not cleaned up. (If both are
* nonzero, we do not define what happens, but it's not useful.)
*/
static void
bkpt_flush(struct ps_prochandle *P, pid_t pid, int gone) {
size_t i;
int state;
_dprintf("Flushing breakpoints.\n");
/*
* Ptrace-halt to prevent breakpoint handlers firing while we are
* tearing them down.
*/
if (!pid)
state = Ptrace(P, 1);
for (i = 0; i < BKPT_HASH_BUCKETS; i++) {
bkpt_t *bkpt;
bkpt_t *old_bkpt = NULL;
for (bkpt = P->bkpts[i]; bkpt != NULL;
old_bkpt = bkpt, bkpt = bkpt->bkpt_next) {
if (old_bkpt != NULL) {
old_bkpt->in_handler = FALSE;
if (pid)
Punbkpt_child_poke(P, pid, old_bkpt);
else if (!gone)
Punbkpt(P, old_bkpt->bkpt_addr);
else {
bkpt_t *bkpt = bkpt_by_addr(P,
old_bkpt->bkpt_addr, TRUE);
delete_bkpt_handler(bkpt);
}
}
}
if (old_bkpt != NULL) {
if (pid)
Punbkpt_child_poke(P, pid, old_bkpt);
else if (!gone) {
old_bkpt->in_handler = FALSE;
Punbkpt(P, old_bkpt->bkpt_addr);
} else {
bkpt_t *bkpt = bkpt_by_addr(P, old_bkpt->bkpt_addr, TRUE);
delete_bkpt_handler(bkpt);
}
}
}
/*
* Only do this state-varying stuff if we're not chewing over an alien
* PID.
*/
if (!pid) {
/*
* Resume, and do one last Pwait() to consume a potential trap
* on the last now-dead breakpoint.
*/
Puntrace(P, state);
if (!gone)
Pwait(P, 0, NULL);
P->bkpt_consume = 0;
P->tracing_bkpt = 0;
P->bkpt_halted = 0;
P->num_bkpts = 0;
}
}
/*
* Delete a single breakpoint handler's state, calling cleanups as needed.
*
* Frees the breakpoint, but does not unhash it: the caller must do that
* beforehand.
*/
static void
delete_bkpt_handler(struct bkpt *bkpt)
{
bkpt_handler_t *deleting, *next;
deleting = dt_list_prev(&bkpt->bkpt_notifiers);
if (deleting) {
next = dt_list_prev(deleting);
do {
if (deleting->bkpt_cleanup)
deleting->bkpt_cleanup(deleting->bkpt_data);
dt_list_delete(&bkpt->bkpt_notifiers, deleting);
free(deleting);
deleting = next;
} while (deleting != NULL);
}
if (bkpt->bkpt_handler.bkpt_cleanup)
bkpt->bkpt_handler.bkpt_cleanup(bkpt->bkpt_handler.bkpt_data);
free(bkpt);
}
/*
* Handle a breakpoint, upon receipt of a SIGTRAP.
*
* Returns a process state.
*/
static int
bkpt_handle(struct ps_prochandle *P, uintptr_t addr)
{
/*
* We have either have stopped at an address we know, or we are
* singlestepping past one of our breakpoints and have ended a hardware
* singlestep or hit the temporary singlestepping breakpoint; our caller
* has already validated that this breakpoint is known.
*
* But first, decree that we are already tracestopped, for the sake of
* any handlers that rely on this.
*/
P->state = PS_TRACESTOP;
if (P->tracing_bkpt == addr)
return bkpt_handle_post_singlestep(P,
bkpt_by_addr(P, P->tracing_bkpt, FALSE));
else {
bkpt_t *bkpt = bkpt_by_addr(P, addr, FALSE);
if (bkpt->bkpt_singlestep) {
bkpt_t *real_bkpt = bkpt->bkpt_singlestep;
Punbkpt(P, bkpt->bkpt_addr);
return bkpt_handle_post_singlestep(P, real_bkpt);
}
if (P->tracing_bkpt != 0) {
_dprintf("%i: Nested breakpoint detected, probable bug.\n",
P->pid);
/*
* Nested breakpoint. Oo-er. Probably an explicit
* continue by the caller. Overwrite the original addr
* with a breakpoint, if known. (Do not call the
* handler: we are long past the breakpoint address at
* this point. Do not even trap errors. If you do
* this, you are on your own!)
*/
bkpt_t *bkpt = bkpt_by_addr(P, P->tracing_bkpt, FALSE);
if (bkpt) {
uintptr_t orig_insn;
orig_insn = wrapped_ptrace(P, PTRACE_PEEKTEXT,
P->pid, bkpt->bkpt_addr, 0);
wrapped_ptrace(P, PTRACE_POKETEXT, P->pid,
bkpt->bkpt_addr, mask_bkpt(orig_insn));
/*
* If the 'original' instruction is a breakpoint,
* the caller has overwritten the breakpoint
* itself: do not remember it.
*/
if (orig_insn != mask_bkpt(orig_insn))
bkpt->orig_insn = orig_insn;
}
P->tracing_bkpt = 0;
}
return bkpt_handle_start(P, bkpt);
}
}
/*
* Handle a breakpoint at the breakpoint insn itself. Overwrite the breakpoint
* instruction, possibly call the handler, and run.
*
* Returns a process state.
*/
static int
bkpt_handle_start(struct ps_prochandle *P, bkpt_t *bkpt)
{
if (wrapped_ptrace(P, PTRACE_POKETEXT, P->pid,
bkpt->bkpt_addr, bkpt->orig_insn) < 0)
switch (errno) {
case ESRCH:
return PS_DEAD;
case 0:
_dprintf("%i: Hit %lx, setting insn to %lx\n",
P->pid, bkpt->bkpt_addr, bkpt->orig_insn);
break;
case EIO:
case EFAULT:
/*
* The address in the child has disappeared. This
* cannot happen: we just stopped there!
*/
default:
_dprintf("Unexpected error removing breakpoint on PID %i:"
"%s\n", P->pid, strerror(errno));
return PS_TRACESTOP;
}
P->tracing_bkpt = bkpt->bkpt_addr;
if (!bkpt->after_singlestep) {
int state = PS_RUN;
bkpt_handler_t *notifier = dt_list_next(&bkpt->bkpt_notifiers);
bkpt->in_handler++;
P->bkpt_halted = 1;
for (; notifier; notifier = dt_list_next(notifier)) {
void (*notify)(uintptr_t, void *) =
(void (*)(uintptr_t, void *))notifier->bkpt_handler;
notify(bkpt->bkpt_addr, notifier->bkpt_data);
}
if (bkpt->bkpt_handler.bkpt_handler) {
state = bkpt->bkpt_handler.bkpt_handler(bkpt->bkpt_addr,
bkpt->bkpt_handler.bkpt_data);
/*
* PS_STOP always means that the process was stopped by
* SIGSTOP: we remain able to listen for state changes
* on it (e.g. when PTRACE_INTERRUPTed). A process
* halted by a breakpoint is already interrupted and
* will never change state without our connivance: so
* translate PS_STOPs from breakpoint handlers into
* PS_TRACESTOP.
*/
if (state == PS_STOP)
state = PS_TRACESTOP;
_dprintf("%i: Breakpoint handler returned %i\n", P->pid,
state);
}
bkpt->in_handler--;
if (state != PS_RUN)
return state;
P->bkpt_halted = 0;
/*
* If the handler wants to erase the breakpoint, do so. Punbkpt() will
* automatically continue for us.
*/
if (bkpt->pending_removal) {
Punbkpt(P, bkpt->bkpt_addr);
return PS_RUN;
}
}
return Pbkpt_continue_internal(P, bkpt, TRUE);
}
/*
* Continue a process, possibly stopped at a breakpoint.
*
* Return zero if it left the process state unchanged.
*/
int
Pbkpt_continue(struct ps_prochandle *P)
{
bkpt_t *bkpt = bkpt_by_addr(P, P->tracing_bkpt, FALSE);
uintptr_t ip;
if (!P->ptraced)
return 0;
/*
* We don't know where we are. We might be stopped at an erased
* breakpoint; we might not be stopped at a breakpoint at all: we might
* not even be ptracing the process (or it might have done something
* that prohibits our tracing it, like exec()ed a setuid process). Just
* issue a continue.
*/
if (P->tracing_bkpt == 0 || !bkpt) {
if (wrapped_ptrace(P, PTRACE_CONT, P->pid, 0, 0) < 0) {
int err = errno;
if (err == ESRCH) {
if ((kill(P->pid, 0) < 0) && errno == ESRCH) {
_dprintf("%i: Pbpkt_continue(): Got ESRCH, process is dead.\n",
P->pid);
P->state = PS_DEAD;
}
}
/*
* Since we must have an outstanding Ptrace() anyway,
* assume that an EPERM means that this process is not
* stopped: it cannot mean that we aren't allowed to
* ptrace() it.
*/
if (err != EPERM) {
_dprintf("%i: Unexpected error resuming: %s\n",
P->pid, strerror(err));
return 1;
}
}
P->state = PS_RUN;
return 1;
}
/*
* We are at a breakpoint. We could be stopped on the breakpoint locus,
* or elsewhere, depending on whether we have singlestepped already and
* on whether we were hit by a SIGSTOP while that happened: or we might
* not be stopped at all.
*
* We can only determine this by comparing the current IP address with
* the breakpoint address.
*/
ip = Pget_bkpt_ip(P, 1);
if (ip == 0) {
/*
* Not stopped at all. Just do a quick Pwait().
*/
Pwait(P, 0, NULL);
return 0;
} else if (ip == P->tracing_bkpt)
/*
* Still need to singlestep.
*/
P->state = Pbkpt_continue_internal(P, bkpt, TRUE);
else {
/*
* No need to singlestep, but may need to consume
* a SIGTRAP.
*/
P->bkpt_consume = 1;
Pwait(P, 0, NULL);
P->bkpt_consume = 0;
P->state = Pbkpt_continue_internal(P, bkpt, FALSE);
}
return 1;
}
/*
* Continue a process stopped at a given breakpoint locus, resetting the
* instruction pointer and issuing a singlestep if needed, or calling
* bkpt_handle_post_singlestep() to call the breakpoint handler, poke the
* breakpoint instruction back in, and resume execution.
*/
static int
Pbkpt_continue_internal(struct ps_prochandle *P, bkpt_t *bkpt, int singlestep)
{
P->bkpt_halted = 0;
if (singlestep) {
if (Preset_bkpt_ip(P, bkpt->bkpt_addr) != 0)
goto err;
/*
* If hardware singlestepping is supported, this is easy.
* Otherwise, drop a temporary breakpoint associated with this
* one.
*/
#ifndef NEED_SOFTWARE_SINGLESTEP
if (wrapped_ptrace(P, PTRACE_SINGLESTEP, P->pid, 0, 0) != 0)
goto err;
#else
uintptr_t next_ip = Pget_next_ip(P);
bkpt_t *next_bkpt = bkpt_by_addr(P, next_ip, FALSE);
/*
* Only drop a temporary breakpoint if there isn't already a
* breakpoint there. (If there is one, various things will go
* somewhat wrong: in particular, it's impossible to call any
* after_singlestep handlers on the original breakpoint. DTrace
* never does this, so we should be fine.)
*/
if (next_bkpt == NULL) {
Pbkpt(P, next_ip, FALSE, NULL, NULL, NULL);
next_bkpt = bkpt_by_addr(P, next_ip, FALSE);
next_bkpt->bkpt_singlestep = bkpt;
}
/*
* If the next breakpoint is the same as the current one, emit a
* warning and delete the breakpoint: we cannot implement this
* without instruction emulation, since we cannot drop a
* breakpoint on this instruction and execute it at the same
* time.
*/
if (next_bkpt == bkpt) {
fprintf(stderr, "%i; Breakpoint loops are unimplemented on "
"this platform: breakpoint at %lx deleted.\n", P->pid,
bkpt->bkpt_addr);
Punbkpt(P, bkpt->bkpt_addr);
}
if (wrapped_ptrace(P, PTRACE_CONT, P->pid, 0, 0) != 0)
goto err;
#endif
return PS_RUN;
err:
if (errno == ESRCH)
return PS_DEAD;
else
return PS_TRACESTOP;
}
return bkpt_handle_post_singlestep(P, bkpt);
}
/*
* Do everything necessary after singlestepping past a breakpoint. When called,
* we are known to have completed a singlestep over the specified breakpoint and
* to be in trace-stop state.
*
* Returns a process state.
*/
static int
bkpt_handle_post_singlestep(struct ps_prochandle *P, bkpt_t *bkpt)
{
int state = PS_RUN;
unsigned long orig_insn;
if (bkpt->after_singlestep) {
bkpt_handler_t *notifier = dt_list_next(&bkpt->bkpt_notifiers);
bkpt->in_handler++;
for (; notifier; notifier = dt_list_next(notifier)) {
void (*notify)(uintptr_t, void *) =
(void (*)(uintptr_t, void *))notifier->bkpt_handler;
notify(bkpt->bkpt_addr, notifier->bkpt_data);
}
if (bkpt->bkpt_handler.bkpt_handler) {
state = bkpt->bkpt_handler.bkpt_handler(bkpt->bkpt_addr,
bkpt->bkpt_handler.bkpt_data);
/*
* See comment in bkpt_handle_start().
*/
if (state == PS_STOP)
state = PS_TRACESTOP;
_dprintf("%i: Breakpoint handler returned %i\n", P->pid,
state);
}
bkpt->in_handler--;
}
/*
* If the handler wants to erase the breakpoint, do so. Punbkpt() will
* automatically continue for us.
*/
if (bkpt->pending_removal) {
Punbkpt(P, bkpt->bkpt_addr);
return PS_RUN;
}
/*
* If the handler wants us to stay single-stepping, obey it. (We assume
* that if it sets the state to PS_DEAD, it has killed the process
* itself.)
*/
if (state != PS_RUN) {
P->bkpt_halted = 1;
return state;
}
/*
* The handler wants us to run. Resume.
*
* Always re-peek the original instruction, in case of self-modifying
* code. If it fails, hold on to the old one.
*/
errno = 0;
orig_insn = wrapped_ptrace(P, PTRACE_PEEKTEXT, P->pid, bkpt->bkpt_addr, 0);
if (errno != 0) {
_dprintf("Unexpected error re-peeking original instruction "
"at %lx on PID %i: %s\n", bkpt->bkpt_addr, P->pid,
strerror(errno));
}
else
bkpt->orig_insn = orig_insn;
/*
* The error handling here is verbose and annoying, but unavoidable, as
* the process could be SIGKILLed at any time, even between these
* ptrace() calls.
*/
if (wrapped_ptrace(P, PTRACE_POKETEXT, P->pid, bkpt->bkpt_addr,
mask_bkpt(orig_insn)) < 0)
switch (errno) {
case ESRCH:
return PS_DEAD;
case 0:
break;
case EIO:
case EFAULT:
_dprintf("%i: Post-singlestep at %lx but %s: unbkptting\n",
P->pid, bkpt->bkpt_addr, strerror(errno));
/*
* The address in the child has disappeared. Probably a
* very unlucky unmap after singlestepping across pages.
* Delete the breakpoint.
*/
Punbkpt(P, bkpt->bkpt_addr);
break;
default:
_dprintf("Unexpected error reinserting breakpoint on "
"PID %i: %s\n", P->pid, strerror(errno));
return PS_TRACESTOP;
}
/*
* We are no longer stopped at a breakpoint.
*/
P->tracing_bkpt = 0;
if (wrapped_ptrace(P, PTRACE_CONT, P->pid, 0, 0) < 0) {
switch (errno) {
case ESRCH:
return PS_DEAD;
case 0: break;
case EIO:
case EFAULT:
default:
_dprintf("Strange error continuing after breakpoint "
"on PID %i: %s\n", P->pid, strerror(errno));
return PS_TRACESTOP;
}
}
return PS_RUN;
}
/*
* If we are stopped at a breakpoint, return its address, or 0 if none.
*/
uintptr_t Pbkpt_addr(struct ps_prochandle *P)
{
return P->tracing_bkpt;
}
ssize_t
Pread(struct ps_prochandle *P,
void *buf, /* caller's buffer */
size_t nbyte, /* number of bytes to read */
uintptr_t address) /* address in process */
{
if (address < LONG_MAX)
return pread(Pmemfd(P), buf, nbyte, (loff_t)address);
else {
/*
* High-address copying.
*
* pread() won't work here because the offset is larger than a
* valid file offset, so we have to use PTRACE_PEEKDATA. This
* is exceptionally painful and inefficient.
*/
int state;
uintptr_t saddr = (address & ~((uintptr_t)sizeof(long) - 1));
size_t i, sz;
long *rbuf;
size_t len = nbyte + (address - saddr);
if (len % sizeof(long) != 0)
len += sizeof(long) - (len % sizeof(long));
rbuf = malloc(len);
if (!rbuf)
return 0;
/*
* We have to read into an intermediate buffer because alignment
* constraints forbid us from dumping data into the
* buf in unaligned fashion.
*/
state = Ptrace(P, 1);
if (state < 0) {
free(rbuf);
return 0;
}
errno = 0;
for (i = 0, sz = 0; sz < len; i++, sz += sizeof(long)) {
long data = wrapped_ptrace(P, PTRACE_PEEKDATA, P->pid,
saddr + sz, NULL);
if (errno != 0)
break;
rbuf[i] = data;
}
nbyte = (sz > nbyte) ? nbyte : sz;
memcpy(buf, rbuf + (address - saddr), nbyte);
free(rbuf);
Puntrace(P, state);
return nbyte;
}
}
ssize_t
Pread_string(struct ps_prochandle *P,
char *buf, /* caller's buffer */
size_t size, /* upper limit on bytes to read */
uintptr_t addr) /* address in process */
{
enum { STRSZ = 40 };
char string[STRSZ + 1];
ssize_t leng = 0;
int nbyte;
if (size < 2) {
errno = EINVAL;
return -1;
}
size--; /* ensure trailing null fits in buffer */
*buf = '\0';
string[STRSZ] = '\0';
for (nbyte = STRSZ; nbyte == STRSZ && leng < size; addr += STRSZ) {
if ((nbyte = Pread(P, string, STRSZ, addr)) <= 0) {
buf[leng] = '\0';
return leng ? leng : -1;
}
if ((nbyte = strlen(string)) > 0) {
if (leng + nbyte > size)
nbyte = size - leng;
strncpy(buf + leng, string, nbyte);
leng += nbyte;
}
}
buf[leng] = '\0';
return leng;
}
/*
* Read from process, doing endianness and size conversions, possibly quashing
* address-related errors.
*/
ssize_t
Pread_scalar_quietly(struct ps_prochandle *P,
void *buf, /* caller's buffer */
size_t nbyte, /* number of bytes to read */
size_t nscalar, /* scalar size on this platform */
uintptr_t address, /* address in process */
int quietly) /* do not emit error messages */
{
size_t copybytes;
union
{
uint8_t b1;
uint16_t b2;
uint32_t b4;
uint64_t b8;
} conv;
conv.b8 = 0;
if (nbyte > sizeof(conv.b8)) {
_dprintf("Pread_scalar(): Attempt to read scalar of size %lu "
"greater than max supported size %lu from PID %i\n",
nbyte, sizeof(conv.b8), P->pid);
return -1;
}
if (nscalar > sizeof(conv.b8)) {
_dprintf("Pread_scalar(): Attempt to read into scalar of size %lu "
"greater than max supported size %lu from PID %i\n",
nscalar, sizeof(conv.b8), P->pid);
return -1;
}
/*
* Prohibit 32-on-64 debugging. Just too much chance of data loss.
* DTrace is 64-bit anyway so only an autobuilder error could cause this.
*/
if (nbyte > nscalar) {
_dprintf("Pread_scalar(): Attempt to read scalar of size %lu into "
"scalar of size %lu PID %i: narrowing conversions are not "
"supported\n", nbyte, nscalar, P->pid);
return -1;
}
if (Pread(P, (void *)&conv.b1, nbyte, address) != nbyte) {
if (!quietly)
_dprintf("Pread_scalar(): attempt to read %lu bytes from PID %i at "
"address %lx read fewer bytes than expected.\n", nbyte,
P->pid, address);
return -1;
}
memset(buf, 0, nscalar);
#if __BYTE_ORDER == __BIG_ENDIAN
buf = (char *)buf + nscalar - nbyte;
copybytes = nbyte;
#else
copybytes = nscalar;
#endif
switch (nscalar) {
case sizeof(conv.b1): memcpy(buf, &conv.b1, copybytes); break;
case sizeof(conv.b2): memcpy(buf, &conv.b2, copybytes); break;
case sizeof(conv.b4): memcpy(buf, &conv.b4, copybytes); break;
case sizeof(conv.b8): memcpy(buf, &conv.b8, copybytes); break;
default: _dprintf("Pread_scalar(): Attempt to read into a scalar of "
"%lu bytes is not supported.\n", nscalar);
return -1;
}
return nbyte;
}
/*
* Read from process, doing endianness and size conversions, with noisy errors
* if things go wrong.
*/
ssize_t
Pread_scalar(struct ps_prochandle *P,
void *buf, /* caller's buffer */
size_t nbyte, /* number of bytes to read */
size_t nscalar, /* scalar size on this platform */
uintptr_t address) /* address in process */
{
return Pread_scalar_quietly(P, buf, nbyte, nscalar, address, 0);
}
pid_t
Pgetpid(struct ps_prochandle *P)
{
if (P == NULL)
return -1;
return P->pid;
}
/*
* Set the path to /proc.
*/
void
Pset_procfs_path(const char *path)
{
strcpy(procfs_path, path);
}
/*
* Set a function returning a pointer to a jmp_buf we should use to throw
* exceptions.
*/
void
Pset_libproc_unwinder_pad(libproc_unwinder_pad_fun *unwinder_pad)
{
libproc_unwinder_pad = unwinder_pad;
}
/*
* Set the ptrace() lock hook.
*/
void
Pset_ptrace_lock_hook(ptrace_lock_hook_fun *hook)
{
ptrace_lock_hook = hook;
}
/*
* Set the waitpid() lock hook.
*/
void
Pset_waitpid_lock_hook(waitpid_lock_hook_fun *hook)
{
waitpid_lock_hook = hook;
}
/*
* Return 1 if the process is invasively grabbed, and thus ptrace()able.
*/
int
Ptraceable(struct ps_prochandle *P)
{
return !P->noninvasive;
}
/*
* Return 1 if this is a 64-bit process.
*/
int
Pelf64(struct ps_prochandle *P)
{
return P->elf64;
}
/*
* Return 1 if this process exists (or, in the presence of PID wraparound, some
* other process that happens to have the same PID).
*
* WARNING: intrinsically racy: use only when this is not a problem!
*
* Note: This takes a pid, not a ps_prochandle, because it is used to decide
* how to grab a process, before a ps_prochandle exists.
*/
int
Pexists(pid_t pid)
{
char procname[PATH_MAX + MAXLEN_PID + 1];
snprintf(procname, sizeof(procname), "%s/%d",
procfs_path, pid);
return access(procname, F_OK) == 0;
}
/*
* Return 1 if this process has a controlling terminal.
*
* Note: This takes a pid, not a ps_prochandle, because it is used to decide
* how to grab a process, before a ps_prochandle exists.
*/
static int
Phastty(pid_t pid)
{
char procname[PATH_MAX + MAXLEN_PID + strlen("/stat") + 1];
char *buf = NULL;
char *s;
size_t n;
FILE *fp;
int tty;
snprintf(procname, sizeof(procname), "%s/%d/stat",
procfs_path, pid);
if ((fp = fopen(procname, "r")) == NULL) {
_dprintf("Phastty: failed to open %s: %s\n",
procname, strerror(errno));
return -1;
}
if (getline(&buf, &n, fp) < 0) {
free(buf);
fclose(fp);
return -1;
}
fclose(fp);
s = strchr (buf, ')');
if (!s) {
free(buf);
return -1;
}
s++;
if (sscanf(s, " %*c %*d %*d %*d %d", &tty) != 1) {
free(buf);
return -1;
}
_dprintf("%i: tty: %i\n", pid, tty);
free(buf);
return tty != 0;
}
/*
* Dump /proc/$pid/status into the debug log.
*/
static void
Pdump_proc_status(pid_t pid)
{
char status[PATH_MAX];
FILE *fp;
char *line = NULL;
size_t len;
snprintf(status, sizeof(status), "/proc/%i/status", pid);
if ((fp = fopen(status, "r")) == NULL) {
_dprintf("Process is dead.\n");
return;
}
while (getline(&line, &len, fp) >= 0) {
if (strlen(line) > 0) {
if (line[strlen(line) - 1] == '\n')
line[strlen(line)-1] = '\0';
_dprintf("%li: %s\n", (long)pid, line);
}
}
free(line);
fclose(fp);
return;
}
/*
* Get a specific field out of /proc/$pid/status and return the portion after
* the colon in a new dynamically allocated string, or NULL if no field matches.
*/
char *
Pget_proc_status(pid_t pid, const char *field)
{
char status[PATH_MAX];
FILE *fp;
char *line = NULL;
size_t len;
snprintf(status, sizeof(status), "/proc/%i/status", pid);
if ((fp = fopen(status, "r")) == NULL) {
_dprintf("Process is dead.\n");
return NULL;
}
while (getline(&line, &len, fp) >= 0) {
if ((strncmp(line, field, strlen(field)) == 0) &&
(strncmp(line + strlen(field), ":\t", 2) == 0)) {
memmove(line, line + strlen(field) + 2,
strlen(line + strlen(field) + 2) + 1);
_dprintf("%li: %s: %s", (long)pid, status, line);
fclose(fp);
return line;
}
}
free(line);
fclose(fp);
return NULL;
}
/*
* Return the (real) uid of this process.
*
* Note: This takes a pid, not a ps_prochandle, because it is used to decide
* how to grab a process, before a ps_prochandle exists.
*/
static uid_t
Puid(pid_t pid)
{
char *uids = Pget_proc_status(pid, "Uid");
uid_t uid;
if (!uids) {
_dprintf("Cannot get uids for PID %i: assuming zero.\n", pid);
return 0;
}
uid = strtol(uids, NULL, 10);
_dprintf("%i: uid is %i.\n", pid, uid);
free(uids);
return uid;
}
/*
* Determine if this process is already being ptraced, and if so, the pid of the
* ptracer. The caller should eschew invasive tracing in this case.
*/
pid_t
Ptracer_pid(pid_t pid)
{
char *traced;
pid_t tracer_pid;
if ((traced = Pget_proc_status(pid, "TracerPid")) == NULL)
return 0;
tracer_pid = strtol(traced, NULL, 10);
free(traced);
return tracer_pid;
}
/*
* Get the thread-group ID of the given task (comparable to getpid().
*/
pid_t
Ptgid(pid_t pid)
{
char *txt;
pid_t tgid;
if ((txt = Pget_proc_status(pid, "Tgid")) == NULL)
return 0;
tgid = strtol(txt, NULL, 10);
free(txt);
return tgid;
}
/*
* Return 1 if this process is a system daemon, 0 if it is not, and -1 on error.
*
* A process is considered a system daemon if either of two possibilities hold:
*
* - a systemd cgroup exists, and the process is in the sysslice or the root
* slice
*
* - if no systemd cgroup exists, the process is in the system UID range (less
* than 'useruid'), it has no controlling terminal and the standard streams
* are not pointing to TTYs or regular files outside /var. (i.e. standard
* streams pointing to things like /dev/null, pipes, or sockets are not
* determinative: only TTYs and regular files are.)
*/
int
Psystem_daemon(pid_t pid, uid_t useruid, const char *sysslice)
{
FILE *fp;
/*
* procname must be big enough for either of these:
* - "$procfs_path/$pid/cgroup\0" (this one is bigger)
* - "$procfs_path/$pid/fd/$fd\0'
*/
char procname[PATH_MAX + MAXLEN_PID + strlen("/cgroup") + 1];
char *buf = NULL;
size_t n;
int fd;
/*
* If we don't know if this systemd is running systemd, find out.
*/
if (systemd_system < 0) {
struct stat st;
if (stat("/run/systemd/system", &st) < 0 ||
!S_ISDIR(st.st_mode))
systemd_system = 0;
else
systemd_system = 1;
_dprintf("systemd system.\n");
}
/*
* If this is a system running systemd, dig out the systemd cgroup line
* from /proc/$pid/cgroup.
*/
if (systemd_system) {
int found = 0;
snprintf(procname, sizeof(procname), "%s/%d/cgroup",
procfs_path, pid);
if ((fp = fopen(procname, "r")) == NULL) {
_dprintf("Psystem_daemon: failed to open %s: %s\n",
procname, strerror(errno));
return -1;
}
while (getline(&buf, &n, fp) >= 0) {
/*
* cgroups v2: only one line, 0::-prepended, slice
* name always on that line.
*/
if (strncmp(buf, "0::", strlen ("0::")) == 0 &&
strstr(buf, ".slice/") != NULL) {
found = 1;
break;
}
/*
* cgroups v1: find the line with the name=systemd
* controller notation.
*/
if (strstr(buf, ":name=systemd:") != NULL) {
found = 1;
break;
}
}
fclose(fp);
/*
* We have our slice's cgroup line in buf. Extract the slice
* name, skipping over the hierarchy number and controller
* fields.
*/
if (found) {
char *colon = strchr(buf, ':');
if (colon)
colon = strchr(colon + 1, ':');
_dprintf("systemd system: sysslice: %s; colon: %s\n",
sysslice, colon ? colon : "(not found)");
if (colon &&
(strncmp(colon, sysslice, strlen(sysslice)) == 0)) {
free(buf);
_dprintf("%i is a system daemon process.\n", pid);
return 1;
}
free(buf);
return 0;
}
/*
* No idea: this is probably a kernel thread or something
* else entirely outside of systemd management or delegated
* via Delegate=: at any rate, a system daemon. We can fall
* back to the old mechanism in this situation.
*/
_dprintf("%i: probably non-systemd: delegated?\n", pid);
}
free(buf);
/*
* This is not a systemd system, or we can't extract the relevant
* slice info from it -- we have to guess by looking at the
* process's UID, controlling terminal, and the TTYness and/or
* location of the files pointed to by its stdin/out/err. (i.e. we
* first consider whether something may be a system daemon by
* consulting its uid range and controlling TTY, then try to rule it
* out by looking for open fds to TTYs and regular files outside
* particular subtrees.) (As a consequence of these rules, a
* process with no standard streams at all is considered a system
* daemon -- this is a cheap way of catching kernel threads.)
*/
if ((Puid(pid) > useruid) || Phastty(pid))
return 0;
for (fd = 0; fd < 3; fd++) {
struct stat s;
char buf[6];
snprintf(procname, sizeof(procname), "%s/%d/fd/%d",
procfs_path, pid, fd);
/*
* Can't be a regular file or a TTY if we can't stat it: on to
* the next fd.
*/
if (stat(procname, &s) < 0)
continue;
/*
* See if this is a regular file pointing outside /var.
* readlink() truncate the path.
*/
memset(buf, '\0', sizeof(buf));
if (S_ISREG(s.st_mode) &&
(readlink(procname, buf, sizeof(buf)-1) == 0)) {
if((buf[0] == '/') && (strcmp(buf, "/var/") != 0))
return 0;
}
/*
* See if this fd is a TTY: if it is, this isn't a system daemon.
*/
if (S_ISCHR(s.st_mode)) {
int fdf;
int tty = 0;
fdf = open(procname, O_RDONLY | O_CLOEXEC | O_NOCTTY |
O_NOATIME | O_NONBLOCK);
if (fdf >= 0) {
tty = isatty(fdf);
close(fdf);
}
if (tty)
return 0;
}
}
/*
* In system UID range, no controlling TTY, no FDs that refer to TTYs at
* all, no FDs that refer to regular files outside /var. This is a
* system daemon.
*/
_dprintf("%i is a system daemon process.\n", pid);
return 1;
}
|