Skip to content

Commit

Permalink
kallsyms: Add more debug output for selftest
Browse files Browse the repository at this point in the history
While debugging a recent kallsyms_selftest failure[1], I needed more
details on what specifically was failing. This adds those details for
each failure state that is checked.

[1] https://lore.kernel.org/all/[email protected]/

Cc: Luis Chamberlain <[email protected]>
Cc: Yonghong Song <[email protected]>
Cc: "Erhard F." <[email protected]>
Cc: Zhen Lei <[email protected]>
Cc: kernel test robot <[email protected]>
Cc: Petr Mladek <[email protected]>
Cc: Nicholas Piggin <[email protected]>
Cc: Yang Li <[email protected]>
Signed-off-by: Kees Cook <[email protected]>
Signed-off-by: Luis Chamberlain <[email protected]>
  • Loading branch information
kees authored and mcgrof committed Aug 24, 2023
1 parent a684623 commit 33c24be
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions kernel/kallsyms_selftest.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ static int test_kallsyms_basic_function(void)
ret = lookup_symbol_name(addr, namebuf);
if (unlikely(ret)) {
namebuf[0] = 0;
pr_info("%d: lookup_symbol_name(%lx) failed\n", i, addr);
goto failed;
}

Expand Down Expand Up @@ -388,8 +389,11 @@ static int test_kallsyms_basic_function(void)
if (stat->addr != stat2->addr ||
stat->real_cnt != stat2->real_cnt ||
memcmp(stat->addrs, stat2->addrs,
stat->save_cnt * sizeof(stat->addrs[0])))
stat->save_cnt * sizeof(stat->addrs[0]))) {
pr_info("%s: mismatch between kallsyms_on_each_symbol() and kallsyms_on_each_match_symbol()\n",
namebuf);
goto failed;
}

/*
* The average of random increments is 128, that is, one of
Expand All @@ -400,15 +404,23 @@ static int test_kallsyms_basic_function(void)
}

/* Need to be found at least once */
if (!stat->real_cnt)
if (!stat->real_cnt) {
pr_info("%s: Never found\n", namebuf);
goto failed;
}

/*
* kallsyms_lookup_name() returns the address of the first
* symbol found and cannot be NULL.
*/
if (!lookup_addr || lookup_addr != stat->addrs[0])
if (!lookup_addr) {
pr_info("%s: NULL lookup_addr?!\n", namebuf);
goto failed;
}
if (lookup_addr != stat->addrs[0]) {
pr_info("%s: lookup_addr != stat->addrs[0]\n", namebuf);
goto failed;
}

/*
* If the addresses of all matching symbols are recorded, the
Expand All @@ -420,8 +432,10 @@ static int test_kallsyms_basic_function(void)
break;
}

if (j == stat->save_cnt)
if (j == stat->save_cnt) {
pr_info("%s: j == save_cnt?!\n", namebuf);
goto failed;
}
}
}

Expand Down

0 comments on commit 33c24be

Please sign in to comment.