2b56a4b79b
Inject fault while probing kunit-example-test.ko, if kzalloc fails
in kunit_parse_glob_filter(), strcpy() or strncpy() to NULL will
cause below null-ptr-deref bug. So check NULL for kzalloc() and
return int instead of void for kunit_parse_glob_filter().
Unable to handle kernel paging request at virtual address dfff800000000000
KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
Mem abort info:
ESR = 0x0000000096000005
EC = 0x25: DABT (current EL), IL = 32 bits
SET = 0, FnV = 0
EA = 0, S1PTW = 0
FSC = 0x05: level 1 translation fault
Data abort info:
ISV = 0, ISS = 0x00000005, ISS2 = 0x00000000
CM = 0, WnR = 0, TnD = 0, TagAccess = 0
GCS = 0, Overlay = 0, DirtyBit = 0, Xs = 0
[dfff800000000000] address between user and kernel address ranges
Internal error: Oops: 0000000096000005 [#1] PREEMPT SMP
Modules linked in: kunit_example_test cfg80211 rfkill 8021q garp mrp stp llc ipv6 [last unloaded: kunit_example_test]
CPU: 4 PID: 6047 Comm: modprobe Tainted: G W N 6.5.0-next-20230829+ #141
Hardware name: linux,dummy-virt (DT)
pstate: 80000005 (Nzcv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
pc : strncpy+0x58/0xc0
lr : kunit_filter_suites+0x15c/0xa84
sp : ffff800082a17420
x29: ffff800082a17420 x28: 0000000000000000 x27: 0000000000000004
x26: 0000000000000000 x25: ffffa847e40a5320 x24: 0000000000000001
x23: 0000000000000000 x22: 0000000000000001 x21: dfff800000000000
x20: 000000000000002a x19: 0000000000000000 x18: 00000000750b3b54
x17: 0000000000000000 x16: 0000000000000000 x15: 0000000000000000
x14: 0000000000000000 x13: 34393178302f3039 x12: ffff7508fcea4ec1
x11: 1ffff508fcea4ec0 x10: ffff7508fcea4ec0 x9 : dfff800000000000
x8 : ffff6051b1a7f86a x7 : ffff800082a17270 x6 : 0000000000000002
x5 : 0000000000000098 x4 : ffff028d9817b250 x3 : 0000000000000000
x2 : 0000000000000000 x1 : ffffa847e40a5320 x0 : 0000000000000000
Call trace:
strncpy+0x58/0xc0
kunit_filter_suites+0x15c/0xa84
kunit_module_notify+0x1b0/0x3ac
blocking_notifier_call_chain+0xc4/0x128
do_init_module+0x250/0x594
load_module+0x37b0/0x44b4
init_module_from_file+0xd4/0x128
idempotent_init_module+0x2c8/0x524
__arm64_sys_finit_module+0xac/0x100
invoke_syscall+0x6c/0x258
el0_svc_common.constprop.0+0x160/0x22c
do_el0_svc+0x44/0x5c
el0_svc+0x38/0x78
el0t_64_sync_handler+0x13c/0x158
el0t_64_sync+0x190/0x194
Code: 5400028a d343fe63 12000a62 39400034 (38f56863)
---[ end trace 0000000000000000 ]---
Kernel panic - not syncing: Oops: Fatal exception
SMP: stopping secondary CPUs
Kernel Offset: 0x284761400000 from 0xffff800080000000
PHYS_OFFSET: 0xfffffd7380000000
CPU features: 0x88000203,3c020000,1000421b
Memory Limit: none
Rebooting in 1 seconds..
Fixes: a127b154a8
("kunit: tool: allow filtering test cases via glob")
Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
Reviewed-by: Rae Moar <rmoar@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
346 lines
8.7 KiB
C
346 lines
8.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/reboot.h>
|
|
#include <kunit/test.h>
|
|
#include <kunit/attributes.h>
|
|
#include <linux/glob.h>
|
|
#include <linux/moduleparam.h>
|
|
|
|
/*
|
|
* These symbols point to the .kunit_test_suites section and are defined in
|
|
* include/asm-generic/vmlinux.lds.h, and consequently must be extern.
|
|
*/
|
|
extern struct kunit_suite * const __kunit_suites_start[];
|
|
extern struct kunit_suite * const __kunit_suites_end[];
|
|
|
|
static char *action_param;
|
|
|
|
module_param_named(action, action_param, charp, 0400);
|
|
MODULE_PARM_DESC(action,
|
|
"Changes KUnit executor behavior, valid values are:\n"
|
|
"<none>: run the tests like normal\n"
|
|
"'list' to list test names instead of running them.\n"
|
|
"'list_attr' to list test names and attributes instead of running them.\n");
|
|
|
|
const char *kunit_action(void)
|
|
{
|
|
return action_param;
|
|
}
|
|
|
|
static char *filter_glob_param;
|
|
static char *filter_param;
|
|
static char *filter_action_param;
|
|
|
|
module_param_named(filter_glob, filter_glob_param, charp, 0400);
|
|
MODULE_PARM_DESC(filter_glob,
|
|
"Filter which KUnit test suites/tests run at boot-time, e.g. list* or list*.*del_test");
|
|
module_param_named(filter, filter_param, charp, 0400);
|
|
MODULE_PARM_DESC(filter,
|
|
"Filter which KUnit test suites/tests run at boot-time using attributes, e.g. speed>slow");
|
|
module_param_named(filter_action, filter_action_param, charp, 0400);
|
|
MODULE_PARM_DESC(filter_action,
|
|
"Changes behavior of filtered tests using attributes, valid values are:\n"
|
|
"<none>: do not run filtered tests as normal\n"
|
|
"'skip': skip all filtered tests instead so tests will appear in output\n");
|
|
|
|
const char *kunit_filter_glob(void)
|
|
{
|
|
return filter_glob_param;
|
|
}
|
|
|
|
char *kunit_filter(void)
|
|
{
|
|
return filter_param;
|
|
}
|
|
|
|
char *kunit_filter_action(void)
|
|
{
|
|
return filter_action_param;
|
|
}
|
|
|
|
/* glob_match() needs NULL terminated strings, so we need a copy of filter_glob_param. */
|
|
struct kunit_glob_filter {
|
|
char *suite_glob;
|
|
char *test_glob;
|
|
};
|
|
|
|
/* Split "suite_glob.test_glob" into two. Assumes filter_glob is not empty. */
|
|
static int kunit_parse_glob_filter(struct kunit_glob_filter *parsed,
|
|
const char *filter_glob)
|
|
{
|
|
const int len = strlen(filter_glob);
|
|
const char *period = strchr(filter_glob, '.');
|
|
|
|
if (!period) {
|
|
parsed->suite_glob = kzalloc(len + 1, GFP_KERNEL);
|
|
if (!parsed->suite_glob)
|
|
return -ENOMEM;
|
|
|
|
parsed->test_glob = NULL;
|
|
strcpy(parsed->suite_glob, filter_glob);
|
|
return 0;
|
|
}
|
|
|
|
parsed->suite_glob = kzalloc(period - filter_glob + 1, GFP_KERNEL);
|
|
if (!parsed->suite_glob)
|
|
return -ENOMEM;
|
|
|
|
parsed->test_glob = kzalloc(len - (period - filter_glob) + 1, GFP_KERNEL);
|
|
if (!parsed->test_glob) {
|
|
kfree(parsed->suite_glob);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
strncpy(parsed->suite_glob, filter_glob, period - filter_glob);
|
|
strncpy(parsed->test_glob, period + 1, len - (period - filter_glob));
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Create a copy of suite with only tests that match test_glob. */
|
|
static struct kunit_suite *
|
|
kunit_filter_glob_tests(const struct kunit_suite *const suite, const char *test_glob)
|
|
{
|
|
int n = 0;
|
|
struct kunit_case *filtered, *test_case;
|
|
struct kunit_suite *copy;
|
|
|
|
kunit_suite_for_each_test_case(suite, test_case) {
|
|
if (!test_glob || glob_match(test_glob, test_case->name))
|
|
++n;
|
|
}
|
|
|
|
if (n == 0)
|
|
return NULL;
|
|
|
|
copy = kmemdup(suite, sizeof(*copy), GFP_KERNEL);
|
|
if (!copy)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
filtered = kcalloc(n + 1, sizeof(*filtered), GFP_KERNEL);
|
|
if (!filtered) {
|
|
kfree(copy);
|
|
return ERR_PTR(-ENOMEM);
|
|
}
|
|
|
|
n = 0;
|
|
kunit_suite_for_each_test_case(suite, test_case) {
|
|
if (!test_glob || glob_match(test_glob, test_case->name))
|
|
filtered[n++] = *test_case;
|
|
}
|
|
|
|
copy->test_cases = filtered;
|
|
return copy;
|
|
}
|
|
|
|
void kunit_free_suite_set(struct kunit_suite_set suite_set)
|
|
{
|
|
struct kunit_suite * const *suites;
|
|
|
|
for (suites = suite_set.start; suites < suite_set.end; suites++)
|
|
kfree(*suites);
|
|
kfree(suite_set.start);
|
|
}
|
|
|
|
struct kunit_suite_set
|
|
kunit_filter_suites(const struct kunit_suite_set *suite_set,
|
|
const char *filter_glob,
|
|
char *filters,
|
|
char *filter_action,
|
|
int *err)
|
|
{
|
|
int i, j, k;
|
|
int filter_count = 0;
|
|
struct kunit_suite **copy, **copy_start, *filtered_suite, *new_filtered_suite;
|
|
struct kunit_suite_set filtered = {NULL, NULL};
|
|
struct kunit_glob_filter parsed_glob;
|
|
struct kunit_attr_filter *parsed_filters = NULL;
|
|
|
|
const size_t max = suite_set->end - suite_set->start;
|
|
|
|
copy = kmalloc_array(max, sizeof(*filtered.start), GFP_KERNEL);
|
|
if (!copy) { /* won't be able to run anything, return an empty set */
|
|
return filtered;
|
|
}
|
|
copy_start = copy;
|
|
|
|
if (filter_glob) {
|
|
*err = kunit_parse_glob_filter(&parsed_glob, filter_glob);
|
|
if (*err)
|
|
goto free_copy;
|
|
}
|
|
|
|
/* Parse attribute filters */
|
|
if (filters) {
|
|
filter_count = kunit_get_filter_count(filters);
|
|
parsed_filters = kcalloc(filter_count, sizeof(*parsed_filters), GFP_KERNEL);
|
|
if (!parsed_filters) {
|
|
kfree(copy);
|
|
return filtered;
|
|
}
|
|
for (j = 0; j < filter_count; j++)
|
|
parsed_filters[j] = kunit_next_attr_filter(&filters, err);
|
|
if (*err)
|
|
goto free_parsed_filters;
|
|
}
|
|
|
|
for (i = 0; &suite_set->start[i] != suite_set->end; i++) {
|
|
filtered_suite = suite_set->start[i];
|
|
if (filter_glob) {
|
|
if (!glob_match(parsed_glob.suite_glob, filtered_suite->name))
|
|
continue;
|
|
filtered_suite = kunit_filter_glob_tests(filtered_suite,
|
|
parsed_glob.test_glob);
|
|
if (IS_ERR(filtered_suite)) {
|
|
*err = PTR_ERR(filtered_suite);
|
|
goto free_parsed_filters;
|
|
}
|
|
}
|
|
if (filter_count > 0 && parsed_filters != NULL) {
|
|
for (k = 0; k < filter_count; k++) {
|
|
new_filtered_suite = kunit_filter_attr_tests(filtered_suite,
|
|
parsed_filters[k], filter_action, err);
|
|
|
|
/* Free previous copy of suite */
|
|
if (k > 0 || filter_glob) {
|
|
kfree(filtered_suite->test_cases);
|
|
kfree(filtered_suite);
|
|
}
|
|
|
|
filtered_suite = new_filtered_suite;
|
|
|
|
if (*err)
|
|
goto free_parsed_filters;
|
|
|
|
if (IS_ERR(filtered_suite)) {
|
|
*err = PTR_ERR(filtered_suite);
|
|
goto free_parsed_filters;
|
|
}
|
|
if (!filtered_suite)
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!filtered_suite)
|
|
continue;
|
|
|
|
*copy++ = filtered_suite;
|
|
}
|
|
filtered.start = copy_start;
|
|
filtered.end = copy;
|
|
|
|
free_parsed_filters:
|
|
if (filter_count)
|
|
kfree(parsed_filters);
|
|
|
|
free_parsed_glob:
|
|
if (filter_glob) {
|
|
kfree(parsed_glob.suite_glob);
|
|
kfree(parsed_glob.test_glob);
|
|
}
|
|
|
|
free_copy:
|
|
if (*err)
|
|
kfree(copy);
|
|
|
|
return filtered;
|
|
}
|
|
|
|
void kunit_exec_run_tests(struct kunit_suite_set *suite_set, bool builtin)
|
|
{
|
|
size_t num_suites = suite_set->end - suite_set->start;
|
|
|
|
if (builtin || num_suites) {
|
|
pr_info("KTAP version 1\n");
|
|
pr_info("1..%zu\n", num_suites);
|
|
}
|
|
|
|
__kunit_test_suites_init(suite_set->start, num_suites);
|
|
}
|
|
|
|
void kunit_exec_list_tests(struct kunit_suite_set *suite_set, bool include_attr)
|
|
{
|
|
struct kunit_suite * const *suites;
|
|
struct kunit_case *test_case;
|
|
|
|
/* Hack: print a ktap header so kunit.py can find the start of KUnit output. */
|
|
pr_info("KTAP version 1\n");
|
|
|
|
for (suites = suite_set->start; suites < suite_set->end; suites++) {
|
|
/* Print suite name and suite attributes */
|
|
pr_info("%s\n", (*suites)->name);
|
|
if (include_attr)
|
|
kunit_print_attr((void *)(*suites), false, 0);
|
|
|
|
/* Print test case name and attributes in suite */
|
|
kunit_suite_for_each_test_case((*suites), test_case) {
|
|
pr_info("%s.%s\n", (*suites)->name, test_case->name);
|
|
if (include_attr)
|
|
kunit_print_attr((void *)test_case, true, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
#if IS_BUILTIN(CONFIG_KUNIT)
|
|
|
|
static char *kunit_shutdown;
|
|
core_param(kunit_shutdown, kunit_shutdown, charp, 0644);
|
|
|
|
static void kunit_handle_shutdown(void)
|
|
{
|
|
if (!kunit_shutdown)
|
|
return;
|
|
|
|
if (!strcmp(kunit_shutdown, "poweroff"))
|
|
kernel_power_off();
|
|
else if (!strcmp(kunit_shutdown, "halt"))
|
|
kernel_halt();
|
|
else if (!strcmp(kunit_shutdown, "reboot"))
|
|
kernel_restart(NULL);
|
|
|
|
}
|
|
|
|
int kunit_run_all_tests(void)
|
|
{
|
|
struct kunit_suite_set suite_set = {
|
|
__kunit_suites_start, __kunit_suites_end,
|
|
};
|
|
int err = 0;
|
|
if (!kunit_enabled()) {
|
|
pr_info("kunit: disabled\n");
|
|
goto out;
|
|
}
|
|
|
|
if (filter_glob_param || filter_param) {
|
|
suite_set = kunit_filter_suites(&suite_set, filter_glob_param,
|
|
filter_param, filter_action_param, &err);
|
|
if (err) {
|
|
pr_err("kunit executor: error filtering suites: %d\n", err);
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
if (!action_param)
|
|
kunit_exec_run_tests(&suite_set, true);
|
|
else if (strcmp(action_param, "list") == 0)
|
|
kunit_exec_list_tests(&suite_set, false);
|
|
else if (strcmp(action_param, "list_attr") == 0)
|
|
kunit_exec_list_tests(&suite_set, true);
|
|
else
|
|
pr_err("kunit executor: unknown action '%s'\n", action_param);
|
|
|
|
if (filter_glob_param || filter_param) { /* a copy was made of each suite */
|
|
kunit_free_suite_set(suite_set);
|
|
}
|
|
|
|
out:
|
|
kunit_handle_shutdown();
|
|
return err;
|
|
}
|
|
|
|
#if IS_BUILTIN(CONFIG_KUNIT_TEST)
|
|
#include "executor_test.c"
|
|
#endif
|
|
|
|
#endif /* IS_BUILTIN(CONFIG_KUNIT) */
|