blob: 3735c9e0080d49c7eb9ad26c62d07ff8d097ad7a [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;
Jiri Olsa82bf3112017-07-26 14:02:06 +020052 bool group_read;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030053} perf_missing_features;
54
Peter Zijlstra814c8c32015-03-31 00:19:31 +020055static clockid_t clockid;
56
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030057static int perf_evsel__no_extra_init(struct perf_evsel *evsel __maybe_unused)
58{
59 return 0;
60}
61
Jiri Olsa10213e22017-07-03 16:50:18 +020062void __weak test_attr__ready(void) { }
63
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030064static void perf_evsel__no_extra_fini(struct perf_evsel *evsel __maybe_unused)
65{
66}
67
68static struct {
69 size_t size;
70 int (*init)(struct perf_evsel *evsel);
71 void (*fini)(struct perf_evsel *evsel);
72} perf_evsel__object = {
73 .size = sizeof(struct perf_evsel),
74 .init = perf_evsel__no_extra_init,
75 .fini = perf_evsel__no_extra_fini,
76};
77
78int perf_evsel__object_config(size_t object_size,
79 int (*init)(struct perf_evsel *evsel),
80 void (*fini)(struct perf_evsel *evsel))
81{
82
83 if (object_size == 0)
84 goto set_methods;
85
86 if (perf_evsel__object.size > object_size)
87 return -EINVAL;
88
89 perf_evsel__object.size = object_size;
90
91set_methods:
92 if (init != NULL)
93 perf_evsel__object.init = init;
94
95 if (fini != NULL)
96 perf_evsel__object.fini = fini;
97
98 return 0;
99}
100
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200101#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
102
Adrian Hunter75562572013-08-27 11:23:09 +0300103int __perf_evsel__sample_size(u64 sample_type)
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300104{
105 u64 mask = sample_type & PERF_SAMPLE_MASK;
106 int size = 0;
107 int i;
108
109 for (i = 0; i < 64; i++) {
110 if (mask & (1ULL << i))
111 size++;
112 }
113
114 size *= sizeof(u64);
115
116 return size;
117}
118
Adrian Hunter75562572013-08-27 11:23:09 +0300119/**
120 * __perf_evsel__calc_id_pos - calculate id_pos.
121 * @sample_type: sample type
122 *
123 * This function returns the position of the event id (PERF_SAMPLE_ID or
124 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct
125 * sample_event.
126 */
127static int __perf_evsel__calc_id_pos(u64 sample_type)
128{
129 int idx = 0;
130
131 if (sample_type & PERF_SAMPLE_IDENTIFIER)
132 return 0;
133
134 if (!(sample_type & PERF_SAMPLE_ID))
135 return -1;
136
137 if (sample_type & PERF_SAMPLE_IP)
138 idx += 1;
139
140 if (sample_type & PERF_SAMPLE_TID)
141 idx += 1;
142
143 if (sample_type & PERF_SAMPLE_TIME)
144 idx += 1;
145
146 if (sample_type & PERF_SAMPLE_ADDR)
147 idx += 1;
148
149 return idx;
150}
151
152/**
153 * __perf_evsel__calc_is_pos - calculate is_pos.
154 * @sample_type: sample type
155 *
156 * This function returns the position (counting backwards) of the event id
157 * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if
158 * sample_id_all is used there is an id sample appended to non-sample events.
159 */
160static int __perf_evsel__calc_is_pos(u64 sample_type)
161{
162 int idx = 1;
163
164 if (sample_type & PERF_SAMPLE_IDENTIFIER)
165 return 1;
166
167 if (!(sample_type & PERF_SAMPLE_ID))
168 return -1;
169
170 if (sample_type & PERF_SAMPLE_CPU)
171 idx += 1;
172
173 if (sample_type & PERF_SAMPLE_STREAM_ID)
174 idx += 1;
175
176 return idx;
177}
178
179void perf_evsel__calc_id_pos(struct perf_evsel *evsel)
180{
181 evsel->id_pos = __perf_evsel__calc_id_pos(evsel->attr.sample_type);
182 evsel->is_pos = __perf_evsel__calc_is_pos(evsel->attr.sample_type);
183}
184
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300185void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
186 enum perf_event_sample_format bit)
187{
188 if (!(evsel->attr.sample_type & bit)) {
189 evsel->attr.sample_type |= bit;
190 evsel->sample_size += sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300191 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300192 }
193}
194
195void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
196 enum perf_event_sample_format bit)
197{
198 if (evsel->attr.sample_type & bit) {
199 evsel->attr.sample_type &= ~bit;
200 evsel->sample_size -= sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300201 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300202 }
203}
204
Adrian Hunter75562572013-08-27 11:23:09 +0300205void perf_evsel__set_sample_id(struct perf_evsel *evsel,
206 bool can_sample_identifier)
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300207{
Adrian Hunter75562572013-08-27 11:23:09 +0300208 if (can_sample_identifier) {
209 perf_evsel__reset_sample_bit(evsel, ID);
210 perf_evsel__set_sample_bit(evsel, IDENTIFIER);
211 } else {
212 perf_evsel__set_sample_bit(evsel, ID);
213 }
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300214 evsel->attr.read_format |= PERF_FORMAT_ID;
215}
216
Arnaldo Carvalho de Melo5496bc02016-07-07 11:51:47 -0300217/**
218 * perf_evsel__is_function_event - Return whether given evsel is a function
219 * trace event
220 *
221 * @evsel - evsel selector to be tested
222 *
223 * Return %true if event is function trace event
224 */
225bool perf_evsel__is_function_event(struct perf_evsel *evsel)
226{
227#define FUNCTION_EVENT "ftrace:function"
228
229 return evsel->name &&
230 !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
231
232#undef FUNCTION_EVENT
233}
234
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200235void perf_evsel__init(struct perf_evsel *evsel,
236 struct perf_event_attr *attr, int idx)
237{
238 evsel->idx = idx;
Adrian Hunter60b08962014-07-31 09:00:52 +0300239 evsel->tracking = !idx;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200240 evsel->attr = *attr;
Namhyung Kim2cfda562012-11-29 15:38:29 +0900241 evsel->leader = evsel;
Stephane Eranian410136f2013-11-12 17:58:49 +0100242 evsel->unit = "";
243 evsel->scale = 1.0;
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -0400244 evsel->evlist = NULL;
Wang Nan1f45b1d2015-10-14 12:41:18 +0000245 evsel->bpf_fd = -1;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200246 INIT_LIST_HEAD(&evsel->node);
Jiri Olsa930a2e22015-07-29 05:42:10 -0400247 INIT_LIST_HEAD(&evsel->config_terms);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300248 perf_evsel__object.init(evsel);
Arnaldo Carvalho de Melobde09462012-08-01 18:53:11 -0300249 evsel->sample_size = __perf_evsel__sample_size(attr->sample_type);
Adrian Hunter75562572013-08-27 11:23:09 +0300250 perf_evsel__calc_id_pos(evsel);
Wang Nan15bfd2c2015-07-10 07:36:09 +0000251 evsel->cmdline_group_boundary = false;
Andi Kleen37932c12017-03-20 13:17:08 -0700252 evsel->metric_expr = NULL;
Andi Kleen96284812017-03-20 13:17:10 -0700253 evsel->metric_name = NULL;
Andi Kleen37932c12017-03-20 13:17:08 -0700254 evsel->metric_events = NULL;
255 evsel->collect_stat = false;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200256}
257
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300258struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200259{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300260 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200261
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200262 if (evsel != NULL)
263 perf_evsel__init(evsel, attr, idx);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200264
Wang Nan03e0a7d2016-02-22 09:10:37 +0000265 if (perf_evsel__is_bpf_output(evsel)) {
Wang Nand37ba882016-04-01 13:26:42 +0000266 evsel->attr.sample_type |= (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
267 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Wang Nan03e0a7d2016-02-22 09:10:37 +0000268 evsel->attr.sample_period = 1;
269 }
270
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200271 return evsel;
272}
273
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300274struct perf_evsel *perf_evsel__new_cycles(bool precise)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300275{
276 struct perf_event_attr attr = {
277 .type = PERF_TYPE_HARDWARE,
278 .config = PERF_COUNT_HW_CPU_CYCLES,
Arnaldo Carvalho de Melod37a3692017-07-10 16:08:07 -0300279 .exclude_kernel = geteuid() != 0,
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300280 };
281 struct perf_evsel *evsel;
282
283 event_attr_init(&attr);
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300284
285 if (!precise)
286 goto new_event;
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300287 /*
288 * Unnamed union member, not supported as struct member named
289 * initializer in older compilers such as gcc 4.4.7
290 *
291 * Just for probing the precise_ip:
292 */
293 attr.sample_period = 1;
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300294
295 perf_event_attr__set_max_precise_ip(&attr);
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300296 /*
297 * Now let the usual logic to set up the perf_event_attr defaults
298 * to kick in when we return and before perf_evsel__open() is called.
299 */
300 attr.sample_period = 0;
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300301new_event:
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300302 evsel = perf_evsel__new(&attr);
303 if (evsel == NULL)
304 goto out;
305
306 /* use asprintf() because free(evsel) assumes name is allocated */
Arnaldo Carvalho de Meloede56262017-07-10 16:19:25 -0300307 if (asprintf(&evsel->name, "cycles%s%s%.*s",
308 (attr.precise_ip || attr.exclude_kernel) ? ":" : "",
309 attr.exclude_kernel ? "u" : "",
310 attr.precise_ip ? attr.precise_ip + 1 : 0, "ppp") < 0)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300311 goto error_free;
312out:
313 return evsel;
314error_free:
315 perf_evsel__delete(evsel);
316 evsel = NULL;
317 goto out;
318}
319
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200320/*
321 * Returns pointer with encoded error via <linux/err.h> interface.
322 */
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300323struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx)
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300324{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300325 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200326 int err = -ENOMEM;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300327
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200328 if (evsel == NULL) {
329 goto out_err;
330 } else {
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300331 struct perf_event_attr attr = {
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300332 .type = PERF_TYPE_TRACEPOINT,
333 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
334 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300335 };
336
Arnaldo Carvalho de Meloe48ffe22012-09-26 17:11:38 -0300337 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
338 goto out_free;
339
Jiri Olsa97978b32013-12-03 14:09:24 +0100340 evsel->tp_format = trace_event__tp_format(sys, name);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200341 if (IS_ERR(evsel->tp_format)) {
342 err = PTR_ERR(evsel->tp_format);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300343 goto out_free;
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200344 }
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300345
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300346 event_attr_init(&attr);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300347 attr.config = evsel->tp_format->id;
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300348 attr.sample_period = 1;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300349 perf_evsel__init(evsel, &attr, idx);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300350 }
351
352 return evsel;
353
354out_free:
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300355 zfree(&evsel->name);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300356 free(evsel);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200357out_err:
358 return ERR_PTR(err);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300359}
360
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300361const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300362 "cycles",
363 "instructions",
364 "cache-references",
365 "cache-misses",
366 "branches",
367 "branch-misses",
368 "bus-cycles",
369 "stalled-cycles-frontend",
370 "stalled-cycles-backend",
371 "ref-cycles",
372};
373
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300374static const char *__perf_evsel__hw_name(u64 config)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300375{
376 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
377 return perf_evsel__hw_names[config];
378
379 return "unknown-hardware";
380}
381
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300382static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300383{
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300384 int colon = 0, r = 0;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300385 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300386 bool exclude_guest_default = false;
387
388#define MOD_PRINT(context, mod) do { \
389 if (!attr->exclude_##context) { \
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300390 if (!colon) colon = ++r; \
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300391 r += scnprintf(bf + r, size - r, "%c", mod); \
392 } } while(0)
393
394 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
395 MOD_PRINT(kernel, 'k');
396 MOD_PRINT(user, 'u');
397 MOD_PRINT(hv, 'h');
398 exclude_guest_default = true;
399 }
400
401 if (attr->precise_ip) {
402 if (!colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300403 colon = ++r;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300404 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
405 exclude_guest_default = true;
406 }
407
408 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
409 MOD_PRINT(host, 'H');
410 MOD_PRINT(guest, 'G');
411 }
412#undef MOD_PRINT
413 if (colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300414 bf[colon - 1] = ':';
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300415 return r;
416}
417
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300418static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
419{
420 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
421 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
422}
423
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300424const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300425 "cpu-clock",
426 "task-clock",
427 "page-faults",
428 "context-switches",
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300429 "cpu-migrations",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300430 "minor-faults",
431 "major-faults",
432 "alignment-faults",
433 "emulation-faults",
Adrian Hunterd22d1a22013-08-31 21:50:52 +0300434 "dummy",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300435};
436
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300437static const char *__perf_evsel__sw_name(u64 config)
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300438{
439 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
440 return perf_evsel__sw_names[config];
441 return "unknown-software";
442}
443
444static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
445{
446 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
447 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
448}
449
Jiri Olsa287e74a2012-06-28 23:18:49 +0200450static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
451{
452 int r;
453
454 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
455
456 if (type & HW_BREAKPOINT_R)
457 r += scnprintf(bf + r, size - r, "r");
458
459 if (type & HW_BREAKPOINT_W)
460 r += scnprintf(bf + r, size - r, "w");
461
462 if (type & HW_BREAKPOINT_X)
463 r += scnprintf(bf + r, size - r, "x");
464
465 return r;
466}
467
468static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size)
469{
470 struct perf_event_attr *attr = &evsel->attr;
471 int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
472 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
473}
474
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300475const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
476 [PERF_EVSEL__MAX_ALIASES] = {
477 { "L1-dcache", "l1-d", "l1d", "L1-data", },
478 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
479 { "LLC", "L2", },
480 { "dTLB", "d-tlb", "Data-TLB", },
481 { "iTLB", "i-tlb", "Instruction-TLB", },
482 { "branch", "branches", "bpu", "btb", "bpc", },
483 { "node", },
484};
485
486const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
487 [PERF_EVSEL__MAX_ALIASES] = {
488 { "load", "loads", "read", },
489 { "store", "stores", "write", },
490 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
491};
492
493const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
494 [PERF_EVSEL__MAX_ALIASES] = {
495 { "refs", "Reference", "ops", "access", },
496 { "misses", "miss", },
497};
498
499#define C(x) PERF_COUNT_HW_CACHE_##x
500#define CACHE_READ (1 << C(OP_READ))
501#define CACHE_WRITE (1 << C(OP_WRITE))
502#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
503#define COP(x) (1 << x)
504
505/*
506 * cache operartion stat
507 * L1I : Read and prefetch only
508 * ITLB and BPU : Read-only
509 */
510static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
511 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
512 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
513 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
514 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
515 [C(ITLB)] = (CACHE_READ),
516 [C(BPU)] = (CACHE_READ),
517 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
518};
519
520bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
521{
522 if (perf_evsel__hw_cache_stat[type] & COP(op))
523 return true; /* valid */
524 else
525 return false; /* invalid */
526}
527
528int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
529 char *bf, size_t size)
530{
531 if (result) {
532 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
533 perf_evsel__hw_cache_op[op][0],
534 perf_evsel__hw_cache_result[result][0]);
535 }
536
537 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
538 perf_evsel__hw_cache_op[op][1]);
539}
540
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300541static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300542{
543 u8 op, result, type = (config >> 0) & 0xff;
544 const char *err = "unknown-ext-hardware-cache-type";
545
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300546 if (type >= PERF_COUNT_HW_CACHE_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300547 goto out_err;
548
549 op = (config >> 8) & 0xff;
550 err = "unknown-ext-hardware-cache-op";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300551 if (op >= PERF_COUNT_HW_CACHE_OP_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300552 goto out_err;
553
554 result = (config >> 16) & 0xff;
555 err = "unknown-ext-hardware-cache-result";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300556 if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300557 goto out_err;
558
559 err = "invalid-cache";
560 if (!perf_evsel__is_cache_op_valid(type, op))
561 goto out_err;
562
563 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
564out_err:
565 return scnprintf(bf, size, "%s", err);
566}
567
568static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
569{
570 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
571 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
572}
573
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300574static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
575{
576 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
577 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
578}
579
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300580const char *perf_evsel__name(struct perf_evsel *evsel)
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300581{
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300582 char bf[128];
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300583
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300584 if (evsel->name)
585 return evsel->name;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300586
587 switch (evsel->attr.type) {
588 case PERF_TYPE_RAW:
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300589 perf_evsel__raw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300590 break;
591
592 case PERF_TYPE_HARDWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300593 perf_evsel__hw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300594 break;
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300595
596 case PERF_TYPE_HW_CACHE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300597 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300598 break;
599
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300600 case PERF_TYPE_SOFTWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300601 perf_evsel__sw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300602 break;
603
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300604 case PERF_TYPE_TRACEPOINT:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300605 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300606 break;
607
Jiri Olsa287e74a2012-06-28 23:18:49 +0200608 case PERF_TYPE_BREAKPOINT:
609 perf_evsel__bp_name(evsel, bf, sizeof(bf));
610 break;
611
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300612 default:
Robert Richterca1b1452012-08-16 21:10:18 +0200613 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
614 evsel->attr.type);
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300615 break;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300616 }
617
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300618 evsel->name = strdup(bf);
619
620 return evsel->name ?: "unknown";
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300621}
622
Namhyung Kim717e2632013-01-22 18:09:44 +0900623const char *perf_evsel__group_name(struct perf_evsel *evsel)
624{
625 return evsel->group_name ?: "anon group";
626}
627
628int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size)
629{
630 int ret;
631 struct perf_evsel *pos;
632 const char *group_name = perf_evsel__group_name(evsel);
633
634 ret = scnprintf(buf, size, "%s", group_name);
635
636 ret += scnprintf(buf + ret, size - ret, " { %s",
637 perf_evsel__name(evsel));
638
639 for_each_group_member(pos, evsel)
640 ret += scnprintf(buf + ret, size - ret, ", %s",
641 perf_evsel__name(pos));
642
643 ret += scnprintf(buf + ret, size - ret, " }");
644
645 return ret;
646}
647
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300648void perf_evsel__config_callchain(struct perf_evsel *evsel,
649 struct record_opts *opts,
650 struct callchain_param *param)
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100651{
652 bool function = perf_evsel__is_function_event(evsel);
653 struct perf_event_attr *attr = &evsel->attr;
654
655 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
656
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300657 attr->sample_max_stack = param->max_stack;
658
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400659 if (param->record_mode == CALLCHAIN_LBR) {
Kan Liangaad2b212015-01-05 13:23:04 -0500660 if (!opts->branch_stack) {
661 if (attr->exclude_user) {
662 pr_warning("LBR callstack option is only available "
663 "to get user callchain information. "
664 "Falling back to framepointers.\n");
665 } else {
666 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
667 attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER |
Andi Kleenbd0f8892015-12-11 16:12:24 -0800668 PERF_SAMPLE_BRANCH_CALL_STACK |
669 PERF_SAMPLE_BRANCH_NO_CYCLES |
670 PERF_SAMPLE_BRANCH_NO_FLAGS;
Kan Liangaad2b212015-01-05 13:23:04 -0500671 }
672 } else
673 pr_warning("Cannot use LBR callstack with branch stack. "
674 "Falling back to framepointers.\n");
675 }
676
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400677 if (param->record_mode == CALLCHAIN_DWARF) {
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100678 if (!function) {
679 perf_evsel__set_sample_bit(evsel, REGS_USER);
680 perf_evsel__set_sample_bit(evsel, STACK_USER);
681 attr->sample_regs_user = PERF_REGS_MASK;
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400682 attr->sample_stack_user = param->dump_size;
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100683 attr->exclude_callchain_user = 1;
684 } else {
685 pr_info("Cannot use DWARF unwind for function trace event,"
686 " falling back to framepointers.\n");
687 }
688 }
689
690 if (function) {
691 pr_info("Disabling user space callchains for function trace event.\n");
692 attr->exclude_callchain_user = 1;
693 }
694}
695
Kan Liangd457c962015-08-11 06:30:47 -0400696static void
697perf_evsel__reset_callgraph(struct perf_evsel *evsel,
698 struct callchain_param *param)
699{
700 struct perf_event_attr *attr = &evsel->attr;
701
702 perf_evsel__reset_sample_bit(evsel, CALLCHAIN);
703 if (param->record_mode == CALLCHAIN_LBR) {
704 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
705 attr->branch_sample_type &= ~(PERF_SAMPLE_BRANCH_USER |
706 PERF_SAMPLE_BRANCH_CALL_STACK);
707 }
708 if (param->record_mode == CALLCHAIN_DWARF) {
709 perf_evsel__reset_sample_bit(evsel, REGS_USER);
710 perf_evsel__reset_sample_bit(evsel, STACK_USER);
711 }
712}
713
714static void apply_config_terms(struct perf_evsel *evsel,
715 struct record_opts *opts)
Jiri Olsa930a2e22015-07-29 05:42:10 -0400716{
717 struct perf_evsel_config_term *term;
Kan Liang32067712015-08-04 04:30:19 -0400718 struct list_head *config_terms = &evsel->config_terms;
719 struct perf_event_attr *attr = &evsel->attr;
Kan Liangd457c962015-08-11 06:30:47 -0400720 struct callchain_param param;
721 u32 dump_size = 0;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300722 int max_stack = 0;
723 const char *callgraph_buf = NULL;
Kan Liangd457c962015-08-11 06:30:47 -0400724
725 /* callgraph default */
726 param.record_mode = callchain_param.record_mode;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400727
728 list_for_each_entry(term, config_terms, list) {
729 switch (term->type) {
Jiri Olsaee4c7582015-07-29 05:42:11 -0400730 case PERF_EVSEL__CONFIG_TERM_PERIOD:
731 attr->sample_period = term->val.period;
Jiri Olsaab35a7d2015-08-08 19:12:10 +0200732 attr->freq = 0;
Kan Liang32067712015-08-04 04:30:19 -0400733 break;
Namhyung Kim09af2a52015-08-09 15:45:23 +0900734 case PERF_EVSEL__CONFIG_TERM_FREQ:
735 attr->sample_freq = term->val.freq;
736 attr->freq = 1;
737 break;
Kan Liang32067712015-08-04 04:30:19 -0400738 case PERF_EVSEL__CONFIG_TERM_TIME:
739 if (term->val.time)
740 perf_evsel__set_sample_bit(evsel, TIME);
741 else
742 perf_evsel__reset_sample_bit(evsel, TIME);
743 break;
Kan Liangd457c962015-08-11 06:30:47 -0400744 case PERF_EVSEL__CONFIG_TERM_CALLGRAPH:
745 callgraph_buf = term->val.callgraph;
746 break;
Andi Kleenac12f672016-10-12 14:02:06 -0700747 case PERF_EVSEL__CONFIG_TERM_BRANCH:
748 if (term->val.branch && strcmp(term->val.branch, "no")) {
749 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
750 parse_branch_str(term->val.branch,
751 &attr->branch_sample_type);
752 } else
753 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
754 break;
Kan Liangd457c962015-08-11 06:30:47 -0400755 case PERF_EVSEL__CONFIG_TERM_STACK_USER:
756 dump_size = term->val.stack_user;
757 break;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300758 case PERF_EVSEL__CONFIG_TERM_MAX_STACK:
759 max_stack = term->val.max_stack;
760 break;
Wang Nan374ce932015-10-28 10:55:02 +0000761 case PERF_EVSEL__CONFIG_TERM_INHERIT:
762 /*
763 * attr->inherit should has already been set by
764 * perf_evsel__config. If user explicitly set
765 * inherit using config terms, override global
766 * opt->no_inherit setting.
767 */
768 attr->inherit = term->val.inherit ? 1 : 0;
769 break;
Wang Nan626a6b72016-07-14 08:34:45 +0000770 case PERF_EVSEL__CONFIG_TERM_OVERWRITE:
771 attr->write_backward = term->val.overwrite ? 1 : 0;
772 break;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400773 default:
774 break;
775 }
776 }
Kan Liangd457c962015-08-11 06:30:47 -0400777
778 /* User explicitly set per-event callgraph, clear the old setting and reset. */
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300779 if ((callgraph_buf != NULL) || (dump_size > 0) || max_stack) {
780 if (max_stack) {
781 param.max_stack = max_stack;
782 if (callgraph_buf == NULL)
783 callgraph_buf = "fp";
784 }
Kan Liangd457c962015-08-11 06:30:47 -0400785
786 /* parse callgraph parameters */
787 if (callgraph_buf != NULL) {
Kan Liangf9db0d02015-08-11 06:30:48 -0400788 if (!strcmp(callgraph_buf, "no")) {
789 param.enabled = false;
790 param.record_mode = CALLCHAIN_NONE;
791 } else {
792 param.enabled = true;
793 if (parse_callchain_record(callgraph_buf, &param)) {
794 pr_err("per-event callgraph setting for %s failed. "
795 "Apply callgraph global setting for it\n",
796 evsel->name);
797 return;
798 }
Kan Liangd457c962015-08-11 06:30:47 -0400799 }
800 }
801 if (dump_size > 0) {
802 dump_size = round_up(dump_size, sizeof(u64));
803 param.dump_size = dump_size;
804 }
805
806 /* If global callgraph set, clear it */
807 if (callchain_param.enabled)
808 perf_evsel__reset_callgraph(evsel, &callchain_param);
809
810 /* set perf-event callgraph */
811 if (param.enabled)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300812 perf_evsel__config_callchain(evsel, opts, &param);
Kan Liangd457c962015-08-11 06:30:47 -0400813 }
Jiri Olsa930a2e22015-07-29 05:42:10 -0400814}
815
Jiri Olsa774cb492012-11-12 18:34:01 +0100816/*
817 * The enable_on_exec/disabled value strategy:
818 *
819 * 1) For any type of traced program:
820 * - all independent events and group leaders are disabled
821 * - all group members are enabled
822 *
823 * Group members are ruled by group leaders. They need to
824 * be enabled, because the group scheduling relies on that.
825 *
826 * 2) For traced programs executed by perf:
827 * - all independent events and group leaders have
828 * enable_on_exec set
829 * - we don't specifically enable or disable any event during
830 * the record command
831 *
832 * Independent events and group leaders are initially disabled
833 * and get enabled by exec. Group members are ruled by group
834 * leaders as stated in 1).
835 *
836 * 3) For traced programs attached by perf (pid/tid):
837 * - we specifically enable or disable all events during
838 * the record command
839 *
840 * When attaching events to already running traced we
841 * enable/disable events specifically, as there's no
842 * initial traced exec call.
843 */
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300844void perf_evsel__config(struct perf_evsel *evsel, struct record_opts *opts,
845 struct callchain_param *callchain)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200846{
Jiri Olsa3c176312012-10-10 17:39:03 +0200847 struct perf_evsel *leader = evsel->leader;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200848 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter60b08962014-07-31 09:00:52 +0300849 int track = evsel->tracking;
Adrian Hunter3aa59392013-11-15 15:52:29 +0200850 bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200851
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300852 attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200853 attr->inherit = !opts->no_inherit;
Wang Nan626a6b72016-07-14 08:34:45 +0000854 attr->write_backward = opts->overwrite ? 1 : 0;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200855
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300856 perf_evsel__set_sample_bit(evsel, IP);
857 perf_evsel__set_sample_bit(evsel, TID);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200858
Jiri Olsa3c176312012-10-10 17:39:03 +0200859 if (evsel->sample_read) {
860 perf_evsel__set_sample_bit(evsel, READ);
861
862 /*
863 * We need ID even in case of single event, because
864 * PERF_SAMPLE_READ process ID specific data.
865 */
Adrian Hunter75562572013-08-27 11:23:09 +0300866 perf_evsel__set_sample_id(evsel, false);
Jiri Olsa3c176312012-10-10 17:39:03 +0200867
868 /*
869 * Apply group format only if we belong to group
870 * with more than one members.
871 */
872 if (leader->nr_members > 1) {
873 attr->read_format |= PERF_FORMAT_GROUP;
874 attr->inherit = 0;
875 }
876 }
877
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200878 /*
Namhyung Kim17314e22014-06-09 14:43:37 +0900879 * We default some events to have a default interval. But keep
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200880 * it a weak assumption overridable by the user.
881 */
Namhyung Kim17314e22014-06-09 14:43:37 +0900882 if (!attr->sample_period || (opts->user_freq != UINT_MAX ||
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200883 opts->user_interval != ULLONG_MAX)) {
884 if (opts->freq) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300885 perf_evsel__set_sample_bit(evsel, PERIOD);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200886 attr->freq = 1;
887 attr->sample_freq = opts->freq;
888 } else {
889 attr->sample_period = opts->default_interval;
890 }
891 }
892
Jiri Olsa3c176312012-10-10 17:39:03 +0200893 /*
894 * Disable sampling for all group members other
895 * than leader in case leader 'leads' the sampling.
896 */
897 if ((leader != evsel) && leader->sample_read) {
898 attr->sample_freq = 0;
899 attr->sample_period = 0;
900 }
901
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200902 if (opts->no_samples)
903 attr->sample_freq = 0;
904
905 if (opts->inherit_stat)
906 attr->inherit_stat = 1;
907
908 if (opts->sample_address) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300909 perf_evsel__set_sample_bit(evsel, ADDR);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200910 attr->mmap_data = track;
911 }
912
Jiri Olsaf1403732014-11-13 18:21:03 +0100913 /*
914 * We don't allow user space callchains for function trace
915 * event, due to issues with page faults while tracing page
916 * fault handler and its overall trickiness nature.
917 */
918 if (perf_evsel__is_function_event(evsel))
919 evsel->attr.exclude_callchain_user = 1;
920
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300921 if (callchain && callchain->enabled && !evsel->no_aux_samples)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300922 perf_evsel__config_callchain(evsel, opts, callchain);
Jiri Olsa26d33022012-08-07 15:20:47 +0200923
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200924 if (opts->sample_intr_regs) {
Stephane Eranianbcc84ec2015-08-31 18:41:12 +0200925 attr->sample_regs_intr = opts->sample_intr_regs;
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200926 perf_evsel__set_sample_bit(evsel, REGS_INTR);
927 }
928
Jiri Olsab6f35ed2016-08-01 20:02:35 +0200929 if (target__has_cpu(&opts->target) || opts->sample_cpu)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300930 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200931
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300932 if (opts->period)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300933 perf_evsel__set_sample_bit(evsel, PERIOD);
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300934
Andi Kleen8affc2b2014-07-31 14:45:04 +0800935 /*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800936 * When the user explicitly disabled time don't force it here.
Andi Kleen8affc2b2014-07-31 14:45:04 +0800937 */
938 if (opts->sample_time &&
939 (!perf_missing_features.sample_id_all &&
Adrian Hunter3abebc52015-07-06 14:51:01 +0300940 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu ||
941 opts->sample_time_set)))
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300942 perf_evsel__set_sample_bit(evsel, TIME);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200943
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300944 if (opts->raw_samples && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300945 perf_evsel__set_sample_bit(evsel, TIME);
946 perf_evsel__set_sample_bit(evsel, RAW);
947 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200948 }
949
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100950 if (opts->sample_address)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200951 perf_evsel__set_sample_bit(evsel, DATA_SRC);
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100952
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -0300953 if (opts->no_buffering) {
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200954 attr->watermark = 0;
955 attr->wakeup_events = 1;
956 }
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300957 if (opts->branch_stack && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300958 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
Roberto Agostino Vitillobdfebd82012-02-09 23:21:02 +0100959 attr->branch_sample_type = opts->branch_stack;
960 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200961
Andi Kleen05484292013-01-24 16:10:29 +0100962 if (opts->sample_weight)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200963 perf_evsel__set_sample_bit(evsel, WEIGHT);
Andi Kleen05484292013-01-24 16:10:29 +0100964
Namhyung Kim62e503b2015-01-29 17:06:46 +0900965 attr->task = track;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200966 attr->mmap = track;
Don Zickusa5a5ba72014-05-30 10:49:42 -0400967 attr->mmap2 = track && !perf_missing_features.mmap2;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200968 attr->comm = track;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200969
Hari Bathinif3b36142017-03-08 02:11:43 +0530970 if (opts->record_namespaces)
971 attr->namespaces = track;
972
Adrian Hunterb757bb02015-07-21 12:44:04 +0300973 if (opts->record_switch_events)
974 attr->context_switch = track;
975
Andi Kleen475eeab2013-09-20 07:40:43 -0700976 if (opts->sample_transaction)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200977 perf_evsel__set_sample_bit(evsel, TRANSACTION);
Andi Kleen475eeab2013-09-20 07:40:43 -0700978
Andi Kleen85c273d2015-02-24 15:13:40 -0800979 if (opts->running_time) {
980 evsel->attr.read_format |=
981 PERF_FORMAT_TOTAL_TIME_ENABLED |
982 PERF_FORMAT_TOTAL_TIME_RUNNING;
983 }
984
Jiri Olsa774cb492012-11-12 18:34:01 +0100985 /*
986 * XXX see the function comment above
987 *
988 * Disabling only independent events or group leaders,
989 * keeping group members enabled.
990 */
Namhyung Kim823254e2012-11-29 15:38:30 +0900991 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa774cb492012-11-12 18:34:01 +0100992 attr->disabled = 1;
993
994 /*
995 * Setting enable_on_exec for independent events and
996 * group leaders for traced executed by perf.
997 */
Andi Kleen6619a532014-01-11 13:38:27 -0800998 if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) &&
999 !opts->initial_delay)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001000 attr->enable_on_exec = 1;
Adrian Hunter2afd2bc2014-07-14 13:02:57 +03001001
1002 if (evsel->immediate) {
1003 attr->disabled = 0;
1004 attr->enable_on_exec = 0;
1005 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001006
1007 clockid = opts->clockid;
1008 if (opts->use_clockid) {
1009 attr->use_clockid = 1;
1010 attr->clockid = opts->clockid;
1011 }
Jiri Olsa930a2e22015-07-29 05:42:10 -04001012
Jiri Olsa7f94af72015-10-05 20:06:05 +02001013 if (evsel->precise_max)
1014 perf_event_attr__set_max_precise_ip(attr);
1015
Jiri Olsa85723882016-02-15 09:34:31 +01001016 if (opts->all_user) {
1017 attr->exclude_kernel = 1;
1018 attr->exclude_user = 0;
1019 }
1020
1021 if (opts->all_kernel) {
1022 attr->exclude_kernel = 0;
1023 attr->exclude_user = 1;
1024 }
1025
Jiri Olsa930a2e22015-07-29 05:42:10 -04001026 /*
1027 * Apply event specific term settings,
1028 * it overloads any global configuration.
1029 */
Kan Liangd457c962015-08-11 06:30:47 -04001030 apply_config_terms(evsel, opts);
Jiri Olsaa359c172016-12-13 08:46:22 +01001031
1032 evsel->ignore_missing_thread = opts->ignore_missing_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001033}
1034
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001035static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001036{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001037 if (evsel->system_wide)
1038 nthreads = 1;
1039
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001040 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
David Ahern4af4c952011-05-27 09:58:34 -06001041
1042 if (evsel->fd) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001043 int cpu, thread;
David Ahern4af4c952011-05-27 09:58:34 -06001044 for (cpu = 0; cpu < ncpus; cpu++) {
1045 for (thread = 0; thread < nthreads; thread++) {
1046 FD(evsel, cpu, thread) = -1;
1047 }
1048 }
1049 }
1050
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001051 return evsel->fd != NULL ? 0 : -ENOMEM;
1052}
1053
Andi Kleene2407be2013-08-02 17:41:10 -07001054static int perf_evsel__run_ioctl(struct perf_evsel *evsel, int ncpus, int nthreads,
1055 int ioc, void *arg)
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001056{
1057 int cpu, thread;
1058
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001059 if (evsel->system_wide)
1060 nthreads = 1;
1061
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001062 for (cpu = 0; cpu < ncpus; cpu++) {
1063 for (thread = 0; thread < nthreads; thread++) {
1064 int fd = FD(evsel, cpu, thread),
Andi Kleene2407be2013-08-02 17:41:10 -07001065 err = ioctl(fd, ioc, arg);
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001066
1067 if (err)
1068 return err;
1069 }
1070 }
1071
1072 return 0;
1073}
1074
Arnaldo Carvalho de Melof47805a2015-07-03 15:53:49 -03001075int perf_evsel__apply_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
1076 const char *filter)
Andi Kleene2407be2013-08-02 17:41:10 -07001077{
1078 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1079 PERF_EVENT_IOC_SET_FILTER,
1080 (void *)filter);
1081}
1082
Arnaldo Carvalho de Melo12467ae2015-07-03 17:05:50 -03001083int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter)
1084{
1085 char *new_filter = strdup(filter);
1086
1087 if (new_filter != NULL) {
1088 free(evsel->filter);
1089 evsel->filter = new_filter;
1090 return 0;
1091 }
1092
1093 return -1;
1094}
1095
Mathieu Poirier3541c032016-09-16 08:44:04 -06001096static int perf_evsel__append_filter(struct perf_evsel *evsel,
1097 const char *fmt, const char *filter)
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001098{
1099 char *new_filter;
1100
1101 if (evsel->filter == NULL)
1102 return perf_evsel__set_filter(evsel, filter);
1103
Mathieu Poirierb15d0a42016-09-16 08:44:03 -06001104 if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001105 free(evsel->filter);
1106 evsel->filter = new_filter;
1107 return 0;
1108 }
1109
1110 return -1;
1111}
1112
Mathieu Poirier3541c032016-09-16 08:44:04 -06001113int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter)
1114{
1115 return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter);
1116}
1117
Mathieu Poirier1e857482016-09-16 08:44:05 -06001118int perf_evsel__append_addr_filter(struct perf_evsel *evsel, const char *filter)
1119{
1120 return perf_evsel__append_filter(evsel, "%s,%s", filter);
1121}
1122
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001123int perf_evsel__enable(struct perf_evsel *evsel)
Andi Kleene2407be2013-08-02 17:41:10 -07001124{
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001125 int nthreads = thread_map__nr(evsel->threads);
1126 int ncpus = cpu_map__nr(evsel->cpus);
1127
Andi Kleene2407be2013-08-02 17:41:10 -07001128 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1129 PERF_EVENT_IOC_ENABLE,
1130 0);
1131}
1132
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001133int perf_evsel__disable(struct perf_evsel *evsel)
1134{
1135 int nthreads = thread_map__nr(evsel->threads);
1136 int ncpus = cpu_map__nr(evsel->cpus);
1137
1138 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1139 PERF_EVENT_IOC_DISABLE,
1140 0);
1141}
1142
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001143int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
1144{
Vineet Gupta8d9cbd82015-01-13 19:13:23 +05301145 if (ncpus == 0 || nthreads == 0)
1146 return 0;
1147
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001148 if (evsel->system_wide)
1149 nthreads = 1;
1150
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001151 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
1152 if (evsel->sample_id == NULL)
1153 return -ENOMEM;
1154
1155 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
1156 if (evsel->id == NULL) {
1157 xyarray__delete(evsel->sample_id);
1158 evsel->sample_id = NULL;
1159 return -ENOMEM;
1160 }
1161
1162 return 0;
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001163}
1164
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001165static void perf_evsel__free_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001166{
1167 xyarray__delete(evsel->fd);
1168 evsel->fd = NULL;
1169}
1170
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001171static void perf_evsel__free_id(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001172{
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001173 xyarray__delete(evsel->sample_id);
1174 evsel->sample_id = NULL;
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001175 zfree(&evsel->id);
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001176}
1177
Jiri Olsa930a2e22015-07-29 05:42:10 -04001178static void perf_evsel__free_config_terms(struct perf_evsel *evsel)
1179{
1180 struct perf_evsel_config_term *term, *h;
1181
1182 list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1183 list_del(&term->list);
1184 free(term);
1185 }
1186}
1187
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001188void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
1189{
1190 int cpu, thread;
1191
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001192 if (evsel->system_wide)
1193 nthreads = 1;
1194
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001195 for (cpu = 0; cpu < ncpus; cpu++)
1196 for (thread = 0; thread < nthreads; ++thread) {
1197 close(FD(evsel, cpu, thread));
1198 FD(evsel, cpu, thread) = -1;
1199 }
1200}
1201
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001202void perf_evsel__exit(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001203{
1204 assert(list_empty(&evsel->node));
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -04001205 assert(evsel->evlist == NULL);
Namhyung Kim736b05a2013-03-15 14:48:49 +09001206 perf_evsel__free_fd(evsel);
1207 perf_evsel__free_id(evsel);
Jiri Olsa930a2e22015-07-29 05:42:10 -04001208 perf_evsel__free_config_terms(evsel);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001209 close_cgroup(evsel->cgrp);
Jiri Olsaf30a79b2015-06-23 00:36:04 +02001210 cpu_map__put(evsel->cpus);
Adrian Hunterfce4d292015-09-08 10:58:55 +03001211 cpu_map__put(evsel->own_cpus);
Jiri Olsa578e91e2015-06-23 00:36:07 +02001212 thread_map__put(evsel->threads);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001213 zfree(&evsel->group_name);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001214 zfree(&evsel->name);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -03001215 perf_evsel__object.fini(evsel);
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001216}
1217
1218void perf_evsel__delete(struct perf_evsel *evsel)
1219{
1220 perf_evsel__exit(evsel);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001221 free(evsel);
1222}
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001223
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001224void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
Jiri Olsa857a94a2014-11-21 10:31:05 +01001225 struct perf_counts_values *count)
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001226{
1227 struct perf_counts_values tmp;
1228
1229 if (!evsel->prev_raw_counts)
1230 return;
1231
1232 if (cpu == -1) {
1233 tmp = evsel->prev_raw_counts->aggr;
1234 evsel->prev_raw_counts->aggr = *count;
1235 } else {
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001236 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1237 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001238 }
1239
1240 count->val = count->val - tmp.val;
1241 count->ena = count->ena - tmp.ena;
1242 count->run = count->run - tmp.run;
1243}
1244
Jiri Olsa13112bb2014-11-21 10:31:06 +01001245void perf_counts_values__scale(struct perf_counts_values *count,
1246 bool scale, s8 *pscaled)
1247{
1248 s8 scaled = 0;
1249
1250 if (scale) {
1251 if (count->run == 0) {
1252 scaled = -1;
1253 count->val = 0;
1254 } else if (count->run < count->ena) {
1255 scaled = 1;
1256 count->val = (u64)((double) count->val * count->ena / count->run + 0.5);
1257 }
1258 } else
1259 count->ena = count->run = 0;
1260
1261 if (pscaled)
1262 *pscaled = scaled;
1263}
1264
Jiri Olsade634032017-07-26 14:02:04 +02001265static int perf_evsel__read_size(struct perf_evsel *evsel)
1266{
1267 u64 read_format = evsel->attr.read_format;
1268 int entry = sizeof(u64); /* value */
1269 int size = 0;
1270 int nr = 1;
1271
1272 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1273 size += sizeof(u64);
1274
1275 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1276 size += sizeof(u64);
1277
1278 if (read_format & PERF_FORMAT_ID)
1279 entry += sizeof(u64);
1280
1281 if (read_format & PERF_FORMAT_GROUP) {
1282 nr = evsel->nr_members;
1283 size += sizeof(u64);
1284 }
1285
1286 size += entry * nr;
1287 return size;
1288}
1289
Jiri Olsaf99f47192015-06-26 11:29:18 +02001290int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
1291 struct perf_counts_values *count)
1292{
Jiri Olsade634032017-07-26 14:02:04 +02001293 size_t size = perf_evsel__read_size(evsel);
1294
Jiri Olsaf99f47192015-06-26 11:29:18 +02001295 memset(count, 0, sizeof(*count));
1296
1297 if (FD(evsel, cpu, thread) < 0)
1298 return -EINVAL;
1299
Jiri Olsade634032017-07-26 14:02:04 +02001300 if (readn(FD(evsel, cpu, thread), count->values, size) <= 0)
Jiri Olsaf99f47192015-06-26 11:29:18 +02001301 return -errno;
1302
1303 return 0;
1304}
1305
Jiri Olsaf7794d52017-07-26 14:02:05 +02001306static int
1307perf_evsel__read_one(struct perf_evsel *evsel, int cpu, int thread)
1308{
1309 struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread);
1310
1311 return perf_evsel__read(evsel, cpu, thread, count);
1312}
1313
1314static void
1315perf_evsel__set_count(struct perf_evsel *counter, int cpu, int thread,
1316 u64 val, u64 ena, u64 run)
1317{
1318 struct perf_counts_values *count;
1319
1320 count = perf_counts(counter->counts, cpu, thread);
1321
1322 count->val = val;
1323 count->ena = ena;
1324 count->run = run;
Jiri Olsa82bf3112017-07-26 14:02:06 +02001325 count->loaded = true;
Jiri Olsaf7794d52017-07-26 14:02:05 +02001326}
1327
1328static int
1329perf_evsel__process_group_data(struct perf_evsel *leader,
1330 int cpu, int thread, u64 *data)
1331{
1332 u64 read_format = leader->attr.read_format;
1333 struct sample_read_value *v;
1334 u64 nr, ena = 0, run = 0, i;
1335
1336 nr = *data++;
1337
1338 if (nr != (u64) leader->nr_members)
1339 return -EINVAL;
1340
1341 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1342 ena = *data++;
1343
1344 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1345 run = *data++;
1346
1347 v = (struct sample_read_value *) data;
1348
1349 perf_evsel__set_count(leader, cpu, thread,
1350 v[0].value, ena, run);
1351
1352 for (i = 1; i < nr; i++) {
1353 struct perf_evsel *counter;
1354
1355 counter = perf_evlist__id2evsel(leader->evlist, v[i].id);
1356 if (!counter)
1357 return -EINVAL;
1358
1359 perf_evsel__set_count(counter, cpu, thread,
1360 v[i].value, ena, run);
1361 }
1362
1363 return 0;
1364}
1365
1366static int
1367perf_evsel__read_group(struct perf_evsel *leader, int cpu, int thread)
1368{
1369 struct perf_stat_evsel *ps = leader->priv;
1370 u64 read_format = leader->attr.read_format;
1371 int size = perf_evsel__read_size(leader);
1372 u64 *data = ps->group_data;
1373
1374 if (!(read_format & PERF_FORMAT_ID))
1375 return -EINVAL;
1376
1377 if (!perf_evsel__is_group_leader(leader))
1378 return -EINVAL;
1379
1380 if (!data) {
1381 data = zalloc(size);
1382 if (!data)
1383 return -ENOMEM;
1384
1385 ps->group_data = data;
1386 }
1387
1388 if (FD(leader, cpu, thread) < 0)
1389 return -EINVAL;
1390
1391 if (readn(FD(leader, cpu, thread), data, size) <= 0)
1392 return -errno;
1393
1394 return perf_evsel__process_group_data(leader, cpu, thread, data);
1395}
1396
1397int perf_evsel__read_counter(struct perf_evsel *evsel, int cpu, int thread)
1398{
1399 u64 read_format = evsel->attr.read_format;
1400
1401 if (read_format & PERF_FORMAT_GROUP)
1402 return perf_evsel__read_group(evsel, cpu, thread);
1403 else
1404 return perf_evsel__read_one(evsel, cpu, thread);
1405}
1406
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001407int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
1408 int cpu, int thread, bool scale)
1409{
1410 struct perf_counts_values count;
1411 size_t nv = scale ? 3 : 1;
1412
1413 if (FD(evsel, cpu, thread) < 0)
1414 return -EINVAL;
1415
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001416 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001417 return -ENOMEM;
1418
Stephane Eraniandb49a712017-04-12 11:23:01 -07001419 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001420 return -errno;
1421
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001422 perf_evsel__compute_deltas(evsel, cpu, thread, &count);
Jiri Olsa13112bb2014-11-21 10:31:06 +01001423 perf_counts_values__scale(&count, scale, NULL);
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001424 *perf_counts(evsel->counts, cpu, thread) = count;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001425 return 0;
1426}
1427
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001428static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
1429{
1430 struct perf_evsel *leader = evsel->leader;
1431 int fd;
1432
Namhyung Kim823254e2012-11-29 15:38:30 +09001433 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001434 return -1;
1435
1436 /*
1437 * Leader must be already processed/open,
1438 * if not it's a bug.
1439 */
1440 BUG_ON(!leader->fd);
1441
1442 fd = FD(leader, cpu, thread);
1443 BUG_ON(fd == -1);
1444
1445 return fd;
1446}
1447
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001448struct bit_names {
1449 int bit;
1450 const char *name;
1451};
Adrian Huntere3e1a542013-08-14 15:48:24 +03001452
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001453static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001454{
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001455 bool first_bit = true;
1456 int i = 0;
Adrian Huntere3e1a542013-08-14 15:48:24 +03001457
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001458 do {
1459 if (value & bits[i].bit) {
1460 buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name);
1461 first_bit = false;
1462 }
1463 } while (bits[++i].name != NULL);
1464}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001465
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001466static void __p_sample_type(char *buf, size_t size, u64 value)
1467{
1468#define bit_name(n) { PERF_SAMPLE_##n, #n }
1469 struct bit_names bits[] = {
1470 bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR),
1471 bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU),
1472 bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW),
1473 bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER),
Jiri Olsa84422592015-10-05 20:06:02 +02001474 bit_name(IDENTIFIER), bit_name(REGS_INTR), bit_name(DATA_SRC),
Jiri Olsadcdd1842015-11-25 16:36:55 +01001475 bit_name(WEIGHT),
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001476 { .name = NULL, }
1477 };
1478#undef bit_name
1479 __p_bits(buf, size, value, bits);
1480}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001481
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001482static void __p_branch_sample_type(char *buf, size_t size, u64 value)
1483{
1484#define bit_name(n) { PERF_SAMPLE_BRANCH_##n, #n }
1485 struct bit_names bits[] = {
1486 bit_name(USER), bit_name(KERNEL), bit_name(HV), bit_name(ANY),
1487 bit_name(ANY_CALL), bit_name(ANY_RETURN), bit_name(IND_CALL),
1488 bit_name(ABORT_TX), bit_name(IN_TX), bit_name(NO_TX),
1489 bit_name(COND), bit_name(CALL_STACK), bit_name(IND_JUMP),
1490 bit_name(CALL), bit_name(NO_FLAGS), bit_name(NO_CYCLES),
1491 { .name = NULL, }
1492 };
1493#undef bit_name
1494 __p_bits(buf, size, value, bits);
1495}
1496
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001497static void __p_read_format(char *buf, size_t size, u64 value)
1498{
1499#define bit_name(n) { PERF_FORMAT_##n, #n }
1500 struct bit_names bits[] = {
1501 bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING),
1502 bit_name(ID), bit_name(GROUP),
1503 { .name = NULL, }
1504 };
1505#undef bit_name
1506 __p_bits(buf, size, value, bits);
1507}
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001508
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001509#define BUF_SIZE 1024
Adrian Huntere3e1a542013-08-14 15:48:24 +03001510
Adrian Hunter7310aed2015-06-11 15:51:04 +03001511#define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001512#define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
1513#define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
1514#define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001515#define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001516#define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001517
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001518#define PRINT_ATTRn(_n, _f, _p) \
1519do { \
1520 if (attr->_f) { \
1521 _p(attr->_f); \
1522 ret += attr__fprintf(fp, _n, buf, priv);\
1523 } \
1524} while (0)
1525
1526#define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p)
1527
1528int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
1529 attr__fprintf_f attr__fprintf, void *priv)
1530{
1531 char buf[BUF_SIZE];
1532 int ret = 0;
1533
1534 PRINT_ATTRf(type, p_unsigned);
1535 PRINT_ATTRf(size, p_unsigned);
1536 PRINT_ATTRf(config, p_hex);
1537 PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned);
1538 PRINT_ATTRf(sample_type, p_sample_type);
1539 PRINT_ATTRf(read_format, p_read_format);
1540
1541 PRINT_ATTRf(disabled, p_unsigned);
1542 PRINT_ATTRf(inherit, p_unsigned);
1543 PRINT_ATTRf(pinned, p_unsigned);
1544 PRINT_ATTRf(exclusive, p_unsigned);
1545 PRINT_ATTRf(exclude_user, p_unsigned);
1546 PRINT_ATTRf(exclude_kernel, p_unsigned);
1547 PRINT_ATTRf(exclude_hv, p_unsigned);
1548 PRINT_ATTRf(exclude_idle, p_unsigned);
1549 PRINT_ATTRf(mmap, p_unsigned);
1550 PRINT_ATTRf(comm, p_unsigned);
1551 PRINT_ATTRf(freq, p_unsigned);
1552 PRINT_ATTRf(inherit_stat, p_unsigned);
1553 PRINT_ATTRf(enable_on_exec, p_unsigned);
1554 PRINT_ATTRf(task, p_unsigned);
1555 PRINT_ATTRf(watermark, p_unsigned);
1556 PRINT_ATTRf(precise_ip, p_unsigned);
1557 PRINT_ATTRf(mmap_data, p_unsigned);
1558 PRINT_ATTRf(sample_id_all, p_unsigned);
1559 PRINT_ATTRf(exclude_host, p_unsigned);
1560 PRINT_ATTRf(exclude_guest, p_unsigned);
1561 PRINT_ATTRf(exclude_callchain_kernel, p_unsigned);
1562 PRINT_ATTRf(exclude_callchain_user, p_unsigned);
1563 PRINT_ATTRf(mmap2, p_unsigned);
1564 PRINT_ATTRf(comm_exec, p_unsigned);
1565 PRINT_ATTRf(use_clockid, p_unsigned);
Adrian Hunter02860392015-07-21 12:44:03 +03001566 PRINT_ATTRf(context_switch, p_unsigned);
Arnaldo Carvalho de Melo0a241ef2016-05-09 18:08:33 -03001567 PRINT_ATTRf(write_backward, p_unsigned);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001568
1569 PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned);
1570 PRINT_ATTRf(bp_type, p_unsigned);
1571 PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex);
1572 PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex);
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001573 PRINT_ATTRf(branch_sample_type, p_branch_sample_type);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001574 PRINT_ATTRf(sample_regs_user, p_hex);
1575 PRINT_ATTRf(sample_stack_user, p_unsigned);
1576 PRINT_ATTRf(clockid, p_signed);
1577 PRINT_ATTRf(sample_regs_intr, p_hex);
Adrian Hunter70d73de2015-04-09 18:54:06 +03001578 PRINT_ATTRf(aux_watermark, p_unsigned);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -03001579 PRINT_ATTRf(sample_max_stack, p_unsigned);
Adrian Huntere3e1a542013-08-14 15:48:24 +03001580
1581 return ret;
1582}
1583
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001584static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001585 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001586{
1587 return fprintf(fp, " %-32s %s\n", name, val);
1588}
1589
Jiri Olsaa359c172016-12-13 08:46:22 +01001590static bool ignore_missing_thread(struct perf_evsel *evsel,
1591 struct thread_map *threads,
1592 int thread, int err)
1593{
1594 if (!evsel->ignore_missing_thread)
1595 return false;
1596
1597 /* The system wide setup does not work with threads. */
1598 if (evsel->system_wide)
1599 return false;
1600
1601 /* The -ESRCH is perf event syscall errno for pid's not found. */
1602 if (err != -ESRCH)
1603 return false;
1604
1605 /* If there's only one thread, let it fail. */
1606 if (threads->nr == 1)
1607 return false;
1608
1609 if (thread_map__remove(threads, thread))
1610 return false;
1611
1612 pr_warning("WARNING: Ignored open failure for pid %d\n",
1613 thread_map__pid(threads, thread));
1614 return true;
1615}
1616
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001617int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
1618 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001619{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001620 int cpu, thread, nthreads;
Yann Droneaud57480d22014-06-30 22:28:47 +02001621 unsigned long flags = PERF_FLAG_FD_CLOEXEC;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001622 int pid = -1, err;
Andi Kleenbec19672013-08-04 19:41:26 -07001623 enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001624
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001625 if (perf_missing_features.write_backward && evsel->attr.write_backward)
1626 return -EINVAL;
1627
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001628 if (cpus == NULL) {
1629 static struct cpu_map *empty_cpu_map;
1630
1631 if (empty_cpu_map == NULL) {
1632 empty_cpu_map = cpu_map__dummy_new();
1633 if (empty_cpu_map == NULL)
1634 return -ENOMEM;
1635 }
1636
1637 cpus = empty_cpu_map;
1638 }
1639
1640 if (threads == NULL) {
1641 static struct thread_map *empty_thread_map;
1642
1643 if (empty_thread_map == NULL) {
1644 empty_thread_map = thread_map__new_by_tid(-1);
1645 if (empty_thread_map == NULL)
1646 return -ENOMEM;
1647 }
1648
1649 threads = empty_thread_map;
1650 }
1651
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001652 if (evsel->system_wide)
1653 nthreads = 1;
1654 else
1655 nthreads = threads->nr;
1656
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001657 if (evsel->fd == NULL &&
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001658 perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001659 return -ENOMEM;
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001660
Stephane Eranian023695d2011-02-14 11:20:01 +02001661 if (evsel->cgrp) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001662 flags |= PERF_FLAG_PID_CGROUP;
Stephane Eranian023695d2011-02-14 11:20:01 +02001663 pid = evsel->cgrp->fd;
1664 }
1665
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001666fallback_missing_features:
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001667 if (perf_missing_features.clockid_wrong)
1668 evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */
1669 if (perf_missing_features.clockid) {
1670 evsel->attr.use_clockid = 0;
1671 evsel->attr.clockid = 0;
1672 }
Yann Droneaud57480d22014-06-30 22:28:47 +02001673 if (perf_missing_features.cloexec)
1674 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001675 if (perf_missing_features.mmap2)
1676 evsel->attr.mmap2 = 0;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001677 if (perf_missing_features.exclude_guest)
1678 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001679 if (perf_missing_features.lbr_flags)
1680 evsel->attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1681 PERF_SAMPLE_BRANCH_NO_CYCLES);
Jiri Olsa82bf3112017-07-26 14:02:06 +02001682 if (perf_missing_features.group_read && evsel->attr.inherit)
1683 evsel->attr.read_format &= ~(PERF_FORMAT_GROUP|PERF_FORMAT_ID);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001684retry_sample_id:
1685 if (perf_missing_features.sample_id_all)
1686 evsel->attr.sample_id_all = 0;
1687
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001688 if (verbose >= 2) {
1689 fprintf(stderr, "%.60s\n", graph_dotted_line);
1690 fprintf(stderr, "perf_event_attr:\n");
1691 perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL);
1692 fprintf(stderr, "%.60s\n", graph_dotted_line);
1693 }
Adrian Huntere3e1a542013-08-14 15:48:24 +03001694
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -02001695 for (cpu = 0; cpu < cpus->nr; cpu++) {
Arnaldo Carvalho de Melo9d04f172011-01-12 00:08:18 -02001696
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001697 for (thread = 0; thread < nthreads; thread++) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001698 int fd, group_fd;
Stephane Eranian023695d2011-02-14 11:20:01 +02001699
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001700 if (!evsel->cgrp && !evsel->system_wide)
Jiri Olsae13798c2015-06-23 00:36:02 +02001701 pid = thread_map__pid(threads, thread);
Stephane Eranian023695d2011-02-14 11:20:01 +02001702
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001703 group_fd = get_group_fd(evsel, cpu, thread);
Andi Kleenbec19672013-08-04 19:41:26 -07001704retry_open:
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001705 pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx",
Adrian Huntere3e1a542013-08-14 15:48:24 +03001706 pid, cpus->map[cpu], group_fd, flags);
1707
Jiri Olsa10213e22017-07-03 16:50:18 +02001708 test_attr__ready();
1709
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001710 fd = sys_perf_event_open(&evsel->attr, pid, cpus->map[cpu],
1711 group_fd, flags);
1712
1713 FD(evsel, cpu, thread) = fd;
1714
1715 if (fd < 0) {
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001716 err = -errno;
Jiri Olsaa359c172016-12-13 08:46:22 +01001717
1718 if (ignore_missing_thread(evsel, threads, thread, err)) {
1719 /*
1720 * We just removed 1 thread, so take a step
1721 * back on thread index and lower the upper
1722 * nthreads limit.
1723 */
1724 nthreads--;
1725 thread--;
1726
1727 /* ... and pretend like nothing have happened. */
1728 err = 0;
1729 continue;
1730 }
1731
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001732 pr_debug2("\nsys_perf_event_open failed, error %d\n",
Adrian Hunterf852fd62013-11-01 15:51:29 +02001733 err);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001734 goto try_fallback;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001735 }
Wang Nan1f45b1d2015-10-14 12:41:18 +00001736
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001737 pr_debug2(" = %d\n", fd);
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001738
Wang Nan1f45b1d2015-10-14 12:41:18 +00001739 if (evsel->bpf_fd >= 0) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001740 int evt_fd = fd;
Wang Nan1f45b1d2015-10-14 12:41:18 +00001741 int bpf_fd = evsel->bpf_fd;
1742
1743 err = ioctl(evt_fd,
1744 PERF_EVENT_IOC_SET_BPF,
1745 bpf_fd);
1746 if (err && errno != EEXIST) {
1747 pr_err("failed to attach bpf fd %d: %s\n",
1748 bpf_fd, strerror(errno));
1749 err = -EINVAL;
1750 goto out_close;
1751 }
1752 }
1753
Andi Kleenbec19672013-08-04 19:41:26 -07001754 set_rlimit = NO_CHANGE;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001755
1756 /*
1757 * If we succeeded but had to kill clockid, fail and
1758 * have perf_evsel__open_strerror() print us a nice
1759 * error.
1760 */
1761 if (perf_missing_features.clockid ||
1762 perf_missing_features.clockid_wrong) {
1763 err = -EINVAL;
1764 goto out_close;
1765 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001766 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001767 }
1768
1769 return 0;
1770
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001771try_fallback:
Andi Kleenbec19672013-08-04 19:41:26 -07001772 /*
1773 * perf stat needs between 5 and 22 fds per CPU. When we run out
1774 * of them try to increase the limits.
1775 */
1776 if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1777 struct rlimit l;
1778 int old_errno = errno;
1779
1780 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1781 if (set_rlimit == NO_CHANGE)
1782 l.rlim_cur = l.rlim_max;
1783 else {
1784 l.rlim_cur = l.rlim_max + 1000;
1785 l.rlim_max = l.rlim_cur;
1786 }
1787 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1788 set_rlimit++;
1789 errno = old_errno;
1790 goto retry_open;
1791 }
1792 }
1793 errno = old_errno;
1794 }
1795
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001796 if (err != -EINVAL || cpu > 0 || thread > 0)
1797 goto out_close;
1798
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001799 /*
1800 * Must probe features in the order they were added to the
1801 * perf_event_attr interface.
1802 */
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001803 if (!perf_missing_features.write_backward && evsel->attr.write_backward) {
1804 perf_missing_features.write_backward = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001805 pr_debug2("switching off write_backward\n");
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001806 goto out_close;
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001807 } else if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) {
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001808 perf_missing_features.clockid_wrong = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001809 pr_debug2("switching off clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001810 goto fallback_missing_features;
1811 } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) {
1812 perf_missing_features.clockid = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001813 pr_debug2("switching off use_clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001814 goto fallback_missing_features;
1815 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001816 perf_missing_features.cloexec = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001817 pr_debug2("switching off cloexec flag\n");
Yann Droneaud57480d22014-06-30 22:28:47 +02001818 goto fallback_missing_features;
1819 } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001820 perf_missing_features.mmap2 = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001821 pr_debug2("switching off mmap2\n");
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001822 goto fallback_missing_features;
1823 } else if (!perf_missing_features.exclude_guest &&
1824 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001825 perf_missing_features.exclude_guest = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001826 pr_debug2("switching off exclude_guest, exclude_host\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001827 goto fallback_missing_features;
1828 } else if (!perf_missing_features.sample_id_all) {
1829 perf_missing_features.sample_id_all = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001830 pr_debug2("switching off sample_id_all\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001831 goto retry_sample_id;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001832 } else if (!perf_missing_features.lbr_flags &&
1833 (evsel->attr.branch_sample_type &
1834 (PERF_SAMPLE_BRANCH_NO_CYCLES |
1835 PERF_SAMPLE_BRANCH_NO_FLAGS))) {
1836 perf_missing_features.lbr_flags = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001837 pr_debug2("switching off branch sample type no (cycles/flags)\n");
Andi Kleenbd0f8892015-12-11 16:12:24 -08001838 goto fallback_missing_features;
Jiri Olsa82bf3112017-07-26 14:02:06 +02001839 } else if (!perf_missing_features.group_read &&
1840 evsel->attr.inherit &&
1841 (evsel->attr.read_format & PERF_FORMAT_GROUP)) {
1842 perf_missing_features.group_read = true;
1843 pr_debug2("switching off group read\n");
1844 goto fallback_missing_features;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001845 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001846out_close:
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001847 do {
1848 while (--thread >= 0) {
1849 close(FD(evsel, cpu, thread));
1850 FD(evsel, cpu, thread) = -1;
1851 }
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001852 thread = nthreads;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001853 } while (--cpu >= 0);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001854 return err;
1855}
1856
1857void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads)
1858{
1859 if (evsel->fd == NULL)
1860 return;
1861
1862 perf_evsel__close_fd(evsel, ncpus, nthreads);
1863 perf_evsel__free_fd(evsel);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001864}
1865
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001866int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001867 struct cpu_map *cpus)
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001868{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001869 return perf_evsel__open(evsel, cpus, NULL);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001870}
1871
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001872int perf_evsel__open_per_thread(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001873 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001874{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001875 return perf_evsel__open(evsel, NULL, threads);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001876}
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -02001877
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001878static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
1879 const union perf_event *event,
1880 struct perf_sample *sample)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001881{
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001882 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001883 const u64 *array = event->sample.array;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001884 bool swapped = evsel->needs_swap;
Jiri Olsa37073f92012-05-30 14:23:44 +02001885 union u64_swap u;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001886
1887 array += ((event->header.size -
1888 sizeof(event->header)) / sizeof(u64)) - 1;
1889
Adrian Hunter75562572013-08-27 11:23:09 +03001890 if (type & PERF_SAMPLE_IDENTIFIER) {
1891 sample->id = *array;
1892 array--;
1893 }
1894
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001895 if (type & PERF_SAMPLE_CPU) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001896 u.val64 = *array;
1897 if (swapped) {
1898 /* undo swap of u64, then swap on individual u32s */
1899 u.val64 = bswap_64(u.val64);
1900 u.val32[0] = bswap_32(u.val32[0]);
1901 }
1902
1903 sample->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001904 array--;
1905 }
1906
1907 if (type & PERF_SAMPLE_STREAM_ID) {
1908 sample->stream_id = *array;
1909 array--;
1910 }
1911
1912 if (type & PERF_SAMPLE_ID) {
1913 sample->id = *array;
1914 array--;
1915 }
1916
1917 if (type & PERF_SAMPLE_TIME) {
1918 sample->time = *array;
1919 array--;
1920 }
1921
1922 if (type & PERF_SAMPLE_TID) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001923 u.val64 = *array;
1924 if (swapped) {
1925 /* undo swap of u64, then swap on individual u32s */
1926 u.val64 = bswap_64(u.val64);
1927 u.val32[0] = bswap_32(u.val32[0]);
1928 u.val32[1] = bswap_32(u.val32[1]);
1929 }
1930
1931 sample->pid = u.val32[0];
1932 sample->tid = u.val32[1];
Adrian Hunterdd44bc62013-10-18 15:29:01 +03001933 array--;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001934 }
1935
1936 return 0;
1937}
1938
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001939static inline bool overflow(const void *endp, u16 max_size, const void *offset,
1940 u64 size)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001941{
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001942 return size > max_size || offset + size > endp;
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001943}
1944
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001945#define OVERFLOW_CHECK(offset, size, max_size) \
1946 do { \
1947 if (overflow(endp, (max_size), (offset), (size))) \
1948 return -EFAULT; \
1949 } while (0)
1950
1951#define OVERFLOW_CHECK_u64(offset) \
1952 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
1953
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001954int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001955 struct perf_sample *data)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001956{
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001957 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001958 bool swapped = evsel->needs_swap;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001959 const u64 *array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001960 u16 max_size = event->header.size;
1961 const void *endp = (void *)event + max_size;
1962 u64 sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001963
David Ahern936be502011-09-06 09:12:26 -06001964 /*
1965 * used for cross-endian analysis. See git commit 65014ab3
1966 * for why this goofiness is needed.
1967 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02001968 union u64_swap u;
David Ahern936be502011-09-06 09:12:26 -06001969
Robert Richterf3bda2c2011-12-15 17:32:39 +01001970 memset(data, 0, sizeof(*data));
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001971 data->cpu = data->pid = data->tid = -1;
1972 data->stream_id = data->id = data->time = -1ULL;
Jiri Olsabc529082014-02-03 12:44:41 +01001973 data->period = evsel->attr.sample_period;
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001974 data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001975
1976 if (event->header.type != PERF_RECORD_SAMPLE) {
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001977 if (!evsel->attr.sample_id_all)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001978 return 0;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001979 return perf_evsel__parse_id_sample(evsel, event, data);
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001980 }
1981
1982 array = event->sample.array;
1983
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001984 /*
1985 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
1986 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
1987 * check the format does not go past the end of the event.
1988 */
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001989 if (evsel->sample_size + sizeof(event->header) > event->header.size)
Frederic Weisbeckera2854122011-05-21 19:33:04 +02001990 return -EFAULT;
1991
Adrian Hunter75562572013-08-27 11:23:09 +03001992 data->id = -1ULL;
1993 if (type & PERF_SAMPLE_IDENTIFIER) {
1994 data->id = *array;
1995 array++;
1996 }
1997
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001998 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03001999 data->ip = *array;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002000 array++;
2001 }
2002
2003 if (type & PERF_SAMPLE_TID) {
David Ahern936be502011-09-06 09:12:26 -06002004 u.val64 = *array;
2005 if (swapped) {
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 }
2011
2012 data->pid = u.val32[0];
2013 data->tid = u.val32[1];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002014 array++;
2015 }
2016
2017 if (type & PERF_SAMPLE_TIME) {
2018 data->time = *array;
2019 array++;
2020 }
2021
David Ahern7cec0922011-05-30 13:08:23 -06002022 data->addr = 0;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002023 if (type & PERF_SAMPLE_ADDR) {
2024 data->addr = *array;
2025 array++;
2026 }
2027
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002028 if (type & PERF_SAMPLE_ID) {
2029 data->id = *array;
2030 array++;
2031 }
2032
2033 if (type & PERF_SAMPLE_STREAM_ID) {
2034 data->stream_id = *array;
2035 array++;
2036 }
2037
2038 if (type & PERF_SAMPLE_CPU) {
David Ahern936be502011-09-06 09:12:26 -06002039
2040 u.val64 = *array;
2041 if (swapped) {
2042 /* undo swap of u64, then swap on individual u32s */
2043 u.val64 = bswap_64(u.val64);
2044 u.val32[0] = bswap_32(u.val32[0]);
2045 }
2046
2047 data->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002048 array++;
2049 }
2050
2051 if (type & PERF_SAMPLE_PERIOD) {
2052 data->period = *array;
2053 array++;
2054 }
2055
2056 if (type & PERF_SAMPLE_READ) {
Jiri Olsa9ede4732012-10-10 17:38:13 +02002057 u64 read_format = evsel->attr.read_format;
2058
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002059 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002060 if (read_format & PERF_FORMAT_GROUP)
2061 data->read.group.nr = *array;
2062 else
2063 data->read.one.value = *array;
2064
2065 array++;
2066
2067 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002068 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002069 data->read.time_enabled = *array;
2070 array++;
2071 }
2072
2073 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002074 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002075 data->read.time_running = *array;
2076 array++;
2077 }
2078
2079 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2080 if (read_format & PERF_FORMAT_GROUP) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002081 const u64 max_group_nr = UINT64_MAX /
2082 sizeof(struct sample_read_value);
2083
2084 if (data->read.group.nr > max_group_nr)
2085 return -EFAULT;
2086 sz = data->read.group.nr *
2087 sizeof(struct sample_read_value);
2088 OVERFLOW_CHECK(array, sz, max_size);
2089 data->read.group.values =
2090 (struct sample_read_value *)array;
2091 array = (void *)array + sz;
Jiri Olsa9ede4732012-10-10 17:38:13 +02002092 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002093 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002094 data->read.one.id = *array;
2095 array++;
2096 }
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002097 }
2098
2099 if (type & PERF_SAMPLE_CALLCHAIN) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002100 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
2101
2102 OVERFLOW_CHECK_u64(array);
2103 data->callchain = (struct ip_callchain *)array++;
2104 if (data->callchain->nr > max_callchain_nr)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002105 return -EFAULT;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002106 sz = data->callchain->nr * sizeof(u64);
2107 OVERFLOW_CHECK(array, sz, max_size);
2108 array = (void *)array + sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002109 }
2110
2111 if (type & PERF_SAMPLE_RAW) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002112 OVERFLOW_CHECK_u64(array);
David Ahern936be502011-09-06 09:12:26 -06002113 u.val64 = *array;
2114 if (WARN_ONCE(swapped,
2115 "Endianness of raw data not corrected!\n")) {
2116 /* undo swap of u64, then swap on individual u32s */
2117 u.val64 = bswap_64(u.val64);
2118 u.val32[0] = bswap_32(u.val32[0]);
2119 u.val32[1] = bswap_32(u.val32[1]);
2120 }
David Ahern936be502011-09-06 09:12:26 -06002121 data->raw_size = u.val32[0];
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002122 array = (void *)array + sizeof(u32);
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002123
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002124 OVERFLOW_CHECK(array, data->raw_size, max_size);
2125 data->raw_data = (void *)array;
2126 array = (void *)array + data->raw_size;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002127 }
2128
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002129 if (type & PERF_SAMPLE_BRANCH_STACK) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002130 const u64 max_branch_nr = UINT64_MAX /
2131 sizeof(struct branch_entry);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002132
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002133 OVERFLOW_CHECK_u64(array);
2134 data->branch_stack = (struct branch_stack *)array++;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002135
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002136 if (data->branch_stack->nr > max_branch_nr)
2137 return -EFAULT;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002138 sz = data->branch_stack->nr * sizeof(struct branch_entry);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002139 OVERFLOW_CHECK(array, sz, max_size);
2140 array = (void *)array + sz;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002141 }
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002142
2143 if (type & PERF_SAMPLE_REGS_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002144 OVERFLOW_CHECK_u64(array);
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002145 data->user_regs.abi = *array;
2146 array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002147
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002148 if (data->user_regs.abi) {
Jiri Olsa352ea452014-01-07 13:47:25 +01002149 u64 mask = evsel->attr.sample_regs_user;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002150
Jiri Olsa352ea452014-01-07 13:47:25 +01002151 sz = hweight_long(mask) * sizeof(u64);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002152 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa352ea452014-01-07 13:47:25 +01002153 data->user_regs.mask = mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002154 data->user_regs.regs = (u64 *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002155 array = (void *)array + sz;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002156 }
2157 }
2158
2159 if (type & PERF_SAMPLE_STACK_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002160 OVERFLOW_CHECK_u64(array);
2161 sz = *array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002162
2163 data->user_stack.offset = ((char *)(array - 1)
2164 - (char *) event);
2165
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002166 if (!sz) {
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002167 data->user_stack.size = 0;
2168 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002169 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002170 data->user_stack.data = (char *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002171 array = (void *)array + sz;
2172 OVERFLOW_CHECK_u64(array);
Adrian Hunter54bd2692013-07-04 16:20:34 +03002173 data->user_stack.size = *array++;
Jiri Olsaa65cb4b2013-10-02 15:46:39 +02002174 if (WARN_ONCE(data->user_stack.size > sz,
2175 "user stack dump failure\n"))
2176 return -EFAULT;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002177 }
2178 }
2179
Andi Kleen05484292013-01-24 16:10:29 +01002180 if (type & PERF_SAMPLE_WEIGHT) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002181 OVERFLOW_CHECK_u64(array);
Andi Kleen05484292013-01-24 16:10:29 +01002182 data->weight = *array;
2183 array++;
2184 }
2185
Stephane Eranian98a3b322013-01-24 16:10:35 +01002186 data->data_src = PERF_MEM_DATA_SRC_NONE;
2187 if (type & PERF_SAMPLE_DATA_SRC) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002188 OVERFLOW_CHECK_u64(array);
Stephane Eranian98a3b322013-01-24 16:10:35 +01002189 data->data_src = *array;
2190 array++;
2191 }
2192
Andi Kleen475eeab2013-09-20 07:40:43 -07002193 data->transaction = 0;
2194 if (type & PERF_SAMPLE_TRANSACTION) {
Adrian Hunter87b95522013-11-01 15:51:36 +02002195 OVERFLOW_CHECK_u64(array);
Andi Kleen475eeab2013-09-20 07:40:43 -07002196 data->transaction = *array;
2197 array++;
2198 }
2199
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002200 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2201 if (type & PERF_SAMPLE_REGS_INTR) {
2202 OVERFLOW_CHECK_u64(array);
2203 data->intr_regs.abi = *array;
2204 array++;
2205
2206 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2207 u64 mask = evsel->attr.sample_regs_intr;
2208
2209 sz = hweight_long(mask) * sizeof(u64);
2210 OVERFLOW_CHECK(array, sz, max_size);
2211 data->intr_regs.mask = mask;
2212 data->intr_regs.regs = (u64 *)array;
2213 array = (void *)array + sz;
2214 }
2215 }
2216
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002217 return 0;
2218}
Andrew Vagin74eec262011-11-28 12:03:31 +03002219
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002220size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002221 u64 read_format)
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002222{
2223 size_t sz, result = sizeof(struct sample_event);
2224
2225 if (type & PERF_SAMPLE_IDENTIFIER)
2226 result += sizeof(u64);
2227
2228 if (type & PERF_SAMPLE_IP)
2229 result += sizeof(u64);
2230
2231 if (type & PERF_SAMPLE_TID)
2232 result += sizeof(u64);
2233
2234 if (type & PERF_SAMPLE_TIME)
2235 result += sizeof(u64);
2236
2237 if (type & PERF_SAMPLE_ADDR)
2238 result += sizeof(u64);
2239
2240 if (type & PERF_SAMPLE_ID)
2241 result += sizeof(u64);
2242
2243 if (type & PERF_SAMPLE_STREAM_ID)
2244 result += sizeof(u64);
2245
2246 if (type & PERF_SAMPLE_CPU)
2247 result += sizeof(u64);
2248
2249 if (type & PERF_SAMPLE_PERIOD)
2250 result += sizeof(u64);
2251
2252 if (type & PERF_SAMPLE_READ) {
2253 result += sizeof(u64);
2254 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2255 result += sizeof(u64);
2256 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2257 result += sizeof(u64);
2258 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2259 if (read_format & PERF_FORMAT_GROUP) {
2260 sz = sample->read.group.nr *
2261 sizeof(struct sample_read_value);
2262 result += sz;
2263 } else {
2264 result += sizeof(u64);
2265 }
2266 }
2267
2268 if (type & PERF_SAMPLE_CALLCHAIN) {
2269 sz = (sample->callchain->nr + 1) * sizeof(u64);
2270 result += sz;
2271 }
2272
2273 if (type & PERF_SAMPLE_RAW) {
2274 result += sizeof(u32);
2275 result += sample->raw_size;
2276 }
2277
2278 if (type & PERF_SAMPLE_BRANCH_STACK) {
2279 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2280 sz += sizeof(u64);
2281 result += sz;
2282 }
2283
2284 if (type & PERF_SAMPLE_REGS_USER) {
2285 if (sample->user_regs.abi) {
2286 result += sizeof(u64);
Jiri Olsa352ea452014-01-07 13:47:25 +01002287 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002288 result += sz;
2289 } else {
2290 result += sizeof(u64);
2291 }
2292 }
2293
2294 if (type & PERF_SAMPLE_STACK_USER) {
2295 sz = sample->user_stack.size;
2296 result += sizeof(u64);
2297 if (sz) {
2298 result += sz;
2299 result += sizeof(u64);
2300 }
2301 }
2302
2303 if (type & PERF_SAMPLE_WEIGHT)
2304 result += sizeof(u64);
2305
2306 if (type & PERF_SAMPLE_DATA_SRC)
2307 result += sizeof(u64);
2308
Adrian Hunter42d88912013-11-01 15:51:38 +02002309 if (type & PERF_SAMPLE_TRANSACTION)
2310 result += sizeof(u64);
2311
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002312 if (type & PERF_SAMPLE_REGS_INTR) {
2313 if (sample->intr_regs.abi) {
2314 result += sizeof(u64);
2315 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2316 result += sz;
2317 } else {
2318 result += sizeof(u64);
2319 }
2320 }
2321
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002322 return result;
2323}
2324
Andrew Vagin74eec262011-11-28 12:03:31 +03002325int perf_event__synthesize_sample(union perf_event *event, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002326 u64 read_format,
Andrew Vagin74eec262011-11-28 12:03:31 +03002327 const struct perf_sample *sample,
2328 bool swapped)
2329{
2330 u64 *array;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002331 size_t sz;
Andrew Vagin74eec262011-11-28 12:03:31 +03002332 /*
2333 * used for cross-endian analysis. See git commit 65014ab3
2334 * for why this goofiness is needed.
2335 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002336 union u64_swap u;
Andrew Vagin74eec262011-11-28 12:03:31 +03002337
2338 array = event->sample.array;
2339
Adrian Hunter75562572013-08-27 11:23:09 +03002340 if (type & PERF_SAMPLE_IDENTIFIER) {
2341 *array = sample->id;
2342 array++;
2343 }
2344
Andrew Vagin74eec262011-11-28 12:03:31 +03002345 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002346 *array = sample->ip;
Andrew Vagin74eec262011-11-28 12:03:31 +03002347 array++;
2348 }
2349
2350 if (type & PERF_SAMPLE_TID) {
2351 u.val32[0] = sample->pid;
2352 u.val32[1] = sample->tid;
2353 if (swapped) {
2354 /*
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002355 * Inverse of what is done in perf_evsel__parse_sample
Andrew Vagin74eec262011-11-28 12:03:31 +03002356 */
2357 u.val32[0] = bswap_32(u.val32[0]);
2358 u.val32[1] = bswap_32(u.val32[1]);
2359 u.val64 = bswap_64(u.val64);
2360 }
2361
2362 *array = u.val64;
2363 array++;
2364 }
2365
2366 if (type & PERF_SAMPLE_TIME) {
2367 *array = sample->time;
2368 array++;
2369 }
2370
2371 if (type & PERF_SAMPLE_ADDR) {
2372 *array = sample->addr;
2373 array++;
2374 }
2375
2376 if (type & PERF_SAMPLE_ID) {
2377 *array = sample->id;
2378 array++;
2379 }
2380
2381 if (type & PERF_SAMPLE_STREAM_ID) {
2382 *array = sample->stream_id;
2383 array++;
2384 }
2385
2386 if (type & PERF_SAMPLE_CPU) {
2387 u.val32[0] = sample->cpu;
2388 if (swapped) {
2389 /*
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002390 * Inverse of what is done in perf_evsel__parse_sample
Andrew Vagin74eec262011-11-28 12:03:31 +03002391 */
2392 u.val32[0] = bswap_32(u.val32[0]);
2393 u.val64 = bswap_64(u.val64);
2394 }
2395 *array = u.val64;
2396 array++;
2397 }
2398
2399 if (type & PERF_SAMPLE_PERIOD) {
2400 *array = sample->period;
2401 array++;
2402 }
2403
Adrian Hunterd03f2172013-08-27 11:23:11 +03002404 if (type & PERF_SAMPLE_READ) {
2405 if (read_format & PERF_FORMAT_GROUP)
2406 *array = sample->read.group.nr;
2407 else
2408 *array = sample->read.one.value;
2409 array++;
2410
2411 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2412 *array = sample->read.time_enabled;
2413 array++;
2414 }
2415
2416 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2417 *array = sample->read.time_running;
2418 array++;
2419 }
2420
2421 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2422 if (read_format & PERF_FORMAT_GROUP) {
2423 sz = sample->read.group.nr *
2424 sizeof(struct sample_read_value);
2425 memcpy(array, sample->read.group.values, sz);
2426 array = (void *)array + sz;
2427 } else {
2428 *array = sample->read.one.id;
2429 array++;
2430 }
2431 }
2432
2433 if (type & PERF_SAMPLE_CALLCHAIN) {
2434 sz = (sample->callchain->nr + 1) * sizeof(u64);
2435 memcpy(array, sample->callchain, sz);
2436 array = (void *)array + sz;
2437 }
2438
2439 if (type & PERF_SAMPLE_RAW) {
2440 u.val32[0] = sample->raw_size;
2441 if (WARN_ONCE(swapped,
2442 "Endianness of raw data not corrected!\n")) {
2443 /*
2444 * Inverse of what is done in perf_evsel__parse_sample
2445 */
2446 u.val32[0] = bswap_32(u.val32[0]);
2447 u.val32[1] = bswap_32(u.val32[1]);
2448 u.val64 = bswap_64(u.val64);
2449 }
2450 *array = u.val64;
2451 array = (void *)array + sizeof(u32);
2452
2453 memcpy(array, sample->raw_data, sample->raw_size);
2454 array = (void *)array + sample->raw_size;
2455 }
2456
2457 if (type & PERF_SAMPLE_BRANCH_STACK) {
2458 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2459 sz += sizeof(u64);
2460 memcpy(array, sample->branch_stack, sz);
2461 array = (void *)array + sz;
2462 }
2463
2464 if (type & PERF_SAMPLE_REGS_USER) {
2465 if (sample->user_regs.abi) {
2466 *array++ = sample->user_regs.abi;
Jiri Olsa352ea452014-01-07 13:47:25 +01002467 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterd03f2172013-08-27 11:23:11 +03002468 memcpy(array, sample->user_regs.regs, sz);
2469 array = (void *)array + sz;
2470 } else {
2471 *array++ = 0;
2472 }
2473 }
2474
2475 if (type & PERF_SAMPLE_STACK_USER) {
2476 sz = sample->user_stack.size;
2477 *array++ = sz;
2478 if (sz) {
2479 memcpy(array, sample->user_stack.data, sz);
2480 array = (void *)array + sz;
2481 *array++ = sz;
2482 }
2483 }
2484
2485 if (type & PERF_SAMPLE_WEIGHT) {
2486 *array = sample->weight;
2487 array++;
2488 }
2489
2490 if (type & PERF_SAMPLE_DATA_SRC) {
2491 *array = sample->data_src;
2492 array++;
2493 }
2494
Adrian Hunter42d88912013-11-01 15:51:38 +02002495 if (type & PERF_SAMPLE_TRANSACTION) {
2496 *array = sample->transaction;
2497 array++;
2498 }
2499
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002500 if (type & PERF_SAMPLE_REGS_INTR) {
2501 if (sample->intr_regs.abi) {
2502 *array++ = sample->intr_regs.abi;
2503 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2504 memcpy(array, sample->intr_regs.regs, sz);
2505 array = (void *)array + sz;
2506 } else {
2507 *array++ = 0;
2508 }
2509 }
2510
Andrew Vagin74eec262011-11-28 12:03:31 +03002511 return 0;
2512}
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002513
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002514struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
2515{
2516 return pevent_find_field(evsel->tp_format, name);
2517}
2518
Arnaldo Carvalho de Melo5d2074e2012-09-26 20:22:00 -03002519void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002520 const char *name)
2521{
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002522 struct format_field *field = perf_evsel__field(evsel, name);
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002523 int offset;
2524
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002525 if (!field)
2526 return NULL;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002527
2528 offset = field->offset;
2529
2530 if (field->flags & FIELD_IS_DYNAMIC) {
2531 offset = *(int *)(sample->raw_data + field->offset);
2532 offset &= 0xffff;
2533 }
2534
2535 return sample->raw_data + offset;
2536}
2537
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002538u64 format_field__intval(struct format_field *field, struct perf_sample *sample,
2539 bool needs_swap)
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002540{
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002541 u64 value;
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002542 void *ptr = sample->raw_data + field->offset;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002543
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002544 switch (field->size) {
2545 case 1:
2546 return *(u8 *)ptr;
2547 case 2:
2548 value = *(u16 *)ptr;
2549 break;
2550 case 4:
2551 value = *(u32 *)ptr;
2552 break;
2553 case 8:
David Aherne94eeda2015-03-24 16:14:09 -04002554 memcpy(&value, ptr, sizeof(u64));
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002555 break;
2556 default:
2557 return 0;
2558 }
2559
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002560 if (!needs_swap)
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002561 return value;
2562
2563 switch (field->size) {
2564 case 2:
2565 return bswap_16(value);
2566 case 4:
2567 return bswap_32(value);
2568 case 8:
2569 return bswap_64(value);
2570 default:
2571 return 0;
2572 }
2573
2574 return 0;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002575}
Arnaldo Carvalho de Melo0698aed2012-12-10 18:17:08 -03002576
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002577u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
2578 const char *name)
2579{
2580 struct format_field *field = perf_evsel__field(evsel, name);
2581
2582 if (!field)
2583 return 0;
2584
2585 return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2586}
2587
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002588bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
2589 char *msg, size_t msgsize)
2590{
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002591 int paranoid;
2592
David Ahern2b821cc2013-07-18 17:27:59 -06002593 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002594 evsel->attr.type == PERF_TYPE_HARDWARE &&
2595 evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2596 /*
2597 * If it's cycles then fall back to hrtimer based
2598 * cpu-clock-tick sw counter, which is always available even if
2599 * no PMU support.
2600 *
2601 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2602 * b0a873e).
2603 */
2604 scnprintf(msg, msgsize, "%s",
2605"The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2606
2607 evsel->attr.type = PERF_TYPE_SOFTWARE;
2608 evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK;
2609
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03002610 zfree(&evsel->name);
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002611 return true;
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002612 } else if (err == EACCES && !evsel->attr.exclude_kernel &&
2613 (paranoid = perf_event_paranoid()) > 1) {
2614 const char *name = perf_evsel__name(evsel);
2615 char *new_name;
2616
2617 if (asprintf(&new_name, "%s%su", name, strchr(name, ':') ? "" : ":") < 0)
2618 return false;
2619
2620 if (evsel->name)
2621 free(evsel->name);
2622 evsel->name = new_name;
2623 scnprintf(msg, msgsize,
2624"kernel.perf_event_paranoid=%d, trying to fall back to excluding kernel samples", paranoid);
2625 evsel->attr.exclude_kernel = 1;
2626
2627 return true;
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002628 }
2629
2630 return false;
2631}
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002632
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -03002633static bool find_process(const char *name)
2634{
2635 size_t len = strlen(name);
2636 DIR *dir;
2637 struct dirent *d;
2638 int ret = -1;
2639
2640 dir = opendir(procfs__mountpoint());
2641 if (!dir)
2642 return false;
2643
2644 /* Walk through the directory. */
2645 while (ret && (d = readdir(dir)) != NULL) {
2646 char path[PATH_MAX];
2647 char *data;
2648 size_t size;
2649
2650 if ((d->d_type != DT_DIR) ||
2651 !strcmp(".", d->d_name) ||
2652 !strcmp("..", d->d_name))
2653 continue;
2654
2655 scnprintf(path, sizeof(path), "%s/%s/comm",
2656 procfs__mountpoint(), d->d_name);
2657
2658 if (filename__read_str(path, &data, &size))
2659 continue;
2660
2661 ret = strncmp(name, data, len);
2662 free(data);
2663 }
2664
2665 closedir(dir);
2666 return ret ? false : true;
2667}
2668
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002669int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002670 int err, char *msg, size_t size)
2671{
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002672 char sbuf[STRERR_BUFSIZE];
Jin Yao32ccb132017-04-07 20:08:52 +08002673 int printed = 0;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002674
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002675 switch (err) {
2676 case EPERM:
2677 case EACCES:
Jin Yao32ccb132017-04-07 20:08:52 +08002678 if (err == EPERM)
2679 printed = scnprintf(msg, size,
2680 "No permission to enable %s event.\n\n",
2681 perf_evsel__name(evsel));
2682
2683 return scnprintf(msg + printed, size - printed,
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002684 "You may not have permission to collect %sstats.\n\n"
2685 "Consider tweaking /proc/sys/kernel/perf_event_paranoid,\n"
2686 "which controls use of the performance events system by\n"
2687 "unprivileged users (without CAP_SYS_ADMIN).\n\n"
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002688 "The current value is %d:\n\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002689 " -1: Allow use of (almost) all events by all users\n"
2690 ">= 0: Disallow raw tracepoint access by users without CAP_IOC_LOCK\n"
2691 ">= 1: Disallow CPU event access by users without CAP_SYS_ADMIN\n"
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -03002692 ">= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN\n\n"
2693 "To make this setting permanent, edit /etc/sysctl.conf too, e.g.:\n\n"
2694 " kernel.perf_event_paranoid = -1\n" ,
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002695 target->system_wide ? "system-wide " : "",
2696 perf_event_paranoid());
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002697 case ENOENT:
2698 return scnprintf(msg, size, "The %s event is not supported.",
2699 perf_evsel__name(evsel));
2700 case EMFILE:
2701 return scnprintf(msg, size, "%s",
2702 "Too many events are opened.\n"
Jiri Olsa18ffdfe2015-05-25 22:51:54 +02002703 "Probably the maximum number of open file descriptors has been reached.\n"
2704 "Hint: Try again after reducing the number of events.\n"
2705 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
Arnaldo Carvalho de Melode46d522016-04-27 17:51:45 -03002706 case ENOMEM:
2707 if ((evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0 &&
2708 access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2709 return scnprintf(msg, size,
2710 "Not enough memory to setup event with callchain.\n"
2711 "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2712 "Hint: Current value: %d", sysctl_perf_event_max_stack);
2713 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002714 case ENODEV:
2715 if (target->cpu_list)
2716 return scnprintf(msg, size, "%s",
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002717 "No such device - did you specify an out-of-range profile CPU?");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002718 break;
2719 case EOPNOTSUPP:
Vineet Guptadc89e752016-05-09 15:07:39 +05302720 if (evsel->attr.sample_period != 0)
2721 return scnprintf(msg, size, "%s",
2722 "PMU Hardware doesn't support sampling/overflow-interrupts.");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002723 if (evsel->attr.precise_ip)
2724 return scnprintf(msg, size, "%s",
2725 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2726#if defined(__i386__) || defined(__x86_64__)
2727 if (evsel->attr.type == PERF_TYPE_HARDWARE)
2728 return scnprintf(msg, size, "%s",
2729 "No hardware sampling interrupt available.\n"
2730 "No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.");
2731#endif
2732 break;
Jiri Olsa63914ac2014-08-01 17:46:54 +02002733 case EBUSY:
2734 if (find_process("oprofiled"))
2735 return scnprintf(msg, size,
2736 "The PMU counters are busy/taken by another profiler.\n"
2737 "We found oprofile daemon running, please stop it and try again.");
2738 break;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002739 case EINVAL:
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00002740 if (evsel->attr.write_backward && perf_missing_features.write_backward)
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00002741 return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002742 if (perf_missing_features.clockid)
2743 return scnprintf(msg, size, "clockid feature not supported.");
2744 if (perf_missing_features.clockid_wrong)
2745 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2746 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002747 default:
2748 break;
2749 }
2750
2751 return scnprintf(msg, size,
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002752 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002753 "/bin/dmesg may provide additional information.\n"
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002754 "No CONFIG_PERF_EVENTS=y kernel support configured?",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03002755 err, str_error_r(err, sbuf, sizeof(sbuf)),
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002756 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002757}
Ravi Bangoriaf4e47f92016-06-30 11:44:19 +05302758
2759char *perf_evsel__env_arch(struct perf_evsel *evsel)
2760{
2761 if (evsel && evsel->evlist && evsel->evlist->env)
2762 return evsel->evlist->env->arch;
2763 return NULL;
2764}
Jin Yao69fb09f2017-07-07 13:06:34 +08002765
2766char *perf_evsel__env_cpuid(struct perf_evsel *evsel)
2767{
2768 if (evsel && evsel->evlist && evsel->evlist->env)
2769 return evsel->evlist->env->cpuid;
2770 return NULL;
2771}