Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * builtin-test.c
4 *
5 * Builtin regression testing command: ever growing number of sanity tests
6 */
7#include <fcntl.h>
8#include <errno.h>
9#include <unistd.h>
10#include <string.h>
11#include <stdlib.h>
12#include <sys/types.h>
13#include <dirent.h>
14#include <sys/wait.h>
15#include <sys/stat.h>
16#include "builtin.h"
17#include "hist.h"
18#include "intlist.h"
19#include "tests.h"
20#include "debug.h"
21#include "color.h"
22#include <subcmd/parse-options.h>
23#include "string2.h"
24#include "symbol.h"
25#include "util/rlimit.h"
26#include <linux/kernel.h>
27#include <linux/string.h>
28#include <subcmd/exec-cmd.h>
29#include <linux/zalloc.h>
30
31static bool dont_fork;
32
33struct test_suite *__weak arch_tests[] = {
34 NULL,
35};
36
37static struct test_suite *generic_tests[] = {
38 &suite__vmlinux_matches_kallsyms,
39 &suite__openat_syscall_event,
40 &suite__openat_syscall_event_on_all_cpus,
41 &suite__basic_mmap,
42 &suite__mem,
43 &suite__parse_events,
44 &suite__expr,
45 &suite__PERF_RECORD,
46 &suite__pmu,
47 &suite__pmu_events,
48 &suite__dso_data,
49 &suite__dso_data_cache,
50 &suite__dso_data_reopen,
51 &suite__perf_evsel__roundtrip_name_test,
52 &suite__perf_evsel__tp_sched_test,
53 &suite__syscall_openat_tp_fields,
54 &suite__attr,
55 &suite__hists_link,
56 &suite__python_use,
57 &suite__bp_signal,
58 &suite__bp_signal_overflow,
59 &suite__bp_accounting,
60 &suite__wp,
61 &suite__task_exit,
62 &suite__sw_clock_freq,
63 &suite__code_reading,
64 &suite__sample_parsing,
65 &suite__keep_tracking,
66 &suite__parse_no_sample_id_all,
67 &suite__hists_filter,
68 &suite__mmap_thread_lookup,
69 &suite__thread_maps_share,
70 &suite__hists_output,
71 &suite__hists_cumulate,
72 &suite__switch_tracking,
73 &suite__fdarray__filter,
74 &suite__fdarray__add,
75 &suite__kmod_path__parse,
76 &suite__thread_map,
77 &suite__llvm,
78 &suite__session_topology,
79 &suite__bpf,
80 &suite__thread_map_synthesize,
81 &suite__thread_map_remove,
82 &suite__cpu_map_synthesize,
83 &suite__synthesize_stat_config,
84 &suite__synthesize_stat,
85 &suite__synthesize_stat_round,
86 &suite__event_update,
87 &suite__event_times,
88 &suite__backward_ring_buffer,
89 &suite__cpu_map_print,
90 &suite__cpu_map_merge,
91 &suite__sdt_event,
92 &suite__is_printable_array,
93 &suite__bitmap_print,
94 &suite__perf_hooks,
95 &suite__clang,
96 &suite__unit_number__scnprint,
97 &suite__mem2node,
98 &suite__time_utils,
99 &suite__jit_write_elf,
100 &suite__pfm,
101 &suite__api_io,
102 &suite__maps__merge_in,
103 &suite__demangle_java,
104 &suite__demangle_ocaml,
105 &suite__parse_metric,
106 &suite__pe_file_parsing,
107 &suite__expand_cgroup_events,
108 &suite__perf_time_to_tsc,
109 &suite__dlfilter,
110 &suite__sigtrap,
111 NULL,
112};
113
114static struct test_suite **tests[] = {
115 generic_tests,
116 arch_tests,
117};
118
119static int num_subtests(const struct test_suite *t)
120{
121 int num;
122
123 if (!t->test_cases)
124 return 0;
125
126 num = 0;
127 while (t->test_cases[num].name)
128 num++;
129
130 return num;
131}
132
133static bool has_subtests(const struct test_suite *t)
134{
135 return num_subtests(t) > 1;
136}
137
138static const char *skip_reason(const struct test_suite *t, int subtest)
139{
140 if (t->test_cases && subtest >= 0)
141 return t->test_cases[subtest].skip_reason;
142
143 return NULL;
144}
145
146static const char *test_description(const struct test_suite *t, int subtest)
147{
148 if (t->test_cases && subtest >= 0)
149 return t->test_cases[subtest].desc;
150
151 return t->desc;
152}
153
154static test_fnptr test_function(const struct test_suite *t, int subtest)
155{
156 if (subtest <= 0)
157 return t->test_cases[0].run_case;
158
159 return t->test_cases[subtest].run_case;
160}
161
162static bool perf_test__matches(const char *desc, int curr, int argc, const char *argv[])
163{
164 int i;
165
166 if (argc == 0)
167 return true;
168
169 for (i = 0; i < argc; ++i) {
170 char *end;
171 long nr = strtoul(argv[i], &end, 10);
172
173 if (*end == '\0') {
174 if (nr == curr + 1)
175 return true;
176 continue;
177 }
178
179 if (strcasestr(desc, argv[i]))
180 return true;
181 }
182
183 return false;
184}
185
186static int run_test(struct test_suite *test, int subtest)
187{
188 int status, err = -1, child = dont_fork ? 0 : fork();
189 char sbuf[STRERR_BUFSIZE];
190
191 if (child < 0) {
192 pr_err("failed to fork test: %s\n",
193 str_error_r(errno, sbuf, sizeof(sbuf)));
194 return -1;
195 }
196
197 if (!child) {
198 if (!dont_fork) {
199 pr_debug("test child forked, pid %d\n", getpid());
200
201 if (verbose <= 0) {
202 int nullfd = open("/dev/null", O_WRONLY);
203
204 if (nullfd >= 0) {
205 close(STDERR_FILENO);
206 close(STDOUT_FILENO);
207
208 dup2(nullfd, STDOUT_FILENO);
209 dup2(STDOUT_FILENO, STDERR_FILENO);
210 close(nullfd);
211 }
212 } else {
213 signal(SIGSEGV, sighandler_dump_stack);
214 signal(SIGFPE, sighandler_dump_stack);
215 }
216 }
217
218 err = test_function(test, subtest)(test, subtest);
219 if (!dont_fork)
220 exit(err);
221 }
222
223 if (!dont_fork) {
224 wait(&status);
225
226 if (WIFEXITED(status)) {
227 err = (signed char)WEXITSTATUS(status);
228 pr_debug("test child finished with %d\n", err);
229 } else if (WIFSIGNALED(status)) {
230 err = -1;
231 pr_debug("test child interrupted\n");
232 }
233 }
234
235 return err;
236}
237
238#define for_each_test(j, k, t) \
239 for (j = 0; j < ARRAY_SIZE(tests); j++) \
240 for (k = 0, t = tests[j][k]; tests[j][k]; k++, t = tests[j][k])
241
242static int test_and_print(struct test_suite *t, int subtest)
243{
244 int err;
245
246 pr_debug("\n--- start ---\n");
247 err = run_test(t, subtest);
248 pr_debug("---- end ----\n");
249
250 if (!has_subtests(t))
251 pr_debug("%s:", t->desc);
252 else
253 pr_debug("%s subtest %d:", t->desc, subtest + 1);
254
255 switch (err) {
256 case TEST_OK:
257 pr_info(" Ok\n");
258 break;
259 case TEST_SKIP: {
260 const char *reason = skip_reason(t, subtest);
261
262 if (reason)
263 color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip (%s)\n", reason);
264 else
265 color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip\n");
266 }
267 break;
268 case TEST_FAIL:
269 default:
270 color_fprintf(stderr, PERF_COLOR_RED, " FAILED!\n");
271 break;
272 }
273
274 return err;
275}
276
277static const char *shell_test__description(char *description, size_t size,
278 const char *path, const char *name)
279{
280 FILE *fp;
281 char filename[PATH_MAX];
282
283 path__join(filename, sizeof(filename), path, name);
284 fp = fopen(filename, "r");
285 if (!fp)
286 return NULL;
287
288 /* Skip shebang */
289 while (fgetc(fp) != '\n');
290
291 description = fgets(description, size, fp);
292 fclose(fp);
293
294 return description ? strim(description + 1) : NULL;
295}
296
297#define for_each_shell_test(entlist, nr, base, ent) \
298 for (int __i = 0; __i < nr && (ent = entlist[__i]); __i++) \
299 if (!is_directory(base, ent) && ent->d_name[0] != '.')
300
301static const char *shell_tests__dir(char *path, size_t size)
302{
303 const char *devel_dirs[] = { "./tools/perf/tests", "./tests", };
304 char *exec_path;
305 unsigned int i;
306
307 for (i = 0; i < ARRAY_SIZE(devel_dirs); ++i) {
308 struct stat st;
309 if (!lstat(devel_dirs[i], &st)) {
310 scnprintf(path, size, "%s/shell", devel_dirs[i]);
311 if (!lstat(devel_dirs[i], &st))
312 return path;
313 }
314 }
315
316 /* Then installed path. */
317 exec_path = get_argv_exec_path();
318 scnprintf(path, size, "%s/tests/shell", exec_path);
319 free(exec_path);
320 return path;
321}
322
323static int shell_tests__max_desc_width(void)
324{
325 struct dirent **entlist;
326 struct dirent *ent;
327 int n_dirs, e;
328 char path_dir[PATH_MAX];
329 const char *path = shell_tests__dir(path_dir, sizeof(path_dir));
330 int width = 0;
331
332 if (path == NULL)
333 return -1;
334
335 n_dirs = scandir(path, &entlist, NULL, alphasort);
336 if (n_dirs == -1)
337 return -1;
338
339 for_each_shell_test(entlist, n_dirs, path, ent) {
340 char bf[256];
341 const char *desc = shell_test__description(bf, sizeof(bf), path, ent->d_name);
342
343 if (desc) {
344 int len = strlen(desc);
345
346 if (width < len)
347 width = len;
348 }
349 }
350
351 for (e = 0; e < n_dirs; e++)
352 zfree(&entlist[e]);
353 free(entlist);
354 return width;
355}
356
357struct shell_test {
358 const char *dir;
359 const char *file;
360};
361
362static int shell_test__run(struct test_suite *test, int subdir __maybe_unused)
363{
364 int err;
365 char script[PATH_MAX];
366 struct shell_test *st = test->priv;
367
368 path__join(script, sizeof(script) - 3, st->dir, st->file);
369
370 if (verbose)
371 strncat(script, " -v", sizeof(script) - strlen(script) - 1);
372
373 err = system(script);
374 if (!err)
375 return TEST_OK;
376
377 return WEXITSTATUS(err) == 2 ? TEST_SKIP : TEST_FAIL;
378}
379
380static int run_shell_tests(int argc, const char *argv[], int i, int width,
381 struct intlist *skiplist)
382{
383 struct dirent **entlist;
384 struct dirent *ent;
385 int n_dirs, e;
386 char path_dir[PATH_MAX];
387 struct shell_test st = {
388 .dir = shell_tests__dir(path_dir, sizeof(path_dir)),
389 };
390
391 if (st.dir == NULL)
392 return -1;
393
394 n_dirs = scandir(st.dir, &entlist, NULL, alphasort);
395 if (n_dirs == -1) {
396 pr_err("failed to open shell test directory: %s\n",
397 st.dir);
398 return -1;
399 }
400
401 for_each_shell_test(entlist, n_dirs, st.dir, ent) {
402 int curr = i++;
403 char desc[256];
404 struct test_case test_cases[] = {
405 {
406 .desc = shell_test__description(desc,
407 sizeof(desc),
408 st.dir,
409 ent->d_name),
410 .run_case = shell_test__run,
411 },
412 { .name = NULL, }
413 };
414 struct test_suite test_suite = {
415 .desc = test_cases[0].desc,
416 .test_cases = test_cases,
417 .priv = &st,
418 };
419
420 if (!perf_test__matches(test_suite.desc, curr, argc, argv))
421 continue;
422
423 st.file = ent->d_name;
424 pr_info("%3d: %-*s:", i, width, test_suite.desc);
425
426 if (intlist__find(skiplist, i)) {
427 color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip (user override)\n");
428 continue;
429 }
430
431 test_and_print(&test_suite, 0);
432 }
433
434 for (e = 0; e < n_dirs; e++)
435 zfree(&entlist[e]);
436 free(entlist);
437 return 0;
438}
439
440static int __cmd_test(int argc, const char *argv[], struct intlist *skiplist)
441{
442 struct test_suite *t;
443 unsigned int j, k;
444 int i = 0;
445 int width = shell_tests__max_desc_width();
446
447 for_each_test(j, k, t) {
448 int len = strlen(test_description(t, -1));
449
450 if (width < len)
451 width = len;
452 }
453
454 for_each_test(j, k, t) {
455 int curr = i++;
456 int subi;
457
458 if (!perf_test__matches(test_description(t, -1), curr, argc, argv)) {
459 bool skip = true;
460 int subn;
461
462 subn = num_subtests(t);
463
464 for (subi = 0; subi < subn; subi++) {
465 if (perf_test__matches(test_description(t, subi),
466 curr, argc, argv))
467 skip = false;
468 }
469
470 if (skip)
471 continue;
472 }
473
474 pr_info("%3d: %-*s:", i, width, test_description(t, -1));
475
476 if (intlist__find(skiplist, i)) {
477 color_fprintf(stderr, PERF_COLOR_YELLOW, " Skip (user override)\n");
478 continue;
479 }
480
481 if (!has_subtests(t)) {
482 test_and_print(t, -1);
483 } else {
484 int subn = num_subtests(t);
485 /*
486 * minus 2 to align with normal testcases.
487 * For subtest we print additional '.x' in number.
488 * for example:
489 *
490 * 35: Test LLVM searching and compiling :
491 * 35.1: Basic BPF llvm compiling test : Ok
492 */
493 int subw = width > 2 ? width - 2 : width;
494
495 if (subn <= 0) {
496 color_fprintf(stderr, PERF_COLOR_YELLOW,
497 " Skip (not compiled in)\n");
498 continue;
499 }
500 pr_info("\n");
501
502 for (subi = 0; subi < subn; subi++) {
503 int len = strlen(test_description(t, subi));
504
505 if (subw < len)
506 subw = len;
507 }
508
509 for (subi = 0; subi < subn; subi++) {
510 if (!perf_test__matches(test_description(t, subi),
511 curr, argc, argv))
512 continue;
513
514 pr_info("%3d.%1d: %-*s:", i, subi + 1, subw,
515 test_description(t, subi));
516 test_and_print(t, subi);
517 }
518 }
519 }
520
521 return run_shell_tests(argc, argv, i, width, skiplist);
522}
523
524static int perf_test__list_shell(int argc, const char **argv, int i)
525{
526 struct dirent **entlist;
527 struct dirent *ent;
528 int n_dirs, e;
529 char path_dir[PATH_MAX];
530 const char *path = shell_tests__dir(path_dir, sizeof(path_dir));
531
532 if (path == NULL)
533 return -1;
534
535 n_dirs = scandir(path, &entlist, NULL, alphasort);
536 if (n_dirs == -1)
537 return -1;
538
539 for_each_shell_test(entlist, n_dirs, path, ent) {
540 int curr = i++;
541 char bf[256];
542 struct test_suite t = {
543 .desc = shell_test__description(bf, sizeof(bf), path, ent->d_name),
544 };
545
546 if (!perf_test__matches(t.desc, curr, argc, argv))
547 continue;
548
549 pr_info("%3d: %s\n", i, t.desc);
550
551 }
552
553 for (e = 0; e < n_dirs; e++)
554 zfree(&entlist[e]);
555 free(entlist);
556 return 0;
557}
558
559static int perf_test__list(int argc, const char **argv)
560{
561 unsigned int j, k;
562 struct test_suite *t;
563 int i = 0;
564
565 for_each_test(j, k, t) {
566 int curr = i++;
567
568 if (!perf_test__matches(test_description(t, -1), curr, argc, argv))
569 continue;
570
571 pr_info("%3d: %s\n", i, test_description(t, -1));
572
573 if (has_subtests(t)) {
574 int subn = num_subtests(t);
575 int subi;
576
577 for (subi = 0; subi < subn; subi++)
578 pr_info("%3d:%1d: %s\n", i, subi + 1,
579 test_description(t, subi));
580 }
581 }
582
583 perf_test__list_shell(argc, argv, i);
584
585 return 0;
586}
587
588int cmd_test(int argc, const char **argv)
589{
590 const char *test_usage[] = {
591 "perf test [<options>] [{list <test-name-fragment>|[<test-name-fragments>|<test-numbers>]}]",
592 NULL,
593 };
594 const char *skip = NULL;
595 const struct option test_options[] = {
596 OPT_STRING('s', "skip", &skip, "tests", "tests to skip"),
597 OPT_INCR('v', "verbose", &verbose,
598 "be more verbose (show symbol address, etc)"),
599 OPT_BOOLEAN('F', "dont-fork", &dont_fork,
600 "Do not fork for testcase"),
601 OPT_END()
602 };
603 const char * const test_subcommands[] = { "list", NULL };
604 struct intlist *skiplist = NULL;
605 int ret = hists__init();
606
607 if (ret < 0)
608 return ret;
609
610 /* Unbuffered output */
611 setvbuf(stdout, NULL, _IONBF, 0);
612
613 argc = parse_options_subcommand(argc, argv, test_options, test_subcommands, test_usage, 0);
614 if (argc >= 1 && !strcmp(argv[0], "list"))
615 return perf_test__list(argc - 1, argv + 1);
616
617 symbol_conf.priv_size = sizeof(int);
618 symbol_conf.sort_by_name = true;
619 symbol_conf.try_vmlinux_path = true;
620
621 if (symbol__init(NULL) < 0)
622 return -1;
623
624 if (skip != NULL)
625 skiplist = intlist__new(skip);
626 /*
627 * Tests that create BPF maps, for instance, need more than the 64K
628 * default:
629 */
630 rlimit__bump_memlock();
631
632 return __cmd_test(argc, argv, skiplist);
633}