Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2 | #include "debug.h" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3 | #include "evlist.h" |
| 4 | #include "evsel.h" |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5 | #include "target.h" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | #include "thread_map.h" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 7 | #include "tests.h" |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 8 | #include "util/mmap.h" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 9 | |
| 10 | #include <errno.h> |
| 11 | #include <signal.h> |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 12 | #include <linux/string.h> |
| 13 | #include <perf/cpumap.h> |
| 14 | #include <perf/evlist.h> |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 15 | #include <perf/mmap.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 16 | |
| 17 | static int exited; |
| 18 | static int nr_exit; |
| 19 | |
| 20 | static void sig_handler(int sig __maybe_unused) |
| 21 | { |
| 22 | exited = 1; |
| 23 | } |
| 24 | |
| 25 | /* |
| 26 | * perf_evlist__prepare_workload will send a SIGUSR1 if the fork fails, since |
| 27 | * we asked by setting its exec_error to this handler. |
| 28 | */ |
| 29 | static void workload_exec_failed_signal(int signo __maybe_unused, |
| 30 | siginfo_t *info __maybe_unused, |
| 31 | void *ucontext __maybe_unused) |
| 32 | { |
| 33 | exited = 1; |
| 34 | nr_exit = -1; |
| 35 | } |
| 36 | |
| 37 | /* |
| 38 | * This test will start a workload that does nothing then it checks |
| 39 | * if the number of exit event reported by the kernel is 1 or not |
| 40 | * in order to check the kernel returns correct number of event. |
| 41 | */ |
| 42 | int test__task_exit(struct test *test __maybe_unused, int subtest __maybe_unused) |
| 43 | { |
| 44 | int err = -1; |
| 45 | union perf_event *event; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 46 | struct evsel *evsel; |
| 47 | struct evlist *evlist; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 48 | struct target target = { |
| 49 | .uid = UINT_MAX, |
| 50 | .uses_mmap = true, |
| 51 | }; |
| 52 | const char *argv[] = { "true", NULL }; |
| 53 | char sbuf[STRERR_BUFSIZE]; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 54 | struct perf_cpu_map *cpus; |
| 55 | struct perf_thread_map *threads; |
| 56 | struct mmap *md; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 57 | int retry_count = 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 58 | |
| 59 | signal(SIGCHLD, sig_handler); |
| 60 | |
| 61 | evlist = perf_evlist__new_default(); |
| 62 | if (evlist == NULL) { |
| 63 | pr_debug("perf_evlist__new_default\n"); |
| 64 | return -1; |
| 65 | } |
| 66 | |
| 67 | /* |
| 68 | * Create maps of threads and cpus to monitor. In this case |
| 69 | * we start with all threads and cpus (-1, -1) but then in |
| 70 | * perf_evlist__prepare_workload we'll fill in the only thread |
| 71 | * we're monitoring, the one forked there. |
| 72 | */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 73 | cpus = perf_cpu_map__dummy_new(); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 74 | threads = thread_map__new_by_tid(-1); |
| 75 | if (!cpus || !threads) { |
| 76 | err = -ENOMEM; |
| 77 | pr_debug("Not enough memory to create thread/cpu maps\n"); |
| 78 | goto out_free_maps; |
| 79 | } |
| 80 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 81 | perf_evlist__set_maps(&evlist->core, cpus, threads); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 82 | |
| 83 | cpus = NULL; |
| 84 | threads = NULL; |
| 85 | |
| 86 | err = perf_evlist__prepare_workload(evlist, &target, argv, false, |
| 87 | workload_exec_failed_signal); |
| 88 | if (err < 0) { |
| 89 | pr_debug("Couldn't run the workload!\n"); |
| 90 | goto out_delete_evlist; |
| 91 | } |
| 92 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 93 | evsel = evlist__first(evlist); |
| 94 | evsel->core.attr.task = 1; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 95 | #ifdef __s390x__ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 96 | evsel->core.attr.sample_freq = 1000000; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 97 | #else |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 98 | evsel->core.attr.sample_freq = 1; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 99 | #endif |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 100 | evsel->core.attr.inherit = 0; |
| 101 | evsel->core.attr.watermark = 0; |
| 102 | evsel->core.attr.wakeup_events = 1; |
| 103 | evsel->core.attr.exclude_kernel = 1; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 104 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 105 | err = evlist__open(evlist); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 106 | if (err < 0) { |
| 107 | pr_debug("Couldn't open the evlist: %s\n", |
| 108 | str_error_r(-err, sbuf, sizeof(sbuf))); |
| 109 | goto out_delete_evlist; |
| 110 | } |
| 111 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 112 | if (evlist__mmap(evlist, 128) < 0) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 113 | pr_debug("failed to mmap events: %d (%s)\n", errno, |
| 114 | str_error_r(errno, sbuf, sizeof(sbuf))); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 115 | err = -1; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 116 | goto out_delete_evlist; |
| 117 | } |
| 118 | |
| 119 | perf_evlist__start_workload(evlist); |
| 120 | |
| 121 | retry: |
| 122 | md = &evlist->mmap[0]; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 123 | if (perf_mmap__read_init(&md->core) < 0) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 124 | goto out_init; |
| 125 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 126 | while ((event = perf_mmap__read_event(&md->core)) != NULL) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 127 | if (event->header.type == PERF_RECORD_EXIT) |
| 128 | nr_exit++; |
| 129 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 130 | perf_mmap__consume(&md->core); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 131 | } |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 132 | perf_mmap__read_done(&md->core); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 133 | |
| 134 | out_init: |
| 135 | if (!exited || !nr_exit) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 136 | evlist__poll(evlist, -1); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 137 | |
| 138 | if (retry_count++ > 1000) { |
| 139 | pr_debug("Failed after retrying 1000 times\n"); |
| 140 | err = -1; |
| 141 | goto out_free_maps; |
| 142 | } |
| 143 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 144 | goto retry; |
| 145 | } |
| 146 | |
| 147 | if (nr_exit != 1) { |
| 148 | pr_debug("received %d EXIT records\n", nr_exit); |
| 149 | err = -1; |
| 150 | } |
| 151 | |
| 152 | out_free_maps: |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 153 | perf_cpu_map__put(cpus); |
| 154 | perf_thread_map__put(threads); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 155 | out_delete_evlist: |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 156 | evlist__delete(evlist); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 157 | return err; |
| 158 | } |