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
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
// SPDX-License-Identifier: GPL-2.0-or-later
// Linux kernel module for testing drgn helpers and kernel support. For now,
// this is all in one file for simplicity and to keep the compilation fast
// (since this is compiled for every kernel version in CI).
//
// This is intended to be used with drgn's vmtest framework, but in theory it
// can be used with any kernel that has debug info enabled (at your own risk).
#include <linux/version.h>
#include <linux/completion.h>
#include <linux/io.h>
#include <linux/irq_work.h>
#include <linux/kernel.h>
#include <linux/kexec.h>
#include <linux/kthread.h>
#include <linux/list.h>
#include <linux/llist.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
#define HAVE_MAPLE_TREE 1
#include <linux/maple_tree.h>
#else
#define HAVE_MAPLE_TREE 0
#endif
#include <linux/memory.h>
#include <linux/mm.h>
#include <linux/mmzone.h>
#include <linux/module.h>
#include <linux/netdevice.h>
#include <linux/nodemask.h>
#include <linux/plist.h>
#include <linux/radix-tree.h>
#include <linux/rbtree.h>
#include <linux/rbtree_augmented.h>
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/stacktrace.h>
#ifdef CONFIG_STACKDEPOT
#include <linux/stackdepot.h>
#endif
#include <linux/sysfs.h>
#include <linux/timekeeping.h>
#include <linux/vmalloc.h>
#include <linux/wait.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 20, 0)
#define HAVE_XARRAY 1
#include <linux/xarray.h>
#else
#define HAVE_XARRAY 0
#endif
// Page pools were added in Linux kernel commit ff7d6b27f894 ("page_pool:
// refurbish version of page_pool code") (in v4.18) and may not be enabled.
#ifdef CONFIG_PAGE_POOL
#define HAVE_PAGE_POOL 1
// The header file was moved in Linux kernel commit a9ca9f9ceff3 ("page_pool:
// split types and declarations from page_pool.h") (in v6.6).
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 6, 0)
#include <net/page_pool/helpers.h>
#else
#include <net/page_pool.h>
#endif
#else
#define HAVE_PAGE_POOL 0
#endif
// Architecture-specific includes for triggering NMIs for stack traces
#ifdef __x86_64__
#include <asm/apic.h>
#include <asm/nmi.h>
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 18, 0)
// These were added in b9ff604cff11 ("timekeeping: Add
// ktime_get_coarse_with_offset") (in v4.18-rc1).
static inline ktime_t ktime_get_coarse_boottime(void)
{
struct timespec64 ts = get_monotonic_coarse64();
return ktime_mono_to_any(timespec64_to_ktime(ts), TK_OFFS_BOOT);
}
static inline ktime_t ktime_get_coarse_clocktai(void)
{
struct timespec64 ts = get_monotonic_coarse64();
return ktime_mono_to_any(timespec64_to_ktime(ts), TK_OFFS_TAI);
}
// These were added in Linux kernel commit 06aa376903b6 ("timekeeping: Add more
// coarse clocktai/boottime interfaces") (in v4.18).
static inline time64_t ktime_get_boottime_seconds(void)
{
return ktime_divns(ktime_get_coarse_boottime(), NSEC_PER_SEC);
}
static inline time64_t ktime_get_clocktai_seconds(void)
{
return ktime_divns(ktime_get_coarse_clocktai(), NSEC_PER_SEC);
}
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 3, 0)
// These were added in 4c54294d01e6 ("timekeeping: Add missing _ns functions for
// coarse accessors") (in v5.3).
static inline u64 ktime_get_coarse_boottime_ns(void)
{
return ktime_to_ns(ktime_get_coarse_boottime());
}
static inline u64 ktime_get_coarse_clocktai_ns(void)
{
return ktime_to_ns(ktime_get_coarse_clocktai());
}
#endif
// Convert a 4-character string to a seed for drgn_test_prng32().
static inline u32 drgn_test_prng32_seed(const char *s)
{
BUG_ON(strlen(s) != 4);
return ((u32)s[0] << 24) | ((u32)s[1] << 16) | ((u32)s[2] << 8) | (u32)s[3];
}
// x must not be 0; the return value is never 0.
static u32 drgn_test_prng32(u32 x)
{
// Xorshift RNG with a period of 2^32 - 1.
x ^= x << 13;
x ^= x >> 17;
x ^= x << 5;
return x;
}
// constants
unsigned long drgn_test_THREAD_SIZE;
#ifdef NR_SECTION_ROOTS
unsigned long drgn_test_NR_SECTION_ROOTS;
#endif
#ifdef SECTIONS_PER_ROOT
unsigned long drgn_test_SECTIONS_PER_ROOT;
#endif
#ifdef SECTION_SIZE_BITS
unsigned long drgn_test_SECTION_SIZE_BITS;
#endif
#ifdef MAX_PHYSMEM_BITS
unsigned long drgn_test_MAX_PHYSMEM_BITS;
#endif
#ifdef CONFIG_FLATMEM
unsigned long drgn_test_ARCH_PFN_OFFSET;
#endif
int drgn_test_MEM_ONLINE = MEM_ONLINE;
int drgn_test_MEM_GOING_OFFLINE = MEM_GOING_OFFLINE;
int drgn_test_MEM_OFFLINE = MEM_OFFLINE;
int drgn_test_MEM_GOING_ONLINE = MEM_GOING_ONLINE;
int drgn_test_MEM_CANCEL_ONLINE = MEM_CANCEL_ONLINE;
int drgn_test_MEM_CANCEL_OFFLINE = MEM_CANCEL_OFFLINE;
#ifdef MEM_PREPARE_ONLINE
int drgn_test_MEM_PREPARE_ONLINE = MEM_PREPARE_ONLINE;
#endif
#ifdef MEM_FINISH_OFFLINE
int drgn_test_MEM_FINISH_OFFLINE = MEM_FINISH_OFFLINE;
#endif
static void drgn_test_constants_init(void)
{
// Some of these aren't actually compile-time constants, so we
// initialize all of them at runtime.
drgn_test_THREAD_SIZE = THREAD_SIZE;
#ifdef NR_SECTION_ROOTS
drgn_test_NR_SECTION_ROOTS = NR_SECTION_ROOTS;
#endif
#ifdef SECTIONS_PER_ROOT
drgn_test_SECTIONS_PER_ROOT = SECTIONS_PER_ROOT;
#endif
#ifdef SECTION_SIZE_BITS
drgn_test_SECTION_SIZE_BITS = SECTION_SIZE_BITS;
#endif
#ifdef MAX_PHYSMEM_BITS
drgn_test_MAX_PHYSMEM_BITS = MAX_PHYSMEM_BITS;
#endif
#ifdef CONFIG_FLATMEM
drgn_test_ARCH_PFN_OFFSET = ARCH_PFN_OFFSET;
#endif
}
// list
LIST_HEAD(drgn_test_empty_list);
LIST_HEAD(drgn_test_full_list);
LIST_HEAD(drgn_test_singular_list);
LIST_HEAD(drgn_test_corrupted_list);
struct drgn_test_list_entry {
struct list_head node;
int value;
};
struct drgn_test_list_entry drgn_test_list_entries[3];
struct drgn_test_list_entry drgn_test_singular_list_entry;
struct drgn_test_list_entry drgn_test_corrupted_list_entries[2];
HLIST_HEAD(drgn_test_empty_hlist);
HLIST_HEAD(drgn_test_full_hlist);
struct drgn_test_hlist_entry {
struct hlist_node node;
int value;
};
struct drgn_test_hlist_entry drgn_test_hlist_entries[3];
// Emulate a race condition between two threads calling list_add() at the same
// time.
static void init_corrupted_list(void)
{
struct list_head *prev = &drgn_test_corrupted_list;
struct list_head *next = drgn_test_corrupted_list.next;
struct list_head *new1 = &drgn_test_corrupted_list_entries[0].node;
struct list_head *new2 = &drgn_test_corrupted_list_entries[1].node;
// Thread 1 starts list_add().
next->prev = new1;
// Thread 2 races in and does its own list_add().
next->prev = new2;
new2->next = next;
new2->prev = prev;
WRITE_ONCE(prev->next, new2);
// Thread 1 finishes list_add().
new1->next = next;
new1->prev = prev;
WRITE_ONCE(prev->next, new1);
}
static void drgn_test_list_init(void)
{
size_t i;
for (i = 0; i < ARRAY_SIZE(drgn_test_list_entries); i++) {
list_add_tail(&drgn_test_list_entries[i].node,
&drgn_test_full_list);
}
list_add(&drgn_test_singular_list_entry.node, &drgn_test_singular_list);
for (i = ARRAY_SIZE(drgn_test_hlist_entries); i-- > 0;) {
hlist_add_head(&drgn_test_hlist_entries[i].node,
&drgn_test_full_hlist);
}
init_corrupted_list();
}
// llist
LLIST_HEAD(drgn_test_empty_llist);
LLIST_HEAD(drgn_test_full_llist);
LLIST_HEAD(drgn_test_singular_llist);
struct drgn_test_llist_entry {
struct llist_node node;
int value;
};
struct drgn_test_llist_entry drgn_test_llist_entries[3];
struct drgn_test_llist_entry drgn_test_singular_llist_entry;
static void drgn_test_llist_init(void)
{
size_t i;
for (i = 0; i < ARRAY_SIZE(drgn_test_llist_entries); i++) {
llist_add(&drgn_test_llist_entries[i].node,
&drgn_test_full_llist);
}
llist_add(&drgn_test_singular_llist_entry.node, &drgn_test_singular_llist);
}
// plist
PLIST_HEAD(drgn_test_empty_plist);
PLIST_HEAD(drgn_test_full_plist);
struct plist_node drgn_test_empty_plist_node =
PLIST_NODE_INIT(drgn_test_empty_plist_node, 50);
struct drgn_test_plist_entry {
struct plist_node node;
char c;
};
struct drgn_test_plist_entry drgn_test_plist_entries[3];
// Copy of plist_add() (minus debugging code) since it's not exported.
static void drgn_plist_add(struct plist_node *node, struct plist_head *head)
{
struct plist_node *first, *iter, *prev = NULL;
struct list_head *node_next = &head->node_list;
WARN_ON(!plist_node_empty(node));
WARN_ON(!list_empty(&node->prio_list));
if (plist_head_empty(head))
goto ins_node;
first = iter = plist_first(head);
do {
if (node->prio < iter->prio) {
node_next = &iter->node_list;
break;
}
prev = iter;
iter = list_entry(iter->prio_list.next,
struct plist_node, prio_list);
} while (iter != first);
if (!prev || prev->prio != node->prio)
list_add_tail(&node->prio_list, &iter->prio_list);
ins_node:
list_add_tail(&node->node_list, node_next);
}
static void drgn_test_plist_init(void)
{
plist_node_init(&drgn_test_plist_entries[0].node, 10);
drgn_test_plist_entries[0].c = 'H';
plist_node_init(&drgn_test_plist_entries[1].node, 20);
drgn_test_plist_entries[1].c = 'I';
plist_node_init(&drgn_test_plist_entries[2].node, 30);
drgn_test_plist_entries[2].c = '!';
drgn_plist_add(&drgn_test_plist_entries[1].node, &drgn_test_full_plist);
drgn_plist_add(&drgn_test_plist_entries[0].node, &drgn_test_full_plist);
drgn_plist_add(&drgn_test_plist_entries[2].node, &drgn_test_full_plist);
}
// mapletree
const int drgn_test_have_maple_tree = HAVE_MAPLE_TREE;
#if HAVE_MAPLE_TREE
const int drgn_test_maple_range64_slots = MAPLE_RANGE64_SLOTS;
const int drgn_test_maple_arange64_slots = MAPLE_ARANGE64_SLOTS;
#define DRGN_TEST_MAPLE_TREES \
X(empty) \
X(one) \
X(one_range) \
X(one_at_zero) \
X(one_range_at_zero) \
X(zero_entry) \
X(zero_entry_at_zero) \
X(dense) \
X(dense_ranges) \
X(sparse) \
X(sparse_ranges) \
X(three_levels_dense_1) \
X(three_levels_dense_2) \
X(three_levels_ranges_1) \
X(three_levels_ranges_2)
#define X(name) \
DEFINE_MTREE(drgn_test_maple_tree_##name); \
struct maple_tree drgn_test_maple_tree_arange_##name = \
MTREE_INIT(drgn_test_maple_tree_arange_##name, \
MT_FLAGS_ALLOC_RANGE);
DRGN_TEST_MAPLE_TREES
#undef X
static int drgn_test_maple_tree_init(void)
{
int ret;
unsigned int arange, i;
#define X(name) struct maple_tree *name = &drgn_test_maple_tree_##name;
DRGN_TEST_MAPLE_TREES
#undef X
for (arange = 0; arange < 2; arange++) {
int node_slots = arange ? MAPLE_ARANGE64_SLOTS : MAPLE_RANGE64_SLOTS;
ret = mtree_insert(one, 666, (void *)0xdeadb00, GFP_KERNEL);
if (ret)
return ret;
ret = mtree_insert_range(one_range, 616, 666,
(void *)0xdeadb000, GFP_KERNEL);
if (ret)
return ret;
ret = mtree_insert(one_at_zero, 0, (void *)0x1234, GFP_KERNEL);
if (ret)
return ret;
ret = mtree_insert_range(one_range_at_zero, 0, 0x1337,
(void *)0x5678, GFP_KERNEL);
if (ret)
return ret;
ret = mtree_insert(zero_entry, 666, XA_ZERO_ENTRY, GFP_KERNEL);
if (ret)
return ret;
ret = mtree_insert(zero_entry_at_zero, 0, XA_ZERO_ENTRY,
GFP_KERNEL);
if (ret)
return ret;
for (i = 0; i < 5; i++) {
ret = mtree_insert(dense, i,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
for (i = 0; i < 5; i++) {
ret = mtree_insert_range(dense_ranges, i * i,
(i + 1) * (i + 1) - 1,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
for (i = 0; i < 5; i++) {
ret = mtree_insert(sparse, (i + 1) * (i + 1),
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
for (i = 0; i < 5; i++) {
ret = mtree_insert_range(sparse_ranges,
(2 * i + 1) * (2 * i + 1),
(2 * i + 2) * (2 * i + 2),
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
// In theory, a leaf can reference up to MAPLE_RANGE64_SLOTS
// entries, and a level 1 node can reference up to node_slots *
// MAPLE_RANGE64_SLOTS entries. In practice, as of Linux 6.6,
// the maple tree code only fully packs nodes with a maximum of
// ULONG_MAX. We create and test trees with both the observed
// and theoretical limits.
for (i = 0;
i < 2 * (node_slots - 1) * (MAPLE_RANGE64_SLOTS - 1) + (MAPLE_RANGE64_SLOTS - 1);
i++) {
ret = mtree_insert(three_levels_dense_1, i,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
for (i = 0; i < 2 * node_slots * MAPLE_RANGE64_SLOTS; i++) {
ret = mtree_insert(three_levels_dense_2, i,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
for (i = 0;
i < 2 * (node_slots - 1) * (MAPLE_RANGE64_SLOTS - 1) + (MAPLE_RANGE64_SLOTS - 1);
i++) {
ret = mtree_insert_range(three_levels_ranges_1, 2 * i,
2 * i + 1,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
ret = mtree_insert_range(three_levels_ranges_1, 2 * i,
ULONG_MAX,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
for (i = 0; i < 2 * node_slots * MAPLE_RANGE64_SLOTS; i++) {
ret = mtree_insert_range(three_levels_ranges_2, 2 * i,
2 * i + 1,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
}
ret = mtree_insert_range(three_levels_ranges_2, 2 * i,
ULONG_MAX,
(void *)(uintptr_t)(0xb0ba000 | i),
GFP_KERNEL);
if (ret)
return ret;
#define X(name) name = &drgn_test_maple_tree_arange_##name;
DRGN_TEST_MAPLE_TREES
#undef X
}
return 0;
}
static void drgn_test_maple_tree_exit(void)
{
#define X(name) \
mtree_destroy(&drgn_test_maple_tree_##name); \
mtree_destroy(&drgn_test_maple_tree_arange_##name);
DRGN_TEST_MAPLE_TREES
#undef X
}
#else
static int drgn_test_maple_tree_init(void) { return 0; }
static void drgn_test_maple_tree_exit(void) {}
#endif
// mm
const int drgn_test_vmap_stack_enabled = IS_ENABLED(CONFIG_VMAP_STACK);
const int drgn_test_slab_stack_enabled =
!IS_ENABLED(CONFIG_VMAP_STACK) && THREAD_SIZE < PAGE_SIZE;
void *drgn_test_va;
phys_addr_t drgn_test_pa;
unsigned long drgn_test_pfn;
struct page *drgn_test_page;
struct page *drgn_test_compound_page;
void *drgn_test_vmalloc_va;
unsigned long drgn_test_vmalloc_pfn;
struct page *drgn_test_vmalloc_page;
#ifdef CONFIG_SPARSEMEM
unsigned long drgn_test_section_nr;
unsigned long drgn_test_section_pfn;
struct mem_section *drgn_test_mem_section;
struct page *drgn_test_section_mem_map;
struct page *drgn_test_section_decoded_mem_map;
unsigned long drgn_test_SECTION_MARKED_PRESENT = SECTION_MARKED_PRESENT;
struct mem_section *drgn_test_present_section = &(struct mem_section){
.section_mem_map = SECTION_MARKED_PRESENT,
};
unsigned long drgn_test_SECTION_HAS_MEM_MAP = SECTION_HAS_MEM_MAP;
struct mem_section *drgn_test_valid_section = &(struct mem_section){
.section_mem_map = SECTION_HAS_MEM_MAP,
};
#ifdef SECTION_IS_ONLINE
unsigned long drgn_test_SECTION_IS_ONLINE = SECTION_IS_ONLINE;
struct mem_section *drgn_test_online_section = &(struct mem_section){
.section_mem_map = SECTION_IS_ONLINE,
};
#endif
#ifdef SECTION_IS_EARLY
unsigned long drgn_test_SECTION_IS_EARLY = SECTION_IS_EARLY;
struct mem_section *drgn_test_early_section = &(struct mem_section){
.section_mem_map = SECTION_IS_EARLY,
};
#endif
#ifdef SECTION_TAINT_ZONE_DEVICE
unsigned long drgn_test_SECTION_TAINT_ZONE_DEVICE = SECTION_TAINT_ZONE_DEVICE;
#endif
struct {
unsigned long nr;
struct mem_section *section;
} *drgn_test_present_sections;
size_t drgn_test_num_present_sections;
#endif
static int drgn_test_mm_init(void)
{
u32 fill;
size_t i;
#ifdef CONFIG_SPARSEMEM
size_t n;
#endif
drgn_test_page = alloc_page(GFP_KERNEL);
if (!drgn_test_page)
return -ENOMEM;
drgn_test_compound_page = alloc_pages(GFP_KERNEL | __GFP_COMP, 1);
if (!drgn_test_compound_page)
return -ENOMEM;
drgn_test_va = page_address(drgn_test_page);
// Fill the page with a PRNG sequence.
fill = drgn_test_prng32_seed("PAGE");
for (i = 0; i < PAGE_SIZE / sizeof(fill); i++) {
fill = drgn_test_prng32(fill);
((u32 *)drgn_test_va)[i] = fill;
}
drgn_test_pa = virt_to_phys(drgn_test_va);
drgn_test_pfn = PHYS_PFN(drgn_test_pa);
drgn_test_vmalloc_va = vmalloc(PAGE_SIZE);
if (!drgn_test_vmalloc_va)
return -ENOMEM;
drgn_test_vmalloc_pfn = vmalloc_to_pfn(drgn_test_vmalloc_va);
drgn_test_vmalloc_page = vmalloc_to_page(drgn_test_vmalloc_va);
#ifdef CONFIG_SPARSEMEM
drgn_test_section_nr = pfn_to_section_nr(drgn_test_pfn);
drgn_test_section_pfn = section_nr_to_pfn(drgn_test_section_nr);
drgn_test_mem_section = __nr_to_section(drgn_test_section_nr);
drgn_test_section_mem_map = __section_mem_map_addr(drgn_test_mem_section);
// sparse_decode_mem_map() isn't exported, so we do the equivalent
// ourselves.
drgn_test_section_decoded_mem_map =
drgn_test_section_mem_map + drgn_test_section_pfn;
// __highest_present_section_nr is not exported, so we can't use
// for_each_present_section_nr().
for (i = 0, n = 0; i < NR_MEM_SECTIONS; i++) {
if (present_section_nr(i))
n++;
}
drgn_test_present_sections =
kmalloc_array(n, sizeof(drgn_test_present_sections[0]),
GFP_KERNEL);
if (!drgn_test_present_sections)
return -ENOMEM;
for (i = 0; i < NR_MEM_SECTIONS; i++) {
if (present_section_nr(i)) {
drgn_test_present_sections[drgn_test_num_present_sections].nr = i;
drgn_test_present_sections[drgn_test_num_present_sections].section =
__nr_to_section(i);
drgn_test_num_present_sections++;
if (drgn_test_num_present_sections >= n)
break;
}
}
#endif
return 0;
}
static void drgn_test_mm_exit(void)
{
vfree(drgn_test_vmalloc_va);
if (drgn_test_compound_page)
__free_pages(drgn_test_compound_page, 1);
if (drgn_test_page)
__free_pages(drgn_test_page, 0);
}
// mmzone
int drgn_test_nid;
struct pglist_data *drgn_test_pgdat;
static void drgn_test_mmzone_init(void)
{
drgn_test_nid = first_online_node;
drgn_test_pgdat = NODE_DATA(drgn_test_nid);
}
// net
struct net_device *drgn_test_netdev;
void *drgn_test_netdev_priv;
struct sk_buff *drgn_test_skb;
struct skb_shared_info *drgn_test_skb_shinfo;
static int drgn_test_net_init(void)
{
drgn_test_netdev = dev_get_by_name(&init_net, "lo");
if (!drgn_test_netdev)
return -ENODEV;
// The loopback device doesn't actually have private data, but we just
// need to compare the pointer.
drgn_test_netdev_priv = netdev_priv(drgn_test_netdev);
drgn_test_skb = alloc_skb(64, GFP_KERNEL);
if (!drgn_test_skb)
return -ENOMEM;
drgn_test_skb_shinfo = skb_shinfo(drgn_test_skb);
return 0;
}
static void drgn_test_net_exit(void)
{
kfree_skb(drgn_test_skb);
dev_put(drgn_test_netdev);
}
// page_pool
const int drgn_test_have_page_pool = HAVE_PAGE_POOL;
#if HAVE_PAGE_POOL
struct page_pool *drgn_test_page_pool;
struct page *drgn_test_page_pool_page;
#endif
static int drgn_test_page_pool_init(void)
{
#if HAVE_PAGE_POOL
struct page_pool_params params = {
.order = 0,
.flags = 0,
.pool_size = 1,
.nid = NUMA_NO_NODE,
};
struct page_pool *pool;
pool = page_pool_create(¶ms);
if (IS_ERR(pool))
return PTR_ERR(pool);
drgn_test_page_pool = pool;
drgn_test_page_pool_page = page_pool_alloc_pages(pool, GFP_KERNEL);
if (!drgn_test_page_pool_page)
return -ENOMEM;
#endif
return 0;
}
static void drgn_test_page_pool_exit(void)
{
#if HAVE_PAGE_POOL
if (drgn_test_page_pool_page) {
// page_pool_put_page() changed in Linux kernel commit
// 458de8a97f10 ("net: page_pool: API cleanup and comments") (in
// v5.7).
page_pool_put_page(drgn_test_page_pool,
drgn_test_page_pool_page,
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 7, 0)
0,
#endif
true);
}
page_pool_destroy(drgn_test_page_pool);
#endif
}
// percpu
DEFINE_PER_CPU(u32, drgn_test_percpu_static);
u32 __percpu *drgn_test_percpu_dynamic;
struct percpu_counter drgn_test_percpu_counter;
struct percpu_counter drgn_test_percpu_counter_negative;
struct drgn_test_percpu_struct {
int cpu;
int i;
};
DEFINE_PER_CPU(struct drgn_test_percpu_struct, drgn_test_percpu_structs);
typedef struct drgn_test_percpu_struct drgn_test_percpu_array[3];
DEFINE_PER_CPU(drgn_test_percpu_array, drgn_test_percpu_arrays);
static int drgn_test_percpu_init(void)
{
int ret;
int cpu;
u32 static_seed = drgn_test_prng32_seed("PCPU");
u32 dynamic_seed = drgn_test_prng32_seed("pcpu");
drgn_test_percpu_dynamic = alloc_percpu(u32);
if (!drgn_test_percpu_dynamic)
return -ENOMEM;
// Initialize the per-cpu variables with a PRNG sequence.
for_each_possible_cpu(cpu) {
int i;
static_seed = drgn_test_prng32(static_seed);
per_cpu(drgn_test_percpu_static, cpu) = static_seed;
dynamic_seed = drgn_test_prng32(dynamic_seed);
*per_cpu_ptr(drgn_test_percpu_dynamic, cpu) = dynamic_seed;
per_cpu(drgn_test_percpu_structs, cpu) =
(struct drgn_test_percpu_struct){
.cpu = cpu,
};
for (i = 0; i < 3; i++) {
per_cpu(drgn_test_percpu_arrays, cpu)[i] =
(struct drgn_test_percpu_struct){
.cpu = cpu,
.i = i,
};
}
}
ret = percpu_counter_init(&drgn_test_percpu_counter,
10, GFP_KERNEL);
if (ret)
return ret;
percpu_counter_add(&drgn_test_percpu_counter, 3);
ret = percpu_counter_init(&drgn_test_percpu_counter_negative,
33, GFP_KERNEL);
if (ret)
return ret;
percpu_counter_sub(&drgn_test_percpu_counter_negative, 99);
return 0;
}
static void drgn_test_percpu_exit(void)
{
percpu_counter_destroy(&drgn_test_percpu_counter_negative);
percpu_counter_destroy(&drgn_test_percpu_counter);
free_percpu(drgn_test_percpu_dynamic);
}
// rbtree
struct rb_root drgn_test_empty_rb_root = RB_ROOT;
struct rb_root drgn_test_rb_root = RB_ROOT;
struct drgn_test_rb_entry {
struct rb_node node;
int value;
};
struct drgn_test_rb_entry drgn_test_rb_entries[4];
struct rb_node drgn_test_empty_rb_node;
struct drgn_test_rbtree_container_struct {
struct drgn_test_rb_entry entries[2];
struct rb_root root;
} drgn_test_rbtree_container;
struct rb_root drgn_test_rbtree_with_equal = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entries_with_equal[4];
struct rb_root drgn_test_rbtree_out_of_order = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entries_out_of_order[4];
struct rb_root drgn_test_rbtree_with_bad_root_parent = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entry_bad_root_parent;
struct rb_root drgn_test_rbtree_with_red_root = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entry_red_root;
struct rb_root drgn_test_rbtree_with_inconsistent_parents = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entries_with_inconsistent_parents[2];
struct rb_root drgn_test_rbtree_with_red_violation = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entries_with_red_violation[3];
struct rb_root drgn_test_rbtree_with_black_violation = RB_ROOT;
struct drgn_test_rb_entry drgn_test_rb_entries_with_black_violation[2];
static void drgn_test_rbtree_insert(struct rb_root *root,
struct drgn_test_rb_entry *entry)
{
struct rb_node **new = &root->rb_node, *parent = NULL;
while (*new) {
struct drgn_test_rb_entry *this =
container_of(*new, struct drgn_test_rb_entry, node);
parent = *new;
if (entry->value <= this->value)
new = &(*new)->rb_left;
else
new = &(*new)->rb_right;
}
rb_link_node(&entry->node, parent, new);
rb_insert_color(&entry->node, root);
}
static void drgn_test_rbtree_init(void)
{
struct rb_node *node;
size_t i;
for (i = 0; i < ARRAY_SIZE(drgn_test_rb_entries); i++) {
drgn_test_rb_entries[i].value = i;
drgn_test_rbtree_insert(&drgn_test_rb_root,
&drgn_test_rb_entries[i]);
}
RB_CLEAR_NODE(&drgn_test_empty_rb_node);
for (i = 0; i < ARRAY_SIZE(drgn_test_rbtree_container.entries); i++) {
drgn_test_rbtree_container.entries[i].value = i;
drgn_test_rbtree_insert(&drgn_test_rbtree_container.root,
&drgn_test_rbtree_container.entries[i]);
}
// Red-black tree with entries that compare equal to each other.
for (i = 0; i < ARRAY_SIZE(drgn_test_rb_entries_with_equal); i++) {
drgn_test_rb_entries_with_equal[i].value = i / 2;
drgn_test_rbtree_insert(&drgn_test_rbtree_with_equal,
&drgn_test_rb_entries_with_equal[i]);
}
// Bad red-black tree whose entries are out of order.
for (i = 0; i < ARRAY_SIZE(drgn_test_rb_entries_out_of_order); i++) {
drgn_test_rb_entries_out_of_order[i].value = i;
drgn_test_rbtree_insert(&drgn_test_rbtree_out_of_order,
&drgn_test_rb_entries_out_of_order[i]);
}
drgn_test_rb_entries_out_of_order[0].value = 99;
// Bad red-black tree with a root node that has a non-NULL parent.
drgn_test_rbtree_insert(&drgn_test_rbtree_with_bad_root_parent,
&drgn_test_rb_entry_bad_root_parent);
rb_set_parent(&drgn_test_rb_entry_bad_root_parent.node,
&drgn_test_empty_rb_node);
// Bad red-black tree with a red root node.
rb_link_node(&drgn_test_rb_entry_red_root.node, NULL,
&drgn_test_rbtree_with_red_root.rb_node);
// Bad red-black tree with inconsistent rb_parent.
for (i = 0; i < ARRAY_SIZE(drgn_test_rb_entries_with_inconsistent_parents); i++) {
drgn_test_rb_entries_with_inconsistent_parents[i].value = i;
drgn_test_rbtree_insert(&drgn_test_rbtree_with_inconsistent_parents,
&drgn_test_rb_entries_with_inconsistent_parents[i]);
}
node = drgn_test_rbtree_with_inconsistent_parents.rb_node;
rb_set_parent(node->rb_left ? node->rb_left : node->rb_right,
&drgn_test_empty_rb_node);
// Bad red-black tree with red node with red child.
for (i = 0; i < ARRAY_SIZE(drgn_test_rb_entries_with_red_violation); i++)
drgn_test_rb_entries_with_red_violation[i].value = i;
drgn_test_rbtree_insert(&drgn_test_rbtree_with_red_violation,
&drgn_test_rb_entries_with_red_violation[0]);
rb_link_node(&drgn_test_rb_entries_with_red_violation[1].node,
&drgn_test_rb_entries_with_red_violation[0].node,
&drgn_test_rb_entries_with_red_violation[0].node.rb_right);
rb_link_node(&drgn_test_rb_entries_with_red_violation[2].node,
&drgn_test_rb_entries_with_red_violation[1].node,
&drgn_test_rb_entries_with_red_violation[1].node.rb_right);
// Bad red-black tree with unequal number of black nodes in paths from
// root to leaves.
for (i = 0; i < ARRAY_SIZE(drgn_test_rb_entries_with_black_violation); i++)
drgn_test_rb_entries_with_black_violation[i].value = i;
drgn_test_rbtree_insert(&drgn_test_rbtree_with_black_violation,
&drgn_test_rb_entries_with_black_violation[0]);
rb_link_node(&drgn_test_rb_entries_with_black_violation[1].node,
&drgn_test_rb_entries_with_black_violation[0].node,
&drgn_test_rb_entries_with_black_violation[0].node.rb_right);
drgn_test_rb_entries_with_black_violation[1].node.__rb_parent_color |= RB_BLACK;
}
// slab
const int drgn_test_slob = IS_ENABLED(CONFIG_SLOB);
struct kmem_cache *drgn_test_small_kmem_cache;
struct kmem_cache *drgn_test_big_kmem_cache;
struct drgn_test_small_slab_object {
int padding[11];
int value;
};
struct drgn_test_big_slab_object {
unsigned long padding[PAGE_SIZE / 3 * 4 / sizeof(unsigned long) - 1];
unsigned long value;
};
struct drgn_test_small_slab_object *drgn_test_small_slab_objects[5];
struct drgn_test_big_slab_object *drgn_test_big_slab_objects[5];
static void drgn_test_slab_exit(void)
{
size_t i;
if (drgn_test_big_kmem_cache) {
for (i = 0; i < ARRAY_SIZE(drgn_test_big_slab_objects); i++) {
if (drgn_test_big_slab_objects[i]) {
kmem_cache_free(drgn_test_big_kmem_cache,
drgn_test_big_slab_objects[i]);
}
}
kmem_cache_destroy(drgn_test_big_kmem_cache);
}
if (drgn_test_small_kmem_cache) {
for (i = 0; i < ARRAY_SIZE(drgn_test_small_slab_objects); i++) {
if (drgn_test_small_slab_objects[i]) {
kmem_cache_free(drgn_test_small_kmem_cache,
drgn_test_small_slab_objects[i]);
}
}
kmem_cache_destroy(drgn_test_small_kmem_cache);
}
}
// Dummy constructor so test slab caches won't get merged.
static void drgn_test_slab_ctor(void *arg)
{
}
static int drgn_test_slab_init(void)
{
size_t num_tmp_objs;
size_t i, j;
// We want objects in the drgn_test_small cache to be spread out over
// multiple slabs. To accomplish that, we allocate a bunch of temporary
// objects in the middle of the allocations we intend to keep, then free
// the temporary objects.
num_tmp_objs = PAGE_SIZE / sizeof(struct drgn_test_small_slab_object);
drgn_test_small_kmem_cache =
kmem_cache_create("drgn_test_small",
sizeof(struct drgn_test_small_slab_object),
__alignof__(struct drgn_test_small_slab_object),
0, drgn_test_slab_ctor);
if (!drgn_test_small_kmem_cache)
return -ENOMEM;
for (i = 0; i < ARRAY_SIZE(drgn_test_small_slab_objects); i++) {
const bool alloc_tmp_objs =
i == ARRAY_SIZE(drgn_test_small_slab_objects) / 2;
void **tmp_objs;
int error = 0;
if (alloc_tmp_objs) {
tmp_objs = kmalloc_array(num_tmp_objs,
sizeof(*tmp_objs), GFP_KERNEL);
if (!tmp_objs)
return -ENOMEM;
for (j = 0; j < num_tmp_objs; j++) {
tmp_objs[j] = kmem_cache_alloc(drgn_test_small_kmem_cache,
GFP_KERNEL);
// We check for allocation failures below to
// avoid duplicating cleanup code.
}
}
drgn_test_small_slab_objects[i] =
kmem_cache_alloc(drgn_test_small_kmem_cache,
GFP_KERNEL);
if (!drgn_test_small_slab_objects[i])
error = -ENOMEM;
if (alloc_tmp_objs) {
for (j = 0; j < num_tmp_objs; j++) {
if (!tmp_objs[j])
error = -ENOMEM;
kmem_cache_free(drgn_test_small_kmem_cache,
tmp_objs[j]);
}
kfree(tmp_objs);
}
if (error)
return -ENOMEM;
drgn_test_small_slab_objects[i]->value = i;
}
drgn_test_big_kmem_cache =
kmem_cache_create("drgn_test_big",
sizeof(struct drgn_test_big_slab_object),
__alignof__(struct drgn_test_big_slab_object),
0, drgn_test_slab_ctor);
if (!drgn_test_big_kmem_cache)
return -ENOMEM;
for (i = 0; i < ARRAY_SIZE(drgn_test_big_slab_objects); i++) {
drgn_test_big_slab_objects[i] =
kmem_cache_alloc(drgn_test_big_kmem_cache, GFP_KERNEL);
if (!drgn_test_big_slab_objects[i])
return -ENOMEM;
drgn_test_big_slab_objects[i]->value = i;
}
return 0;
}
// kthread for stack trace
struct task_struct *drgn_test_kthread;
struct thread_info *drgn_test_kthread_info;
const int drgn_test_have_stacktrace = IS_ENABLED(CONFIG_STACKTRACE);
#ifdef CONFIG_STACKTRACE
unsigned long drgn_test_stack_entries[16];
unsigned int drgn_test_num_stack_entries;
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 2, 0)
// stack_trace_save() was added in Linux kernel commit 214d8ca6ee85
// ("stacktrace: Provide common infrastructure") (in v5.2). Wrap the old
// save_stack_trace() interface. save_stack_trace() skips the caller, so we also
// need the extra frame.
static noinline unsigned int
drgn_test_stack_trace_save(unsigned long *store, unsigned int size,
unsigned int skipnr)
{
struct stack_trace trace = {
.entries = store,
.max_entries = size,
.skip = skipnr,
};
save_stack_trace(&trace);
return trace.nr_entries;
}
#elif defined(__arm__) && LINUX_VERSION_CODE < KERNEL_VERSION(6, 2, 0)
// Before Linux kernel commit 9fbed16c3f4f ("ARM: 9259/1: stacktrace: Convert
// stacktrace to generic ARCH_STACKWALK") (in v6.2), stack_trace_save() skips
// the caller on Arm. Wrap it in an extra frame.
static noinline unsigned int
drgn_test_stack_trace_save(unsigned long *store, unsigned int size,
unsigned int skipnr)
{
unsigned int ret = stack_trace_save(store, size, skipnr);
barrier(); // Prevent tail call optimization.
return ret;
}
#else
#define drgn_test_stack_trace_save stack_trace_save
#endif
#endif
const int drgn_test_have_stackdepot = IS_ENABLED(CONFIG_STACKDEPOT);
#ifdef CONFIG_STACKDEPOT
depot_stack_handle_t drgn_test_stack_handle;
#endif
// Completion indicating that the kthread has set up its stack frames and is
// ready to be parked.
static DECLARE_COMPLETION(drgn_test_kthread_ready);
struct pt_regs drgn_test_kthread_pt_regs;
static inline void drgn_test_get_pt_regs(struct pt_regs *regs)
{
#if defined(__aarch64__)
// Copied from crash_setup_regs() in arch/arm64/include/asm/kexec.h as
// of Linux v6.1.
u64 tmp1, tmp2;
__asm__ __volatile__ (
"stp x0, x1, [%2, #16 * 0]\n"
"stp x2, x3, [%2, #16 * 1]\n"
"stp x4, x5, [%2, #16 * 2]\n"
"stp x6, x7, [%2, #16 * 3]\n"
"stp x8, x9, [%2, #16 * 4]\n"
"stp x10, x11, [%2, #16 * 5]\n"
"stp x12, x13, [%2, #16 * 6]\n"
"stp x14, x15, [%2, #16 * 7]\n"
"stp x16, x17, [%2, #16 * 8]\n"
"stp x18, x19, [%2, #16 * 9]\n"
"stp x20, x21, [%2, #16 * 10]\n"
"stp x22, x23, [%2, #16 * 11]\n"
"stp x24, x25, [%2, #16 * 12]\n"
"stp x26, x27, [%2, #16 * 13]\n"
"stp x28, x29, [%2, #16 * 14]\n"
"mov %0, sp\n"
"stp x30, %0, [%2, #16 * 15]\n"
"/* faked current PSTATE */\n"
"mrs %0, CurrentEL\n"
"mrs %1, SPSEL\n"
"orr %0, %0, %1\n"
"mrs %1, DAIF\n"
"orr %0, %0, %1\n"
"mrs %1, NZCV\n"
"orr %0, %0, %1\n"
/* pc */
"adr %1, 1f\n"
"1:\n"
"stp %1, %0, [%2, #16 * 16]\n"
: "=&r" (tmp1), "=&r" (tmp2)
: "r" (regs)
: "memory"
);
#elif defined(__arm__)
// Copied from crash_setup_regs() in arch/arm/include/asm/kexec.h as of
// Linux v6.11.
__asm__ __volatile__ (
"stmia %[regs_base], {r0-r12}\n\t"
"mov %[_ARM_sp], sp\n\t"
"str lr, %[_ARM_lr]\n\t"
"adr %[_ARM_pc], 1f\n\t"
"mrs %[_ARM_cpsr], cpsr\n\t"
"1:"
: [_ARM_pc] "=r" (regs->ARM_pc),
[_ARM_cpsr] "=r" (regs->ARM_cpsr),
[_ARM_sp] "=r" (regs->ARM_sp),
[_ARM_lr] "=o" (regs->ARM_lr)
: [regs_base] "r" (®s->ARM_r0)
: "memory"
);
#elif defined(__powerpc64__)
unsigned long link;
unsigned long ccr;
asm volatile("std 0,%0" : "=m"(regs->gpr[0]));
asm volatile("std 1,%0" : "=m"(regs->gpr[1]));
asm volatile("std 2,%0" : "=m"(regs->gpr[2]));
asm volatile("std 3,%0" : "=m"(regs->gpr[3]));
asm volatile("std 4,%0" : "=m"(regs->gpr[4]));
asm volatile("std 5,%0" : "=m"(regs->gpr[5]));
asm volatile("std 6,%0" : "=m"(regs->gpr[6]));
asm volatile("std 7,%0" : "=m"(regs->gpr[7]));
asm volatile("std 8,%0" : "=m"(regs->gpr[8]));
asm volatile("std 9,%0" : "=m"(regs->gpr[9]));
asm volatile("std 10,%0" : "=m"(regs->gpr[10]));
asm volatile("std 11,%0" : "=m"(regs->gpr[11]));
asm volatile("std 12,%0" : "=m"(regs->gpr[12]));
asm volatile("std 13,%0" : "=m"(regs->gpr[13]));
asm volatile("std 14,%0" : "=m"(regs->gpr[14]));
asm volatile("std 15,%0" : "=m"(regs->gpr[15]));
asm volatile("std 16,%0" : "=m"(regs->gpr[16]));
asm volatile("std 17,%0" : "=m"(regs->gpr[17]));
asm volatile("std 18,%0" : "=m"(regs->gpr[18]));
asm volatile("std 19,%0" : "=m"(regs->gpr[19]));
asm volatile("std 20,%0" : "=m"(regs->gpr[20]));
asm volatile("std 21,%0" : "=m"(regs->gpr[21]));
asm volatile("std 22,%0" : "=m"(regs->gpr[22]));
asm volatile("std 23,%0" : "=m"(regs->gpr[23]));
asm volatile("std 24,%0" : "=m"(regs->gpr[24]));
asm volatile("std 25,%0" : "=m"(regs->gpr[25]));
asm volatile("std 26,%0" : "=m"(regs->gpr[26]));
asm volatile("std 27,%0" : "=m"(regs->gpr[27]));
asm volatile("std 28,%0" : "=m"(regs->gpr[28]));
asm volatile("std 29,%0" : "=m"(regs->gpr[29]));
asm volatile("std 30,%0" : "=m"(regs->gpr[30]));
asm volatile("std 31,%0" : "=m"(regs->gpr[31]));
asm volatile("mflr %0" : "=r"(link));
asm volatile("std %1,%0" : "=m"(regs->link) : "r"(link));
asm volatile("mfcr %0" : "=r"(ccr));
asm volatile("std %1,%0" : "=m"(regs->ccr) : "r"(ccr));
regs->nip = _THIS_IP_;
#elif defined(__s390x__)
regs->psw.mask = __extract_psw();
regs->psw.addr = _THIS_IP_;
asm volatile("stmg 0,15,%0\n" : "=S" (regs->gprs) : : "memory");
#elif defined(__x86_64__)
// Copied from crash_setup_regs() in arch/x86/include/asm/kexec.h as of
// Linux v6.1.
asm volatile("movq %%rbx,%0" : "=m"(regs->bx));
asm volatile("movq %%rcx,%0" : "=m"(regs->cx));
asm volatile("movq %%rdx,%0" : "=m"(regs->dx));
asm volatile("movq %%rsi,%0" : "=m"(regs->si));
asm volatile("movq %%rdi,%0" : "=m"(regs->di));
asm volatile("movq %%rbp,%0" : "=m"(regs->bp));
asm volatile("movq %%rax,%0" : "=m"(regs->ax));
asm volatile("movq %%rsp,%0" : "=m"(regs->sp));
asm volatile("movq %%r8,%0" : "=m"(regs->r8));
asm volatile("movq %%r9,%0" : "=m"(regs->r9));
asm volatile("movq %%r10,%0" : "=m"(regs->r10));
asm volatile("movq %%r11,%0" : "=m"(regs->r11));
asm volatile("movq %%r12,%0" : "=m"(regs->r12));
asm volatile("movq %%r13,%0" : "=m"(regs->r13));
asm volatile("movq %%r14,%0" : "=m"(regs->r14));
asm volatile("movq %%r15,%0" : "=m"(regs->r15));
asm volatile("movl %%ss, %%eax;" :"=a"(regs->ss));
asm volatile("movl %%cs, %%eax;" :"=a"(regs->cs));
asm volatile("pushfq; popq %0" :"=m"(regs->flags));
regs->ip = _THIS_IP_;
#endif
}
__attribute__((__noipa__))
static void drgn_test_kthread_fn3(void)
{
// Create some local variables for the test cases to use. Use volatile
// to prevent them from being optimized out.
volatile int a, b, c;
volatile struct drgn_test_small_slab_object *slab_object;
a = 1;
b = 2;
c = 3;
slab_object = drgn_test_small_slab_objects[0];
// Force slab_object onto the stack.
__asm__ __volatile__ ("" : : "r" (&slab_object) : "memory");
#ifdef CONFIG_STACKTRACE
drgn_test_num_stack_entries =
drgn_test_stack_trace_save(drgn_test_stack_entries,
ARRAY_SIZE(drgn_test_stack_entries),
0);
#endif
#ifdef CONFIG_STACKDEPOT
stack_depot_init();
drgn_test_stack_handle = stack_depot_save(drgn_test_stack_entries,
drgn_test_num_stack_entries,
GFP_KERNEL);
#endif
complete(&drgn_test_kthread_ready);
for (;;) {
set_current_state(TASK_INTERRUPTIBLE);
if (kthread_should_stop()) {
__set_current_state(TASK_RUNNING);
break;
}
if (kthread_should_park()) {
__set_current_state(TASK_RUNNING);
drgn_test_get_pt_regs(&drgn_test_kthread_pt_regs);
kthread_parkme();
continue;
}
schedule();
__set_current_state(TASK_RUNNING);
}
// Make sure slab_object stays on the stack.
__asm__ __volatile__ ("" : : "r" (&slab_object) : "memory");
}
__attribute__((__noipa__))
static void drgn_test_kthread_fn2(void)
{
drgn_test_kthread_fn3();
barrier(); // Prevent tail call.
}
__attribute__((__noipa__))
static noinline int drgn_test_kthread_fn(void *arg)
{
drgn_test_kthread_fn2();
return 0;
}
static void drgn_test_stack_trace_exit(void)
{
if (drgn_test_kthread) {
kthread_stop(drgn_test_kthread);
drgn_test_kthread = NULL;
}
}
static int drgn_test_stack_trace_init(void)
{
drgn_test_kthread = kthread_create(drgn_test_kthread_fn,
(void *)0xb0ba000,
"drgn_test_kthread");
if (!drgn_test_kthread)
return -1;
drgn_test_kthread_info = task_thread_info(drgn_test_kthread);
wake_up_process(drgn_test_kthread);
wait_for_completion(&drgn_test_kthread_ready);
return kthread_park(drgn_test_kthread);
}
// radixtree
RADIX_TREE(drgn_test_radix_tree_empty, GFP_KERNEL);
RADIX_TREE(drgn_test_radix_tree_one, GFP_KERNEL);
RADIX_TREE(drgn_test_radix_tree_one_at_zero, GFP_KERNEL);
RADIX_TREE(drgn_test_radix_tree_sparse, GFP_KERNEL);
#ifdef CONFIG_RADIX_TREE_MULTIORDER
RADIX_TREE(drgn_test_radix_tree_multi_order, GFP_KERNEL);
#endif
static int drgn_test_radix_tree_init(void)
{
int ret;
ret = radix_tree_insert(&drgn_test_radix_tree_one, 666,
(void *)0xdeadb00);
if (ret)
return ret;
ret = radix_tree_insert(&drgn_test_radix_tree_one_at_zero, 0,
(void *)0x1234);
if (ret)
return ret;
ret = radix_tree_insert(&drgn_test_radix_tree_sparse, 1,
(void *)0x1234);
if (ret)
return ret;
ret = radix_tree_insert(&drgn_test_radix_tree_sparse, 0x80808080,
(void *)0x5678);
if (ret)
return ret;
ret = radix_tree_insert(&drgn_test_radix_tree_sparse, 0xffffffff,
(void *)0x9abc);
if (ret)
return ret;
#ifdef CONFIG_RADIX_TREE_MULTIORDER
ret = __radix_tree_insert(&drgn_test_radix_tree_multi_order, 0x80808000,
9, (void *)0x1234);
if (ret)
return ret;
#endif
return 0;
}
static void drgn_test_radix_tree_destroy(struct radix_tree_root *root)
{
struct radix_tree_iter iter;
void __rcu **slot;
radix_tree_for_each_slot(slot, root, &iter, 0)
radix_tree_delete(root, iter.index);
}
static void drgn_test_radix_tree_exit(void)
{
drgn_test_radix_tree_destroy(&drgn_test_radix_tree_one);
drgn_test_radix_tree_destroy(&drgn_test_radix_tree_one_at_zero);
drgn_test_radix_tree_destroy(&drgn_test_radix_tree_sparse);
#ifdef CONFIG_RADIX_TREE_MULTIORDER
drgn_test_radix_tree_destroy(&drgn_test_radix_tree_multi_order);
#endif
}
// xarray
const int drgn_test_have_xarray = HAVE_XARRAY;
#if HAVE_XARRAY
DEFINE_XARRAY(drgn_test_xarray_empty);
DEFINE_XARRAY(drgn_test_xarray_one);
DEFINE_XARRAY(drgn_test_xarray_one_at_zero);
DEFINE_XARRAY(drgn_test_xarray_sparse);
DEFINE_XARRAY(drgn_test_xarray_multi_index);
DEFINE_XARRAY(drgn_test_xarray_zero_entry);
DEFINE_XARRAY(drgn_test_xarray_zero_entry_at_zero);
DEFINE_XARRAY(drgn_test_xarray_value);
DEFINE_XARRAY(drgn_test_xarray_pointers);
void *drgn_test_xa_zero_entry;
struct drgn_test_xarray_entry {
int value;
};
struct drgn_test_xarray_entry drgn_test_xarray_entries[4];
static int drgn_test_xa_store_order(struct xarray *xa, unsigned long index,
unsigned order, void *entry, gfp_t gfp)
{
XA_STATE_ORDER(xas, xa, index, order);
do {
xas_lock(&xas);
xas_store(&xas, entry);
xas_unlock(&xas);
} while (xas_nomem(&xas, gfp));
return xas_error(&xas);
}
#endif
static int drgn_test_xarray_init(void)
{
#if HAVE_XARRAY
void *entry;
int ret;
size_t i;
drgn_test_xa_zero_entry = XA_ZERO_ENTRY;
entry = xa_store(&drgn_test_xarray_one, 666, (void *)0xdeadb00,
GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
entry = xa_store(&drgn_test_xarray_one_at_zero, 0, (void *)0x1234,
GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
entry = xa_store(&drgn_test_xarray_sparse, 1, (void *)0x1234,
GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
entry = xa_store(&drgn_test_xarray_sparse, 0x80808080, (void *)0x5678,
GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
entry = xa_store(&drgn_test_xarray_sparse, 0xffffffffUL, (void *)0x9abc,
GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
ret = drgn_test_xa_store_order(&drgn_test_xarray_multi_index,
0x80808000, 9, (void *)0x1234,
GFP_KERNEL);
if (ret)
return ret;
ret = xa_reserve(&drgn_test_xarray_zero_entry, 666, GFP_KERNEL);
if (ret)
return ret;
ret = xa_reserve(&drgn_test_xarray_zero_entry_at_zero, 0, GFP_KERNEL);
if (ret)
return ret;
entry = xa_store(&drgn_test_xarray_value, 0, xa_mk_value(1337),
GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
for (i = 0; i < ARRAY_SIZE(drgn_test_xarray_entries); i++) {
drgn_test_xarray_entries[i].value = i;
entry = xa_store(&drgn_test_xarray_pointers, i,
&drgn_test_xarray_entries[i], GFP_KERNEL);
if (xa_is_err(entry))
return xa_err(entry);
}
#endif
return 0;
}
static void drgn_test_xarray_exit(void)
{
#if HAVE_XARRAY
xa_destroy(&drgn_test_xarray_one);
xa_destroy(&drgn_test_xarray_one_at_zero);
xa_destroy(&drgn_test_xarray_sparse);
xa_destroy(&drgn_test_xarray_multi_index);
xa_destroy(&drgn_test_xarray_zero_entry);
xa_destroy(&drgn_test_xarray_zero_entry_at_zero);
xa_destroy(&drgn_test_xarray_value);
#endif
}
// idr
DEFINE_IDR(drgn_test_idr_empty);
DEFINE_IDR(drgn_test_idr_one);
DEFINE_IDR(drgn_test_idr_one_at_zero);
DEFINE_IDR(drgn_test_idr_sparse);
static int drgn_test_idr_init(void)
{
int ret;
ret = idr_alloc(&drgn_test_idr_one, (void *)0xdeadb00, 66, 67,
GFP_KERNEL);
if (ret < 0)
return ret;
ret = idr_alloc(&drgn_test_idr_one_at_zero, (void *)0x1234, 0, 1,
GFP_KERNEL);
if (ret < 0)
return ret;
ret = idr_alloc(&drgn_test_idr_sparse, (void *)0x1234, 1, 2,
GFP_KERNEL);
if (ret < 0)
return ret;
ret = idr_alloc(&drgn_test_idr_sparse, (void *)0x5678, 0x80, 0x81,
GFP_KERNEL);
if (ret < 0)
return ret;
ret = idr_alloc(&drgn_test_idr_sparse, (void *)0x9abc, 0xee, 0xef,
GFP_KERNEL);
if (ret < 0)
return ret;
return 0;
}
static void drgn_test_idr_exit(void)
{
idr_destroy(&drgn_test_idr_one);
idr_destroy(&drgn_test_idr_one_at_zero);
idr_destroy(&drgn_test_idr_sparse);
}
// wait-queue
static struct task_struct *drgn_test_waitq_kthread;
static wait_queue_head_t drgn_test_waitq;
static wait_queue_head_t drgn_test_empty_waitq;
struct drgn_test_waitq_container_struct {
int x;
wait_queue_head_t waitq;
} drgn_test_waitq_container;
static int drgn_test_waitq_kthread_fn(void *arg)
{
wait_event_interruptible(drgn_test_waitq, kthread_should_stop());
return 0;
}
static int drgn_test_waitq_init(void)
{
init_waitqueue_head(&drgn_test_waitq);
init_waitqueue_head(&drgn_test_empty_waitq);
init_waitqueue_head(&drgn_test_waitq_container.waitq);
drgn_test_waitq_kthread = kthread_create(drgn_test_waitq_kthread_fn,
NULL,
"drgn_test_waitq_kthread");
if (!drgn_test_waitq_kthread)
return -1;
wake_up_process(drgn_test_waitq_kthread);
return 0;
}
static void drgn_test_waitq_exit(void)
{
if (drgn_test_waitq_kthread) {
kthread_stop(drgn_test_waitq_kthread);
drgn_test_waitq_kthread = NULL;
}
}
// Dummy function symbol.
int drgn_test_function(int x); // Silence -Wmissing-prototypes.
int drgn_test_function(int x)
{
return x + 1;
}
char drgn_test_data[] = "abc";
const char drgn_test_rodata[] = "def";
// kmodify
#ifdef __x86_64__
enum drgn_kmodify_enum {
DRGN_KMODIFY_ONE = 1,
DRGN_KMODIFY_TWO,
DRGN_KMODIFY_THREE,
};
struct drgn_kmodify_test_struct {
void *v;
int *i;
};
struct drgn_kmodify_test_struct *drgn_kmodify_test_ptr =
&(struct drgn_kmodify_test_struct){};
char drgn_kmodify_test_memory[16];
int drgn_kmodify_test_int;
int *drgn_kmodify_test_int_ptr;
unsigned long drgn_kmodify_test_bitmap[2];
module_param_array_named(kmodify_bitmap, drgn_kmodify_test_bitmap, ulong, NULL,
0600);
struct {
unsigned int expect0_1 : 8;
unsigned int byte_aligned : 8;
unsigned int expect1_1 : 1;
unsigned int bit : 1;
unsigned int expect1_2 : 1;
unsigned int expect0_2 : 1;
unsigned int two_bits : 2;
unsigned int unaligned : 8;
} drgn_kmodify_test_bit_field = {
.expect1_1 = 1,
.expect1_2 = 1,
};
#define DEFINE_KMODIFY_TEST_RETURN(name, return_type, return_value) \
int drgn_kmodify_test_##name##_called = 0; \
return_type drgn_kmodify_test_##name(void); \
return_type drgn_kmodify_test_##name(void) \
{ \
drgn_kmodify_test_##name##_called++; \
return (return_value); \
}
#define DEFINE_KMODIFY_TEST_ARGS(name, parameters, condition) \
int drgn_kmodify_test_##name##_called = 0; \
void drgn_kmodify_test_##name parameters; \
void drgn_kmodify_test_##name parameters \
{ \
if (condition) \
drgn_kmodify_test_##name##_called++; \
}
DEFINE_KMODIFY_TEST_ARGS(void_return, (void), 1)
DEFINE_KMODIFY_TEST_RETURN(signed_char_return, signed char, -66)
DEFINE_KMODIFY_TEST_RETURN(unsigned_char_return, unsigned char, 200)
DEFINE_KMODIFY_TEST_RETURN(short_return, short, -666)
DEFINE_KMODIFY_TEST_RETURN(unsigned_short_return, unsigned short, 7777)
DEFINE_KMODIFY_TEST_RETURN(int_return, int, -12345)
DEFINE_KMODIFY_TEST_RETURN(unsigned_int_return, unsigned int, 54321U)
DEFINE_KMODIFY_TEST_RETURN(long_return, long, -2468013579L)
DEFINE_KMODIFY_TEST_RETURN(unsigned_long_return, unsigned long, 4000000000UL)
DEFINE_KMODIFY_TEST_RETURN(long_long_return, long long, -9080706050403020100LL)
DEFINE_KMODIFY_TEST_RETURN(unsigned_long_long_return, unsigned long long,
12345678909876543210ULL)
DEFINE_KMODIFY_TEST_RETURN(pointer_return, struct drgn_kmodify_test_struct *,
drgn_kmodify_test_ptr)
DEFINE_KMODIFY_TEST_RETURN(enum_return, enum drgn_kmodify_enum,
DRGN_KMODIFY_TWO)
DEFINE_KMODIFY_TEST_ARGS(
signed_args,
(signed char c, short s, int i, long l, long long ll),
(c == -66 && s == -666 && i == -12345 && l == -2468013579L && ll == -9080706050403020100LL)
)
DEFINE_KMODIFY_TEST_ARGS(
unsigned_args,
(unsigned char c, unsigned short s, unsigned int i, unsigned long l, unsigned long long ll),
(c == 200 && s == 7777 && i == 54321 && l == 4000000000UL && ll == 12345678909876543210ULL)
)
DEFINE_KMODIFY_TEST_ARGS(
many_args,
(char c,
signed char sc, short ss, int si, long sl, long long sll,
unsigned char uc, unsigned short us, unsigned int ui, unsigned long ul, unsigned long long ull),
(c == 48
&& sc == -66 && ss == -666 && si == -12345 && sl == -2468013579L && sll == -9080706050403020100LL
&& uc == 200 && us == 7777 && ui == 54321 && ul == 4000000000UL && ull == 12345678909876543210ULL)
)
DEFINE_KMODIFY_TEST_ARGS(
enum_args,
(enum drgn_kmodify_enum a1, enum drgn_kmodify_enum *a2),
({
int match = a1 == DRGN_KMODIFY_ONE && *a2 == DRGN_KMODIFY_TWO;
*a2 = DRGN_KMODIFY_THREE;
match;
})
)
DEFINE_KMODIFY_TEST_ARGS(
pointer_args,
(struct drgn_kmodify_test_struct *ptr),
(ptr == drgn_kmodify_test_ptr)
)
char *drgn_kmodify_test_char_str = "Hello";
signed char *drgn_kmodify_test_signed_char_str = ", ";
unsigned char *drgn_kmodify_test_unsigned_char_str = "world";
const char *drgn_kmodify_test_const_char_str = "!";
DEFINE_KMODIFY_TEST_ARGS(
string_args,
(char *c, signed char *sc, unsigned char *uc, const char *cc),
(strcmp(c, drgn_kmodify_test_char_str) == 0 &&
strcmp(sc, drgn_kmodify_test_signed_char_str) == 0 &&
strcmp(uc, drgn_kmodify_test_unsigned_char_str) == 0 &&
strcmp(cc, drgn_kmodify_test_const_char_str) == 0)
)
DEFINE_KMODIFY_TEST_ARGS(
integer_out_params,
(signed char *c, short *s, int *i, long *l, long long *ll),
({
int match = *c == -66 && *s == -666 && *i == -12345 && *l == -2468013579L && *ll == -9080706050403020100LL;
*c = 33;
*s = 333;
*i = 23456;
*l = 2222222222L;
*ll = 9090909090909090909LL;
match;
})
)
DEFINE_KMODIFY_TEST_ARGS(
array_out_params,
(long arr[3]),
({
int match = arr[0] == 1 && arr[1] == 2 && arr[2] == 3;
arr[0] = 2;
arr[1] = 3;
arr[2] = 5;
match;
})
)
DEFINE_KMODIFY_TEST_ARGS(
many_out_params,
(char *c,
signed char *sc, short *ss, int *si, long *sl, long long *sll,
unsigned char *uc, unsigned short *us, unsigned int *ui, unsigned long *ul, unsigned long long *ull),
({
int match = (*c == 48
&& *sc == -66 && *ss == -666 && *si == -12345 && *sl == -2468013579L && *sll == -9080706050403020100LL
&& *uc == 200 && *us == 7777 && *ui == 54321 && *ul == 4000000000UL && *ull == 12345678909876543210ULL);
*c /= 3;
*sc /= 3;
*ss /= 3;
*si /= 3;
*sl /= 3;
*sll /= 3;
*uc /= 3;
*us /= 3;
*ui /= 3;
*ul /= 3;
*ull /= 3;
match;
})
)
#endif
#ifdef CONFIG_SYSFS
// Crash from an NMI + IRQ handler on architectures where drgn supports
// unwinding through them.
#ifdef __x86_64__
#define DRGN_TEST_NMI_CRASH
#elif defined(__aarch64__)
#define DRGN_TEST_IRQ_CRASH
#endif
// NMI test depends on IRQ
#ifdef DRGN_TEST_NMI_CRASH
#define DRGN_TEST_IRQ_CRASH
#endif
static __noreturn noinline_for_stack void drgn_test_crash_func(void)
{
panic("drgn_test\n");
}
#ifdef DRGN_TEST_NMI_CRASH
static bool drgn_panic = false;
static noinline_for_stack int drgn_test_nmi_handler(unsigned int cmd, struct pt_regs *regs)
{
if (drgn_panic) {
drgn_test_crash_func();
return NMI_HANDLED; /* lol */
}
return NMI_DONE;
}
static noinline_for_stack void drgn_test_crash_irq_work_fn(struct irq_work *work)
{
drgn_panic = true;
apic->send_IPI_mask(cpumask_of(smp_processor_id()), NMI_VECTOR);
}
#elif defined(DRGN_TEST_IRQ_CRASH)
static noinline_for_stack void drgn_test_crash_irq_work_fn(struct irq_work *work)
{
drgn_test_crash_func();
}
#endif
#ifdef DRGN_TEST_IRQ_CRASH
static DEFINE_IRQ_WORK(drgn_test_crash_irq_work, drgn_test_crash_irq_work_fn);
#endif
static ssize_t drgn_test_crash_store(struct kobject *kobj,
struct kobj_attribute *attr,
const char *buf, size_t count)
{
int ret, val;
ret = kstrtoint(buf, 0, &val);
if (ret < 0)
return ret;
if (val != 1)
return -EINVAL;
#ifdef DRGN_TEST_IRQ_CRASH
preempt_disable();
irq_work_queue(&drgn_test_crash_irq_work);
// Spin until we get interrupted and crash.
while (1);
#else
drgn_test_crash_func();
#endif
}
static int drgn_test_crash_init(void)
{
#ifdef DRGN_TEST_NMI_CRASH
return register_nmi_handler(NMI_LOCAL, drgn_test_nmi_handler,
0, "drgn_panic");
#else
return 0;
#endif
}
static struct kobj_attribute drgn_test_crash_attr =
__ATTR(crash, 0200, NULL, drgn_test_crash_store);
static ssize_t drgn_test_boottime_seconds_show(struct kobject *kobj,
struct kobj_attribute *attr,
char *buf)
{
return sprintf(buf, "%lld\n", ktime_get_boottime_seconds());
}
static struct kobj_attribute drgn_test_boottime_seconds_attr =
__ATTR(boottime_seconds, 0444, drgn_test_boottime_seconds_show, NULL);
static ssize_t drgn_test_coarse_boottime_ns_show(struct kobject *kobj,
struct kobj_attribute *attr,
char *buf)
{
return sprintf(buf, "%llu\n", ktime_get_coarse_boottime_ns());
}
static struct kobj_attribute drgn_test_coarse_boottime_ns_attr =
__ATTR(coarse_boottime_ns, 0444, drgn_test_coarse_boottime_ns_show,
NULL);
static ssize_t drgn_test_clocktai_seconds_show(struct kobject *kobj,
struct kobj_attribute *attr,
char *buf)
{
return sprintf(buf, "%lld\n", ktime_get_clocktai_seconds());
}
static struct kobj_attribute drgn_test_clocktai_seconds_attr =
__ATTR(clocktai_seconds, 0444, drgn_test_clocktai_seconds_show, NULL);
static ssize_t drgn_test_coarse_clocktai_ns_show(struct kobject *kobj,
struct kobj_attribute *attr,
char *buf)
{
return sprintf(buf, "%llu\n", ktime_get_coarse_clocktai_ns());
}
static struct kobj_attribute drgn_test_coarse_clocktai_ns_attr =
__ATTR(coarse_clocktai_ns, 0444, drgn_test_coarse_clocktai_ns_show,
NULL);
static struct attribute_group drgn_test_attr_group = {
.attrs = (struct attribute *[]){
&drgn_test_crash_attr.attr,
&drgn_test_boottime_seconds_attr.attr,
&drgn_test_coarse_boottime_ns_attr.attr,
&drgn_test_clocktai_seconds_attr.attr,
&drgn_test_coarse_clocktai_ns_attr.attr,
NULL,
},
};
static struct kobject *drgn_test_kobj;
static int __init drgn_test_sysfs_init(void)
{
drgn_test_kobj = kobject_create_and_add("drgn_test", kernel_kobj);
if (!drgn_test_kobj)
return -ENOMEM;
return sysfs_create_group(drgn_test_kobj, &drgn_test_attr_group);
}
static void drgn_test_sysfs_exit(void)
{
kobject_put(drgn_test_kobj);
}
#else
static inline int drgn_test_sysfs_init(void) { return 0; }
static inline void drgn_test_sysfs_exit(void) {}
#endif
// types
union drgn_test_union {
u32 u;
s32 s;
};
union drgn_test_union drgn_test_union_var;
typedef union {
u64 u;
s64 s;
} drgn_test_anonymous_union;
drgn_test_anonymous_union drgn_test_anonymous_union_var;
static void drgn_test_exit(void)
{
drgn_test_sysfs_exit();
drgn_test_slab_exit();
drgn_test_percpu_exit();
drgn_test_maple_tree_exit();
drgn_test_mm_exit();
drgn_test_net_exit();
drgn_test_page_pool_exit();
drgn_test_stack_trace_exit();
drgn_test_radix_tree_exit();
drgn_test_xarray_exit();
drgn_test_waitq_exit();
drgn_test_idr_exit();
}
static int __init drgn_test_init(void)
{
int ret;
drgn_test_constants_init();
drgn_test_list_init();
drgn_test_llist_init();
drgn_test_plist_init();
ret = drgn_test_maple_tree_init();
if (ret)
goto out;
ret = drgn_test_mm_init();
if (ret)
goto out;
drgn_test_mmzone_init();
ret = drgn_test_net_init();
if (ret)
goto out;
ret = drgn_test_page_pool_init();
if (ret)
goto out;
ret = drgn_test_percpu_init();
if (ret)
goto out;
drgn_test_rbtree_init();
ret = drgn_test_slab_init();
if (ret)
goto out;
ret = drgn_test_stack_trace_init();
if (ret)
goto out;
ret = drgn_test_radix_tree_init();
if (ret)
goto out;
ret = drgn_test_xarray_init();
if (ret)
goto out;
ret = drgn_test_waitq_init();
if (ret)
goto out;
ret = drgn_test_idr_init();
if (ret)
goto out;
ret = drgn_test_sysfs_init();
if (ret)
goto out;
ret = drgn_test_crash_init();
out:
if (ret)
drgn_test_exit();
return ret;
}
module_init(drgn_test_init);
module_exit(drgn_test_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Module for testing drgn");
|