blob: c34904d3770550a3d379390b8febdbc5c71cc293 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03002#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03003#include <inttypes.h>
Arnaldo Carvalho de Melo1fbe7df2016-07-06 12:19:19 -03004/* For the CLR_() macros */
5#include <pthread.h>
6
Jiri Olsa16d00fe2012-11-10 01:46:45 +01007#include <sched.h>
8#include "evlist.h"
9#include "evsel.h"
10#include "perf.h"
11#include "debug.h"
12#include "tests.h"
13
14static int sched__get_first_possible_cpu(pid_t pid, cpu_set_t *maskp)
15{
16 int i, cpu = -1, nrcpus = 1024;
17realloc:
18 CPU_ZERO(maskp);
19
20 if (sched_getaffinity(pid, sizeof(*maskp), maskp) == -1) {
21 if (errno == EINVAL && nrcpus < (1024 << 8)) {
22 nrcpus = nrcpus << 2;
23 goto realloc;
24 }
25 perror("sched_getaffinity");
26 return -1;
27 }
28
29 for (i = 0; i < nrcpus; i++) {
30 if (CPU_ISSET(i, maskp)) {
31 if (cpu == -1)
32 cpu = i;
33 else
34 CPU_CLR(i, maskp);
35 }
36 }
37
38 return cpu;
39}
40
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030041int test__PERF_RECORD(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsa16d00fe2012-11-10 01:46:45 +010042{
Arnaldo Carvalho de Melob4006792013-12-19 14:43:45 -030043 struct record_opts opts = {
Jiri Olsa16d00fe2012-11-10 01:46:45 +010044 .target = {
45 .uid = UINT_MAX,
46 .uses_mmap = true,
47 },
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -030048 .no_buffering = true,
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -030049 .mmap_pages = 256,
Jiri Olsa16d00fe2012-11-10 01:46:45 +010050 };
51 cpu_set_t cpu_mask;
52 size_t cpu_mask_size = sizeof(cpu_mask);
Arnaldo Carvalho de Melo69ef8f42016-01-07 13:17:00 -030053 struct perf_evlist *evlist = perf_evlist__new_dummy();
Jiri Olsa16d00fe2012-11-10 01:46:45 +010054 struct perf_evsel *evsel;
55 struct perf_sample sample;
56 const char *cmd = "sleep";
57 const char *argv[] = { cmd, "1", NULL, };
Stephane Eranian5c5e8542013-08-21 12:10:25 +020058 char *bname, *mmap_filename;
Jiri Olsa16d00fe2012-11-10 01:46:45 +010059 u64 prev_time = 0;
60 bool found_cmd_mmap = false,
61 found_libc_mmap = false,
62 found_vdso_mmap = false,
63 found_ld_mmap = false;
64 int err = -1, errs = 0, i, wakeups = 0;
65 u32 cpu;
66 int total_events = 0, nr_events[PERF_RECORD_MAX] = { 0, };
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +000067 char sbuf[STRERR_BUFSIZE];
Jiri Olsa16d00fe2012-11-10 01:46:45 +010068
Arnaldo Carvalho de Melo69ef8f42016-01-07 13:17:00 -030069 if (evlist == NULL) /* Fallback for kernels lacking PERF_COUNT_SW_DUMMY */
70 evlist = perf_evlist__new_default();
71
Arnaldo Carvalho de Melo9ef68392017-02-13 17:04:05 -030072 if (evlist == NULL) {
Jiri Olsa16d00fe2012-11-10 01:46:45 +010073 pr_debug("Not enough memory to create evlist\n");
74 goto out;
75 }
76
77 /*
Jiri Olsa16d00fe2012-11-10 01:46:45 +010078 * Create maps of threads and cpus to monitor. In this case
79 * we start with all threads and cpus (-1, -1) but then in
80 * perf_evlist__prepare_workload we'll fill in the only thread
81 * we're monitoring, the one forked there.
82 */
83 err = perf_evlist__create_maps(evlist, &opts.target);
84 if (err < 0) {
85 pr_debug("Not enough memory to create thread/cpu maps\n");
86 goto out_delete_evlist;
87 }
88
89 /*
90 * Prepare the workload in argv[] to run, it'll fork it, and then wait
91 * for perf_evlist__start_workload() to exec it. This is done this way
92 * so that we have time to open the evlist (calling sys_perf_event_open
93 * on all the fds) and then mmap them.
94 */
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -030095 err = perf_evlist__prepare_workload(evlist, &opts.target, argv, false, NULL);
Jiri Olsa16d00fe2012-11-10 01:46:45 +010096 if (err < 0) {
97 pr_debug("Couldn't run the workload!\n");
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -030098 goto out_delete_evlist;
Jiri Olsa16d00fe2012-11-10 01:46:45 +010099 }
100
101 /*
102 * Config the evsels, setting attr->comm on the first one, etc.
103 */
104 evsel = perf_evlist__first(evlist);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300105 perf_evsel__set_sample_bit(evsel, CPU);
106 perf_evsel__set_sample_bit(evsel, TID);
107 perf_evsel__set_sample_bit(evsel, TIME);
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300108 perf_evlist__config(evlist, &opts, NULL);
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100109
110 err = sched__get_first_possible_cpu(evlist->workload.pid, &cpu_mask);
111 if (err < 0) {
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +0000112 pr_debug("sched__get_first_possible_cpu: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300113 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -0300114 goto out_delete_evlist;
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100115 }
116
117 cpu = err;
118
119 /*
120 * So that we can check perf_sample.cpu on all the samples.
121 */
122 if (sched_setaffinity(evlist->workload.pid, cpu_mask_size, &cpu_mask) < 0) {
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +0000123 pr_debug("sched_setaffinity: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300124 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -0300125 goto out_delete_evlist;
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100126 }
127
128 /*
129 * Call sys_perf_event_open on all the fds on all the evsels,
130 * grouping them if asked to.
131 */
132 err = perf_evlist__open(evlist);
133 if (err < 0) {
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +0000134 pr_debug("perf_evlist__open: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300135 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -0300136 goto out_delete_evlist;
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100137 }
138
139 /*
140 * mmap the first fd on a given CPU and ask for events for the other
141 * fds in the same CPU to be injected in the same mmap ring buffer
142 * (using ioctl(PERF_EVENT_IOC_SET_OUTPUT)).
143 */
144 err = perf_evlist__mmap(evlist, opts.mmap_pages, false);
145 if (err < 0) {
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +0000146 pr_debug("perf_evlist__mmap: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300147 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melof26e1c72014-01-03 16:54:12 -0300148 goto out_delete_evlist;
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100149 }
150
151 /*
152 * Now that all is properly set up, enable the events, they will
153 * count just on workload.pid, which will start...
154 */
155 perf_evlist__enable(evlist);
156
157 /*
158 * Now!
159 */
160 perf_evlist__start_workload(evlist);
161
162 while (1) {
163 int before = total_events;
164
165 for (i = 0; i < evlist->nr_mmaps; i++) {
166 union perf_event *event;
167
168 while ((event = perf_evlist__mmap_read(evlist, i)) != NULL) {
169 const u32 type = event->header.type;
170 const char *name = perf_event__name(type);
171
172 ++total_events;
173 if (type < PERF_RECORD_MAX)
174 nr_events[type]++;
175
176 err = perf_evlist__parse_sample(evlist, event, &sample);
177 if (err < 0) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900178 if (verbose > 0)
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100179 perf_event__fprintf(event, stderr);
180 pr_debug("Couldn't parse sample\n");
Arnaldo Carvalho de Melo983874d2014-01-03 17:25:49 -0300181 goto out_delete_evlist;
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100182 }
183
Namhyung Kimbb963e12017-02-17 17:17:38 +0900184 if (verbose > 0) {
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100185 pr_info("%" PRIu64" %d ", sample.time, sample.cpu);
186 perf_event__fprintf(event, stderr);
187 }
188
189 if (prev_time > sample.time) {
190 pr_debug("%s going backwards in time, prev=%" PRIu64 ", curr=%" PRIu64 "\n",
191 name, prev_time, sample.time);
192 ++errs;
193 }
194
195 prev_time = sample.time;
196
197 if (sample.cpu != cpu) {
198 pr_debug("%s with unexpected cpu, expected %d, got %d\n",
199 name, cpu, sample.cpu);
200 ++errs;
201 }
202
203 if ((pid_t)sample.pid != evlist->workload.pid) {
204 pr_debug("%s with unexpected pid, expected %d, got %d\n",
205 name, evlist->workload.pid, sample.pid);
206 ++errs;
207 }
208
209 if ((pid_t)sample.tid != evlist->workload.pid) {
210 pr_debug("%s with unexpected tid, expected %d, got %d\n",
211 name, evlist->workload.pid, sample.tid);
212 ++errs;
213 }
214
215 if ((type == PERF_RECORD_COMM ||
216 type == PERF_RECORD_MMAP ||
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200217 type == PERF_RECORD_MMAP2 ||
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100218 type == PERF_RECORD_FORK ||
219 type == PERF_RECORD_EXIT) &&
220 (pid_t)event->comm.pid != evlist->workload.pid) {
221 pr_debug("%s with unexpected pid/tid\n", name);
222 ++errs;
223 }
224
225 if ((type == PERF_RECORD_COMM ||
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200226 type == PERF_RECORD_MMAP ||
227 type == PERF_RECORD_MMAP2) &&
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100228 event->comm.pid != event->comm.tid) {
229 pr_debug("%s with different pid/tid!\n", name);
230 ++errs;
231 }
232
233 switch (type) {
234 case PERF_RECORD_COMM:
235 if (strcmp(event->comm.comm, cmd)) {
236 pr_debug("%s with unexpected comm!\n", name);
237 ++errs;
238 }
239 break;
240 case PERF_RECORD_EXIT:
241 goto found_exit;
242 case PERF_RECORD_MMAP:
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200243 mmap_filename = event->mmap.filename;
244 goto check_bname;
245 case PERF_RECORD_MMAP2:
246 mmap_filename = event->mmap2.filename;
247 check_bname:
248 bname = strrchr(mmap_filename, '/');
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100249 if (bname != NULL) {
250 if (!found_cmd_mmap)
251 found_cmd_mmap = !strcmp(bname + 1, cmd);
252 if (!found_libc_mmap)
253 found_libc_mmap = !strncmp(bname + 1, "libc", 4);
254 if (!found_ld_mmap)
255 found_ld_mmap = !strncmp(bname + 1, "ld", 2);
256 } else if (!found_vdso_mmap)
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200257 found_vdso_mmap = !strcmp(mmap_filename, "[vdso]");
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100258 break;
259
260 case PERF_RECORD_SAMPLE:
261 /* Just ignore samples for now */
262 break;
263 default:
264 pr_debug("Unexpected perf_event->header.type %d!\n",
265 type);
266 ++errs;
267 }
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800268
269 perf_evlist__mmap_consume(evlist, i);
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100270 }
271 }
272
273 /*
274 * We don't use poll here because at least at 3.1 times the
275 * PERF_RECORD_{!SAMPLE} events don't honour
276 * perf_event_attr.wakeup_events, just PERF_EVENT_SAMPLE does.
277 */
278 if (total_events == before && false)
Arnaldo Carvalho de Melof66a8892014-08-18 17:25:59 -0300279 perf_evlist__poll(evlist, -1);
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100280
281 sleep(1);
282 if (++wakeups > 5) {
283 pr_debug("No PERF_RECORD_EXIT event!\n");
284 break;
285 }
286 }
287
288found_exit:
289 if (nr_events[PERF_RECORD_COMM] > 1) {
290 pr_debug("Excessive number of PERF_RECORD_COMM events!\n");
291 ++errs;
292 }
293
294 if (nr_events[PERF_RECORD_COMM] == 0) {
295 pr_debug("Missing PERF_RECORD_COMM for %s!\n", cmd);
296 ++errs;
297 }
298
299 if (!found_cmd_mmap) {
300 pr_debug("PERF_RECORD_MMAP for %s missing!\n", cmd);
301 ++errs;
302 }
303
304 if (!found_libc_mmap) {
305 pr_debug("PERF_RECORD_MMAP for %s missing!\n", "libc");
306 ++errs;
307 }
308
309 if (!found_ld_mmap) {
310 pr_debug("PERF_RECORD_MMAP for %s missing!\n", "ld");
311 ++errs;
312 }
313
314 if (!found_vdso_mmap) {
315 pr_debug("PERF_RECORD_MMAP for %s missing!\n", "[vdso]");
316 ++errs;
317 }
Jiri Olsa16d00fe2012-11-10 01:46:45 +0100318out_delete_evlist:
319 perf_evlist__delete(evlist);
320out:
321 return (err < 0 || errs > 0) ? -1 : 0;
322}