blob: f2f2eaafde6d7db13d45fc84000c7636aba932e2 [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"
Jiri Olsaf9d8adb2017-11-29 19:43:46 +010039#include "memswap.h"
Andi Kleenac12f672016-10-12 14:02:06 -070040#include "util/parse-branch-options.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020041
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030042#include "sane_ctype.h"
43
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030044static struct {
45 bool sample_id_all;
46 bool exclude_guest;
Stephane Eranian5c5e8542013-08-21 12:10:25 +020047 bool mmap2;
Yann Droneaud57480d22014-06-30 22:28:47 +020048 bool cloexec;
Peter Zijlstra814c8c32015-03-31 00:19:31 +020049 bool clockid;
50 bool clockid_wrong;
Andi Kleenbd0f8892015-12-11 16:12:24 -080051 bool lbr_flags;
Wang Nanb90dc172016-05-20 16:38:23 +000052 bool write_backward;
Jiri Olsa82bf3112017-07-26 14:02:06 +020053 bool group_read;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -030054} perf_missing_features;
55
Peter Zijlstra814c8c32015-03-31 00:19:31 +020056static clockid_t clockid;
57
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030058static int perf_evsel__no_extra_init(struct perf_evsel *evsel __maybe_unused)
59{
60 return 0;
61}
62
Jiri Olsa10213e22017-07-03 16:50:18 +020063void __weak test_attr__ready(void) { }
64
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -030065static void perf_evsel__no_extra_fini(struct perf_evsel *evsel __maybe_unused)
66{
67}
68
69static struct {
70 size_t size;
71 int (*init)(struct perf_evsel *evsel);
72 void (*fini)(struct perf_evsel *evsel);
73} perf_evsel__object = {
74 .size = sizeof(struct perf_evsel),
75 .init = perf_evsel__no_extra_init,
76 .fini = perf_evsel__no_extra_fini,
77};
78
79int perf_evsel__object_config(size_t object_size,
80 int (*init)(struct perf_evsel *evsel),
81 void (*fini)(struct perf_evsel *evsel))
82{
83
84 if (object_size == 0)
85 goto set_methods;
86
87 if (perf_evsel__object.size > object_size)
88 return -EINVAL;
89
90 perf_evsel__object.size = object_size;
91
92set_methods:
93 if (init != NULL)
94 perf_evsel__object.init = init;
95
96 if (fini != NULL)
97 perf_evsel__object.fini = fini;
98
99 return 0;
100}
101
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200102#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
103
Adrian Hunter75562572013-08-27 11:23:09 +0300104int __perf_evsel__sample_size(u64 sample_type)
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300105{
106 u64 mask = sample_type & PERF_SAMPLE_MASK;
107 int size = 0;
108 int i;
109
110 for (i = 0; i < 64; i++) {
111 if (mask & (1ULL << i))
112 size++;
113 }
114
115 size *= sizeof(u64);
116
117 return size;
118}
119
Adrian Hunter75562572013-08-27 11:23:09 +0300120/**
121 * __perf_evsel__calc_id_pos - calculate id_pos.
122 * @sample_type: sample type
123 *
124 * This function returns the position of the event id (PERF_SAMPLE_ID or
125 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct
126 * sample_event.
127 */
128static int __perf_evsel__calc_id_pos(u64 sample_type)
129{
130 int idx = 0;
131
132 if (sample_type & PERF_SAMPLE_IDENTIFIER)
133 return 0;
134
135 if (!(sample_type & PERF_SAMPLE_ID))
136 return -1;
137
138 if (sample_type & PERF_SAMPLE_IP)
139 idx += 1;
140
141 if (sample_type & PERF_SAMPLE_TID)
142 idx += 1;
143
144 if (sample_type & PERF_SAMPLE_TIME)
145 idx += 1;
146
147 if (sample_type & PERF_SAMPLE_ADDR)
148 idx += 1;
149
150 return idx;
151}
152
153/**
154 * __perf_evsel__calc_is_pos - calculate is_pos.
155 * @sample_type: sample type
156 *
157 * This function returns the position (counting backwards) of the event id
158 * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if
159 * sample_id_all is used there is an id sample appended to non-sample events.
160 */
161static int __perf_evsel__calc_is_pos(u64 sample_type)
162{
163 int idx = 1;
164
165 if (sample_type & PERF_SAMPLE_IDENTIFIER)
166 return 1;
167
168 if (!(sample_type & PERF_SAMPLE_ID))
169 return -1;
170
171 if (sample_type & PERF_SAMPLE_CPU)
172 idx += 1;
173
174 if (sample_type & PERF_SAMPLE_STREAM_ID)
175 idx += 1;
176
177 return idx;
178}
179
180void perf_evsel__calc_id_pos(struct perf_evsel *evsel)
181{
182 evsel->id_pos = __perf_evsel__calc_id_pos(evsel->attr.sample_type);
183 evsel->is_pos = __perf_evsel__calc_is_pos(evsel->attr.sample_type);
184}
185
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300186void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
187 enum perf_event_sample_format bit)
188{
189 if (!(evsel->attr.sample_type & bit)) {
190 evsel->attr.sample_type |= bit;
191 evsel->sample_size += sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300192 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300193 }
194}
195
196void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
197 enum perf_event_sample_format bit)
198{
199 if (evsel->attr.sample_type & bit) {
200 evsel->attr.sample_type &= ~bit;
201 evsel->sample_size -= sizeof(u64);
Adrian Hunter75562572013-08-27 11:23:09 +0300202 perf_evsel__calc_id_pos(evsel);
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300203 }
204}
205
Adrian Hunter75562572013-08-27 11:23:09 +0300206void perf_evsel__set_sample_id(struct perf_evsel *evsel,
207 bool can_sample_identifier)
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300208{
Adrian Hunter75562572013-08-27 11:23:09 +0300209 if (can_sample_identifier) {
210 perf_evsel__reset_sample_bit(evsel, ID);
211 perf_evsel__set_sample_bit(evsel, IDENTIFIER);
212 } else {
213 perf_evsel__set_sample_bit(evsel, ID);
214 }
Arnaldo Carvalho de Melo7a5a5ca2012-12-10 15:21:30 -0300215 evsel->attr.read_format |= PERF_FORMAT_ID;
216}
217
Arnaldo Carvalho de Melo5496bc02016-07-07 11:51:47 -0300218/**
219 * perf_evsel__is_function_event - Return whether given evsel is a function
220 * trace event
221 *
222 * @evsel - evsel selector to be tested
223 *
224 * Return %true if event is function trace event
225 */
226bool perf_evsel__is_function_event(struct perf_evsel *evsel)
227{
228#define FUNCTION_EVENT "ftrace:function"
229
230 return evsel->name &&
231 !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
232
233#undef FUNCTION_EVENT
234}
235
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200236void perf_evsel__init(struct perf_evsel *evsel,
237 struct perf_event_attr *attr, int idx)
238{
239 evsel->idx = idx;
Adrian Hunter60b08962014-07-31 09:00:52 +0300240 evsel->tracking = !idx;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200241 evsel->attr = *attr;
Namhyung Kim2cfda562012-11-29 15:38:29 +0900242 evsel->leader = evsel;
Stephane Eranian410136f2013-11-12 17:58:49 +0100243 evsel->unit = "";
244 evsel->scale = 1.0;
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -0400245 evsel->evlist = NULL;
Wang Nan1f45b1d2015-10-14 12:41:18 +0000246 evsel->bpf_fd = -1;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200247 INIT_LIST_HEAD(&evsel->node);
Jiri Olsa930a2e22015-07-29 05:42:10 -0400248 INIT_LIST_HEAD(&evsel->config_terms);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300249 perf_evsel__object.init(evsel);
Arnaldo Carvalho de Melobde09462012-08-01 18:53:11 -0300250 evsel->sample_size = __perf_evsel__sample_size(attr->sample_type);
Adrian Hunter75562572013-08-27 11:23:09 +0300251 perf_evsel__calc_id_pos(evsel);
Wang Nan15bfd2c2015-07-10 07:36:09 +0000252 evsel->cmdline_group_boundary = false;
Andi Kleen37932c12017-03-20 13:17:08 -0700253 evsel->metric_expr = NULL;
Andi Kleen96284812017-03-20 13:17:10 -0700254 evsel->metric_name = NULL;
Andi Kleen37932c12017-03-20 13:17:08 -0700255 evsel->metric_events = NULL;
256 evsel->collect_stat = false;
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200257}
258
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300259struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200260{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300261 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200262
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -0200263 if (evsel != NULL)
264 perf_evsel__init(evsel, attr, idx);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200265
Wang Nan03e0a7d2016-02-22 09:10:37 +0000266 if (perf_evsel__is_bpf_output(evsel)) {
Wang Nand37ba882016-04-01 13:26:42 +0000267 evsel->attr.sample_type |= (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
268 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Wang Nan03e0a7d2016-02-22 09:10:37 +0000269 evsel->attr.sample_period = 1;
270 }
271
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200272 return evsel;
273}
274
Arnaldo Carvalho de Melof1e52f12017-09-22 15:41:44 -0300275static bool perf_event_can_profile_kernel(void)
276{
277 return geteuid() == 0 || perf_event_paranoid() == -1;
278}
279
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300280struct perf_evsel *perf_evsel__new_cycles(bool precise)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300281{
282 struct perf_event_attr attr = {
283 .type = PERF_TYPE_HARDWARE,
284 .config = PERF_COUNT_HW_CPU_CYCLES,
Arnaldo Carvalho de Melof1e52f12017-09-22 15:41:44 -0300285 .exclude_kernel = !perf_event_can_profile_kernel(),
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300286 };
287 struct perf_evsel *evsel;
288
289 event_attr_init(&attr);
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300290
291 if (!precise)
292 goto new_event;
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300293 /*
294 * Unnamed union member, not supported as struct member named
295 * initializer in older compilers such as gcc 4.4.7
296 *
297 * Just for probing the precise_ip:
298 */
299 attr.sample_period = 1;
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300300
301 perf_event_attr__set_max_precise_ip(&attr);
Arnaldo Carvalho de Melo7a1ac112017-06-09 16:54:28 -0300302 /*
303 * Now let the usual logic to set up the perf_event_attr defaults
304 * to kick in when we return and before perf_evsel__open() is called.
305 */
306 attr.sample_period = 0;
Arnaldo Carvalho de Melo30269dc2017-07-03 13:05:43 -0300307new_event:
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300308 evsel = perf_evsel__new(&attr);
309 if (evsel == NULL)
310 goto out;
311
312 /* use asprintf() because free(evsel) assumes name is allocated */
Arnaldo Carvalho de Meloede56262017-07-10 16:19:25 -0300313 if (asprintf(&evsel->name, "cycles%s%s%.*s",
314 (attr.precise_ip || attr.exclude_kernel) ? ":" : "",
315 attr.exclude_kernel ? "u" : "",
316 attr.precise_ip ? attr.precise_ip + 1 : 0, "ppp") < 0)
Arnaldo Carvalho de Melo7c48dcf2016-07-28 18:33:20 -0300317 goto error_free;
318out:
319 return evsel;
320error_free:
321 perf_evsel__delete(evsel);
322 evsel = NULL;
323 goto out;
324}
325
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200326/*
327 * Returns pointer with encoded error via <linux/err.h> interface.
328 */
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -0300329struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx)
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300330{
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -0300331 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200332 int err = -ENOMEM;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300333
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200334 if (evsel == NULL) {
335 goto out_err;
336 } else {
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300337 struct perf_event_attr attr = {
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300338 .type = PERF_TYPE_TRACEPOINT,
339 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
340 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300341 };
342
Arnaldo Carvalho de Meloe48ffe22012-09-26 17:11:38 -0300343 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
344 goto out_free;
345
Jiri Olsa97978b32013-12-03 14:09:24 +0100346 evsel->tp_format = trace_event__tp_format(sys, name);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200347 if (IS_ERR(evsel->tp_format)) {
348 err = PTR_ERR(evsel->tp_format);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300349 goto out_free;
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200350 }
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300351
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300352 event_attr_init(&attr);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300353 attr.config = evsel->tp_format->id;
Arnaldo Carvalho de Melo0b80f8b32012-09-26 12:28:26 -0300354 attr.sample_period = 1;
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300355 perf_evsel__init(evsel, &attr, idx);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300356 }
357
358 return evsel;
359
360out_free:
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300361 zfree(&evsel->name);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300362 free(evsel);
Jiri Olsa8dd2a132015-09-07 10:38:06 +0200363out_err:
364 return ERR_PTR(err);
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -0300365}
366
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300367const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300368 "cycles",
369 "instructions",
370 "cache-references",
371 "cache-misses",
372 "branches",
373 "branch-misses",
374 "bus-cycles",
375 "stalled-cycles-frontend",
376 "stalled-cycles-backend",
377 "ref-cycles",
378};
379
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300380static const char *__perf_evsel__hw_name(u64 config)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300381{
382 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
383 return perf_evsel__hw_names[config];
384
385 return "unknown-hardware";
386}
387
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300388static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300389{
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300390 int colon = 0, r = 0;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300391 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300392 bool exclude_guest_default = false;
393
394#define MOD_PRINT(context, mod) do { \
395 if (!attr->exclude_##context) { \
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300396 if (!colon) colon = ++r; \
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300397 r += scnprintf(bf + r, size - r, "%c", mod); \
398 } } while(0)
399
400 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
401 MOD_PRINT(kernel, 'k');
402 MOD_PRINT(user, 'u');
403 MOD_PRINT(hv, 'h');
404 exclude_guest_default = true;
405 }
406
407 if (attr->precise_ip) {
408 if (!colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300409 colon = ++r;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300410 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
411 exclude_guest_default = true;
412 }
413
414 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
415 MOD_PRINT(host, 'H');
416 MOD_PRINT(guest, 'G');
417 }
418#undef MOD_PRINT
419 if (colon)
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300420 bf[colon - 1] = ':';
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300421 return r;
422}
423
Arnaldo Carvalho de Melo27f18612012-06-11 13:33:09 -0300424static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
425{
426 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
427 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
428}
429
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300430const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300431 "cpu-clock",
432 "task-clock",
433 "page-faults",
434 "context-switches",
Arnaldo Carvalho de Melo8ad70132012-09-06 13:11:18 -0300435 "cpu-migrations",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300436 "minor-faults",
437 "major-faults",
438 "alignment-faults",
439 "emulation-faults",
Adrian Hunterd22d1a22013-08-31 21:50:52 +0300440 "dummy",
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300441};
442
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300443static const char *__perf_evsel__sw_name(u64 config)
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300444{
445 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
446 return perf_evsel__sw_names[config];
447 return "unknown-software";
448}
449
450static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
451{
452 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
453 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
454}
455
Jiri Olsa287e74a2012-06-28 23:18:49 +0200456static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
457{
458 int r;
459
460 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
461
462 if (type & HW_BREAKPOINT_R)
463 r += scnprintf(bf + r, size - r, "r");
464
465 if (type & HW_BREAKPOINT_W)
466 r += scnprintf(bf + r, size - r, "w");
467
468 if (type & HW_BREAKPOINT_X)
469 r += scnprintf(bf + r, size - r, "x");
470
471 return r;
472}
473
474static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size)
475{
476 struct perf_event_attr *attr = &evsel->attr;
477 int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
478 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
479}
480
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300481const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
482 [PERF_EVSEL__MAX_ALIASES] = {
483 { "L1-dcache", "l1-d", "l1d", "L1-data", },
484 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
485 { "LLC", "L2", },
486 { "dTLB", "d-tlb", "Data-TLB", },
487 { "iTLB", "i-tlb", "Instruction-TLB", },
488 { "branch", "branches", "bpu", "btb", "bpc", },
489 { "node", },
490};
491
492const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
493 [PERF_EVSEL__MAX_ALIASES] = {
494 { "load", "loads", "read", },
495 { "store", "stores", "write", },
496 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
497};
498
499const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
500 [PERF_EVSEL__MAX_ALIASES] = {
501 { "refs", "Reference", "ops", "access", },
502 { "misses", "miss", },
503};
504
505#define C(x) PERF_COUNT_HW_CACHE_##x
506#define CACHE_READ (1 << C(OP_READ))
507#define CACHE_WRITE (1 << C(OP_WRITE))
508#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
509#define COP(x) (1 << x)
510
511/*
512 * cache operartion stat
513 * L1I : Read and prefetch only
514 * ITLB and BPU : Read-only
515 */
516static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
517 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
518 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
519 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
520 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
521 [C(ITLB)] = (CACHE_READ),
522 [C(BPU)] = (CACHE_READ),
523 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
524};
525
526bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
527{
528 if (perf_evsel__hw_cache_stat[type] & COP(op))
529 return true; /* valid */
530 else
531 return false; /* invalid */
532}
533
534int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
535 char *bf, size_t size)
536{
537 if (result) {
538 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
539 perf_evsel__hw_cache_op[op][0],
540 perf_evsel__hw_cache_result[result][0]);
541 }
542
543 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
544 perf_evsel__hw_cache_op[op][1]);
545}
546
Arnaldo Carvalho de Melodd4f5222012-06-13 15:52:42 -0300547static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300548{
549 u8 op, result, type = (config >> 0) & 0xff;
550 const char *err = "unknown-ext-hardware-cache-type";
551
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300552 if (type >= PERF_COUNT_HW_CACHE_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300553 goto out_err;
554
555 op = (config >> 8) & 0xff;
556 err = "unknown-ext-hardware-cache-op";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300557 if (op >= PERF_COUNT_HW_CACHE_OP_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300558 goto out_err;
559
560 result = (config >> 16) & 0xff;
561 err = "unknown-ext-hardware-cache-result";
Arnaldo Carvalho de Meloc53412e2016-08-18 16:30:28 -0300562 if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300563 goto out_err;
564
565 err = "invalid-cache";
566 if (!perf_evsel__is_cache_op_valid(type, op))
567 goto out_err;
568
569 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
570out_err:
571 return scnprintf(bf, size, "%s", err);
572}
573
574static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
575{
576 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
577 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
578}
579
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300580static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
581{
582 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
583 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
584}
585
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300586const char *perf_evsel__name(struct perf_evsel *evsel)
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300587{
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300588 char bf[128];
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300589
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300590 if (evsel->name)
591 return evsel->name;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300592
593 switch (evsel->attr.type) {
594 case PERF_TYPE_RAW:
Arnaldo Carvalho de Melo6eef3d92012-06-13 11:53:37 -0300595 perf_evsel__raw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300596 break;
597
598 case PERF_TYPE_HARDWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300599 perf_evsel__hw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300600 break;
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300601
602 case PERF_TYPE_HW_CACHE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300603 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo0b668bc2012-06-11 14:08:07 -0300604 break;
605
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300606 case PERF_TYPE_SOFTWARE:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300607 perf_evsel__sw_name(evsel, bf, sizeof(bf));
Arnaldo Carvalho de Melo335c2f52012-06-11 14:36:20 -0300608 break;
609
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300610 case PERF_TYPE_TRACEPOINT:
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300611 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300612 break;
613
Jiri Olsa287e74a2012-06-28 23:18:49 +0200614 case PERF_TYPE_BREAKPOINT:
615 perf_evsel__bp_name(evsel, bf, sizeof(bf));
616 break;
617
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300618 default:
Robert Richterca1b1452012-08-16 21:10:18 +0200619 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
620 evsel->attr.type);
Arnaldo Carvalho de Meloa4460832012-06-12 10:29:12 -0300621 break;
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300622 }
623
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300624 evsel->name = strdup(bf);
625
626 return evsel->name ?: "unknown";
Arnaldo Carvalho de Meloc4104312012-05-25 16:38:11 -0300627}
628
Namhyung Kim717e2632013-01-22 18:09:44 +0900629const char *perf_evsel__group_name(struct perf_evsel *evsel)
630{
631 return evsel->group_name ?: "anon group";
632}
633
634int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size)
635{
636 int ret;
637 struct perf_evsel *pos;
638 const char *group_name = perf_evsel__group_name(evsel);
639
640 ret = scnprintf(buf, size, "%s", group_name);
641
642 ret += scnprintf(buf + ret, size - ret, " { %s",
643 perf_evsel__name(evsel));
644
645 for_each_group_member(pos, evsel)
646 ret += scnprintf(buf + ret, size - ret, ", %s",
647 perf_evsel__name(pos));
648
649 ret += scnprintf(buf + ret, size - ret, " }");
650
651 return ret;
652}
653
Arnaldo Carvalho de Melo1688c2f2018-01-12 16:21:04 -0300654static void __perf_evsel__config_callchain(struct perf_evsel *evsel,
655 struct record_opts *opts,
656 struct callchain_param *param)
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100657{
658 bool function = perf_evsel__is_function_event(evsel);
659 struct perf_event_attr *attr = &evsel->attr;
660
661 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
662
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300663 attr->sample_max_stack = param->max_stack;
664
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400665 if (param->record_mode == CALLCHAIN_LBR) {
Kan Liangaad2b212015-01-05 13:23:04 -0500666 if (!opts->branch_stack) {
667 if (attr->exclude_user) {
668 pr_warning("LBR callstack option is only available "
669 "to get user callchain information. "
670 "Falling back to framepointers.\n");
671 } else {
672 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
673 attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER |
Andi Kleenbd0f8892015-12-11 16:12:24 -0800674 PERF_SAMPLE_BRANCH_CALL_STACK |
675 PERF_SAMPLE_BRANCH_NO_CYCLES |
676 PERF_SAMPLE_BRANCH_NO_FLAGS;
Kan Liangaad2b212015-01-05 13:23:04 -0500677 }
678 } else
679 pr_warning("Cannot use LBR callstack with branch stack. "
680 "Falling back to framepointers.\n");
681 }
682
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400683 if (param->record_mode == CALLCHAIN_DWARF) {
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100684 if (!function) {
685 perf_evsel__set_sample_bit(evsel, REGS_USER);
686 perf_evsel__set_sample_bit(evsel, STACK_USER);
Andi Kleen84c41742017-09-05 10:00:28 -0700687 attr->sample_regs_user |= PERF_REGS_MASK;
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400688 attr->sample_stack_user = param->dump_size;
Jiri Olsa6bedfab2014-03-02 16:56:40 +0100689 attr->exclude_callchain_user = 1;
690 } else {
691 pr_info("Cannot use DWARF unwind for function trace event,"
692 " falling back to framepointers.\n");
693 }
694 }
695
696 if (function) {
697 pr_info("Disabling user space callchains for function trace event.\n");
698 attr->exclude_callchain_user = 1;
699 }
700}
701
Arnaldo Carvalho de Melo1688c2f2018-01-12 16:21:04 -0300702void perf_evsel__config_callchain(struct perf_evsel *evsel,
703 struct record_opts *opts,
704 struct callchain_param *param)
705{
706 if (param->enabled)
707 return __perf_evsel__config_callchain(evsel, opts, param);
708}
709
Kan Liangd457c962015-08-11 06:30:47 -0400710static void
711perf_evsel__reset_callgraph(struct perf_evsel *evsel,
712 struct callchain_param *param)
713{
714 struct perf_event_attr *attr = &evsel->attr;
715
716 perf_evsel__reset_sample_bit(evsel, CALLCHAIN);
717 if (param->record_mode == CALLCHAIN_LBR) {
718 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
719 attr->branch_sample_type &= ~(PERF_SAMPLE_BRANCH_USER |
720 PERF_SAMPLE_BRANCH_CALL_STACK);
721 }
722 if (param->record_mode == CALLCHAIN_DWARF) {
723 perf_evsel__reset_sample_bit(evsel, REGS_USER);
724 perf_evsel__reset_sample_bit(evsel, STACK_USER);
725 }
726}
727
728static void apply_config_terms(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -0300729 struct record_opts *opts, bool track)
Jiri Olsa930a2e22015-07-29 05:42:10 -0400730{
731 struct perf_evsel_config_term *term;
Kan Liang32067712015-08-04 04:30:19 -0400732 struct list_head *config_terms = &evsel->config_terms;
733 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo249d98e2018-01-15 11:07:58 -0300734 /* callgraph default */
735 struct callchain_param param = {
736 .record_mode = callchain_param.record_mode,
737 };
Kan Liangd457c962015-08-11 06:30:47 -0400738 u32 dump_size = 0;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300739 int max_stack = 0;
740 const char *callgraph_buf = NULL;
Kan Liangd457c962015-08-11 06:30:47 -0400741
Jiri Olsa930a2e22015-07-29 05:42:10 -0400742 list_for_each_entry(term, config_terms, list) {
743 switch (term->type) {
Jiri Olsaee4c7582015-07-29 05:42:11 -0400744 case PERF_EVSEL__CONFIG_TERM_PERIOD:
Andi Kleenc2f1cea2017-10-20 13:27:55 -0700745 if (!(term->weak && opts->user_interval != ULLONG_MAX)) {
746 attr->sample_period = term->val.period;
747 attr->freq = 0;
Jiri Olsa49c0ae82018-02-01 09:38:10 +0100748 perf_evsel__reset_sample_bit(evsel, PERIOD);
Andi Kleenc2f1cea2017-10-20 13:27:55 -0700749 }
Kan Liang32067712015-08-04 04:30:19 -0400750 break;
Namhyung Kim09af2a52015-08-09 15:45:23 +0900751 case PERF_EVSEL__CONFIG_TERM_FREQ:
Andi Kleenc2f1cea2017-10-20 13:27:55 -0700752 if (!(term->weak && opts->user_freq != UINT_MAX)) {
753 attr->sample_freq = term->val.freq;
754 attr->freq = 1;
Jiri Olsa49c0ae82018-02-01 09:38:10 +0100755 perf_evsel__set_sample_bit(evsel, PERIOD);
Andi Kleenc2f1cea2017-10-20 13:27:55 -0700756 }
Namhyung Kim09af2a52015-08-09 15:45:23 +0900757 break;
Kan Liang32067712015-08-04 04:30:19 -0400758 case PERF_EVSEL__CONFIG_TERM_TIME:
759 if (term->val.time)
760 perf_evsel__set_sample_bit(evsel, TIME);
761 else
762 perf_evsel__reset_sample_bit(evsel, TIME);
763 break;
Kan Liangd457c962015-08-11 06:30:47 -0400764 case PERF_EVSEL__CONFIG_TERM_CALLGRAPH:
765 callgraph_buf = term->val.callgraph;
766 break;
Andi Kleenac12f672016-10-12 14:02:06 -0700767 case PERF_EVSEL__CONFIG_TERM_BRANCH:
768 if (term->val.branch && strcmp(term->val.branch, "no")) {
769 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
770 parse_branch_str(term->val.branch,
771 &attr->branch_sample_type);
772 } else
773 perf_evsel__reset_sample_bit(evsel, BRANCH_STACK);
774 break;
Kan Liangd457c962015-08-11 06:30:47 -0400775 case PERF_EVSEL__CONFIG_TERM_STACK_USER:
776 dump_size = term->val.stack_user;
777 break;
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300778 case PERF_EVSEL__CONFIG_TERM_MAX_STACK:
779 max_stack = term->val.max_stack;
780 break;
Wang Nan374ce932015-10-28 10:55:02 +0000781 case PERF_EVSEL__CONFIG_TERM_INHERIT:
782 /*
783 * attr->inherit should has already been set by
784 * perf_evsel__config. If user explicitly set
785 * inherit using config terms, override global
786 * opt->no_inherit setting.
787 */
788 attr->inherit = term->val.inherit ? 1 : 0;
789 break;
Wang Nan626a6b72016-07-14 08:34:45 +0000790 case PERF_EVSEL__CONFIG_TERM_OVERWRITE:
791 attr->write_backward = term->val.overwrite ? 1 : 0;
792 break;
Andi Kleend0565132017-10-20 13:27:54 -0700793 case PERF_EVSEL__CONFIG_TERM_DRV_CFG:
Mathieu Poirier21787902018-01-10 13:46:51 -0700794 break;
Jiri Olsa930a2e22015-07-29 05:42:10 -0400795 default:
796 break;
797 }
798 }
Kan Liangd457c962015-08-11 06:30:47 -0400799
800 /* User explicitly set per-event callgraph, clear the old setting and reset. */
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300801 if ((callgraph_buf != NULL) || (dump_size > 0) || max_stack) {
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -0300802 bool sample_address = false;
803
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300804 if (max_stack) {
805 param.max_stack = max_stack;
806 if (callgraph_buf == NULL)
807 callgraph_buf = "fp";
808 }
Kan Liangd457c962015-08-11 06:30:47 -0400809
810 /* parse callgraph parameters */
811 if (callgraph_buf != NULL) {
Kan Liangf9db0d02015-08-11 06:30:48 -0400812 if (!strcmp(callgraph_buf, "no")) {
813 param.enabled = false;
814 param.record_mode = CALLCHAIN_NONE;
815 } else {
816 param.enabled = true;
817 if (parse_callchain_record(callgraph_buf, &param)) {
818 pr_err("per-event callgraph setting for %s failed. "
819 "Apply callgraph global setting for it\n",
820 evsel->name);
821 return;
822 }
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -0300823 if (param.record_mode == CALLCHAIN_DWARF)
824 sample_address = true;
Kan Liangd457c962015-08-11 06:30:47 -0400825 }
826 }
827 if (dump_size > 0) {
828 dump_size = round_up(dump_size, sizeof(u64));
829 param.dump_size = dump_size;
830 }
831
832 /* If global callgraph set, clear it */
833 if (callchain_param.enabled)
834 perf_evsel__reset_callgraph(evsel, &callchain_param);
835
836 /* set perf-event callgraph */
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -0300837 if (param.enabled) {
838 if (sample_address) {
839 perf_evsel__set_sample_bit(evsel, ADDR);
840 perf_evsel__set_sample_bit(evsel, DATA_SRC);
841 evsel->attr.mmap_data = track;
842 }
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300843 perf_evsel__config_callchain(evsel, opts, &param);
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -0300844 }
Kan Liangd457c962015-08-11 06:30:47 -0400845 }
Jiri Olsa930a2e22015-07-29 05:42:10 -0400846}
847
Jiri Olsa774cb492012-11-12 18:34:01 +0100848/*
849 * The enable_on_exec/disabled value strategy:
850 *
851 * 1) For any type of traced program:
852 * - all independent events and group leaders are disabled
853 * - all group members are enabled
854 *
855 * Group members are ruled by group leaders. They need to
856 * be enabled, because the group scheduling relies on that.
857 *
858 * 2) For traced programs executed by perf:
859 * - all independent events and group leaders have
860 * enable_on_exec set
861 * - we don't specifically enable or disable any event during
862 * the record command
863 *
864 * Independent events and group leaders are initially disabled
865 * and get enabled by exec. Group members are ruled by group
866 * leaders as stated in 1).
867 *
868 * 3) For traced programs attached by perf (pid/tid):
869 * - we specifically enable or disable all events during
870 * the record command
871 *
872 * When attaching events to already running traced we
873 * enable/disable events specifically, as there's no
874 * initial traced exec call.
875 */
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300876void perf_evsel__config(struct perf_evsel *evsel, struct record_opts *opts,
877 struct callchain_param *callchain)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200878{
Jiri Olsa3c176312012-10-10 17:39:03 +0200879 struct perf_evsel *leader = evsel->leader;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200880 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter60b08962014-07-31 09:00:52 +0300881 int track = evsel->tracking;
Adrian Hunter3aa59392013-11-15 15:52:29 +0200882 bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200883
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300884 attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200885 attr->inherit = !opts->no_inherit;
Wang Nan626a6b72016-07-14 08:34:45 +0000886 attr->write_backward = opts->overwrite ? 1 : 0;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200887
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300888 perf_evsel__set_sample_bit(evsel, IP);
889 perf_evsel__set_sample_bit(evsel, TID);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200890
Jiri Olsa3c176312012-10-10 17:39:03 +0200891 if (evsel->sample_read) {
892 perf_evsel__set_sample_bit(evsel, READ);
893
894 /*
895 * We need ID even in case of single event, because
896 * PERF_SAMPLE_READ process ID specific data.
897 */
Adrian Hunter75562572013-08-27 11:23:09 +0300898 perf_evsel__set_sample_id(evsel, false);
Jiri Olsa3c176312012-10-10 17:39:03 +0200899
900 /*
901 * Apply group format only if we belong to group
902 * with more than one members.
903 */
904 if (leader->nr_members > 1) {
905 attr->read_format |= PERF_FORMAT_GROUP;
906 attr->inherit = 0;
907 }
908 }
909
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200910 /*
Namhyung Kim17314e22014-06-09 14:43:37 +0900911 * We default some events to have a default interval. But keep
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200912 * it a weak assumption overridable by the user.
913 */
Namhyung Kim17314e22014-06-09 14:43:37 +0900914 if (!attr->sample_period || (opts->user_freq != UINT_MAX ||
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200915 opts->user_interval != ULLONG_MAX)) {
916 if (opts->freq) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300917 perf_evsel__set_sample_bit(evsel, PERIOD);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200918 attr->freq = 1;
919 attr->sample_freq = opts->freq;
920 } else {
921 attr->sample_period = opts->default_interval;
922 }
923 }
924
Jiri Olsa3c176312012-10-10 17:39:03 +0200925 /*
926 * Disable sampling for all group members other
927 * than leader in case leader 'leads' the sampling.
928 */
929 if ((leader != evsel) && leader->sample_read) {
930 attr->sample_freq = 0;
931 attr->sample_period = 0;
932 }
933
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200934 if (opts->no_samples)
935 attr->sample_freq = 0;
936
Jiri Olsaa17f06972017-08-24 18:27:31 +0200937 if (opts->inherit_stat) {
938 evsel->attr.read_format |=
939 PERF_FORMAT_TOTAL_TIME_ENABLED |
940 PERF_FORMAT_TOTAL_TIME_RUNNING |
941 PERF_FORMAT_ID;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200942 attr->inherit_stat = 1;
Jiri Olsaa17f06972017-08-24 18:27:31 +0200943 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200944
945 if (opts->sample_address) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300946 perf_evsel__set_sample_bit(evsel, ADDR);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200947 attr->mmap_data = track;
948 }
949
Jiri Olsaf1403732014-11-13 18:21:03 +0100950 /*
951 * We don't allow user space callchains for function trace
952 * event, due to issues with page faults while tracing page
953 * fault handler and its overall trickiness nature.
954 */
955 if (perf_evsel__is_function_event(evsel))
956 evsel->attr.exclude_callchain_user = 1;
957
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -0300958 if (callchain && callchain->enabled && !evsel->no_aux_samples)
Arnaldo Carvalho de Melo01e0d502016-04-11 18:39:37 -0300959 perf_evsel__config_callchain(evsel, opts, callchain);
Jiri Olsa26d33022012-08-07 15:20:47 +0200960
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200961 if (opts->sample_intr_regs) {
Stephane Eranianbcc84ec2015-08-31 18:41:12 +0200962 attr->sample_regs_intr = opts->sample_intr_regs;
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200963 perf_evsel__set_sample_bit(evsel, REGS_INTR);
964 }
965
Andi Kleen84c41742017-09-05 10:00:28 -0700966 if (opts->sample_user_regs) {
967 attr->sample_regs_user |= opts->sample_user_regs;
968 perf_evsel__set_sample_bit(evsel, REGS_USER);
969 }
970
Jiri Olsab6f35ed2016-08-01 20:02:35 +0200971 if (target__has_cpu(&opts->target) || opts->sample_cpu)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300972 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200973
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300974 if (opts->period)
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300975 perf_evsel__set_sample_bit(evsel, PERIOD);
Andrew Vagin3e76ac72011-12-20 17:32:45 +0300976
Andi Kleen8affc2b2014-07-31 14:45:04 +0800977 /*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800978 * When the user explicitly disabled time don't force it here.
Andi Kleen8affc2b2014-07-31 14:45:04 +0800979 */
980 if (opts->sample_time &&
981 (!perf_missing_features.sample_id_all &&
Adrian Hunter3abebc52015-07-06 14:51:01 +0300982 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu ||
983 opts->sample_time_set)))
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300984 perf_evsel__set_sample_bit(evsel, TIME);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200985
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300986 if (opts->raw_samples && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300987 perf_evsel__set_sample_bit(evsel, TIME);
988 perf_evsel__set_sample_bit(evsel, RAW);
989 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200990 }
991
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100992 if (opts->sample_address)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200993 perf_evsel__set_sample_bit(evsel, DATA_SRC);
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100994
Kan Liang3b0a5da2017-08-29 13:11:08 -0400995 if (opts->sample_phys_addr)
996 perf_evsel__set_sample_bit(evsel, PHYS_ADDR);
997
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -0300998 if (opts->no_buffering) {
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200999 attr->watermark = 0;
1000 attr->wakeup_events = 1;
1001 }
Adrian Hunter6ff1ce72014-07-14 13:02:56 +03001002 if (opts->branch_stack && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -03001003 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
Roberto Agostino Vitillobdfebd82012-02-09 23:21:02 +01001004 attr->branch_sample_type = opts->branch_stack;
1005 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001006
Andi Kleen05484292013-01-24 16:10:29 +01001007 if (opts->sample_weight)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +02001008 perf_evsel__set_sample_bit(evsel, WEIGHT);
Andi Kleen05484292013-01-24 16:10:29 +01001009
Namhyung Kim62e503b2015-01-29 17:06:46 +09001010 attr->task = track;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001011 attr->mmap = track;
Don Zickusa5a5ba72014-05-30 10:49:42 -04001012 attr->mmap2 = track && !perf_missing_features.mmap2;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001013 attr->comm = track;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001014
Hari Bathinif3b36142017-03-08 02:11:43 +05301015 if (opts->record_namespaces)
1016 attr->namespaces = track;
1017
Adrian Hunterb757bb02015-07-21 12:44:04 +03001018 if (opts->record_switch_events)
1019 attr->context_switch = track;
1020
Andi Kleen475eeab2013-09-20 07:40:43 -07001021 if (opts->sample_transaction)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +02001022 perf_evsel__set_sample_bit(evsel, TRANSACTION);
Andi Kleen475eeab2013-09-20 07:40:43 -07001023
Andi Kleen85c273d2015-02-24 15:13:40 -08001024 if (opts->running_time) {
1025 evsel->attr.read_format |=
1026 PERF_FORMAT_TOTAL_TIME_ENABLED |
1027 PERF_FORMAT_TOTAL_TIME_RUNNING;
1028 }
1029
Jiri Olsa774cb492012-11-12 18:34:01 +01001030 /*
1031 * XXX see the function comment above
1032 *
1033 * Disabling only independent events or group leaders,
1034 * keeping group members enabled.
1035 */
Namhyung Kim823254e2012-11-29 15:38:30 +09001036 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa774cb492012-11-12 18:34:01 +01001037 attr->disabled = 1;
1038
1039 /*
1040 * Setting enable_on_exec for independent events and
1041 * group leaders for traced executed by perf.
1042 */
Andi Kleen6619a532014-01-11 13:38:27 -08001043 if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) &&
1044 !opts->initial_delay)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001045 attr->enable_on_exec = 1;
Adrian Hunter2afd2bc2014-07-14 13:02:57 +03001046
1047 if (evsel->immediate) {
1048 attr->disabled = 0;
1049 attr->enable_on_exec = 0;
1050 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001051
1052 clockid = opts->clockid;
1053 if (opts->use_clockid) {
1054 attr->use_clockid = 1;
1055 attr->clockid = opts->clockid;
1056 }
Jiri Olsa930a2e22015-07-29 05:42:10 -04001057
Jiri Olsa7f94af72015-10-05 20:06:05 +02001058 if (evsel->precise_max)
1059 perf_event_attr__set_max_precise_ip(attr);
1060
Jiri Olsa85723882016-02-15 09:34:31 +01001061 if (opts->all_user) {
1062 attr->exclude_kernel = 1;
1063 attr->exclude_user = 0;
1064 }
1065
1066 if (opts->all_kernel) {
1067 attr->exclude_kernel = 0;
1068 attr->exclude_user = 1;
1069 }
1070
Jiri Olsa930a2e22015-07-29 05:42:10 -04001071 /*
1072 * Apply event specific term settings,
1073 * it overloads any global configuration.
1074 */
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -03001075 apply_config_terms(evsel, opts, track);
Jiri Olsaa359c172016-12-13 08:46:22 +01001076
1077 evsel->ignore_missing_thread = opts->ignore_missing_thread;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001078}
1079
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001080static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001081{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001082 if (evsel->system_wide)
1083 nthreads = 1;
1084
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001085 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
David Ahern4af4c952011-05-27 09:58:34 -06001086
1087 if (evsel->fd) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001088 int cpu, thread;
David Ahern4af4c952011-05-27 09:58:34 -06001089 for (cpu = 0; cpu < ncpus; cpu++) {
1090 for (thread = 0; thread < nthreads; thread++) {
1091 FD(evsel, cpu, thread) = -1;
1092 }
1093 }
1094 }
1095
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001096 return evsel->fd != NULL ? 0 : -ENOMEM;
1097}
1098
Andi Kleen475fb532017-08-11 16:26:17 -07001099static int perf_evsel__run_ioctl(struct perf_evsel *evsel,
Andi Kleene2407be2013-08-02 17:41:10 -07001100 int ioc, void *arg)
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001101{
1102 int cpu, thread;
1103
Andi Kleen475fb532017-08-11 16:26:17 -07001104 for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++) {
1105 for (thread = 0; thread < xyarray__max_y(evsel->fd); thread++) {
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001106 int fd = FD(evsel, cpu, thread),
Andi Kleene2407be2013-08-02 17:41:10 -07001107 err = ioctl(fd, ioc, arg);
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001108
1109 if (err)
1110 return err;
1111 }
1112 }
1113
1114 return 0;
1115}
1116
Andi Kleen475fb532017-08-11 16:26:17 -07001117int perf_evsel__apply_filter(struct perf_evsel *evsel, const char *filter)
Andi Kleene2407be2013-08-02 17:41:10 -07001118{
Andi Kleen475fb532017-08-11 16:26:17 -07001119 return perf_evsel__run_ioctl(evsel,
Andi Kleene2407be2013-08-02 17:41:10 -07001120 PERF_EVENT_IOC_SET_FILTER,
1121 (void *)filter);
1122}
1123
Arnaldo Carvalho de Melo12467ae2015-07-03 17:05:50 -03001124int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter)
1125{
1126 char *new_filter = strdup(filter);
1127
1128 if (new_filter != NULL) {
1129 free(evsel->filter);
1130 evsel->filter = new_filter;
1131 return 0;
1132 }
1133
1134 return -1;
1135}
1136
Mathieu Poirier3541c032016-09-16 08:44:04 -06001137static int perf_evsel__append_filter(struct perf_evsel *evsel,
1138 const char *fmt, const char *filter)
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001139{
1140 char *new_filter;
1141
1142 if (evsel->filter == NULL)
1143 return perf_evsel__set_filter(evsel, filter);
1144
Mathieu Poirierb15d0a42016-09-16 08:44:03 -06001145 if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001146 free(evsel->filter);
1147 evsel->filter = new_filter;
1148 return 0;
1149 }
1150
1151 return -1;
1152}
1153
Mathieu Poirier3541c032016-09-16 08:44:04 -06001154int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter)
1155{
1156 return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter);
1157}
1158
Mathieu Poirier1e857482016-09-16 08:44:05 -06001159int perf_evsel__append_addr_filter(struct perf_evsel *evsel, const char *filter)
1160{
1161 return perf_evsel__append_filter(evsel, "%s,%s", filter);
1162}
1163
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001164int perf_evsel__enable(struct perf_evsel *evsel)
Andi Kleene2407be2013-08-02 17:41:10 -07001165{
Andi Kleen475fb532017-08-11 16:26:17 -07001166 return perf_evsel__run_ioctl(evsel,
Andi Kleene2407be2013-08-02 17:41:10 -07001167 PERF_EVENT_IOC_ENABLE,
1168 0);
1169}
1170
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001171int perf_evsel__disable(struct perf_evsel *evsel)
1172{
Andi Kleen475fb532017-08-11 16:26:17 -07001173 return perf_evsel__run_ioctl(evsel,
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001174 PERF_EVENT_IOC_DISABLE,
1175 0);
1176}
1177
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001178int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
1179{
Vineet Gupta8d9cbd82015-01-13 19:13:23 +05301180 if (ncpus == 0 || nthreads == 0)
1181 return 0;
1182
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001183 if (evsel->system_wide)
1184 nthreads = 1;
1185
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001186 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
1187 if (evsel->sample_id == NULL)
1188 return -ENOMEM;
1189
1190 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
1191 if (evsel->id == NULL) {
1192 xyarray__delete(evsel->sample_id);
1193 evsel->sample_id = NULL;
1194 return -ENOMEM;
1195 }
1196
1197 return 0;
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001198}
1199
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001200static void perf_evsel__free_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001201{
1202 xyarray__delete(evsel->fd);
1203 evsel->fd = NULL;
1204}
1205
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001206static void perf_evsel__free_id(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001207{
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001208 xyarray__delete(evsel->sample_id);
1209 evsel->sample_id = NULL;
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001210 zfree(&evsel->id);
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001211}
1212
Jiri Olsa930a2e22015-07-29 05:42:10 -04001213static void perf_evsel__free_config_terms(struct perf_evsel *evsel)
1214{
1215 struct perf_evsel_config_term *term, *h;
1216
1217 list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1218 list_del(&term->list);
1219 free(term);
1220 }
1221}
1222
Andi Kleen475fb532017-08-11 16:26:17 -07001223void perf_evsel__close_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001224{
1225 int cpu, thread;
1226
Andi Kleen475fb532017-08-11 16:26:17 -07001227 for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++)
1228 for (thread = 0; thread < xyarray__max_y(evsel->fd); ++thread) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001229 close(FD(evsel, cpu, thread));
1230 FD(evsel, cpu, thread) = -1;
1231 }
1232}
1233
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001234void perf_evsel__exit(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001235{
1236 assert(list_empty(&evsel->node));
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -04001237 assert(evsel->evlist == NULL);
Namhyung Kim736b05a2013-03-15 14:48:49 +09001238 perf_evsel__free_fd(evsel);
1239 perf_evsel__free_id(evsel);
Jiri Olsa930a2e22015-07-29 05:42:10 -04001240 perf_evsel__free_config_terms(evsel);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001241 close_cgroup(evsel->cgrp);
Jiri Olsaf30a79b2015-06-23 00:36:04 +02001242 cpu_map__put(evsel->cpus);
Adrian Hunterfce4d292015-09-08 10:58:55 +03001243 cpu_map__put(evsel->own_cpus);
Jiri Olsa578e91e2015-06-23 00:36:07 +02001244 thread_map__put(evsel->threads);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001245 zfree(&evsel->group_name);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001246 zfree(&evsel->name);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -03001247 perf_evsel__object.fini(evsel);
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001248}
1249
1250void perf_evsel__delete(struct perf_evsel *evsel)
1251{
1252 perf_evsel__exit(evsel);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001253 free(evsel);
1254}
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001255
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001256void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
Jiri Olsa857a94a2014-11-21 10:31:05 +01001257 struct perf_counts_values *count)
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001258{
1259 struct perf_counts_values tmp;
1260
1261 if (!evsel->prev_raw_counts)
1262 return;
1263
1264 if (cpu == -1) {
1265 tmp = evsel->prev_raw_counts->aggr;
1266 evsel->prev_raw_counts->aggr = *count;
1267 } else {
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001268 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1269 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001270 }
1271
1272 count->val = count->val - tmp.val;
1273 count->ena = count->ena - tmp.ena;
1274 count->run = count->run - tmp.run;
1275}
1276
Jiri Olsa13112bb2014-11-21 10:31:06 +01001277void perf_counts_values__scale(struct perf_counts_values *count,
1278 bool scale, s8 *pscaled)
1279{
1280 s8 scaled = 0;
1281
1282 if (scale) {
1283 if (count->run == 0) {
1284 scaled = -1;
1285 count->val = 0;
1286 } else if (count->run < count->ena) {
1287 scaled = 1;
1288 count->val = (u64)((double) count->val * count->ena / count->run + 0.5);
1289 }
1290 } else
1291 count->ena = count->run = 0;
1292
1293 if (pscaled)
1294 *pscaled = scaled;
1295}
1296
Jiri Olsade634032017-07-26 14:02:04 +02001297static int perf_evsel__read_size(struct perf_evsel *evsel)
1298{
1299 u64 read_format = evsel->attr.read_format;
1300 int entry = sizeof(u64); /* value */
1301 int size = 0;
1302 int nr = 1;
1303
1304 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1305 size += sizeof(u64);
1306
1307 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1308 size += sizeof(u64);
1309
1310 if (read_format & PERF_FORMAT_ID)
1311 entry += sizeof(u64);
1312
1313 if (read_format & PERF_FORMAT_GROUP) {
1314 nr = evsel->nr_members;
1315 size += sizeof(u64);
1316 }
1317
1318 size += entry * nr;
1319 return size;
1320}
1321
Jiri Olsaf99f47192015-06-26 11:29:18 +02001322int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
1323 struct perf_counts_values *count)
1324{
Jiri Olsade634032017-07-26 14:02:04 +02001325 size_t size = perf_evsel__read_size(evsel);
1326
Jiri Olsaf99f47192015-06-26 11:29:18 +02001327 memset(count, 0, sizeof(*count));
1328
1329 if (FD(evsel, cpu, thread) < 0)
1330 return -EINVAL;
1331
Jiri Olsade634032017-07-26 14:02:04 +02001332 if (readn(FD(evsel, cpu, thread), count->values, size) <= 0)
Jiri Olsaf99f47192015-06-26 11:29:18 +02001333 return -errno;
1334
1335 return 0;
1336}
1337
Jiri Olsaf7794d52017-07-26 14:02:05 +02001338static int
1339perf_evsel__read_one(struct perf_evsel *evsel, int cpu, int thread)
1340{
1341 struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread);
1342
1343 return perf_evsel__read(evsel, cpu, thread, count);
1344}
1345
1346static void
1347perf_evsel__set_count(struct perf_evsel *counter, int cpu, int thread,
1348 u64 val, u64 ena, u64 run)
1349{
1350 struct perf_counts_values *count;
1351
1352 count = perf_counts(counter->counts, cpu, thread);
1353
1354 count->val = val;
1355 count->ena = ena;
1356 count->run = run;
Jiri Olsa82bf3112017-07-26 14:02:06 +02001357 count->loaded = true;
Jiri Olsaf7794d52017-07-26 14:02:05 +02001358}
1359
1360static int
1361perf_evsel__process_group_data(struct perf_evsel *leader,
1362 int cpu, int thread, u64 *data)
1363{
1364 u64 read_format = leader->attr.read_format;
1365 struct sample_read_value *v;
1366 u64 nr, ena = 0, run = 0, i;
1367
1368 nr = *data++;
1369
1370 if (nr != (u64) leader->nr_members)
1371 return -EINVAL;
1372
1373 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1374 ena = *data++;
1375
1376 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1377 run = *data++;
1378
1379 v = (struct sample_read_value *) data;
1380
1381 perf_evsel__set_count(leader, cpu, thread,
1382 v[0].value, ena, run);
1383
1384 for (i = 1; i < nr; i++) {
1385 struct perf_evsel *counter;
1386
1387 counter = perf_evlist__id2evsel(leader->evlist, v[i].id);
1388 if (!counter)
1389 return -EINVAL;
1390
1391 perf_evsel__set_count(counter, cpu, thread,
1392 v[i].value, ena, run);
1393 }
1394
1395 return 0;
1396}
1397
1398static int
1399perf_evsel__read_group(struct perf_evsel *leader, int cpu, int thread)
1400{
Arnaldo Carvalho de Melo82806c32017-11-09 12:03:40 -03001401 struct perf_stat_evsel *ps = leader->stats;
Jiri Olsaf7794d52017-07-26 14:02:05 +02001402 u64 read_format = leader->attr.read_format;
1403 int size = perf_evsel__read_size(leader);
1404 u64 *data = ps->group_data;
1405
1406 if (!(read_format & PERF_FORMAT_ID))
1407 return -EINVAL;
1408
1409 if (!perf_evsel__is_group_leader(leader))
1410 return -EINVAL;
1411
1412 if (!data) {
1413 data = zalloc(size);
1414 if (!data)
1415 return -ENOMEM;
1416
1417 ps->group_data = data;
1418 }
1419
1420 if (FD(leader, cpu, thread) < 0)
1421 return -EINVAL;
1422
1423 if (readn(FD(leader, cpu, thread), data, size) <= 0)
1424 return -errno;
1425
1426 return perf_evsel__process_group_data(leader, cpu, thread, data);
1427}
1428
1429int perf_evsel__read_counter(struct perf_evsel *evsel, int cpu, int thread)
1430{
1431 u64 read_format = evsel->attr.read_format;
1432
1433 if (read_format & PERF_FORMAT_GROUP)
1434 return perf_evsel__read_group(evsel, cpu, thread);
1435 else
1436 return perf_evsel__read_one(evsel, cpu, thread);
1437}
1438
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001439int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
1440 int cpu, int thread, bool scale)
1441{
1442 struct perf_counts_values count;
1443 size_t nv = scale ? 3 : 1;
1444
1445 if (FD(evsel, cpu, thread) < 0)
1446 return -EINVAL;
1447
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001448 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001449 return -ENOMEM;
1450
Stephane Eraniandb49a712017-04-12 11:23:01 -07001451 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001452 return -errno;
1453
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001454 perf_evsel__compute_deltas(evsel, cpu, thread, &count);
Jiri Olsa13112bb2014-11-21 10:31:06 +01001455 perf_counts_values__scale(&count, scale, NULL);
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001456 *perf_counts(evsel->counts, cpu, thread) = count;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001457 return 0;
1458}
1459
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001460static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
1461{
1462 struct perf_evsel *leader = evsel->leader;
1463 int fd;
1464
Namhyung Kim823254e2012-11-29 15:38:30 +09001465 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001466 return -1;
1467
1468 /*
1469 * Leader must be already processed/open,
1470 * if not it's a bug.
1471 */
1472 BUG_ON(!leader->fd);
1473
1474 fd = FD(leader, cpu, thread);
1475 BUG_ON(fd == -1);
1476
1477 return fd;
1478}
1479
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001480struct bit_names {
1481 int bit;
1482 const char *name;
1483};
Adrian Huntere3e1a542013-08-14 15:48:24 +03001484
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001485static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001486{
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001487 bool first_bit = true;
1488 int i = 0;
Adrian Huntere3e1a542013-08-14 15:48:24 +03001489
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001490 do {
1491 if (value & bits[i].bit) {
1492 buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name);
1493 first_bit = false;
1494 }
1495 } while (bits[++i].name != NULL);
1496}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001497
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001498static void __p_sample_type(char *buf, size_t size, u64 value)
1499{
1500#define bit_name(n) { PERF_SAMPLE_##n, #n }
1501 struct bit_names bits[] = {
1502 bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR),
1503 bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU),
1504 bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW),
1505 bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER),
Jiri Olsa84422592015-10-05 20:06:02 +02001506 bit_name(IDENTIFIER), bit_name(REGS_INTR), bit_name(DATA_SRC),
Kan Liang3b0a5da2017-08-29 13:11:08 -04001507 bit_name(WEIGHT), bit_name(PHYS_ADDR),
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001508 { .name = NULL, }
1509 };
1510#undef bit_name
1511 __p_bits(buf, size, value, bits);
1512}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001513
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001514static void __p_branch_sample_type(char *buf, size_t size, u64 value)
1515{
1516#define bit_name(n) { PERF_SAMPLE_BRANCH_##n, #n }
1517 struct bit_names bits[] = {
1518 bit_name(USER), bit_name(KERNEL), bit_name(HV), bit_name(ANY),
1519 bit_name(ANY_CALL), bit_name(ANY_RETURN), bit_name(IND_CALL),
1520 bit_name(ABORT_TX), bit_name(IN_TX), bit_name(NO_TX),
1521 bit_name(COND), bit_name(CALL_STACK), bit_name(IND_JUMP),
1522 bit_name(CALL), bit_name(NO_FLAGS), bit_name(NO_CYCLES),
1523 { .name = NULL, }
1524 };
1525#undef bit_name
1526 __p_bits(buf, size, value, bits);
1527}
1528
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001529static void __p_read_format(char *buf, size_t size, u64 value)
1530{
1531#define bit_name(n) { PERF_FORMAT_##n, #n }
1532 struct bit_names bits[] = {
1533 bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING),
1534 bit_name(ID), bit_name(GROUP),
1535 { .name = NULL, }
1536 };
1537#undef bit_name
1538 __p_bits(buf, size, value, bits);
1539}
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001540
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001541#define BUF_SIZE 1024
Adrian Huntere3e1a542013-08-14 15:48:24 +03001542
Adrian Hunter7310aed2015-06-11 15:51:04 +03001543#define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001544#define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
1545#define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
1546#define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001547#define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001548#define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001549
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001550#define PRINT_ATTRn(_n, _f, _p) \
1551do { \
1552 if (attr->_f) { \
1553 _p(attr->_f); \
1554 ret += attr__fprintf(fp, _n, buf, priv);\
1555 } \
1556} while (0)
1557
1558#define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p)
1559
1560int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
1561 attr__fprintf_f attr__fprintf, void *priv)
1562{
1563 char buf[BUF_SIZE];
1564 int ret = 0;
1565
1566 PRINT_ATTRf(type, p_unsigned);
1567 PRINT_ATTRf(size, p_unsigned);
1568 PRINT_ATTRf(config, p_hex);
1569 PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned);
1570 PRINT_ATTRf(sample_type, p_sample_type);
1571 PRINT_ATTRf(read_format, p_read_format);
1572
1573 PRINT_ATTRf(disabled, p_unsigned);
1574 PRINT_ATTRf(inherit, p_unsigned);
1575 PRINT_ATTRf(pinned, p_unsigned);
1576 PRINT_ATTRf(exclusive, p_unsigned);
1577 PRINT_ATTRf(exclude_user, p_unsigned);
1578 PRINT_ATTRf(exclude_kernel, p_unsigned);
1579 PRINT_ATTRf(exclude_hv, p_unsigned);
1580 PRINT_ATTRf(exclude_idle, p_unsigned);
1581 PRINT_ATTRf(mmap, p_unsigned);
1582 PRINT_ATTRf(comm, p_unsigned);
1583 PRINT_ATTRf(freq, p_unsigned);
1584 PRINT_ATTRf(inherit_stat, p_unsigned);
1585 PRINT_ATTRf(enable_on_exec, p_unsigned);
1586 PRINT_ATTRf(task, p_unsigned);
1587 PRINT_ATTRf(watermark, p_unsigned);
1588 PRINT_ATTRf(precise_ip, p_unsigned);
1589 PRINT_ATTRf(mmap_data, p_unsigned);
1590 PRINT_ATTRf(sample_id_all, p_unsigned);
1591 PRINT_ATTRf(exclude_host, p_unsigned);
1592 PRINT_ATTRf(exclude_guest, p_unsigned);
1593 PRINT_ATTRf(exclude_callchain_kernel, p_unsigned);
1594 PRINT_ATTRf(exclude_callchain_user, p_unsigned);
1595 PRINT_ATTRf(mmap2, p_unsigned);
1596 PRINT_ATTRf(comm_exec, p_unsigned);
1597 PRINT_ATTRf(use_clockid, p_unsigned);
Adrian Hunter02860392015-07-21 12:44:03 +03001598 PRINT_ATTRf(context_switch, p_unsigned);
Arnaldo Carvalho de Melo0a241ef2016-05-09 18:08:33 -03001599 PRINT_ATTRf(write_backward, p_unsigned);
Jiri Olsadb9fc762018-01-07 17:03:46 +01001600 PRINT_ATTRf(namespaces, p_unsigned);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001601
1602 PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned);
1603 PRINT_ATTRf(bp_type, p_unsigned);
1604 PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex);
1605 PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex);
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001606 PRINT_ATTRf(branch_sample_type, p_branch_sample_type);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001607 PRINT_ATTRf(sample_regs_user, p_hex);
1608 PRINT_ATTRf(sample_stack_user, p_unsigned);
1609 PRINT_ATTRf(clockid, p_signed);
1610 PRINT_ATTRf(sample_regs_intr, p_hex);
Adrian Hunter70d73de2015-04-09 18:54:06 +03001611 PRINT_ATTRf(aux_watermark, p_unsigned);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -03001612 PRINT_ATTRf(sample_max_stack, p_unsigned);
Adrian Huntere3e1a542013-08-14 15:48:24 +03001613
1614 return ret;
1615}
1616
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001617static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001618 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001619{
1620 return fprintf(fp, " %-32s %s\n", name, val);
1621}
1622
Mengting Zhangca800062017-12-13 15:01:53 +08001623static void perf_evsel__remove_fd(struct perf_evsel *pos,
1624 int nr_cpus, int nr_threads,
1625 int thread_idx)
1626{
1627 for (int cpu = 0; cpu < nr_cpus; cpu++)
1628 for (int thread = thread_idx; thread < nr_threads - 1; thread++)
1629 FD(pos, cpu, thread) = FD(pos, cpu, thread + 1);
1630}
1631
1632static int update_fds(struct perf_evsel *evsel,
1633 int nr_cpus, int cpu_idx,
1634 int nr_threads, int thread_idx)
1635{
1636 struct perf_evsel *pos;
1637
1638 if (cpu_idx >= nr_cpus || thread_idx >= nr_threads)
1639 return -EINVAL;
1640
1641 evlist__for_each_entry(evsel->evlist, pos) {
1642 nr_cpus = pos != evsel ? nr_cpus : cpu_idx;
1643
1644 perf_evsel__remove_fd(pos, nr_cpus, nr_threads, thread_idx);
1645
1646 /*
1647 * Since fds for next evsel has not been created,
1648 * there is no need to iterate whole event list.
1649 */
1650 if (pos == evsel)
1651 break;
1652 }
1653 return 0;
1654}
1655
Jiri Olsaa359c172016-12-13 08:46:22 +01001656static bool ignore_missing_thread(struct perf_evsel *evsel,
Mengting Zhangca800062017-12-13 15:01:53 +08001657 int nr_cpus, int cpu,
Jiri Olsaa359c172016-12-13 08:46:22 +01001658 struct thread_map *threads,
1659 int thread, int err)
1660{
Mengting Zhangca800062017-12-13 15:01:53 +08001661 pid_t ignore_pid = thread_map__pid(threads, thread);
1662
Jiri Olsaa359c172016-12-13 08:46:22 +01001663 if (!evsel->ignore_missing_thread)
1664 return false;
1665
1666 /* The system wide setup does not work with threads. */
1667 if (evsel->system_wide)
1668 return false;
1669
1670 /* The -ESRCH is perf event syscall errno for pid's not found. */
1671 if (err != -ESRCH)
1672 return false;
1673
1674 /* If there's only one thread, let it fail. */
1675 if (threads->nr == 1)
1676 return false;
1677
Mengting Zhangca800062017-12-13 15:01:53 +08001678 /*
1679 * We should remove fd for missing_thread first
1680 * because thread_map__remove() will decrease threads->nr.
1681 */
1682 if (update_fds(evsel, nr_cpus, cpu, threads->nr, thread))
1683 return false;
1684
Jiri Olsaa359c172016-12-13 08:46:22 +01001685 if (thread_map__remove(threads, thread))
1686 return false;
1687
1688 pr_warning("WARNING: Ignored open failure for pid %d\n",
Mengting Zhangca800062017-12-13 15:01:53 +08001689 ignore_pid);
Jiri Olsaa359c172016-12-13 08:46:22 +01001690 return true;
1691}
1692
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001693int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
1694 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001695{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001696 int cpu, thread, nthreads;
Yann Droneaud57480d22014-06-30 22:28:47 +02001697 unsigned long flags = PERF_FLAG_FD_CLOEXEC;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001698 int pid = -1, err;
Andi Kleenbec19672013-08-04 19:41:26 -07001699 enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001700
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001701 if (perf_missing_features.write_backward && evsel->attr.write_backward)
1702 return -EINVAL;
1703
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001704 if (cpus == NULL) {
1705 static struct cpu_map *empty_cpu_map;
1706
1707 if (empty_cpu_map == NULL) {
1708 empty_cpu_map = cpu_map__dummy_new();
1709 if (empty_cpu_map == NULL)
1710 return -ENOMEM;
1711 }
1712
1713 cpus = empty_cpu_map;
1714 }
1715
1716 if (threads == NULL) {
1717 static struct thread_map *empty_thread_map;
1718
1719 if (empty_thread_map == NULL) {
1720 empty_thread_map = thread_map__new_by_tid(-1);
1721 if (empty_thread_map == NULL)
1722 return -ENOMEM;
1723 }
1724
1725 threads = empty_thread_map;
1726 }
1727
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001728 if (evsel->system_wide)
1729 nthreads = 1;
1730 else
1731 nthreads = threads->nr;
1732
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001733 if (evsel->fd == NULL &&
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001734 perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001735 return -ENOMEM;
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001736
Stephane Eranian023695d2011-02-14 11:20:01 +02001737 if (evsel->cgrp) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001738 flags |= PERF_FLAG_PID_CGROUP;
Stephane Eranian023695d2011-02-14 11:20:01 +02001739 pid = evsel->cgrp->fd;
1740 }
1741
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001742fallback_missing_features:
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001743 if (perf_missing_features.clockid_wrong)
1744 evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */
1745 if (perf_missing_features.clockid) {
1746 evsel->attr.use_clockid = 0;
1747 evsel->attr.clockid = 0;
1748 }
Yann Droneaud57480d22014-06-30 22:28:47 +02001749 if (perf_missing_features.cloexec)
1750 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001751 if (perf_missing_features.mmap2)
1752 evsel->attr.mmap2 = 0;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001753 if (perf_missing_features.exclude_guest)
1754 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001755 if (perf_missing_features.lbr_flags)
1756 evsel->attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1757 PERF_SAMPLE_BRANCH_NO_CYCLES);
Jiri Olsa82bf3112017-07-26 14:02:06 +02001758 if (perf_missing_features.group_read && evsel->attr.inherit)
1759 evsel->attr.read_format &= ~(PERF_FORMAT_GROUP|PERF_FORMAT_ID);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001760retry_sample_id:
1761 if (perf_missing_features.sample_id_all)
1762 evsel->attr.sample_id_all = 0;
1763
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001764 if (verbose >= 2) {
1765 fprintf(stderr, "%.60s\n", graph_dotted_line);
1766 fprintf(stderr, "perf_event_attr:\n");
1767 perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL);
1768 fprintf(stderr, "%.60s\n", graph_dotted_line);
1769 }
Adrian Huntere3e1a542013-08-14 15:48:24 +03001770
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -02001771 for (cpu = 0; cpu < cpus->nr; cpu++) {
Arnaldo Carvalho de Melo9d04f172011-01-12 00:08:18 -02001772
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001773 for (thread = 0; thread < nthreads; thread++) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001774 int fd, group_fd;
Stephane Eranian023695d2011-02-14 11:20:01 +02001775
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001776 if (!evsel->cgrp && !evsel->system_wide)
Jiri Olsae13798c2015-06-23 00:36:02 +02001777 pid = thread_map__pid(threads, thread);
Stephane Eranian023695d2011-02-14 11:20:01 +02001778
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001779 group_fd = get_group_fd(evsel, cpu, thread);
Andi Kleenbec19672013-08-04 19:41:26 -07001780retry_open:
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001781 pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx",
Adrian Huntere3e1a542013-08-14 15:48:24 +03001782 pid, cpus->map[cpu], group_fd, flags);
1783
Jiri Olsa10213e22017-07-03 16:50:18 +02001784 test_attr__ready();
1785
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001786 fd = sys_perf_event_open(&evsel->attr, pid, cpus->map[cpu],
1787 group_fd, flags);
1788
1789 FD(evsel, cpu, thread) = fd;
1790
1791 if (fd < 0) {
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001792 err = -errno;
Jiri Olsaa359c172016-12-13 08:46:22 +01001793
Mengting Zhangca800062017-12-13 15:01:53 +08001794 if (ignore_missing_thread(evsel, cpus->nr, cpu, threads, thread, err)) {
Jiri Olsaa359c172016-12-13 08:46:22 +01001795 /*
1796 * We just removed 1 thread, so take a step
1797 * back on thread index and lower the upper
1798 * nthreads limit.
1799 */
1800 nthreads--;
1801 thread--;
1802
1803 /* ... and pretend like nothing have happened. */
1804 err = 0;
1805 continue;
1806 }
1807
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001808 pr_debug2("\nsys_perf_event_open failed, error %d\n",
Adrian Hunterf852fd62013-11-01 15:51:29 +02001809 err);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001810 goto try_fallback;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001811 }
Wang Nan1f45b1d2015-10-14 12:41:18 +00001812
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001813 pr_debug2(" = %d\n", fd);
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001814
Wang Nan1f45b1d2015-10-14 12:41:18 +00001815 if (evsel->bpf_fd >= 0) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001816 int evt_fd = fd;
Wang Nan1f45b1d2015-10-14 12:41:18 +00001817 int bpf_fd = evsel->bpf_fd;
1818
1819 err = ioctl(evt_fd,
1820 PERF_EVENT_IOC_SET_BPF,
1821 bpf_fd);
1822 if (err && errno != EEXIST) {
1823 pr_err("failed to attach bpf fd %d: %s\n",
1824 bpf_fd, strerror(errno));
1825 err = -EINVAL;
1826 goto out_close;
1827 }
1828 }
1829
Andi Kleenbec19672013-08-04 19:41:26 -07001830 set_rlimit = NO_CHANGE;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001831
1832 /*
1833 * If we succeeded but had to kill clockid, fail and
1834 * have perf_evsel__open_strerror() print us a nice
1835 * error.
1836 */
1837 if (perf_missing_features.clockid ||
1838 perf_missing_features.clockid_wrong) {
1839 err = -EINVAL;
1840 goto out_close;
1841 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001842 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001843 }
1844
1845 return 0;
1846
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001847try_fallback:
Andi Kleenbec19672013-08-04 19:41:26 -07001848 /*
1849 * perf stat needs between 5 and 22 fds per CPU. When we run out
1850 * of them try to increase the limits.
1851 */
1852 if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1853 struct rlimit l;
1854 int old_errno = errno;
1855
1856 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1857 if (set_rlimit == NO_CHANGE)
1858 l.rlim_cur = l.rlim_max;
1859 else {
1860 l.rlim_cur = l.rlim_max + 1000;
1861 l.rlim_max = l.rlim_cur;
1862 }
1863 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1864 set_rlimit++;
1865 errno = old_errno;
1866 goto retry_open;
1867 }
1868 }
1869 errno = old_errno;
1870 }
1871
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001872 if (err != -EINVAL || cpu > 0 || thread > 0)
1873 goto out_close;
1874
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001875 /*
1876 * Must probe features in the order they were added to the
1877 * perf_event_attr interface.
1878 */
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001879 if (!perf_missing_features.write_backward && evsel->attr.write_backward) {
1880 perf_missing_features.write_backward = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001881 pr_debug2("switching off write_backward\n");
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001882 goto out_close;
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001883 } else if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) {
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001884 perf_missing_features.clockid_wrong = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001885 pr_debug2("switching off clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001886 goto fallback_missing_features;
1887 } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) {
1888 perf_missing_features.clockid = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001889 pr_debug2("switching off use_clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001890 goto fallback_missing_features;
1891 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001892 perf_missing_features.cloexec = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001893 pr_debug2("switching off cloexec flag\n");
Yann Droneaud57480d22014-06-30 22:28:47 +02001894 goto fallback_missing_features;
1895 } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001896 perf_missing_features.mmap2 = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001897 pr_debug2("switching off mmap2\n");
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001898 goto fallback_missing_features;
1899 } else if (!perf_missing_features.exclude_guest &&
1900 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001901 perf_missing_features.exclude_guest = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001902 pr_debug2("switching off exclude_guest, exclude_host\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001903 goto fallback_missing_features;
1904 } else if (!perf_missing_features.sample_id_all) {
1905 perf_missing_features.sample_id_all = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001906 pr_debug2("switching off sample_id_all\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001907 goto retry_sample_id;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001908 } else if (!perf_missing_features.lbr_flags &&
1909 (evsel->attr.branch_sample_type &
1910 (PERF_SAMPLE_BRANCH_NO_CYCLES |
1911 PERF_SAMPLE_BRANCH_NO_FLAGS))) {
1912 perf_missing_features.lbr_flags = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001913 pr_debug2("switching off branch sample type no (cycles/flags)\n");
Andi Kleenbd0f8892015-12-11 16:12:24 -08001914 goto fallback_missing_features;
Jiri Olsa82bf3112017-07-26 14:02:06 +02001915 } else if (!perf_missing_features.group_read &&
1916 evsel->attr.inherit &&
1917 (evsel->attr.read_format & PERF_FORMAT_GROUP)) {
1918 perf_missing_features.group_read = true;
1919 pr_debug2("switching off group read\n");
1920 goto fallback_missing_features;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001921 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001922out_close:
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001923 do {
1924 while (--thread >= 0) {
1925 close(FD(evsel, cpu, thread));
1926 FD(evsel, cpu, thread) = -1;
1927 }
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001928 thread = nthreads;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001929 } while (--cpu >= 0);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001930 return err;
1931}
1932
Andi Kleen475fb532017-08-11 16:26:17 -07001933void perf_evsel__close(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001934{
1935 if (evsel->fd == NULL)
1936 return;
1937
Andi Kleen475fb532017-08-11 16:26:17 -07001938 perf_evsel__close_fd(evsel);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001939 perf_evsel__free_fd(evsel);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001940}
1941
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001942int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001943 struct cpu_map *cpus)
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001944{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001945 return perf_evsel__open(evsel, cpus, NULL);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001946}
1947
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001948int perf_evsel__open_per_thread(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001949 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001950{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001951 return perf_evsel__open(evsel, NULL, threads);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001952}
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -02001953
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001954static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
1955 const union perf_event *event,
1956 struct perf_sample *sample)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001957{
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001958 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001959 const u64 *array = event->sample.array;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001960 bool swapped = evsel->needs_swap;
Jiri Olsa37073f92012-05-30 14:23:44 +02001961 union u64_swap u;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001962
1963 array += ((event->header.size -
1964 sizeof(event->header)) / sizeof(u64)) - 1;
1965
Adrian Hunter75562572013-08-27 11:23:09 +03001966 if (type & PERF_SAMPLE_IDENTIFIER) {
1967 sample->id = *array;
1968 array--;
1969 }
1970
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001971 if (type & PERF_SAMPLE_CPU) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001972 u.val64 = *array;
1973 if (swapped) {
1974 /* undo swap of u64, then swap on individual u32s */
1975 u.val64 = bswap_64(u.val64);
1976 u.val32[0] = bswap_32(u.val32[0]);
1977 }
1978
1979 sample->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001980 array--;
1981 }
1982
1983 if (type & PERF_SAMPLE_STREAM_ID) {
1984 sample->stream_id = *array;
1985 array--;
1986 }
1987
1988 if (type & PERF_SAMPLE_ID) {
1989 sample->id = *array;
1990 array--;
1991 }
1992
1993 if (type & PERF_SAMPLE_TIME) {
1994 sample->time = *array;
1995 array--;
1996 }
1997
1998 if (type & PERF_SAMPLE_TID) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001999 u.val64 = *array;
2000 if (swapped) {
2001 /* undo swap of u64, then swap on individual u32s */
2002 u.val64 = bswap_64(u.val64);
2003 u.val32[0] = bswap_32(u.val32[0]);
2004 u.val32[1] = bswap_32(u.val32[1]);
2005 }
2006
2007 sample->pid = u.val32[0];
2008 sample->tid = u.val32[1];
Adrian Hunterdd44bc62013-10-18 15:29:01 +03002009 array--;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002010 }
2011
2012 return 0;
2013}
2014
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002015static inline bool overflow(const void *endp, u16 max_size, const void *offset,
2016 u64 size)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002017{
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002018 return size > max_size || offset + size > endp;
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002019}
2020
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002021#define OVERFLOW_CHECK(offset, size, max_size) \
2022 do { \
2023 if (overflow(endp, (max_size), (offset), (size))) \
2024 return -EFAULT; \
2025 } while (0)
2026
2027#define OVERFLOW_CHECK_u64(offset) \
2028 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
2029
Jiri Olsa01468122017-08-03 13:10:28 +02002030static int
2031perf_event__check_size(union perf_event *event, unsigned int sample_size)
2032{
2033 /*
2034 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
2035 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
2036 * check the format does not go past the end of the event.
2037 */
2038 if (sample_size + sizeof(event->header) > event->header.size)
2039 return -EFAULT;
2040
2041 return 0;
2042}
2043
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002044int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002045 struct perf_sample *data)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002046{
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002047 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002048 bool swapped = evsel->needs_swap;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002049 const u64 *array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002050 u16 max_size = event->header.size;
2051 const void *endp = (void *)event + max_size;
2052 u64 sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002053
David Ahern936be502011-09-06 09:12:26 -06002054 /*
2055 * used for cross-endian analysis. See git commit 65014ab3
2056 * for why this goofiness is needed.
2057 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002058 union u64_swap u;
David Ahern936be502011-09-06 09:12:26 -06002059
Robert Richterf3bda2c2011-12-15 17:32:39 +01002060 memset(data, 0, sizeof(*data));
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002061 data->cpu = data->pid = data->tid = -1;
2062 data->stream_id = data->id = data->time = -1ULL;
Jiri Olsabc529082014-02-03 12:44:41 +01002063 data->period = evsel->attr.sample_period;
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03002064 data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Jiri Olsa28a0b392018-01-07 17:03:52 +01002065 data->misc = event->header.misc;
Jiri Olsa3ad31d82017-08-03 16:07:05 +02002066 data->id = -1ULL;
2067 data->data_src = PERF_MEM_DATA_SRC_NONE;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002068
2069 if (event->header.type != PERF_RECORD_SAMPLE) {
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002070 if (!evsel->attr.sample_id_all)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002071 return 0;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002072 return perf_evsel__parse_id_sample(evsel, event, data);
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002073 }
2074
2075 array = event->sample.array;
2076
Jiri Olsa01468122017-08-03 13:10:28 +02002077 if (perf_event__check_size(event, evsel->sample_size))
Frederic Weisbeckera2854122011-05-21 19:33:04 +02002078 return -EFAULT;
2079
Adrian Hunter75562572013-08-27 11:23:09 +03002080 if (type & PERF_SAMPLE_IDENTIFIER) {
2081 data->id = *array;
2082 array++;
2083 }
2084
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002085 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002086 data->ip = *array;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002087 array++;
2088 }
2089
2090 if (type & PERF_SAMPLE_TID) {
David Ahern936be502011-09-06 09:12:26 -06002091 u.val64 = *array;
2092 if (swapped) {
2093 /* undo swap of u64, then swap on individual u32s */
2094 u.val64 = bswap_64(u.val64);
2095 u.val32[0] = bswap_32(u.val32[0]);
2096 u.val32[1] = bswap_32(u.val32[1]);
2097 }
2098
2099 data->pid = u.val32[0];
2100 data->tid = u.val32[1];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002101 array++;
2102 }
2103
2104 if (type & PERF_SAMPLE_TIME) {
2105 data->time = *array;
2106 array++;
2107 }
2108
2109 if (type & PERF_SAMPLE_ADDR) {
2110 data->addr = *array;
2111 array++;
2112 }
2113
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002114 if (type & PERF_SAMPLE_ID) {
2115 data->id = *array;
2116 array++;
2117 }
2118
2119 if (type & PERF_SAMPLE_STREAM_ID) {
2120 data->stream_id = *array;
2121 array++;
2122 }
2123
2124 if (type & PERF_SAMPLE_CPU) {
David Ahern936be502011-09-06 09:12:26 -06002125
2126 u.val64 = *array;
2127 if (swapped) {
2128 /* undo swap of u64, then swap on individual u32s */
2129 u.val64 = bswap_64(u.val64);
2130 u.val32[0] = bswap_32(u.val32[0]);
2131 }
2132
2133 data->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002134 array++;
2135 }
2136
2137 if (type & PERF_SAMPLE_PERIOD) {
2138 data->period = *array;
2139 array++;
2140 }
2141
2142 if (type & PERF_SAMPLE_READ) {
Jiri Olsa9ede4732012-10-10 17:38:13 +02002143 u64 read_format = evsel->attr.read_format;
2144
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002145 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002146 if (read_format & PERF_FORMAT_GROUP)
2147 data->read.group.nr = *array;
2148 else
2149 data->read.one.value = *array;
2150
2151 array++;
2152
2153 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002154 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002155 data->read.time_enabled = *array;
2156 array++;
2157 }
2158
2159 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002160 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002161 data->read.time_running = *array;
2162 array++;
2163 }
2164
2165 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2166 if (read_format & PERF_FORMAT_GROUP) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002167 const u64 max_group_nr = UINT64_MAX /
2168 sizeof(struct sample_read_value);
2169
2170 if (data->read.group.nr > max_group_nr)
2171 return -EFAULT;
2172 sz = data->read.group.nr *
2173 sizeof(struct sample_read_value);
2174 OVERFLOW_CHECK(array, sz, max_size);
2175 data->read.group.values =
2176 (struct sample_read_value *)array;
2177 array = (void *)array + sz;
Jiri Olsa9ede4732012-10-10 17:38:13 +02002178 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002179 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002180 data->read.one.id = *array;
2181 array++;
2182 }
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002183 }
2184
2185 if (type & PERF_SAMPLE_CALLCHAIN) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002186 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
2187
2188 OVERFLOW_CHECK_u64(array);
2189 data->callchain = (struct ip_callchain *)array++;
2190 if (data->callchain->nr > max_callchain_nr)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002191 return -EFAULT;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002192 sz = data->callchain->nr * sizeof(u64);
2193 OVERFLOW_CHECK(array, sz, max_size);
2194 array = (void *)array + sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002195 }
2196
2197 if (type & PERF_SAMPLE_RAW) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002198 OVERFLOW_CHECK_u64(array);
David Ahern936be502011-09-06 09:12:26 -06002199 u.val64 = *array;
Jiri Olsaf9d8adb2017-11-29 19:43:46 +01002200
2201 /*
2202 * Undo swap of u64, then swap on individual u32s,
2203 * get the size of the raw area and undo all of the
2204 * swap. The pevent interface handles endianity by
2205 * itself.
2206 */
2207 if (swapped) {
David Ahern936be502011-09-06 09:12:26 -06002208 u.val64 = bswap_64(u.val64);
2209 u.val32[0] = bswap_32(u.val32[0]);
2210 u.val32[1] = bswap_32(u.val32[1]);
2211 }
David Ahern936be502011-09-06 09:12:26 -06002212 data->raw_size = u.val32[0];
Jiri Olsaf9d8adb2017-11-29 19:43:46 +01002213
2214 /*
2215 * The raw data is aligned on 64bits including the
2216 * u32 size, so it's safe to use mem_bswap_64.
2217 */
2218 if (swapped)
2219 mem_bswap_64((void *) array, data->raw_size);
2220
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002221 array = (void *)array + sizeof(u32);
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002222
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002223 OVERFLOW_CHECK(array, data->raw_size, max_size);
2224 data->raw_data = (void *)array;
2225 array = (void *)array + data->raw_size;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002226 }
2227
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002228 if (type & PERF_SAMPLE_BRANCH_STACK) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002229 const u64 max_branch_nr = UINT64_MAX /
2230 sizeof(struct branch_entry);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002231
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002232 OVERFLOW_CHECK_u64(array);
2233 data->branch_stack = (struct branch_stack *)array++;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002234
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002235 if (data->branch_stack->nr > max_branch_nr)
2236 return -EFAULT;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002237 sz = data->branch_stack->nr * sizeof(struct branch_entry);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002238 OVERFLOW_CHECK(array, sz, max_size);
2239 array = (void *)array + sz;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002240 }
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002241
2242 if (type & PERF_SAMPLE_REGS_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002243 OVERFLOW_CHECK_u64(array);
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002244 data->user_regs.abi = *array;
2245 array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002246
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002247 if (data->user_regs.abi) {
Jiri Olsa352ea452014-01-07 13:47:25 +01002248 u64 mask = evsel->attr.sample_regs_user;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002249
Jiri Olsa352ea452014-01-07 13:47:25 +01002250 sz = hweight_long(mask) * sizeof(u64);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002251 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa352ea452014-01-07 13:47:25 +01002252 data->user_regs.mask = mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002253 data->user_regs.regs = (u64 *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002254 array = (void *)array + sz;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002255 }
2256 }
2257
2258 if (type & PERF_SAMPLE_STACK_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002259 OVERFLOW_CHECK_u64(array);
2260 sz = *array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002261
2262 data->user_stack.offset = ((char *)(array - 1)
2263 - (char *) event);
2264
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002265 if (!sz) {
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002266 data->user_stack.size = 0;
2267 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002268 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002269 data->user_stack.data = (char *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002270 array = (void *)array + sz;
2271 OVERFLOW_CHECK_u64(array);
Adrian Hunter54bd2692013-07-04 16:20:34 +03002272 data->user_stack.size = *array++;
Jiri Olsaa65cb4b2013-10-02 15:46:39 +02002273 if (WARN_ONCE(data->user_stack.size > sz,
2274 "user stack dump failure\n"))
2275 return -EFAULT;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002276 }
2277 }
2278
Andi Kleen05484292013-01-24 16:10:29 +01002279 if (type & PERF_SAMPLE_WEIGHT) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002280 OVERFLOW_CHECK_u64(array);
Andi Kleen05484292013-01-24 16:10:29 +01002281 data->weight = *array;
2282 array++;
2283 }
2284
Stephane Eranian98a3b322013-01-24 16:10:35 +01002285 if (type & PERF_SAMPLE_DATA_SRC) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002286 OVERFLOW_CHECK_u64(array);
Stephane Eranian98a3b322013-01-24 16:10:35 +01002287 data->data_src = *array;
2288 array++;
2289 }
2290
Andi Kleen475eeab2013-09-20 07:40:43 -07002291 if (type & PERF_SAMPLE_TRANSACTION) {
Adrian Hunter87b95522013-11-01 15:51:36 +02002292 OVERFLOW_CHECK_u64(array);
Andi Kleen475eeab2013-09-20 07:40:43 -07002293 data->transaction = *array;
2294 array++;
2295 }
2296
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002297 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2298 if (type & PERF_SAMPLE_REGS_INTR) {
2299 OVERFLOW_CHECK_u64(array);
2300 data->intr_regs.abi = *array;
2301 array++;
2302
2303 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2304 u64 mask = evsel->attr.sample_regs_intr;
2305
2306 sz = hweight_long(mask) * sizeof(u64);
2307 OVERFLOW_CHECK(array, sz, max_size);
2308 data->intr_regs.mask = mask;
2309 data->intr_regs.regs = (u64 *)array;
2310 array = (void *)array + sz;
2311 }
2312 }
2313
Kan Liang3b0a5da2017-08-29 13:11:08 -04002314 data->phys_addr = 0;
2315 if (type & PERF_SAMPLE_PHYS_ADDR) {
2316 data->phys_addr = *array;
2317 array++;
2318 }
2319
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002320 return 0;
2321}
Andrew Vagin74eec262011-11-28 12:03:31 +03002322
Jiri Olsa01468122017-08-03 13:10:28 +02002323int perf_evsel__parse_sample_timestamp(struct perf_evsel *evsel,
2324 union perf_event *event,
2325 u64 *timestamp)
2326{
2327 u64 type = evsel->attr.sample_type;
2328 const u64 *array;
2329
2330 if (!(type & PERF_SAMPLE_TIME))
2331 return -1;
2332
2333 if (event->header.type != PERF_RECORD_SAMPLE) {
2334 struct perf_sample data = {
2335 .time = -1ULL,
2336 };
2337
2338 if (!evsel->attr.sample_id_all)
2339 return -1;
2340 if (perf_evsel__parse_id_sample(evsel, event, &data))
2341 return -1;
2342
2343 *timestamp = data.time;
2344 return 0;
2345 }
2346
2347 array = event->sample.array;
2348
2349 if (perf_event__check_size(event, evsel->sample_size))
2350 return -EFAULT;
2351
2352 if (type & PERF_SAMPLE_IDENTIFIER)
2353 array++;
2354
2355 if (type & PERF_SAMPLE_IP)
2356 array++;
2357
2358 if (type & PERF_SAMPLE_TID)
2359 array++;
2360
2361 if (type & PERF_SAMPLE_TIME)
2362 *timestamp = *array;
2363
2364 return 0;
2365}
2366
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002367size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002368 u64 read_format)
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002369{
2370 size_t sz, result = sizeof(struct sample_event);
2371
2372 if (type & PERF_SAMPLE_IDENTIFIER)
2373 result += sizeof(u64);
2374
2375 if (type & PERF_SAMPLE_IP)
2376 result += sizeof(u64);
2377
2378 if (type & PERF_SAMPLE_TID)
2379 result += sizeof(u64);
2380
2381 if (type & PERF_SAMPLE_TIME)
2382 result += sizeof(u64);
2383
2384 if (type & PERF_SAMPLE_ADDR)
2385 result += sizeof(u64);
2386
2387 if (type & PERF_SAMPLE_ID)
2388 result += sizeof(u64);
2389
2390 if (type & PERF_SAMPLE_STREAM_ID)
2391 result += sizeof(u64);
2392
2393 if (type & PERF_SAMPLE_CPU)
2394 result += sizeof(u64);
2395
2396 if (type & PERF_SAMPLE_PERIOD)
2397 result += sizeof(u64);
2398
2399 if (type & PERF_SAMPLE_READ) {
2400 result += sizeof(u64);
2401 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2402 result += sizeof(u64);
2403 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2404 result += sizeof(u64);
2405 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2406 if (read_format & PERF_FORMAT_GROUP) {
2407 sz = sample->read.group.nr *
2408 sizeof(struct sample_read_value);
2409 result += sz;
2410 } else {
2411 result += sizeof(u64);
2412 }
2413 }
2414
2415 if (type & PERF_SAMPLE_CALLCHAIN) {
2416 sz = (sample->callchain->nr + 1) * sizeof(u64);
2417 result += sz;
2418 }
2419
2420 if (type & PERF_SAMPLE_RAW) {
2421 result += sizeof(u32);
2422 result += sample->raw_size;
2423 }
2424
2425 if (type & PERF_SAMPLE_BRANCH_STACK) {
2426 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2427 sz += sizeof(u64);
2428 result += sz;
2429 }
2430
2431 if (type & PERF_SAMPLE_REGS_USER) {
2432 if (sample->user_regs.abi) {
2433 result += sizeof(u64);
Jiri Olsa352ea452014-01-07 13:47:25 +01002434 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002435 result += sz;
2436 } else {
2437 result += sizeof(u64);
2438 }
2439 }
2440
2441 if (type & PERF_SAMPLE_STACK_USER) {
2442 sz = sample->user_stack.size;
2443 result += sizeof(u64);
2444 if (sz) {
2445 result += sz;
2446 result += sizeof(u64);
2447 }
2448 }
2449
2450 if (type & PERF_SAMPLE_WEIGHT)
2451 result += sizeof(u64);
2452
2453 if (type & PERF_SAMPLE_DATA_SRC)
2454 result += sizeof(u64);
2455
Adrian Hunter42d88912013-11-01 15:51:38 +02002456 if (type & PERF_SAMPLE_TRANSACTION)
2457 result += sizeof(u64);
2458
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002459 if (type & PERF_SAMPLE_REGS_INTR) {
2460 if (sample->intr_regs.abi) {
2461 result += sizeof(u64);
2462 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2463 result += sz;
2464 } else {
2465 result += sizeof(u64);
2466 }
2467 }
2468
Kan Liang3b0a5da2017-08-29 13:11:08 -04002469 if (type & PERF_SAMPLE_PHYS_ADDR)
2470 result += sizeof(u64);
2471
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002472 return result;
2473}
2474
Andrew Vagin74eec262011-11-28 12:03:31 +03002475int perf_event__synthesize_sample(union perf_event *event, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002476 u64 read_format,
Adrian Hunter936f1f32018-01-16 15:14:52 +02002477 const struct perf_sample *sample)
Andrew Vagin74eec262011-11-28 12:03:31 +03002478{
2479 u64 *array;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002480 size_t sz;
Andrew Vagin74eec262011-11-28 12:03:31 +03002481 /*
2482 * used for cross-endian analysis. See git commit 65014ab3
2483 * for why this goofiness is needed.
2484 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002485 union u64_swap u;
Andrew Vagin74eec262011-11-28 12:03:31 +03002486
2487 array = event->sample.array;
2488
Adrian Hunter75562572013-08-27 11:23:09 +03002489 if (type & PERF_SAMPLE_IDENTIFIER) {
2490 *array = sample->id;
2491 array++;
2492 }
2493
Andrew Vagin74eec262011-11-28 12:03:31 +03002494 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002495 *array = sample->ip;
Andrew Vagin74eec262011-11-28 12:03:31 +03002496 array++;
2497 }
2498
2499 if (type & PERF_SAMPLE_TID) {
2500 u.val32[0] = sample->pid;
2501 u.val32[1] = sample->tid;
Andrew Vagin74eec262011-11-28 12:03:31 +03002502 *array = u.val64;
2503 array++;
2504 }
2505
2506 if (type & PERF_SAMPLE_TIME) {
2507 *array = sample->time;
2508 array++;
2509 }
2510
2511 if (type & PERF_SAMPLE_ADDR) {
2512 *array = sample->addr;
2513 array++;
2514 }
2515
2516 if (type & PERF_SAMPLE_ID) {
2517 *array = sample->id;
2518 array++;
2519 }
2520
2521 if (type & PERF_SAMPLE_STREAM_ID) {
2522 *array = sample->stream_id;
2523 array++;
2524 }
2525
2526 if (type & PERF_SAMPLE_CPU) {
2527 u.val32[0] = sample->cpu;
Adrian Hunter59a87fd2018-01-16 15:14:51 +02002528 u.val32[1] = 0;
Andrew Vagin74eec262011-11-28 12:03:31 +03002529 *array = u.val64;
2530 array++;
2531 }
2532
2533 if (type & PERF_SAMPLE_PERIOD) {
2534 *array = sample->period;
2535 array++;
2536 }
2537
Adrian Hunterd03f2172013-08-27 11:23:11 +03002538 if (type & PERF_SAMPLE_READ) {
2539 if (read_format & PERF_FORMAT_GROUP)
2540 *array = sample->read.group.nr;
2541 else
2542 *array = sample->read.one.value;
2543 array++;
2544
2545 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2546 *array = sample->read.time_enabled;
2547 array++;
2548 }
2549
2550 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2551 *array = sample->read.time_running;
2552 array++;
2553 }
2554
2555 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2556 if (read_format & PERF_FORMAT_GROUP) {
2557 sz = sample->read.group.nr *
2558 sizeof(struct sample_read_value);
2559 memcpy(array, sample->read.group.values, sz);
2560 array = (void *)array + sz;
2561 } else {
2562 *array = sample->read.one.id;
2563 array++;
2564 }
2565 }
2566
2567 if (type & PERF_SAMPLE_CALLCHAIN) {
2568 sz = (sample->callchain->nr + 1) * sizeof(u64);
2569 memcpy(array, sample->callchain, sz);
2570 array = (void *)array + sz;
2571 }
2572
2573 if (type & PERF_SAMPLE_RAW) {
2574 u.val32[0] = sample->raw_size;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002575 *array = u.val64;
2576 array = (void *)array + sizeof(u32);
2577
2578 memcpy(array, sample->raw_data, sample->raw_size);
2579 array = (void *)array + sample->raw_size;
2580 }
2581
2582 if (type & PERF_SAMPLE_BRANCH_STACK) {
2583 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2584 sz += sizeof(u64);
2585 memcpy(array, sample->branch_stack, sz);
2586 array = (void *)array + sz;
2587 }
2588
2589 if (type & PERF_SAMPLE_REGS_USER) {
2590 if (sample->user_regs.abi) {
2591 *array++ = sample->user_regs.abi;
Jiri Olsa352ea452014-01-07 13:47:25 +01002592 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterd03f2172013-08-27 11:23:11 +03002593 memcpy(array, sample->user_regs.regs, sz);
2594 array = (void *)array + sz;
2595 } else {
2596 *array++ = 0;
2597 }
2598 }
2599
2600 if (type & PERF_SAMPLE_STACK_USER) {
2601 sz = sample->user_stack.size;
2602 *array++ = sz;
2603 if (sz) {
2604 memcpy(array, sample->user_stack.data, sz);
2605 array = (void *)array + sz;
2606 *array++ = sz;
2607 }
2608 }
2609
2610 if (type & PERF_SAMPLE_WEIGHT) {
2611 *array = sample->weight;
2612 array++;
2613 }
2614
2615 if (type & PERF_SAMPLE_DATA_SRC) {
2616 *array = sample->data_src;
2617 array++;
2618 }
2619
Adrian Hunter42d88912013-11-01 15:51:38 +02002620 if (type & PERF_SAMPLE_TRANSACTION) {
2621 *array = sample->transaction;
2622 array++;
2623 }
2624
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002625 if (type & PERF_SAMPLE_REGS_INTR) {
2626 if (sample->intr_regs.abi) {
2627 *array++ = sample->intr_regs.abi;
2628 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2629 memcpy(array, sample->intr_regs.regs, sz);
2630 array = (void *)array + sz;
2631 } else {
2632 *array++ = 0;
2633 }
2634 }
2635
Kan Liang3b0a5da2017-08-29 13:11:08 -04002636 if (type & PERF_SAMPLE_PHYS_ADDR) {
2637 *array = sample->phys_addr;
2638 array++;
2639 }
2640
Andrew Vagin74eec262011-11-28 12:03:31 +03002641 return 0;
2642}
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002643
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002644struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
2645{
2646 return pevent_find_field(evsel->tp_format, name);
2647}
2648
Arnaldo Carvalho de Melo5d2074e2012-09-26 20:22:00 -03002649void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002650 const char *name)
2651{
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002652 struct format_field *field = perf_evsel__field(evsel, name);
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002653 int offset;
2654
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002655 if (!field)
2656 return NULL;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002657
2658 offset = field->offset;
2659
2660 if (field->flags & FIELD_IS_DYNAMIC) {
2661 offset = *(int *)(sample->raw_data + field->offset);
2662 offset &= 0xffff;
2663 }
2664
2665 return sample->raw_data + offset;
2666}
2667
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002668u64 format_field__intval(struct format_field *field, struct perf_sample *sample,
2669 bool needs_swap)
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002670{
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002671 u64 value;
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002672 void *ptr = sample->raw_data + field->offset;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002673
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002674 switch (field->size) {
2675 case 1:
2676 return *(u8 *)ptr;
2677 case 2:
2678 value = *(u16 *)ptr;
2679 break;
2680 case 4:
2681 value = *(u32 *)ptr;
2682 break;
2683 case 8:
David Aherne94eeda2015-03-24 16:14:09 -04002684 memcpy(&value, ptr, sizeof(u64));
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002685 break;
2686 default:
2687 return 0;
2688 }
2689
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002690 if (!needs_swap)
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002691 return value;
2692
2693 switch (field->size) {
2694 case 2:
2695 return bswap_16(value);
2696 case 4:
2697 return bswap_32(value);
2698 case 8:
2699 return bswap_64(value);
2700 default:
2701 return 0;
2702 }
2703
2704 return 0;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002705}
Arnaldo Carvalho de Melo0698aed2012-12-10 18:17:08 -03002706
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002707u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
2708 const char *name)
2709{
2710 struct format_field *field = perf_evsel__field(evsel, name);
2711
2712 if (!field)
2713 return 0;
2714
2715 return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2716}
2717
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002718bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
2719 char *msg, size_t msgsize)
2720{
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002721 int paranoid;
2722
David Ahern2b821cc2013-07-18 17:27:59 -06002723 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002724 evsel->attr.type == PERF_TYPE_HARDWARE &&
2725 evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2726 /*
2727 * If it's cycles then fall back to hrtimer based
2728 * cpu-clock-tick sw counter, which is always available even if
2729 * no PMU support.
2730 *
2731 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2732 * b0a873e).
2733 */
2734 scnprintf(msg, msgsize, "%s",
2735"The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2736
2737 evsel->attr.type = PERF_TYPE_SOFTWARE;
2738 evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK;
2739
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03002740 zfree(&evsel->name);
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002741 return true;
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002742 } else if (err == EACCES && !evsel->attr.exclude_kernel &&
2743 (paranoid = perf_event_paranoid()) > 1) {
2744 const char *name = perf_evsel__name(evsel);
2745 char *new_name;
2746
2747 if (asprintf(&new_name, "%s%su", name, strchr(name, ':') ? "" : ":") < 0)
2748 return false;
2749
2750 if (evsel->name)
2751 free(evsel->name);
2752 evsel->name = new_name;
2753 scnprintf(msg, msgsize,
2754"kernel.perf_event_paranoid=%d, trying to fall back to excluding kernel samples", paranoid);
2755 evsel->attr.exclude_kernel = 1;
2756
2757 return true;
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002758 }
2759
2760 return false;
2761}
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002762
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -03002763static bool find_process(const char *name)
2764{
2765 size_t len = strlen(name);
2766 DIR *dir;
2767 struct dirent *d;
2768 int ret = -1;
2769
2770 dir = opendir(procfs__mountpoint());
2771 if (!dir)
2772 return false;
2773
2774 /* Walk through the directory. */
2775 while (ret && (d = readdir(dir)) != NULL) {
2776 char path[PATH_MAX];
2777 char *data;
2778 size_t size;
2779
2780 if ((d->d_type != DT_DIR) ||
2781 !strcmp(".", d->d_name) ||
2782 !strcmp("..", d->d_name))
2783 continue;
2784
2785 scnprintf(path, sizeof(path), "%s/%s/comm",
2786 procfs__mountpoint(), d->d_name);
2787
2788 if (filename__read_str(path, &data, &size))
2789 continue;
2790
2791 ret = strncmp(name, data, len);
2792 free(data);
2793 }
2794
2795 closedir(dir);
2796 return ret ? false : true;
2797}
2798
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002799int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002800 int err, char *msg, size_t size)
2801{
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002802 char sbuf[STRERR_BUFSIZE];
Jin Yao32ccb132017-04-07 20:08:52 +08002803 int printed = 0;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002804
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002805 switch (err) {
2806 case EPERM:
2807 case EACCES:
Jin Yao32ccb132017-04-07 20:08:52 +08002808 if (err == EPERM)
2809 printed = scnprintf(msg, size,
2810 "No permission to enable %s event.\n\n",
2811 perf_evsel__name(evsel));
2812
2813 return scnprintf(msg + printed, size - printed,
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002814 "You may not have permission to collect %sstats.\n\n"
2815 "Consider tweaking /proc/sys/kernel/perf_event_paranoid,\n"
2816 "which controls use of the performance events system by\n"
2817 "unprivileged users (without CAP_SYS_ADMIN).\n\n"
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002818 "The current value is %d:\n\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002819 " -1: Allow use of (almost) all events by all users\n"
Konstantin Khlebnikovac0bb6b2017-08-20 14:39:20 +03002820 " Ignore mlock limit after perf_event_mlock_kb without CAP_IPC_LOCK\n"
2821 ">= 0: Disallow ftrace function tracepoint by users without CAP_SYS_ADMIN\n"
2822 " Disallow raw tracepoint access by users without CAP_SYS_ADMIN\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002823 ">= 1: Disallow CPU event access by users without CAP_SYS_ADMIN\n"
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -03002824 ">= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN\n\n"
2825 "To make this setting permanent, edit /etc/sysctl.conf too, e.g.:\n\n"
2826 " kernel.perf_event_paranoid = -1\n" ,
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002827 target->system_wide ? "system-wide " : "",
2828 perf_event_paranoid());
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002829 case ENOENT:
2830 return scnprintf(msg, size, "The %s event is not supported.",
2831 perf_evsel__name(evsel));
2832 case EMFILE:
2833 return scnprintf(msg, size, "%s",
2834 "Too many events are opened.\n"
Jiri Olsa18ffdfe2015-05-25 22:51:54 +02002835 "Probably the maximum number of open file descriptors has been reached.\n"
2836 "Hint: Try again after reducing the number of events.\n"
2837 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
Arnaldo Carvalho de Melode46d522016-04-27 17:51:45 -03002838 case ENOMEM:
2839 if ((evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0 &&
2840 access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2841 return scnprintf(msg, size,
2842 "Not enough memory to setup event with callchain.\n"
2843 "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2844 "Hint: Current value: %d", sysctl_perf_event_max_stack);
2845 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002846 case ENODEV:
2847 if (target->cpu_list)
2848 return scnprintf(msg, size, "%s",
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002849 "No such device - did you specify an out-of-range profile CPU?");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002850 break;
2851 case EOPNOTSUPP:
Vineet Guptadc89e752016-05-09 15:07:39 +05302852 if (evsel->attr.sample_period != 0)
Kim Phillips114bc192017-11-14 15:04:52 -06002853 return scnprintf(msg, size,
2854 "%s: PMU Hardware doesn't support sampling/overflow-interrupts. Try 'perf stat'",
2855 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002856 if (evsel->attr.precise_ip)
2857 return scnprintf(msg, size, "%s",
2858 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2859#if defined(__i386__) || defined(__x86_64__)
2860 if (evsel->attr.type == PERF_TYPE_HARDWARE)
2861 return scnprintf(msg, size, "%s",
2862 "No hardware sampling interrupt available.\n"
2863 "No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.");
2864#endif
2865 break;
Jiri Olsa63914ac2014-08-01 17:46:54 +02002866 case EBUSY:
2867 if (find_process("oprofiled"))
2868 return scnprintf(msg, size,
2869 "The PMU counters are busy/taken by another profiler.\n"
2870 "We found oprofile daemon running, please stop it and try again.");
2871 break;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002872 case EINVAL:
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00002873 if (evsel->attr.write_backward && perf_missing_features.write_backward)
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00002874 return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002875 if (perf_missing_features.clockid)
2876 return scnprintf(msg, size, "clockid feature not supported.");
2877 if (perf_missing_features.clockid_wrong)
2878 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2879 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002880 default:
2881 break;
2882 }
2883
2884 return scnprintf(msg, size,
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002885 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002886 "/bin/dmesg may provide additional information.\n"
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002887 "No CONFIG_PERF_EVENTS=y kernel support configured?",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03002888 err, str_error_r(err, sbuf, sizeof(sbuf)),
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002889 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002890}
Ravi Bangoriaf4e47f92016-06-30 11:44:19 +05302891
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03002892struct perf_env *perf_evsel__env(struct perf_evsel *evsel)
Jin Yao69fb09f2017-07-07 13:06:34 +08002893{
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03002894 if (evsel && evsel->evlist)
2895 return evsel->evlist->env;
Jin Yao69fb09f2017-07-07 13:06:34 +08002896 return NULL;
2897}