blob: 844c53a49a5ab0fee80b13abc409f8e07d362f22 [file] [log] [blame]
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001/*
2 * builtin-test.c
3 *
4 * Builtin regression testing command: ever growing number of sanity tests
5 */
6#include "builtin.h"
7
8#include "util/cache.h"
9#include "util/debug.h"
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -020010#include "util/debugfs.h"
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -020011#include "util/evlist.h"
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -030012#include "util/parse-options.h"
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -020013#include "util/parse-events.h"
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -030014#include "util/symbol.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020015#include "util/thread_map.h"
Jiri Olsa13b62562011-07-14 11:25:33 +020016#include "../../include/linux/hw_breakpoint.h"
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -030017
Peter Zijlstra08aa0d12011-11-21 14:42:47 +010018#include <sys/mman.h>
19
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -030020static int vmlinux_matches_kallsyms_filter(struct map *map __used, struct symbol *sym)
21{
22 bool *visited = symbol__priv(sym);
23 *visited = true;
24 return 0;
25}
26
27static int test__vmlinux_matches_kallsyms(void)
28{
29 int err = -1;
30 struct rb_node *nd;
31 struct symbol *sym;
32 struct map *kallsyms_map, *vmlinux_map;
33 struct machine kallsyms, vmlinux;
34 enum map_type type = MAP__FUNCTION;
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -020035 long page_size = sysconf(_SC_PAGE_SIZE);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -030036 struct ref_reloc_sym ref_reloc_sym = { .name = "_stext", };
37
38 /*
39 * Step 1:
40 *
41 * Init the machines that will hold kernel, modules obtained from
42 * both vmlinux + .ko files and from /proc/kallsyms split by modules.
43 */
44 machine__init(&kallsyms, "", HOST_KERNEL_ID);
45 machine__init(&vmlinux, "", HOST_KERNEL_ID);
46
47 /*
48 * Step 2:
49 *
50 * Create the kernel maps for kallsyms and the DSO where we will then
51 * load /proc/kallsyms. Also create the modules maps from /proc/modules
52 * and find the .ko files that match them in /lib/modules/`uname -r`/.
53 */
54 if (machine__create_kernel_maps(&kallsyms) < 0) {
55 pr_debug("machine__create_kernel_maps ");
56 return -1;
57 }
58
59 /*
60 * Step 3:
61 *
62 * Load and split /proc/kallsyms into multiple maps, one per module.
63 */
64 if (machine__load_kallsyms(&kallsyms, "/proc/kallsyms", type, NULL) <= 0) {
65 pr_debug("dso__load_kallsyms ");
66 goto out;
67 }
68
69 /*
70 * Step 4:
71 *
72 * kallsyms will be internally on demand sorted by name so that we can
73 * find the reference relocation * symbol, i.e. the symbol we will use
74 * to see if the running kernel was relocated by checking if it has the
75 * same value in the vmlinux file we load.
76 */
77 kallsyms_map = machine__kernel_map(&kallsyms, type);
78
79 sym = map__find_symbol_by_name(kallsyms_map, ref_reloc_sym.name, NULL);
80 if (sym == NULL) {
81 pr_debug("dso__find_symbol_by_name ");
82 goto out;
83 }
84
85 ref_reloc_sym.addr = sym->start;
86
87 /*
88 * Step 5:
89 *
90 * Now repeat step 2, this time for the vmlinux file we'll auto-locate.
91 */
92 if (machine__create_kernel_maps(&vmlinux) < 0) {
93 pr_debug("machine__create_kernel_maps ");
94 goto out;
95 }
96
97 vmlinux_map = machine__kernel_map(&vmlinux, type);
98 map__kmap(vmlinux_map)->ref_reloc_sym = &ref_reloc_sym;
99
100 /*
101 * Step 6:
102 *
103 * Locate a vmlinux file in the vmlinux path that has a buildid that
104 * matches the one of the running kernel.
105 *
106 * While doing that look if we find the ref reloc symbol, if we find it
107 * we'll have its ref_reloc_symbol.unrelocated_addr and then
108 * maps__reloc_vmlinux will notice and set proper ->[un]map_ip routines
109 * to fixup the symbols.
110 */
111 if (machine__load_vmlinux_path(&vmlinux, type,
112 vmlinux_matches_kallsyms_filter) <= 0) {
113 pr_debug("machine__load_vmlinux_path ");
114 goto out;
115 }
116
117 err = 0;
118 /*
119 * Step 7:
120 *
121 * Now look at the symbols in the vmlinux DSO and check if we find all of them
122 * in the kallsyms dso. For the ones that are in both, check its names and
123 * end addresses too.
124 */
125 for (nd = rb_first(&vmlinux_map->dso->symbols[type]); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melod3678752010-12-21 23:38:37 -0200126 struct symbol *pair, *first_pair;
127 bool backwards = true;
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300128
129 sym = rb_entry(nd, struct symbol, rb_node);
Arnaldo Carvalho de Melod3678752010-12-21 23:38:37 -0200130
131 if (sym->start == sym->end)
132 continue;
133
134 first_pair = machine__find_kernel_symbol(&kallsyms, type, sym->start, NULL, NULL);
135 pair = first_pair;
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300136
137 if (pair && pair->start == sym->start) {
138next_pair:
139 if (strcmp(sym->name, pair->name) == 0) {
140 /*
141 * kallsyms don't have the symbol end, so we
142 * set that by using the next symbol start - 1,
143 * in some cases we get this up to a page
144 * wrong, trace_kmalloc when I was developing
145 * this code was one such example, 2106 bytes
146 * off the real size. More than that and we
147 * _really_ have a problem.
148 */
149 s64 skew = sym->end - pair->end;
150 if (llabs(skew) < page_size)
151 continue;
152
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200153 pr_debug("%#" PRIx64 ": diff end addr for %s v: %#" PRIx64 " k: %#" PRIx64 "\n",
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300154 sym->start, sym->name, sym->end, pair->end);
155 } else {
Arnaldo Carvalho de Melod3678752010-12-21 23:38:37 -0200156 struct rb_node *nnd;
157detour:
158 nnd = backwards ? rb_prev(&pair->rb_node) :
159 rb_next(&pair->rb_node);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300160 if (nnd) {
161 struct symbol *next = rb_entry(nnd, struct symbol, rb_node);
162
163 if (next->start == sym->start) {
164 pair = next;
165 goto next_pair;
166 }
167 }
Arnaldo Carvalho de Melod3678752010-12-21 23:38:37 -0200168
169 if (backwards) {
170 backwards = false;
171 pair = first_pair;
172 goto detour;
173 }
174
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200175 pr_debug("%#" PRIx64 ": diff name v: %s k: %s\n",
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300176 sym->start, sym->name, pair->name);
177 }
178 } else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200179 pr_debug("%#" PRIx64 ": %s not on kallsyms\n", sym->start, sym->name);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300180
181 err = -1;
182 }
183
184 if (!verbose)
185 goto out;
186
187 pr_info("Maps only in vmlinux:\n");
188
189 for (nd = rb_first(&vmlinux.kmaps.maps[type]); nd; nd = rb_next(nd)) {
190 struct map *pos = rb_entry(nd, struct map, rb_node), *pair;
191 /*
192 * If it is the kernel, kallsyms is always "[kernel.kallsyms]", while
193 * the kernel will have the path for the vmlinux file being used,
194 * so use the short name, less descriptive but the same ("[kernel]" in
195 * both cases.
196 */
197 pair = map_groups__find_by_name(&kallsyms.kmaps, type,
198 (pos->dso->kernel ?
199 pos->dso->short_name :
200 pos->dso->name));
201 if (pair)
202 pair->priv = 1;
203 else
204 map__fprintf(pos, stderr);
205 }
206
207 pr_info("Maps in vmlinux with a different name in kallsyms:\n");
208
209 for (nd = rb_first(&vmlinux.kmaps.maps[type]); nd; nd = rb_next(nd)) {
210 struct map *pos = rb_entry(nd, struct map, rb_node), *pair;
211
212 pair = map_groups__find(&kallsyms.kmaps, type, pos->start);
213 if (pair == NULL || pair->priv)
214 continue;
215
216 if (pair->start == pos->start) {
217 pair->priv = 1;
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200218 pr_info(" %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s in kallsyms as",
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300219 pos->start, pos->end, pos->pgoff, pos->dso->name);
220 if (pos->pgoff != pair->pgoff || pos->end != pair->end)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200221 pr_info(": \n*%" PRIx64 "-%" PRIx64 " %" PRIx64 "",
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -0300222 pair->start, pair->end, pair->pgoff);
223 pr_info(" %s\n", pair->dso->name);
224 pair->priv = 1;
225 }
226 }
227
228 pr_info("Maps only in kallsyms:\n");
229
230 for (nd = rb_first(&kallsyms.kmaps.maps[type]);
231 nd; nd = rb_next(nd)) {
232 struct map *pos = rb_entry(nd, struct map, rb_node);
233
234 if (!pos->priv)
235 map__fprintf(pos, stderr);
236 }
237out:
238 return err;
239}
240
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200241#include "util/cpumap.h"
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200242#include "util/evsel.h"
243#include <sys/types.h>
244
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200245static int trace_event__id(const char *evname)
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200246{
247 char *filename;
248 int err = -1, fd;
249
250 if (asprintf(&filename,
Jiri Olsabaf040a2011-07-14 11:25:34 +0200251 "%s/syscalls/%s/id",
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -0200252 tracing_events_path, evname) < 0)
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200253 return -1;
254
255 fd = open(filename, O_RDONLY);
256 if (fd >= 0) {
257 char id[16];
258 if (read(fd, id, sizeof(id)) > 0)
259 err = atoi(id);
260 close(fd);
261 }
262
263 free(filename);
264 return err;
265}
266
267static int test__open_syscall_event(void)
268{
269 int err = -1, fd;
270 struct thread_map *threads;
271 struct perf_evsel *evsel;
Lin Ming23a2f3a2011-01-07 11:11:09 +0800272 struct perf_event_attr attr;
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200273 unsigned int nr_open_calls = 111, i;
274 int id = trace_event__id("sys_enter_open");
275
276 if (id < 0) {
Arnaldo Carvalho de Melo454a3bb2011-01-04 10:40:08 -0200277 pr_debug("is debugfs mounted on /sys/kernel/debug?\n");
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200278 return -1;
279 }
280
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -0200281 threads = thread_map__new(-1, getpid(), UINT_MAX);
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200282 if (threads == NULL) {
Arnaldo Carvalho de Melo454a3bb2011-01-04 10:40:08 -0200283 pr_debug("thread_map__new\n");
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200284 return -1;
285 }
286
Lin Ming23a2f3a2011-01-07 11:11:09 +0800287 memset(&attr, 0, sizeof(attr));
288 attr.type = PERF_TYPE_TRACEPOINT;
289 attr.config = id;
290 evsel = perf_evsel__new(&attr, 0);
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200291 if (evsel == NULL) {
Arnaldo Carvalho de Melo454a3bb2011-01-04 10:40:08 -0200292 pr_debug("perf_evsel__new\n");
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200293 goto out_thread_map_delete;
294 }
295
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200296 if (perf_evsel__open_per_thread(evsel, threads, false, NULL) < 0) {
Arnaldo Carvalho de Melo454a3bb2011-01-04 10:40:08 -0200297 pr_debug("failed to open counter: %s, "
298 "tweak /proc/sys/kernel/perf_event_paranoid?\n",
299 strerror(errno));
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200300 goto out_evsel_delete;
301 }
302
303 for (i = 0; i < nr_open_calls; ++i) {
304 fd = open("/etc/passwd", O_RDONLY);
305 close(fd);
306 }
307
308 if (perf_evsel__read_on_cpu(evsel, 0, 0) < 0) {
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300309 pr_debug("perf_evsel__read_on_cpu\n");
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200310 goto out_close_fd;
311 }
312
Arnaldo Carvalho de Melo454a3bb2011-01-04 10:40:08 -0200313 if (evsel->counts->cpu[0].val != nr_open_calls) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200314 pr_debug("perf_evsel__read_on_cpu: expected to intercept %d calls, got %" PRIu64 "\n",
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200315 nr_open_calls, evsel->counts->cpu[0].val);
Arnaldo Carvalho de Melo454a3bb2011-01-04 10:40:08 -0200316 goto out_close_fd;
317 }
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -0200318
319 err = 0;
320out_close_fd:
321 perf_evsel__close_fd(evsel, 1, threads->nr);
322out_evsel_delete:
323 perf_evsel__delete(evsel);
324out_thread_map_delete:
325 thread_map__delete(threads);
326 return err;
327}
328
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200329#include <sched.h>
330
331static int test__open_syscall_event_on_all_cpus(void)
332{
333 int err = -1, fd, cpu;
334 struct thread_map *threads;
335 struct cpu_map *cpus;
336 struct perf_evsel *evsel;
337 struct perf_event_attr attr;
338 unsigned int nr_open_calls = 111, i;
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200339 cpu_set_t cpu_set;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200340 int id = trace_event__id("sys_enter_open");
341
342 if (id < 0) {
343 pr_debug("is debugfs mounted on /sys/kernel/debug?\n");
344 return -1;
345 }
346
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -0200347 threads = thread_map__new(-1, getpid(), UINT_MAX);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200348 if (threads == NULL) {
349 pr_debug("thread_map__new\n");
350 return -1;
351 }
352
353 cpus = cpu_map__new(NULL);
Han Pingtian98d77b72011-01-15 07:00:50 +0800354 if (cpus == NULL) {
355 pr_debug("cpu_map__new\n");
356 goto out_thread_map_delete;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200357 }
358
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200359
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200360 CPU_ZERO(&cpu_set);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200361
362 memset(&attr, 0, sizeof(attr));
363 attr.type = PERF_TYPE_TRACEPOINT;
364 attr.config = id;
365 evsel = perf_evsel__new(&attr, 0);
366 if (evsel == NULL) {
367 pr_debug("perf_evsel__new\n");
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200368 goto out_thread_map_delete;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200369 }
370
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200371 if (perf_evsel__open(evsel, cpus, threads, false, NULL) < 0) {
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200372 pr_debug("failed to open counter: %s, "
373 "tweak /proc/sys/kernel/perf_event_paranoid?\n",
374 strerror(errno));
375 goto out_evsel_delete;
376 }
377
378 for (cpu = 0; cpu < cpus->nr; ++cpu) {
379 unsigned int ncalls = nr_open_calls + cpu;
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200380 /*
381 * XXX eventually lift this restriction in a way that
382 * keeps perf building on older glibc installations
383 * without CPU_ALLOC. 1024 cpus in 2010 still seems
384 * a reasonable upper limit tho :-)
385 */
386 if (cpus->map[cpu] >= CPU_SETSIZE) {
387 pr_debug("Ignoring CPU %d\n", cpus->map[cpu]);
388 continue;
389 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200390
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200391 CPU_SET(cpus->map[cpu], &cpu_set);
392 if (sched_setaffinity(0, sizeof(cpu_set), &cpu_set) < 0) {
Han Pingtianffb5e0f2011-01-20 19:47:07 +0800393 pr_debug("sched_setaffinity() failed on CPU %d: %s ",
394 cpus->map[cpu],
395 strerror(errno));
396 goto out_close_fd;
397 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200398 for (i = 0; i < ncalls; ++i) {
399 fd = open("/etc/passwd", O_RDONLY);
400 close(fd);
401 }
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200402 CPU_CLR(cpus->map[cpu], &cpu_set);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200403 }
404
405 /*
406 * Here we need to explicitely preallocate the counts, as if
407 * we use the auto allocation it will allocate just for 1 cpu,
408 * as we start by cpu 0.
409 */
410 if (perf_evsel__alloc_counts(evsel, cpus->nr) < 0) {
411 pr_debug("perf_evsel__alloc_counts(ncpus=%d)\n", cpus->nr);
412 goto out_close_fd;
413 }
414
Arnaldo Carvalho de Melod2af9682011-01-14 16:24:49 -0200415 err = 0;
416
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200417 for (cpu = 0; cpu < cpus->nr; ++cpu) {
418 unsigned int expected;
419
Arnaldo Carvalho de Melo57b84e52011-01-22 23:14:20 -0200420 if (cpus->map[cpu] >= CPU_SETSIZE)
421 continue;
422
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200423 if (perf_evsel__read_on_cpu(evsel, cpu, 0) < 0) {
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300424 pr_debug("perf_evsel__read_on_cpu\n");
Arnaldo Carvalho de Melod2af9682011-01-14 16:24:49 -0200425 err = -1;
426 break;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200427 }
428
429 expected = nr_open_calls + cpu;
430 if (evsel->counts->cpu[cpu].val != expected) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200431 pr_debug("perf_evsel__read_on_cpu: expected to intercept %d calls on cpu %d, got %" PRIu64 "\n",
Han Pingtianffb5e0f2011-01-20 19:47:07 +0800432 expected, cpus->map[cpu], evsel->counts->cpu[cpu].val);
Arnaldo Carvalho de Melod2af9682011-01-14 16:24:49 -0200433 err = -1;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200434 }
435 }
436
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200437out_close_fd:
438 perf_evsel__close_fd(evsel, 1, threads->nr);
439out_evsel_delete:
440 perf_evsel__delete(evsel);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -0200441out_thread_map_delete:
442 thread_map__delete(threads);
443 return err;
444}
445
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200446/*
447 * This test will generate random numbers of calls to some getpid syscalls,
448 * then establish an mmap for a group of events that are created to monitor
449 * the syscalls.
450 *
451 * It will receive the events, using mmap, use its PERF_SAMPLE_ID generated
452 * sample.id field to map back to its respective perf_evsel instance.
453 *
454 * Then it checks if the number of syscalls reported as perf events by
455 * the kernel corresponds to the number of syscalls made.
456 */
457static int test__basic_mmap(void)
458{
459 int err = -1;
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200460 union perf_event *event;
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200461 struct thread_map *threads;
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200462 struct cpu_map *cpus;
463 struct perf_evlist *evlist;
464 struct perf_event_attr attr = {
465 .type = PERF_TYPE_TRACEPOINT,
466 .read_format = PERF_FORMAT_ID,
467 .sample_type = PERF_SAMPLE_ID,
468 .watermark = 0,
469 };
470 cpu_set_t cpu_set;
471 const char *syscall_names[] = { "getsid", "getppid", "getpgrp",
472 "getpgid", };
473 pid_t (*syscalls[])(void) = { (void *)getsid, getppid, getpgrp,
474 (void*)getpgid };
475#define nsyscalls ARRAY_SIZE(syscall_names)
476 int ids[nsyscalls];
477 unsigned int nr_events[nsyscalls],
478 expected_nr_events[nsyscalls], i, j;
479 struct perf_evsel *evsels[nsyscalls], *evsel;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300480 int sample_size = __perf_evsel__sample_size(attr.sample_type);
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200481
482 for (i = 0; i < nsyscalls; ++i) {
483 char name[64];
484
485 snprintf(name, sizeof(name), "sys_enter_%s", syscall_names[i]);
486 ids[i] = trace_event__id(name);
487 if (ids[i] < 0) {
488 pr_debug("Is debugfs mounted on /sys/kernel/debug?\n");
489 return -1;
490 }
491 nr_events[i] = 0;
492 expected_nr_events[i] = random() % 257;
493 }
494
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -0200495 threads = thread_map__new(-1, getpid(), UINT_MAX);
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200496 if (threads == NULL) {
497 pr_debug("thread_map__new\n");
498 return -1;
499 }
500
501 cpus = cpu_map__new(NULL);
Han Pingtian54489c182011-01-25 07:39:00 +0800502 if (cpus == NULL) {
503 pr_debug("cpu_map__new\n");
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200504 goto out_free_threads;
505 }
506
507 CPU_ZERO(&cpu_set);
508 CPU_SET(cpus->map[0], &cpu_set);
509 sched_setaffinity(0, sizeof(cpu_set), &cpu_set);
510 if (sched_setaffinity(0, sizeof(cpu_set), &cpu_set) < 0) {
511 pr_debug("sched_setaffinity() failed on CPU %d: %s ",
512 cpus->map[0], strerror(errno));
513 goto out_free_cpus;
514 }
515
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200516 evlist = perf_evlist__new(cpus, threads);
Han Pingtian54489c182011-01-25 07:39:00 +0800517 if (evlist == NULL) {
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200518 pr_debug("perf_evlist__new\n");
519 goto out_free_cpus;
520 }
521
522 /* anonymous union fields, can't be initialized above */
523 attr.wakeup_events = 1;
524 attr.sample_period = 1;
525
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200526 for (i = 0; i < nsyscalls; ++i) {
527 attr.config = ids[i];
528 evsels[i] = perf_evsel__new(&attr, i);
529 if (evsels[i] == NULL) {
530 pr_debug("perf_evsel__new\n");
531 goto out_free_evlist;
532 }
533
534 perf_evlist__add(evlist, evsels[i]);
535
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200536 if (perf_evsel__open(evsels[i], cpus, threads, false, NULL) < 0) {
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200537 pr_debug("failed to open counter: %s, "
538 "tweak /proc/sys/kernel/perf_event_paranoid?\n",
539 strerror(errno));
540 goto out_close_fd;
541 }
542 }
543
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200544 if (perf_evlist__mmap(evlist, 128, true) < 0) {
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200545 pr_debug("failed to mmap events: %d (%s)\n", errno,
546 strerror(errno));
547 goto out_close_fd;
548 }
549
550 for (i = 0; i < nsyscalls; ++i)
551 for (j = 0; j < expected_nr_events[i]; ++j) {
552 int foo = syscalls[i]();
553 ++foo;
554 }
555
Arnaldo Carvalho de Meloaece9482011-05-15 09:39:00 -0300556 while ((event = perf_evlist__mmap_read(evlist, 0)) != NULL) {
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200557 struct perf_sample sample;
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200558
559 if (event->header.type != PERF_RECORD_SAMPLE) {
560 pr_debug("unexpected %s event\n",
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200561 perf_event__name(event->header.type));
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200562 goto out_munmap;
563 }
564
Frederic Weisbecker5538bec2011-05-22 02:17:22 +0200565 err = perf_event__parse_sample(event, attr.sample_type, sample_size,
David Ahern936be502011-09-06 09:12:26 -0600566 false, &sample, false);
Frederic Weisbecker5538bec2011-05-22 02:17:22 +0200567 if (err) {
568 pr_err("Can't parse sample, err = %d\n", err);
569 goto out_munmap;
570 }
571
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200572 evsel = perf_evlist__id2evsel(evlist, sample.id);
573 if (evsel == NULL) {
574 pr_debug("event with id %" PRIu64
575 " doesn't map to an evsel\n", sample.id);
576 goto out_munmap;
577 }
578 nr_events[evsel->idx]++;
579 }
580
581 list_for_each_entry(evsel, &evlist->entries, node) {
582 if (nr_events[evsel->idx] != expected_nr_events[evsel->idx]) {
583 pr_debug("expected %d %s events, got %d\n",
584 expected_nr_events[evsel->idx],
585 event_name(evsel), nr_events[evsel->idx]);
586 goto out_munmap;
587 }
588 }
589
590 err = 0;
591out_munmap:
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200592 perf_evlist__munmap(evlist);
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -0200593out_close_fd:
594 for (i = 0; i < nsyscalls; ++i)
595 perf_evsel__close_fd(evsels[i], 1, threads->nr);
596out_free_evlist:
597 perf_evlist__delete(evlist);
598out_free_cpus:
599 cpu_map__delete(cpus);
600out_free_threads:
601 thread_map__delete(threads);
602 return err;
603#undef nsyscalls
604}
605
Jiri Olsa13b62562011-07-14 11:25:33 +0200606#define TEST_ASSERT_VAL(text, cond) \
607do { \
Jiri Olsa65c1e042011-12-15 16:30:39 +0100608 if (!(cond)) { \
Jiri Olsa13b62562011-07-14 11:25:33 +0200609 pr_debug("FAILED %s:%d %s\n", __FILE__, __LINE__, text); \
610 return -1; \
611 } \
612} while (0)
613
614static int test__checkevent_tracepoint(struct perf_evlist *evlist)
615{
616 struct perf_evsel *evsel = list_entry(evlist->entries.next,
617 struct perf_evsel, node);
618
619 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
620 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
621 TEST_ASSERT_VAL("wrong sample_type",
622 (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU) ==
623 evsel->attr.sample_type);
624 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
625 return 0;
626}
627
628static int test__checkevent_tracepoint_multi(struct perf_evlist *evlist)
629{
630 struct perf_evsel *evsel;
631
632 TEST_ASSERT_VAL("wrong number of entries", evlist->nr_entries > 1);
633
634 list_for_each_entry(evsel, &evlist->entries, node) {
635 TEST_ASSERT_VAL("wrong type",
636 PERF_TYPE_TRACEPOINT == evsel->attr.type);
637 TEST_ASSERT_VAL("wrong sample_type",
638 (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU)
639 == evsel->attr.sample_type);
640 TEST_ASSERT_VAL("wrong sample_period",
641 1 == evsel->attr.sample_period);
642 }
643 return 0;
644}
645
646static int test__checkevent_raw(struct perf_evlist *evlist)
647{
648 struct perf_evsel *evsel = list_entry(evlist->entries.next,
649 struct perf_evsel, node);
650
651 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
652 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
Jiri Olsa89812fc2012-03-15 20:09:15 +0100653 TEST_ASSERT_VAL("wrong config", 0x1a == evsel->attr.config);
Jiri Olsa13b62562011-07-14 11:25:33 +0200654 return 0;
655}
656
657static int test__checkevent_numeric(struct perf_evlist *evlist)
658{
659 struct perf_evsel *evsel = list_entry(evlist->entries.next,
660 struct perf_evsel, node);
661
662 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
663 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
664 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
665 return 0;
666}
667
668static int test__checkevent_symbolic_name(struct perf_evlist *evlist)
669{
670 struct perf_evsel *evsel = list_entry(evlist->entries.next,
671 struct perf_evsel, node);
672
673 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
674 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
675 TEST_ASSERT_VAL("wrong config",
676 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
677 return 0;
678}
679
680static int test__checkevent_symbolic_alias(struct perf_evlist *evlist)
681{
682 struct perf_evsel *evsel = list_entry(evlist->entries.next,
683 struct perf_evsel, node);
684
685 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
686 TEST_ASSERT_VAL("wrong type", PERF_TYPE_SOFTWARE == evsel->attr.type);
687 TEST_ASSERT_VAL("wrong config",
688 PERF_COUNT_SW_PAGE_FAULTS == evsel->attr.config);
689 return 0;
690}
691
692static int test__checkevent_genhw(struct perf_evlist *evlist)
693{
694 struct perf_evsel *evsel = list_entry(evlist->entries.next,
695 struct perf_evsel, node);
696
697 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
698 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HW_CACHE == evsel->attr.type);
699 TEST_ASSERT_VAL("wrong config", (1 << 16) == evsel->attr.config);
700 return 0;
701}
702
703static int test__checkevent_breakpoint(struct perf_evlist *evlist)
704{
705 struct perf_evsel *evsel = list_entry(evlist->entries.next,
706 struct perf_evsel, node);
707
708 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
709 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
710 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
711 TEST_ASSERT_VAL("wrong bp_type", (HW_BREAKPOINT_R | HW_BREAKPOINT_W) ==
712 evsel->attr.bp_type);
713 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_4 ==
714 evsel->attr.bp_len);
715 return 0;
716}
717
718static int test__checkevent_breakpoint_x(struct perf_evlist *evlist)
719{
720 struct perf_evsel *evsel = list_entry(evlist->entries.next,
721 struct perf_evsel, node);
722
723 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
724 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
725 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
726 TEST_ASSERT_VAL("wrong bp_type",
727 HW_BREAKPOINT_X == evsel->attr.bp_type);
728 TEST_ASSERT_VAL("wrong bp_len", sizeof(long) == evsel->attr.bp_len);
729 return 0;
730}
731
732static int test__checkevent_breakpoint_r(struct perf_evlist *evlist)
733{
734 struct perf_evsel *evsel = list_entry(evlist->entries.next,
735 struct perf_evsel, node);
736
737 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
738 TEST_ASSERT_VAL("wrong type",
739 PERF_TYPE_BREAKPOINT == evsel->attr.type);
740 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
741 TEST_ASSERT_VAL("wrong bp_type",
742 HW_BREAKPOINT_R == evsel->attr.bp_type);
743 TEST_ASSERT_VAL("wrong bp_len",
744 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
745 return 0;
746}
747
748static int test__checkevent_breakpoint_w(struct perf_evlist *evlist)
749{
750 struct perf_evsel *evsel = list_entry(evlist->entries.next,
751 struct perf_evsel, node);
752
753 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
754 TEST_ASSERT_VAL("wrong type",
755 PERF_TYPE_BREAKPOINT == evsel->attr.type);
756 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
757 TEST_ASSERT_VAL("wrong bp_type",
758 HW_BREAKPOINT_W == evsel->attr.bp_type);
759 TEST_ASSERT_VAL("wrong bp_len",
760 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
761 return 0;
762}
763
Jiri Olsa65c1e042011-12-15 16:30:39 +0100764static int test__checkevent_tracepoint_modifier(struct perf_evlist *evlist)
765{
766 struct perf_evsel *evsel = list_entry(evlist->entries.next,
767 struct perf_evsel, node);
768
769 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
770 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
771 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
772 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
773
774 return test__checkevent_tracepoint(evlist);
775}
776
777static int
778test__checkevent_tracepoint_multi_modifier(struct perf_evlist *evlist)
779{
780 struct perf_evsel *evsel;
781
782 TEST_ASSERT_VAL("wrong number of entries", evlist->nr_entries > 1);
783
784 list_for_each_entry(evsel, &evlist->entries, node) {
785 TEST_ASSERT_VAL("wrong exclude_user",
786 !evsel->attr.exclude_user);
787 TEST_ASSERT_VAL("wrong exclude_kernel",
788 evsel->attr.exclude_kernel);
789 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
790 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
791 }
792
793 return test__checkevent_tracepoint_multi(evlist);
794}
795
796static int test__checkevent_raw_modifier(struct perf_evlist *evlist)
797{
798 struct perf_evsel *evsel = list_entry(evlist->entries.next,
799 struct perf_evsel, node);
800
801 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
802 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
803 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
804 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
805
806 return test__checkevent_raw(evlist);
807}
808
809static int test__checkevent_numeric_modifier(struct perf_evlist *evlist)
810{
811 struct perf_evsel *evsel = list_entry(evlist->entries.next,
812 struct perf_evsel, node);
813
814 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
815 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
816 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
817 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
818
819 return test__checkevent_numeric(evlist);
820}
821
822static int test__checkevent_symbolic_name_modifier(struct perf_evlist *evlist)
823{
824 struct perf_evsel *evsel = list_entry(evlist->entries.next,
825 struct perf_evsel, node);
826
827 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
828 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
829 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
830 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
831
832 return test__checkevent_symbolic_name(evlist);
833}
834
835static int test__checkevent_symbolic_alias_modifier(struct perf_evlist *evlist)
836{
837 struct perf_evsel *evsel = list_entry(evlist->entries.next,
838 struct perf_evsel, node);
839
840 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
841 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
842 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
843 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
844
845 return test__checkevent_symbolic_alias(evlist);
846}
847
848static int test__checkevent_genhw_modifier(struct perf_evlist *evlist)
849{
850 struct perf_evsel *evsel = list_entry(evlist->entries.next,
851 struct perf_evsel, node);
852
853 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
854 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
855 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
856 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
857
858 return test__checkevent_genhw(evlist);
859}
860
Jiri Olsa13b62562011-07-14 11:25:33 +0200861static struct test__event_st {
862 const char *name;
863 __u32 type;
864 int (*check)(struct perf_evlist *evlist);
865} test__events[] = {
866 {
867 .name = "syscalls:sys_enter_open",
868 .check = test__checkevent_tracepoint,
869 },
870 {
871 .name = "syscalls:*",
872 .check = test__checkevent_tracepoint_multi,
873 },
874 {
Jiri Olsa89812fc2012-03-15 20:09:15 +0100875 .name = "r1a",
Jiri Olsa13b62562011-07-14 11:25:33 +0200876 .check = test__checkevent_raw,
877 },
878 {
879 .name = "1:1",
880 .check = test__checkevent_numeric,
881 },
882 {
883 .name = "instructions",
884 .check = test__checkevent_symbolic_name,
885 },
886 {
887 .name = "faults",
888 .check = test__checkevent_symbolic_alias,
889 },
890 {
891 .name = "L1-dcache-load-miss",
892 .check = test__checkevent_genhw,
893 },
894 {
895 .name = "mem:0",
896 .check = test__checkevent_breakpoint,
897 },
898 {
899 .name = "mem:0:x",
900 .check = test__checkevent_breakpoint_x,
901 },
902 {
903 .name = "mem:0:r",
904 .check = test__checkevent_breakpoint_r,
905 },
906 {
907 .name = "mem:0:w",
908 .check = test__checkevent_breakpoint_w,
909 },
Jiri Olsa65c1e042011-12-15 16:30:39 +0100910 {
911 .name = "syscalls:sys_enter_open:k",
912 .check = test__checkevent_tracepoint_modifier,
913 },
914 {
915 .name = "syscalls:*:u",
916 .check = test__checkevent_tracepoint_multi_modifier,
917 },
918 {
Jiri Olsa89812fc2012-03-15 20:09:15 +0100919 .name = "r1a:kp",
Jiri Olsa65c1e042011-12-15 16:30:39 +0100920 .check = test__checkevent_raw_modifier,
921 },
922 {
923 .name = "1:1:hp",
924 .check = test__checkevent_numeric_modifier,
925 },
926 {
927 .name = "instructions:h",
928 .check = test__checkevent_symbolic_name_modifier,
929 },
930 {
931 .name = "faults:u",
932 .check = test__checkevent_symbolic_alias_modifier,
933 },
934 {
935 .name = "L1-dcache-load-miss:kp",
936 .check = test__checkevent_genhw_modifier,
937 },
Jiri Olsa13b62562011-07-14 11:25:33 +0200938};
939
940#define TEST__EVENTS_CNT (sizeof(test__events) / sizeof(struct test__event_st))
941
942static int test__parse_events(void)
943{
944 struct perf_evlist *evlist;
945 u_int i;
946 int ret = 0;
947
948 for (i = 0; i < TEST__EVENTS_CNT; i++) {
949 struct test__event_st *e = &test__events[i];
950
951 evlist = perf_evlist__new(NULL, NULL);
952 if (evlist == NULL)
953 break;
954
955 ret = parse_events(evlist, e->name, 0);
956 if (ret) {
957 pr_debug("failed to parse event '%s', err %d\n",
958 e->name, ret);
959 break;
960 }
961
962 ret = e->check(evlist);
963 if (ret)
964 break;
965
966 perf_evlist__delete(evlist);
967 }
968
969 return ret;
970}
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -0200971
972static int sched__get_first_possible_cpu(pid_t pid, cpu_set_t **maskp,
973 size_t *sizep)
974{
975 cpu_set_t *mask;
976 size_t size;
977 int i, cpu = -1, nrcpus = 1024;
978realloc:
979 mask = CPU_ALLOC(nrcpus);
980 size = CPU_ALLOC_SIZE(nrcpus);
981 CPU_ZERO_S(size, mask);
982
983 if (sched_getaffinity(pid, size, mask) == -1) {
984 CPU_FREE(mask);
985 if (errno == EINVAL && nrcpus < (1024 << 8)) {
986 nrcpus = nrcpus << 2;
987 goto realloc;
988 }
989 perror("sched_getaffinity");
990 return -1;
991 }
992
993 for (i = 0; i < nrcpus; i++) {
994 if (CPU_ISSET_S(i, size, mask)) {
995 if (cpu == -1) {
996 cpu = i;
997 *maskp = mask;
998 *sizep = size;
999 } else
1000 CPU_CLR_S(i, size, mask);
1001 }
1002 }
1003
1004 if (cpu == -1)
1005 CPU_FREE(mask);
1006
1007 return cpu;
1008}
1009
1010static int test__PERF_RECORD(void)
1011{
1012 struct perf_record_opts opts = {
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001013 .no_delay = true,
1014 .freq = 10,
1015 .mmap_pages = 256,
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001016 };
1017 cpu_set_t *cpu_mask = NULL;
1018 size_t cpu_mask_size = 0;
1019 struct perf_evlist *evlist = perf_evlist__new(NULL, NULL);
1020 struct perf_evsel *evsel;
1021 struct perf_sample sample;
1022 const char *cmd = "sleep";
1023 const char *argv[] = { cmd, "1", NULL, };
1024 char *bname;
1025 u64 sample_type, prev_time = 0;
1026 bool found_cmd_mmap = false,
1027 found_libc_mmap = false,
1028 found_vdso_mmap = false,
1029 found_ld_mmap = false;
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001030 int err = -1, errs = 0, i, wakeups = 0, sample_size;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001031 u32 cpu;
1032 int total_events = 0, nr_events[PERF_RECORD_MAX] = { 0, };
1033
1034 if (evlist == NULL || argv == NULL) {
1035 pr_debug("Not enough memory to create evlist\n");
1036 goto out;
1037 }
1038
1039 /*
1040 * We need at least one evsel in the evlist, use the default
1041 * one: "cycles".
1042 */
1043 err = perf_evlist__add_default(evlist);
1044 if (err < 0) {
1045 pr_debug("Not enough memory to create evsel\n");
1046 goto out_delete_evlist;
1047 }
1048
1049 /*
1050 * Create maps of threads and cpus to monitor. In this case
1051 * we start with all threads and cpus (-1, -1) but then in
1052 * perf_evlist__prepare_workload we'll fill in the only thread
1053 * we're monitoring, the one forked there.
1054 */
1055 err = perf_evlist__create_maps(evlist, opts.target_pid,
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -02001056 opts.target_tid, UINT_MAX, opts.cpu_list);
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001057 if (err < 0) {
1058 pr_debug("Not enough memory to create thread/cpu maps\n");
1059 goto out_delete_evlist;
1060 }
1061
1062 /*
1063 * Prepare the workload in argv[] to run, it'll fork it, and then wait
1064 * for perf_evlist__start_workload() to exec it. This is done this way
1065 * so that we have time to open the evlist (calling sys_perf_event_open
1066 * on all the fds) and then mmap them.
1067 */
1068 err = perf_evlist__prepare_workload(evlist, &opts, argv);
1069 if (err < 0) {
1070 pr_debug("Couldn't run the workload!\n");
1071 goto out_delete_evlist;
1072 }
1073
1074 /*
1075 * Config the evsels, setting attr->comm on the first one, etc.
1076 */
1077 evsel = list_entry(evlist->entries.next, struct perf_evsel, node);
1078 evsel->attr.sample_type |= PERF_SAMPLE_CPU;
1079 evsel->attr.sample_type |= PERF_SAMPLE_TID;
1080 evsel->attr.sample_type |= PERF_SAMPLE_TIME;
1081 perf_evlist__config_attrs(evlist, &opts);
1082
1083 err = sched__get_first_possible_cpu(evlist->workload.pid, &cpu_mask,
1084 &cpu_mask_size);
1085 if (err < 0) {
1086 pr_debug("sched__get_first_possible_cpu: %s\n", strerror(errno));
1087 goto out_delete_evlist;
1088 }
1089
1090 cpu = err;
1091
1092 /*
1093 * So that we can check perf_sample.cpu on all the samples.
1094 */
1095 if (sched_setaffinity(evlist->workload.pid, cpu_mask_size, cpu_mask) < 0) {
1096 pr_debug("sched_setaffinity: %s\n", strerror(errno));
1097 goto out_free_cpu_mask;
1098 }
1099
1100 /*
1101 * Call sys_perf_event_open on all the fds on all the evsels,
1102 * grouping them if asked to.
1103 */
1104 err = perf_evlist__open(evlist, opts.group);
1105 if (err < 0) {
1106 pr_debug("perf_evlist__open: %s\n", strerror(errno));
1107 goto out_delete_evlist;
1108 }
1109
1110 /*
1111 * mmap the first fd on a given CPU and ask for events for the other
1112 * fds in the same CPU to be injected in the same mmap ring buffer
1113 * (using ioctl(PERF_EVENT_IOC_SET_OUTPUT)).
1114 */
1115 err = perf_evlist__mmap(evlist, opts.mmap_pages, false);
1116 if (err < 0) {
1117 pr_debug("perf_evlist__mmap: %s\n", strerror(errno));
1118 goto out_delete_evlist;
1119 }
1120
1121 /*
1122 * We'll need these two to parse the PERF_SAMPLE_* fields in each
1123 * event.
1124 */
1125 sample_type = perf_evlist__sample_type(evlist);
1126 sample_size = __perf_evsel__sample_size(sample_type);
1127
1128 /*
1129 * Now that all is properly set up, enable the events, they will
1130 * count just on workload.pid, which will start...
1131 */
1132 perf_evlist__enable(evlist);
1133
1134 /*
1135 * Now!
1136 */
1137 perf_evlist__start_workload(evlist);
1138
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001139 while (1) {
1140 int before = total_events;
1141
1142 for (i = 0; i < evlist->nr_mmaps; i++) {
1143 union perf_event *event;
1144
1145 while ((event = perf_evlist__mmap_read(evlist, i)) != NULL) {
1146 const u32 type = event->header.type;
1147 const char *name = perf_event__name(type);
1148
1149 ++total_events;
1150 if (type < PERF_RECORD_MAX)
1151 nr_events[type]++;
1152
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001153 err = perf_event__parse_sample(event, sample_type,
1154 sample_size, true,
1155 &sample, false);
1156 if (err < 0) {
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001157 if (verbose)
1158 perf_event__fprintf(event, stderr);
1159 pr_debug("Couldn't parse sample\n");
1160 goto out_err;
1161 }
1162
1163 if (verbose) {
1164 pr_info("%" PRIu64" %d ", sample.time, sample.cpu);
1165 perf_event__fprintf(event, stderr);
1166 }
1167
1168 if (prev_time > sample.time) {
1169 pr_debug("%s going backwards in time, prev=%" PRIu64 ", curr=%" PRIu64 "\n",
1170 name, prev_time, sample.time);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001171 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001172 }
1173
1174 prev_time = sample.time;
1175
1176 if (sample.cpu != cpu) {
1177 pr_debug("%s with unexpected cpu, expected %d, got %d\n",
1178 name, cpu, sample.cpu);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001179 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001180 }
1181
1182 if ((pid_t)sample.pid != evlist->workload.pid) {
1183 pr_debug("%s with unexpected pid, expected %d, got %d\n",
1184 name, evlist->workload.pid, sample.pid);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001185 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001186 }
1187
1188 if ((pid_t)sample.tid != evlist->workload.pid) {
1189 pr_debug("%s with unexpected tid, expected %d, got %d\n",
1190 name, evlist->workload.pid, sample.tid);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001191 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001192 }
1193
1194 if ((type == PERF_RECORD_COMM ||
1195 type == PERF_RECORD_MMAP ||
1196 type == PERF_RECORD_FORK ||
1197 type == PERF_RECORD_EXIT) &&
1198 (pid_t)event->comm.pid != evlist->workload.pid) {
1199 pr_debug("%s with unexpected pid/tid\n", name);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001200 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001201 }
1202
1203 if ((type == PERF_RECORD_COMM ||
1204 type == PERF_RECORD_MMAP) &&
1205 event->comm.pid != event->comm.tid) {
1206 pr_debug("%s with different pid/tid!\n", name);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001207 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001208 }
1209
1210 switch (type) {
1211 case PERF_RECORD_COMM:
1212 if (strcmp(event->comm.comm, cmd)) {
1213 pr_debug("%s with unexpected comm!\n", name);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001214 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001215 }
1216 break;
1217 case PERF_RECORD_EXIT:
1218 goto found_exit;
1219 case PERF_RECORD_MMAP:
1220 bname = strrchr(event->mmap.filename, '/');
1221 if (bname != NULL) {
1222 if (!found_cmd_mmap)
1223 found_cmd_mmap = !strcmp(bname + 1, cmd);
1224 if (!found_libc_mmap)
1225 found_libc_mmap = !strncmp(bname + 1, "libc", 4);
1226 if (!found_ld_mmap)
1227 found_ld_mmap = !strncmp(bname + 1, "ld", 2);
1228 } else if (!found_vdso_mmap)
1229 found_vdso_mmap = !strcmp(event->mmap.filename, "[vdso]");
1230 break;
1231
1232 case PERF_RECORD_SAMPLE:
1233 /* Just ignore samples for now */
1234 break;
1235 default:
1236 pr_debug("Unexpected perf_event->header.type %d!\n",
1237 type);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001238 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001239 }
1240 }
1241 }
1242
1243 /*
1244 * We don't use poll here because at least at 3.1 times the
1245 * PERF_RECORD_{!SAMPLE} events don't honour
1246 * perf_event_attr.wakeup_events, just PERF_EVENT_SAMPLE does.
1247 */
1248 if (total_events == before && false)
1249 poll(evlist->pollfd, evlist->nr_fds, -1);
1250
1251 sleep(1);
1252 if (++wakeups > 5) {
1253 pr_debug("No PERF_RECORD_EXIT event!\n");
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001254 break;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001255 }
1256 }
1257
1258found_exit:
1259 if (nr_events[PERF_RECORD_COMM] > 1) {
1260 pr_debug("Excessive number of PERF_RECORD_COMM events!\n");
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001261 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001262 }
1263
1264 if (nr_events[PERF_RECORD_COMM] == 0) {
1265 pr_debug("Missing PERF_RECORD_COMM for %s!\n", cmd);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001266 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001267 }
1268
1269 if (!found_cmd_mmap) {
1270 pr_debug("PERF_RECORD_MMAP for %s missing!\n", cmd);
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001271 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001272 }
1273
1274 if (!found_libc_mmap) {
1275 pr_debug("PERF_RECORD_MMAP for %s missing!\n", "libc");
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001276 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001277 }
1278
1279 if (!found_ld_mmap) {
1280 pr_debug("PERF_RECORD_MMAP for %s missing!\n", "ld");
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001281 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001282 }
1283
1284 if (!found_vdso_mmap) {
1285 pr_debug("PERF_RECORD_MMAP for %s missing!\n", "[vdso]");
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001286 ++errs;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001287 }
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001288out_err:
1289 perf_evlist__munmap(evlist);
1290out_free_cpu_mask:
1291 CPU_FREE(cpu_mask);
1292out_delete_evlist:
1293 perf_evlist__delete(evlist);
1294out:
Arnaldo Carvalho de Melof71c49e2011-12-02 13:53:04 -02001295 return (err < 0 || errs > 0) ? -1 : 0;
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001296}
1297
Peter Zijlstra08aa0d12011-11-21 14:42:47 +01001298
1299#if defined(__x86_64__) || defined(__i386__)
1300
1301#define barrier() asm volatile("" ::: "memory")
1302
1303static u64 rdpmc(unsigned int counter)
1304{
1305 unsigned int low, high;
1306
1307 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter));
1308
1309 return low | ((u64)high) << 32;
1310}
1311
1312static u64 rdtsc(void)
1313{
1314 unsigned int low, high;
1315
1316 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1317
1318 return low | ((u64)high) << 32;
1319}
1320
1321static u64 mmap_read_self(void *addr)
1322{
1323 struct perf_event_mmap_page *pc = addr;
1324 u32 seq, idx, time_mult = 0, time_shift = 0;
1325 u64 count, cyc = 0, time_offset = 0, enabled, running, delta;
1326
1327 do {
1328 seq = pc->lock;
1329 barrier();
1330
1331 enabled = pc->time_enabled;
1332 running = pc->time_running;
1333
1334 if (enabled != running) {
1335 cyc = rdtsc();
1336 time_mult = pc->time_mult;
1337 time_shift = pc->time_shift;
1338 time_offset = pc->time_offset;
1339 }
1340
1341 idx = pc->index;
1342 count = pc->offset;
1343 if (idx)
1344 count += rdpmc(idx - 1);
1345
1346 barrier();
1347 } while (pc->lock != seq);
1348
1349 if (enabled != running) {
1350 u64 quot, rem;
1351
1352 quot = (cyc >> time_shift);
1353 rem = cyc & ((1 << time_shift) - 1);
1354 delta = time_offset + quot * time_mult +
1355 ((rem * time_mult) >> time_shift);
1356
1357 enabled += delta;
1358 if (idx)
1359 running += delta;
1360
1361 quot = count / running;
1362 rem = count % running;
1363 count = quot * enabled + (rem * enabled) / running;
1364 }
1365
1366 return count;
1367}
1368
1369/*
1370 * If the RDPMC instruction faults then signal this back to the test parent task:
1371 */
1372static void segfault_handler(int sig __used, siginfo_t *info __used, void *uc __used)
1373{
1374 exit(-1);
1375}
1376
1377static int __test__rdpmc(void)
1378{
1379 long page_size = sysconf(_SC_PAGE_SIZE);
1380 volatile int tmp = 0;
1381 u64 i, loops = 1000;
1382 int n;
1383 int fd;
1384 void *addr;
1385 struct perf_event_attr attr = {
1386 .type = PERF_TYPE_HARDWARE,
1387 .config = PERF_COUNT_HW_INSTRUCTIONS,
1388 .exclude_kernel = 1,
1389 };
1390 u64 delta_sum = 0;
1391 struct sigaction sa;
1392
1393 sigfillset(&sa.sa_mask);
1394 sa.sa_sigaction = segfault_handler;
1395 sigaction(SIGSEGV, &sa, NULL);
1396
1397 fprintf(stderr, "\n\n");
1398
1399 fd = sys_perf_event_open(&attr, 0, -1, -1, 0);
1400 if (fd < 0) {
1401 die("Error: sys_perf_event_open() syscall returned "
1402 "with %d (%s)\n", fd, strerror(errno));
1403 }
1404
1405 addr = mmap(NULL, page_size, PROT_READ, MAP_SHARED, fd, 0);
1406 if (addr == (void *)(-1)) {
1407 die("Error: mmap() syscall returned "
1408 "with (%s)\n", strerror(errno));
1409 }
1410
1411 for (n = 0; n < 6; n++) {
1412 u64 stamp, now, delta;
1413
1414 stamp = mmap_read_self(addr);
1415
1416 for (i = 0; i < loops; i++)
1417 tmp++;
1418
1419 now = mmap_read_self(addr);
1420 loops *= 10;
1421
1422 delta = now - stamp;
1423 fprintf(stderr, "%14d: %14Lu\n", n, (long long)delta);
1424
1425 delta_sum += delta;
1426 }
1427
1428 munmap(addr, page_size);
1429 close(fd);
1430
1431 fprintf(stderr, " ");
1432
1433 if (!delta_sum)
1434 return -1;
1435
1436 return 0;
1437}
1438
1439static int test__rdpmc(void)
1440{
1441 int status = 0;
1442 int wret = 0;
1443 int ret;
1444 int pid;
1445
1446 pid = fork();
1447 if (pid < 0)
1448 return -1;
1449
1450 if (!pid) {
1451 ret = __test__rdpmc();
1452
1453 exit(ret);
1454 }
1455
1456 wret = waitpid(pid, &status, 0);
1457 if (wret < 0 || status)
1458 return -1;
1459
1460 return 0;
1461}
1462
1463#endif
1464
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001465static struct test {
1466 const char *desc;
1467 int (*func)(void);
1468} tests[] = {
1469 {
1470 .desc = "vmlinux symtab matches kallsyms",
1471 .func = test__vmlinux_matches_kallsyms,
1472 },
1473 {
Arnaldo Carvalho de Melod8548612011-01-04 00:16:20 -02001474 .desc = "detect open syscall event",
1475 .func = test__open_syscall_event,
1476 },
1477 {
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001478 .desc = "detect open syscall event on all cpus",
1479 .func = test__open_syscall_event_on_all_cpus,
1480 },
1481 {
Arnaldo Carvalho de Melode5fa3a2011-01-15 10:42:46 -02001482 .desc = "read samples using the mmap interface",
1483 .func = test__basic_mmap,
1484 },
1485 {
Jiri Olsa13b62562011-07-14 11:25:33 +02001486 .desc = "parse events tests",
1487 .func = test__parse_events,
1488 },
Peter Zijlstra08aa0d12011-11-21 14:42:47 +01001489#if defined(__x86_64__) || defined(__i386__)
1490 {
1491 .desc = "x86 rdpmc test",
1492 .func = test__rdpmc,
1493 },
1494#endif
Jiri Olsa13b62562011-07-14 11:25:33 +02001495 {
Arnaldo Carvalho de Melo3e7c4392011-12-02 11:13:50 -02001496 .desc = "Validate PERF_RECORD_* events & perf_sample fields",
1497 .func = test__PERF_RECORD,
1498 },
1499 {
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001500 .func = NULL,
1501 },
1502};
1503
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001504static bool perf_test__matches(int curr, int argc, const char *argv[])
1505{
1506 int i;
1507
1508 if (argc == 0)
1509 return true;
1510
1511 for (i = 0; i < argc; ++i) {
1512 char *end;
1513 long nr = strtoul(argv[i], &end, 10);
1514
1515 if (*end == '\0') {
1516 if (nr == curr + 1)
1517 return true;
1518 continue;
1519 }
1520
1521 if (strstr(tests[curr].desc, argv[i]))
1522 return true;
1523 }
1524
1525 return false;
1526}
1527
1528static int __cmd_test(int argc, const char *argv[])
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001529{
1530 int i = 0;
1531
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001532 while (tests[i].func) {
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001533 int curr = i++, err;
1534
1535 if (!perf_test__matches(curr, argc, argv))
1536 continue;
1537
1538 pr_info("%2d: %s:", i, tests[curr].desc);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001539 pr_debug("\n--- start ---\n");
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001540 err = tests[curr].func();
1541 pr_debug("---- end ----\n%s:", tests[curr].desc);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001542 pr_info(" %s\n", err ? "FAILED!\n" : "Ok");
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001543 }
1544
1545 return 0;
1546}
1547
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001548static int perf_test__list(int argc, const char **argv)
1549{
1550 int i = 0;
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001551
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001552 while (tests[i].func) {
1553 int curr = i++;
1554
1555 if (argc > 1 && !strstr(tests[curr].desc, argv[1]))
1556 continue;
1557
1558 pr_info("%2d: %s\n", i, tests[curr].desc);
1559 }
1560
1561 return 0;
1562}
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001563
1564int cmd_test(int argc, const char **argv, const char *prefix __used)
1565{
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001566 const char * const test_usage[] = {
1567 "perf test [<options>] [{list <test-name-fragment>|[<test-name-fragments>|<test-numbers>]}]",
1568 NULL,
1569 };
1570 const struct option test_options[] = {
Namhyung Kimc30ab8a2012-01-08 02:25:26 +09001571 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001572 "be more verbose (show symbol address, etc)"),
1573 OPT_END()
1574 };
1575
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001576 argc = parse_options(argc, argv, test_options, test_usage, 0);
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001577 if (argc >= 1 && !strcmp(argv[0], "list"))
1578 return perf_test__list(argc, argv);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001579
1580 symbol_conf.priv_size = sizeof(int);
1581 symbol_conf.sort_by_name = true;
1582 symbol_conf.try_vmlinux_path = true;
1583
1584 if (symbol__init() < 0)
1585 return -1;
1586
Arnaldo Carvalho de Meloe60770a2011-11-29 12:52:07 -02001587 return __cmd_test(argc, argv);
Arnaldo Carvalho de Melo1c6a8002010-04-29 18:58:32 -03001588}