blob: ff359c9ece2e76c3d15fb8d2acf36e4c3bf8ade6 [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
Andi Kleen8affc2b2014-07-31 14:45:04 +0800974 /*
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800975 * When the user explicitly disabled time don't force it here.
Andi Kleen8affc2b2014-07-31 14:45:04 +0800976 */
977 if (opts->sample_time &&
978 (!perf_missing_features.sample_id_all &&
Adrian Hunter3abebc52015-07-06 14:51:01 +0300979 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu ||
980 opts->sample_time_set)))
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300981 perf_evsel__set_sample_bit(evsel, TIME);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200982
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300983 if (opts->raw_samples && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -0300984 perf_evsel__set_sample_bit(evsel, TIME);
985 perf_evsel__set_sample_bit(evsel, RAW);
986 perf_evsel__set_sample_bit(evsel, CPU);
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200987 }
988
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100989 if (opts->sample_address)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +0200990 perf_evsel__set_sample_bit(evsel, DATA_SRC);
Stephane Eranianccf49bf2013-01-24 16:10:37 +0100991
Kan Liang3b0a5da2017-08-29 13:11:08 -0400992 if (opts->sample_phys_addr)
993 perf_evsel__set_sample_bit(evsel, PHYS_ADDR);
994
Arnaldo Carvalho de Melo509051e2014-01-14 17:52:14 -0300995 if (opts->no_buffering) {
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -0200996 attr->watermark = 0;
997 attr->wakeup_events = 1;
998 }
Adrian Hunter6ff1ce72014-07-14 13:02:56 +0300999 if (opts->branch_stack && !evsel->no_aux_samples) {
Arnaldo Carvalho de Melo7be5ebe2012-12-10 14:53:43 -03001000 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
Roberto Agostino Vitillobdfebd82012-02-09 23:21:02 +01001001 attr->branch_sample_type = opts->branch_stack;
1002 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001003
Andi Kleen05484292013-01-24 16:10:29 +01001004 if (opts->sample_weight)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +02001005 perf_evsel__set_sample_bit(evsel, WEIGHT);
Andi Kleen05484292013-01-24 16:10:29 +01001006
Namhyung Kim62e503b2015-01-29 17:06:46 +09001007 attr->task = track;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001008 attr->mmap = track;
Don Zickusa5a5ba72014-05-30 10:49:42 -04001009 attr->mmap2 = track && !perf_missing_features.mmap2;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001010 attr->comm = track;
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001011
Hari Bathinif3b36142017-03-08 02:11:43 +05301012 if (opts->record_namespaces)
1013 attr->namespaces = track;
1014
Adrian Hunterb757bb02015-07-21 12:44:04 +03001015 if (opts->record_switch_events)
1016 attr->context_switch = track;
1017
Andi Kleen475eeab2013-09-20 07:40:43 -07001018 if (opts->sample_transaction)
Adrian Hunter1e7ed5e2013-11-01 15:51:35 +02001019 perf_evsel__set_sample_bit(evsel, TRANSACTION);
Andi Kleen475eeab2013-09-20 07:40:43 -07001020
Andi Kleen85c273d2015-02-24 15:13:40 -08001021 if (opts->running_time) {
1022 evsel->attr.read_format |=
1023 PERF_FORMAT_TOTAL_TIME_ENABLED |
1024 PERF_FORMAT_TOTAL_TIME_RUNNING;
1025 }
1026
Jiri Olsa774cb492012-11-12 18:34:01 +01001027 /*
1028 * XXX see the function comment above
1029 *
1030 * Disabling only independent events or group leaders,
1031 * keeping group members enabled.
1032 */
Namhyung Kim823254e2012-11-29 15:38:30 +09001033 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa774cb492012-11-12 18:34:01 +01001034 attr->disabled = 1;
1035
1036 /*
1037 * Setting enable_on_exec for independent events and
1038 * group leaders for traced executed by perf.
1039 */
Andi Kleen6619a532014-01-11 13:38:27 -08001040 if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) &&
1041 !opts->initial_delay)
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001042 attr->enable_on_exec = 1;
Adrian Hunter2afd2bc2014-07-14 13:02:57 +03001043
1044 if (evsel->immediate) {
1045 attr->disabled = 0;
1046 attr->enable_on_exec = 0;
1047 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001048
1049 clockid = opts->clockid;
1050 if (opts->use_clockid) {
1051 attr->use_clockid = 1;
1052 attr->clockid = opts->clockid;
1053 }
Jiri Olsa930a2e22015-07-29 05:42:10 -04001054
Jiri Olsa7f94af72015-10-05 20:06:05 +02001055 if (evsel->precise_max)
1056 perf_event_attr__set_max_precise_ip(attr);
1057
Jiri Olsa85723882016-02-15 09:34:31 +01001058 if (opts->all_user) {
1059 attr->exclude_kernel = 1;
1060 attr->exclude_user = 0;
1061 }
1062
1063 if (opts->all_kernel) {
1064 attr->exclude_kernel = 0;
1065 attr->exclude_user = 1;
1066 }
1067
Jiri Olsa930a2e22015-07-29 05:42:10 -04001068 /*
1069 * Apply event specific term settings,
1070 * it overloads any global configuration.
1071 */
Arnaldo Carvalho de Melo0d3dcc02018-01-16 11:16:25 -03001072 apply_config_terms(evsel, opts, track);
Jiri Olsaa359c172016-12-13 08:46:22 +01001073
1074 evsel->ignore_missing_thread = opts->ignore_missing_thread;
Jiri Olsaf290aa12018-02-01 09:38:11 +01001075
1076 /* The --period option takes the precedence. */
1077 if (opts->period_set) {
1078 if (opts->period)
1079 perf_evsel__set_sample_bit(evsel, PERIOD);
1080 else
1081 perf_evsel__reset_sample_bit(evsel, PERIOD);
1082 }
Arnaldo Carvalho de Melo0f82ebc2011-11-08 14:41:57 -02001083}
1084
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001085static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001086{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001087 if (evsel->system_wide)
1088 nthreads = 1;
1089
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001090 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
David Ahern4af4c952011-05-27 09:58:34 -06001091
1092 if (evsel->fd) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -03001093 int cpu, thread;
David Ahern4af4c952011-05-27 09:58:34 -06001094 for (cpu = 0; cpu < ncpus; cpu++) {
1095 for (thread = 0; thread < nthreads; thread++) {
1096 FD(evsel, cpu, thread) = -1;
1097 }
1098 }
1099 }
1100
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001101 return evsel->fd != NULL ? 0 : -ENOMEM;
1102}
1103
Andi Kleen475fb532017-08-11 16:26:17 -07001104static int perf_evsel__run_ioctl(struct perf_evsel *evsel,
Andi Kleene2407be2013-08-02 17:41:10 -07001105 int ioc, void *arg)
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001106{
1107 int cpu, thread;
1108
Andi Kleen475fb532017-08-11 16:26:17 -07001109 for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++) {
1110 for (thread = 0; thread < xyarray__max_y(evsel->fd); thread++) {
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001111 int fd = FD(evsel, cpu, thread),
Andi Kleene2407be2013-08-02 17:41:10 -07001112 err = ioctl(fd, ioc, arg);
Arnaldo Carvalho de Melo745cefc2012-09-26 15:07:39 -03001113
1114 if (err)
1115 return err;
1116 }
1117 }
1118
1119 return 0;
1120}
1121
Andi Kleen475fb532017-08-11 16:26:17 -07001122int perf_evsel__apply_filter(struct perf_evsel *evsel, const char *filter)
Andi Kleene2407be2013-08-02 17:41:10 -07001123{
Andi Kleen475fb532017-08-11 16:26:17 -07001124 return perf_evsel__run_ioctl(evsel,
Andi Kleene2407be2013-08-02 17:41:10 -07001125 PERF_EVENT_IOC_SET_FILTER,
1126 (void *)filter);
1127}
1128
Arnaldo Carvalho de Melo12467ae2015-07-03 17:05:50 -03001129int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter)
1130{
1131 char *new_filter = strdup(filter);
1132
1133 if (new_filter != NULL) {
1134 free(evsel->filter);
1135 evsel->filter = new_filter;
1136 return 0;
1137 }
1138
1139 return -1;
1140}
1141
Mathieu Poirier3541c032016-09-16 08:44:04 -06001142static int perf_evsel__append_filter(struct perf_evsel *evsel,
1143 const char *fmt, const char *filter)
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001144{
1145 char *new_filter;
1146
1147 if (evsel->filter == NULL)
1148 return perf_evsel__set_filter(evsel, filter);
1149
Mathieu Poirierb15d0a42016-09-16 08:44:03 -06001150 if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
Arnaldo Carvalho de Melo64ec84f2015-07-04 12:19:13 -03001151 free(evsel->filter);
1152 evsel->filter = new_filter;
1153 return 0;
1154 }
1155
1156 return -1;
1157}
1158
Mathieu Poirier3541c032016-09-16 08:44:04 -06001159int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter)
1160{
1161 return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter);
1162}
1163
Mathieu Poirier1e857482016-09-16 08:44:05 -06001164int perf_evsel__append_addr_filter(struct perf_evsel *evsel, const char *filter)
1165{
1166 return perf_evsel__append_filter(evsel, "%s,%s", filter);
1167}
1168
Jiri Olsa5cd95fc2015-12-03 10:06:40 +01001169int perf_evsel__enable(struct perf_evsel *evsel)
Andi Kleene2407be2013-08-02 17:41:10 -07001170{
Andi Kleen475fb532017-08-11 16:26:17 -07001171 return perf_evsel__run_ioctl(evsel,
Andi Kleene2407be2013-08-02 17:41:10 -07001172 PERF_EVENT_IOC_ENABLE,
1173 0);
1174}
1175
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001176int perf_evsel__disable(struct perf_evsel *evsel)
1177{
Andi Kleen475fb532017-08-11 16:26:17 -07001178 return perf_evsel__run_ioctl(evsel,
Jiri Olsae98a4cb2015-12-03 10:06:41 +01001179 PERF_EVENT_IOC_DISABLE,
1180 0);
1181}
1182
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001183int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
1184{
Vineet Gupta8d9cbd82015-01-13 19:13:23 +05301185 if (ncpus == 0 || nthreads == 0)
1186 return 0;
1187
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001188 if (evsel->system_wide)
1189 nthreads = 1;
1190
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001191 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
1192 if (evsel->sample_id == NULL)
1193 return -ENOMEM;
1194
1195 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
1196 if (evsel->id == NULL) {
1197 xyarray__delete(evsel->sample_id);
1198 evsel->sample_id = NULL;
1199 return -ENOMEM;
1200 }
1201
1202 return 0;
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001203}
1204
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001205static void perf_evsel__free_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001206{
1207 xyarray__delete(evsel->fd);
1208 evsel->fd = NULL;
1209}
1210
Arnaldo Carvalho de Melo88858462014-10-13 13:30:27 -03001211static void perf_evsel__free_id(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001212{
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03001213 xyarray__delete(evsel->sample_id);
1214 evsel->sample_id = NULL;
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001215 zfree(&evsel->id);
Arnaldo Carvalho de Melo70db7532011-01-12 22:39:13 -02001216}
1217
Jiri Olsa930a2e22015-07-29 05:42:10 -04001218static void perf_evsel__free_config_terms(struct perf_evsel *evsel)
1219{
1220 struct perf_evsel_config_term *term, *h;
1221
1222 list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1223 list_del(&term->list);
1224 free(term);
1225 }
1226}
1227
Andi Kleen475fb532017-08-11 16:26:17 -07001228void perf_evsel__close_fd(struct perf_evsel *evsel)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001229{
1230 int cpu, thread;
1231
Andi Kleen475fb532017-08-11 16:26:17 -07001232 for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++)
1233 for (thread = 0; thread < xyarray__max_y(evsel->fd); ++thread) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001234 close(FD(evsel, cpu, thread));
1235 FD(evsel, cpu, thread) = -1;
1236 }
1237}
1238
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001239void perf_evsel__exit(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001240{
1241 assert(list_empty(&evsel->node));
Arnaldo Carvalho de Melod49e4692015-08-27 08:07:40 -04001242 assert(evsel->evlist == NULL);
Namhyung Kim736b05a2013-03-15 14:48:49 +09001243 perf_evsel__free_fd(evsel);
1244 perf_evsel__free_id(evsel);
Jiri Olsa930a2e22015-07-29 05:42:10 -04001245 perf_evsel__free_config_terms(evsel);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001246 close_cgroup(evsel->cgrp);
Jiri Olsaf30a79b2015-06-23 00:36:04 +02001247 cpu_map__put(evsel->cpus);
Adrian Hunterfce4d292015-09-08 10:58:55 +03001248 cpu_map__put(evsel->own_cpus);
Jiri Olsa578e91e2015-06-23 00:36:07 +02001249 thread_map__put(evsel->threads);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001250 zfree(&evsel->group_name);
Arnaldo Carvalho de Melo597e48c2014-10-16 13:25:01 -03001251 zfree(&evsel->name);
Arnaldo Carvalho de Meloce8ccff2014-10-09 15:29:51 -03001252 perf_evsel__object.fini(evsel);
Arnaldo Carvalho de Meloef1d1af2011-01-18 21:41:45 -02001253}
1254
1255void perf_evsel__delete(struct perf_evsel *evsel)
1256{
1257 perf_evsel__exit(evsel);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001258 free(evsel);
1259}
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001260
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001261void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
Jiri Olsa857a94a2014-11-21 10:31:05 +01001262 struct perf_counts_values *count)
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001263{
1264 struct perf_counts_values tmp;
1265
1266 if (!evsel->prev_raw_counts)
1267 return;
1268
1269 if (cpu == -1) {
1270 tmp = evsel->prev_raw_counts->aggr;
1271 evsel->prev_raw_counts->aggr = *count;
1272 } else {
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001273 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1274 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
Stephane Eranianc7a79c42013-01-29 12:47:43 +01001275 }
1276
1277 count->val = count->val - tmp.val;
1278 count->ena = count->ena - tmp.ena;
1279 count->run = count->run - tmp.run;
1280}
1281
Jiri Olsa13112bb2014-11-21 10:31:06 +01001282void perf_counts_values__scale(struct perf_counts_values *count,
1283 bool scale, s8 *pscaled)
1284{
1285 s8 scaled = 0;
1286
1287 if (scale) {
1288 if (count->run == 0) {
1289 scaled = -1;
1290 count->val = 0;
1291 } else if (count->run < count->ena) {
1292 scaled = 1;
1293 count->val = (u64)((double) count->val * count->ena / count->run + 0.5);
1294 }
1295 } else
1296 count->ena = count->run = 0;
1297
1298 if (pscaled)
1299 *pscaled = scaled;
1300}
1301
Jiri Olsade634032017-07-26 14:02:04 +02001302static int perf_evsel__read_size(struct perf_evsel *evsel)
1303{
1304 u64 read_format = evsel->attr.read_format;
1305 int entry = sizeof(u64); /* value */
1306 int size = 0;
1307 int nr = 1;
1308
1309 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1310 size += sizeof(u64);
1311
1312 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1313 size += sizeof(u64);
1314
1315 if (read_format & PERF_FORMAT_ID)
1316 entry += sizeof(u64);
1317
1318 if (read_format & PERF_FORMAT_GROUP) {
1319 nr = evsel->nr_members;
1320 size += sizeof(u64);
1321 }
1322
1323 size += entry * nr;
1324 return size;
1325}
1326
Jiri Olsaf99f47192015-06-26 11:29:18 +02001327int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
1328 struct perf_counts_values *count)
1329{
Jiri Olsade634032017-07-26 14:02:04 +02001330 size_t size = perf_evsel__read_size(evsel);
1331
Jiri Olsaf99f47192015-06-26 11:29:18 +02001332 memset(count, 0, sizeof(*count));
1333
1334 if (FD(evsel, cpu, thread) < 0)
1335 return -EINVAL;
1336
Jiri Olsade634032017-07-26 14:02:04 +02001337 if (readn(FD(evsel, cpu, thread), count->values, size) <= 0)
Jiri Olsaf99f47192015-06-26 11:29:18 +02001338 return -errno;
1339
1340 return 0;
1341}
1342
Jiri Olsaf7794d52017-07-26 14:02:05 +02001343static int
1344perf_evsel__read_one(struct perf_evsel *evsel, int cpu, int thread)
1345{
1346 struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread);
1347
1348 return perf_evsel__read(evsel, cpu, thread, count);
1349}
1350
1351static void
1352perf_evsel__set_count(struct perf_evsel *counter, int cpu, int thread,
1353 u64 val, u64 ena, u64 run)
1354{
1355 struct perf_counts_values *count;
1356
1357 count = perf_counts(counter->counts, cpu, thread);
1358
1359 count->val = val;
1360 count->ena = ena;
1361 count->run = run;
Jiri Olsa82bf3112017-07-26 14:02:06 +02001362 count->loaded = true;
Jiri Olsaf7794d52017-07-26 14:02:05 +02001363}
1364
1365static int
1366perf_evsel__process_group_data(struct perf_evsel *leader,
1367 int cpu, int thread, u64 *data)
1368{
1369 u64 read_format = leader->attr.read_format;
1370 struct sample_read_value *v;
1371 u64 nr, ena = 0, run = 0, i;
1372
1373 nr = *data++;
1374
1375 if (nr != (u64) leader->nr_members)
1376 return -EINVAL;
1377
1378 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1379 ena = *data++;
1380
1381 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1382 run = *data++;
1383
1384 v = (struct sample_read_value *) data;
1385
1386 perf_evsel__set_count(leader, cpu, thread,
1387 v[0].value, ena, run);
1388
1389 for (i = 1; i < nr; i++) {
1390 struct perf_evsel *counter;
1391
1392 counter = perf_evlist__id2evsel(leader->evlist, v[i].id);
1393 if (!counter)
1394 return -EINVAL;
1395
1396 perf_evsel__set_count(counter, cpu, thread,
1397 v[i].value, ena, run);
1398 }
1399
1400 return 0;
1401}
1402
1403static int
1404perf_evsel__read_group(struct perf_evsel *leader, int cpu, int thread)
1405{
Arnaldo Carvalho de Melo82806c32017-11-09 12:03:40 -03001406 struct perf_stat_evsel *ps = leader->stats;
Jiri Olsaf7794d52017-07-26 14:02:05 +02001407 u64 read_format = leader->attr.read_format;
1408 int size = perf_evsel__read_size(leader);
1409 u64 *data = ps->group_data;
1410
1411 if (!(read_format & PERF_FORMAT_ID))
1412 return -EINVAL;
1413
1414 if (!perf_evsel__is_group_leader(leader))
1415 return -EINVAL;
1416
1417 if (!data) {
1418 data = zalloc(size);
1419 if (!data)
1420 return -ENOMEM;
1421
1422 ps->group_data = data;
1423 }
1424
1425 if (FD(leader, cpu, thread) < 0)
1426 return -EINVAL;
1427
1428 if (readn(FD(leader, cpu, thread), data, size) <= 0)
1429 return -errno;
1430
1431 return perf_evsel__process_group_data(leader, cpu, thread, data);
1432}
1433
1434int perf_evsel__read_counter(struct perf_evsel *evsel, int cpu, int thread)
1435{
1436 u64 read_format = evsel->attr.read_format;
1437
1438 if (read_format & PERF_FORMAT_GROUP)
1439 return perf_evsel__read_group(evsel, cpu, thread);
1440 else
1441 return perf_evsel__read_one(evsel, cpu, thread);
1442}
1443
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001444int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
1445 int cpu, int thread, bool scale)
1446{
1447 struct perf_counts_values count;
1448 size_t nv = scale ? 3 : 1;
1449
1450 if (FD(evsel, cpu, thread) < 0)
1451 return -EINVAL;
1452
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001453 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001454 return -ENOMEM;
1455
Stephane Eraniandb49a712017-04-12 11:23:01 -07001456 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001457 return -errno;
1458
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001459 perf_evsel__compute_deltas(evsel, cpu, thread, &count);
Jiri Olsa13112bb2014-11-21 10:31:06 +01001460 perf_counts_values__scale(&count, scale, NULL);
Jiri Olsaa6fa0032015-06-26 11:29:11 +02001461 *perf_counts(evsel->counts, cpu, thread) = count;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001462 return 0;
1463}
1464
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001465static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
1466{
1467 struct perf_evsel *leader = evsel->leader;
1468 int fd;
1469
Namhyung Kim823254e2012-11-29 15:38:30 +09001470 if (perf_evsel__is_group_leader(evsel))
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001471 return -1;
1472
1473 /*
1474 * Leader must be already processed/open,
1475 * if not it's a bug.
1476 */
1477 BUG_ON(!leader->fd);
1478
1479 fd = FD(leader, cpu, thread);
1480 BUG_ON(fd == -1);
1481
1482 return fd;
1483}
1484
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001485struct bit_names {
1486 int bit;
1487 const char *name;
1488};
Adrian Huntere3e1a542013-08-14 15:48:24 +03001489
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001490static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001491{
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001492 bool first_bit = true;
1493 int i = 0;
Adrian Huntere3e1a542013-08-14 15:48:24 +03001494
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001495 do {
1496 if (value & bits[i].bit) {
1497 buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name);
1498 first_bit = false;
1499 }
1500 } while (bits[++i].name != NULL);
1501}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001502
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001503static void __p_sample_type(char *buf, size_t size, u64 value)
1504{
1505#define bit_name(n) { PERF_SAMPLE_##n, #n }
1506 struct bit_names bits[] = {
1507 bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR),
1508 bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU),
1509 bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW),
1510 bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER),
Jiri Olsa84422592015-10-05 20:06:02 +02001511 bit_name(IDENTIFIER), bit_name(REGS_INTR), bit_name(DATA_SRC),
Kan Liang3b0a5da2017-08-29 13:11:08 -04001512 bit_name(WEIGHT), bit_name(PHYS_ADDR),
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001513 { .name = NULL, }
1514 };
1515#undef bit_name
1516 __p_bits(buf, size, value, bits);
1517}
Adrian Huntere3e1a542013-08-14 15:48:24 +03001518
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001519static void __p_branch_sample_type(char *buf, size_t size, u64 value)
1520{
1521#define bit_name(n) { PERF_SAMPLE_BRANCH_##n, #n }
1522 struct bit_names bits[] = {
1523 bit_name(USER), bit_name(KERNEL), bit_name(HV), bit_name(ANY),
1524 bit_name(ANY_CALL), bit_name(ANY_RETURN), bit_name(IND_CALL),
1525 bit_name(ABORT_TX), bit_name(IN_TX), bit_name(NO_TX),
1526 bit_name(COND), bit_name(CALL_STACK), bit_name(IND_JUMP),
1527 bit_name(CALL), bit_name(NO_FLAGS), bit_name(NO_CYCLES),
1528 { .name = NULL, }
1529 };
1530#undef bit_name
1531 __p_bits(buf, size, value, bits);
1532}
1533
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001534static void __p_read_format(char *buf, size_t size, u64 value)
1535{
1536#define bit_name(n) { PERF_FORMAT_##n, #n }
1537 struct bit_names bits[] = {
1538 bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING),
1539 bit_name(ID), bit_name(GROUP),
1540 { .name = NULL, }
1541 };
1542#undef bit_name
1543 __p_bits(buf, size, value, bits);
1544}
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001545
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001546#define BUF_SIZE 1024
Adrian Huntere3e1a542013-08-14 15:48:24 +03001547
Adrian Hunter7310aed2015-06-11 15:51:04 +03001548#define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001549#define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
1550#define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
1551#define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001552#define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001553#define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
Adrian Huntere3e1a542013-08-14 15:48:24 +03001554
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001555#define PRINT_ATTRn(_n, _f, _p) \
1556do { \
1557 if (attr->_f) { \
1558 _p(attr->_f); \
1559 ret += attr__fprintf(fp, _n, buf, priv);\
1560 } \
1561} while (0)
1562
1563#define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p)
1564
1565int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
1566 attr__fprintf_f attr__fprintf, void *priv)
1567{
1568 char buf[BUF_SIZE];
1569 int ret = 0;
1570
1571 PRINT_ATTRf(type, p_unsigned);
1572 PRINT_ATTRf(size, p_unsigned);
1573 PRINT_ATTRf(config, p_hex);
1574 PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned);
1575 PRINT_ATTRf(sample_type, p_sample_type);
1576 PRINT_ATTRf(read_format, p_read_format);
1577
1578 PRINT_ATTRf(disabled, p_unsigned);
1579 PRINT_ATTRf(inherit, p_unsigned);
1580 PRINT_ATTRf(pinned, p_unsigned);
1581 PRINT_ATTRf(exclusive, p_unsigned);
1582 PRINT_ATTRf(exclude_user, p_unsigned);
1583 PRINT_ATTRf(exclude_kernel, p_unsigned);
1584 PRINT_ATTRf(exclude_hv, p_unsigned);
1585 PRINT_ATTRf(exclude_idle, p_unsigned);
1586 PRINT_ATTRf(mmap, p_unsigned);
1587 PRINT_ATTRf(comm, p_unsigned);
1588 PRINT_ATTRf(freq, p_unsigned);
1589 PRINT_ATTRf(inherit_stat, p_unsigned);
1590 PRINT_ATTRf(enable_on_exec, p_unsigned);
1591 PRINT_ATTRf(task, p_unsigned);
1592 PRINT_ATTRf(watermark, p_unsigned);
1593 PRINT_ATTRf(precise_ip, p_unsigned);
1594 PRINT_ATTRf(mmap_data, p_unsigned);
1595 PRINT_ATTRf(sample_id_all, p_unsigned);
1596 PRINT_ATTRf(exclude_host, p_unsigned);
1597 PRINT_ATTRf(exclude_guest, p_unsigned);
1598 PRINT_ATTRf(exclude_callchain_kernel, p_unsigned);
1599 PRINT_ATTRf(exclude_callchain_user, p_unsigned);
1600 PRINT_ATTRf(mmap2, p_unsigned);
1601 PRINT_ATTRf(comm_exec, p_unsigned);
1602 PRINT_ATTRf(use_clockid, p_unsigned);
Adrian Hunter02860392015-07-21 12:44:03 +03001603 PRINT_ATTRf(context_switch, p_unsigned);
Arnaldo Carvalho de Melo0a241ef2016-05-09 18:08:33 -03001604 PRINT_ATTRf(write_backward, p_unsigned);
Jiri Olsadb9fc762018-01-07 17:03:46 +01001605 PRINT_ATTRf(namespaces, p_unsigned);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001606
1607 PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned);
1608 PRINT_ATTRf(bp_type, p_unsigned);
1609 PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex);
1610 PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex);
Arnaldo Carvalho de Meloa213b922016-04-25 16:45:29 -03001611 PRINT_ATTRf(branch_sample_type, p_branch_sample_type);
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001612 PRINT_ATTRf(sample_regs_user, p_hex);
1613 PRINT_ATTRf(sample_stack_user, p_unsigned);
1614 PRINT_ATTRf(clockid, p_signed);
1615 PRINT_ATTRf(sample_regs_intr, p_hex);
Adrian Hunter70d73de2015-04-09 18:54:06 +03001616 PRINT_ATTRf(aux_watermark, p_unsigned);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -03001617 PRINT_ATTRf(sample_max_stack, p_unsigned);
Adrian Huntere3e1a542013-08-14 15:48:24 +03001618
1619 return ret;
1620}
1621
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001622static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001623 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001624{
1625 return fprintf(fp, " %-32s %s\n", name, val);
1626}
1627
Mengting Zhangca800062017-12-13 15:01:53 +08001628static void perf_evsel__remove_fd(struct perf_evsel *pos,
1629 int nr_cpus, int nr_threads,
1630 int thread_idx)
1631{
1632 for (int cpu = 0; cpu < nr_cpus; cpu++)
1633 for (int thread = thread_idx; thread < nr_threads - 1; thread++)
1634 FD(pos, cpu, thread) = FD(pos, cpu, thread + 1);
1635}
1636
1637static int update_fds(struct perf_evsel *evsel,
1638 int nr_cpus, int cpu_idx,
1639 int nr_threads, int thread_idx)
1640{
1641 struct perf_evsel *pos;
1642
1643 if (cpu_idx >= nr_cpus || thread_idx >= nr_threads)
1644 return -EINVAL;
1645
1646 evlist__for_each_entry(evsel->evlist, pos) {
1647 nr_cpus = pos != evsel ? nr_cpus : cpu_idx;
1648
1649 perf_evsel__remove_fd(pos, nr_cpus, nr_threads, thread_idx);
1650
1651 /*
1652 * Since fds for next evsel has not been created,
1653 * there is no need to iterate whole event list.
1654 */
1655 if (pos == evsel)
1656 break;
1657 }
1658 return 0;
1659}
1660
Jiri Olsaa359c172016-12-13 08:46:22 +01001661static bool ignore_missing_thread(struct perf_evsel *evsel,
Mengting Zhangca800062017-12-13 15:01:53 +08001662 int nr_cpus, int cpu,
Jiri Olsaa359c172016-12-13 08:46:22 +01001663 struct thread_map *threads,
1664 int thread, int err)
1665{
Mengting Zhangca800062017-12-13 15:01:53 +08001666 pid_t ignore_pid = thread_map__pid(threads, thread);
1667
Jiri Olsaa359c172016-12-13 08:46:22 +01001668 if (!evsel->ignore_missing_thread)
1669 return false;
1670
1671 /* The system wide setup does not work with threads. */
1672 if (evsel->system_wide)
1673 return false;
1674
1675 /* The -ESRCH is perf event syscall errno for pid's not found. */
1676 if (err != -ESRCH)
1677 return false;
1678
1679 /* If there's only one thread, let it fail. */
1680 if (threads->nr == 1)
1681 return false;
1682
Mengting Zhangca800062017-12-13 15:01:53 +08001683 /*
1684 * We should remove fd for missing_thread first
1685 * because thread_map__remove() will decrease threads->nr.
1686 */
1687 if (update_fds(evsel, nr_cpus, cpu, threads->nr, thread))
1688 return false;
1689
Jiri Olsaa359c172016-12-13 08:46:22 +01001690 if (thread_map__remove(threads, thread))
1691 return false;
1692
1693 pr_warning("WARNING: Ignored open failure for pid %d\n",
Mengting Zhangca800062017-12-13 15:01:53 +08001694 ignore_pid);
Jiri Olsaa359c172016-12-13 08:46:22 +01001695 return true;
1696}
1697
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001698int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
1699 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001700{
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001701 int cpu, thread, nthreads;
Yann Droneaud57480d22014-06-30 22:28:47 +02001702 unsigned long flags = PERF_FLAG_FD_CLOEXEC;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001703 int pid = -1, err;
Andi Kleenbec19672013-08-04 19:41:26 -07001704 enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001705
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001706 if (perf_missing_features.write_backward && evsel->attr.write_backward)
1707 return -EINVAL;
1708
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001709 if (cpus == NULL) {
1710 static struct cpu_map *empty_cpu_map;
1711
1712 if (empty_cpu_map == NULL) {
1713 empty_cpu_map = cpu_map__dummy_new();
1714 if (empty_cpu_map == NULL)
1715 return -ENOMEM;
1716 }
1717
1718 cpus = empty_cpu_map;
1719 }
1720
1721 if (threads == NULL) {
1722 static struct thread_map *empty_thread_map;
1723
1724 if (empty_thread_map == NULL) {
1725 empty_thread_map = thread_map__new_by_tid(-1);
1726 if (empty_thread_map == NULL)
1727 return -ENOMEM;
1728 }
1729
1730 threads = empty_thread_map;
1731 }
1732
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001733 if (evsel->system_wide)
1734 nthreads = 1;
1735 else
1736 nthreads = threads->nr;
1737
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001738 if (evsel->fd == NULL &&
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001739 perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001740 return -ENOMEM;
Arnaldo Carvalho de Melo4eed11d2011-01-04 00:13:17 -02001741
Stephane Eranian023695d2011-02-14 11:20:01 +02001742 if (evsel->cgrp) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001743 flags |= PERF_FLAG_PID_CGROUP;
Stephane Eranian023695d2011-02-14 11:20:01 +02001744 pid = evsel->cgrp->fd;
1745 }
1746
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001747fallback_missing_features:
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001748 if (perf_missing_features.clockid_wrong)
1749 evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */
1750 if (perf_missing_features.clockid) {
1751 evsel->attr.use_clockid = 0;
1752 evsel->attr.clockid = 0;
1753 }
Yann Droneaud57480d22014-06-30 22:28:47 +02001754 if (perf_missing_features.cloexec)
1755 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001756 if (perf_missing_features.mmap2)
1757 evsel->attr.mmap2 = 0;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001758 if (perf_missing_features.exclude_guest)
1759 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001760 if (perf_missing_features.lbr_flags)
1761 evsel->attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1762 PERF_SAMPLE_BRANCH_NO_CYCLES);
Jiri Olsa82bf3112017-07-26 14:02:06 +02001763 if (perf_missing_features.group_read && evsel->attr.inherit)
1764 evsel->attr.read_format &= ~(PERF_FORMAT_GROUP|PERF_FORMAT_ID);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001765retry_sample_id:
1766 if (perf_missing_features.sample_id_all)
1767 evsel->attr.sample_id_all = 0;
1768
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001769 if (verbose >= 2) {
1770 fprintf(stderr, "%.60s\n", graph_dotted_line);
1771 fprintf(stderr, "perf_event_attr:\n");
1772 perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL);
1773 fprintf(stderr, "%.60s\n", graph_dotted_line);
1774 }
Adrian Huntere3e1a542013-08-14 15:48:24 +03001775
Arnaldo Carvalho de Melo86bd5e82011-01-03 23:09:46 -02001776 for (cpu = 0; cpu < cpus->nr; cpu++) {
Arnaldo Carvalho de Melo9d04f172011-01-12 00:08:18 -02001777
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001778 for (thread = 0; thread < nthreads; thread++) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001779 int fd, group_fd;
Stephane Eranian023695d2011-02-14 11:20:01 +02001780
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001781 if (!evsel->cgrp && !evsel->system_wide)
Jiri Olsae13798c2015-06-23 00:36:02 +02001782 pid = thread_map__pid(threads, thread);
Stephane Eranian023695d2011-02-14 11:20:01 +02001783
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001784 group_fd = get_group_fd(evsel, cpu, thread);
Andi Kleenbec19672013-08-04 19:41:26 -07001785retry_open:
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001786 pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx",
Adrian Huntere3e1a542013-08-14 15:48:24 +03001787 pid, cpus->map[cpu], group_fd, flags);
1788
Jiri Olsa10213e22017-07-03 16:50:18 +02001789 test_attr__ready();
1790
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001791 fd = sys_perf_event_open(&evsel->attr, pid, cpus->map[cpu],
1792 group_fd, flags);
1793
1794 FD(evsel, cpu, thread) = fd;
1795
1796 if (fd < 0) {
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001797 err = -errno;
Jiri Olsaa359c172016-12-13 08:46:22 +01001798
Mengting Zhangca800062017-12-13 15:01:53 +08001799 if (ignore_missing_thread(evsel, cpus->nr, cpu, threads, thread, err)) {
Jiri Olsaa359c172016-12-13 08:46:22 +01001800 /*
1801 * We just removed 1 thread, so take a step
1802 * back on thread index and lower the upper
1803 * nthreads limit.
1804 */
1805 nthreads--;
1806 thread--;
1807
1808 /* ... and pretend like nothing have happened. */
1809 err = 0;
1810 continue;
1811 }
1812
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001813 pr_debug2("\nsys_perf_event_open failed, error %d\n",
Adrian Hunterf852fd62013-11-01 15:51:29 +02001814 err);
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001815 goto try_fallback;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001816 }
Wang Nan1f45b1d2015-10-14 12:41:18 +00001817
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001818 pr_debug2(" = %d\n", fd);
Jiri Olsa7b4b82bc2016-11-21 22:33:26 +01001819
Wang Nan1f45b1d2015-10-14 12:41:18 +00001820 if (evsel->bpf_fd >= 0) {
Jiri Olsa83c2e4f32016-12-12 11:35:40 +01001821 int evt_fd = fd;
Wang Nan1f45b1d2015-10-14 12:41:18 +00001822 int bpf_fd = evsel->bpf_fd;
1823
1824 err = ioctl(evt_fd,
1825 PERF_EVENT_IOC_SET_BPF,
1826 bpf_fd);
1827 if (err && errno != EEXIST) {
1828 pr_err("failed to attach bpf fd %d: %s\n",
1829 bpf_fd, strerror(errno));
1830 err = -EINVAL;
1831 goto out_close;
1832 }
1833 }
1834
Andi Kleenbec19672013-08-04 19:41:26 -07001835 set_rlimit = NO_CHANGE;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001836
1837 /*
1838 * If we succeeded but had to kill clockid, fail and
1839 * have perf_evsel__open_strerror() print us a nice
1840 * error.
1841 */
1842 if (perf_missing_features.clockid ||
1843 perf_missing_features.clockid_wrong) {
1844 err = -EINVAL;
1845 goto out_close;
1846 }
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001847 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001848 }
1849
1850 return 0;
1851
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001852try_fallback:
Andi Kleenbec19672013-08-04 19:41:26 -07001853 /*
1854 * perf stat needs between 5 and 22 fds per CPU. When we run out
1855 * of them try to increase the limits.
1856 */
1857 if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1858 struct rlimit l;
1859 int old_errno = errno;
1860
1861 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1862 if (set_rlimit == NO_CHANGE)
1863 l.rlim_cur = l.rlim_max;
1864 else {
1865 l.rlim_cur = l.rlim_max + 1000;
1866 l.rlim_max = l.rlim_cur;
1867 }
1868 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1869 set_rlimit++;
1870 errno = old_errno;
1871 goto retry_open;
1872 }
1873 }
1874 errno = old_errno;
1875 }
1876
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001877 if (err != -EINVAL || cpu > 0 || thread > 0)
1878 goto out_close;
1879
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001880 /*
1881 * Must probe features in the order they were added to the
1882 * perf_event_attr interface.
1883 */
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001884 if (!perf_missing_features.write_backward && evsel->attr.write_backward) {
1885 perf_missing_features.write_backward = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001886 pr_debug2("switching off write_backward\n");
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00001887 goto out_close;
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00001888 } else if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) {
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001889 perf_missing_features.clockid_wrong = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001890 pr_debug2("switching off clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001891 goto fallback_missing_features;
1892 } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) {
1893 perf_missing_features.clockid = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001894 pr_debug2("switching off use_clockid\n");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001895 goto fallback_missing_features;
1896 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) {
Yann Droneaud57480d22014-06-30 22:28:47 +02001897 perf_missing_features.cloexec = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001898 pr_debug2("switching off cloexec flag\n");
Yann Droneaud57480d22014-06-30 22:28:47 +02001899 goto fallback_missing_features;
1900 } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) {
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001901 perf_missing_features.mmap2 = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001902 pr_debug2("switching off mmap2\n");
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001903 goto fallback_missing_features;
1904 } else if (!perf_missing_features.exclude_guest &&
1905 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001906 perf_missing_features.exclude_guest = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001907 pr_debug2("switching off exclude_guest, exclude_host\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001908 goto fallback_missing_features;
1909 } else if (!perf_missing_features.sample_id_all) {
1910 perf_missing_features.sample_id_all = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001911 pr_debug2("switching off sample_id_all\n");
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001912 goto retry_sample_id;
Andi Kleenbd0f8892015-12-11 16:12:24 -08001913 } else if (!perf_missing_features.lbr_flags &&
1914 (evsel->attr.branch_sample_type &
1915 (PERF_SAMPLE_BRANCH_NO_CYCLES |
1916 PERF_SAMPLE_BRANCH_NO_FLAGS))) {
1917 perf_missing_features.lbr_flags = true;
Jiri Olsa2b04e0f2017-07-21 14:12:09 +02001918 pr_debug2("switching off branch sample type no (cycles/flags)\n");
Andi Kleenbd0f8892015-12-11 16:12:24 -08001919 goto fallback_missing_features;
Jiri Olsa82bf3112017-07-26 14:02:06 +02001920 } else if (!perf_missing_features.group_read &&
1921 evsel->attr.inherit &&
1922 (evsel->attr.read_format & PERF_FORMAT_GROUP)) {
1923 perf_missing_features.group_read = true;
1924 pr_debug2("switching off group read\n");
1925 goto fallback_missing_features;
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -03001926 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001927out_close:
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001928 do {
1929 while (--thread >= 0) {
1930 close(FD(evsel, cpu, thread));
1931 FD(evsel, cpu, thread) = -1;
1932 }
Adrian Hunterbf8e8f42014-07-31 09:00:51 +03001933 thread = nthreads;
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001934 } while (--cpu >= 0);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001935 return err;
1936}
1937
Andi Kleen475fb532017-08-11 16:26:17 -07001938void perf_evsel__close(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001939{
1940 if (evsel->fd == NULL)
1941 return;
1942
Andi Kleen475fb532017-08-11 16:26:17 -07001943 perf_evsel__close_fd(evsel);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -02001944 perf_evsel__free_fd(evsel);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001945}
1946
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001947int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001948 struct cpu_map *cpus)
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001949{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001950 return perf_evsel__open(evsel, cpus, NULL);
Arnaldo Carvalho de Melo02522082011-01-04 11:55:27 -02001951}
1952
Arnaldo Carvalho de Melof08199d2011-01-11 23:42:19 -02001953int perf_evsel__open_per_thread(struct perf_evsel *evsel,
Jiri Olsa6a4bb042012-08-08 12:22:36 +02001954 struct thread_map *threads)
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001955{
Arnaldo Carvalho de Meloc24ae6d2017-02-14 10:59:04 -03001956 return perf_evsel__open(evsel, NULL, threads);
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -02001957}
Arnaldo Carvalho de Melo70082dd2011-01-12 17:03:24 -02001958
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001959static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
1960 const union perf_event *event,
1961 struct perf_sample *sample)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001962{
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001963 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001964 const u64 *array = event->sample.array;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001965 bool swapped = evsel->needs_swap;
Jiri Olsa37073f92012-05-30 14:23:44 +02001966 union u64_swap u;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001967
1968 array += ((event->header.size -
1969 sizeof(event->header)) / sizeof(u64)) - 1;
1970
Adrian Hunter75562572013-08-27 11:23:09 +03001971 if (type & PERF_SAMPLE_IDENTIFIER) {
1972 sample->id = *array;
1973 array--;
1974 }
1975
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001976 if (type & PERF_SAMPLE_CPU) {
Jiri Olsa37073f92012-05-30 14:23:44 +02001977 u.val64 = *array;
1978 if (swapped) {
1979 /* undo swap of u64, then swap on individual u32s */
1980 u.val64 = bswap_64(u.val64);
1981 u.val32[0] = bswap_32(u.val32[0]);
1982 }
1983
1984 sample->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02001985 array--;
1986 }
1987
1988 if (type & PERF_SAMPLE_STREAM_ID) {
1989 sample->stream_id = *array;
1990 array--;
1991 }
1992
1993 if (type & PERF_SAMPLE_ID) {
1994 sample->id = *array;
1995 array--;
1996 }
1997
1998 if (type & PERF_SAMPLE_TIME) {
1999 sample->time = *array;
2000 array--;
2001 }
2002
2003 if (type & PERF_SAMPLE_TID) {
Jiri Olsa37073f92012-05-30 14:23:44 +02002004 u.val64 = *array;
2005 if (swapped) {
2006 /* undo swap of u64, then swap on individual u32s */
2007 u.val64 = bswap_64(u.val64);
2008 u.val32[0] = bswap_32(u.val32[0]);
2009 u.val32[1] = bswap_32(u.val32[1]);
2010 }
2011
2012 sample->pid = u.val32[0];
2013 sample->tid = u.val32[1];
Adrian Hunterdd44bc62013-10-18 15:29:01 +03002014 array--;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002015 }
2016
2017 return 0;
2018}
2019
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002020static inline bool overflow(const void *endp, u16 max_size, const void *offset,
2021 u64 size)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002022{
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002023 return size > max_size || offset + size > endp;
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002024}
2025
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002026#define OVERFLOW_CHECK(offset, size, max_size) \
2027 do { \
2028 if (overflow(endp, (max_size), (offset), (size))) \
2029 return -EFAULT; \
2030 } while (0)
2031
2032#define OVERFLOW_CHECK_u64(offset) \
2033 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
2034
Jiri Olsa01468122017-08-03 13:10:28 +02002035static int
2036perf_event__check_size(union perf_event *event, unsigned int sample_size)
2037{
2038 /*
2039 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
2040 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
2041 * check the format does not go past the end of the event.
2042 */
2043 if (sample_size + sizeof(event->header) > event->header.size)
2044 return -EFAULT;
2045
2046 return 0;
2047}
2048
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002049int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002050 struct perf_sample *data)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002051{
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002052 u64 type = evsel->attr.sample_type;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002053 bool swapped = evsel->needs_swap;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002054 const u64 *array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002055 u16 max_size = event->header.size;
2056 const void *endp = (void *)event + max_size;
2057 u64 sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002058
David Ahern936be502011-09-06 09:12:26 -06002059 /*
2060 * used for cross-endian analysis. See git commit 65014ab3
2061 * for why this goofiness is needed.
2062 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002063 union u64_swap u;
David Ahern936be502011-09-06 09:12:26 -06002064
Robert Richterf3bda2c2011-12-15 17:32:39 +01002065 memset(data, 0, sizeof(*data));
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002066 data->cpu = data->pid = data->tid = -1;
2067 data->stream_id = data->id = data->time = -1ULL;
Jiri Olsabc529082014-02-03 12:44:41 +01002068 data->period = evsel->attr.sample_period;
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03002069 data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Jiri Olsa28a0b392018-01-07 17:03:52 +01002070 data->misc = event->header.misc;
Jiri Olsa3ad31d82017-08-03 16:07:05 +02002071 data->id = -1ULL;
2072 data->data_src = PERF_MEM_DATA_SRC_NONE;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002073
2074 if (event->header.type != PERF_RECORD_SAMPLE) {
Arnaldo Carvalho de Meloa3f698f2012-08-02 12:23:46 -03002075 if (!evsel->attr.sample_id_all)
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002076 return 0;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002077 return perf_evsel__parse_id_sample(evsel, event, data);
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002078 }
2079
2080 array = event->sample.array;
2081
Jiri Olsa01468122017-08-03 13:10:28 +02002082 if (perf_event__check_size(event, evsel->sample_size))
Frederic Weisbeckera2854122011-05-21 19:33:04 +02002083 return -EFAULT;
2084
Adrian Hunter75562572013-08-27 11:23:09 +03002085 if (type & PERF_SAMPLE_IDENTIFIER) {
2086 data->id = *array;
2087 array++;
2088 }
2089
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002090 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002091 data->ip = *array;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002092 array++;
2093 }
2094
2095 if (type & PERF_SAMPLE_TID) {
David Ahern936be502011-09-06 09:12:26 -06002096 u.val64 = *array;
2097 if (swapped) {
2098 /* undo swap of u64, then swap on individual u32s */
2099 u.val64 = bswap_64(u.val64);
2100 u.val32[0] = bswap_32(u.val32[0]);
2101 u.val32[1] = bswap_32(u.val32[1]);
2102 }
2103
2104 data->pid = u.val32[0];
2105 data->tid = u.val32[1];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002106 array++;
2107 }
2108
2109 if (type & PERF_SAMPLE_TIME) {
2110 data->time = *array;
2111 array++;
2112 }
2113
2114 if (type & PERF_SAMPLE_ADDR) {
2115 data->addr = *array;
2116 array++;
2117 }
2118
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002119 if (type & PERF_SAMPLE_ID) {
2120 data->id = *array;
2121 array++;
2122 }
2123
2124 if (type & PERF_SAMPLE_STREAM_ID) {
2125 data->stream_id = *array;
2126 array++;
2127 }
2128
2129 if (type & PERF_SAMPLE_CPU) {
David Ahern936be502011-09-06 09:12:26 -06002130
2131 u.val64 = *array;
2132 if (swapped) {
2133 /* undo swap of u64, then swap on individual u32s */
2134 u.val64 = bswap_64(u.val64);
2135 u.val32[0] = bswap_32(u.val32[0]);
2136 }
2137
2138 data->cpu = u.val32[0];
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002139 array++;
2140 }
2141
2142 if (type & PERF_SAMPLE_PERIOD) {
2143 data->period = *array;
2144 array++;
2145 }
2146
2147 if (type & PERF_SAMPLE_READ) {
Jiri Olsa9ede4732012-10-10 17:38:13 +02002148 u64 read_format = evsel->attr.read_format;
2149
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002150 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002151 if (read_format & PERF_FORMAT_GROUP)
2152 data->read.group.nr = *array;
2153 else
2154 data->read.one.value = *array;
2155
2156 array++;
2157
2158 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002159 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002160 data->read.time_enabled = *array;
2161 array++;
2162 }
2163
2164 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002165 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002166 data->read.time_running = *array;
2167 array++;
2168 }
2169
2170 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2171 if (read_format & PERF_FORMAT_GROUP) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002172 const u64 max_group_nr = UINT64_MAX /
2173 sizeof(struct sample_read_value);
2174
2175 if (data->read.group.nr > max_group_nr)
2176 return -EFAULT;
2177 sz = data->read.group.nr *
2178 sizeof(struct sample_read_value);
2179 OVERFLOW_CHECK(array, sz, max_size);
2180 data->read.group.values =
2181 (struct sample_read_value *)array;
2182 array = (void *)array + sz;
Jiri Olsa9ede4732012-10-10 17:38:13 +02002183 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002184 OVERFLOW_CHECK_u64(array);
Jiri Olsa9ede4732012-10-10 17:38:13 +02002185 data->read.one.id = *array;
2186 array++;
2187 }
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002188 }
2189
2190 if (type & PERF_SAMPLE_CALLCHAIN) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002191 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
2192
2193 OVERFLOW_CHECK_u64(array);
2194 data->callchain = (struct ip_callchain *)array++;
2195 if (data->callchain->nr > max_callchain_nr)
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002196 return -EFAULT;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002197 sz = data->callchain->nr * sizeof(u64);
2198 OVERFLOW_CHECK(array, sz, max_size);
2199 array = (void *)array + sz;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002200 }
2201
2202 if (type & PERF_SAMPLE_RAW) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002203 OVERFLOW_CHECK_u64(array);
David Ahern936be502011-09-06 09:12:26 -06002204 u.val64 = *array;
Jiri Olsaf9d8adb2017-11-29 19:43:46 +01002205
2206 /*
2207 * Undo swap of u64, then swap on individual u32s,
2208 * get the size of the raw area and undo all of the
2209 * swap. The pevent interface handles endianity by
2210 * itself.
2211 */
2212 if (swapped) {
David Ahern936be502011-09-06 09:12:26 -06002213 u.val64 = bswap_64(u.val64);
2214 u.val32[0] = bswap_32(u.val32[0]);
2215 u.val32[1] = bswap_32(u.val32[1]);
2216 }
David Ahern936be502011-09-06 09:12:26 -06002217 data->raw_size = u.val32[0];
Jiri Olsaf9d8adb2017-11-29 19:43:46 +01002218
2219 /*
2220 * The raw data is aligned on 64bits including the
2221 * u32 size, so it's safe to use mem_bswap_64.
2222 */
2223 if (swapped)
2224 mem_bswap_64((void *) array, data->raw_size);
2225
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002226 array = (void *)array + sizeof(u32);
Frederic Weisbecker98e1da92011-05-21 20:08:15 +02002227
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002228 OVERFLOW_CHECK(array, data->raw_size, max_size);
2229 data->raw_data = (void *)array;
2230 array = (void *)array + data->raw_size;
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002231 }
2232
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002233 if (type & PERF_SAMPLE_BRANCH_STACK) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002234 const u64 max_branch_nr = UINT64_MAX /
2235 sizeof(struct branch_entry);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002236
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002237 OVERFLOW_CHECK_u64(array);
2238 data->branch_stack = (struct branch_stack *)array++;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002239
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002240 if (data->branch_stack->nr > max_branch_nr)
2241 return -EFAULT;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002242 sz = data->branch_stack->nr * sizeof(struct branch_entry);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002243 OVERFLOW_CHECK(array, sz, max_size);
2244 array = (void *)array + sz;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01002245 }
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002246
2247 if (type & PERF_SAMPLE_REGS_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002248 OVERFLOW_CHECK_u64(array);
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002249 data->user_regs.abi = *array;
2250 array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002251
Adrian Hunter5b95a4a32013-08-27 11:23:10 +03002252 if (data->user_regs.abi) {
Jiri Olsa352ea452014-01-07 13:47:25 +01002253 u64 mask = evsel->attr.sample_regs_user;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002254
Jiri Olsa352ea452014-01-07 13:47:25 +01002255 sz = hweight_long(mask) * sizeof(u64);
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002256 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa352ea452014-01-07 13:47:25 +01002257 data->user_regs.mask = mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002258 data->user_regs.regs = (u64 *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002259 array = (void *)array + sz;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002260 }
2261 }
2262
2263 if (type & PERF_SAMPLE_STACK_USER) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002264 OVERFLOW_CHECK_u64(array);
2265 sz = *array++;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002266
2267 data->user_stack.offset = ((char *)(array - 1)
2268 - (char *) event);
2269
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002270 if (!sz) {
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002271 data->user_stack.size = 0;
2272 } else {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002273 OVERFLOW_CHECK(array, sz, max_size);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002274 data->user_stack.data = (char *)array;
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002275 array = (void *)array + sz;
2276 OVERFLOW_CHECK_u64(array);
Adrian Hunter54bd2692013-07-04 16:20:34 +03002277 data->user_stack.size = *array++;
Jiri Olsaa65cb4b2013-10-02 15:46:39 +02002278 if (WARN_ONCE(data->user_stack.size > sz,
2279 "user stack dump failure\n"))
2280 return -EFAULT;
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002281 }
2282 }
2283
Andi Kleen05484292013-01-24 16:10:29 +01002284 if (type & PERF_SAMPLE_WEIGHT) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002285 OVERFLOW_CHECK_u64(array);
Andi Kleen05484292013-01-24 16:10:29 +01002286 data->weight = *array;
2287 array++;
2288 }
2289
Stephane Eranian98a3b322013-01-24 16:10:35 +01002290 if (type & PERF_SAMPLE_DATA_SRC) {
Adrian Hunter03b6ea92013-08-27 11:23:04 +03002291 OVERFLOW_CHECK_u64(array);
Stephane Eranian98a3b322013-01-24 16:10:35 +01002292 data->data_src = *array;
2293 array++;
2294 }
2295
Andi Kleen475eeab2013-09-20 07:40:43 -07002296 if (type & PERF_SAMPLE_TRANSACTION) {
Adrian Hunter87b95522013-11-01 15:51:36 +02002297 OVERFLOW_CHECK_u64(array);
Andi Kleen475eeab2013-09-20 07:40:43 -07002298 data->transaction = *array;
2299 array++;
2300 }
2301
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002302 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2303 if (type & PERF_SAMPLE_REGS_INTR) {
2304 OVERFLOW_CHECK_u64(array);
2305 data->intr_regs.abi = *array;
2306 array++;
2307
2308 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2309 u64 mask = evsel->attr.sample_regs_intr;
2310
2311 sz = hweight_long(mask) * sizeof(u64);
2312 OVERFLOW_CHECK(array, sz, max_size);
2313 data->intr_regs.mask = mask;
2314 data->intr_regs.regs = (u64 *)array;
2315 array = (void *)array + sz;
2316 }
2317 }
2318
Kan Liang3b0a5da2017-08-29 13:11:08 -04002319 data->phys_addr = 0;
2320 if (type & PERF_SAMPLE_PHYS_ADDR) {
2321 data->phys_addr = *array;
2322 array++;
2323 }
2324
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -02002325 return 0;
2326}
Andrew Vagin74eec262011-11-28 12:03:31 +03002327
Jiri Olsa01468122017-08-03 13:10:28 +02002328int perf_evsel__parse_sample_timestamp(struct perf_evsel *evsel,
2329 union perf_event *event,
2330 u64 *timestamp)
2331{
2332 u64 type = evsel->attr.sample_type;
2333 const u64 *array;
2334
2335 if (!(type & PERF_SAMPLE_TIME))
2336 return -1;
2337
2338 if (event->header.type != PERF_RECORD_SAMPLE) {
2339 struct perf_sample data = {
2340 .time = -1ULL,
2341 };
2342
2343 if (!evsel->attr.sample_id_all)
2344 return -1;
2345 if (perf_evsel__parse_id_sample(evsel, event, &data))
2346 return -1;
2347
2348 *timestamp = data.time;
2349 return 0;
2350 }
2351
2352 array = event->sample.array;
2353
2354 if (perf_event__check_size(event, evsel->sample_size))
2355 return -EFAULT;
2356
2357 if (type & PERF_SAMPLE_IDENTIFIER)
2358 array++;
2359
2360 if (type & PERF_SAMPLE_IP)
2361 array++;
2362
2363 if (type & PERF_SAMPLE_TID)
2364 array++;
2365
2366 if (type & PERF_SAMPLE_TIME)
2367 *timestamp = *array;
2368
2369 return 0;
2370}
2371
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002372size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002373 u64 read_format)
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002374{
2375 size_t sz, result = sizeof(struct sample_event);
2376
2377 if (type & PERF_SAMPLE_IDENTIFIER)
2378 result += sizeof(u64);
2379
2380 if (type & PERF_SAMPLE_IP)
2381 result += sizeof(u64);
2382
2383 if (type & PERF_SAMPLE_TID)
2384 result += sizeof(u64);
2385
2386 if (type & PERF_SAMPLE_TIME)
2387 result += sizeof(u64);
2388
2389 if (type & PERF_SAMPLE_ADDR)
2390 result += sizeof(u64);
2391
2392 if (type & PERF_SAMPLE_ID)
2393 result += sizeof(u64);
2394
2395 if (type & PERF_SAMPLE_STREAM_ID)
2396 result += sizeof(u64);
2397
2398 if (type & PERF_SAMPLE_CPU)
2399 result += sizeof(u64);
2400
2401 if (type & PERF_SAMPLE_PERIOD)
2402 result += sizeof(u64);
2403
2404 if (type & PERF_SAMPLE_READ) {
2405 result += sizeof(u64);
2406 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2407 result += sizeof(u64);
2408 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2409 result += sizeof(u64);
2410 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2411 if (read_format & PERF_FORMAT_GROUP) {
2412 sz = sample->read.group.nr *
2413 sizeof(struct sample_read_value);
2414 result += sz;
2415 } else {
2416 result += sizeof(u64);
2417 }
2418 }
2419
2420 if (type & PERF_SAMPLE_CALLCHAIN) {
2421 sz = (sample->callchain->nr + 1) * sizeof(u64);
2422 result += sz;
2423 }
2424
2425 if (type & PERF_SAMPLE_RAW) {
2426 result += sizeof(u32);
2427 result += sample->raw_size;
2428 }
2429
2430 if (type & PERF_SAMPLE_BRANCH_STACK) {
2431 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2432 sz += sizeof(u64);
2433 result += sz;
2434 }
2435
2436 if (type & PERF_SAMPLE_REGS_USER) {
2437 if (sample->user_regs.abi) {
2438 result += sizeof(u64);
Jiri Olsa352ea452014-01-07 13:47:25 +01002439 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002440 result += sz;
2441 } else {
2442 result += sizeof(u64);
2443 }
2444 }
2445
2446 if (type & PERF_SAMPLE_STACK_USER) {
2447 sz = sample->user_stack.size;
2448 result += sizeof(u64);
2449 if (sz) {
2450 result += sz;
2451 result += sizeof(u64);
2452 }
2453 }
2454
2455 if (type & PERF_SAMPLE_WEIGHT)
2456 result += sizeof(u64);
2457
2458 if (type & PERF_SAMPLE_DATA_SRC)
2459 result += sizeof(u64);
2460
Adrian Hunter42d88912013-11-01 15:51:38 +02002461 if (type & PERF_SAMPLE_TRANSACTION)
2462 result += sizeof(u64);
2463
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002464 if (type & PERF_SAMPLE_REGS_INTR) {
2465 if (sample->intr_regs.abi) {
2466 result += sizeof(u64);
2467 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2468 result += sz;
2469 } else {
2470 result += sizeof(u64);
2471 }
2472 }
2473
Kan Liang3b0a5da2017-08-29 13:11:08 -04002474 if (type & PERF_SAMPLE_PHYS_ADDR)
2475 result += sizeof(u64);
2476
Adrian Hunterb1cf6f62013-08-27 11:23:12 +03002477 return result;
2478}
2479
Andrew Vagin74eec262011-11-28 12:03:31 +03002480int perf_event__synthesize_sample(union perf_event *event, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +01002481 u64 read_format,
Adrian Hunter936f1f32018-01-16 15:14:52 +02002482 const struct perf_sample *sample)
Andrew Vagin74eec262011-11-28 12:03:31 +03002483{
2484 u64 *array;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002485 size_t sz;
Andrew Vagin74eec262011-11-28 12:03:31 +03002486 /*
2487 * used for cross-endian analysis. See git commit 65014ab3
2488 * for why this goofiness is needed.
2489 */
Jiri Olsa6a11f922012-05-16 08:59:04 +02002490 union u64_swap u;
Andrew Vagin74eec262011-11-28 12:03:31 +03002491
2492 array = event->sample.array;
2493
Adrian Hunter75562572013-08-27 11:23:09 +03002494 if (type & PERF_SAMPLE_IDENTIFIER) {
2495 *array = sample->id;
2496 array++;
2497 }
2498
Andrew Vagin74eec262011-11-28 12:03:31 +03002499 if (type & PERF_SAMPLE_IP) {
Adrian Hunteref893252013-08-27 11:23:06 +03002500 *array = sample->ip;
Andrew Vagin74eec262011-11-28 12:03:31 +03002501 array++;
2502 }
2503
2504 if (type & PERF_SAMPLE_TID) {
2505 u.val32[0] = sample->pid;
2506 u.val32[1] = sample->tid;
Andrew Vagin74eec262011-11-28 12:03:31 +03002507 *array = u.val64;
2508 array++;
2509 }
2510
2511 if (type & PERF_SAMPLE_TIME) {
2512 *array = sample->time;
2513 array++;
2514 }
2515
2516 if (type & PERF_SAMPLE_ADDR) {
2517 *array = sample->addr;
2518 array++;
2519 }
2520
2521 if (type & PERF_SAMPLE_ID) {
2522 *array = sample->id;
2523 array++;
2524 }
2525
2526 if (type & PERF_SAMPLE_STREAM_ID) {
2527 *array = sample->stream_id;
2528 array++;
2529 }
2530
2531 if (type & PERF_SAMPLE_CPU) {
2532 u.val32[0] = sample->cpu;
Adrian Hunter59a87fd2018-01-16 15:14:51 +02002533 u.val32[1] = 0;
Andrew Vagin74eec262011-11-28 12:03:31 +03002534 *array = u.val64;
2535 array++;
2536 }
2537
2538 if (type & PERF_SAMPLE_PERIOD) {
2539 *array = sample->period;
2540 array++;
2541 }
2542
Adrian Hunterd03f2172013-08-27 11:23:11 +03002543 if (type & PERF_SAMPLE_READ) {
2544 if (read_format & PERF_FORMAT_GROUP)
2545 *array = sample->read.group.nr;
2546 else
2547 *array = sample->read.one.value;
2548 array++;
2549
2550 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2551 *array = sample->read.time_enabled;
2552 array++;
2553 }
2554
2555 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2556 *array = sample->read.time_running;
2557 array++;
2558 }
2559
2560 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2561 if (read_format & PERF_FORMAT_GROUP) {
2562 sz = sample->read.group.nr *
2563 sizeof(struct sample_read_value);
2564 memcpy(array, sample->read.group.values, sz);
2565 array = (void *)array + sz;
2566 } else {
2567 *array = sample->read.one.id;
2568 array++;
2569 }
2570 }
2571
2572 if (type & PERF_SAMPLE_CALLCHAIN) {
2573 sz = (sample->callchain->nr + 1) * sizeof(u64);
2574 memcpy(array, sample->callchain, sz);
2575 array = (void *)array + sz;
2576 }
2577
2578 if (type & PERF_SAMPLE_RAW) {
2579 u.val32[0] = sample->raw_size;
Adrian Hunterd03f2172013-08-27 11:23:11 +03002580 *array = u.val64;
2581 array = (void *)array + sizeof(u32);
2582
2583 memcpy(array, sample->raw_data, sample->raw_size);
2584 array = (void *)array + sample->raw_size;
2585 }
2586
2587 if (type & PERF_SAMPLE_BRANCH_STACK) {
2588 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
2589 sz += sizeof(u64);
2590 memcpy(array, sample->branch_stack, sz);
2591 array = (void *)array + sz;
2592 }
2593
2594 if (type & PERF_SAMPLE_REGS_USER) {
2595 if (sample->user_regs.abi) {
2596 *array++ = sample->user_regs.abi;
Jiri Olsa352ea452014-01-07 13:47:25 +01002597 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
Adrian Hunterd03f2172013-08-27 11:23:11 +03002598 memcpy(array, sample->user_regs.regs, sz);
2599 array = (void *)array + sz;
2600 } else {
2601 *array++ = 0;
2602 }
2603 }
2604
2605 if (type & PERF_SAMPLE_STACK_USER) {
2606 sz = sample->user_stack.size;
2607 *array++ = sz;
2608 if (sz) {
2609 memcpy(array, sample->user_stack.data, sz);
2610 array = (void *)array + sz;
2611 *array++ = sz;
2612 }
2613 }
2614
2615 if (type & PERF_SAMPLE_WEIGHT) {
2616 *array = sample->weight;
2617 array++;
2618 }
2619
2620 if (type & PERF_SAMPLE_DATA_SRC) {
2621 *array = sample->data_src;
2622 array++;
2623 }
2624
Adrian Hunter42d88912013-11-01 15:51:38 +02002625 if (type & PERF_SAMPLE_TRANSACTION) {
2626 *array = sample->transaction;
2627 array++;
2628 }
2629
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002630 if (type & PERF_SAMPLE_REGS_INTR) {
2631 if (sample->intr_regs.abi) {
2632 *array++ = sample->intr_regs.abi;
2633 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
2634 memcpy(array, sample->intr_regs.regs, sz);
2635 array = (void *)array + sz;
2636 } else {
2637 *array++ = 0;
2638 }
2639 }
2640
Kan Liang3b0a5da2017-08-29 13:11:08 -04002641 if (type & PERF_SAMPLE_PHYS_ADDR) {
2642 *array = sample->phys_addr;
2643 array++;
2644 }
2645
Andrew Vagin74eec262011-11-28 12:03:31 +03002646 return 0;
2647}
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002648
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002649struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
2650{
2651 return pevent_find_field(evsel->tp_format, name);
2652}
2653
Arnaldo Carvalho de Melo5d2074e2012-09-26 20:22:00 -03002654void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002655 const char *name)
2656{
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002657 struct format_field *field = perf_evsel__field(evsel, name);
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002658 int offset;
2659
Arnaldo Carvalho de Meloefd2b922012-09-18 11:21:50 -03002660 if (!field)
2661 return NULL;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002662
2663 offset = field->offset;
2664
2665 if (field->flags & FIELD_IS_DYNAMIC) {
2666 offset = *(int *)(sample->raw_data + field->offset);
2667 offset &= 0xffff;
2668 }
2669
2670 return sample->raw_data + offset;
2671}
2672
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002673u64 format_field__intval(struct format_field *field, struct perf_sample *sample,
2674 bool needs_swap)
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002675{
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002676 u64 value;
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002677 void *ptr = sample->raw_data + field->offset;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002678
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002679 switch (field->size) {
2680 case 1:
2681 return *(u8 *)ptr;
2682 case 2:
2683 value = *(u16 *)ptr;
2684 break;
2685 case 4:
2686 value = *(u32 *)ptr;
2687 break;
2688 case 8:
David Aherne94eeda2015-03-24 16:14:09 -04002689 memcpy(&value, ptr, sizeof(u64));
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002690 break;
2691 default:
2692 return 0;
2693 }
2694
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002695 if (!needs_swap)
Arnaldo Carvalho de Meloe6b6f672012-09-26 13:13:04 -03002696 return value;
2697
2698 switch (field->size) {
2699 case 2:
2700 return bswap_16(value);
2701 case 4:
2702 return bswap_32(value);
2703 case 8:
2704 return bswap_64(value);
2705 default:
2706 return 0;
2707 }
2708
2709 return 0;
Arnaldo Carvalho de Melo5555ded2012-09-11 19:24:23 -03002710}
Arnaldo Carvalho de Melo0698aed2012-12-10 18:17:08 -03002711
Arnaldo Carvalho de Melo90525172016-05-31 12:47:46 -03002712u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
2713 const char *name)
2714{
2715 struct format_field *field = perf_evsel__field(evsel, name);
2716
2717 if (!field)
2718 return 0;
2719
2720 return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2721}
2722
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002723bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
2724 char *msg, size_t msgsize)
2725{
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002726 int paranoid;
2727
David Ahern2b821cc2013-07-18 17:27:59 -06002728 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002729 evsel->attr.type == PERF_TYPE_HARDWARE &&
2730 evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2731 /*
2732 * If it's cycles then fall back to hrtimer based
2733 * cpu-clock-tick sw counter, which is always available even if
2734 * no PMU support.
2735 *
2736 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2737 * b0a873e).
2738 */
2739 scnprintf(msg, msgsize, "%s",
2740"The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2741
2742 evsel->attr.type = PERF_TYPE_SOFTWARE;
2743 evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK;
2744
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03002745 zfree(&evsel->name);
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002746 return true;
Arnaldo Carvalho de Melo08094822016-05-12 16:07:47 -03002747 } else if (err == EACCES && !evsel->attr.exclude_kernel &&
2748 (paranoid = perf_event_paranoid()) > 1) {
2749 const char *name = perf_evsel__name(evsel);
2750 char *new_name;
2751
2752 if (asprintf(&new_name, "%s%su", name, strchr(name, ':') ? "" : ":") < 0)
2753 return false;
2754
2755 if (evsel->name)
2756 free(evsel->name);
2757 evsel->name = new_name;
2758 scnprintf(msg, msgsize,
2759"kernel.perf_event_paranoid=%d, trying to fall back to excluding kernel samples", paranoid);
2760 evsel->attr.exclude_kernel = 1;
2761
2762 return true;
Arnaldo Carvalho de Meloc0a54342012-12-13 14:16:30 -03002763 }
2764
2765 return false;
2766}
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002767
Arnaldo Carvalho de Melo2157f6e2017-06-20 12:05:38 -03002768static bool find_process(const char *name)
2769{
2770 size_t len = strlen(name);
2771 DIR *dir;
2772 struct dirent *d;
2773 int ret = -1;
2774
2775 dir = opendir(procfs__mountpoint());
2776 if (!dir)
2777 return false;
2778
2779 /* Walk through the directory. */
2780 while (ret && (d = readdir(dir)) != NULL) {
2781 char path[PATH_MAX];
2782 char *data;
2783 size_t size;
2784
2785 if ((d->d_type != DT_DIR) ||
2786 !strcmp(".", d->d_name) ||
2787 !strcmp("..", d->d_name))
2788 continue;
2789
2790 scnprintf(path, sizeof(path), "%s/%s/comm",
2791 procfs__mountpoint(), d->d_name);
2792
2793 if (filename__read_str(path, &data, &size))
2794 continue;
2795
2796 ret = strncmp(name, data, len);
2797 free(data);
2798 }
2799
2800 closedir(dir);
2801 return ret ? false : true;
2802}
2803
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002804int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002805 int err, char *msg, size_t size)
2806{
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002807 char sbuf[STRERR_BUFSIZE];
Jin Yao32ccb132017-04-07 20:08:52 +08002808 int printed = 0;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002809
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002810 switch (err) {
2811 case EPERM:
2812 case EACCES:
Jin Yao32ccb132017-04-07 20:08:52 +08002813 if (err == EPERM)
2814 printed = scnprintf(msg, size,
2815 "No permission to enable %s event.\n\n",
2816 perf_evsel__name(evsel));
2817
2818 return scnprintf(msg + printed, size - printed,
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002819 "You may not have permission to collect %sstats.\n\n"
2820 "Consider tweaking /proc/sys/kernel/perf_event_paranoid,\n"
2821 "which controls use of the performance events system by\n"
2822 "unprivileged users (without CAP_SYS_ADMIN).\n\n"
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002823 "The current value is %d:\n\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002824 " -1: Allow use of (almost) all events by all users\n"
Konstantin Khlebnikovac0bb6b2017-08-20 14:39:20 +03002825 " Ignore mlock limit after perf_event_mlock_kb without CAP_IPC_LOCK\n"
2826 ">= 0: Disallow ftrace function tracepoint by users without CAP_SYS_ADMIN\n"
2827 " Disallow raw tracepoint access by users without CAP_SYS_ADMIN\n"
Ben Hutchings3379e0c2016-01-19 21:35:15 +00002828 ">= 1: Disallow CPU event access by users without CAP_SYS_ADMIN\n"
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -03002829 ">= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN\n\n"
2830 "To make this setting permanent, edit /etc/sysctl.conf too, e.g.:\n\n"
2831 " kernel.perf_event_paranoid = -1\n" ,
Arnaldo Carvalho de Melo7d173912016-05-12 15:44:55 -03002832 target->system_wide ? "system-wide " : "",
2833 perf_event_paranoid());
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002834 case ENOENT:
2835 return scnprintf(msg, size, "The %s event is not supported.",
2836 perf_evsel__name(evsel));
2837 case EMFILE:
2838 return scnprintf(msg, size, "%s",
2839 "Too many events are opened.\n"
Jiri Olsa18ffdfe2015-05-25 22:51:54 +02002840 "Probably the maximum number of open file descriptors has been reached.\n"
2841 "Hint: Try again after reducing the number of events.\n"
2842 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
Arnaldo Carvalho de Melode46d522016-04-27 17:51:45 -03002843 case ENOMEM:
2844 if ((evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0 &&
2845 access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2846 return scnprintf(msg, size,
2847 "Not enough memory to setup event with callchain.\n"
2848 "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2849 "Hint: Current value: %d", sysctl_perf_event_max_stack);
2850 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002851 case ENODEV:
2852 if (target->cpu_list)
2853 return scnprintf(msg, size, "%s",
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002854 "No such device - did you specify an out-of-range profile CPU?");
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002855 break;
2856 case EOPNOTSUPP:
Vineet Guptadc89e752016-05-09 15:07:39 +05302857 if (evsel->attr.sample_period != 0)
Kim Phillips114bc192017-11-14 15:04:52 -06002858 return scnprintf(msg, size,
2859 "%s: PMU Hardware doesn't support sampling/overflow-interrupts. Try 'perf stat'",
2860 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002861 if (evsel->attr.precise_ip)
2862 return scnprintf(msg, size, "%s",
2863 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2864#if defined(__i386__) || defined(__x86_64__)
2865 if (evsel->attr.type == PERF_TYPE_HARDWARE)
2866 return scnprintf(msg, size, "%s",
2867 "No hardware sampling interrupt available.\n"
2868 "No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.");
2869#endif
2870 break;
Jiri Olsa63914ac2014-08-01 17:46:54 +02002871 case EBUSY:
2872 if (find_process("oprofiled"))
2873 return scnprintf(msg, size,
2874 "The PMU counters are busy/taken by another profiler.\n"
2875 "We found oprofile daemon running, please stop it and try again.");
2876 break;
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002877 case EINVAL:
Arnaldo Carvalho de Melo32a951b2016-07-14 08:34:33 +00002878 if (evsel->attr.write_backward && perf_missing_features.write_backward)
Arnaldo Carvalho de Melo7da36e92016-06-20 10:47:18 +00002879 return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
Peter Zijlstra814c8c32015-03-31 00:19:31 +02002880 if (perf_missing_features.clockid)
2881 return scnprintf(msg, size, "clockid feature not supported.");
2882 if (perf_missing_features.clockid_wrong)
2883 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2884 break;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002885 default:
2886 break;
2887 }
2888
2889 return scnprintf(msg, size,
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002890 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002891 "/bin/dmesg may provide additional information.\n"
Arnaldo Carvalho de Melo81d64f42016-04-27 17:56:53 -03002892 "No CONFIG_PERF_EVENTS=y kernel support configured?",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03002893 err, str_error_r(err, sbuf, sizeof(sbuf)),
Masami Hiramatsu6e81c742014-08-14 02:22:36 +00002894 perf_evsel__name(evsel));
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -03002895}
Ravi Bangoriaf4e47f92016-06-30 11:44:19 +05302896
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03002897struct perf_env *perf_evsel__env(struct perf_evsel *evsel)
Jin Yao69fb09f2017-07-07 13:06:34 +08002898{
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03002899 if (evsel && evsel->evlist)
2900 return evsel->evlist->env;
Jin Yao69fb09f2017-07-07 13:06:34 +08002901 return NULL;
2902}