blob: 5ff3db318f12ae5971d3916fc49599e14fd51075 [file] [log] [blame]
Namhyung Kimd723a552013-03-15 14:58:11 +09001#include "evlist.h"
2#include "evsel.h"
3#include "thread_map.h"
4#include "cpumap.h"
5#include "tests.h"
6
7#include <signal.h>
8
9static int exited;
10static int nr_exit;
11
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -030012static void sig_handler(int sig __maybe_unused)
Namhyung Kimd723a552013-03-15 14:58:11 +090013{
14 exited = 1;
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -030015}
Namhyung Kimd723a552013-03-15 14:58:11 +090016
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -030017/*
18 * perf_evlist__prepare_workload will send a SIGUSR1 if the fork fails, since
19 * we asked by setting its exec_error to this handler.
20 */
21static void workload_exec_failed_signal(int signo __maybe_unused,
22 siginfo_t *info __maybe_unused,
23 void *ucontext __maybe_unused)
24{
25 exited = 1;
26 nr_exit = -1;
Namhyung Kimd723a552013-03-15 14:58:11 +090027}
28
29/*
30 * This test will start a workload that does nothing then it checks
31 * if the number of exit event reported by the kernel is 1 or not
32 * in order to check the kernel returns correct number of event.
33 */
34int test__task_exit(void)
35{
36 int err = -1;
37 union perf_event *event;
38 struct perf_evsel *evsel;
39 struct perf_evlist *evlist;
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -030040 struct target target = {
Namhyung Kimd723a552013-03-15 14:58:11 +090041 .uid = UINT_MAX,
42 .uses_mmap = true,
43 };
44 const char *argv[] = { "true", NULL };
45
46 signal(SIGCHLD, sig_handler);
Namhyung Kimd723a552013-03-15 14:58:11 +090047
Jiri Olsab22d54b2013-09-01 12:36:14 +020048 evlist = perf_evlist__new_default();
Namhyung Kimd723a552013-03-15 14:58:11 +090049 if (evlist == NULL) {
Jiri Olsab22d54b2013-09-01 12:36:14 +020050 pr_debug("perf_evlist__new_default\n");
Namhyung Kimd723a552013-03-15 14:58:11 +090051 return -1;
52 }
Namhyung Kimd723a552013-03-15 14:58:11 +090053
54 /*
55 * Create maps of threads and cpus to monitor. In this case
56 * we start with all threads and cpus (-1, -1) but then in
57 * perf_evlist__prepare_workload we'll fill in the only thread
58 * we're monitoring, the one forked there.
59 */
60 evlist->cpus = cpu_map__dummy_new();
61 evlist->threads = thread_map__new_by_tid(-1);
62 if (!evlist->cpus || !evlist->threads) {
63 err = -ENOMEM;
64 pr_debug("Not enough memory to create thread/cpu maps\n");
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -030065 goto out_delete_evlist;
Namhyung Kimd723a552013-03-15 14:58:11 +090066 }
67
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -030068 err = perf_evlist__prepare_workload(evlist, &target, argv, false,
69 workload_exec_failed_signal);
Namhyung Kimd723a552013-03-15 14:58:11 +090070 if (err < 0) {
71 pr_debug("Couldn't run the workload!\n");
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -030072 goto out_delete_evlist;
Namhyung Kimd723a552013-03-15 14:58:11 +090073 }
74
75 evsel = perf_evlist__first(evlist);
76 evsel->attr.task = 1;
77 evsel->attr.sample_freq = 0;
78 evsel->attr.inherit = 0;
79 evsel->attr.watermark = 0;
80 evsel->attr.wakeup_events = 1;
81 evsel->attr.exclude_kernel = 1;
82
83 err = perf_evlist__open(evlist);
84 if (err < 0) {
85 pr_debug("Couldn't open the evlist: %s\n", strerror(-err));
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -030086 goto out_delete_evlist;
Namhyung Kimd723a552013-03-15 14:58:11 +090087 }
88
89 if (perf_evlist__mmap(evlist, 128, true) < 0) {
90 pr_debug("failed to mmap events: %d (%s)\n", errno,
91 strerror(errno));
Arnaldo Carvalho de Melof26e1c72014-01-03 16:54:12 -030092 goto out_delete_evlist;
Namhyung Kimd723a552013-03-15 14:58:11 +090093 }
94
95 perf_evlist__start_workload(evlist);
96
97retry:
98 while ((event = perf_evlist__mmap_read(evlist, 0)) != NULL) {
Zhouyi Zhou8e50d382013-10-24 15:43:33 +080099 if (event->header.type == PERF_RECORD_EXIT)
100 nr_exit++;
Namhyung Kimd723a552013-03-15 14:58:11 +0900101
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800102 perf_evlist__mmap_consume(evlist, 0);
Namhyung Kimd723a552013-03-15 14:58:11 +0900103 }
104
105 if (!exited || !nr_exit) {
106 poll(evlist->pollfd, evlist->nr_fds, -1);
107 goto retry;
108 }
109
110 if (nr_exit != 1) {
111 pr_debug("received %d EXIT records\n", nr_exit);
112 err = -1;
113 }
114
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -0300115out_delete_evlist:
Namhyung Kimd723a552013-03-15 14:58:11 +0900116 perf_evlist__delete(evlist);
117 return err;
118}