blob: 4dd0fcc06db96b41b52c4c84fad8c7a4c926fff6 [file] [log] [blame]
Arnaldo Carvalho de Melof8a95302011-01-30 10:46:46 -02001/*
2 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
3 *
4 * Parts came from builtin-{top,stat,record}.c, see those files for further
5 * copyright notes.
6 *
7 * Released under the GPL v2. (and only v2, not any later version)
8 */
9
David Ahern936be502011-09-06 09:12:26 -060010#include <byteswap.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030011#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030012#include <inttypes.h>
Jiri Olsa0f6a3012012-08-07 15:20:45 +020013#include <linux/bitops.h>
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -030014#include <api/fs/fs.h>
Jiri Olsa4605eab2015-09-02 09:56:43 +020015#include <api/fs/tracing_path.h>
Robert Richter4e319022013-06-11 17:29:18 +020016#include <traceevent/event-parse.h>
17#include <linux/hw_breakpoint.h>
18#include <linux/perf_event.h>
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -030019#include <linux/compiler.h>
Jiri Olsa8dd2a132015-09-07 10:38:06 +020020#include <linux/err.h>
Arnaldo Carvalho de Melo86a5e0c2017-04-19 19:03:14 -030021#include <sys/ioctl.h>
Andi Kleenbec19672013-08-04 19:41:26 -070022#include <sys/resource.h>
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -030023#include <sys/types.h>
24#include <dirent.h>
Robert Richter4e319022013-06-11 17:29:18 +020025#include "asm/bug.h"
Arnaldo Carvalho de Melo8f651ea2014-10-09 16:12:24 -030026#include "callchain.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030027#include "cgroup.h"
Arnaldo Carvalho de Melo5ab8c682017-04-25 15:30:47 -030028#include "event.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020029#include "evsel.h"
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -020030#include "evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020031#include "util.h"
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -020032#include "cpumap.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020033#include "thread_map.h"
Namhyung Kim12864b32012-04-26 14:15:22 +090034#include "target.h"
Jiri Olsa26d33022012-08-07 15:20:47 +020035#include "perf_regs.h"
Adrian Huntere3e1a542013-08-14 15:48:24 +030036#include "debug.h"
Jiri Olsa97978b32013-12-03 14:09:24 +010037#include "trace-event.h"
Jiri Olsaa9a3a4d2015-06-14 10:19:26 +020038#include "stat.h"
Andi Kleenac12f672016-10-12 14:02:06 -070039#include "util/parse-branch-options.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020040
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030041#include "sane_ctype.h"
42
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030043static struct {
44 bool sample_id_all;
45 bool exclude_guest;
Stephane Eranian5c5e8542013-08-21 12:10:25 +020046 bool mmap2;
Yann Droneaud57480d22014-06-30 22:28:47 +020047 bool cloexec;
Peter Zijlstra814c8c32015-03-31 00:19:31 +020048 bool clockid;
49 bool clockid_wrong;
Andi Kleenbd0f8892015-12-11 16:12:24 -080050 bool lbr_flags;
Wang Nanb90dc172016-05-20 16:38:23 +000051 bool write_backward;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030052} perf_missing_features;
53
Peter Zijlstra814c8c32015-03-31 00:19:31 +020054static clockid_t clockid;
55
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030056static int perf_evsel__no_extra_init(struct perf_evsel *evsel __maybe_unused)
57{
58 return 0;
59}
60
Jiri Olsa10213e22017-07-03 16:50:18 +020061void __weak test_attr__ready(void) { }
62
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030063static void perf_evsel__no_extra_fini(struct perf_evsel *evsel __maybe_unused)
64{
65}
66
67static struct {
68 size_t size;
69 int (*init)(struct perf_evsel *evsel);
70 void (*fini)(struct perf_evsel *evsel);
71} perf_evsel__object = {
72 .size = sizeof(struct perf_evsel),
73 .init = perf_evsel__no_extra_init,
74 .fini = perf_evsel__no_extra_fini,
75};
76
77int perf_evsel__object_config(size_t object_size,
78 int (*init)(struct perf_evsel *evsel),
79 void (*fini)(struct perf_evsel *evsel))
80{
81
82 if (object_size == 0)
83 goto set_methods;
84
85 if (perf_evsel__object.size > object_size)
86 return -EINVAL;
87
88 perf_evsel__object.size = object_size;
89
90set_methods:
91 if (init != NULL)
92 perf_evsel__object.init = init;
93
94 if (fini != NULL)
95 perf_evsel__object.fini = fini;
96
97 return 0;
98}
99
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200100#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
101
Adrian Hunter75562572013-08-27 11:23:09 +0300102int __perf_evsel__sample_size(u64 sample_type)
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300103{
104 u64 mask = sample_type & PERF_SAMPLE_MASK;
105 int size = 0;
106 int i;
107
108 for (i = 0; i < 64; i++) {
109 if (mask & (1ULL << i))
110 size++;
111 }
112
113 size *= sizeof(u64);
114
115 return size;
116}
117
Adrian Hunter75562572013-08-27 11:23:09 +0300118/**
119 * __perf_evsel__calc_id_pos - calculate id_pos.
120 * @sample_type: sample type
121 *
122 * This function returns the position of the event id (PERF_SAMPLE_ID or
123 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct
124 * sample_event.
125 */
126static int __perf_evsel__calc_id_pos(u64 sample_type)
127{
128 int idx = 0;
129
130 if (sample_type & PERF_SAMPLE_IDENTIFIER)
131 return 0;
132
133 if (!(sample_type & PERF_SAMPLE_ID))
134 return -1;
135
136 if (sample_type & PERF_SAMPLE_IP)
137 idx += 1;
138
139 if (sample_type & PERF_SAMPLE_TID)
140 idx += 1;
141
142 if (sample_type & PERF_SAMPLE_TIME)
143 idx += 1;
144
145 if (sample_type & PERF_SAMPLE_ADDR)
146 idx += 1;
147
148 return idx;
149}
150
151/**
152 * __perf_evsel__calc_is_pos - calculate is_pos.
153 * @sample_type: sample type
154 *
155 * This function returns the position (counting backwards) of the event id
156 * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if
157 * sample_id_all is used there is an id sample appended to non-sample events.
158 */
159static int __perf_evsel__calc_is_pos(u64 sample_type)
160{
161 int idx = 1;
162
163 if (sample_type & PERF_SAMPLE_IDENTIFIER)
164 return 1;
165
166 if (!(sample_type & PERF_SAMPLE_ID))
167 return -1;
168
169 if (sample_type & PERF_SAMPLE_CPU)
170 idx += 1;
171
172 if (sample_type & PERF_SAMPLE_STREAM_ID)
173 idx += 1;
174
175 return idx;
176}
177
178void perf_evsel__calc_id_pos(struct perf_evsel *evsel)
179{
180 evsel->id_pos = __perf_evsel__calc_id_pos(evsel->attr.sample_type);
181 evsel->is_pos = __perf_evsel__calc_is_pos(evsel->attr.sample_type);
182}
183
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300184void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
185 enum perf_event_sample_format bit)
186{
187 if (!(evsel->attr.sample_type & bit)) {
188 evsel->attr.sample_type |= bit;
189 evsel->sample_size += sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300190 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300191 }
192}
193
194void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
195 enum perf_event_sample_format bit)
196{
197 if (evsel->attr.sample_type & bit) {
198 evsel->attr.sample_type &= ~bit;
199 evsel->sample_size -= sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300200 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300201 }
202}
203
Adrian Hunter75562572013-08-27 11:23:09 +0300204void perf_evsel__set_sample_id(struct perf_evsel *evsel,
205 bool can_sample_identifier)
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300206{
Adrian Hunter75562572013-08-27 11:23:09 +0300207 if (can_sample_identifier) {
208 perf_evsel__reset_sample_bit(evsel, ID);
209 perf_evsel__set_sample_bit(evsel, IDENTIFIER);
210 } else {
211 perf_evsel__set_sample_bit(evsel, ID);
212 }
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300213 evsel->attr.read_format |= PERF_FORMAT_ID;
214}
215
Arnaldo Carvalho de Melo5496bc02016-07-07 11:51:47 -0300216/**
217 * perf_evsel__is_function_event - Return whether given evsel is a function
218 * trace event
219 *
220 * @evsel - evsel selector to be tested
221 *
222 * Return %true if event is function trace event
223 */
224bool perf_evsel__is_function_event(struct perf_evsel *evsel)
225{
226#define FUNCTION_EVENT "ftrace:function"
227
228 return evsel->name &&
229 !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
230
231#undef FUNCTION_EVENT
232}
233
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200234void perf_evsel__init(struct perf_evsel *evsel,
235 struct perf_event_attr *attr, int idx)
236{
237 evsel->idx = idx;
Adrian Hunter60b08962014-07-31 09:00:52 +0300238 evsel->tracking = !idx;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200239 evsel->attr = *attr;
Namhyung Kim2cfda562012-11-29 15:38:29 +0900240 evsel->leader = evsel;
Stephane Eranian410136f2013-11-12 17:58:49 +0100241 evsel->unit = "";
242 evsel->scale = 1.0;
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -0400243 evsel->evlist = NULL;
Wang Nan1f45b1d2015-10-14 12:41:18 +0000244 evsel->bpf_fd = -1;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200245 INIT_LIST_HEAD(&evsel->node);
Jiri Olsa930a2e22015-07-29 05:42:10 -0400246 INIT_LIST_HEAD(&evsel->config_terms);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300247 perf_evsel__object.init(evsel);
Arnaldo Carvalho de Melobde09462012-08-01 18:53:11 -0300248 evsel->sample_size = __perf_evsel__sample_size(attr->sample_type);
Adrian Hunter75562572013-08-27 11:23:09 +0300249 perf_evsel__calc_id_pos(evsel);
Wang Nan15bfd2c2015-07-10 07:36:09 +0000250 evsel->cmdline_group_boundary = false;
Andi Kleen37932c12017-03-20 13:17:08 -0700251 evsel->metric_expr = NULL;
Andi Kleen96284812017-03-20 13:17:10 -0700252 evsel->metric_name = NULL;
Andi Kleen37932c12017-03-20 13:17:08 -0700253 evsel->metric_events = NULL;
254 evsel->collect_stat = false;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200255}
256
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300257struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200258{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300259 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200260
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200261 if (evsel != NULL)
262 perf_evsel__init(evsel, attr, idx);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200263
Wang Nan03e0a7d2016-02-22 09:10:37 +0000264 if (perf_evsel__is_bpf_output(evsel)) {
Wang Nand37ba882016-04-01 13:26:42 +0000265 evsel->attr.sample_type |= (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
266 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Wang Nan03e0a7d2016-02-22 09:10:37 +0000267 evsel->attr.sample_period = 1;
268 }
269
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200270 return evsel;
271}
272
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300273struct perf_evsel *perf_evsel__new_cycles(bool precise)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300274{
275 struct perf_event_attr attr = {
276 .type = PERF_TYPE_HARDWARE,
277 .config = PERF_COUNT_HW_CPU_CYCLES,
Arnaldo Carvalho de Melod37a3692017-07-10 16:08:07 -0300278 .exclude_kernel = geteuid() != 0,
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300279 };
280 struct perf_evsel *evsel;
281
282 event_attr_init(&attr);
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300283
284 if (!precise)
285 goto new_event;
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300286 /*
287 * Unnamed union member, not supported as struct member named
288 * initializer in older compilers such as gcc 4.4.7
289 *
290 * Just for probing the precise_ip:
291 */
292 attr.sample_period = 1;
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300293
294 perf_event_attr__set_max_precise_ip(&attr);
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300295 /*
296 * Now let the usual logic to set up the perf_event_attr defaults
297 * to kick in when we return and before perf_evsel__open() is called.
298 */
299 attr.sample_period = 0;
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300300new_event:
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300301 evsel = perf_evsel__new(&attr);
302 if (evsel == NULL)
303 goto out;
304
305 /* use asprintf() because free(evsel) assumes name is allocated */
Arnaldo Carvalho de Meloede56262017-07-10 16:19:25 -0300306 if (asprintf(&evsel->name, "cycles%s%s%.*s",
307 (attr.precise_ip || attr.exclude_kernel) ? ":" : "",
308 attr.exclude_kernel ? "u" : "",
309 attr.precise_ip ? attr.precise_ip + 1 : 0, "ppp") < 0)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300310 goto error_free;
311out:
312 return evsel;
313error_free:
314 perf_evsel__delete(evsel);
315 evsel = NULL;
316 goto out;
317}
318
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200319/*
320 * Returns pointer with encoded error via <linux/err.h> interface.
321 */
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300322struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx)
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300323{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300324 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200325 int err = -ENOMEM;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300326
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200327 if (evsel == NULL) {
328 goto out_err;
329 } else {
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300330 struct perf_event_attr attr = {
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300331 .type = PERF_TYPE_TRACEPOINT,
332 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
333 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300334 };
335
Arnaldo Carvalho de Meloe48ffe22012-09-26 17:11:38 -0300336 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
337 goto out_free;
338
Jiri Olsa97978b32013-12-03 14:09:24 +0100339 evsel->tp_format = trace_event__tp_format(sys, name);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200340 if (IS_ERR(evsel->tp_format)) {
341 err = PTR_ERR(evsel->tp_format);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300342 goto out_free;
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200343 }
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300344
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300345 event_attr_init(&attr);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300346 attr.config = evsel->tp_format->id;
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300347 attr.sample_period = 1;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300348 perf_evsel__init(evsel, &attr, idx);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300349 }
350
351 return evsel;
352
353out_free:
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300354 zfree(&evsel->name);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300355 free(evsel);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200356out_err:
357 return ERR_PTR(err);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300358}
359
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300360const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300361 "cycles",
362 "instructions",
363 "cache-references",
364 "cache-misses",
365 "branches",
366 "branch-misses",
367 "bus-cycles",
368 "stalled-cycles-frontend",
369 "stalled-cycles-backend",
370 "ref-cycles",
371};
372
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300373static const char *__perf_evsel__hw_name(u64 config)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300374{
375 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
376 return perf_evsel__hw_names[config];
377
378 return "unknown-hardware";
379}
380
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300381static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300382{
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300383 int colon = 0, r = 0;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300384 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300385 bool exclude_guest_default = false;
386
387#define MOD_PRINT(context, mod) do { \
388 if (!attr->exclude_##context) { \
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300389 if (!colon) colon = ++r; \
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300390 r += scnprintf(bf + r, size - r, "%c", mod); \
391 } } while(0)
392
393 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
394 MOD_PRINT(kernel, 'k');
395 MOD_PRINT(user, 'u');
396 MOD_PRINT(hv, 'h');
397 exclude_guest_default = true;
398 }
399
400 if (attr->precise_ip) {
401 if (!colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300402 colon = ++r;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300403 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
404 exclude_guest_default = true;
405 }
406
407 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
408 MOD_PRINT(host, 'H');
409 MOD_PRINT(guest, 'G');
410 }
411#undef MOD_PRINT
412 if (colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300413 bf[colon - 1] = ':';
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300414 return r;
415}
416
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300417static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
418{
419 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
420 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
421}
422
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300423const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300424 "cpu-clock",
425 "task-clock",
426 "page-faults",
427 "context-switches",
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300428 "cpu-migrations",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300429 "minor-faults",
430 "major-faults",
431 "alignment-faults",
432 "emulation-faults",
Adrian Hunterd22d1a22013-08-31 21:50:52 +0300433 "dummy",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300434};
435
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300436static const char *__perf_evsel__sw_name(u64 config)
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300437{
438 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
439 return perf_evsel__sw_names[config];
440 return "unknown-software";
441}
442
443static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
444{
445 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
446 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
447}
448
Jiri Olsa287e74a2012-06-28 23:18:49 +0200449static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
450{
451 int r;
452
453 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
454
455 if (type & HW_BREAKPOINT_R)
456 r += scnprintf(bf + r, size - r, "r");
457
458 if (type & HW_BREAKPOINT_W)
459 r += scnprintf(bf + r, size - r, "w");
460
461 if (type & HW_BREAKPOINT_X)
462 r += scnprintf(bf + r, size - r, "x");
463
464 return r;
465}
466
467static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size)
468{
469 struct perf_event_attr *attr = &evsel->attr;
470 int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
471 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
472}
473
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300474const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
475 [PERF_EVSEL__MAX_ALIASES] = {
476 { "L1-dcache", "l1-d", "l1d", "L1-data", },
477 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
478 { "LLC", "L2", },
479 { "dTLB", "d-tlb", "Data-TLB", },
480 { "iTLB", "i-tlb", "Instruction-TLB", },
481 { "branch", "branches", "bpu", "btb", "bpc", },
482 { "node", },
483};
484
485const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
486 [PERF_EVSEL__MAX_ALIASES] = {
487 { "load", "loads", "read", },
488 { "store", "stores", "write", },
489 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
490};
491
492const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
493 [PERF_EVSEL__MAX_ALIASES] = {
494 { "refs", "Reference", "ops", "access", },
495 { "misses", "miss", },
496};
497
498#define C(x) PERF_COUNT_HW_CACHE_##x
499#define CACHE_READ (1 << C(OP_READ))
500#define CACHE_WRITE (1 << C(OP_WRITE))
501#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
502#define COP(x) (1 << x)
503
504/*
505 * cache operartion stat
506 * L1I : Read and prefetch only
507 * ITLB and BPU : Read-only
508 */
509static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
510 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
511 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
512 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
513 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
514 [C(ITLB)] = (CACHE_READ),
515 [C(BPU)] = (CACHE_READ),
516 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
517};
518
519bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
520{
521 if (perf_evsel__hw_cache_stat[type] & COP(op))
522 return true; /* valid */
523 else
524 return false; /* invalid */
525}
526
527int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
528 char *bf, size_t size)
529{
530 if (result) {
531 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
532 perf_evsel__hw_cache_op[op][0],
533 perf_evsel__hw_cache_result[result][0]);
534 }
535
536 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
537 perf_evsel__hw_cache_op[op][1]);
538}
539
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300540static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300541{
542 u8 op, result, type = (config >> 0) & 0xff;
543 const char *err = "unknown-ext-hardware-cache-type";
544
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300545 if (type >= PERF_COUNT_HW_CACHE_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300546 goto out_err;
547
548 op = (config >> 8) & 0xff;
549 err = "unknown-ext-hardware-cache-op";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300550 if (op >= PERF_COUNT_HW_CACHE_OP_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300551 goto out_err;
552
553 result = (config >> 16) & 0xff;
554 err = "unknown-ext-hardware-cache-result";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300555 if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300556 goto out_err;
557
558 err = "invalid-cache";
559 if (!perf_evsel__is_cache_op_valid(type, op))
560 goto out_err;
561
562 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
563out_err:
564 return scnprintf(bf, size, "%s", err);
565}
566
567static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
568{
569 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
570 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
571}
572
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300573static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
574{
575 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
576 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
577}
578
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300579const char *perf_evsel__name(struct perf_evsel *evsel)
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300580{
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300581 char bf[128];
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300582
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300583 if (evsel->name)
584 return evsel->name;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300585
586 switch (evsel->attr.type) {
587 case PERF_TYPE_RAW:
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300588 perf_evsel__raw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300589 break;
590
591 case PERF_TYPE_HARDWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300592 perf_evsel__hw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300593 break;
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300594
595 case PERF_TYPE_HW_CACHE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300596 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300597 break;
598
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300599 case PERF_TYPE_SOFTWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300600 perf_evsel__sw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300601 break;
602
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300603 case PERF_TYPE_TRACEPOINT:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300604 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300605 break;
606
Jiri Olsa287e74a2012-06-28 23:18:49 +0200607 case PERF_TYPE_BREAKPOINT:
608 perf_evsel__bp_name(evsel, bf, sizeof(bf));
609 break;
610
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300611 default:
Robert Richterca1b1452012-08-16 21:10:18 +0200612 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
613 evsel->attr.type);
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300614 break;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300615 }
616
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300617 evsel->name = strdup(bf);
618
619 return evsel->name ?: "unknown";
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300620}
621
Namhyung Kim717e2632013-01-22 18:09:44 +0900622const char *perf_evsel__group_name(struct perf_evsel *evsel)
623{
624 return evsel->group_name ?: "anon group";
625}
626
627int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size)
628{
629 int ret;
630 struct perf_evsel *pos;
631 const char *group_name = perf_evsel__group_name(evsel);
632
633 ret = scnprintf(buf, size, "%s", group_name);
634
635 ret += scnprintf(buf + ret, size - ret, " { %s",
636 perf_evsel__name(evsel));
637
638 for_each_group_member(pos, evsel)
639 ret += scnprintf(buf + ret, size - ret, ", %s",
640 perf_evsel__name(pos));
641
642 ret += scnprintf(buf + ret, size - ret, " }");
643
644 return ret;
645}
646
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300647void perf_evsel__config_callchain(struct perf_evsel *evsel,
648 struct record_opts *opts,
649 struct callchain_param *param)
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100650{
651 bool function = perf_evsel__is_function_event(evsel);
652 struct perf_event_attr *attr = &evsel->attr;
653
654 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
655
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300656 attr->sample_max_stack = param->max_stack;
657
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400658 if (param->record_mode == CALLCHAIN_LBR) {
Kan Liangaad2b212015-01-05 13:23:04 -0500659 if (!opts->branch_stack) {
660 if (attr->exclude_user) {
661 pr_warning("LBR callstack option is only available "
662 "to get user callchain information. "
663 "Falling back to framepointers.\n");
664 } else {
665 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
666 attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER |
Andi Kleenbd0f8892015-12-11 16:12:24 -0800667 PERF_SAMPLE_BRANCH_CALL_STACK |
668 PERF_SAMPLE_BRANCH_NO_CYCLES |
669 PERF_SAMPLE_BRANCH_NO_FLAGS;
Kan Liangaad2b212015-01-05 13:23:04 -0500670 }
671 } else
672 pr_warning("Cannot use LBR callstack with branch stack. "
673 "Falling back to framepointers.\n");
674 }
675
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400676 if (param->record_mode == CALLCHAIN_DWARF) {
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100677 if (!function) {
678 perf_evsel__set_sample_bit(evsel, REGS_USER);
679 perf_evsel__set_sample_bit(evsel, STACK_USER);
680 attr->sample_regs_user = PERF_REGS_MASK;
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400681 attr->sample_stack_user = param->dump_size;
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100682 attr->exclude_callchain_user = 1;
683 } else {
684 pr_info("Cannot use DWARF unwind for function trace event,"
685 " falling back to framepointers.\n");
686 }
687 }
688
689 if (function) {
690 pr_info("Disabling user space callchains for function trace event.\n");
691 attr->exclude_callchain_user = 1;
692 }
693}
694
Kan Liangd457c962015-08-11 06:30:47 -0400695static void
696perf_evsel__reset_callgraph(struct perf_evsel *evsel,
697 struct callchain_param *param)
698{
699 struct perf_event_attr *attr = &evsel->attr;
700
701 perf_evsel__reset_sample_bit(evsel, CALLCHAIN);
702 if (param->record_mode == CALLCHAIN_LBR) {
703 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
704 attr->branch_sample_type &= ~(PERF_SAMPLE_BRANCH_USER |
705 PERF_SAMPLE_BRANCH_CALL_STACK);
706 }
707 if (param->record_mode == CALLCHAIN_DWARF) {
708 perf_evsel__reset_sample_bit(evsel, REGS_USER);
709 perf_evsel__reset_sample_bit(evsel, STACK_USER);
710 }
711}
712
713static void apply_config_terms(struct perf_evsel *evsel,
714 struct record_opts *opts)
Jiri Olsa930a2e22015-07-29 05:42:10 -0400715{
716 struct perf_evsel_config_term *term;
Kan Liang32067712015-08-04 04:30:19 -0400717 struct list_head *config_terms = &evsel->config_terms;
718 struct perf_event_attr *attr = &evsel->attr;
Kan Liangd457c962015-08-11 06:30:47 -0400719 struct callchain_param param;
720 u32 dump_size = 0;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300721 int max_stack = 0;
722 const char *callgraph_buf = NULL;
Kan Liangd457c962015-08-11 06:30:47 -0400723
724 /* callgraph default */
725 param.record_mode = callchain_param.record_mode;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400726
727 list_for_each_entry(term, config_terms, list) {
728 switch (term->type) {
Jiri Olsaee4c7582015-07-29 05:42:11 -0400729 case PERF_EVSEL__CONFIG_TERM_PERIOD:
730 attr->sample_period = term->val.period;
Jiri Olsaab35a7d2015-08-08 19:12:10 +0200731 attr->freq = 0;
Kan Liang32067712015-08-04 04:30:19 -0400732 break;
Namhyung Kim09af2a52015-08-09 15:45:23 +0900733 case PERF_EVSEL__CONFIG_TERM_FREQ:
734 attr->sample_freq = term->val.freq;
735 attr->freq = 1;
736 break;
Kan Liang32067712015-08-04 04:30:19 -0400737 case PERF_EVSEL__CONFIG_TERM_TIME:
738 if (term->val.time)
739 perf_evsel__set_sample_bit(evsel, TIME);
740 else
741 perf_evsel__reset_sample_bit(evsel, TIME);
742 break;
Kan Liangd457c962015-08-11 06:30:47 -0400743 case PERF_EVSEL__CONFIG_TERM_CALLGRAPH:
744 callgraph_buf = term->val.callgraph;
745 break;
Andi Kleenac12f672016-10-12 14:02:06 -0700746 case PERF_EVSEL__CONFIG_TERM_BRANCH:
747 if (term->val.branch && strcmp(term->val.branch, "no")) {
748 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
749 parse_branch_str(term->val.branch,
750 &attr->branch_sample_type);
751 } else
752 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
753 break;
Kan Liangd457c962015-08-11 06:30:47 -0400754 case PERF_EVSEL__CONFIG_TERM_STACK_USER:
755 dump_size = term->val.stack_user;
756 break;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300757 case PERF_EVSEL__CONFIG_TERM_MAX_STACK:
758 max_stack = term->val.max_stack;
759 break;
Wang Nan374ce932015-10-28 10:55:02 +0000760 case PERF_EVSEL__CONFIG_TERM_INHERIT:
761 /*
762 * attr->inherit should has already been set by
763 * perf_evsel__config. If user explicitly set
764 * inherit using config terms, override global
765 * opt->no_inherit setting.
766 */
767 attr->inherit = term->val.inherit ? 1 : 0;
768 break;
Wang Nan626a6b72016-07-14 08:34:45 +0000769 case PERF_EVSEL__CONFIG_TERM_OVERWRITE:
770 attr->write_backward = term->val.overwrite ? 1 : 0;
771 break;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400772 default:
773 break;
774 }
775 }
Kan Liangd457c962015-08-11 06:30:47 -0400776
777 /* User explicitly set per-event callgraph, clear the old setting and reset. */
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300778 if ((callgraph_buf != NULL) || (dump_size > 0) || max_stack) {
779 if (max_stack) {
780 param.max_stack = max_stack;
781 if (callgraph_buf == NULL)
782 callgraph_buf = "fp";
783 }
Kan Liangd457c962015-08-11 06:30:47 -0400784
785 /* parse callgraph parameters */
786 if (callgraph_buf != NULL) {
Kan Liangf9db0d02015-08-11 06:30:48 -0400787 if (!strcmp(callgraph_buf, "no")) {
788 param.enabled = false;
789 param.record_mode = CALLCHAIN_NONE;
790 } else {
791 param.enabled = true;
792 if (parse_callchain_record(callgraph_buf, &param)) {
793 pr_err("per-event callgraph setting for %s failed. "
794 "Apply callgraph global setting for it\n",
795 evsel->name);
796 return;
797 }
Kan Liangd457c962015-08-11 06:30:47 -0400798 }
799 }
800 if (dump_size > 0) {
801 dump_size = round_up(dump_size, sizeof(u64));
802 param.dump_size = dump_size;
803 }
804
805 /* If global callgraph set, clear it */
806 if (callchain_param.enabled)
807 perf_evsel__reset_callgraph(evsel, &callchain_param);
808
809 /* set perf-event callgraph */
810 if (param.enabled)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300811 perf_evsel__config_callchain(evsel, opts, &param);
Kan Liangd457c962015-08-11 06:30:47 -0400812 }
Jiri Olsa930a2e22015-07-29 05:42:10 -0400813}
814
Jiri Olsa774cb492012-11-12 18:34:01 +0100815/*
816 * The enable_on_exec/disabled value strategy:
817 *
818 * 1) For any type of traced program:
819 * - all independent events and group leaders are disabled
820 * - all group members are enabled
821 *
822 * Group members are ruled by group leaders. They need to
823 * be enabled, because the group scheduling relies on that.
824 *
825 * 2) For traced programs executed by perf:
826 * - all independent events and group leaders have
827 * enable_on_exec set
828 * - we don't specifically enable or disable any event during
829 * the record command
830 *
831 * Independent events and group leaders are initially disabled
832 * and get enabled by exec. Group members are ruled by group
833 * leaders as stated in 1).
834 *
835 * 3) For traced programs attached by perf (pid/tid):
836 * - we specifically enable or disable all events during
837 * the record command
838 *
839 * When attaching events to already running traced we
840 * enable/disable events specifically, as there's no
841 * initial traced exec call.
842 */
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300843void perf_evsel__config(struct perf_evsel *evsel, struct record_opts *opts,
844 struct callchain_param *callchain)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200845{
Jiri Olsa3c176312012-10-10 17:39:03 +0200846 struct perf_evsel *leader = evsel->leader;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200847 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter60b08962014-07-31 09:00:52 +0300848 int track = evsel->tracking;
Adrian Hunter3aa59392013-11-15 15:52:29 +0200849 bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200850
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300851 attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200852 attr->inherit = !opts->no_inherit;
Wang Nan626a6b72016-07-14 08:34:45 +0000853 attr->write_backward = opts->overwrite ? 1 : 0;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200854
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300855 perf_evsel__set_sample_bit(evsel, IP);
856 perf_evsel__set_sample_bit(evsel, TID);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200857
Jiri Olsa3c176312012-10-10 17:39:03 +0200858 if (evsel->sample_read) {
859 perf_evsel__set_sample_bit(evsel, READ);
860
861 /*
862 * We need ID even in case of single event, because
863 * PERF_SAMPLE_READ process ID specific data.
864 */
Adrian Hunter75562572013-08-27 11:23:09 +0300865 perf_evsel__set_sample_id(evsel, false);
Jiri Olsa3c176312012-10-10 17:39:03 +0200866
867 /*
868 * Apply group format only if we belong to group
869 * with more than one members.
870 */
871 if (leader->nr_members > 1) {
872 attr->read_format |= PERF_FORMAT_GROUP;
873 attr->inherit = 0;
874 }
875 }
876
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200877 /*
Namhyung Kim17314e22014-06-09 14:43:37 +0900878 * We default some events to have a default interval. But keep
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200879 * it a weak assumption overridable by the user.
880 */
Namhyung Kim17314e22014-06-09 14:43:37 +0900881 if (!attr->sample_period || (opts->user_freq != UINT_MAX ||
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200882 opts->user_interval != ULLONG_MAX)) {
883 if (opts->freq) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300884 perf_evsel__set_sample_bit(evsel, PERIOD);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200885 attr->freq = 1;
886 attr->sample_freq = opts->freq;
887 } else {
888 attr->sample_period = opts->default_interval;
889 }
890 }
891
Jiri Olsa3c176312012-10-10 17:39:03 +0200892 /*
893 * Disable sampling for all group members other
894 * than leader in case leader 'leads' the sampling.
895 */
896 if ((leader != evsel) && leader->sample_read) {
897 attr->sample_freq = 0;
898 attr->sample_period = 0;
899 }
900
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200901 if (opts->no_samples)
902 attr->sample_freq = 0;
903
904 if (opts->inherit_stat)
905 attr->inherit_stat = 1;
906
907 if (opts->sample_address) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300908 perf_evsel__set_sample_bit(evsel, ADDR);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200909 attr->mmap_data = track;
910 }
911
Jiri Olsaf1403732014-11-13 18:21:03 +0100912 /*
913 * We don't allow user space callchains for function trace
914 * event, due to issues with page faults while tracing page
915 * fault handler and its overall trickiness nature.
916 */
917 if (perf_evsel__is_function_event(evsel))
918 evsel->attr.exclude_callchain_user = 1;
919
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300920 if (callchain && callchain->enabled && !evsel->no_aux_samples)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300921 perf_evsel__config_callchain(evsel, opts, callchain);
Jiri Olsa26d33022012-08-07 15:20:47 +0200922
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200923 if (opts->sample_intr_regs) {
Stephane Eranianbcc84ec2015-08-31 18:41:12 +0200924 attr->sample_regs_intr = opts->sample_intr_regs;
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200925 perf_evsel__set_sample_bit(evsel, REGS_INTR);
926 }
927
Jiri Olsab6f35ed2016-08-01 20:02:35 +0200928 if (target__has_cpu(&opts->target) || opts->sample_cpu)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300929 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200930
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300931 if (opts->period)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300932 perf_evsel__set_sample_bit(evsel, PERIOD);
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300933
Andi Kleen8affc2b2014-07-31 14:45:04 +0800934 /*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800935 * When the user explicitly disabled time don't force it here.
Andi Kleen8affc2b2014-07-31 14:45:04 +0800936 */
937 if (opts->sample_time &&
938 (!perf_missing_features.sample_id_all &&
Adrian Hunter3abebc52015-07-06 14:51:01 +0300939 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu ||
940 opts->sample_time_set)))
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300941 perf_evsel__set_sample_bit(evsel, TIME);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200942
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300943 if (opts->raw_samples && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300944 perf_evsel__set_sample_bit(evsel, TIME);
945 perf_evsel__set_sample_bit(evsel, RAW);
946 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200947 }
948
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100949 if (opts->sample_address)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200950 perf_evsel__set_sample_bit(evsel, DATA_SRC);
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100951
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -0300952 if (opts->no_buffering) {
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200953 attr->watermark = 0;
954 attr->wakeup_events = 1;
955 }
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300956 if (opts->branch_stack && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300957 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
Roberto Agostino Vitillobdfebd82012-02-09 23:21:02 +0100958 attr->branch_sample_type = opts->branch_stack;
959 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200960
Andi Kleen05484292013-01-24 16:10:29 +0100961 if (opts->sample_weight)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200962 perf_evsel__set_sample_bit(evsel, WEIGHT);
Andi Kleen05484292013-01-24 16:10:29 +0100963
Namhyung Kim62e503b2015-01-29 17:06:46 +0900964 attr->task = track;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200965 attr->mmap = track;
Don Zickusa5a5ba72014-05-30 10:49:42 -0400966 attr->mmap2 = track && !perf_missing_features.mmap2;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200967 attr->comm = track;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200968
Hari Bathinif3b36142017-03-08 02:11:43 +0530969 if (opts->record_namespaces)
970 attr->namespaces = track;
971
Adrian Hunterb757bb02015-07-21 12:44:04 +0300972 if (opts->record_switch_events)
973 attr->context_switch = track;
974
Andi Kleen475eeab2013-09-20 07:40:43 -0700975 if (opts->sample_transaction)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200976 perf_evsel__set_sample_bit(evsel, TRANSACTION);
Andi Kleen475eeab2013-09-20 07:40:43 -0700977
Andi Kleen85c273d2015-02-24 15:13:40 -0800978 if (opts->running_time) {
979 evsel->attr.read_format |=
980 PERF_FORMAT_TOTAL_TIME_ENABLED |
981 PERF_FORMAT_TOTAL_TIME_RUNNING;
982 }
983
Jiri Olsa774cb492012-11-12 18:34:01 +0100984 /*
985 * XXX see the function comment above
986 *
987 * Disabling only independent events or group leaders,
988 * keeping group members enabled.
989 */
Namhyung Kim823254e2012-11-29 15:38:30 +0900990 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa774cb492012-11-12 18:34:01 +0100991 attr->disabled = 1;
992
993 /*
994 * Setting enable_on_exec for independent events and
995 * group leaders for traced executed by perf.
996 */
Andi Kleen6619a532014-01-11 13:38:27 -0800997 if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) &&
998 !opts->initial_delay)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200999 attr->enable_on_exec = 1;
Adrian Hunter2afd2bc2014-07-14 13:02:57 +03001000
1001 if (evsel->immediate) {
1002 attr->disabled = 0;
1003 attr->enable_on_exec = 0;
1004 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001005
1006 clockid = opts->clockid;
1007 if (opts->use_clockid) {
1008 attr->use_clockid = 1;
1009 attr->clockid = opts->clockid;
1010 }
Jiri Olsa930a2e22015-07-29 05:42:10 -04001011
Jiri Olsa7f94af72015-10-05 20:06:05 +02001012 if (evsel->precise_max)
1013 perf_event_attr__set_max_precise_ip(attr);
1014
Jiri Olsa85723882016-02-15 09:34:31 +01001015 if (opts->all_user) {
1016 attr->exclude_kernel = 1;
1017 attr->exclude_user = 0;
1018 }
1019
1020 if (opts->all_kernel) {
1021 attr->exclude_kernel = 0;
1022 attr->exclude_user = 1;
1023 }
1024
Jiri Olsa930a2e22015-07-29 05:42:10 -04001025 /*
1026 * Apply event specific term settings,
1027 * it overloads any global configuration.
1028 */
Kan Liangd457c962015-08-11 06:30:47 -04001029 apply_config_terms(evsel, opts);
Jiri Olsaa359c172016-12-13 08:46:22 +01001030
1031 evsel->ignore_missing_thread = opts->ignore_missing_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001032}
1033
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001034static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001035{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001036 if (evsel->system_wide)
1037 nthreads = 1;
1038
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001039 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
David Ahern4af4c952011-05-27 09:58:34 -06001040
1041 if (evsel->fd) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001042 int cpu, thread;
David Ahern4af4c952011-05-27 09:58:34 -06001043 for (cpu = 0; cpu < ncpus; cpu++) {
1044 for (thread = 0; thread < nthreads; thread++) {
1045 FD(evsel, cpu, thread) = -1;
1046 }
1047 }
1048 }
1049
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001050 return evsel->fd != NULL ? 0 : -ENOMEM;
1051}
1052
Andi Kleene2407be2013-08-02 17:41:10 -07001053static int perf_evsel__run_ioctl(struct perf_evsel *evsel, int ncpus, int nthreads,
1054 int ioc, void *arg)
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001055{
1056 int cpu, thread;
1057
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001058 if (evsel->system_wide)
1059 nthreads = 1;
1060
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001061 for (cpu = 0; cpu < ncpus; cpu++) {
1062 for (thread = 0; thread < nthreads; thread++) {
1063 int fd = FD(evsel, cpu, thread),
Andi Kleene2407be2013-08-02 17:41:10 -07001064 err = ioctl(fd, ioc, arg);
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001065
1066 if (err)
1067 return err;
1068 }
1069 }
1070
1071 return 0;
1072}
1073
Arnaldo Carvalho de Melof47805a2015-07-03 15:53:49 -03001074int perf_evsel__apply_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
1075 const char *filter)
Andi Kleene2407be2013-08-02 17:41:10 -07001076{
1077 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1078 PERF_EVENT_IOC_SET_FILTER,
1079 (void *)filter);
1080}
1081
Arnaldo Carvalho de Melo12467ae2015-07-03 17:05:50 -03001082int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter)
1083{
1084 char *new_filter = strdup(filter);
1085
1086 if (new_filter != NULL) {
1087 free(evsel->filter);
1088 evsel->filter = new_filter;
1089 return 0;
1090 }
1091
1092 return -1;
1093}
1094
Mathieu Poirier3541c032016-09-16 08:44:04 -06001095static int perf_evsel__append_filter(struct perf_evsel *evsel,
1096 const char *fmt, const char *filter)
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001097{
1098 char *new_filter;
1099
1100 if (evsel->filter == NULL)
1101 return perf_evsel__set_filter(evsel, filter);
1102
Mathieu Poirierb15d0a42016-09-16 08:44:03 -06001103 if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001104 free(evsel->filter);
1105 evsel->filter = new_filter;
1106 return 0;
1107 }
1108
1109 return -1;
1110}
1111
Mathieu Poirier3541c032016-09-16 08:44:04 -06001112int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter)
1113{
1114 return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter);
1115}
1116
Mathieu Poirier1e857482016-09-16 08:44:05 -06001117int perf_evsel__append_addr_filter(struct perf_evsel *evsel, const char *filter)
1118{
1119 return perf_evsel__append_filter(evsel, "%s,%s", filter);
1120}
1121
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001122int perf_evsel__enable(struct perf_evsel *evsel)
Andi Kleene2407be2013-08-02 17:41:10 -07001123{
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001124 int nthreads = thread_map__nr(evsel->threads);
1125 int ncpus = cpu_map__nr(evsel->cpus);
1126
Andi Kleene2407be2013-08-02 17:41:10 -07001127 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1128 PERF_EVENT_IOC_ENABLE,
1129 0);
1130}
1131
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001132int perf_evsel__disable(struct perf_evsel *evsel)
1133{
1134 int nthreads = thread_map__nr(evsel->threads);
1135 int ncpus = cpu_map__nr(evsel->cpus);
1136
1137 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1138 PERF_EVENT_IOC_DISABLE,
1139 0);
1140}
1141
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001142int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
1143{
Vineet Gupta8d9cbd82015-01-13 19:13:23 +05301144 if (ncpus == 0 || nthreads == 0)
1145 return 0;
1146
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001147 if (evsel->system_wide)
1148 nthreads = 1;
1149
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001150 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
1151 if (evsel->sample_id == NULL)
1152 return -ENOMEM;
1153
1154 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
1155 if (evsel->id == NULL) {
1156 xyarray__delete(evsel->sample_id);
1157 evsel->sample_id = NULL;
1158 return -ENOMEM;
1159 }
1160
1161 return 0;
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001162}
1163
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001164static void perf_evsel__free_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001165{
1166 xyarray__delete(evsel->fd);
1167 evsel->fd = NULL;
1168}
1169
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001170static void perf_evsel__free_id(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001171{
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001172 xyarray__delete(evsel->sample_id);
1173 evsel->sample_id = NULL;
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001174 zfree(&evsel->id);
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001175}
1176
Jiri Olsa930a2e22015-07-29 05:42:10 -04001177static void perf_evsel__free_config_terms(struct perf_evsel *evsel)
1178{
1179 struct perf_evsel_config_term *term, *h;
1180
1181 list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1182 list_del(&term->list);
1183 free(term);
1184 }
1185}
1186
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001187void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
1188{
1189 int cpu, thread;
1190
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001191 if (evsel->system_wide)
1192 nthreads = 1;
1193
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001194 for (cpu = 0; cpu < ncpus; cpu++)
1195 for (thread = 0; thread < nthreads; ++thread) {
1196 close(FD(evsel, cpu, thread));
1197 FD(evsel, cpu, thread) = -1;
1198 }
1199}
1200
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001201void perf_evsel__exit(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001202{
1203 assert(list_empty(&evsel->node));
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -04001204 assert(evsel->evlist == NULL);
Namhyung Kim736b05a2013-03-15 14:48:49 +09001205 perf_evsel__free_fd(evsel);
1206 perf_evsel__free_id(evsel);
Jiri Olsa930a2e22015-07-29 05:42:10 -04001207 perf_evsel__free_config_terms(evsel);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001208 close_cgroup(evsel->cgrp);
Jiri Olsaf30a79b2015-06-23 00:36:04 +02001209 cpu_map__put(evsel->cpus);
Adrian Hunterfce4d292015-09-08 10:58:55 +03001210 cpu_map__put(evsel->own_cpus);
Jiri Olsa578e91e2015-06-23 00:36:07 +02001211 thread_map__put(evsel->threads);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001212 zfree(&evsel->group_name);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001213 zfree(&evsel->name);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -03001214 perf_evsel__object.fini(evsel);
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001215}
1216
1217void perf_evsel__delete(struct perf_evsel *evsel)
1218{
1219 perf_evsel__exit(evsel);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001220 free(evsel);
1221}
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001222
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001223void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
Jiri Olsa857a94a2014-11-21 10:31:05 +01001224 struct perf_counts_values *count)
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001225{
1226 struct perf_counts_values tmp;
1227
1228 if (!evsel->prev_raw_counts)
1229 return;
1230
1231 if (cpu == -1) {
1232 tmp = evsel->prev_raw_counts->aggr;
1233 evsel->prev_raw_counts->aggr = *count;
1234 } else {
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001235 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1236 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001237 }
1238
1239 count->val = count->val - tmp.val;
1240 count->ena = count->ena - tmp.ena;
1241 count->run = count->run - tmp.run;
1242}
1243
Jiri Olsa13112bb2014-11-21 10:31:06 +01001244void perf_counts_values__scale(struct perf_counts_values *count,
1245 bool scale, s8 *pscaled)
1246{
1247 s8 scaled = 0;
1248
1249 if (scale) {
1250 if (count->run == 0) {
1251 scaled = -1;
1252 count->val = 0;
1253 } else if (count->run < count->ena) {
1254 scaled = 1;
1255 count->val = (u64)((double) count->val * count->ena / count->run + 0.5);
1256 }
1257 } else
1258 count->ena = count->run = 0;
1259
1260 if (pscaled)
1261 *pscaled = scaled;
1262}
1263
Jiri Olsade634032017-07-26 14:02:04 +02001264static int perf_evsel__read_size(struct perf_evsel *evsel)
1265{
1266 u64 read_format = evsel->attr.read_format;
1267 int entry = sizeof(u64); /* value */
1268 int size = 0;
1269 int nr = 1;
1270
1271 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1272 size += sizeof(u64);
1273
1274 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1275 size += sizeof(u64);
1276
1277 if (read_format & PERF_FORMAT_ID)
1278 entry += sizeof(u64);
1279
1280 if (read_format & PERF_FORMAT_GROUP) {
1281 nr = evsel->nr_members;
1282 size += sizeof(u64);
1283 }
1284
1285 size += entry * nr;
1286 return size;
1287}
1288
Jiri Olsaf99f47192015-06-26 11:29:18 +02001289int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
1290 struct perf_counts_values *count)
1291{
Jiri Olsade634032017-07-26 14:02:04 +02001292 size_t size = perf_evsel__read_size(evsel);
1293
Jiri Olsaf99f47192015-06-26 11:29:18 +02001294 memset(count, 0, sizeof(*count));
1295
1296 if (FD(evsel, cpu, thread) < 0)
1297 return -EINVAL;
1298
Jiri Olsade634032017-07-26 14:02:04 +02001299 if (readn(FD(evsel, cpu, thread), count->values, size) <= 0)
Jiri Olsaf99f47192015-06-26 11:29:18 +02001300 return -errno;
1301
1302 return 0;
1303}
1304
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001305int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
1306 int cpu, int thread, bool scale)
1307{
1308 struct perf_counts_values count;
1309 size_t nv = scale ? 3 : 1;
1310
1311 if (FD(evsel, cpu, thread) < 0)
1312 return -EINVAL;
1313
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001314 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001315 return -ENOMEM;
1316
Stephane Eraniandb49a712017-04-12 11:23:01 -07001317 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001318 return -errno;
1319
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001320 perf_evsel__compute_deltas(evsel, cpu, thread, &count);
Jiri Olsa13112bb2014-11-21 10:31:06 +01001321 perf_counts_values__scale(&count, scale, NULL);
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001322 *perf_counts(evsel->counts, cpu, thread) = count;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001323 return 0;
1324}
1325
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001326static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
1327{
1328 struct perf_evsel *leader = evsel->leader;
1329 int fd;
1330
Namhyung Kim823254e2012-11-29 15:38:30 +09001331 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001332 return -1;
1333
1334 /*
1335 * Leader must be already processed/open,
1336 * if not it's a bug.
1337 */
1338 BUG_ON(!leader->fd);
1339
1340 fd = FD(leader, cpu, thread);
1341 BUG_ON(fd == -1);
1342
1343 return fd;
1344}
1345
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001346struct bit_names {
1347 int bit;
1348 const char *name;
1349};
Adrian Huntere3e1a542013-08-14 15:48:24 +03001350
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001351static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001352{
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001353 bool first_bit = true;
1354 int i = 0;
Adrian Huntere3e1a542013-08-14 15:48:24 +03001355
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001356 do {
1357 if (value & bits[i].bit) {
1358 buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name);
1359 first_bit = false;
1360 }
1361 } while (bits[++i].name != NULL);
1362}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001363
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001364static void __p_sample_type(char *buf, size_t size, u64 value)
1365{
1366#define bit_name(n) { PERF_SAMPLE_##n, #n }
1367 struct bit_names bits[] = {
1368 bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR),
1369 bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU),
1370 bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW),
1371 bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER),
Jiri Olsa84422592015-10-05 20:06:02 +02001372 bit_name(IDENTIFIER), bit_name(REGS_INTR), bit_name(DATA_SRC),
Jiri Olsadcdd1842015-11-25 16:36:55 +01001373 bit_name(WEIGHT),
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001374 { .name = NULL, }
1375 };
1376#undef bit_name
1377 __p_bits(buf, size, value, bits);
1378}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001379
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001380static void __p_branch_sample_type(char *buf, size_t size, u64 value)
1381{
1382#define bit_name(n) { PERF_SAMPLE_BRANCH_##n, #n }
1383 struct bit_names bits[] = {
1384 bit_name(USER), bit_name(KERNEL), bit_name(HV), bit_name(ANY),
1385 bit_name(ANY_CALL), bit_name(ANY_RETURN), bit_name(IND_CALL),
1386 bit_name(ABORT_TX), bit_name(IN_TX), bit_name(NO_TX),
1387 bit_name(COND), bit_name(CALL_STACK), bit_name(IND_JUMP),
1388 bit_name(CALL), bit_name(NO_FLAGS), bit_name(NO_CYCLES),
1389 { .name = NULL, }
1390 };
1391#undef bit_name
1392 __p_bits(buf, size, value, bits);
1393}
1394
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001395static void __p_read_format(char *buf, size_t size, u64 value)
1396{
1397#define bit_name(n) { PERF_FORMAT_##n, #n }
1398 struct bit_names bits[] = {
1399 bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING),
1400 bit_name(ID), bit_name(GROUP),
1401 { .name = NULL, }
1402 };
1403#undef bit_name
1404 __p_bits(buf, size, value, bits);
1405}
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001406
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001407#define BUF_SIZE 1024
Adrian Huntere3e1a542013-08-14 15:48:24 +03001408
Adrian Hunter7310aed2015-06-11 15:51:04 +03001409#define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001410#define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
1411#define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
1412#define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001413#define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001414#define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001415
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001416#define PRINT_ATTRn(_n, _f, _p) \
1417do { \
1418 if (attr->_f) { \
1419 _p(attr->_f); \
1420 ret += attr__fprintf(fp, _n, buf, priv);\
1421 } \
1422} while (0)
1423
1424#define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p)
1425
1426int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
1427 attr__fprintf_f attr__fprintf, void *priv)
1428{
1429 char buf[BUF_SIZE];
1430 int ret = 0;
1431
1432 PRINT_ATTRf(type, p_unsigned);
1433 PRINT_ATTRf(size, p_unsigned);
1434 PRINT_ATTRf(config, p_hex);
1435 PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned);
1436 PRINT_ATTRf(sample_type, p_sample_type);
1437 PRINT_ATTRf(read_format, p_read_format);
1438
1439 PRINT_ATTRf(disabled, p_unsigned);
1440 PRINT_ATTRf(inherit, p_unsigned);
1441 PRINT_ATTRf(pinned, p_unsigned);
1442 PRINT_ATTRf(exclusive, p_unsigned);
1443 PRINT_ATTRf(exclude_user, p_unsigned);
1444 PRINT_ATTRf(exclude_kernel, p_unsigned);
1445 PRINT_ATTRf(exclude_hv, p_unsigned);
1446 PRINT_ATTRf(exclude_idle, p_unsigned);
1447 PRINT_ATTRf(mmap, p_unsigned);
1448 PRINT_ATTRf(comm, p_unsigned);
1449 PRINT_ATTRf(freq, p_unsigned);
1450 PRINT_ATTRf(inherit_stat, p_unsigned);
1451 PRINT_ATTRf(enable_on_exec, p_unsigned);
1452 PRINT_ATTRf(task, p_unsigned);
1453 PRINT_ATTRf(watermark, p_unsigned);
1454 PRINT_ATTRf(precise_ip, p_unsigned);
1455 PRINT_ATTRf(mmap_data, p_unsigned);
1456 PRINT_ATTRf(sample_id_all, p_unsigned);
1457 PRINT_ATTRf(exclude_host, p_unsigned);
1458 PRINT_ATTRf(exclude_guest, p_unsigned);
1459 PRINT_ATTRf(exclude_callchain_kernel, p_unsigned);
1460 PRINT_ATTRf(exclude_callchain_user, p_unsigned);
1461 PRINT_ATTRf(mmap2, p_unsigned);
1462 PRINT_ATTRf(comm_exec, p_unsigned);
1463 PRINT_ATTRf(use_clockid, p_unsigned);
Adrian Hunter02860392015-07-21 12:44:03 +03001464 PRINT_ATTRf(context_switch, p_unsigned);
Arnaldo Carvalho de Melo0a241ef2016-05-09 18:08:33 -03001465 PRINT_ATTRf(write_backward, p_unsigned);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001466
1467 PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned);
1468 PRINT_ATTRf(bp_type, p_unsigned);
1469 PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex);
1470 PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex);
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001471 PRINT_ATTRf(branch_sample_type, p_branch_sample_type);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001472 PRINT_ATTRf(sample_regs_user, p_hex);
1473 PRINT_ATTRf(sample_stack_user, p_unsigned);
1474 PRINT_ATTRf(clockid, p_signed);
1475 PRINT_ATTRf(sample_regs_intr, p_hex);
Adrian Hunter70d73de2015-04-09 18:54:06 +03001476 PRINT_ATTRf(aux_watermark, p_unsigned);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -03001477 PRINT_ATTRf(sample_max_stack, p_unsigned);
Adrian Huntere3e1a542013-08-14 15:48:24 +03001478
1479 return ret;
1480}
1481
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001482static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001483 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001484{
1485 return fprintf(fp, " %-32s %s\n", name, val);
1486}
1487
Jiri Olsaa359c172016-12-13 08:46:22 +01001488static bool ignore_missing_thread(struct perf_evsel *evsel,
1489 struct thread_map *threads,
1490 int thread, int err)
1491{
1492 if (!evsel->ignore_missing_thread)
1493 return false;
1494
1495 /* The system wide setup does not work with threads. */
1496 if (evsel->system_wide)
1497 return false;
1498
1499 /* The -ESRCH is perf event syscall errno for pid's not found. */
1500 if (err != -ESRCH)
1501 return false;
1502
1503 /* If there's only one thread, let it fail. */
1504 if (threads->nr == 1)
1505 return false;
1506
1507 if (thread_map__remove(threads, thread))
1508 return false;
1509
1510 pr_warning("WARNING: Ignored open failure for pid %d\n",
1511 thread_map__pid(threads, thread));
1512 return true;
1513}
1514
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001515int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
1516 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001517{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001518 int cpu, thread, nthreads;
Yann Droneaud57480d22014-06-30 22:28:47 +02001519 unsigned long flags = PERF_FLAG_FD_CLOEXEC;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001520 int pid = -1, err;
Andi Kleenbec19672013-08-04 19:41:26 -07001521 enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001522
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001523 if (perf_missing_features.write_backward && evsel->attr.write_backward)
1524 return -EINVAL;
1525
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001526 if (cpus == NULL) {
1527 static struct cpu_map *empty_cpu_map;
1528
1529 if (empty_cpu_map == NULL) {
1530 empty_cpu_map = cpu_map__dummy_new();
1531 if (empty_cpu_map == NULL)
1532 return -ENOMEM;
1533 }
1534
1535 cpus = empty_cpu_map;
1536 }
1537
1538 if (threads == NULL) {
1539 static struct thread_map *empty_thread_map;
1540
1541 if (empty_thread_map == NULL) {
1542 empty_thread_map = thread_map__new_by_tid(-1);
1543 if (empty_thread_map == NULL)
1544 return -ENOMEM;
1545 }
1546
1547 threads = empty_thread_map;
1548 }
1549
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001550 if (evsel->system_wide)
1551 nthreads = 1;
1552 else
1553 nthreads = threads->nr;
1554
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001555 if (evsel->fd == NULL &&
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001556 perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001557 return -ENOMEM;
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001558
Stephane Eranian023695d2011-02-14 11:20:01 +02001559 if (evsel->cgrp) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001560 flags |= PERF_FLAG_PID_CGROUP;
Stephane Eranian023695d2011-02-14 11:20:01 +02001561 pid = evsel->cgrp->fd;
1562 }
1563
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001564fallback_missing_features:
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001565 if (perf_missing_features.clockid_wrong)
1566 evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */
1567 if (perf_missing_features.clockid) {
1568 evsel->attr.use_clockid = 0;
1569 evsel->attr.clockid = 0;
1570 }
Yann Droneaud57480d22014-06-30 22:28:47 +02001571 if (perf_missing_features.cloexec)
1572 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001573 if (perf_missing_features.mmap2)
1574 evsel->attr.mmap2 = 0;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001575 if (perf_missing_features.exclude_guest)
1576 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001577 if (perf_missing_features.lbr_flags)
1578 evsel->attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1579 PERF_SAMPLE_BRANCH_NO_CYCLES);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001580retry_sample_id:
1581 if (perf_missing_features.sample_id_all)
1582 evsel->attr.sample_id_all = 0;
1583
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001584 if (verbose >= 2) {
1585 fprintf(stderr, "%.60s\n", graph_dotted_line);
1586 fprintf(stderr, "perf_event_attr:\n");
1587 perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL);
1588 fprintf(stderr, "%.60s\n", graph_dotted_line);
1589 }
Adrian Huntere3e1a542013-08-14 15:48:24 +03001590
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -02001591 for (cpu = 0; cpu < cpus->nr; cpu++) {
Arnaldo Carvalho de Melo9d04f172011-01-12 00:08:18 -02001592
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001593 for (thread = 0; thread < nthreads; thread++) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001594 int fd, group_fd;
Stephane Eranian023695d2011-02-14 11:20:01 +02001595
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001596 if (!evsel->cgrp && !evsel->system_wide)
Jiri Olsae13798c2015-06-23 00:36:02 +02001597 pid = thread_map__pid(threads, thread);
Stephane Eranian023695d2011-02-14 11:20:01 +02001598
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001599 group_fd = get_group_fd(evsel, cpu, thread);
Andi Kleenbec19672013-08-04 19:41:26 -07001600retry_open:
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001601 pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx",
Adrian Huntere3e1a542013-08-14 15:48:24 +03001602 pid, cpus->map[cpu], group_fd, flags);
1603
Jiri Olsa10213e22017-07-03 16:50:18 +02001604 test_attr__ready();
1605
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001606 fd = sys_perf_event_open(&evsel->attr, pid, cpus->map[cpu],
1607 group_fd, flags);
1608
1609 FD(evsel, cpu, thread) = fd;
1610
1611 if (fd < 0) {
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001612 err = -errno;
Jiri Olsaa359c172016-12-13 08:46:22 +01001613
1614 if (ignore_missing_thread(evsel, threads, thread, err)) {
1615 /*
1616 * We just removed 1 thread, so take a step
1617 * back on thread index and lower the upper
1618 * nthreads limit.
1619 */
1620 nthreads--;
1621 thread--;
1622
1623 /* ... and pretend like nothing have happened. */
1624 err = 0;
1625 continue;
1626 }
1627
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001628 pr_debug2("\nsys_perf_event_open failed, error %d\n",
Adrian Hunterf852fd62013-11-01 15:51:29 +02001629 err);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001630 goto try_fallback;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001631 }
Wang Nan1f45b1d2015-10-14 12:41:18 +00001632
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001633 pr_debug2(" = %d\n", fd);
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001634
Wang Nan1f45b1d2015-10-14 12:41:18 +00001635 if (evsel->bpf_fd >= 0) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001636 int evt_fd = fd;
Wang Nan1f45b1d2015-10-14 12:41:18 +00001637 int bpf_fd = evsel->bpf_fd;
1638
1639 err = ioctl(evt_fd,
1640 PERF_EVENT_IOC_SET_BPF,
1641 bpf_fd);
1642 if (err && errno != EEXIST) {
1643 pr_err("failed to attach bpf fd %d: %s\n",
1644 bpf_fd, strerror(errno));
1645 err = -EINVAL;
1646 goto out_close;
1647 }
1648 }
1649
Andi Kleenbec19672013-08-04 19:41:26 -07001650 set_rlimit = NO_CHANGE;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001651
1652 /*
1653 * If we succeeded but had to kill clockid, fail and
1654 * have perf_evsel__open_strerror() print us a nice
1655 * error.
1656 */
1657 if (perf_missing_features.clockid ||
1658 perf_missing_features.clockid_wrong) {
1659 err = -EINVAL;
1660 goto out_close;
1661 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001662 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001663 }
1664
1665 return 0;
1666
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001667try_fallback:
Andi Kleenbec19672013-08-04 19:41:26 -07001668 /*
1669 * perf stat needs between 5 and 22 fds per CPU. When we run out
1670 * of them try to increase the limits.
1671 */
1672 if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1673 struct rlimit l;
1674 int old_errno = errno;
1675
1676 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1677 if (set_rlimit == NO_CHANGE)
1678 l.rlim_cur = l.rlim_max;
1679 else {
1680 l.rlim_cur = l.rlim_max + 1000;
1681 l.rlim_max = l.rlim_cur;
1682 }
1683 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1684 set_rlimit++;
1685 errno = old_errno;
1686 goto retry_open;
1687 }
1688 }
1689 errno = old_errno;
1690 }
1691
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001692 if (err != -EINVAL || cpu > 0 || thread > 0)
1693 goto out_close;
1694
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001695 /*
1696 * Must probe features in the order they were added to the
1697 * perf_event_attr interface.
1698 */
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001699 if (!perf_missing_features.write_backward && evsel->attr.write_backward) {
1700 perf_missing_features.write_backward = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001701 pr_debug2("switching off write_backward\n");
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001702 goto out_close;
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001703 } else if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) {
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001704 perf_missing_features.clockid_wrong = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001705 pr_debug2("switching off clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001706 goto fallback_missing_features;
1707 } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) {
1708 perf_missing_features.clockid = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001709 pr_debug2("switching off use_clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001710 goto fallback_missing_features;
1711 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001712 perf_missing_features.cloexec = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001713 pr_debug2("switching off cloexec flag\n");
Yann Droneaud57480d22014-06-30 22:28:47 +02001714 goto fallback_missing_features;
1715 } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001716 perf_missing_features.mmap2 = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001717 pr_debug2("switching off mmap2\n");
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001718 goto fallback_missing_features;
1719 } else if (!perf_missing_features.exclude_guest &&
1720 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001721 perf_missing_features.exclude_guest = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001722 pr_debug2("switching off exclude_guest, exclude_host\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001723 goto fallback_missing_features;
1724 } else if (!perf_missing_features.sample_id_all) {
1725 perf_missing_features.sample_id_all = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001726 pr_debug2("switching off sample_id_all\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001727 goto retry_sample_id;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001728 } else if (!perf_missing_features.lbr_flags &&
1729 (evsel->attr.branch_sample_type &
1730 (PERF_SAMPLE_BRANCH_NO_CYCLES |
1731 PERF_SAMPLE_BRANCH_NO_FLAGS))) {
1732 perf_missing_features.lbr_flags = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001733 pr_debug2("switching off branch sample type no (cycles/flags)\n");
Andi Kleenbd0f8892015-12-11 16:12:24 -08001734 goto fallback_missing_features;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001735 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001736out_close:
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001737 do {
1738 while (--thread >= 0) {
1739 close(FD(evsel, cpu, thread));
1740 FD(evsel, cpu, thread) = -1;
1741 }
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001742 thread = nthreads;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001743 } while (--cpu >= 0);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001744 return err;
1745}
1746
1747void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads)
1748{
1749 if (evsel->fd == NULL)
1750 return;
1751
1752 perf_evsel__close_fd(evsel, ncpus, nthreads);
1753 perf_evsel__free_fd(evsel);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001754}
1755
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001756int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001757 struct cpu_map *cpus)
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001758{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001759 return perf_evsel__open(evsel, cpus, NULL);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001760}
1761
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001762int perf_evsel__open_per_thread(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001763 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001764{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001765 return perf_evsel__open(evsel, NULL, threads);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001766}
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -02001767
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001768static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
1769 const union perf_event *event,
1770 struct perf_sample *sample)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001771{
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001772 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001773 const u64 *array = event->sample.array;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001774 bool swapped = evsel->needs_swap;
Jiri Olsa37073f92012-05-30 14:23:44 +02001775 union u64_swap u;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001776
1777 array += ((event->header.size -
1778 sizeof(event->header)) / sizeof(u64)) - 1;
1779
Adrian Hunter75562572013-08-27 11:23:09 +03001780 if (type & PERF_SAMPLE_IDENTIFIER) {
1781 sample->id = *array;
1782 array--;
1783 }
1784
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001785 if (type & PERF_SAMPLE_CPU) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001786 u.val64 = *array;
1787 if (swapped) {
1788 /* undo swap of u64, then swap on individual u32s */
1789 u.val64 = bswap_64(u.val64);
1790 u.val32[0] = bswap_32(u.val32[0]);
1791 }
1792
1793 sample->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001794 array--;
1795 }
1796
1797 if (type & PERF_SAMPLE_STREAM_ID) {
1798 sample->stream_id = *array;
1799 array--;
1800 }
1801
1802 if (type & PERF_SAMPLE_ID) {
1803 sample->id = *array;
1804 array--;
1805 }
1806
1807 if (type & PERF_SAMPLE_TIME) {
1808 sample->time = *array;
1809 array--;
1810 }
1811
1812 if (type & PERF_SAMPLE_TID) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001813 u.val64 = *array;
1814 if (swapped) {
1815 /* undo swap of u64, then swap on individual u32s */
1816 u.val64 = bswap_64(u.val64);
1817 u.val32[0] = bswap_32(u.val32[0]);
1818 u.val32[1] = bswap_32(u.val32[1]);
1819 }
1820
1821 sample->pid = u.val32[0];
1822 sample->tid = u.val32[1];
Adrian Hunterdd44bc62013-10-18 15:29:01 +03001823 array--;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001824 }
1825
1826 return 0;
1827}
1828
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001829static inline bool overflow(const void *endp, u16 max_size, const void *offset,
1830 u64 size)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001831{
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001832 return size > max_size || offset + size > endp;
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001833}
1834
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001835#define OVERFLOW_CHECK(offset, size, max_size) \
1836 do { \
1837 if (overflow(endp, (max_size), (offset), (size))) \
1838 return -EFAULT; \
1839 } while (0)
1840
1841#define OVERFLOW_CHECK_u64(offset) \
1842 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
1843
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001844int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001845 struct perf_sample *data)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001846{
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001847 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001848 bool swapped = evsel->needs_swap;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001849 const u64 *array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001850 u16 max_size = event->header.size;
1851 const void *endp = (void *)event + max_size;
1852 u64 sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001853
David Ahern936be502011-09-06 09:12:26 -06001854 /*
1855 * used for cross-endian analysis. See git commit 65014ab3
1856 * for why this goofiness is needed.
1857 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02001858 union u64_swap u;
David Ahern936be502011-09-06 09:12:26 -06001859
Robert Richterf3bda2c2011-12-15 17:32:39 +01001860 memset(data, 0, sizeof(*data));
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001861 data->cpu = data->pid = data->tid = -1;
1862 data->stream_id = data->id = data->time = -1ULL;
Jiri Olsabc529082014-02-03 12:44:41 +01001863 data->period = evsel->attr.sample_period;
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001864 data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001865
1866 if (event->header.type != PERF_RECORD_SAMPLE) {
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001867 if (!evsel->attr.sample_id_all)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001868 return 0;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001869 return perf_evsel__parse_id_sample(evsel, event, data);
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001870 }
1871
1872 array = event->sample.array;
1873
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001874 /*
1875 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
1876 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
1877 * check the format does not go past the end of the event.
1878 */
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001879 if (evsel->sample_size + sizeof(event->header) > event->header.size)
Frederic Weisbeckera2854122011-05-21 19:33:04 +02001880 return -EFAULT;
1881
Adrian Hunter75562572013-08-27 11:23:09 +03001882 data->id = -1ULL;
1883 if (type & PERF_SAMPLE_IDENTIFIER) {
1884 data->id = *array;
1885 array++;
1886 }
1887
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001888 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03001889 data->ip = *array;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001890 array++;
1891 }
1892
1893 if (type & PERF_SAMPLE_TID) {
David Ahern936be502011-09-06 09:12:26 -06001894 u.val64 = *array;
1895 if (swapped) {
1896 /* undo swap of u64, then swap on individual u32s */
1897 u.val64 = bswap_64(u.val64);
1898 u.val32[0] = bswap_32(u.val32[0]);
1899 u.val32[1] = bswap_32(u.val32[1]);
1900 }
1901
1902 data->pid = u.val32[0];
1903 data->tid = u.val32[1];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001904 array++;
1905 }
1906
1907 if (type & PERF_SAMPLE_TIME) {
1908 data->time = *array;
1909 array++;
1910 }
1911
David Ahern7cec0922011-05-30 13:08:23 -06001912 data->addr = 0;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001913 if (type & PERF_SAMPLE_ADDR) {
1914 data->addr = *array;
1915 array++;
1916 }
1917
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001918 if (type & PERF_SAMPLE_ID) {
1919 data->id = *array;
1920 array++;
1921 }
1922
1923 if (type & PERF_SAMPLE_STREAM_ID) {
1924 data->stream_id = *array;
1925 array++;
1926 }
1927
1928 if (type & PERF_SAMPLE_CPU) {
David Ahern936be502011-09-06 09:12:26 -06001929
1930 u.val64 = *array;
1931 if (swapped) {
1932 /* undo swap of u64, then swap on individual u32s */
1933 u.val64 = bswap_64(u.val64);
1934 u.val32[0] = bswap_32(u.val32[0]);
1935 }
1936
1937 data->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001938 array++;
1939 }
1940
1941 if (type & PERF_SAMPLE_PERIOD) {
1942 data->period = *array;
1943 array++;
1944 }
1945
1946 if (type & PERF_SAMPLE_READ) {
Jiri Olsa9ede4732012-10-10 17:38:13 +02001947 u64 read_format = evsel->attr.read_format;
1948
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001949 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02001950 if (read_format & PERF_FORMAT_GROUP)
1951 data->read.group.nr = *array;
1952 else
1953 data->read.one.value = *array;
1954
1955 array++;
1956
1957 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001958 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02001959 data->read.time_enabled = *array;
1960 array++;
1961 }
1962
1963 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001964 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02001965 data->read.time_running = *array;
1966 array++;
1967 }
1968
1969 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
1970 if (read_format & PERF_FORMAT_GROUP) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001971 const u64 max_group_nr = UINT64_MAX /
1972 sizeof(struct sample_read_value);
1973
1974 if (data->read.group.nr > max_group_nr)
1975 return -EFAULT;
1976 sz = data->read.group.nr *
1977 sizeof(struct sample_read_value);
1978 OVERFLOW_CHECK(array, sz, max_size);
1979 data->read.group.values =
1980 (struct sample_read_value *)array;
1981 array = (void *)array + sz;
Jiri Olsa9ede4732012-10-10 17:38:13 +02001982 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001983 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02001984 data->read.one.id = *array;
1985 array++;
1986 }
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001987 }
1988
1989 if (type & PERF_SAMPLE_CALLCHAIN) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001990 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
1991
1992 OVERFLOW_CHECK_u64(array);
1993 data->callchain = (struct ip_callchain *)array++;
1994 if (data->callchain->nr > max_callchain_nr)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001995 return -EFAULT;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001996 sz = data->callchain->nr * sizeof(u64);
1997 OVERFLOW_CHECK(array, sz, max_size);
1998 array = (void *)array + sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001999 }
2000
2001 if (type & PERF_SAMPLE_RAW) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002002 OVERFLOW_CHECK_u64(array);
David Ahern936be502011-09-06 09:12:26 -06002003 u.val64 = *array;
2004 if (WARN_ONCE(swapped,
2005 "Endianness of raw data not corrected!\n")) {
2006 /* undo swap of u64, then swap on individual u32s */
2007 u.val64 = bswap_64(u.val64);
2008 u.val32[0] = bswap_32(u.val32[0]);
2009 u.val32[1] = bswap_32(u.val32[1]);
2010 }
David Ahern936be502011-09-06 09:12:26 -06002011 data->raw_size = u.val32[0];
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002012 array = (void *)array + sizeof(u32);
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002013
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002014 OVERFLOW_CHECK(array, data->raw_size, max_size);
2015 data->raw_data = (void *)array;
2016 array = (void *)array + data->raw_size;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002017 }
2018
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002019 if (type & PERF_SAMPLE_BRANCH_STACK) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002020 const u64 max_branch_nr = UINT64_MAX /
2021 sizeof(struct branch_entry);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002022
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002023 OVERFLOW_CHECK_u64(array);
2024 data->branch_stack = (struct branch_stack *)array++;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002025
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002026 if (data->branch_stack->nr > max_branch_nr)
2027 return -EFAULT;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002028 sz = data->branch_stack->nr * sizeof(struct branch_entry);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002029 OVERFLOW_CHECK(array, sz, max_size);
2030 array = (void *)array + sz;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002031 }
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002032
2033 if (type & PERF_SAMPLE_REGS_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002034 OVERFLOW_CHECK_u64(array);
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002035 data->user_regs.abi = *array;
2036 array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002037
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002038 if (data->user_regs.abi) {
Jiri Olsa352ea452014-01-07 13:47:25 +01002039 u64 mask = evsel->attr.sample_regs_user;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002040
Jiri Olsa352ea452014-01-07 13:47:25 +01002041 sz = hweight_long(mask) * sizeof(u64);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002042 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa352ea452014-01-07 13:47:25 +01002043 data->user_regs.mask = mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002044 data->user_regs.regs = (u64 *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002045 array = (void *)array + sz;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002046 }
2047 }
2048
2049 if (type & PERF_SAMPLE_STACK_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002050 OVERFLOW_CHECK_u64(array);
2051 sz = *array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002052
2053 data->user_stack.offset = ((char *)(array - 1)
2054 - (char *) event);
2055
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002056 if (!sz) {
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002057 data->user_stack.size = 0;
2058 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002059 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002060 data->user_stack.data = (char *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002061 array = (void *)array + sz;
2062 OVERFLOW_CHECK_u64(array);
Adrian Hunter54bd2692013-07-04 16:20:34 +03002063 data->user_stack.size = *array++;
Jiri Olsaa65cb4b2013-10-02 15:46:39 +02002064 if (WARN_ONCE(data->user_stack.size > sz,
2065 "user stack dump failure\n"))
2066 return -EFAULT;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002067 }
2068 }
2069
Andi Kleen05484292013-01-24 16:10:29 +01002070 if (type & PERF_SAMPLE_WEIGHT) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002071 OVERFLOW_CHECK_u64(array);
Andi Kleen05484292013-01-24 16:10:29 +01002072 data->weight = *array;
2073 array++;
2074 }
2075
Stephane Eranian98a3b322013-01-24 16:10:35 +01002076 data->data_src = PERF_MEM_DATA_SRC_NONE;
2077 if (type & PERF_SAMPLE_DATA_SRC) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002078 OVERFLOW_CHECK_u64(array);
Stephane Eranian98a3b322013-01-24 16:10:35 +01002079 data->data_src = *array;
2080 array++;
2081 }
2082
Andi Kleen475eeab2013-09-20 07:40:43 -07002083 data->transaction = 0;
2084 if (type & PERF_SAMPLE_TRANSACTION) {
Adrian Hunter87b95522013-11-01 15:51:36 +02002085 OVERFLOW_CHECK_u64(array);
Andi Kleen475eeab2013-09-20 07:40:43 -07002086 data->transaction = *array;
2087 array++;
2088 }
2089
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002090 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2091 if (type & PERF_SAMPLE_REGS_INTR) {
2092 OVERFLOW_CHECK_u64(array);
2093 data->intr_regs.abi = *array;
2094 array++;
2095
2096 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2097 u64 mask = evsel->attr.sample_regs_intr;
2098
2099 sz = hweight_long(mask) * sizeof(u64);
2100 OVERFLOW_CHECK(array, sz, max_size);
2101 data->intr_regs.mask = mask;
2102 data->intr_regs.regs = (u64 *)array;
2103 array = (void *)array + sz;
2104 }
2105 }
2106
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002107 return 0;
2108}
Andrew Vagin74eec262011-11-28 12:03:31 +03002109
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002110size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002111 u64 read_format)
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002112{
2113 size_t sz, result = sizeof(struct sample_event);
2114
2115 if (type & PERF_SAMPLE_IDENTIFIER)
2116 result += sizeof(u64);
2117
2118 if (type & PERF_SAMPLE_IP)
2119 result += sizeof(u64);
2120
2121 if (type & PERF_SAMPLE_TID)
2122 result += sizeof(u64);
2123
2124 if (type & PERF_SAMPLE_TIME)
2125 result += sizeof(u64);
2126
2127 if (type & PERF_SAMPLE_ADDR)
2128 result += sizeof(u64);
2129
2130 if (type & PERF_SAMPLE_ID)
2131 result += sizeof(u64);
2132
2133 if (type & PERF_SAMPLE_STREAM_ID)
2134 result += sizeof(u64);
2135
2136 if (type & PERF_SAMPLE_CPU)
2137 result += sizeof(u64);
2138
2139 if (type & PERF_SAMPLE_PERIOD)
2140 result += sizeof(u64);
2141
2142 if (type & PERF_SAMPLE_READ) {
2143 result += sizeof(u64);
2144 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2145 result += sizeof(u64);
2146 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2147 result += sizeof(u64);
2148 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2149 if (read_format & PERF_FORMAT_GROUP) {
2150 sz = sample->read.group.nr *
2151 sizeof(struct sample_read_value);
2152 result += sz;
2153 } else {
2154 result += sizeof(u64);
2155 }
2156 }
2157
2158 if (type & PERF_SAMPLE_CALLCHAIN) {
2159 sz = (sample->callchain->nr + 1) * sizeof(u64);
2160 result += sz;
2161 }
2162
2163 if (type & PERF_SAMPLE_RAW) {
2164 result += sizeof(u32);
2165 result += sample->raw_size;
2166 }
2167
2168 if (type & PERF_SAMPLE_BRANCH_STACK) {
2169 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2170 sz += sizeof(u64);
2171 result += sz;
2172 }
2173
2174 if (type & PERF_SAMPLE_REGS_USER) {
2175 if (sample->user_regs.abi) {
2176 result += sizeof(u64);
Jiri Olsa352ea452014-01-07 13:47:25 +01002177 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002178 result += sz;
2179 } else {
2180 result += sizeof(u64);
2181 }
2182 }
2183
2184 if (type & PERF_SAMPLE_STACK_USER) {
2185 sz = sample->user_stack.size;
2186 result += sizeof(u64);
2187 if (sz) {
2188 result += sz;
2189 result += sizeof(u64);
2190 }
2191 }
2192
2193 if (type & PERF_SAMPLE_WEIGHT)
2194 result += sizeof(u64);
2195
2196 if (type & PERF_SAMPLE_DATA_SRC)
2197 result += sizeof(u64);
2198
Adrian Hunter42d88912013-11-01 15:51:38 +02002199 if (type & PERF_SAMPLE_TRANSACTION)
2200 result += sizeof(u64);
2201
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002202 if (type & PERF_SAMPLE_REGS_INTR) {
2203 if (sample->intr_regs.abi) {
2204 result += sizeof(u64);
2205 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2206 result += sz;
2207 } else {
2208 result += sizeof(u64);
2209 }
2210 }
2211
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002212 return result;
2213}
2214
Andrew Vagin74eec262011-11-28 12:03:31 +03002215int perf_event__synthesize_sample(union perf_event *event, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002216 u64 read_format,
Andrew Vagin74eec262011-11-28 12:03:31 +03002217 const struct perf_sample *sample,
2218 bool swapped)
2219{
2220 u64 *array;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002221 size_t sz;
Andrew Vagin74eec262011-11-28 12:03:31 +03002222 /*
2223 * used for cross-endian analysis. See git commit 65014ab3
2224 * for why this goofiness is needed.
2225 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002226 union u64_swap u;
Andrew Vagin74eec262011-11-28 12:03:31 +03002227
2228 array = event->sample.array;
2229
Adrian Hunter75562572013-08-27 11:23:09 +03002230 if (type & PERF_SAMPLE_IDENTIFIER) {
2231 *array = sample->id;
2232 array++;
2233 }
2234
Andrew Vagin74eec262011-11-28 12:03:31 +03002235 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002236 *array = sample->ip;
Andrew Vagin74eec262011-11-28 12:03:31 +03002237 array++;
2238 }
2239
2240 if (type & PERF_SAMPLE_TID) {
2241 u.val32[0] = sample->pid;
2242 u.val32[1] = sample->tid;
2243 if (swapped) {
2244 /*
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002245 * Inverse of what is done in perf_evsel__parse_sample
Andrew Vagin74eec262011-11-28 12:03:31 +03002246 */
2247 u.val32[0] = bswap_32(u.val32[0]);
2248 u.val32[1] = bswap_32(u.val32[1]);
2249 u.val64 = bswap_64(u.val64);
2250 }
2251
2252 *array = u.val64;
2253 array++;
2254 }
2255
2256 if (type & PERF_SAMPLE_TIME) {
2257 *array = sample->time;
2258 array++;
2259 }
2260
2261 if (type & PERF_SAMPLE_ADDR) {
2262 *array = sample->addr;
2263 array++;
2264 }
2265
2266 if (type & PERF_SAMPLE_ID) {
2267 *array = sample->id;
2268 array++;
2269 }
2270
2271 if (type & PERF_SAMPLE_STREAM_ID) {
2272 *array = sample->stream_id;
2273 array++;
2274 }
2275
2276 if (type & PERF_SAMPLE_CPU) {
2277 u.val32[0] = sample->cpu;
2278 if (swapped) {
2279 /*
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002280 * Inverse of what is done in perf_evsel__parse_sample
Andrew Vagin74eec262011-11-28 12:03:31 +03002281 */
2282 u.val32[0] = bswap_32(u.val32[0]);
2283 u.val64 = bswap_64(u.val64);
2284 }
2285 *array = u.val64;
2286 array++;
2287 }
2288
2289 if (type & PERF_SAMPLE_PERIOD) {
2290 *array = sample->period;
2291 array++;
2292 }
2293
Adrian Hunterd03f2172013-08-27 11:23:11 +03002294 if (type & PERF_SAMPLE_READ) {
2295 if (read_format & PERF_FORMAT_GROUP)
2296 *array = sample->read.group.nr;
2297 else
2298 *array = sample->read.one.value;
2299 array++;
2300
2301 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2302 *array = sample->read.time_enabled;
2303 array++;
2304 }
2305
2306 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2307 *array = sample->read.time_running;
2308 array++;
2309 }
2310
2311 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2312 if (read_format & PERF_FORMAT_GROUP) {
2313 sz = sample->read.group.nr *
2314 sizeof(struct sample_read_value);
2315 memcpy(array, sample->read.group.values, sz);
2316 array = (void *)array + sz;
2317 } else {
2318 *array = sample->read.one.id;
2319 array++;
2320 }
2321 }
2322
2323 if (type & PERF_SAMPLE_CALLCHAIN) {
2324 sz = (sample->callchain->nr + 1) * sizeof(u64);
2325 memcpy(array, sample->callchain, sz);
2326 array = (void *)array + sz;
2327 }
2328
2329 if (type & PERF_SAMPLE_RAW) {
2330 u.val32[0] = sample->raw_size;
2331 if (WARN_ONCE(swapped,
2332 "Endianness of raw data not corrected!\n")) {
2333 /*
2334 * Inverse of what is done in perf_evsel__parse_sample
2335 */
2336 u.val32[0] = bswap_32(u.val32[0]);
2337 u.val32[1] = bswap_32(u.val32[1]);
2338 u.val64 = bswap_64(u.val64);
2339 }
2340 *array = u.val64;
2341 array = (void *)array + sizeof(u32);
2342
2343 memcpy(array, sample->raw_data, sample->raw_size);
2344 array = (void *)array + sample->raw_size;
2345 }
2346
2347 if (type & PERF_SAMPLE_BRANCH_STACK) {
2348 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2349 sz += sizeof(u64);
2350 memcpy(array, sample->branch_stack, sz);
2351 array = (void *)array + sz;
2352 }
2353
2354 if (type & PERF_SAMPLE_REGS_USER) {
2355 if (sample->user_regs.abi) {
2356 *array++ = sample->user_regs.abi;
Jiri Olsa352ea452014-01-07 13:47:25 +01002357 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterd03f2172013-08-27 11:23:11 +03002358 memcpy(array, sample->user_regs.regs, sz);
2359 array = (void *)array + sz;
2360 } else {
2361 *array++ = 0;
2362 }
2363 }
2364
2365 if (type & PERF_SAMPLE_STACK_USER) {
2366 sz = sample->user_stack.size;
2367 *array++ = sz;
2368 if (sz) {
2369 memcpy(array, sample->user_stack.data, sz);
2370 array = (void *)array + sz;
2371 *array++ = sz;
2372 }
2373 }
2374
2375 if (type & PERF_SAMPLE_WEIGHT) {
2376 *array = sample->weight;
2377 array++;
2378 }
2379
2380 if (type & PERF_SAMPLE_DATA_SRC) {
2381 *array = sample->data_src;
2382 array++;
2383 }
2384
Adrian Hunter42d88912013-11-01 15:51:38 +02002385 if (type & PERF_SAMPLE_TRANSACTION) {
2386 *array = sample->transaction;
2387 array++;
2388 }
2389
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002390 if (type & PERF_SAMPLE_REGS_INTR) {
2391 if (sample->intr_regs.abi) {
2392 *array++ = sample->intr_regs.abi;
2393 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2394 memcpy(array, sample->intr_regs.regs, sz);
2395 array = (void *)array + sz;
2396 } else {
2397 *array++ = 0;
2398 }
2399 }
2400
Andrew Vagin74eec262011-11-28 12:03:31 +03002401 return 0;
2402}
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002403
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002404struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
2405{
2406 return pevent_find_field(evsel->tp_format, name);
2407}
2408
Arnaldo Carvalho de Melo5d2074e2012-09-26 20:22:00 -03002409void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002410 const char *name)
2411{
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002412 struct format_field *field = perf_evsel__field(evsel, name);
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002413 int offset;
2414
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002415 if (!field)
2416 return NULL;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002417
2418 offset = field->offset;
2419
2420 if (field->flags & FIELD_IS_DYNAMIC) {
2421 offset = *(int *)(sample->raw_data + field->offset);
2422 offset &= 0xffff;
2423 }
2424
2425 return sample->raw_data + offset;
2426}
2427
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002428u64 format_field__intval(struct format_field *field, struct perf_sample *sample,
2429 bool needs_swap)
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002430{
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002431 u64 value;
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002432 void *ptr = sample->raw_data + field->offset;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002433
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002434 switch (field->size) {
2435 case 1:
2436 return *(u8 *)ptr;
2437 case 2:
2438 value = *(u16 *)ptr;
2439 break;
2440 case 4:
2441 value = *(u32 *)ptr;
2442 break;
2443 case 8:
David Aherne94eeda2015-03-24 16:14:09 -04002444 memcpy(&value, ptr, sizeof(u64));
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002445 break;
2446 default:
2447 return 0;
2448 }
2449
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002450 if (!needs_swap)
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002451 return value;
2452
2453 switch (field->size) {
2454 case 2:
2455 return bswap_16(value);
2456 case 4:
2457 return bswap_32(value);
2458 case 8:
2459 return bswap_64(value);
2460 default:
2461 return 0;
2462 }
2463
2464 return 0;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002465}
Arnaldo Carvalho de Melo0698aed2012-12-10 18:17:08 -03002466
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002467u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
2468 const char *name)
2469{
2470 struct format_field *field = perf_evsel__field(evsel, name);
2471
2472 if (!field)
2473 return 0;
2474
2475 return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2476}
2477
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002478bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
2479 char *msg, size_t msgsize)
2480{
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002481 int paranoid;
2482
David Ahern2b821cc2013-07-18 17:27:59 -06002483 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002484 evsel->attr.type == PERF_TYPE_HARDWARE &&
2485 evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2486 /*
2487 * If it's cycles then fall back to hrtimer based
2488 * cpu-clock-tick sw counter, which is always available even if
2489 * no PMU support.
2490 *
2491 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2492 * b0a873e).
2493 */
2494 scnprintf(msg, msgsize, "%s",
2495"The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2496
2497 evsel->attr.type = PERF_TYPE_SOFTWARE;
2498 evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK;
2499
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03002500 zfree(&evsel->name);
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002501 return true;
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002502 } else if (err == EACCES && !evsel->attr.exclude_kernel &&
2503 (paranoid = perf_event_paranoid()) > 1) {
2504 const char *name = perf_evsel__name(evsel);
2505 char *new_name;
2506
2507 if (asprintf(&new_name, "%s%su", name, strchr(name, ':') ? "" : ":") < 0)
2508 return false;
2509
2510 if (evsel->name)
2511 free(evsel->name);
2512 evsel->name = new_name;
2513 scnprintf(msg, msgsize,
2514"kernel.perf_event_paranoid=%d, trying to fall back to excluding kernel samples", paranoid);
2515 evsel->attr.exclude_kernel = 1;
2516
2517 return true;
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002518 }
2519
2520 return false;
2521}
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002522
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -03002523static bool find_process(const char *name)
2524{
2525 size_t len = strlen(name);
2526 DIR *dir;
2527 struct dirent *d;
2528 int ret = -1;
2529
2530 dir = opendir(procfs__mountpoint());
2531 if (!dir)
2532 return false;
2533
2534 /* Walk through the directory. */
2535 while (ret && (d = readdir(dir)) != NULL) {
2536 char path[PATH_MAX];
2537 char *data;
2538 size_t size;
2539
2540 if ((d->d_type != DT_DIR) ||
2541 !strcmp(".", d->d_name) ||
2542 !strcmp("..", d->d_name))
2543 continue;
2544
2545 scnprintf(path, sizeof(path), "%s/%s/comm",
2546 procfs__mountpoint(), d->d_name);
2547
2548 if (filename__read_str(path, &data, &size))
2549 continue;
2550
2551 ret = strncmp(name, data, len);
2552 free(data);
2553 }
2554
2555 closedir(dir);
2556 return ret ? false : true;
2557}
2558
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002559int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002560 int err, char *msg, size_t size)
2561{
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002562 char sbuf[STRERR_BUFSIZE];
Jin Yao32ccb132017-04-07 20:08:52 +08002563 int printed = 0;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002564
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002565 switch (err) {
2566 case EPERM:
2567 case EACCES:
Jin Yao32ccb132017-04-07 20:08:52 +08002568 if (err == EPERM)
2569 printed = scnprintf(msg, size,
2570 "No permission to enable %s event.\n\n",
2571 perf_evsel__name(evsel));
2572
2573 return scnprintf(msg + printed, size - printed,
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002574 "You may not have permission to collect %sstats.\n\n"
2575 "Consider tweaking /proc/sys/kernel/perf_event_paranoid,\n"
2576 "which controls use of the performance events system by\n"
2577 "unprivileged users (without CAP_SYS_ADMIN).\n\n"
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002578 "The current value is %d:\n\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002579 " -1: Allow use of (almost) all events by all users\n"
2580 ">= 0: Disallow raw tracepoint access by users without CAP_IOC_LOCK\n"
2581 ">= 1: Disallow CPU event access by users without CAP_SYS_ADMIN\n"
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -03002582 ">= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN\n\n"
2583 "To make this setting permanent, edit /etc/sysctl.conf too, e.g.:\n\n"
2584 " kernel.perf_event_paranoid = -1\n" ,
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002585 target->system_wide ? "system-wide " : "",
2586 perf_event_paranoid());
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002587 case ENOENT:
2588 return scnprintf(msg, size, "The %s event is not supported.",
2589 perf_evsel__name(evsel));
2590 case EMFILE:
2591 return scnprintf(msg, size, "%s",
2592 "Too many events are opened.\n"
Jiri Olsa18ffdfe2015-05-25 22:51:54 +02002593 "Probably the maximum number of open file descriptors has been reached.\n"
2594 "Hint: Try again after reducing the number of events.\n"
2595 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
Arnaldo Carvalho de Melode46d522016-04-27 17:51:45 -03002596 case ENOMEM:
2597 if ((evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0 &&
2598 access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2599 return scnprintf(msg, size,
2600 "Not enough memory to setup event with callchain.\n"
2601 "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2602 "Hint: Current value: %d", sysctl_perf_event_max_stack);
2603 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002604 case ENODEV:
2605 if (target->cpu_list)
2606 return scnprintf(msg, size, "%s",
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002607 "No such device - did you specify an out-of-range profile CPU?");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002608 break;
2609 case EOPNOTSUPP:
Vineet Guptadc89e752016-05-09 15:07:39 +05302610 if (evsel->attr.sample_period != 0)
2611 return scnprintf(msg, size, "%s",
2612 "PMU Hardware doesn't support sampling/overflow-interrupts.");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002613 if (evsel->attr.precise_ip)
2614 return scnprintf(msg, size, "%s",
2615 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2616#if defined(__i386__) || defined(__x86_64__)
2617 if (evsel->attr.type == PERF_TYPE_HARDWARE)
2618 return scnprintf(msg, size, "%s",
2619 "No hardware sampling interrupt available.\n"
2620 "No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.");
2621#endif
2622 break;
Jiri Olsa63914ac2014-08-01 17:46:54 +02002623 case EBUSY:
2624 if (find_process("oprofiled"))
2625 return scnprintf(msg, size,
2626 "The PMU counters are busy/taken by another profiler.\n"
2627 "We found oprofile daemon running, please stop it and try again.");
2628 break;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002629 case EINVAL:
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00002630 if (evsel->attr.write_backward && perf_missing_features.write_backward)
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00002631 return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002632 if (perf_missing_features.clockid)
2633 return scnprintf(msg, size, "clockid feature not supported.");
2634 if (perf_missing_features.clockid_wrong)
2635 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2636 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002637 default:
2638 break;
2639 }
2640
2641 return scnprintf(msg, size,
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002642 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002643 "/bin/dmesg may provide additional information.\n"
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002644 "No CONFIG_PERF_EVENTS=y kernel support configured?",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03002645 err, str_error_r(err, sbuf, sizeof(sbuf)),
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002646 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002647}
Ravi Bangoriaf4e47f92016-06-30 11:44:19 +05302648
2649char *perf_evsel__env_arch(struct perf_evsel *evsel)
2650{
2651 if (evsel && evsel->evlist && evsel->evlist->env)
2652 return evsel->evlist->env->arch;
2653 return NULL;
2654}
Jin Yao69fb09f2017-07-07 13:06:34 +08002655
2656char *perf_evsel__env_cpuid(struct perf_evsel *evsel)
2657{
2658 if (evsel && evsel->evlist && evsel->evlist->env)
2659 return evsel->evlist->env->cpuid;
2660 return NULL;
2661}