Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Arnaldo Carvalho de Melo | a43783a | 2017-04-18 10:46:11 -0300 | [diff] [blame] | 2 | #include <errno.h> |
Arnaldo Carvalho de Melo | fd20e81 | 2017-04-17 15:23:08 -0300 | [diff] [blame] | 3 | #include <inttypes.h> |
Arnaldo Carvalho de Melo | f2a39fe | 2019-08-30 14:45:20 -0300 | [diff] [blame] | 4 | #include <limits.h> |
Arnaldo Carvalho de Melo | aeb00b1 | 2019-08-22 15:40:29 -0300 | [diff] [blame] | 5 | #include <stdbool.h> |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 6 | #include <stdio.h> |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 7 | #include <unistd.h> |
Borislav Petkov | d944c4e | 2014-04-25 21:31:02 +0200 | [diff] [blame] | 8 | #include <linux/types.h> |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 9 | #include <sys/prctl.h> |
Jiri Olsa | 9c3516d | 2019-07-21 13:24:30 +0200 | [diff] [blame] | 10 | #include <perf/cpumap.h> |
Jiri Olsa | 453fa03 | 2019-07-21 13:24:43 +0200 | [diff] [blame] | 11 | #include <perf/evlist.h> |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 12 | |
Arnaldo Carvalho de Melo | b420902 | 2019-08-29 15:56:40 -0300 | [diff] [blame] | 13 | #include "debug.h" |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 14 | #include "parse-events.h" |
| 15 | #include "evlist.h" |
| 16 | #include "evsel.h" |
| 17 | #include "thread_map.h" |
Arnaldo Carvalho de Melo | aeb00b1 | 2019-08-22 15:40:29 -0300 | [diff] [blame] | 18 | #include "record.h" |
Adrian Hunter | 0b43786 | 2014-07-14 13:03:03 +0300 | [diff] [blame] | 19 | #include "tsc.h" |
Matt Fleming | d8b167f | 2015-10-05 15:40:20 +0100 | [diff] [blame] | 20 | #include "tests/tests.h" |
| 21 | |
| 22 | #include "arch-tests.h" |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 23 | |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 24 | #define CHECK__(x) { \ |
| 25 | while ((x) < 0) { \ |
| 26 | pr_debug(#x " failed!\n"); \ |
| 27 | goto out_err; \ |
| 28 | } \ |
| 29 | } |
| 30 | |
| 31 | #define CHECK_NOT_NULL__(x) { \ |
| 32 | while ((x) == NULL) { \ |
| 33 | pr_debug(#x " failed!\n"); \ |
| 34 | goto out_err; \ |
| 35 | } \ |
| 36 | } |
| 37 | |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 38 | /** |
| 39 | * test__perf_time_to_tsc - test converting perf time to TSC. |
| 40 | * |
| 41 | * This function implements a test that checks that the conversion of perf time |
| 42 | * to and from TSC is consistent with the order of events. If the test passes |
| 43 | * %0 is returned, otherwise %-1 is returned. If TSC conversion is not |
| 44 | * supported then then the test passes but " (not supported)" is printed. |
| 45 | */ |
Arnaldo Carvalho de Melo | 81f17c9 | 2017-08-03 15:16:31 -0300 | [diff] [blame] | 46 | int test__perf_time_to_tsc(struct test *test __maybe_unused, int subtest __maybe_unused) |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 47 | { |
Arnaldo Carvalho de Melo | b400679 | 2013-12-19 14:43:45 -0300 | [diff] [blame] | 48 | struct record_opts opts = { |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 49 | .mmap_pages = UINT_MAX, |
| 50 | .user_freq = UINT_MAX, |
| 51 | .user_interval = ULLONG_MAX, |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 52 | .target = { |
| 53 | .uses_mmap = true, |
| 54 | }, |
| 55 | .sample_time = true, |
| 56 | }; |
Jiri Olsa | 9749b90 | 2019-07-21 13:23:50 +0200 | [diff] [blame] | 57 | struct perf_thread_map *threads = NULL; |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 58 | struct perf_cpu_map *cpus = NULL; |
Jiri Olsa | 63503db | 2019-07-21 13:23:52 +0200 | [diff] [blame] | 59 | struct evlist *evlist = NULL; |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 60 | struct evsel *evsel = NULL; |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 61 | int err = -1, ret, i; |
| 62 | const char *comm1, *comm2; |
| 63 | struct perf_tsc_conversion tc; |
| 64 | struct perf_event_mmap_page *pc; |
| 65 | union perf_event *event; |
| 66 | u64 test_tsc, comm1_tsc, comm2_tsc; |
| 67 | u64 test_time, comm1_time = 0, comm2_time = 0; |
Jiri Olsa | a583053 | 2019-07-27 20:30:53 +0200 | [diff] [blame] | 68 | struct mmap *md; |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 69 | |
| 70 | threads = thread_map__new(-1, getpid(), UINT_MAX); |
| 71 | CHECK_NOT_NULL__(threads); |
| 72 | |
Jiri Olsa | 9c3516d | 2019-07-21 13:24:30 +0200 | [diff] [blame] | 73 | cpus = perf_cpu_map__new(NULL); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 74 | CHECK_NOT_NULL__(cpus); |
| 75 | |
Jiri Olsa | 0f98b11 | 2019-07-21 13:23:55 +0200 | [diff] [blame] | 76 | evlist = evlist__new(); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 77 | CHECK_NOT_NULL__(evlist); |
| 78 | |
Jiri Olsa | 453fa03 | 2019-07-21 13:24:43 +0200 | [diff] [blame] | 79 | perf_evlist__set_maps(&evlist->core, cpus, threads); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 80 | |
Jiri Olsa | b39b839 | 2015-04-22 21:10:16 +0200 | [diff] [blame] | 81 | CHECK__(parse_events(evlist, "cycles:u", NULL)); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 82 | |
Arnaldo Carvalho de Melo | e68ae9c | 2016-04-11 18:15:29 -0300 | [diff] [blame] | 83 | perf_evlist__config(evlist, &opts, NULL); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 84 | |
| 85 | evsel = perf_evlist__first(evlist); |
| 86 | |
Jiri Olsa | 1fc632c | 2019-07-21 13:24:29 +0200 | [diff] [blame] | 87 | evsel->core.attr.comm = 1; |
| 88 | evsel->core.attr.disabled = 1; |
| 89 | evsel->core.attr.enable_on_exec = 0; |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 90 | |
Jiri Olsa | 474ddc4 | 2019-07-21 13:24:06 +0200 | [diff] [blame] | 91 | CHECK__(evlist__open(evlist)); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 92 | |
Jiri Olsa | 9521b5f | 2019-07-28 12:45:35 +0200 | [diff] [blame^] | 93 | CHECK__(evlist__mmap(evlist, UINT_MAX)); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 94 | |
| 95 | pc = evlist->mmap[0].base; |
| 96 | ret = perf_read_tsc_conversion(pc, &tc); |
| 97 | if (ret) { |
| 98 | if (ret == -EOPNOTSUPP) { |
| 99 | fprintf(stderr, " (not supported)"); |
| 100 | return 0; |
| 101 | } |
| 102 | goto out_err; |
| 103 | } |
| 104 | |
Jiri Olsa | 1c87f16 | 2019-07-21 13:24:08 +0200 | [diff] [blame] | 105 | evlist__enable(evlist); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 106 | |
| 107 | comm1 = "Test COMM 1"; |
| 108 | CHECK__(prctl(PR_SET_NAME, (unsigned long)comm1, 0, 0, 0)); |
| 109 | |
| 110 | test_tsc = rdtsc(); |
| 111 | |
| 112 | comm2 = "Test COMM 2"; |
| 113 | CHECK__(prctl(PR_SET_NAME, (unsigned long)comm2, 0, 0, 0)); |
| 114 | |
Jiri Olsa | e74676d | 2019-07-21 13:24:09 +0200 | [diff] [blame] | 115 | evlist__disable(evlist); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 116 | |
| 117 | for (i = 0; i < evlist->nr_mmaps; i++) { |
Kan Liang | 9dfb85d | 2018-03-01 18:09:07 -0500 | [diff] [blame] | 118 | md = &evlist->mmap[i]; |
Kan Liang | b9bae2c | 2018-03-06 10:36:07 -0500 | [diff] [blame] | 119 | if (perf_mmap__read_init(md) < 0) |
Kan Liang | 9dfb85d | 2018-03-01 18:09:07 -0500 | [diff] [blame] | 120 | continue; |
| 121 | |
Kan Liang | 0019dc87 | 2018-03-06 10:36:06 -0500 | [diff] [blame] | 122 | while ((event = perf_mmap__read_event(md)) != NULL) { |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 123 | struct perf_sample sample; |
| 124 | |
| 125 | if (event->header.type != PERF_RECORD_COMM || |
| 126 | (pid_t)event->comm.pid != getpid() || |
| 127 | (pid_t)event->comm.tid != getpid()) |
Zhouyi Zhou | 8e50d38 | 2013-10-24 15:43:33 +0800 | [diff] [blame] | 128 | goto next_event; |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 129 | |
| 130 | if (strcmp(event->comm.comm, comm1) == 0) { |
| 131 | CHECK__(perf_evsel__parse_sample(evsel, event, |
| 132 | &sample)); |
| 133 | comm1_time = sample.time; |
| 134 | } |
| 135 | if (strcmp(event->comm.comm, comm2) == 0) { |
| 136 | CHECK__(perf_evsel__parse_sample(evsel, event, |
| 137 | &sample)); |
| 138 | comm2_time = sample.time; |
| 139 | } |
Zhouyi Zhou | 8e50d38 | 2013-10-24 15:43:33 +0800 | [diff] [blame] | 140 | next_event: |
Kan Liang | d6ace3d | 2018-03-06 10:36:05 -0500 | [diff] [blame] | 141 | perf_mmap__consume(md); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 142 | } |
Kan Liang | 9dfb85d | 2018-03-01 18:09:07 -0500 | [diff] [blame] | 143 | perf_mmap__read_done(md); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | if (!comm1_time || !comm2_time) |
| 147 | goto out_err; |
| 148 | |
| 149 | test_time = tsc_to_perf_time(test_tsc, &tc); |
| 150 | comm1_tsc = perf_time_to_tsc(comm1_time, &tc); |
| 151 | comm2_tsc = perf_time_to_tsc(comm2_time, &tc); |
| 152 | |
| 153 | pr_debug("1st event perf time %"PRIu64" tsc %"PRIu64"\n", |
| 154 | comm1_time, comm1_tsc); |
| 155 | pr_debug("rdtsc time %"PRIu64" tsc %"PRIu64"\n", |
| 156 | test_time, test_tsc); |
| 157 | pr_debug("2nd event perf time %"PRIu64" tsc %"PRIu64"\n", |
| 158 | comm2_time, comm2_tsc); |
| 159 | |
| 160 | if (test_time <= comm1_time || |
| 161 | test_time >= comm2_time) |
| 162 | goto out_err; |
| 163 | |
| 164 | if (test_tsc <= comm1_tsc || |
| 165 | test_tsc >= comm2_tsc) |
| 166 | goto out_err; |
| 167 | |
| 168 | err = 0; |
| 169 | |
| 170 | out_err: |
Jiri Olsa | c12995a | 2019-07-21 13:23:56 +0200 | [diff] [blame] | 171 | evlist__delete(evlist); |
Adrian Hunter | 3bd5a5f | 2013-06-28 16:22:19 +0300 | [diff] [blame] | 172 | return err; |
| 173 | } |