blob: 89aecf3a35c7be720f6eb4f4d61bb4521600dc35 [file] [log] [blame]
Arnaldo Carvalho de Melof8a95302011-01-30 10:46:46 -02001/*
2 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
3 *
4 * Parts came from builtin-{top,stat,record}.c, see those files for further
5 * copyright notes.
6 *
7 * Released under the GPL v2. (and only v2, not any later version)
8 */
9
David Ahern936be502011-09-06 09:12:26 -060010#include <byteswap.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030011#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030012#include <inttypes.h>
Jiri Olsa0f6a3012012-08-07 15:20:45 +020013#include <linux/bitops.h>
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -030014#include <api/fs/fs.h>
Jiri Olsa4605eab2015-09-02 09:56:43 +020015#include <api/fs/tracing_path.h>
Robert Richter4e319022013-06-11 17:29:18 +020016#include <traceevent/event-parse.h>
17#include <linux/hw_breakpoint.h>
18#include <linux/perf_event.h>
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -030019#include <linux/compiler.h>
Jiri Olsa8dd2a132015-09-07 10:38:06 +020020#include <linux/err.h>
Arnaldo Carvalho de Melo86a5e0c2017-04-19 19:03:14 -030021#include <sys/ioctl.h>
Andi Kleenbec19672013-08-04 19:41:26 -070022#include <sys/resource.h>
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -030023#include <sys/types.h>
24#include <dirent.h>
Robert Richter4e319022013-06-11 17:29:18 +020025#include "asm/bug.h"
Arnaldo Carvalho de Melo8f651ea2014-10-09 16:12:24 -030026#include "callchain.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030027#include "cgroup.h"
Arnaldo Carvalho de Melo5ab8c682017-04-25 15:30:47 -030028#include "event.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020029#include "evsel.h"
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -020030#include "evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020031#include "util.h"
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -020032#include "cpumap.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020033#include "thread_map.h"
Namhyung Kim12864b32012-04-26 14:15:22 +090034#include "target.h"
Jiri Olsa26d33022012-08-07 15:20:47 +020035#include "perf_regs.h"
Adrian Huntere3e1a542013-08-14 15:48:24 +030036#include "debug.h"
Jiri Olsa97978b32013-12-03 14:09:24 +010037#include "trace-event.h"
Jiri Olsaa9a3a4d2015-06-14 10:19:26 +020038#include "stat.h"
Andi Kleenac12f672016-10-12 14:02:06 -070039#include "util/parse-branch-options.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020040
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030041#include "sane_ctype.h"
42
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030043static struct {
44 bool sample_id_all;
45 bool exclude_guest;
Stephane Eranian5c5e8542013-08-21 12:10:25 +020046 bool mmap2;
Yann Droneaud57480d22014-06-30 22:28:47 +020047 bool cloexec;
Peter Zijlstra814c8c32015-03-31 00:19:31 +020048 bool clockid;
49 bool clockid_wrong;
Andi Kleenbd0f8892015-12-11 16:12:24 -080050 bool lbr_flags;
Wang Nanb90dc172016-05-20 16:38:23 +000051 bool write_backward;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030052} perf_missing_features;
53
Peter Zijlstra814c8c32015-03-31 00:19:31 +020054static clockid_t clockid;
55
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030056static int perf_evsel__no_extra_init(struct perf_evsel *evsel __maybe_unused)
57{
58 return 0;
59}
60
Jiri Olsa10213e22017-07-03 16:50:18 +020061void __weak test_attr__ready(void) { }
62
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030063static void perf_evsel__no_extra_fini(struct perf_evsel *evsel __maybe_unused)
64{
65}
66
67static struct {
68 size_t size;
69 int (*init)(struct perf_evsel *evsel);
70 void (*fini)(struct perf_evsel *evsel);
71} perf_evsel__object = {
72 .size = sizeof(struct perf_evsel),
73 .init = perf_evsel__no_extra_init,
74 .fini = perf_evsel__no_extra_fini,
75};
76
77int perf_evsel__object_config(size_t object_size,
78 int (*init)(struct perf_evsel *evsel),
79 void (*fini)(struct perf_evsel *evsel))
80{
81
82 if (object_size == 0)
83 goto set_methods;
84
85 if (perf_evsel__object.size > object_size)
86 return -EINVAL;
87
88 perf_evsel__object.size = object_size;
89
90set_methods:
91 if (init != NULL)
92 perf_evsel__object.init = init;
93
94 if (fini != NULL)
95 perf_evsel__object.fini = fini;
96
97 return 0;
98}
99
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200100#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
101
Adrian Hunter75562572013-08-27 11:23:09 +0300102int __perf_evsel__sample_size(u64 sample_type)
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300103{
104 u64 mask = sample_type & PERF_SAMPLE_MASK;
105 int size = 0;
106 int i;
107
108 for (i = 0; i < 64; i++) {
109 if (mask & (1ULL << i))
110 size++;
111 }
112
113 size *= sizeof(u64);
114
115 return size;
116}
117
Adrian Hunter75562572013-08-27 11:23:09 +0300118/**
119 * __perf_evsel__calc_id_pos - calculate id_pos.
120 * @sample_type: sample type
121 *
122 * This function returns the position of the event id (PERF_SAMPLE_ID or
123 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct
124 * sample_event.
125 */
126static int __perf_evsel__calc_id_pos(u64 sample_type)
127{
128 int idx = 0;
129
130 if (sample_type & PERF_SAMPLE_IDENTIFIER)
131 return 0;
132
133 if (!(sample_type & PERF_SAMPLE_ID))
134 return -1;
135
136 if (sample_type & PERF_SAMPLE_IP)
137 idx += 1;
138
139 if (sample_type & PERF_SAMPLE_TID)
140 idx += 1;
141
142 if (sample_type & PERF_SAMPLE_TIME)
143 idx += 1;
144
145 if (sample_type & PERF_SAMPLE_ADDR)
146 idx += 1;
147
148 return idx;
149}
150
151/**
152 * __perf_evsel__calc_is_pos - calculate is_pos.
153 * @sample_type: sample type
154 *
155 * This function returns the position (counting backwards) of the event id
156 * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if
157 * sample_id_all is used there is an id sample appended to non-sample events.
158 */
159static int __perf_evsel__calc_is_pos(u64 sample_type)
160{
161 int idx = 1;
162
163 if (sample_type & PERF_SAMPLE_IDENTIFIER)
164 return 1;
165
166 if (!(sample_type & PERF_SAMPLE_ID))
167 return -1;
168
169 if (sample_type & PERF_SAMPLE_CPU)
170 idx += 1;
171
172 if (sample_type & PERF_SAMPLE_STREAM_ID)
173 idx += 1;
174
175 return idx;
176}
177
178void perf_evsel__calc_id_pos(struct perf_evsel *evsel)
179{
180 evsel->id_pos = __perf_evsel__calc_id_pos(evsel->attr.sample_type);
181 evsel->is_pos = __perf_evsel__calc_is_pos(evsel->attr.sample_type);
182}
183
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300184void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
185 enum perf_event_sample_format bit)
186{
187 if (!(evsel->attr.sample_type & bit)) {
188 evsel->attr.sample_type |= bit;
189 evsel->sample_size += sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300190 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300191 }
192}
193
194void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
195 enum perf_event_sample_format bit)
196{
197 if (evsel->attr.sample_type & bit) {
198 evsel->attr.sample_type &= ~bit;
199 evsel->sample_size -= sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300200 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300201 }
202}
203
Adrian Hunter75562572013-08-27 11:23:09 +0300204void perf_evsel__set_sample_id(struct perf_evsel *evsel,
205 bool can_sample_identifier)
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300206{
Adrian Hunter75562572013-08-27 11:23:09 +0300207 if (can_sample_identifier) {
208 perf_evsel__reset_sample_bit(evsel, ID);
209 perf_evsel__set_sample_bit(evsel, IDENTIFIER);
210 } else {
211 perf_evsel__set_sample_bit(evsel, ID);
212 }
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300213 evsel->attr.read_format |= PERF_FORMAT_ID;
214}
215
Arnaldo Carvalho de Melo5496bc02016-07-07 11:51:47 -0300216/**
217 * perf_evsel__is_function_event - Return whether given evsel is a function
218 * trace event
219 *
220 * @evsel - evsel selector to be tested
221 *
222 * Return %true if event is function trace event
223 */
224bool perf_evsel__is_function_event(struct perf_evsel *evsel)
225{
226#define FUNCTION_EVENT "ftrace:function"
227
228 return evsel->name &&
229 !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
230
231#undef FUNCTION_EVENT
232}
233
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200234void perf_evsel__init(struct perf_evsel *evsel,
235 struct perf_event_attr *attr, int idx)
236{
237 evsel->idx = idx;
Adrian Hunter60b08962014-07-31 09:00:52 +0300238 evsel->tracking = !idx;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200239 evsel->attr = *attr;
Namhyung Kim2cfda562012-11-29 15:38:29 +0900240 evsel->leader = evsel;
Stephane Eranian410136f2013-11-12 17:58:49 +0100241 evsel->unit = "";
242 evsel->scale = 1.0;
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -0400243 evsel->evlist = NULL;
Wang Nan1f45b1d2015-10-14 12:41:18 +0000244 evsel->bpf_fd = -1;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200245 INIT_LIST_HEAD(&evsel->node);
Jiri Olsa930a2e22015-07-29 05:42:10 -0400246 INIT_LIST_HEAD(&evsel->config_terms);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300247 perf_evsel__object.init(evsel);
Arnaldo Carvalho de Melobde09462012-08-01 18:53:11 -0300248 evsel->sample_size = __perf_evsel__sample_size(attr->sample_type);
Adrian Hunter75562572013-08-27 11:23:09 +0300249 perf_evsel__calc_id_pos(evsel);
Wang Nan15bfd2c2015-07-10 07:36:09 +0000250 evsel->cmdline_group_boundary = false;
Andi Kleen37932c12017-03-20 13:17:08 -0700251 evsel->metric_expr = NULL;
Andi Kleen96284812017-03-20 13:17:10 -0700252 evsel->metric_name = NULL;
Andi Kleen37932c12017-03-20 13:17:08 -0700253 evsel->metric_events = NULL;
254 evsel->collect_stat = false;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200255}
256
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300257struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200258{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300259 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200260
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200261 if (evsel != NULL)
262 perf_evsel__init(evsel, attr, idx);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200263
Wang Nan03e0a7d2016-02-22 09:10:37 +0000264 if (perf_evsel__is_bpf_output(evsel)) {
Wang Nand37ba882016-04-01 13:26:42 +0000265 evsel->attr.sample_type |= (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
266 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Wang Nan03e0a7d2016-02-22 09:10:37 +0000267 evsel->attr.sample_period = 1;
268 }
269
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200270 return evsel;
271}
272
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300273struct perf_evsel *perf_evsel__new_cycles(bool precise)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300274{
275 struct perf_event_attr attr = {
276 .type = PERF_TYPE_HARDWARE,
277 .config = PERF_COUNT_HW_CPU_CYCLES,
Arnaldo Carvalho de Melod37a3692017-07-10 16:08:07 -0300278 .exclude_kernel = geteuid() != 0,
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300279 };
280 struct perf_evsel *evsel;
281
282 event_attr_init(&attr);
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300283
284 if (!precise)
285 goto new_event;
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300286 /*
287 * Unnamed union member, not supported as struct member named
288 * initializer in older compilers such as gcc 4.4.7
289 *
290 * Just for probing the precise_ip:
291 */
292 attr.sample_period = 1;
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300293
294 perf_event_attr__set_max_precise_ip(&attr);
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300295 /*
296 * Now let the usual logic to set up the perf_event_attr defaults
297 * to kick in when we return and before perf_evsel__open() is called.
298 */
299 attr.sample_period = 0;
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300300new_event:
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300301 evsel = perf_evsel__new(&attr);
302 if (evsel == NULL)
303 goto out;
304
305 /* use asprintf() because free(evsel) assumes name is allocated */
Arnaldo Carvalho de Meloede56262017-07-10 16:19:25 -0300306 if (asprintf(&evsel->name, "cycles%s%s%.*s",
307 (attr.precise_ip || attr.exclude_kernel) ? ":" : "",
308 attr.exclude_kernel ? "u" : "",
309 attr.precise_ip ? attr.precise_ip + 1 : 0, "ppp") < 0)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300310 goto error_free;
311out:
312 return evsel;
313error_free:
314 perf_evsel__delete(evsel);
315 evsel = NULL;
316 goto out;
317}
318
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200319/*
320 * Returns pointer with encoded error via <linux/err.h> interface.
321 */
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300322struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx)
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300323{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300324 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200325 int err = -ENOMEM;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300326
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200327 if (evsel == NULL) {
328 goto out_err;
329 } else {
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300330 struct perf_event_attr attr = {
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300331 .type = PERF_TYPE_TRACEPOINT,
332 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
333 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300334 };
335
Arnaldo Carvalho de Meloe48ffe22012-09-26 17:11:38 -0300336 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
337 goto out_free;
338
Jiri Olsa97978b32013-12-03 14:09:24 +0100339 evsel->tp_format = trace_event__tp_format(sys, name);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200340 if (IS_ERR(evsel->tp_format)) {
341 err = PTR_ERR(evsel->tp_format);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300342 goto out_free;
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200343 }
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300344
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300345 event_attr_init(&attr);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300346 attr.config = evsel->tp_format->id;
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300347 attr.sample_period = 1;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300348 perf_evsel__init(evsel, &attr, idx);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300349 }
350
351 return evsel;
352
353out_free:
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300354 zfree(&evsel->name);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300355 free(evsel);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200356out_err:
357 return ERR_PTR(err);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300358}
359
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300360const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300361 "cycles",
362 "instructions",
363 "cache-references",
364 "cache-misses",
365 "branches",
366 "branch-misses",
367 "bus-cycles",
368 "stalled-cycles-frontend",
369 "stalled-cycles-backend",
370 "ref-cycles",
371};
372
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300373static const char *__perf_evsel__hw_name(u64 config)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300374{
375 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
376 return perf_evsel__hw_names[config];
377
378 return "unknown-hardware";
379}
380
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300381static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300382{
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300383 int colon = 0, r = 0;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300384 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300385 bool exclude_guest_default = false;
386
387#define MOD_PRINT(context, mod) do { \
388 if (!attr->exclude_##context) { \
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300389 if (!colon) colon = ++r; \
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300390 r += scnprintf(bf + r, size - r, "%c", mod); \
391 } } while(0)
392
393 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
394 MOD_PRINT(kernel, 'k');
395 MOD_PRINT(user, 'u');
396 MOD_PRINT(hv, 'h');
397 exclude_guest_default = true;
398 }
399
400 if (attr->precise_ip) {
401 if (!colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300402 colon = ++r;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300403 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
404 exclude_guest_default = true;
405 }
406
407 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
408 MOD_PRINT(host, 'H');
409 MOD_PRINT(guest, 'G');
410 }
411#undef MOD_PRINT
412 if (colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300413 bf[colon - 1] = ':';
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300414 return r;
415}
416
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300417static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
418{
419 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
420 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
421}
422
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300423const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300424 "cpu-clock",
425 "task-clock",
426 "page-faults",
427 "context-switches",
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300428 "cpu-migrations",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300429 "minor-faults",
430 "major-faults",
431 "alignment-faults",
432 "emulation-faults",
Adrian Hunterd22d1a22013-08-31 21:50:52 +0300433 "dummy",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300434};
435
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300436static const char *__perf_evsel__sw_name(u64 config)
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300437{
438 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
439 return perf_evsel__sw_names[config];
440 return "unknown-software";
441}
442
443static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
444{
445 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
446 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
447}
448
Jiri Olsa287e74a2012-06-28 23:18:49 +0200449static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
450{
451 int r;
452
453 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
454
455 if (type & HW_BREAKPOINT_R)
456 r += scnprintf(bf + r, size - r, "r");
457
458 if (type & HW_BREAKPOINT_W)
459 r += scnprintf(bf + r, size - r, "w");
460
461 if (type & HW_BREAKPOINT_X)
462 r += scnprintf(bf + r, size - r, "x");
463
464 return r;
465}
466
467static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size)
468{
469 struct perf_event_attr *attr = &evsel->attr;
470 int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
471 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
472}
473
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300474const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
475 [PERF_EVSEL__MAX_ALIASES] = {
476 { "L1-dcache", "l1-d", "l1d", "L1-data", },
477 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
478 { "LLC", "L2", },
479 { "dTLB", "d-tlb", "Data-TLB", },
480 { "iTLB", "i-tlb", "Instruction-TLB", },
481 { "branch", "branches", "bpu", "btb", "bpc", },
482 { "node", },
483};
484
485const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
486 [PERF_EVSEL__MAX_ALIASES] = {
487 { "load", "loads", "read", },
488 { "store", "stores", "write", },
489 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
490};
491
492const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
493 [PERF_EVSEL__MAX_ALIASES] = {
494 { "refs", "Reference", "ops", "access", },
495 { "misses", "miss", },
496};
497
498#define C(x) PERF_COUNT_HW_CACHE_##x
499#define CACHE_READ (1 << C(OP_READ))
500#define CACHE_WRITE (1 << C(OP_WRITE))
501#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
502#define COP(x) (1 << x)
503
504/*
505 * cache operartion stat
506 * L1I : Read and prefetch only
507 * ITLB and BPU : Read-only
508 */
509static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
510 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
511 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
512 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
513 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
514 [C(ITLB)] = (CACHE_READ),
515 [C(BPU)] = (CACHE_READ),
516 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
517};
518
519bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
520{
521 if (perf_evsel__hw_cache_stat[type] & COP(op))
522 return true; /* valid */
523 else
524 return false; /* invalid */
525}
526
527int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
528 char *bf, size_t size)
529{
530 if (result) {
531 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
532 perf_evsel__hw_cache_op[op][0],
533 perf_evsel__hw_cache_result[result][0]);
534 }
535
536 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
537 perf_evsel__hw_cache_op[op][1]);
538}
539
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300540static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300541{
542 u8 op, result, type = (config >> 0) & 0xff;
543 const char *err = "unknown-ext-hardware-cache-type";
544
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300545 if (type >= PERF_COUNT_HW_CACHE_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300546 goto out_err;
547
548 op = (config >> 8) & 0xff;
549 err = "unknown-ext-hardware-cache-op";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300550 if (op >= PERF_COUNT_HW_CACHE_OP_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300551 goto out_err;
552
553 result = (config >> 16) & 0xff;
554 err = "unknown-ext-hardware-cache-result";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300555 if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300556 goto out_err;
557
558 err = "invalid-cache";
559 if (!perf_evsel__is_cache_op_valid(type, op))
560 goto out_err;
561
562 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
563out_err:
564 return scnprintf(bf, size, "%s", err);
565}
566
567static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
568{
569 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
570 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
571}
572
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300573static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
574{
575 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
576 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
577}
578
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300579const char *perf_evsel__name(struct perf_evsel *evsel)
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300580{
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300581 char bf[128];
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300582
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300583 if (evsel->name)
584 return evsel->name;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300585
586 switch (evsel->attr.type) {
587 case PERF_TYPE_RAW:
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300588 perf_evsel__raw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300589 break;
590
591 case PERF_TYPE_HARDWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300592 perf_evsel__hw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300593 break;
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300594
595 case PERF_TYPE_HW_CACHE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300596 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300597 break;
598
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300599 case PERF_TYPE_SOFTWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300600 perf_evsel__sw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300601 break;
602
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300603 case PERF_TYPE_TRACEPOINT:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300604 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300605 break;
606
Jiri Olsa287e74a2012-06-28 23:18:49 +0200607 case PERF_TYPE_BREAKPOINT:
608 perf_evsel__bp_name(evsel, bf, sizeof(bf));
609 break;
610
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300611 default:
Robert Richterca1b1452012-08-16 21:10:18 +0200612 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
613 evsel->attr.type);
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300614 break;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300615 }
616
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300617 evsel->name = strdup(bf);
618
619 return evsel->name ?: "unknown";
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300620}
621
Namhyung Kim717e2632013-01-22 18:09:44 +0900622const char *perf_evsel__group_name(struct perf_evsel *evsel)
623{
624 return evsel->group_name ?: "anon group";
625}
626
627int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size)
628{
629 int ret;
630 struct perf_evsel *pos;
631 const char *group_name = perf_evsel__group_name(evsel);
632
633 ret = scnprintf(buf, size, "%s", group_name);
634
635 ret += scnprintf(buf + ret, size - ret, " { %s",
636 perf_evsel__name(evsel));
637
638 for_each_group_member(pos, evsel)
639 ret += scnprintf(buf + ret, size - ret, ", %s",
640 perf_evsel__name(pos));
641
642 ret += scnprintf(buf + ret, size - ret, " }");
643
644 return ret;
645}
646
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300647void perf_evsel__config_callchain(struct perf_evsel *evsel,
648 struct record_opts *opts,
649 struct callchain_param *param)
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100650{
651 bool function = perf_evsel__is_function_event(evsel);
652 struct perf_event_attr *attr = &evsel->attr;
653
654 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
655
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300656 attr->sample_max_stack = param->max_stack;
657
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400658 if (param->record_mode == CALLCHAIN_LBR) {
Kan Liangaad2b212015-01-05 13:23:04 -0500659 if (!opts->branch_stack) {
660 if (attr->exclude_user) {
661 pr_warning("LBR callstack option is only available "
662 "to get user callchain information. "
663 "Falling back to framepointers.\n");
664 } else {
665 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
666 attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER |
Andi Kleenbd0f8892015-12-11 16:12:24 -0800667 PERF_SAMPLE_BRANCH_CALL_STACK |
668 PERF_SAMPLE_BRANCH_NO_CYCLES |
669 PERF_SAMPLE_BRANCH_NO_FLAGS;
Kan Liangaad2b212015-01-05 13:23:04 -0500670 }
671 } else
672 pr_warning("Cannot use LBR callstack with branch stack. "
673 "Falling back to framepointers.\n");
674 }
675
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400676 if (param->record_mode == CALLCHAIN_DWARF) {
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100677 if (!function) {
678 perf_evsel__set_sample_bit(evsel, REGS_USER);
679 perf_evsel__set_sample_bit(evsel, STACK_USER);
680 attr->sample_regs_user = PERF_REGS_MASK;
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400681 attr->sample_stack_user = param->dump_size;
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100682 attr->exclude_callchain_user = 1;
683 } else {
684 pr_info("Cannot use DWARF unwind for function trace event,"
685 " falling back to framepointers.\n");
686 }
687 }
688
689 if (function) {
690 pr_info("Disabling user space callchains for function trace event.\n");
691 attr->exclude_callchain_user = 1;
692 }
693}
694
Kan Liangd457c962015-08-11 06:30:47 -0400695static void
696perf_evsel__reset_callgraph(struct perf_evsel *evsel,
697 struct callchain_param *param)
698{
699 struct perf_event_attr *attr = &evsel->attr;
700
701 perf_evsel__reset_sample_bit(evsel, CALLCHAIN);
702 if (param->record_mode == CALLCHAIN_LBR) {
703 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
704 attr->branch_sample_type &= ~(PERF_SAMPLE_BRANCH_USER |
705 PERF_SAMPLE_BRANCH_CALL_STACK);
706 }
707 if (param->record_mode == CALLCHAIN_DWARF) {
708 perf_evsel__reset_sample_bit(evsel, REGS_USER);
709 perf_evsel__reset_sample_bit(evsel, STACK_USER);
710 }
711}
712
713static void apply_config_terms(struct perf_evsel *evsel,
714 struct record_opts *opts)
Jiri Olsa930a2e22015-07-29 05:42:10 -0400715{
716 struct perf_evsel_config_term *term;
Kan Liang32067712015-08-04 04:30:19 -0400717 struct list_head *config_terms = &evsel->config_terms;
718 struct perf_event_attr *attr = &evsel->attr;
Kan Liangd457c962015-08-11 06:30:47 -0400719 struct callchain_param param;
720 u32 dump_size = 0;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300721 int max_stack = 0;
722 const char *callgraph_buf = NULL;
Kan Liangd457c962015-08-11 06:30:47 -0400723
724 /* callgraph default */
725 param.record_mode = callchain_param.record_mode;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400726
727 list_for_each_entry(term, config_terms, list) {
728 switch (term->type) {
Jiri Olsaee4c7582015-07-29 05:42:11 -0400729 case PERF_EVSEL__CONFIG_TERM_PERIOD:
730 attr->sample_period = term->val.period;
Jiri Olsaab35a7d2015-08-08 19:12:10 +0200731 attr->freq = 0;
Kan Liang32067712015-08-04 04:30:19 -0400732 break;
Namhyung Kim09af2a52015-08-09 15:45:23 +0900733 case PERF_EVSEL__CONFIG_TERM_FREQ:
734 attr->sample_freq = term->val.freq;
735 attr->freq = 1;
736 break;
Kan Liang32067712015-08-04 04:30:19 -0400737 case PERF_EVSEL__CONFIG_TERM_TIME:
738 if (term->val.time)
739 perf_evsel__set_sample_bit(evsel, TIME);
740 else
741 perf_evsel__reset_sample_bit(evsel, TIME);
742 break;
Kan Liangd457c962015-08-11 06:30:47 -0400743 case PERF_EVSEL__CONFIG_TERM_CALLGRAPH:
744 callgraph_buf = term->val.callgraph;
745 break;
Andi Kleenac12f672016-10-12 14:02:06 -0700746 case PERF_EVSEL__CONFIG_TERM_BRANCH:
747 if (term->val.branch && strcmp(term->val.branch, "no")) {
748 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
749 parse_branch_str(term->val.branch,
750 &attr->branch_sample_type);
751 } else
752 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
753 break;
Kan Liangd457c962015-08-11 06:30:47 -0400754 case PERF_EVSEL__CONFIG_TERM_STACK_USER:
755 dump_size = term->val.stack_user;
756 break;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300757 case PERF_EVSEL__CONFIG_TERM_MAX_STACK:
758 max_stack = term->val.max_stack;
759 break;
Wang Nan374ce932015-10-28 10:55:02 +0000760 case PERF_EVSEL__CONFIG_TERM_INHERIT:
761 /*
762 * attr->inherit should has already been set by
763 * perf_evsel__config. If user explicitly set
764 * inherit using config terms, override global
765 * opt->no_inherit setting.
766 */
767 attr->inherit = term->val.inherit ? 1 : 0;
768 break;
Wang Nan626a6b72016-07-14 08:34:45 +0000769 case PERF_EVSEL__CONFIG_TERM_OVERWRITE:
770 attr->write_backward = term->val.overwrite ? 1 : 0;
771 break;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400772 default:
773 break;
774 }
775 }
Kan Liangd457c962015-08-11 06:30:47 -0400776
777 /* User explicitly set per-event callgraph, clear the old setting and reset. */
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300778 if ((callgraph_buf != NULL) || (dump_size > 0) || max_stack) {
779 if (max_stack) {
780 param.max_stack = max_stack;
781 if (callgraph_buf == NULL)
782 callgraph_buf = "fp";
783 }
Kan Liangd457c962015-08-11 06:30:47 -0400784
785 /* parse callgraph parameters */
786 if (callgraph_buf != NULL) {
Kan Liangf9db0d02015-08-11 06:30:48 -0400787 if (!strcmp(callgraph_buf, "no")) {
788 param.enabled = false;
789 param.record_mode = CALLCHAIN_NONE;
790 } else {
791 param.enabled = true;
792 if (parse_callchain_record(callgraph_buf, &param)) {
793 pr_err("per-event callgraph setting for %s failed. "
794 "Apply callgraph global setting for it\n",
795 evsel->name);
796 return;
797 }
Kan Liangd457c962015-08-11 06:30:47 -0400798 }
799 }
800 if (dump_size > 0) {
801 dump_size = round_up(dump_size, sizeof(u64));
802 param.dump_size = dump_size;
803 }
804
805 /* If global callgraph set, clear it */
806 if (callchain_param.enabled)
807 perf_evsel__reset_callgraph(evsel, &callchain_param);
808
809 /* set perf-event callgraph */
810 if (param.enabled)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300811 perf_evsel__config_callchain(evsel, opts, &param);
Kan Liangd457c962015-08-11 06:30:47 -0400812 }
Jiri Olsa930a2e22015-07-29 05:42:10 -0400813}
814
Jiri Olsa774cb492012-11-12 18:34:01 +0100815/*
816 * The enable_on_exec/disabled value strategy:
817 *
818 * 1) For any type of traced program:
819 * - all independent events and group leaders are disabled
820 * - all group members are enabled
821 *
822 * Group members are ruled by group leaders. They need to
823 * be enabled, because the group scheduling relies on that.
824 *
825 * 2) For traced programs executed by perf:
826 * - all independent events and group leaders have
827 * enable_on_exec set
828 * - we don't specifically enable or disable any event during
829 * the record command
830 *
831 * Independent events and group leaders are initially disabled
832 * and get enabled by exec. Group members are ruled by group
833 * leaders as stated in 1).
834 *
835 * 3) For traced programs attached by perf (pid/tid):
836 * - we specifically enable or disable all events during
837 * the record command
838 *
839 * When attaching events to already running traced we
840 * enable/disable events specifically, as there's no
841 * initial traced exec call.
842 */
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300843void perf_evsel__config(struct perf_evsel *evsel, struct record_opts *opts,
844 struct callchain_param *callchain)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200845{
Jiri Olsa3c176312012-10-10 17:39:03 +0200846 struct perf_evsel *leader = evsel->leader;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200847 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter60b08962014-07-31 09:00:52 +0300848 int track = evsel->tracking;
Adrian Hunter3aa59392013-11-15 15:52:29 +0200849 bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200850
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300851 attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200852 attr->inherit = !opts->no_inherit;
Wang Nan626a6b72016-07-14 08:34:45 +0000853 attr->write_backward = opts->overwrite ? 1 : 0;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200854
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300855 perf_evsel__set_sample_bit(evsel, IP);
856 perf_evsel__set_sample_bit(evsel, TID);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200857
Jiri Olsa3c176312012-10-10 17:39:03 +0200858 if (evsel->sample_read) {
859 perf_evsel__set_sample_bit(evsel, READ);
860
861 /*
862 * We need ID even in case of single event, because
863 * PERF_SAMPLE_READ process ID specific data.
864 */
Adrian Hunter75562572013-08-27 11:23:09 +0300865 perf_evsel__set_sample_id(evsel, false);
Jiri Olsa3c176312012-10-10 17:39:03 +0200866
867 /*
868 * Apply group format only if we belong to group
869 * with more than one members.
870 */
871 if (leader->nr_members > 1) {
872 attr->read_format |= PERF_FORMAT_GROUP;
873 attr->inherit = 0;
874 }
875 }
876
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200877 /*
Namhyung Kim17314e22014-06-09 14:43:37 +0900878 * We default some events to have a default interval. But keep
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200879 * it a weak assumption overridable by the user.
880 */
Namhyung Kim17314e22014-06-09 14:43:37 +0900881 if (!attr->sample_period || (opts->user_freq != UINT_MAX ||
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200882 opts->user_interval != ULLONG_MAX)) {
883 if (opts->freq) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300884 perf_evsel__set_sample_bit(evsel, PERIOD);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200885 attr->freq = 1;
886 attr->sample_freq = opts->freq;
887 } else {
888 attr->sample_period = opts->default_interval;
889 }
890 }
891
Jiri Olsa3c176312012-10-10 17:39:03 +0200892 /*
893 * Disable sampling for all group members other
894 * than leader in case leader 'leads' the sampling.
895 */
896 if ((leader != evsel) && leader->sample_read) {
897 attr->sample_freq = 0;
898 attr->sample_period = 0;
899 }
900
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200901 if (opts->no_samples)
902 attr->sample_freq = 0;
903
904 if (opts->inherit_stat)
905 attr->inherit_stat = 1;
906
907 if (opts->sample_address) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300908 perf_evsel__set_sample_bit(evsel, ADDR);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200909 attr->mmap_data = track;
910 }
911
Jiri Olsaf1403732014-11-13 18:21:03 +0100912 /*
913 * We don't allow user space callchains for function trace
914 * event, due to issues with page faults while tracing page
915 * fault handler and its overall trickiness nature.
916 */
917 if (perf_evsel__is_function_event(evsel))
918 evsel->attr.exclude_callchain_user = 1;
919
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300920 if (callchain && callchain->enabled && !evsel->no_aux_samples)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300921 perf_evsel__config_callchain(evsel, opts, callchain);
Jiri Olsa26d33022012-08-07 15:20:47 +0200922
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200923 if (opts->sample_intr_regs) {
Stephane Eranianbcc84ec2015-08-31 18:41:12 +0200924 attr->sample_regs_intr = opts->sample_intr_regs;
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200925 perf_evsel__set_sample_bit(evsel, REGS_INTR);
926 }
927
Jiri Olsab6f35ed2016-08-01 20:02:35 +0200928 if (target__has_cpu(&opts->target) || opts->sample_cpu)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300929 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200930
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300931 if (opts->period)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300932 perf_evsel__set_sample_bit(evsel, PERIOD);
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300933
Andi Kleen8affc2b2014-07-31 14:45:04 +0800934 /*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800935 * When the user explicitly disabled time don't force it here.
Andi Kleen8affc2b2014-07-31 14:45:04 +0800936 */
937 if (opts->sample_time &&
938 (!perf_missing_features.sample_id_all &&
Adrian Hunter3abebc52015-07-06 14:51:01 +0300939 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu ||
940 opts->sample_time_set)))
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300941 perf_evsel__set_sample_bit(evsel, TIME);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200942
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300943 if (opts->raw_samples && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300944 perf_evsel__set_sample_bit(evsel, TIME);
945 perf_evsel__set_sample_bit(evsel, RAW);
946 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200947 }
948
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100949 if (opts->sample_address)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200950 perf_evsel__set_sample_bit(evsel, DATA_SRC);
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100951
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -0300952 if (opts->no_buffering) {
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200953 attr->watermark = 0;
954 attr->wakeup_events = 1;
955 }
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300956 if (opts->branch_stack && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300957 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
Roberto Agostino Vitillobdfebd82012-02-09 23:21:02 +0100958 attr->branch_sample_type = opts->branch_stack;
959 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200960
Andi Kleen05484292013-01-24 16:10:29 +0100961 if (opts->sample_weight)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200962 perf_evsel__set_sample_bit(evsel, WEIGHT);
Andi Kleen05484292013-01-24 16:10:29 +0100963
Namhyung Kim62e503b2015-01-29 17:06:46 +0900964 attr->task = track;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200965 attr->mmap = track;
Don Zickusa5a5ba72014-05-30 10:49:42 -0400966 attr->mmap2 = track && !perf_missing_features.mmap2;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200967 attr->comm = track;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200968
Hari Bathinif3b36142017-03-08 02:11:43 +0530969 if (opts->record_namespaces)
970 attr->namespaces = track;
971
Adrian Hunterb757bb02015-07-21 12:44:04 +0300972 if (opts->record_switch_events)
973 attr->context_switch = track;
974
Andi Kleen475eeab2013-09-20 07:40:43 -0700975 if (opts->sample_transaction)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200976 perf_evsel__set_sample_bit(evsel, TRANSACTION);
Andi Kleen475eeab2013-09-20 07:40:43 -0700977
Andi Kleen85c273d2015-02-24 15:13:40 -0800978 if (opts->running_time) {
979 evsel->attr.read_format |=
980 PERF_FORMAT_TOTAL_TIME_ENABLED |
981 PERF_FORMAT_TOTAL_TIME_RUNNING;
982 }
983
Jiri Olsa774cb492012-11-12 18:34:01 +0100984 /*
985 * XXX see the function comment above
986 *
987 * Disabling only independent events or group leaders,
988 * keeping group members enabled.
989 */
Namhyung Kim823254e2012-11-29 15:38:30 +0900990 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa774cb492012-11-12 18:34:01 +0100991 attr->disabled = 1;
992
993 /*
994 * Setting enable_on_exec for independent events and
995 * group leaders for traced executed by perf.
996 */
Andi Kleen6619a532014-01-11 13:38:27 -0800997 if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) &&
998 !opts->initial_delay)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200999 attr->enable_on_exec = 1;
Adrian Hunter2afd2bc2014-07-14 13:02:57 +03001000
1001 if (evsel->immediate) {
1002 attr->disabled = 0;
1003 attr->enable_on_exec = 0;
1004 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001005
1006 clockid = opts->clockid;
1007 if (opts->use_clockid) {
1008 attr->use_clockid = 1;
1009 attr->clockid = opts->clockid;
1010 }
Jiri Olsa930a2e22015-07-29 05:42:10 -04001011
Jiri Olsa7f94af72015-10-05 20:06:05 +02001012 if (evsel->precise_max)
1013 perf_event_attr__set_max_precise_ip(attr);
1014
Jiri Olsa85723882016-02-15 09:34:31 +01001015 if (opts->all_user) {
1016 attr->exclude_kernel = 1;
1017 attr->exclude_user = 0;
1018 }
1019
1020 if (opts->all_kernel) {
1021 attr->exclude_kernel = 0;
1022 attr->exclude_user = 1;
1023 }
1024
Jiri Olsa930a2e22015-07-29 05:42:10 -04001025 /*
1026 * Apply event specific term settings,
1027 * it overloads any global configuration.
1028 */
Kan Liangd457c962015-08-11 06:30:47 -04001029 apply_config_terms(evsel, opts);
Jiri Olsaa359c172016-12-13 08:46:22 +01001030
1031 evsel->ignore_missing_thread = opts->ignore_missing_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001032}
1033
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001034static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001035{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001036 if (evsel->system_wide)
1037 nthreads = 1;
1038
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001039 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
David Ahern4af4c952011-05-27 09:58:34 -06001040
1041 if (evsel->fd) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001042 int cpu, thread;
David Ahern4af4c952011-05-27 09:58:34 -06001043 for (cpu = 0; cpu < ncpus; cpu++) {
1044 for (thread = 0; thread < nthreads; thread++) {
1045 FD(evsel, cpu, thread) = -1;
1046 }
1047 }
1048 }
1049
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001050 return evsel->fd != NULL ? 0 : -ENOMEM;
1051}
1052
Andi Kleene2407be2013-08-02 17:41:10 -07001053static int perf_evsel__run_ioctl(struct perf_evsel *evsel, int ncpus, int nthreads,
1054 int ioc, void *arg)
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001055{
1056 int cpu, thread;
1057
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001058 if (evsel->system_wide)
1059 nthreads = 1;
1060
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001061 for (cpu = 0; cpu < ncpus; cpu++) {
1062 for (thread = 0; thread < nthreads; thread++) {
1063 int fd = FD(evsel, cpu, thread),
Andi Kleene2407be2013-08-02 17:41:10 -07001064 err = ioctl(fd, ioc, arg);
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001065
1066 if (err)
1067 return err;
1068 }
1069 }
1070
1071 return 0;
1072}
1073
Arnaldo Carvalho de Melof47805a2015-07-03 15:53:49 -03001074int perf_evsel__apply_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
1075 const char *filter)
Andi Kleene2407be2013-08-02 17:41:10 -07001076{
1077 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1078 PERF_EVENT_IOC_SET_FILTER,
1079 (void *)filter);
1080}
1081
Arnaldo Carvalho de Melo12467ae2015-07-03 17:05:50 -03001082int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter)
1083{
1084 char *new_filter = strdup(filter);
1085
1086 if (new_filter != NULL) {
1087 free(evsel->filter);
1088 evsel->filter = new_filter;
1089 return 0;
1090 }
1091
1092 return -1;
1093}
1094
Mathieu Poirier3541c032016-09-16 08:44:04 -06001095static int perf_evsel__append_filter(struct perf_evsel *evsel,
1096 const char *fmt, const char *filter)
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001097{
1098 char *new_filter;
1099
1100 if (evsel->filter == NULL)
1101 return perf_evsel__set_filter(evsel, filter);
1102
Mathieu Poirierb15d0a42016-09-16 08:44:03 -06001103 if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001104 free(evsel->filter);
1105 evsel->filter = new_filter;
1106 return 0;
1107 }
1108
1109 return -1;
1110}
1111
Mathieu Poirier3541c032016-09-16 08:44:04 -06001112int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter)
1113{
1114 return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter);
1115}
1116
Mathieu Poirier1e857482016-09-16 08:44:05 -06001117int perf_evsel__append_addr_filter(struct perf_evsel *evsel, const char *filter)
1118{
1119 return perf_evsel__append_filter(evsel, "%s,%s", filter);
1120}
1121
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001122int perf_evsel__enable(struct perf_evsel *evsel)
Andi Kleene2407be2013-08-02 17:41:10 -07001123{
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001124 int nthreads = thread_map__nr(evsel->threads);
1125 int ncpus = cpu_map__nr(evsel->cpus);
1126
Andi Kleene2407be2013-08-02 17:41:10 -07001127 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1128 PERF_EVENT_IOC_ENABLE,
1129 0);
1130}
1131
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001132int perf_evsel__disable(struct perf_evsel *evsel)
1133{
1134 int nthreads = thread_map__nr(evsel->threads);
1135 int ncpus = cpu_map__nr(evsel->cpus);
1136
1137 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
1138 PERF_EVENT_IOC_DISABLE,
1139 0);
1140}
1141
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001142int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
1143{
Vineet Gupta8d9cbd82015-01-13 19:13:23 +05301144 if (ncpus == 0 || nthreads == 0)
1145 return 0;
1146
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001147 if (evsel->system_wide)
1148 nthreads = 1;
1149
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001150 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
1151 if (evsel->sample_id == NULL)
1152 return -ENOMEM;
1153
1154 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
1155 if (evsel->id == NULL) {
1156 xyarray__delete(evsel->sample_id);
1157 evsel->sample_id = NULL;
1158 return -ENOMEM;
1159 }
1160
1161 return 0;
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001162}
1163
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001164static void perf_evsel__free_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001165{
1166 xyarray__delete(evsel->fd);
1167 evsel->fd = NULL;
1168}
1169
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001170static void perf_evsel__free_id(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001171{
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001172 xyarray__delete(evsel->sample_id);
1173 evsel->sample_id = NULL;
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001174 zfree(&evsel->id);
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001175}
1176
Jiri Olsa930a2e22015-07-29 05:42:10 -04001177static void perf_evsel__free_config_terms(struct perf_evsel *evsel)
1178{
1179 struct perf_evsel_config_term *term, *h;
1180
1181 list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1182 list_del(&term->list);
1183 free(term);
1184 }
1185}
1186
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001187void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
1188{
1189 int cpu, thread;
1190
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001191 if (evsel->system_wide)
1192 nthreads = 1;
1193
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001194 for (cpu = 0; cpu < ncpus; cpu++)
1195 for (thread = 0; thread < nthreads; ++thread) {
1196 close(FD(evsel, cpu, thread));
1197 FD(evsel, cpu, thread) = -1;
1198 }
1199}
1200
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001201void perf_evsel__exit(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001202{
1203 assert(list_empty(&evsel->node));
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -04001204 assert(evsel->evlist == NULL);
Namhyung Kim736b05a2013-03-15 14:48:49 +09001205 perf_evsel__free_fd(evsel);
1206 perf_evsel__free_id(evsel);
Jiri Olsa930a2e22015-07-29 05:42:10 -04001207 perf_evsel__free_config_terms(evsel);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001208 close_cgroup(evsel->cgrp);
Jiri Olsaf30a79b2015-06-23 00:36:04 +02001209 cpu_map__put(evsel->cpus);
Adrian Hunterfce4d292015-09-08 10:58:55 +03001210 cpu_map__put(evsel->own_cpus);
Jiri Olsa578e91e2015-06-23 00:36:07 +02001211 thread_map__put(evsel->threads);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001212 zfree(&evsel->group_name);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001213 zfree(&evsel->name);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -03001214 perf_evsel__object.fini(evsel);
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001215}
1216
1217void perf_evsel__delete(struct perf_evsel *evsel)
1218{
1219 perf_evsel__exit(evsel);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001220 free(evsel);
1221}
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001222
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001223void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
Jiri Olsa857a94a2014-11-21 10:31:05 +01001224 struct perf_counts_values *count)
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001225{
1226 struct perf_counts_values tmp;
1227
1228 if (!evsel->prev_raw_counts)
1229 return;
1230
1231 if (cpu == -1) {
1232 tmp = evsel->prev_raw_counts->aggr;
1233 evsel->prev_raw_counts->aggr = *count;
1234 } else {
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001235 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1236 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001237 }
1238
1239 count->val = count->val - tmp.val;
1240 count->ena = count->ena - tmp.ena;
1241 count->run = count->run - tmp.run;
1242}
1243
Jiri Olsa13112bb2014-11-21 10:31:06 +01001244void perf_counts_values__scale(struct perf_counts_values *count,
1245 bool scale, s8 *pscaled)
1246{
1247 s8 scaled = 0;
1248
1249 if (scale) {
1250 if (count->run == 0) {
1251 scaled = -1;
1252 count->val = 0;
1253 } else if (count->run < count->ena) {
1254 scaled = 1;
1255 count->val = (u64)((double) count->val * count->ena / count->run + 0.5);
1256 }
1257 } else
1258 count->ena = count->run = 0;
1259
1260 if (pscaled)
1261 *pscaled = scaled;
1262}
1263
Jiri Olsade634032017-07-26 14:02:04 +02001264static int perf_evsel__read_size(struct perf_evsel *evsel)
1265{
1266 u64 read_format = evsel->attr.read_format;
1267 int entry = sizeof(u64); /* value */
1268 int size = 0;
1269 int nr = 1;
1270
1271 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1272 size += sizeof(u64);
1273
1274 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1275 size += sizeof(u64);
1276
1277 if (read_format & PERF_FORMAT_ID)
1278 entry += sizeof(u64);
1279
1280 if (read_format & PERF_FORMAT_GROUP) {
1281 nr = evsel->nr_members;
1282 size += sizeof(u64);
1283 }
1284
1285 size += entry * nr;
1286 return size;
1287}
1288
Jiri Olsaf99f47192015-06-26 11:29:18 +02001289int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
1290 struct perf_counts_values *count)
1291{
Jiri Olsade634032017-07-26 14:02:04 +02001292 size_t size = perf_evsel__read_size(evsel);
1293
Jiri Olsaf99f47192015-06-26 11:29:18 +02001294 memset(count, 0, sizeof(*count));
1295
1296 if (FD(evsel, cpu, thread) < 0)
1297 return -EINVAL;
1298
Jiri Olsade634032017-07-26 14:02:04 +02001299 if (readn(FD(evsel, cpu, thread), count->values, size) <= 0)
Jiri Olsaf99f47192015-06-26 11:29:18 +02001300 return -errno;
1301
1302 return 0;
1303}
1304
Jiri Olsaf7794d52017-07-26 14:02:05 +02001305static int
1306perf_evsel__read_one(struct perf_evsel *evsel, int cpu, int thread)
1307{
1308 struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread);
1309
1310 return perf_evsel__read(evsel, cpu, thread, count);
1311}
1312
1313static void
1314perf_evsel__set_count(struct perf_evsel *counter, int cpu, int thread,
1315 u64 val, u64 ena, u64 run)
1316{
1317 struct perf_counts_values *count;
1318
1319 count = perf_counts(counter->counts, cpu, thread);
1320
1321 count->val = val;
1322 count->ena = ena;
1323 count->run = run;
1324}
1325
1326static int
1327perf_evsel__process_group_data(struct perf_evsel *leader,
1328 int cpu, int thread, u64 *data)
1329{
1330 u64 read_format = leader->attr.read_format;
1331 struct sample_read_value *v;
1332 u64 nr, ena = 0, run = 0, i;
1333
1334 nr = *data++;
1335
1336 if (nr != (u64) leader->nr_members)
1337 return -EINVAL;
1338
1339 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1340 ena = *data++;
1341
1342 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1343 run = *data++;
1344
1345 v = (struct sample_read_value *) data;
1346
1347 perf_evsel__set_count(leader, cpu, thread,
1348 v[0].value, ena, run);
1349
1350 for (i = 1; i < nr; i++) {
1351 struct perf_evsel *counter;
1352
1353 counter = perf_evlist__id2evsel(leader->evlist, v[i].id);
1354 if (!counter)
1355 return -EINVAL;
1356
1357 perf_evsel__set_count(counter, cpu, thread,
1358 v[i].value, ena, run);
1359 }
1360
1361 return 0;
1362}
1363
1364static int
1365perf_evsel__read_group(struct perf_evsel *leader, int cpu, int thread)
1366{
1367 struct perf_stat_evsel *ps = leader->priv;
1368 u64 read_format = leader->attr.read_format;
1369 int size = perf_evsel__read_size(leader);
1370 u64 *data = ps->group_data;
1371
1372 if (!(read_format & PERF_FORMAT_ID))
1373 return -EINVAL;
1374
1375 if (!perf_evsel__is_group_leader(leader))
1376 return -EINVAL;
1377
1378 if (!data) {
1379 data = zalloc(size);
1380 if (!data)
1381 return -ENOMEM;
1382
1383 ps->group_data = data;
1384 }
1385
1386 if (FD(leader, cpu, thread) < 0)
1387 return -EINVAL;
1388
1389 if (readn(FD(leader, cpu, thread), data, size) <= 0)
1390 return -errno;
1391
1392 return perf_evsel__process_group_data(leader, cpu, thread, data);
1393}
1394
1395int perf_evsel__read_counter(struct perf_evsel *evsel, int cpu, int thread)
1396{
1397 u64 read_format = evsel->attr.read_format;
1398
1399 if (read_format & PERF_FORMAT_GROUP)
1400 return perf_evsel__read_group(evsel, cpu, thread);
1401 else
1402 return perf_evsel__read_one(evsel, cpu, thread);
1403}
1404
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001405int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
1406 int cpu, int thread, bool scale)
1407{
1408 struct perf_counts_values count;
1409 size_t nv = scale ? 3 : 1;
1410
1411 if (FD(evsel, cpu, thread) < 0)
1412 return -EINVAL;
1413
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001414 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001415 return -ENOMEM;
1416
Stephane Eraniandb49a712017-04-12 11:23:01 -07001417 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001418 return -errno;
1419
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001420 perf_evsel__compute_deltas(evsel, cpu, thread, &count);
Jiri Olsa13112bb2014-11-21 10:31:06 +01001421 perf_counts_values__scale(&count, scale, NULL);
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001422 *perf_counts(evsel->counts, cpu, thread) = count;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001423 return 0;
1424}
1425
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001426static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
1427{
1428 struct perf_evsel *leader = evsel->leader;
1429 int fd;
1430
Namhyung Kim823254e2012-11-29 15:38:30 +09001431 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001432 return -1;
1433
1434 /*
1435 * Leader must be already processed/open,
1436 * if not it's a bug.
1437 */
1438 BUG_ON(!leader->fd);
1439
1440 fd = FD(leader, cpu, thread);
1441 BUG_ON(fd == -1);
1442
1443 return fd;
1444}
1445
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001446struct bit_names {
1447 int bit;
1448 const char *name;
1449};
Adrian Huntere3e1a542013-08-14 15:48:24 +03001450
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001451static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001452{
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001453 bool first_bit = true;
1454 int i = 0;
Adrian Huntere3e1a542013-08-14 15:48:24 +03001455
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001456 do {
1457 if (value & bits[i].bit) {
1458 buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name);
1459 first_bit = false;
1460 }
1461 } while (bits[++i].name != NULL);
1462}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001463
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001464static void __p_sample_type(char *buf, size_t size, u64 value)
1465{
1466#define bit_name(n) { PERF_SAMPLE_##n, #n }
1467 struct bit_names bits[] = {
1468 bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR),
1469 bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU),
1470 bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW),
1471 bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER),
Jiri Olsa84422592015-10-05 20:06:02 +02001472 bit_name(IDENTIFIER), bit_name(REGS_INTR), bit_name(DATA_SRC),
Jiri Olsadcdd1842015-11-25 16:36:55 +01001473 bit_name(WEIGHT),
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001474 { .name = NULL, }
1475 };
1476#undef bit_name
1477 __p_bits(buf, size, value, bits);
1478}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001479
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001480static void __p_branch_sample_type(char *buf, size_t size, u64 value)
1481{
1482#define bit_name(n) { PERF_SAMPLE_BRANCH_##n, #n }
1483 struct bit_names bits[] = {
1484 bit_name(USER), bit_name(KERNEL), bit_name(HV), bit_name(ANY),
1485 bit_name(ANY_CALL), bit_name(ANY_RETURN), bit_name(IND_CALL),
1486 bit_name(ABORT_TX), bit_name(IN_TX), bit_name(NO_TX),
1487 bit_name(COND), bit_name(CALL_STACK), bit_name(IND_JUMP),
1488 bit_name(CALL), bit_name(NO_FLAGS), bit_name(NO_CYCLES),
1489 { .name = NULL, }
1490 };
1491#undef bit_name
1492 __p_bits(buf, size, value, bits);
1493}
1494
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001495static void __p_read_format(char *buf, size_t size, u64 value)
1496{
1497#define bit_name(n) { PERF_FORMAT_##n, #n }
1498 struct bit_names bits[] = {
1499 bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING),
1500 bit_name(ID), bit_name(GROUP),
1501 { .name = NULL, }
1502 };
1503#undef bit_name
1504 __p_bits(buf, size, value, bits);
1505}
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001506
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001507#define BUF_SIZE 1024
Adrian Huntere3e1a542013-08-14 15:48:24 +03001508
Adrian Hunter7310aed2015-06-11 15:51:04 +03001509#define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001510#define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
1511#define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
1512#define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001513#define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001514#define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001515
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001516#define PRINT_ATTRn(_n, _f, _p) \
1517do { \
1518 if (attr->_f) { \
1519 _p(attr->_f); \
1520 ret += attr__fprintf(fp, _n, buf, priv);\
1521 } \
1522} while (0)
1523
1524#define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p)
1525
1526int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
1527 attr__fprintf_f attr__fprintf, void *priv)
1528{
1529 char buf[BUF_SIZE];
1530 int ret = 0;
1531
1532 PRINT_ATTRf(type, p_unsigned);
1533 PRINT_ATTRf(size, p_unsigned);
1534 PRINT_ATTRf(config, p_hex);
1535 PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned);
1536 PRINT_ATTRf(sample_type, p_sample_type);
1537 PRINT_ATTRf(read_format, p_read_format);
1538
1539 PRINT_ATTRf(disabled, p_unsigned);
1540 PRINT_ATTRf(inherit, p_unsigned);
1541 PRINT_ATTRf(pinned, p_unsigned);
1542 PRINT_ATTRf(exclusive, p_unsigned);
1543 PRINT_ATTRf(exclude_user, p_unsigned);
1544 PRINT_ATTRf(exclude_kernel, p_unsigned);
1545 PRINT_ATTRf(exclude_hv, p_unsigned);
1546 PRINT_ATTRf(exclude_idle, p_unsigned);
1547 PRINT_ATTRf(mmap, p_unsigned);
1548 PRINT_ATTRf(comm, p_unsigned);
1549 PRINT_ATTRf(freq, p_unsigned);
1550 PRINT_ATTRf(inherit_stat, p_unsigned);
1551 PRINT_ATTRf(enable_on_exec, p_unsigned);
1552 PRINT_ATTRf(task, p_unsigned);
1553 PRINT_ATTRf(watermark, p_unsigned);
1554 PRINT_ATTRf(precise_ip, p_unsigned);
1555 PRINT_ATTRf(mmap_data, p_unsigned);
1556 PRINT_ATTRf(sample_id_all, p_unsigned);
1557 PRINT_ATTRf(exclude_host, p_unsigned);
1558 PRINT_ATTRf(exclude_guest, p_unsigned);
1559 PRINT_ATTRf(exclude_callchain_kernel, p_unsigned);
1560 PRINT_ATTRf(exclude_callchain_user, p_unsigned);
1561 PRINT_ATTRf(mmap2, p_unsigned);
1562 PRINT_ATTRf(comm_exec, p_unsigned);
1563 PRINT_ATTRf(use_clockid, p_unsigned);
Adrian Hunter02860392015-07-21 12:44:03 +03001564 PRINT_ATTRf(context_switch, p_unsigned);
Arnaldo Carvalho de Melo0a241ef2016-05-09 18:08:33 -03001565 PRINT_ATTRf(write_backward, p_unsigned);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001566
1567 PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned);
1568 PRINT_ATTRf(bp_type, p_unsigned);
1569 PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex);
1570 PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex);
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001571 PRINT_ATTRf(branch_sample_type, p_branch_sample_type);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001572 PRINT_ATTRf(sample_regs_user, p_hex);
1573 PRINT_ATTRf(sample_stack_user, p_unsigned);
1574 PRINT_ATTRf(clockid, p_signed);
1575 PRINT_ATTRf(sample_regs_intr, p_hex);
Adrian Hunter70d73de2015-04-09 18:54:06 +03001576 PRINT_ATTRf(aux_watermark, p_unsigned);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -03001577 PRINT_ATTRf(sample_max_stack, p_unsigned);
Adrian Huntere3e1a542013-08-14 15:48:24 +03001578
1579 return ret;
1580}
1581
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001582static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001583 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001584{
1585 return fprintf(fp, " %-32s %s\n", name, val);
1586}
1587
Jiri Olsaa359c172016-12-13 08:46:22 +01001588static bool ignore_missing_thread(struct perf_evsel *evsel,
1589 struct thread_map *threads,
1590 int thread, int err)
1591{
1592 if (!evsel->ignore_missing_thread)
1593 return false;
1594
1595 /* The system wide setup does not work with threads. */
1596 if (evsel->system_wide)
1597 return false;
1598
1599 /* The -ESRCH is perf event syscall errno for pid's not found. */
1600 if (err != -ESRCH)
1601 return false;
1602
1603 /* If there's only one thread, let it fail. */
1604 if (threads->nr == 1)
1605 return false;
1606
1607 if (thread_map__remove(threads, thread))
1608 return false;
1609
1610 pr_warning("WARNING: Ignored open failure for pid %d\n",
1611 thread_map__pid(threads, thread));
1612 return true;
1613}
1614
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001615int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
1616 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001617{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001618 int cpu, thread, nthreads;
Yann Droneaud57480d22014-06-30 22:28:47 +02001619 unsigned long flags = PERF_FLAG_FD_CLOEXEC;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001620 int pid = -1, err;
Andi Kleenbec19672013-08-04 19:41:26 -07001621 enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001622
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001623 if (perf_missing_features.write_backward && evsel->attr.write_backward)
1624 return -EINVAL;
1625
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001626 if (cpus == NULL) {
1627 static struct cpu_map *empty_cpu_map;
1628
1629 if (empty_cpu_map == NULL) {
1630 empty_cpu_map = cpu_map__dummy_new();
1631 if (empty_cpu_map == NULL)
1632 return -ENOMEM;
1633 }
1634
1635 cpus = empty_cpu_map;
1636 }
1637
1638 if (threads == NULL) {
1639 static struct thread_map *empty_thread_map;
1640
1641 if (empty_thread_map == NULL) {
1642 empty_thread_map = thread_map__new_by_tid(-1);
1643 if (empty_thread_map == NULL)
1644 return -ENOMEM;
1645 }
1646
1647 threads = empty_thread_map;
1648 }
1649
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001650 if (evsel->system_wide)
1651 nthreads = 1;
1652 else
1653 nthreads = threads->nr;
1654
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001655 if (evsel->fd == NULL &&
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001656 perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001657 return -ENOMEM;
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001658
Stephane Eranian023695d2011-02-14 11:20:01 +02001659 if (evsel->cgrp) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001660 flags |= PERF_FLAG_PID_CGROUP;
Stephane Eranian023695d2011-02-14 11:20:01 +02001661 pid = evsel->cgrp->fd;
1662 }
1663
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001664fallback_missing_features:
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001665 if (perf_missing_features.clockid_wrong)
1666 evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */
1667 if (perf_missing_features.clockid) {
1668 evsel->attr.use_clockid = 0;
1669 evsel->attr.clockid = 0;
1670 }
Yann Droneaud57480d22014-06-30 22:28:47 +02001671 if (perf_missing_features.cloexec)
1672 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001673 if (perf_missing_features.mmap2)
1674 evsel->attr.mmap2 = 0;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001675 if (perf_missing_features.exclude_guest)
1676 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001677 if (perf_missing_features.lbr_flags)
1678 evsel->attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1679 PERF_SAMPLE_BRANCH_NO_CYCLES);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001680retry_sample_id:
1681 if (perf_missing_features.sample_id_all)
1682 evsel->attr.sample_id_all = 0;
1683
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001684 if (verbose >= 2) {
1685 fprintf(stderr, "%.60s\n", graph_dotted_line);
1686 fprintf(stderr, "perf_event_attr:\n");
1687 perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL);
1688 fprintf(stderr, "%.60s\n", graph_dotted_line);
1689 }
Adrian Huntere3e1a542013-08-14 15:48:24 +03001690
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -02001691 for (cpu = 0; cpu < cpus->nr; cpu++) {
Arnaldo Carvalho de Melo9d04f172011-01-12 00:08:18 -02001692
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001693 for (thread = 0; thread < nthreads; thread++) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001694 int fd, group_fd;
Stephane Eranian023695d2011-02-14 11:20:01 +02001695
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001696 if (!evsel->cgrp && !evsel->system_wide)
Jiri Olsae13798c2015-06-23 00:36:02 +02001697 pid = thread_map__pid(threads, thread);
Stephane Eranian023695d2011-02-14 11:20:01 +02001698
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001699 group_fd = get_group_fd(evsel, cpu, thread);
Andi Kleenbec19672013-08-04 19:41:26 -07001700retry_open:
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001701 pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx",
Adrian Huntere3e1a542013-08-14 15:48:24 +03001702 pid, cpus->map[cpu], group_fd, flags);
1703
Jiri Olsa10213e22017-07-03 16:50:18 +02001704 test_attr__ready();
1705
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001706 fd = sys_perf_event_open(&evsel->attr, pid, cpus->map[cpu],
1707 group_fd, flags);
1708
1709 FD(evsel, cpu, thread) = fd;
1710
1711 if (fd < 0) {
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001712 err = -errno;
Jiri Olsaa359c172016-12-13 08:46:22 +01001713
1714 if (ignore_missing_thread(evsel, threads, thread, err)) {
1715 /*
1716 * We just removed 1 thread, so take a step
1717 * back on thread index and lower the upper
1718 * nthreads limit.
1719 */
1720 nthreads--;
1721 thread--;
1722
1723 /* ... and pretend like nothing have happened. */
1724 err = 0;
1725 continue;
1726 }
1727
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001728 pr_debug2("\nsys_perf_event_open failed, error %d\n",
Adrian Hunterf852fd62013-11-01 15:51:29 +02001729 err);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001730 goto try_fallback;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001731 }
Wang Nan1f45b1d2015-10-14 12:41:18 +00001732
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001733 pr_debug2(" = %d\n", fd);
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001734
Wang Nan1f45b1d2015-10-14 12:41:18 +00001735 if (evsel->bpf_fd >= 0) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001736 int evt_fd = fd;
Wang Nan1f45b1d2015-10-14 12:41:18 +00001737 int bpf_fd = evsel->bpf_fd;
1738
1739 err = ioctl(evt_fd,
1740 PERF_EVENT_IOC_SET_BPF,
1741 bpf_fd);
1742 if (err && errno != EEXIST) {
1743 pr_err("failed to attach bpf fd %d: %s\n",
1744 bpf_fd, strerror(errno));
1745 err = -EINVAL;
1746 goto out_close;
1747 }
1748 }
1749
Andi Kleenbec19672013-08-04 19:41:26 -07001750 set_rlimit = NO_CHANGE;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001751
1752 /*
1753 * If we succeeded but had to kill clockid, fail and
1754 * have perf_evsel__open_strerror() print us a nice
1755 * error.
1756 */
1757 if (perf_missing_features.clockid ||
1758 perf_missing_features.clockid_wrong) {
1759 err = -EINVAL;
1760 goto out_close;
1761 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001762 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001763 }
1764
1765 return 0;
1766
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001767try_fallback:
Andi Kleenbec19672013-08-04 19:41:26 -07001768 /*
1769 * perf stat needs between 5 and 22 fds per CPU. When we run out
1770 * of them try to increase the limits.
1771 */
1772 if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1773 struct rlimit l;
1774 int old_errno = errno;
1775
1776 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1777 if (set_rlimit == NO_CHANGE)
1778 l.rlim_cur = l.rlim_max;
1779 else {
1780 l.rlim_cur = l.rlim_max + 1000;
1781 l.rlim_max = l.rlim_cur;
1782 }
1783 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1784 set_rlimit++;
1785 errno = old_errno;
1786 goto retry_open;
1787 }
1788 }
1789 errno = old_errno;
1790 }
1791
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001792 if (err != -EINVAL || cpu > 0 || thread > 0)
1793 goto out_close;
1794
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001795 /*
1796 * Must probe features in the order they were added to the
1797 * perf_event_attr interface.
1798 */
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001799 if (!perf_missing_features.write_backward && evsel->attr.write_backward) {
1800 perf_missing_features.write_backward = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001801 pr_debug2("switching off write_backward\n");
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001802 goto out_close;
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001803 } else if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) {
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001804 perf_missing_features.clockid_wrong = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001805 pr_debug2("switching off clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001806 goto fallback_missing_features;
1807 } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) {
1808 perf_missing_features.clockid = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001809 pr_debug2("switching off use_clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001810 goto fallback_missing_features;
1811 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001812 perf_missing_features.cloexec = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001813 pr_debug2("switching off cloexec flag\n");
Yann Droneaud57480d22014-06-30 22:28:47 +02001814 goto fallback_missing_features;
1815 } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001816 perf_missing_features.mmap2 = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001817 pr_debug2("switching off mmap2\n");
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001818 goto fallback_missing_features;
1819 } else if (!perf_missing_features.exclude_guest &&
1820 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001821 perf_missing_features.exclude_guest = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001822 pr_debug2("switching off exclude_guest, exclude_host\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001823 goto fallback_missing_features;
1824 } else if (!perf_missing_features.sample_id_all) {
1825 perf_missing_features.sample_id_all = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001826 pr_debug2("switching off sample_id_all\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001827 goto retry_sample_id;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001828 } else if (!perf_missing_features.lbr_flags &&
1829 (evsel->attr.branch_sample_type &
1830 (PERF_SAMPLE_BRANCH_NO_CYCLES |
1831 PERF_SAMPLE_BRANCH_NO_FLAGS))) {
1832 perf_missing_features.lbr_flags = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001833 pr_debug2("switching off branch sample type no (cycles/flags)\n");
Andi Kleenbd0f8892015-12-11 16:12:24 -08001834 goto fallback_missing_features;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001835 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001836out_close:
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001837 do {
1838 while (--thread >= 0) {
1839 close(FD(evsel, cpu, thread));
1840 FD(evsel, cpu, thread) = -1;
1841 }
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001842 thread = nthreads;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001843 } while (--cpu >= 0);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001844 return err;
1845}
1846
1847void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads)
1848{
1849 if (evsel->fd == NULL)
1850 return;
1851
1852 perf_evsel__close_fd(evsel, ncpus, nthreads);
1853 perf_evsel__free_fd(evsel);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001854}
1855
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001856int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001857 struct cpu_map *cpus)
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001858{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001859 return perf_evsel__open(evsel, cpus, NULL);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001860}
1861
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001862int perf_evsel__open_per_thread(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001863 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001864{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001865 return perf_evsel__open(evsel, NULL, threads);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001866}
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -02001867
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001868static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
1869 const union perf_event *event,
1870 struct perf_sample *sample)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001871{
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001872 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001873 const u64 *array = event->sample.array;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001874 bool swapped = evsel->needs_swap;
Jiri Olsa37073f92012-05-30 14:23:44 +02001875 union u64_swap u;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001876
1877 array += ((event->header.size -
1878 sizeof(event->header)) / sizeof(u64)) - 1;
1879
Adrian Hunter75562572013-08-27 11:23:09 +03001880 if (type & PERF_SAMPLE_IDENTIFIER) {
1881 sample->id = *array;
1882 array--;
1883 }
1884
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001885 if (type & PERF_SAMPLE_CPU) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001886 u.val64 = *array;
1887 if (swapped) {
1888 /* undo swap of u64, then swap on individual u32s */
1889 u.val64 = bswap_64(u.val64);
1890 u.val32[0] = bswap_32(u.val32[0]);
1891 }
1892
1893 sample->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001894 array--;
1895 }
1896
1897 if (type & PERF_SAMPLE_STREAM_ID) {
1898 sample->stream_id = *array;
1899 array--;
1900 }
1901
1902 if (type & PERF_SAMPLE_ID) {
1903 sample->id = *array;
1904 array--;
1905 }
1906
1907 if (type & PERF_SAMPLE_TIME) {
1908 sample->time = *array;
1909 array--;
1910 }
1911
1912 if (type & PERF_SAMPLE_TID) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001913 u.val64 = *array;
1914 if (swapped) {
1915 /* undo swap of u64, then swap on individual u32s */
1916 u.val64 = bswap_64(u.val64);
1917 u.val32[0] = bswap_32(u.val32[0]);
1918 u.val32[1] = bswap_32(u.val32[1]);
1919 }
1920
1921 sample->pid = u.val32[0];
1922 sample->tid = u.val32[1];
Adrian Hunterdd44bc62013-10-18 15:29:01 +03001923 array--;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001924 }
1925
1926 return 0;
1927}
1928
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001929static inline bool overflow(const void *endp, u16 max_size, const void *offset,
1930 u64 size)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001931{
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001932 return size > max_size || offset + size > endp;
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02001933}
1934
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001935#define OVERFLOW_CHECK(offset, size, max_size) \
1936 do { \
1937 if (overflow(endp, (max_size), (offset), (size))) \
1938 return -EFAULT; \
1939 } while (0)
1940
1941#define OVERFLOW_CHECK_u64(offset) \
1942 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
1943
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001944int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001945 struct perf_sample *data)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001946{
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001947 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001948 bool swapped = evsel->needs_swap;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001949 const u64 *array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001950 u16 max_size = event->header.size;
1951 const void *endp = (void *)event + max_size;
1952 u64 sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001953
David Ahern936be502011-09-06 09:12:26 -06001954 /*
1955 * used for cross-endian analysis. See git commit 65014ab3
1956 * for why this goofiness is needed.
1957 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02001958 union u64_swap u;
David Ahern936be502011-09-06 09:12:26 -06001959
Robert Richterf3bda2c2011-12-15 17:32:39 +01001960 memset(data, 0, sizeof(*data));
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001961 data->cpu = data->pid = data->tid = -1;
1962 data->stream_id = data->id = data->time = -1ULL;
Jiri Olsabc529082014-02-03 12:44:41 +01001963 data->period = evsel->attr.sample_period;
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001964 data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001965
1966 if (event->header.type != PERF_RECORD_SAMPLE) {
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001967 if (!evsel->attr.sample_id_all)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001968 return 0;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001969 return perf_evsel__parse_id_sample(evsel, event, data);
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001970 }
1971
1972 array = event->sample.array;
1973
Adrian Hunter03b6ea92013-08-27 11:23:04 +03001974 /*
1975 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
1976 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
1977 * check the format does not go past the end of the event.
1978 */
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03001979 if (evsel->sample_size + sizeof(event->header) > event->header.size)
Frederic Weisbeckera2854122011-05-21 19:33:04 +02001980 return -EFAULT;
1981
Adrian Hunter75562572013-08-27 11:23:09 +03001982 data->id = -1ULL;
1983 if (type & PERF_SAMPLE_IDENTIFIER) {
1984 data->id = *array;
1985 array++;
1986 }
1987
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001988 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03001989 data->ip = *array;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001990 array++;
1991 }
1992
1993 if (type & PERF_SAMPLE_TID) {
David Ahern936be502011-09-06 09:12:26 -06001994 u.val64 = *array;
1995 if (swapped) {
1996 /* undo swap of u64, then swap on individual u32s */
1997 u.val64 = bswap_64(u.val64);
1998 u.val32[0] = bswap_32(u.val32[0]);
1999 u.val32[1] = bswap_32(u.val32[1]);
2000 }
2001
2002 data->pid = u.val32[0];
2003 data->tid = u.val32[1];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002004 array++;
2005 }
2006
2007 if (type & PERF_SAMPLE_TIME) {
2008 data->time = *array;
2009 array++;
2010 }
2011
David Ahern7cec0922011-05-30 13:08:23 -06002012 data->addr = 0;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002013 if (type & PERF_SAMPLE_ADDR) {
2014 data->addr = *array;
2015 array++;
2016 }
2017
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002018 if (type & PERF_SAMPLE_ID) {
2019 data->id = *array;
2020 array++;
2021 }
2022
2023 if (type & PERF_SAMPLE_STREAM_ID) {
2024 data->stream_id = *array;
2025 array++;
2026 }
2027
2028 if (type & PERF_SAMPLE_CPU) {
David Ahern936be502011-09-06 09:12:26 -06002029
2030 u.val64 = *array;
2031 if (swapped) {
2032 /* undo swap of u64, then swap on individual u32s */
2033 u.val64 = bswap_64(u.val64);
2034 u.val32[0] = bswap_32(u.val32[0]);
2035 }
2036
2037 data->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002038 array++;
2039 }
2040
2041 if (type & PERF_SAMPLE_PERIOD) {
2042 data->period = *array;
2043 array++;
2044 }
2045
2046 if (type & PERF_SAMPLE_READ) {
Jiri Olsa9ede4732012-10-10 17:38:13 +02002047 u64 read_format = evsel->attr.read_format;
2048
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002049 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002050 if (read_format & PERF_FORMAT_GROUP)
2051 data->read.group.nr = *array;
2052 else
2053 data->read.one.value = *array;
2054
2055 array++;
2056
2057 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002058 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002059 data->read.time_enabled = *array;
2060 array++;
2061 }
2062
2063 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002064 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002065 data->read.time_running = *array;
2066 array++;
2067 }
2068
2069 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2070 if (read_format & PERF_FORMAT_GROUP) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002071 const u64 max_group_nr = UINT64_MAX /
2072 sizeof(struct sample_read_value);
2073
2074 if (data->read.group.nr > max_group_nr)
2075 return -EFAULT;
2076 sz = data->read.group.nr *
2077 sizeof(struct sample_read_value);
2078 OVERFLOW_CHECK(array, sz, max_size);
2079 data->read.group.values =
2080 (struct sample_read_value *)array;
2081 array = (void *)array + sz;
Jiri Olsa9ede4732012-10-10 17:38:13 +02002082 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002083 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002084 data->read.one.id = *array;
2085 array++;
2086 }
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002087 }
2088
2089 if (type & PERF_SAMPLE_CALLCHAIN) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002090 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
2091
2092 OVERFLOW_CHECK_u64(array);
2093 data->callchain = (struct ip_callchain *)array++;
2094 if (data->callchain->nr > max_callchain_nr)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002095 return -EFAULT;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002096 sz = data->callchain->nr * sizeof(u64);
2097 OVERFLOW_CHECK(array, sz, max_size);
2098 array = (void *)array + sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002099 }
2100
2101 if (type & PERF_SAMPLE_RAW) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002102 OVERFLOW_CHECK_u64(array);
David Ahern936be502011-09-06 09:12:26 -06002103 u.val64 = *array;
2104 if (WARN_ONCE(swapped,
2105 "Endianness of raw data not corrected!\n")) {
2106 /* undo swap of u64, then swap on individual u32s */
2107 u.val64 = bswap_64(u.val64);
2108 u.val32[0] = bswap_32(u.val32[0]);
2109 u.val32[1] = bswap_32(u.val32[1]);
2110 }
David Ahern936be502011-09-06 09:12:26 -06002111 data->raw_size = u.val32[0];
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002112 array = (void *)array + sizeof(u32);
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002113
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002114 OVERFLOW_CHECK(array, data->raw_size, max_size);
2115 data->raw_data = (void *)array;
2116 array = (void *)array + data->raw_size;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002117 }
2118
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002119 if (type & PERF_SAMPLE_BRANCH_STACK) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002120 const u64 max_branch_nr = UINT64_MAX /
2121 sizeof(struct branch_entry);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002122
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002123 OVERFLOW_CHECK_u64(array);
2124 data->branch_stack = (struct branch_stack *)array++;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002125
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002126 if (data->branch_stack->nr > max_branch_nr)
2127 return -EFAULT;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002128 sz = data->branch_stack->nr * sizeof(struct branch_entry);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002129 OVERFLOW_CHECK(array, sz, max_size);
2130 array = (void *)array + sz;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002131 }
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002132
2133 if (type & PERF_SAMPLE_REGS_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002134 OVERFLOW_CHECK_u64(array);
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002135 data->user_regs.abi = *array;
2136 array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002137
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002138 if (data->user_regs.abi) {
Jiri Olsa352ea452014-01-07 13:47:25 +01002139 u64 mask = evsel->attr.sample_regs_user;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002140
Jiri Olsa352ea452014-01-07 13:47:25 +01002141 sz = hweight_long(mask) * sizeof(u64);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002142 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa352ea452014-01-07 13:47:25 +01002143 data->user_regs.mask = mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002144 data->user_regs.regs = (u64 *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002145 array = (void *)array + sz;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002146 }
2147 }
2148
2149 if (type & PERF_SAMPLE_STACK_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002150 OVERFLOW_CHECK_u64(array);
2151 sz = *array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002152
2153 data->user_stack.offset = ((char *)(array - 1)
2154 - (char *) event);
2155
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002156 if (!sz) {
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002157 data->user_stack.size = 0;
2158 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002159 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002160 data->user_stack.data = (char *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002161 array = (void *)array + sz;
2162 OVERFLOW_CHECK_u64(array);
Adrian Hunter54bd2692013-07-04 16:20:34 +03002163 data->user_stack.size = *array++;
Jiri Olsaa65cb4b2013-10-02 15:46:39 +02002164 if (WARN_ONCE(data->user_stack.size > sz,
2165 "user stack dump failure\n"))
2166 return -EFAULT;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002167 }
2168 }
2169
Andi Kleen05484292013-01-24 16:10:29 +01002170 if (type & PERF_SAMPLE_WEIGHT) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002171 OVERFLOW_CHECK_u64(array);
Andi Kleen05484292013-01-24 16:10:29 +01002172 data->weight = *array;
2173 array++;
2174 }
2175
Stephane Eranian98a3b322013-01-24 16:10:35 +01002176 data->data_src = PERF_MEM_DATA_SRC_NONE;
2177 if (type & PERF_SAMPLE_DATA_SRC) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002178 OVERFLOW_CHECK_u64(array);
Stephane Eranian98a3b322013-01-24 16:10:35 +01002179 data->data_src = *array;
2180 array++;
2181 }
2182
Andi Kleen475eeab2013-09-20 07:40:43 -07002183 data->transaction = 0;
2184 if (type & PERF_SAMPLE_TRANSACTION) {
Adrian Hunter87b95522013-11-01 15:51:36 +02002185 OVERFLOW_CHECK_u64(array);
Andi Kleen475eeab2013-09-20 07:40:43 -07002186 data->transaction = *array;
2187 array++;
2188 }
2189
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002190 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2191 if (type & PERF_SAMPLE_REGS_INTR) {
2192 OVERFLOW_CHECK_u64(array);
2193 data->intr_regs.abi = *array;
2194 array++;
2195
2196 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2197 u64 mask = evsel->attr.sample_regs_intr;
2198
2199 sz = hweight_long(mask) * sizeof(u64);
2200 OVERFLOW_CHECK(array, sz, max_size);
2201 data->intr_regs.mask = mask;
2202 data->intr_regs.regs = (u64 *)array;
2203 array = (void *)array + sz;
2204 }
2205 }
2206
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002207 return 0;
2208}
Andrew Vagin74eec262011-11-28 12:03:31 +03002209
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002210size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002211 u64 read_format)
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002212{
2213 size_t sz, result = sizeof(struct sample_event);
2214
2215 if (type & PERF_SAMPLE_IDENTIFIER)
2216 result += sizeof(u64);
2217
2218 if (type & PERF_SAMPLE_IP)
2219 result += sizeof(u64);
2220
2221 if (type & PERF_SAMPLE_TID)
2222 result += sizeof(u64);
2223
2224 if (type & PERF_SAMPLE_TIME)
2225 result += sizeof(u64);
2226
2227 if (type & PERF_SAMPLE_ADDR)
2228 result += sizeof(u64);
2229
2230 if (type & PERF_SAMPLE_ID)
2231 result += sizeof(u64);
2232
2233 if (type & PERF_SAMPLE_STREAM_ID)
2234 result += sizeof(u64);
2235
2236 if (type & PERF_SAMPLE_CPU)
2237 result += sizeof(u64);
2238
2239 if (type & PERF_SAMPLE_PERIOD)
2240 result += sizeof(u64);
2241
2242 if (type & PERF_SAMPLE_READ) {
2243 result += sizeof(u64);
2244 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2245 result += sizeof(u64);
2246 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2247 result += sizeof(u64);
2248 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2249 if (read_format & PERF_FORMAT_GROUP) {
2250 sz = sample->read.group.nr *
2251 sizeof(struct sample_read_value);
2252 result += sz;
2253 } else {
2254 result += sizeof(u64);
2255 }
2256 }
2257
2258 if (type & PERF_SAMPLE_CALLCHAIN) {
2259 sz = (sample->callchain->nr + 1) * sizeof(u64);
2260 result += sz;
2261 }
2262
2263 if (type & PERF_SAMPLE_RAW) {
2264 result += sizeof(u32);
2265 result += sample->raw_size;
2266 }
2267
2268 if (type & PERF_SAMPLE_BRANCH_STACK) {
2269 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2270 sz += sizeof(u64);
2271 result += sz;
2272 }
2273
2274 if (type & PERF_SAMPLE_REGS_USER) {
2275 if (sample->user_regs.abi) {
2276 result += sizeof(u64);
Jiri Olsa352ea452014-01-07 13:47:25 +01002277 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002278 result += sz;
2279 } else {
2280 result += sizeof(u64);
2281 }
2282 }
2283
2284 if (type & PERF_SAMPLE_STACK_USER) {
2285 sz = sample->user_stack.size;
2286 result += sizeof(u64);
2287 if (sz) {
2288 result += sz;
2289 result += sizeof(u64);
2290 }
2291 }
2292
2293 if (type & PERF_SAMPLE_WEIGHT)
2294 result += sizeof(u64);
2295
2296 if (type & PERF_SAMPLE_DATA_SRC)
2297 result += sizeof(u64);
2298
Adrian Hunter42d88912013-11-01 15:51:38 +02002299 if (type & PERF_SAMPLE_TRANSACTION)
2300 result += sizeof(u64);
2301
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002302 if (type & PERF_SAMPLE_REGS_INTR) {
2303 if (sample->intr_regs.abi) {
2304 result += sizeof(u64);
2305 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2306 result += sz;
2307 } else {
2308 result += sizeof(u64);
2309 }
2310 }
2311
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002312 return result;
2313}
2314
Andrew Vagin74eec262011-11-28 12:03:31 +03002315int perf_event__synthesize_sample(union perf_event *event, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002316 u64 read_format,
Andrew Vagin74eec262011-11-28 12:03:31 +03002317 const struct perf_sample *sample,
2318 bool swapped)
2319{
2320 u64 *array;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002321 size_t sz;
Andrew Vagin74eec262011-11-28 12:03:31 +03002322 /*
2323 * used for cross-endian analysis. See git commit 65014ab3
2324 * for why this goofiness is needed.
2325 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002326 union u64_swap u;
Andrew Vagin74eec262011-11-28 12:03:31 +03002327
2328 array = event->sample.array;
2329
Adrian Hunter75562572013-08-27 11:23:09 +03002330 if (type & PERF_SAMPLE_IDENTIFIER) {
2331 *array = sample->id;
2332 array++;
2333 }
2334
Andrew Vagin74eec262011-11-28 12:03:31 +03002335 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002336 *array = sample->ip;
Andrew Vagin74eec262011-11-28 12:03:31 +03002337 array++;
2338 }
2339
2340 if (type & PERF_SAMPLE_TID) {
2341 u.val32[0] = sample->pid;
2342 u.val32[1] = sample->tid;
2343 if (swapped) {
2344 /*
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002345 * Inverse of what is done in perf_evsel__parse_sample
Andrew Vagin74eec262011-11-28 12:03:31 +03002346 */
2347 u.val32[0] = bswap_32(u.val32[0]);
2348 u.val32[1] = bswap_32(u.val32[1]);
2349 u.val64 = bswap_64(u.val64);
2350 }
2351
2352 *array = u.val64;
2353 array++;
2354 }
2355
2356 if (type & PERF_SAMPLE_TIME) {
2357 *array = sample->time;
2358 array++;
2359 }
2360
2361 if (type & PERF_SAMPLE_ADDR) {
2362 *array = sample->addr;
2363 array++;
2364 }
2365
2366 if (type & PERF_SAMPLE_ID) {
2367 *array = sample->id;
2368 array++;
2369 }
2370
2371 if (type & PERF_SAMPLE_STREAM_ID) {
2372 *array = sample->stream_id;
2373 array++;
2374 }
2375
2376 if (type & PERF_SAMPLE_CPU) {
2377 u.val32[0] = sample->cpu;
2378 if (swapped) {
2379 /*
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002380 * Inverse of what is done in perf_evsel__parse_sample
Andrew Vagin74eec262011-11-28 12:03:31 +03002381 */
2382 u.val32[0] = bswap_32(u.val32[0]);
2383 u.val64 = bswap_64(u.val64);
2384 }
2385 *array = u.val64;
2386 array++;
2387 }
2388
2389 if (type & PERF_SAMPLE_PERIOD) {
2390 *array = sample->period;
2391 array++;
2392 }
2393
Adrian Hunterd03f2172013-08-27 11:23:11 +03002394 if (type & PERF_SAMPLE_READ) {
2395 if (read_format & PERF_FORMAT_GROUP)
2396 *array = sample->read.group.nr;
2397 else
2398 *array = sample->read.one.value;
2399 array++;
2400
2401 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2402 *array = sample->read.time_enabled;
2403 array++;
2404 }
2405
2406 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2407 *array = sample->read.time_running;
2408 array++;
2409 }
2410
2411 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2412 if (read_format & PERF_FORMAT_GROUP) {
2413 sz = sample->read.group.nr *
2414 sizeof(struct sample_read_value);
2415 memcpy(array, sample->read.group.values, sz);
2416 array = (void *)array + sz;
2417 } else {
2418 *array = sample->read.one.id;
2419 array++;
2420 }
2421 }
2422
2423 if (type & PERF_SAMPLE_CALLCHAIN) {
2424 sz = (sample->callchain->nr + 1) * sizeof(u64);
2425 memcpy(array, sample->callchain, sz);
2426 array = (void *)array + sz;
2427 }
2428
2429 if (type & PERF_SAMPLE_RAW) {
2430 u.val32[0] = sample->raw_size;
2431 if (WARN_ONCE(swapped,
2432 "Endianness of raw data not corrected!\n")) {
2433 /*
2434 * Inverse of what is done in perf_evsel__parse_sample
2435 */
2436 u.val32[0] = bswap_32(u.val32[0]);
2437 u.val32[1] = bswap_32(u.val32[1]);
2438 u.val64 = bswap_64(u.val64);
2439 }
2440 *array = u.val64;
2441 array = (void *)array + sizeof(u32);
2442
2443 memcpy(array, sample->raw_data, sample->raw_size);
2444 array = (void *)array + sample->raw_size;
2445 }
2446
2447 if (type & PERF_SAMPLE_BRANCH_STACK) {
2448 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2449 sz += sizeof(u64);
2450 memcpy(array, sample->branch_stack, sz);
2451 array = (void *)array + sz;
2452 }
2453
2454 if (type & PERF_SAMPLE_REGS_USER) {
2455 if (sample->user_regs.abi) {
2456 *array++ = sample->user_regs.abi;
Jiri Olsa352ea452014-01-07 13:47:25 +01002457 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterd03f2172013-08-27 11:23:11 +03002458 memcpy(array, sample->user_regs.regs, sz);
2459 array = (void *)array + sz;
2460 } else {
2461 *array++ = 0;
2462 }
2463 }
2464
2465 if (type & PERF_SAMPLE_STACK_USER) {
2466 sz = sample->user_stack.size;
2467 *array++ = sz;
2468 if (sz) {
2469 memcpy(array, sample->user_stack.data, sz);
2470 array = (void *)array + sz;
2471 *array++ = sz;
2472 }
2473 }
2474
2475 if (type & PERF_SAMPLE_WEIGHT) {
2476 *array = sample->weight;
2477 array++;
2478 }
2479
2480 if (type & PERF_SAMPLE_DATA_SRC) {
2481 *array = sample->data_src;
2482 array++;
2483 }
2484
Adrian Hunter42d88912013-11-01 15:51:38 +02002485 if (type & PERF_SAMPLE_TRANSACTION) {
2486 *array = sample->transaction;
2487 array++;
2488 }
2489
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002490 if (type & PERF_SAMPLE_REGS_INTR) {
2491 if (sample->intr_regs.abi) {
2492 *array++ = sample->intr_regs.abi;
2493 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2494 memcpy(array, sample->intr_regs.regs, sz);
2495 array = (void *)array + sz;
2496 } else {
2497 *array++ = 0;
2498 }
2499 }
2500
Andrew Vagin74eec262011-11-28 12:03:31 +03002501 return 0;
2502}
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002503
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002504struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
2505{
2506 return pevent_find_field(evsel->tp_format, name);
2507}
2508
Arnaldo Carvalho de Melo5d2074e2012-09-26 20:22:00 -03002509void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002510 const char *name)
2511{
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002512 struct format_field *field = perf_evsel__field(evsel, name);
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002513 int offset;
2514
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002515 if (!field)
2516 return NULL;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002517
2518 offset = field->offset;
2519
2520 if (field->flags & FIELD_IS_DYNAMIC) {
2521 offset = *(int *)(sample->raw_data + field->offset);
2522 offset &= 0xffff;
2523 }
2524
2525 return sample->raw_data + offset;
2526}
2527
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002528u64 format_field__intval(struct format_field *field, struct perf_sample *sample,
2529 bool needs_swap)
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002530{
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002531 u64 value;
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002532 void *ptr = sample->raw_data + field->offset;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002533
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002534 switch (field->size) {
2535 case 1:
2536 return *(u8 *)ptr;
2537 case 2:
2538 value = *(u16 *)ptr;
2539 break;
2540 case 4:
2541 value = *(u32 *)ptr;
2542 break;
2543 case 8:
David Aherne94eeda2015-03-24 16:14:09 -04002544 memcpy(&value, ptr, sizeof(u64));
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002545 break;
2546 default:
2547 return 0;
2548 }
2549
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002550 if (!needs_swap)
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002551 return value;
2552
2553 switch (field->size) {
2554 case 2:
2555 return bswap_16(value);
2556 case 4:
2557 return bswap_32(value);
2558 case 8:
2559 return bswap_64(value);
2560 default:
2561 return 0;
2562 }
2563
2564 return 0;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002565}
Arnaldo Carvalho de Melo0698aed2012-12-10 18:17:08 -03002566
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002567u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
2568 const char *name)
2569{
2570 struct format_field *field = perf_evsel__field(evsel, name);
2571
2572 if (!field)
2573 return 0;
2574
2575 return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2576}
2577
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002578bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
2579 char *msg, size_t msgsize)
2580{
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002581 int paranoid;
2582
David Ahern2b821cc2013-07-18 17:27:59 -06002583 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002584 evsel->attr.type == PERF_TYPE_HARDWARE &&
2585 evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2586 /*
2587 * If it's cycles then fall back to hrtimer based
2588 * cpu-clock-tick sw counter, which is always available even if
2589 * no PMU support.
2590 *
2591 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2592 * b0a873e).
2593 */
2594 scnprintf(msg, msgsize, "%s",
2595"The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2596
2597 evsel->attr.type = PERF_TYPE_SOFTWARE;
2598 evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK;
2599
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03002600 zfree(&evsel->name);
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002601 return true;
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002602 } else if (err == EACCES && !evsel->attr.exclude_kernel &&
2603 (paranoid = perf_event_paranoid()) > 1) {
2604 const char *name = perf_evsel__name(evsel);
2605 char *new_name;
2606
2607 if (asprintf(&new_name, "%s%su", name, strchr(name, ':') ? "" : ":") < 0)
2608 return false;
2609
2610 if (evsel->name)
2611 free(evsel->name);
2612 evsel->name = new_name;
2613 scnprintf(msg, msgsize,
2614"kernel.perf_event_paranoid=%d, trying to fall back to excluding kernel samples", paranoid);
2615 evsel->attr.exclude_kernel = 1;
2616
2617 return true;
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002618 }
2619
2620 return false;
2621}
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002622
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -03002623static bool find_process(const char *name)
2624{
2625 size_t len = strlen(name);
2626 DIR *dir;
2627 struct dirent *d;
2628 int ret = -1;
2629
2630 dir = opendir(procfs__mountpoint());
2631 if (!dir)
2632 return false;
2633
2634 /* Walk through the directory. */
2635 while (ret && (d = readdir(dir)) != NULL) {
2636 char path[PATH_MAX];
2637 char *data;
2638 size_t size;
2639
2640 if ((d->d_type != DT_DIR) ||
2641 !strcmp(".", d->d_name) ||
2642 !strcmp("..", d->d_name))
2643 continue;
2644
2645 scnprintf(path, sizeof(path), "%s/%s/comm",
2646 procfs__mountpoint(), d->d_name);
2647
2648 if (filename__read_str(path, &data, &size))
2649 continue;
2650
2651 ret = strncmp(name, data, len);
2652 free(data);
2653 }
2654
2655 closedir(dir);
2656 return ret ? false : true;
2657}
2658
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002659int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002660 int err, char *msg, size_t size)
2661{
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002662 char sbuf[STRERR_BUFSIZE];
Jin Yao32ccb132017-04-07 20:08:52 +08002663 int printed = 0;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002664
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002665 switch (err) {
2666 case EPERM:
2667 case EACCES:
Jin Yao32ccb132017-04-07 20:08:52 +08002668 if (err == EPERM)
2669 printed = scnprintf(msg, size,
2670 "No permission to enable %s event.\n\n",
2671 perf_evsel__name(evsel));
2672
2673 return scnprintf(msg + printed, size - printed,
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002674 "You may not have permission to collect %sstats.\n\n"
2675 "Consider tweaking /proc/sys/kernel/perf_event_paranoid,\n"
2676 "which controls use of the performance events system by\n"
2677 "unprivileged users (without CAP_SYS_ADMIN).\n\n"
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002678 "The current value is %d:\n\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002679 " -1: Allow use of (almost) all events by all users\n"
2680 ">= 0: Disallow raw tracepoint access by users without CAP_IOC_LOCK\n"
2681 ">= 1: Disallow CPU event access by users without CAP_SYS_ADMIN\n"
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -03002682 ">= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN\n\n"
2683 "To make this setting permanent, edit /etc/sysctl.conf too, e.g.:\n\n"
2684 " kernel.perf_event_paranoid = -1\n" ,
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002685 target->system_wide ? "system-wide " : "",
2686 perf_event_paranoid());
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002687 case ENOENT:
2688 return scnprintf(msg, size, "The %s event is not supported.",
2689 perf_evsel__name(evsel));
2690 case EMFILE:
2691 return scnprintf(msg, size, "%s",
2692 "Too many events are opened.\n"
Jiri Olsa18ffdfe2015-05-25 22:51:54 +02002693 "Probably the maximum number of open file descriptors has been reached.\n"
2694 "Hint: Try again after reducing the number of events.\n"
2695 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
Arnaldo Carvalho de Melode46d522016-04-27 17:51:45 -03002696 case ENOMEM:
2697 if ((evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0 &&
2698 access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2699 return scnprintf(msg, size,
2700 "Not enough memory to setup event with callchain.\n"
2701 "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2702 "Hint: Current value: %d", sysctl_perf_event_max_stack);
2703 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002704 case ENODEV:
2705 if (target->cpu_list)
2706 return scnprintf(msg, size, "%s",
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002707 "No such device - did you specify an out-of-range profile CPU?");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002708 break;
2709 case EOPNOTSUPP:
Vineet Guptadc89e752016-05-09 15:07:39 +05302710 if (evsel->attr.sample_period != 0)
2711 return scnprintf(msg, size, "%s",
2712 "PMU Hardware doesn't support sampling/overflow-interrupts.");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002713 if (evsel->attr.precise_ip)
2714 return scnprintf(msg, size, "%s",
2715 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2716#if defined(__i386__) || defined(__x86_64__)
2717 if (evsel->attr.type == PERF_TYPE_HARDWARE)
2718 return scnprintf(msg, size, "%s",
2719 "No hardware sampling interrupt available.\n"
2720 "No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.");
2721#endif
2722 break;
Jiri Olsa63914ac2014-08-01 17:46:54 +02002723 case EBUSY:
2724 if (find_process("oprofiled"))
2725 return scnprintf(msg, size,
2726 "The PMU counters are busy/taken by another profiler.\n"
2727 "We found oprofile daemon running, please stop it and try again.");
2728 break;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002729 case EINVAL:
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00002730 if (evsel->attr.write_backward && perf_missing_features.write_backward)
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00002731 return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002732 if (perf_missing_features.clockid)
2733 return scnprintf(msg, size, "clockid feature not supported.");
2734 if (perf_missing_features.clockid_wrong)
2735 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2736 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002737 default:
2738 break;
2739 }
2740
2741 return scnprintf(msg, size,
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002742 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002743 "/bin/dmesg may provide additional information.\n"
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002744 "No CONFIG_PERF_EVENTS=y kernel support configured?",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03002745 err, str_error_r(err, sbuf, sizeof(sbuf)),
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002746 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002747}
Ravi Bangoriaf4e47f92016-06-30 11:44:19 +05302748
2749char *perf_evsel__env_arch(struct perf_evsel *evsel)
2750{
2751 if (evsel && evsel->evlist && evsel->evlist->env)
2752 return evsel->evlist->env->arch;
2753 return NULL;
2754}
Jin Yao69fb09f2017-07-07 13:06:34 +08002755
2756char *perf_evsel__env_cpuid(struct perf_evsel *evsel)
2757{
2758 if (evsel && evsel->evlist && evsel->evlist->env)
2759 return evsel->evlist->env->cpuid;
2760 return NULL;
2761}