perf stat: Use xyarray for cpu evsel counts
[deliverable/linux.git] / tools / perf / util / evsel.c
CommitLineData
f8a95309
ACM
1/*
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
936be503 10#include <byteswap.h>
0f6a3015 11#include <linux/bitops.h>
553873e1 12#include <api/fs/debugfs.h>
4e319027
RR
13#include <traceevent/event-parse.h>
14#include <linux/hw_breakpoint.h>
15#include <linux/perf_event.h>
bec19672 16#include <sys/resource.h>
4e319027 17#include "asm/bug.h"
8f651eae 18#include "callchain.h"
f14d5707 19#include "cgroup.h"
69aad6f1 20#include "evsel.h"
70082dd9 21#include "evlist.h"
69aad6f1 22#include "util.h"
86bd5e86 23#include "cpumap.h"
fd78260b 24#include "thread_map.h"
12864b31 25#include "target.h"
26d33022 26#include "perf_regs.h"
e3e1a54f 27#include "debug.h"
97978b3e 28#include "trace-event.h"
a9a3a4d9 29#include "stat.h"
69aad6f1 30
594ac61a
ACM
31static struct {
32 bool sample_id_all;
33 bool exclude_guest;
5c5e854b 34 bool mmap2;
57480d2c 35 bool cloexec;
814c8c38
PZ
36 bool clockid;
37 bool clockid_wrong;
594ac61a
ACM
38} perf_missing_features;
39
814c8c38
PZ
40static clockid_t clockid;
41
ce8ccff5
ACM
42static int perf_evsel__no_extra_init(struct perf_evsel *evsel __maybe_unused)
43{
44 return 0;
45}
46
47static void perf_evsel__no_extra_fini(struct perf_evsel *evsel __maybe_unused)
48{
49}
50
51static struct {
52 size_t size;
53 int (*init)(struct perf_evsel *evsel);
54 void (*fini)(struct perf_evsel *evsel);
55} perf_evsel__object = {
56 .size = sizeof(struct perf_evsel),
57 .init = perf_evsel__no_extra_init,
58 .fini = perf_evsel__no_extra_fini,
59};
60
61int perf_evsel__object_config(size_t object_size,
62 int (*init)(struct perf_evsel *evsel),
63 void (*fini)(struct perf_evsel *evsel))
64{
65
66 if (object_size == 0)
67 goto set_methods;
68
69 if (perf_evsel__object.size > object_size)
70 return -EINVAL;
71
72 perf_evsel__object.size = object_size;
73
74set_methods:
75 if (init != NULL)
76 perf_evsel__object.init = init;
77
78 if (fini != NULL)
79 perf_evsel__object.fini = fini;
80
81 return 0;
82}
83
c52b12ed
ACM
84#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
85
75562573 86int __perf_evsel__sample_size(u64 sample_type)
c2a70653
ACM
87{
88 u64 mask = sample_type & PERF_SAMPLE_MASK;
89 int size = 0;
90 int i;
91
92 for (i = 0; i < 64; i++) {
93 if (mask & (1ULL << i))
94 size++;
95 }
96
97 size *= sizeof(u64);
98
99 return size;
100}
101
75562573
AH
102/**
103 * __perf_evsel__calc_id_pos - calculate id_pos.
104 * @sample_type: sample type
105 *
106 * This function returns the position of the event id (PERF_SAMPLE_ID or
107 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct
108 * sample_event.
109 */
110static int __perf_evsel__calc_id_pos(u64 sample_type)
111{
112 int idx = 0;
113
114 if (sample_type & PERF_SAMPLE_IDENTIFIER)
115 return 0;
116
117 if (!(sample_type & PERF_SAMPLE_ID))
118 return -1;
119
120 if (sample_type & PERF_SAMPLE_IP)
121 idx += 1;
122
123 if (sample_type & PERF_SAMPLE_TID)
124 idx += 1;
125
126 if (sample_type & PERF_SAMPLE_TIME)
127 idx += 1;
128
129 if (sample_type & PERF_SAMPLE_ADDR)
130 idx += 1;
131
132 return idx;
133}
134
135/**
136 * __perf_evsel__calc_is_pos - calculate is_pos.
137 * @sample_type: sample type
138 *
139 * This function returns the position (counting backwards) of the event id
140 * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if
141 * sample_id_all is used there is an id sample appended to non-sample events.
142 */
143static int __perf_evsel__calc_is_pos(u64 sample_type)
144{
145 int idx = 1;
146
147 if (sample_type & PERF_SAMPLE_IDENTIFIER)
148 return 1;
149
150 if (!(sample_type & PERF_SAMPLE_ID))
151 return -1;
152
153 if (sample_type & PERF_SAMPLE_CPU)
154 idx += 1;
155
156 if (sample_type & PERF_SAMPLE_STREAM_ID)
157 idx += 1;
158
159 return idx;
160}
161
162void perf_evsel__calc_id_pos(struct perf_evsel *evsel)
163{
164 evsel->id_pos = __perf_evsel__calc_id_pos(evsel->attr.sample_type);
165 evsel->is_pos = __perf_evsel__calc_is_pos(evsel->attr.sample_type);
166}
167
7be5ebe8
ACM
168void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
169 enum perf_event_sample_format bit)
170{
171 if (!(evsel->attr.sample_type & bit)) {
172 evsel->attr.sample_type |= bit;
173 evsel->sample_size += sizeof(u64);
75562573 174 perf_evsel__calc_id_pos(evsel);
7be5ebe8
ACM
175 }
176}
177
178void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
179 enum perf_event_sample_format bit)
180{
181 if (evsel->attr.sample_type & bit) {
182 evsel->attr.sample_type &= ~bit;
183 evsel->sample_size -= sizeof(u64);
75562573 184 perf_evsel__calc_id_pos(evsel);
7be5ebe8
ACM
185 }
186}
187
75562573
AH
188void perf_evsel__set_sample_id(struct perf_evsel *evsel,
189 bool can_sample_identifier)
7a5a5ca5 190{
75562573
AH
191 if (can_sample_identifier) {
192 perf_evsel__reset_sample_bit(evsel, ID);
193 perf_evsel__set_sample_bit(evsel, IDENTIFIER);
194 } else {
195 perf_evsel__set_sample_bit(evsel, ID);
196 }
7a5a5ca5
ACM
197 evsel->attr.read_format |= PERF_FORMAT_ID;
198}
199
ef1d1af2
ACM
200void perf_evsel__init(struct perf_evsel *evsel,
201 struct perf_event_attr *attr, int idx)
202{
203 evsel->idx = idx;
60b0896c 204 evsel->tracking = !idx;
ef1d1af2 205 evsel->attr = *attr;
2cfda562 206 evsel->leader = evsel;
410136f5
SE
207 evsel->unit = "";
208 evsel->scale = 1.0;
ef1d1af2 209 INIT_LIST_HEAD(&evsel->node);
ce8ccff5 210 perf_evsel__object.init(evsel);
bde09467 211 evsel->sample_size = __perf_evsel__sample_size(attr->sample_type);
75562573 212 perf_evsel__calc_id_pos(evsel);
ef1d1af2
ACM
213}
214
ef503831 215struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx)
69aad6f1 216{
ce8ccff5 217 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
69aad6f1 218
ef1d1af2
ACM
219 if (evsel != NULL)
220 perf_evsel__init(evsel, attr, idx);
69aad6f1
ACM
221
222 return evsel;
223}
224
ef503831 225struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx)
efd2b924 226{
ce8ccff5 227 struct perf_evsel *evsel = zalloc(perf_evsel__object.size);
efd2b924
ACM
228
229 if (evsel != NULL) {
230 struct perf_event_attr attr = {
0b80f8b3
ACM
231 .type = PERF_TYPE_TRACEPOINT,
232 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
233 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
efd2b924
ACM
234 };
235
e48ffe2b
ACM
236 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
237 goto out_free;
238
97978b3e 239 evsel->tp_format = trace_event__tp_format(sys, name);
efd2b924
ACM
240 if (evsel->tp_format == NULL)
241 goto out_free;
242
0b80f8b3 243 event_attr_init(&attr);
efd2b924 244 attr.config = evsel->tp_format->id;
0b80f8b3 245 attr.sample_period = 1;
efd2b924 246 perf_evsel__init(evsel, &attr, idx);
efd2b924
ACM
247 }
248
249 return evsel;
250
251out_free:
74cf249d 252 zfree(&evsel->name);
efd2b924
ACM
253 free(evsel);
254 return NULL;
255}
256
8ad7013b 257const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
c410431c
ACM
258 "cycles",
259 "instructions",
260 "cache-references",
261 "cache-misses",
262 "branches",
263 "branch-misses",
264 "bus-cycles",
265 "stalled-cycles-frontend",
266 "stalled-cycles-backend",
267 "ref-cycles",
268};
269
dd4f5223 270static const char *__perf_evsel__hw_name(u64 config)
c410431c
ACM
271{
272 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
273 return perf_evsel__hw_names[config];
274
275 return "unknown-hardware";
276}
277
27f18617 278static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
c410431c 279{
27f18617 280 int colon = 0, r = 0;
c410431c 281 struct perf_event_attr *attr = &evsel->attr;
c410431c
ACM
282 bool exclude_guest_default = false;
283
284#define MOD_PRINT(context, mod) do { \
285 if (!attr->exclude_##context) { \
27f18617 286 if (!colon) colon = ++r; \
c410431c
ACM
287 r += scnprintf(bf + r, size - r, "%c", mod); \
288 } } while(0)
289
290 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
291 MOD_PRINT(kernel, 'k');
292 MOD_PRINT(user, 'u');
293 MOD_PRINT(hv, 'h');
294 exclude_guest_default = true;
295 }
296
297 if (attr->precise_ip) {
298 if (!colon)
27f18617 299 colon = ++r;
c410431c
ACM
300 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
301 exclude_guest_default = true;
302 }
303
304 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
305 MOD_PRINT(host, 'H');
306 MOD_PRINT(guest, 'G');
307 }
308#undef MOD_PRINT
309 if (colon)
27f18617 310 bf[colon - 1] = ':';
c410431c
ACM
311 return r;
312}
313
27f18617
ACM
314static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
315{
316 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
317 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
318}
319
8ad7013b 320const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
335c2f5d
ACM
321 "cpu-clock",
322 "task-clock",
323 "page-faults",
324 "context-switches",
8ad7013b 325 "cpu-migrations",
335c2f5d
ACM
326 "minor-faults",
327 "major-faults",
328 "alignment-faults",
329 "emulation-faults",
d22d1a2a 330 "dummy",
335c2f5d
ACM
331};
332
dd4f5223 333static const char *__perf_evsel__sw_name(u64 config)
335c2f5d
ACM
334{
335 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
336 return perf_evsel__sw_names[config];
337 return "unknown-software";
338}
339
340static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
341{
342 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
343 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
344}
345
287e74aa
JO
346static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
347{
348 int r;
349
350 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
351
352 if (type & HW_BREAKPOINT_R)
353 r += scnprintf(bf + r, size - r, "r");
354
355 if (type & HW_BREAKPOINT_W)
356 r += scnprintf(bf + r, size - r, "w");
357
358 if (type & HW_BREAKPOINT_X)
359 r += scnprintf(bf + r, size - r, "x");
360
361 return r;
362}
363
364static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size)
365{
366 struct perf_event_attr *attr = &evsel->attr;
367 int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
368 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
369}
370
0b668bc9
ACM
371const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
372 [PERF_EVSEL__MAX_ALIASES] = {
373 { "L1-dcache", "l1-d", "l1d", "L1-data", },
374 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
375 { "LLC", "L2", },
376 { "dTLB", "d-tlb", "Data-TLB", },
377 { "iTLB", "i-tlb", "Instruction-TLB", },
378 { "branch", "branches", "bpu", "btb", "bpc", },
379 { "node", },
380};
381
382const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
383 [PERF_EVSEL__MAX_ALIASES] = {
384 { "load", "loads", "read", },
385 { "store", "stores", "write", },
386 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
387};
388
389const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
390 [PERF_EVSEL__MAX_ALIASES] = {
391 { "refs", "Reference", "ops", "access", },
392 { "misses", "miss", },
393};
394
395#define C(x) PERF_COUNT_HW_CACHE_##x
396#define CACHE_READ (1 << C(OP_READ))
397#define CACHE_WRITE (1 << C(OP_WRITE))
398#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
399#define COP(x) (1 << x)
400
401/*
402 * cache operartion stat
403 * L1I : Read and prefetch only
404 * ITLB and BPU : Read-only
405 */
406static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
407 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
408 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
409 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
410 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
411 [C(ITLB)] = (CACHE_READ),
412 [C(BPU)] = (CACHE_READ),
413 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
414};
415
416bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
417{
418 if (perf_evsel__hw_cache_stat[type] & COP(op))
419 return true; /* valid */
420 else
421 return false; /* invalid */
422}
423
424int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
425 char *bf, size_t size)
426{
427 if (result) {
428 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
429 perf_evsel__hw_cache_op[op][0],
430 perf_evsel__hw_cache_result[result][0]);
431 }
432
433 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
434 perf_evsel__hw_cache_op[op][1]);
435}
436
dd4f5223 437static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
0b668bc9
ACM
438{
439 u8 op, result, type = (config >> 0) & 0xff;
440 const char *err = "unknown-ext-hardware-cache-type";
441
442 if (type > PERF_COUNT_HW_CACHE_MAX)
443 goto out_err;
444
445 op = (config >> 8) & 0xff;
446 err = "unknown-ext-hardware-cache-op";
447 if (op > PERF_COUNT_HW_CACHE_OP_MAX)
448 goto out_err;
449
450 result = (config >> 16) & 0xff;
451 err = "unknown-ext-hardware-cache-result";
452 if (result > PERF_COUNT_HW_CACHE_RESULT_MAX)
453 goto out_err;
454
455 err = "invalid-cache";
456 if (!perf_evsel__is_cache_op_valid(type, op))
457 goto out_err;
458
459 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
460out_err:
461 return scnprintf(bf, size, "%s", err);
462}
463
464static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
465{
466 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
467 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
468}
469
6eef3d9c
ACM
470static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
471{
472 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
473 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
474}
475
7289f83c 476const char *perf_evsel__name(struct perf_evsel *evsel)
a4460836 477{
7289f83c 478 char bf[128];
a4460836 479
7289f83c
ACM
480 if (evsel->name)
481 return evsel->name;
c410431c
ACM
482
483 switch (evsel->attr.type) {
484 case PERF_TYPE_RAW:
6eef3d9c 485 perf_evsel__raw_name(evsel, bf, sizeof(bf));
c410431c
ACM
486 break;
487
488 case PERF_TYPE_HARDWARE:
7289f83c 489 perf_evsel__hw_name(evsel, bf, sizeof(bf));
c410431c 490 break;
0b668bc9
ACM
491
492 case PERF_TYPE_HW_CACHE:
7289f83c 493 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
0b668bc9
ACM
494 break;
495
335c2f5d 496 case PERF_TYPE_SOFTWARE:
7289f83c 497 perf_evsel__sw_name(evsel, bf, sizeof(bf));
335c2f5d
ACM
498 break;
499
a4460836 500 case PERF_TYPE_TRACEPOINT:
7289f83c 501 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
a4460836
ACM
502 break;
503
287e74aa
JO
504 case PERF_TYPE_BREAKPOINT:
505 perf_evsel__bp_name(evsel, bf, sizeof(bf));
506 break;
507
c410431c 508 default:
ca1b1457
RR
509 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
510 evsel->attr.type);
a4460836 511 break;
c410431c
ACM
512 }
513
7289f83c
ACM
514 evsel->name = strdup(bf);
515
516 return evsel->name ?: "unknown";
c410431c
ACM
517}
518
717e263f
NK
519const char *perf_evsel__group_name(struct perf_evsel *evsel)
520{
521 return evsel->group_name ?: "anon group";
522}
523
524int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size)
525{
526 int ret;
527 struct perf_evsel *pos;
528 const char *group_name = perf_evsel__group_name(evsel);
529
530 ret = scnprintf(buf, size, "%s", group_name);
531
532 ret += scnprintf(buf + ret, size - ret, " { %s",
533 perf_evsel__name(evsel));
534
535 for_each_group_member(pos, evsel)
536 ret += scnprintf(buf + ret, size - ret, ", %s",
537 perf_evsel__name(pos));
538
539 ret += scnprintf(buf + ret, size - ret, " }");
540
541 return ret;
542}
543
6bedfab6 544static void
aad2b21c
KL
545perf_evsel__config_callgraph(struct perf_evsel *evsel,
546 struct record_opts *opts)
6bedfab6
JO
547{
548 bool function = perf_evsel__is_function_event(evsel);
549 struct perf_event_attr *attr = &evsel->attr;
550
551 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
552
aad2b21c
KL
553 if (callchain_param.record_mode == CALLCHAIN_LBR) {
554 if (!opts->branch_stack) {
555 if (attr->exclude_user) {
556 pr_warning("LBR callstack option is only available "
557 "to get user callchain information. "
558 "Falling back to framepointers.\n");
559 } else {
560 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
561 attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER |
562 PERF_SAMPLE_BRANCH_CALL_STACK;
563 }
564 } else
565 pr_warning("Cannot use LBR callstack with branch stack. "
566 "Falling back to framepointers.\n");
567 }
568
72a128aa 569 if (callchain_param.record_mode == CALLCHAIN_DWARF) {
6bedfab6
JO
570 if (!function) {
571 perf_evsel__set_sample_bit(evsel, REGS_USER);
572 perf_evsel__set_sample_bit(evsel, STACK_USER);
573 attr->sample_regs_user = PERF_REGS_MASK;
72a128aa 574 attr->sample_stack_user = callchain_param.dump_size;
6bedfab6
JO
575 attr->exclude_callchain_user = 1;
576 } else {
577 pr_info("Cannot use DWARF unwind for function trace event,"
578 " falling back to framepointers.\n");
579 }
580 }
581
582 if (function) {
583 pr_info("Disabling user space callchains for function trace event.\n");
584 attr->exclude_callchain_user = 1;
585 }
586}
587
774cb499
JO
588/*
589 * The enable_on_exec/disabled value strategy:
590 *
591 * 1) For any type of traced program:
592 * - all independent events and group leaders are disabled
593 * - all group members are enabled
594 *
595 * Group members are ruled by group leaders. They need to
596 * be enabled, because the group scheduling relies on that.
597 *
598 * 2) For traced programs executed by perf:
599 * - all independent events and group leaders have
600 * enable_on_exec set
601 * - we don't specifically enable or disable any event during
602 * the record command
603 *
604 * Independent events and group leaders are initially disabled
605 * and get enabled by exec. Group members are ruled by group
606 * leaders as stated in 1).
607 *
608 * 3) For traced programs attached by perf (pid/tid):
609 * - we specifically enable or disable all events during
610 * the record command
611 *
612 * When attaching events to already running traced we
613 * enable/disable events specifically, as there's no
614 * initial traced exec call.
615 */
b4006796 616void perf_evsel__config(struct perf_evsel *evsel, struct record_opts *opts)
0f82ebc4 617{
3c176311 618 struct perf_evsel *leader = evsel->leader;
0f82ebc4 619 struct perf_event_attr *attr = &evsel->attr;
60b0896c 620 int track = evsel->tracking;
3aa5939d 621 bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread;
0f82ebc4 622
594ac61a 623 attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1;
0f82ebc4 624 attr->inherit = !opts->no_inherit;
0f82ebc4 625
7be5ebe8
ACM
626 perf_evsel__set_sample_bit(evsel, IP);
627 perf_evsel__set_sample_bit(evsel, TID);
0f82ebc4 628
3c176311
JO
629 if (evsel->sample_read) {
630 perf_evsel__set_sample_bit(evsel, READ);
631
632 /*
633 * We need ID even in case of single event, because
634 * PERF_SAMPLE_READ process ID specific data.
635 */
75562573 636 perf_evsel__set_sample_id(evsel, false);
3c176311
JO
637
638 /*
639 * Apply group format only if we belong to group
640 * with more than one members.
641 */
642 if (leader->nr_members > 1) {
643 attr->read_format |= PERF_FORMAT_GROUP;
644 attr->inherit = 0;
645 }
646 }
647
0f82ebc4 648 /*
17314e23 649 * We default some events to have a default interval. But keep
0f82ebc4
ACM
650 * it a weak assumption overridable by the user.
651 */
17314e23 652 if (!attr->sample_period || (opts->user_freq != UINT_MAX ||
0f82ebc4
ACM
653 opts->user_interval != ULLONG_MAX)) {
654 if (opts->freq) {
7be5ebe8 655 perf_evsel__set_sample_bit(evsel, PERIOD);
0f82ebc4
ACM
656 attr->freq = 1;
657 attr->sample_freq = opts->freq;
658 } else {
659 attr->sample_period = opts->default_interval;
660 }
661 }
662
3c176311
JO
663 /*
664 * Disable sampling for all group members other
665 * than leader in case leader 'leads' the sampling.
666 */
667 if ((leader != evsel) && leader->sample_read) {
668 attr->sample_freq = 0;
669 attr->sample_period = 0;
670 }
671
0f82ebc4
ACM
672 if (opts->no_samples)
673 attr->sample_freq = 0;
674
675 if (opts->inherit_stat)
676 attr->inherit_stat = 1;
677
678 if (opts->sample_address) {
7be5ebe8 679 perf_evsel__set_sample_bit(evsel, ADDR);
0f82ebc4
ACM
680 attr->mmap_data = track;
681 }
682
f140373b
JO
683 /*
684 * We don't allow user space callchains for function trace
685 * event, due to issues with page faults while tracing page
686 * fault handler and its overall trickiness nature.
687 */
688 if (perf_evsel__is_function_event(evsel))
689 evsel->attr.exclude_callchain_user = 1;
690
72a128aa 691 if (callchain_param.enabled && !evsel->no_aux_samples)
aad2b21c 692 perf_evsel__config_callgraph(evsel, opts);
26d33022 693
6a21c0b5
SE
694 if (opts->sample_intr_regs) {
695 attr->sample_regs_intr = PERF_REGS_MASK;
696 perf_evsel__set_sample_bit(evsel, REGS_INTR);
697 }
698
3aa5939d 699 if (target__has_cpu(&opts->target))
7be5ebe8 700 perf_evsel__set_sample_bit(evsel, CPU);
0f82ebc4 701
3e76ac78 702 if (opts->period)
7be5ebe8 703 perf_evsel__set_sample_bit(evsel, PERIOD);
3e76ac78 704
8affc2b8
AK
705 /*
706 * When the user explicitely disabled time don't force it here.
707 */
708 if (opts->sample_time &&
709 (!perf_missing_features.sample_id_all &&
710 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu)))
7be5ebe8 711 perf_evsel__set_sample_bit(evsel, TIME);
0f82ebc4 712
6ff1ce76 713 if (opts->raw_samples && !evsel->no_aux_samples) {
7be5ebe8
ACM
714 perf_evsel__set_sample_bit(evsel, TIME);
715 perf_evsel__set_sample_bit(evsel, RAW);
716 perf_evsel__set_sample_bit(evsel, CPU);
0f82ebc4
ACM
717 }
718
ccf49bfc 719 if (opts->sample_address)
1e7ed5ec 720 perf_evsel__set_sample_bit(evsel, DATA_SRC);
ccf49bfc 721
509051ea 722 if (opts->no_buffering) {
0f82ebc4
ACM
723 attr->watermark = 0;
724 attr->wakeup_events = 1;
725 }
6ff1ce76 726 if (opts->branch_stack && !evsel->no_aux_samples) {
7be5ebe8 727 perf_evsel__set_sample_bit(evsel, BRANCH_STACK);
bdfebd84
RAV
728 attr->branch_sample_type = opts->branch_stack;
729 }
0f82ebc4 730
05484298 731 if (opts->sample_weight)
1e7ed5ec 732 perf_evsel__set_sample_bit(evsel, WEIGHT);
05484298 733
62e503b7 734 attr->task = track;
5c5e854b 735 attr->mmap = track;
a5a5ba72 736 attr->mmap2 = track && !perf_missing_features.mmap2;
5c5e854b 737 attr->comm = track;
0f82ebc4 738
475eeab9 739 if (opts->sample_transaction)
1e7ed5ec 740 perf_evsel__set_sample_bit(evsel, TRANSACTION);
475eeab9 741
85c273d2
AK
742 if (opts->running_time) {
743 evsel->attr.read_format |=
744 PERF_FORMAT_TOTAL_TIME_ENABLED |
745 PERF_FORMAT_TOTAL_TIME_RUNNING;
746 }
747
774cb499
JO
748 /*
749 * XXX see the function comment above
750 *
751 * Disabling only independent events or group leaders,
752 * keeping group members enabled.
753 */
823254ed 754 if (perf_evsel__is_group_leader(evsel))
774cb499
JO
755 attr->disabled = 1;
756
757 /*
758 * Setting enable_on_exec for independent events and
759 * group leaders for traced executed by perf.
760 */
6619a53e
AK
761 if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) &&
762 !opts->initial_delay)
0f82ebc4 763 attr->enable_on_exec = 1;
2afd2bcf
AH
764
765 if (evsel->immediate) {
766 attr->disabled = 0;
767 attr->enable_on_exec = 0;
768 }
814c8c38
PZ
769
770 clockid = opts->clockid;
771 if (opts->use_clockid) {
772 attr->use_clockid = 1;
773 attr->clockid = opts->clockid;
774 }
0f82ebc4
ACM
775}
776
8885846f 777static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
69aad6f1 778{
4af4c955 779 int cpu, thread;
bf8e8f4b
AH
780
781 if (evsel->system_wide)
782 nthreads = 1;
783
69aad6f1 784 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
4af4c955
DA
785
786 if (evsel->fd) {
787 for (cpu = 0; cpu < ncpus; cpu++) {
788 for (thread = 0; thread < nthreads; thread++) {
789 FD(evsel, cpu, thread) = -1;
790 }
791 }
792 }
793
69aad6f1
ACM
794 return evsel->fd != NULL ? 0 : -ENOMEM;
795}
796
e2407bef
AK
797static int perf_evsel__run_ioctl(struct perf_evsel *evsel, int ncpus, int nthreads,
798 int ioc, void *arg)
745cefc5
ACM
799{
800 int cpu, thread;
801
bf8e8f4b
AH
802 if (evsel->system_wide)
803 nthreads = 1;
804
745cefc5
ACM
805 for (cpu = 0; cpu < ncpus; cpu++) {
806 for (thread = 0; thread < nthreads; thread++) {
807 int fd = FD(evsel, cpu, thread),
e2407bef 808 err = ioctl(fd, ioc, arg);
745cefc5
ACM
809
810 if (err)
811 return err;
812 }
813 }
814
815 return 0;
816}
817
e2407bef
AK
818int perf_evsel__set_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
819 const char *filter)
820{
821 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
822 PERF_EVENT_IOC_SET_FILTER,
823 (void *)filter);
824}
825
826int perf_evsel__enable(struct perf_evsel *evsel, int ncpus, int nthreads)
827{
828 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
829 PERF_EVENT_IOC_ENABLE,
830 0);
831}
832
70db7533
ACM
833int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
834{
8d9cbd8f
VG
835 if (ncpus == 0 || nthreads == 0)
836 return 0;
837
bf8e8f4b
AH
838 if (evsel->system_wide)
839 nthreads = 1;
840
a91e5431
ACM
841 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
842 if (evsel->sample_id == NULL)
843 return -ENOMEM;
844
845 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
846 if (evsel->id == NULL) {
847 xyarray__delete(evsel->sample_id);
848 evsel->sample_id = NULL;
849 return -ENOMEM;
850 }
851
852 return 0;
70db7533
ACM
853}
854
8885846f 855static void perf_evsel__free_fd(struct perf_evsel *evsel)
69aad6f1
ACM
856{
857 xyarray__delete(evsel->fd);
858 evsel->fd = NULL;
859}
860
8885846f 861static void perf_evsel__free_id(struct perf_evsel *evsel)
70db7533 862{
a91e5431
ACM
863 xyarray__delete(evsel->sample_id);
864 evsel->sample_id = NULL;
04662523 865 zfree(&evsel->id);
70db7533
ACM
866}
867
c52b12ed
ACM
868void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
869{
870 int cpu, thread;
871
bf8e8f4b
AH
872 if (evsel->system_wide)
873 nthreads = 1;
874
c52b12ed
ACM
875 for (cpu = 0; cpu < ncpus; cpu++)
876 for (thread = 0; thread < nthreads; ++thread) {
877 close(FD(evsel, cpu, thread));
878 FD(evsel, cpu, thread) = -1;
879 }
880}
881
ef1d1af2 882void perf_evsel__exit(struct perf_evsel *evsel)
69aad6f1
ACM
883{
884 assert(list_empty(&evsel->node));
736b05a0
NK
885 perf_evsel__free_fd(evsel);
886 perf_evsel__free_id(evsel);
597e48c1 887 close_cgroup(evsel->cgrp);
f30a79b0 888 cpu_map__put(evsel->cpus);
578e91ec 889 thread_map__put(evsel->threads);
597e48c1 890 zfree(&evsel->group_name);
597e48c1 891 zfree(&evsel->name);
ce8ccff5 892 perf_evsel__object.fini(evsel);
ef1d1af2
ACM
893}
894
895void perf_evsel__delete(struct perf_evsel *evsel)
896{
897 perf_evsel__exit(evsel);
69aad6f1
ACM
898 free(evsel);
899}
c52b12ed 900
857a94a2
JO
901void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu,
902 struct perf_counts_values *count)
c7a79c47
SE
903{
904 struct perf_counts_values tmp;
905
906 if (!evsel->prev_raw_counts)
907 return;
908
909 if (cpu == -1) {
910 tmp = evsel->prev_raw_counts->aggr;
911 evsel->prev_raw_counts->aggr = *count;
912 } else {
1ac77e1c
JO
913 tmp = *perf_counts(evsel->prev_raw_counts, cpu);
914 *perf_counts(evsel->prev_raw_counts, cpu) = *count;
c7a79c47
SE
915 }
916
917 count->val = count->val - tmp.val;
918 count->ena = count->ena - tmp.ena;
919 count->run = count->run - tmp.run;
920}
921
13112bbf
JO
922void perf_counts_values__scale(struct perf_counts_values *count,
923 bool scale, s8 *pscaled)
924{
925 s8 scaled = 0;
926
927 if (scale) {
928 if (count->run == 0) {
929 scaled = -1;
930 count->val = 0;
931 } else if (count->run < count->ena) {
932 scaled = 1;
933 count->val = (u64)((double) count->val * count->ena / count->run + 0.5);
934 }
935 } else
936 count->ena = count->run = 0;
937
938 if (pscaled)
939 *pscaled = scaled;
940}
941
011dccbd
JO
942int perf_evsel__read_cb(struct perf_evsel *evsel, int cpu, int thread,
943 perf_evsel__read_cb_t cb)
944{
945 struct perf_counts_values count;
946
947 memset(&count, 0, sizeof(count));
948
949 if (FD(evsel, cpu, thread) < 0)
950 return -EINVAL;
951
952 if (readn(FD(evsel, cpu, thread), &count, sizeof(count)) < 0)
953 return -errno;
954
955 return cb(evsel, cpu, thread, &count);
956}
957
c52b12ed
ACM
958int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
959 int cpu, int thread, bool scale)
960{
961 struct perf_counts_values count;
962 size_t nv = scale ? 3 : 1;
963
964 if (FD(evsel, cpu, thread) < 0)
965 return -EINVAL;
966
4eed11d5
ACM
967 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1) < 0)
968 return -ENOMEM;
969
c52b12ed
ACM
970 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) < 0)
971 return -errno;
972
857a94a2 973 perf_evsel__compute_deltas(evsel, cpu, &count);
13112bbf 974 perf_counts_values__scale(&count, scale, NULL);
1ac77e1c 975 *perf_counts(evsel->counts, cpu) = count;
c52b12ed
ACM
976 return 0;
977}
978
6a4bb04c
JO
979static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
980{
981 struct perf_evsel *leader = evsel->leader;
982 int fd;
983
823254ed 984 if (perf_evsel__is_group_leader(evsel))
6a4bb04c
JO
985 return -1;
986
987 /*
988 * Leader must be already processed/open,
989 * if not it's a bug.
990 */
991 BUG_ON(!leader->fd);
992
993 fd = FD(leader, cpu, thread);
994 BUG_ON(fd == -1);
995
996 return fd;
997}
998
2c5e8c52
PZ
999struct bit_names {
1000 int bit;
1001 const char *name;
1002};
1003
1004static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits)
1005{
1006 bool first_bit = true;
1007 int i = 0;
1008
1009 do {
1010 if (value & bits[i].bit) {
1011 buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name);
1012 first_bit = false;
1013 }
1014 } while (bits[++i].name != NULL);
1015}
1016
1017static void __p_sample_type(char *buf, size_t size, u64 value)
1018{
1019#define bit_name(n) { PERF_SAMPLE_##n, #n }
1020 struct bit_names bits[] = {
1021 bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR),
1022 bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU),
1023 bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW),
1024 bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER),
1025 bit_name(IDENTIFIER), bit_name(REGS_INTR),
1026 { .name = NULL, }
1027 };
1028#undef bit_name
1029 __p_bits(buf, size, value, bits);
1030}
1031
1032static void __p_read_format(char *buf, size_t size, u64 value)
1033{
1034#define bit_name(n) { PERF_FORMAT_##n, #n }
1035 struct bit_names bits[] = {
1036 bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING),
1037 bit_name(ID), bit_name(GROUP),
1038 { .name = NULL, }
1039 };
1040#undef bit_name
1041 __p_bits(buf, size, value, bits);
1042}
1043
1044#define BUF_SIZE 1024
1045
7310aed7 1046#define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
2c5e8c52
PZ
1047#define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
1048#define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
1049#define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
1050#define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
1051
1052#define PRINT_ATTRn(_n, _f, _p) \
1053do { \
1054 if (attr->_f) { \
1055 _p(attr->_f); \
1056 ret += attr__fprintf(fp, _n, buf, priv);\
1057 } \
1058} while (0)
1059
1060#define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p)
1061
1062int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
1063 attr__fprintf_f attr__fprintf, void *priv)
1064{
1065 char buf[BUF_SIZE];
1066 int ret = 0;
1067
1068 PRINT_ATTRf(type, p_unsigned);
1069 PRINT_ATTRf(size, p_unsigned);
1070 PRINT_ATTRf(config, p_hex);
1071 PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned);
1072 PRINT_ATTRf(sample_type, p_sample_type);
1073 PRINT_ATTRf(read_format, p_read_format);
1074
1075 PRINT_ATTRf(disabled, p_unsigned);
1076 PRINT_ATTRf(inherit, p_unsigned);
1077 PRINT_ATTRf(pinned, p_unsigned);
1078 PRINT_ATTRf(exclusive, p_unsigned);
1079 PRINT_ATTRf(exclude_user, p_unsigned);
1080 PRINT_ATTRf(exclude_kernel, p_unsigned);
1081 PRINT_ATTRf(exclude_hv, p_unsigned);
1082 PRINT_ATTRf(exclude_idle, p_unsigned);
1083 PRINT_ATTRf(mmap, p_unsigned);
1084 PRINT_ATTRf(comm, p_unsigned);
1085 PRINT_ATTRf(freq, p_unsigned);
1086 PRINT_ATTRf(inherit_stat, p_unsigned);
1087 PRINT_ATTRf(enable_on_exec, p_unsigned);
1088 PRINT_ATTRf(task, p_unsigned);
1089 PRINT_ATTRf(watermark, p_unsigned);
1090 PRINT_ATTRf(precise_ip, p_unsigned);
1091 PRINT_ATTRf(mmap_data, p_unsigned);
1092 PRINT_ATTRf(sample_id_all, p_unsigned);
1093 PRINT_ATTRf(exclude_host, p_unsigned);
1094 PRINT_ATTRf(exclude_guest, p_unsigned);
1095 PRINT_ATTRf(exclude_callchain_kernel, p_unsigned);
1096 PRINT_ATTRf(exclude_callchain_user, p_unsigned);
1097 PRINT_ATTRf(mmap2, p_unsigned);
1098 PRINT_ATTRf(comm_exec, p_unsigned);
1099 PRINT_ATTRf(use_clockid, p_unsigned);
1100
1101 PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned);
1102 PRINT_ATTRf(bp_type, p_unsigned);
1103 PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex);
1104 PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex);
1105 PRINT_ATTRf(sample_regs_user, p_hex);
1106 PRINT_ATTRf(sample_stack_user, p_unsigned);
1107 PRINT_ATTRf(clockid, p_signed);
1108 PRINT_ATTRf(sample_regs_intr, p_hex);
70d73de4 1109 PRINT_ATTRf(aux_watermark, p_unsigned);
e3e1a54f
AH
1110
1111 return ret;
1112}
1113
2c5e8c52
PZ
1114static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
1115 void *priv __attribute__((unused)))
1116{
1117 return fprintf(fp, " %-32s %s\n", name, val);
1118}
1119
0252208e 1120static int __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
6a4bb04c 1121 struct thread_map *threads)
48290609 1122{
bf8e8f4b 1123 int cpu, thread, nthreads;
57480d2c 1124 unsigned long flags = PERF_FLAG_FD_CLOEXEC;
727ab04e 1125 int pid = -1, err;
bec19672 1126 enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
48290609 1127
bf8e8f4b
AH
1128 if (evsel->system_wide)
1129 nthreads = 1;
1130 else
1131 nthreads = threads->nr;
1132
0252208e 1133 if (evsel->fd == NULL &&
bf8e8f4b 1134 perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0)
727ab04e 1135 return -ENOMEM;
4eed11d5 1136
023695d9 1137 if (evsel->cgrp) {
57480d2c 1138 flags |= PERF_FLAG_PID_CGROUP;
023695d9
SE
1139 pid = evsel->cgrp->fd;
1140 }
1141
594ac61a 1142fallback_missing_features:
814c8c38
PZ
1143 if (perf_missing_features.clockid_wrong)
1144 evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */
1145 if (perf_missing_features.clockid) {
1146 evsel->attr.use_clockid = 0;
1147 evsel->attr.clockid = 0;
1148 }
57480d2c
YD
1149 if (perf_missing_features.cloexec)
1150 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
5c5e854b
SE
1151 if (perf_missing_features.mmap2)
1152 evsel->attr.mmap2 = 0;
594ac61a
ACM
1153 if (perf_missing_features.exclude_guest)
1154 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
1155retry_sample_id:
1156 if (perf_missing_features.sample_id_all)
1157 evsel->attr.sample_id_all = 0;
1158
2c5e8c52
PZ
1159 if (verbose >= 2) {
1160 fprintf(stderr, "%.60s\n", graph_dotted_line);
1161 fprintf(stderr, "perf_event_attr:\n");
1162 perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL);
1163 fprintf(stderr, "%.60s\n", graph_dotted_line);
1164 }
e3e1a54f 1165
86bd5e86 1166 for (cpu = 0; cpu < cpus->nr; cpu++) {
9d04f178 1167
bf8e8f4b 1168 for (thread = 0; thread < nthreads; thread++) {
6a4bb04c 1169 int group_fd;
023695d9 1170
bf8e8f4b 1171 if (!evsel->cgrp && !evsel->system_wide)
e13798c7 1172 pid = thread_map__pid(threads, thread);
023695d9 1173
6a4bb04c 1174 group_fd = get_group_fd(evsel, cpu, thread);
bec19672 1175retry_open:
a33f6efc 1176 pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx\n",
e3e1a54f
AH
1177 pid, cpus->map[cpu], group_fd, flags);
1178
0252208e 1179 FD(evsel, cpu, thread) = sys_perf_event_open(&evsel->attr,
023695d9 1180 pid,
f08199d3 1181 cpus->map[cpu],
023695d9 1182 group_fd, flags);
727ab04e
ACM
1183 if (FD(evsel, cpu, thread) < 0) {
1184 err = -errno;
a33f6efc 1185 pr_debug2("sys_perf_event_open failed, error %d\n",
f852fd62 1186 err);
594ac61a 1187 goto try_fallback;
727ab04e 1188 }
bec19672 1189 set_rlimit = NO_CHANGE;
814c8c38
PZ
1190
1191 /*
1192 * If we succeeded but had to kill clockid, fail and
1193 * have perf_evsel__open_strerror() print us a nice
1194 * error.
1195 */
1196 if (perf_missing_features.clockid ||
1197 perf_missing_features.clockid_wrong) {
1198 err = -EINVAL;
1199 goto out_close;
1200 }
0252208e 1201 }
48290609
ACM
1202 }
1203
1204 return 0;
1205
594ac61a 1206try_fallback:
bec19672
AK
1207 /*
1208 * perf stat needs between 5 and 22 fds per CPU. When we run out
1209 * of them try to increase the limits.
1210 */
1211 if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1212 struct rlimit l;
1213 int old_errno = errno;
1214
1215 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1216 if (set_rlimit == NO_CHANGE)
1217 l.rlim_cur = l.rlim_max;
1218 else {
1219 l.rlim_cur = l.rlim_max + 1000;
1220 l.rlim_max = l.rlim_cur;
1221 }
1222 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1223 set_rlimit++;
1224 errno = old_errno;
1225 goto retry_open;
1226 }
1227 }
1228 errno = old_errno;
1229 }
1230
594ac61a
ACM
1231 if (err != -EINVAL || cpu > 0 || thread > 0)
1232 goto out_close;
1233
814c8c38
PZ
1234 /*
1235 * Must probe features in the order they were added to the
1236 * perf_event_attr interface.
1237 */
1238 if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) {
1239 perf_missing_features.clockid_wrong = true;
1240 goto fallback_missing_features;
1241 } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) {
1242 perf_missing_features.clockid = true;
1243 goto fallback_missing_features;
1244 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) {
57480d2c
YD
1245 perf_missing_features.cloexec = true;
1246 goto fallback_missing_features;
1247 } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) {
5c5e854b
SE
1248 perf_missing_features.mmap2 = true;
1249 goto fallback_missing_features;
1250 } else if (!perf_missing_features.exclude_guest &&
1251 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
594ac61a
ACM
1252 perf_missing_features.exclude_guest = true;
1253 goto fallback_missing_features;
1254 } else if (!perf_missing_features.sample_id_all) {
1255 perf_missing_features.sample_id_all = true;
1256 goto retry_sample_id;
1257 }
1258
48290609 1259out_close:
0252208e
ACM
1260 do {
1261 while (--thread >= 0) {
1262 close(FD(evsel, cpu, thread));
1263 FD(evsel, cpu, thread) = -1;
1264 }
bf8e8f4b 1265 thread = nthreads;
0252208e 1266 } while (--cpu >= 0);
727ab04e
ACM
1267 return err;
1268}
1269
1270void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads)
1271{
1272 if (evsel->fd == NULL)
1273 return;
1274
1275 perf_evsel__close_fd(evsel, ncpus, nthreads);
1276 perf_evsel__free_fd(evsel);
48290609
ACM
1277}
1278
0252208e
ACM
1279static struct {
1280 struct cpu_map map;
1281 int cpus[1];
1282} empty_cpu_map = {
1283 .map.nr = 1,
1284 .cpus = { -1, },
1285};
1286
1287static struct {
1288 struct thread_map map;
1289 int threads[1];
1290} empty_thread_map = {
1291 .map.nr = 1,
1292 .threads = { -1, },
1293};
1294
f08199d3 1295int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
6a4bb04c 1296 struct thread_map *threads)
48290609 1297{
0252208e
ACM
1298 if (cpus == NULL) {
1299 /* Work around old compiler warnings about strict aliasing */
1300 cpus = &empty_cpu_map.map;
48290609
ACM
1301 }
1302
0252208e
ACM
1303 if (threads == NULL)
1304 threads = &empty_thread_map.map;
48290609 1305
6a4bb04c 1306 return __perf_evsel__open(evsel, cpus, threads);
48290609
ACM
1307}
1308
f08199d3 1309int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
6a4bb04c 1310 struct cpu_map *cpus)
48290609 1311{
6a4bb04c 1312 return __perf_evsel__open(evsel, cpus, &empty_thread_map.map);
0252208e 1313}
48290609 1314
f08199d3 1315int perf_evsel__open_per_thread(struct perf_evsel *evsel,
6a4bb04c 1316 struct thread_map *threads)
0252208e 1317{
6a4bb04c 1318 return __perf_evsel__open(evsel, &empty_cpu_map.map, threads);
48290609 1319}
70082dd9 1320
0807d2d8
ACM
1321static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
1322 const union perf_event *event,
1323 struct perf_sample *sample)
d0dd74e8 1324{
0807d2d8 1325 u64 type = evsel->attr.sample_type;
d0dd74e8 1326 const u64 *array = event->sample.array;
0807d2d8 1327 bool swapped = evsel->needs_swap;
37073f9e 1328 union u64_swap u;
d0dd74e8
ACM
1329
1330 array += ((event->header.size -
1331 sizeof(event->header)) / sizeof(u64)) - 1;
1332
75562573
AH
1333 if (type & PERF_SAMPLE_IDENTIFIER) {
1334 sample->id = *array;
1335 array--;
1336 }
1337
d0dd74e8 1338 if (type & PERF_SAMPLE_CPU) {
37073f9e
JO
1339 u.val64 = *array;
1340 if (swapped) {
1341 /* undo swap of u64, then swap on individual u32s */
1342 u.val64 = bswap_64(u.val64);
1343 u.val32[0] = bswap_32(u.val32[0]);
1344 }
1345
1346 sample->cpu = u.val32[0];
d0dd74e8
ACM
1347 array--;
1348 }
1349
1350 if (type & PERF_SAMPLE_STREAM_ID) {
1351 sample->stream_id = *array;
1352 array--;
1353 }
1354
1355 if (type & PERF_SAMPLE_ID) {
1356 sample->id = *array;
1357 array--;
1358 }
1359
1360 if (type & PERF_SAMPLE_TIME) {
1361 sample->time = *array;
1362 array--;
1363 }
1364
1365 if (type & PERF_SAMPLE_TID) {
37073f9e
JO
1366 u.val64 = *array;
1367 if (swapped) {
1368 /* undo swap of u64, then swap on individual u32s */
1369 u.val64 = bswap_64(u.val64);
1370 u.val32[0] = bswap_32(u.val32[0]);
1371 u.val32[1] = bswap_32(u.val32[1]);
1372 }
1373
1374 sample->pid = u.val32[0];
1375 sample->tid = u.val32[1];
dd44bc6b 1376 array--;
d0dd74e8
ACM
1377 }
1378
1379 return 0;
1380}
1381
03b6ea9b
AH
1382static inline bool overflow(const void *endp, u16 max_size, const void *offset,
1383 u64 size)
98e1da90 1384{
03b6ea9b
AH
1385 return size > max_size || offset + size > endp;
1386}
98e1da90 1387
03b6ea9b
AH
1388#define OVERFLOW_CHECK(offset, size, max_size) \
1389 do { \
1390 if (overflow(endp, (max_size), (offset), (size))) \
1391 return -EFAULT; \
1392 } while (0)
98e1da90 1393
03b6ea9b
AH
1394#define OVERFLOW_CHECK_u64(offset) \
1395 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
98e1da90 1396
a3f698fe 1397int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
0807d2d8 1398 struct perf_sample *data)
d0dd74e8 1399{
a3f698fe 1400 u64 type = evsel->attr.sample_type;
0807d2d8 1401 bool swapped = evsel->needs_swap;
d0dd74e8 1402 const u64 *array;
03b6ea9b
AH
1403 u16 max_size = event->header.size;
1404 const void *endp = (void *)event + max_size;
1405 u64 sz;
d0dd74e8 1406
936be503
DA
1407 /*
1408 * used for cross-endian analysis. See git commit 65014ab3
1409 * for why this goofiness is needed.
1410 */
6a11f92e 1411 union u64_swap u;
936be503 1412
f3bda2c9 1413 memset(data, 0, sizeof(*data));
d0dd74e8
ACM
1414 data->cpu = data->pid = data->tid = -1;
1415 data->stream_id = data->id = data->time = -1ULL;
bc529086 1416 data->period = evsel->attr.sample_period;
05484298 1417 data->weight = 0;
d0dd74e8
ACM
1418
1419 if (event->header.type != PERF_RECORD_SAMPLE) {
a3f698fe 1420 if (!evsel->attr.sample_id_all)
d0dd74e8 1421 return 0;
0807d2d8 1422 return perf_evsel__parse_id_sample(evsel, event, data);
d0dd74e8
ACM
1423 }
1424
1425 array = event->sample.array;
1426
03b6ea9b
AH
1427 /*
1428 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
1429 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
1430 * check the format does not go past the end of the event.
1431 */
a3f698fe 1432 if (evsel->sample_size + sizeof(event->header) > event->header.size)
a2854124
FW
1433 return -EFAULT;
1434
75562573
AH
1435 data->id = -1ULL;
1436 if (type & PERF_SAMPLE_IDENTIFIER) {
1437 data->id = *array;
1438 array++;
1439 }
1440
d0dd74e8 1441 if (type & PERF_SAMPLE_IP) {
ef89325f 1442 data->ip = *array;
d0dd74e8
ACM
1443 array++;
1444 }
1445
1446 if (type & PERF_SAMPLE_TID) {
936be503
DA
1447 u.val64 = *array;
1448 if (swapped) {
1449 /* undo swap of u64, then swap on individual u32s */
1450 u.val64 = bswap_64(u.val64);
1451 u.val32[0] = bswap_32(u.val32[0]);
1452 u.val32[1] = bswap_32(u.val32[1]);
1453 }
1454
1455 data->pid = u.val32[0];
1456 data->tid = u.val32[1];
d0dd74e8
ACM
1457 array++;
1458 }
1459
1460 if (type & PERF_SAMPLE_TIME) {
1461 data->time = *array;
1462 array++;
1463 }
1464
7cec0922 1465 data->addr = 0;
d0dd74e8
ACM
1466 if (type & PERF_SAMPLE_ADDR) {
1467 data->addr = *array;
1468 array++;
1469 }
1470
d0dd74e8
ACM
1471 if (type & PERF_SAMPLE_ID) {
1472 data->id = *array;
1473 array++;
1474 }
1475
1476 if (type & PERF_SAMPLE_STREAM_ID) {
1477 data->stream_id = *array;
1478 array++;
1479 }
1480
1481 if (type & PERF_SAMPLE_CPU) {
936be503
DA
1482
1483 u.val64 = *array;
1484 if (swapped) {
1485 /* undo swap of u64, then swap on individual u32s */
1486 u.val64 = bswap_64(u.val64);
1487 u.val32[0] = bswap_32(u.val32[0]);
1488 }
1489
1490 data->cpu = u.val32[0];
d0dd74e8
ACM
1491 array++;
1492 }
1493
1494 if (type & PERF_SAMPLE_PERIOD) {
1495 data->period = *array;
1496 array++;
1497 }
1498
1499 if (type & PERF_SAMPLE_READ) {
9ede473c
JO
1500 u64 read_format = evsel->attr.read_format;
1501
03b6ea9b 1502 OVERFLOW_CHECK_u64(array);
9ede473c
JO
1503 if (read_format & PERF_FORMAT_GROUP)
1504 data->read.group.nr = *array;
1505 else
1506 data->read.one.value = *array;
1507
1508 array++;
1509
1510 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
03b6ea9b 1511 OVERFLOW_CHECK_u64(array);
9ede473c
JO
1512 data->read.time_enabled = *array;
1513 array++;
1514 }
1515
1516 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
03b6ea9b 1517 OVERFLOW_CHECK_u64(array);
9ede473c
JO
1518 data->read.time_running = *array;
1519 array++;
1520 }
1521
1522 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
1523 if (read_format & PERF_FORMAT_GROUP) {
03b6ea9b
AH
1524 const u64 max_group_nr = UINT64_MAX /
1525 sizeof(struct sample_read_value);
1526
1527 if (data->read.group.nr > max_group_nr)
1528 return -EFAULT;
1529 sz = data->read.group.nr *
1530 sizeof(struct sample_read_value);
1531 OVERFLOW_CHECK(array, sz, max_size);
1532 data->read.group.values =
1533 (struct sample_read_value *)array;
1534 array = (void *)array + sz;
9ede473c 1535 } else {
03b6ea9b 1536 OVERFLOW_CHECK_u64(array);
9ede473c
JO
1537 data->read.one.id = *array;
1538 array++;
1539 }
d0dd74e8
ACM
1540 }
1541
1542 if (type & PERF_SAMPLE_CALLCHAIN) {
03b6ea9b 1543 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
98e1da90 1544
03b6ea9b
AH
1545 OVERFLOW_CHECK_u64(array);
1546 data->callchain = (struct ip_callchain *)array++;
1547 if (data->callchain->nr > max_callchain_nr)
98e1da90 1548 return -EFAULT;
03b6ea9b
AH
1549 sz = data->callchain->nr * sizeof(u64);
1550 OVERFLOW_CHECK(array, sz, max_size);
1551 array = (void *)array + sz;
d0dd74e8
ACM
1552 }
1553
1554 if (type & PERF_SAMPLE_RAW) {
03b6ea9b 1555 OVERFLOW_CHECK_u64(array);
936be503
DA
1556 u.val64 = *array;
1557 if (WARN_ONCE(swapped,
1558 "Endianness of raw data not corrected!\n")) {
1559 /* undo swap of u64, then swap on individual u32s */
1560 u.val64 = bswap_64(u.val64);
1561 u.val32[0] = bswap_32(u.val32[0]);
1562 u.val32[1] = bswap_32(u.val32[1]);
1563 }
936be503 1564 data->raw_size = u.val32[0];
03b6ea9b 1565 array = (void *)array + sizeof(u32);
98e1da90 1566
03b6ea9b
AH
1567 OVERFLOW_CHECK(array, data->raw_size, max_size);
1568 data->raw_data = (void *)array;
1569 array = (void *)array + data->raw_size;
d0dd74e8
ACM
1570 }
1571
b5387528 1572 if (type & PERF_SAMPLE_BRANCH_STACK) {
03b6ea9b
AH
1573 const u64 max_branch_nr = UINT64_MAX /
1574 sizeof(struct branch_entry);
b5387528 1575
03b6ea9b
AH
1576 OVERFLOW_CHECK_u64(array);
1577 data->branch_stack = (struct branch_stack *)array++;
b5387528 1578
03b6ea9b
AH
1579 if (data->branch_stack->nr > max_branch_nr)
1580 return -EFAULT;
b5387528 1581 sz = data->branch_stack->nr * sizeof(struct branch_entry);
03b6ea9b
AH
1582 OVERFLOW_CHECK(array, sz, max_size);
1583 array = (void *)array + sz;
b5387528 1584 }
0f6a3015
JO
1585
1586 if (type & PERF_SAMPLE_REGS_USER) {
03b6ea9b 1587 OVERFLOW_CHECK_u64(array);
5b95a4a3
AH
1588 data->user_regs.abi = *array;
1589 array++;
0f6a3015 1590
5b95a4a3 1591 if (data->user_regs.abi) {
352ea45a 1592 u64 mask = evsel->attr.sample_regs_user;
03b6ea9b 1593
352ea45a 1594 sz = hweight_long(mask) * sizeof(u64);
03b6ea9b 1595 OVERFLOW_CHECK(array, sz, max_size);
352ea45a 1596 data->user_regs.mask = mask;
0f6a3015 1597 data->user_regs.regs = (u64 *)array;
03b6ea9b 1598 array = (void *)array + sz;
0f6a3015
JO
1599 }
1600 }
1601
1602 if (type & PERF_SAMPLE_STACK_USER) {
03b6ea9b
AH
1603 OVERFLOW_CHECK_u64(array);
1604 sz = *array++;
0f6a3015
JO
1605
1606 data->user_stack.offset = ((char *)(array - 1)
1607 - (char *) event);
1608
03b6ea9b 1609 if (!sz) {
0f6a3015
JO
1610 data->user_stack.size = 0;
1611 } else {
03b6ea9b 1612 OVERFLOW_CHECK(array, sz, max_size);
0f6a3015 1613 data->user_stack.data = (char *)array;
03b6ea9b
AH
1614 array = (void *)array + sz;
1615 OVERFLOW_CHECK_u64(array);
54bd2692 1616 data->user_stack.size = *array++;
a65cb4b9
JO
1617 if (WARN_ONCE(data->user_stack.size > sz,
1618 "user stack dump failure\n"))
1619 return -EFAULT;
0f6a3015
JO
1620 }
1621 }
1622
05484298
AK
1623 data->weight = 0;
1624 if (type & PERF_SAMPLE_WEIGHT) {
03b6ea9b 1625 OVERFLOW_CHECK_u64(array);
05484298
AK
1626 data->weight = *array;
1627 array++;
1628 }
1629
98a3b32c
SE
1630 data->data_src = PERF_MEM_DATA_SRC_NONE;
1631 if (type & PERF_SAMPLE_DATA_SRC) {
03b6ea9b 1632 OVERFLOW_CHECK_u64(array);
98a3b32c
SE
1633 data->data_src = *array;
1634 array++;
1635 }
1636
475eeab9
AK
1637 data->transaction = 0;
1638 if (type & PERF_SAMPLE_TRANSACTION) {
87b95524 1639 OVERFLOW_CHECK_u64(array);
475eeab9
AK
1640 data->transaction = *array;
1641 array++;
1642 }
1643
6a21c0b5
SE
1644 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
1645 if (type & PERF_SAMPLE_REGS_INTR) {
1646 OVERFLOW_CHECK_u64(array);
1647 data->intr_regs.abi = *array;
1648 array++;
1649
1650 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
1651 u64 mask = evsel->attr.sample_regs_intr;
1652
1653 sz = hweight_long(mask) * sizeof(u64);
1654 OVERFLOW_CHECK(array, sz, max_size);
1655 data->intr_regs.mask = mask;
1656 data->intr_regs.regs = (u64 *)array;
1657 array = (void *)array + sz;
1658 }
1659 }
1660
d0dd74e8
ACM
1661 return 0;
1662}
74eec26f 1663
b1cf6f65 1664size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
352ea45a 1665 u64 read_format)
b1cf6f65
AH
1666{
1667 size_t sz, result = sizeof(struct sample_event);
1668
1669 if (type & PERF_SAMPLE_IDENTIFIER)
1670 result += sizeof(u64);
1671
1672 if (type & PERF_SAMPLE_IP)
1673 result += sizeof(u64);
1674
1675 if (type & PERF_SAMPLE_TID)
1676 result += sizeof(u64);
1677
1678 if (type & PERF_SAMPLE_TIME)
1679 result += sizeof(u64);
1680
1681 if (type & PERF_SAMPLE_ADDR)
1682 result += sizeof(u64);
1683
1684 if (type & PERF_SAMPLE_ID)
1685 result += sizeof(u64);
1686
1687 if (type & PERF_SAMPLE_STREAM_ID)
1688 result += sizeof(u64);
1689
1690 if (type & PERF_SAMPLE_CPU)
1691 result += sizeof(u64);
1692
1693 if (type & PERF_SAMPLE_PERIOD)
1694 result += sizeof(u64);
1695
1696 if (type & PERF_SAMPLE_READ) {
1697 result += sizeof(u64);
1698 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1699 result += sizeof(u64);
1700 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1701 result += sizeof(u64);
1702 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
1703 if (read_format & PERF_FORMAT_GROUP) {
1704 sz = sample->read.group.nr *
1705 sizeof(struct sample_read_value);
1706 result += sz;
1707 } else {
1708 result += sizeof(u64);
1709 }
1710 }
1711
1712 if (type & PERF_SAMPLE_CALLCHAIN) {
1713 sz = (sample->callchain->nr + 1) * sizeof(u64);
1714 result += sz;
1715 }
1716
1717 if (type & PERF_SAMPLE_RAW) {
1718 result += sizeof(u32);
1719 result += sample->raw_size;
1720 }
1721
1722 if (type & PERF_SAMPLE_BRANCH_STACK) {
1723 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
1724 sz += sizeof(u64);
1725 result += sz;
1726 }
1727
1728 if (type & PERF_SAMPLE_REGS_USER) {
1729 if (sample->user_regs.abi) {
1730 result += sizeof(u64);
352ea45a 1731 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
b1cf6f65
AH
1732 result += sz;
1733 } else {
1734 result += sizeof(u64);
1735 }
1736 }
1737
1738 if (type & PERF_SAMPLE_STACK_USER) {
1739 sz = sample->user_stack.size;
1740 result += sizeof(u64);
1741 if (sz) {
1742 result += sz;
1743 result += sizeof(u64);
1744 }
1745 }
1746
1747 if (type & PERF_SAMPLE_WEIGHT)
1748 result += sizeof(u64);
1749
1750 if (type & PERF_SAMPLE_DATA_SRC)
1751 result += sizeof(u64);
1752
42d88910
AH
1753 if (type & PERF_SAMPLE_TRANSACTION)
1754 result += sizeof(u64);
1755
6a21c0b5
SE
1756 if (type & PERF_SAMPLE_REGS_INTR) {
1757 if (sample->intr_regs.abi) {
1758 result += sizeof(u64);
1759 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
1760 result += sz;
1761 } else {
1762 result += sizeof(u64);
1763 }
1764 }
1765
b1cf6f65
AH
1766 return result;
1767}
1768
74eec26f 1769int perf_event__synthesize_sample(union perf_event *event, u64 type,
352ea45a 1770 u64 read_format,
74eec26f
AV
1771 const struct perf_sample *sample,
1772 bool swapped)
1773{
1774 u64 *array;
d03f2170 1775 size_t sz;
74eec26f
AV
1776 /*
1777 * used for cross-endian analysis. See git commit 65014ab3
1778 * for why this goofiness is needed.
1779 */
6a11f92e 1780 union u64_swap u;
74eec26f
AV
1781
1782 array = event->sample.array;
1783
75562573
AH
1784 if (type & PERF_SAMPLE_IDENTIFIER) {
1785 *array = sample->id;
1786 array++;
1787 }
1788
74eec26f 1789 if (type & PERF_SAMPLE_IP) {
ef89325f 1790 *array = sample->ip;
74eec26f
AV
1791 array++;
1792 }
1793
1794 if (type & PERF_SAMPLE_TID) {
1795 u.val32[0] = sample->pid;
1796 u.val32[1] = sample->tid;
1797 if (swapped) {
1798 /*
a3f698fe 1799 * Inverse of what is done in perf_evsel__parse_sample
74eec26f
AV
1800 */
1801 u.val32[0] = bswap_32(u.val32[0]);
1802 u.val32[1] = bswap_32(u.val32[1]);
1803 u.val64 = bswap_64(u.val64);
1804 }
1805
1806 *array = u.val64;
1807 array++;
1808 }
1809
1810 if (type & PERF_SAMPLE_TIME) {
1811 *array = sample->time;
1812 array++;
1813 }
1814
1815 if (type & PERF_SAMPLE_ADDR) {
1816 *array = sample->addr;
1817 array++;
1818 }
1819
1820 if (type & PERF_SAMPLE_ID) {
1821 *array = sample->id;
1822 array++;
1823 }
1824
1825 if (type & PERF_SAMPLE_STREAM_ID) {
1826 *array = sample->stream_id;
1827 array++;
1828 }
1829
1830 if (type & PERF_SAMPLE_CPU) {
1831 u.val32[0] = sample->cpu;
1832 if (swapped) {
1833 /*
a3f698fe 1834 * Inverse of what is done in perf_evsel__parse_sample
74eec26f
AV
1835 */
1836 u.val32[0] = bswap_32(u.val32[0]);
1837 u.val64 = bswap_64(u.val64);
1838 }
1839 *array = u.val64;
1840 array++;
1841 }
1842
1843 if (type & PERF_SAMPLE_PERIOD) {
1844 *array = sample->period;
1845 array++;
1846 }
1847
d03f2170
AH
1848 if (type & PERF_SAMPLE_READ) {
1849 if (read_format & PERF_FORMAT_GROUP)
1850 *array = sample->read.group.nr;
1851 else
1852 *array = sample->read.one.value;
1853 array++;
1854
1855 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
1856 *array = sample->read.time_enabled;
1857 array++;
1858 }
1859
1860 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
1861 *array = sample->read.time_running;
1862 array++;
1863 }
1864
1865 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
1866 if (read_format & PERF_FORMAT_GROUP) {
1867 sz = sample->read.group.nr *
1868 sizeof(struct sample_read_value);
1869 memcpy(array, sample->read.group.values, sz);
1870 array = (void *)array + sz;
1871 } else {
1872 *array = sample->read.one.id;
1873 array++;
1874 }
1875 }
1876
1877 if (type & PERF_SAMPLE_CALLCHAIN) {
1878 sz = (sample->callchain->nr + 1) * sizeof(u64);
1879 memcpy(array, sample->callchain, sz);
1880 array = (void *)array + sz;
1881 }
1882
1883 if (type & PERF_SAMPLE_RAW) {
1884 u.val32[0] = sample->raw_size;
1885 if (WARN_ONCE(swapped,
1886 "Endianness of raw data not corrected!\n")) {
1887 /*
1888 * Inverse of what is done in perf_evsel__parse_sample
1889 */
1890 u.val32[0] = bswap_32(u.val32[0]);
1891 u.val32[1] = bswap_32(u.val32[1]);
1892 u.val64 = bswap_64(u.val64);
1893 }
1894 *array = u.val64;
1895 array = (void *)array + sizeof(u32);
1896
1897 memcpy(array, sample->raw_data, sample->raw_size);
1898 array = (void *)array + sample->raw_size;
1899 }
1900
1901 if (type & PERF_SAMPLE_BRANCH_STACK) {
1902 sz = sample->branch_stack->nr * sizeof(struct branch_entry);
1903 sz += sizeof(u64);
1904 memcpy(array, sample->branch_stack, sz);
1905 array = (void *)array + sz;
1906 }
1907
1908 if (type & PERF_SAMPLE_REGS_USER) {
1909 if (sample->user_regs.abi) {
1910 *array++ = sample->user_regs.abi;
352ea45a 1911 sz = hweight_long(sample->user_regs.mask) * sizeof(u64);
d03f2170
AH
1912 memcpy(array, sample->user_regs.regs, sz);
1913 array = (void *)array + sz;
1914 } else {
1915 *array++ = 0;
1916 }
1917 }
1918
1919 if (type & PERF_SAMPLE_STACK_USER) {
1920 sz = sample->user_stack.size;
1921 *array++ = sz;
1922 if (sz) {
1923 memcpy(array, sample->user_stack.data, sz);
1924 array = (void *)array + sz;
1925 *array++ = sz;
1926 }
1927 }
1928
1929 if (type & PERF_SAMPLE_WEIGHT) {
1930 *array = sample->weight;
1931 array++;
1932 }
1933
1934 if (type & PERF_SAMPLE_DATA_SRC) {
1935 *array = sample->data_src;
1936 array++;
1937 }
1938
42d88910
AH
1939 if (type & PERF_SAMPLE_TRANSACTION) {
1940 *array = sample->transaction;
1941 array++;
1942 }
1943
6a21c0b5
SE
1944 if (type & PERF_SAMPLE_REGS_INTR) {
1945 if (sample->intr_regs.abi) {
1946 *array++ = sample->intr_regs.abi;
1947 sz = hweight_long(sample->intr_regs.mask) * sizeof(u64);
1948 memcpy(array, sample->intr_regs.regs, sz);
1949 array = (void *)array + sz;
1950 } else {
1951 *array++ = 0;
1952 }
1953 }
1954
74eec26f
AV
1955 return 0;
1956}
5555ded4 1957
efd2b924
ACM
1958struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
1959{
1960 return pevent_find_field(evsel->tp_format, name);
1961}
1962
5d2074ea 1963void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
5555ded4
ACM
1964 const char *name)
1965{
efd2b924 1966 struct format_field *field = perf_evsel__field(evsel, name);
5555ded4
ACM
1967 int offset;
1968
efd2b924
ACM
1969 if (!field)
1970 return NULL;
5555ded4
ACM
1971
1972 offset = field->offset;
1973
1974 if (field->flags & FIELD_IS_DYNAMIC) {
1975 offset = *(int *)(sample->raw_data + field->offset);
1976 offset &= 0xffff;
1977 }
1978
1979 return sample->raw_data + offset;
1980}
1981
1982u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
1983 const char *name)
1984{
efd2b924 1985 struct format_field *field = perf_evsel__field(evsel, name);
e6b6f679
ACM
1986 void *ptr;
1987 u64 value;
5555ded4 1988
efd2b924
ACM
1989 if (!field)
1990 return 0;
5555ded4 1991
e6b6f679 1992 ptr = sample->raw_data + field->offset;
5555ded4 1993
e6b6f679
ACM
1994 switch (field->size) {
1995 case 1:
1996 return *(u8 *)ptr;
1997 case 2:
1998 value = *(u16 *)ptr;
1999 break;
2000 case 4:
2001 value = *(u32 *)ptr;
2002 break;
2003 case 8:
e94eedab 2004 memcpy(&value, ptr, sizeof(u64));
e6b6f679
ACM
2005 break;
2006 default:
2007 return 0;
2008 }
2009
2010 if (!evsel->needs_swap)
2011 return value;
2012
2013 switch (field->size) {
2014 case 2:
2015 return bswap_16(value);
2016 case 4:
2017 return bswap_32(value);
2018 case 8:
2019 return bswap_64(value);
2020 default:
2021 return 0;
2022 }
2023
2024 return 0;
5555ded4 2025}
0698aedd
ACM
2026
2027static int comma_fprintf(FILE *fp, bool *first, const char *fmt, ...)
2028{
2029 va_list args;
2030 int ret = 0;
2031
2032 if (!*first) {
2033 ret += fprintf(fp, ",");
2034 } else {
2035 ret += fprintf(fp, ":");
2036 *first = false;
2037 }
2038
2039 va_start(args, fmt);
2040 ret += vfprintf(fp, fmt, args);
2041 va_end(args);
2042 return ret;
2043}
2044
2c5e8c52 2045static int __print_attr__fprintf(FILE *fp, const char *name, const char *val, void *priv)
c79a4393 2046{
2c5e8c52 2047 return comma_fprintf(fp, (bool *)priv, " %s: %s", name, val);
c79a4393
ACM
2048}
2049
0698aedd
ACM
2050int perf_evsel__fprintf(struct perf_evsel *evsel,
2051 struct perf_attr_details *details, FILE *fp)
2052{
2053 bool first = true;
e6ab07d0
NK
2054 int printed = 0;
2055
e35ef355 2056 if (details->event_group) {
e6ab07d0
NK
2057 struct perf_evsel *pos;
2058
2059 if (!perf_evsel__is_group_leader(evsel))
2060 return 0;
2061
2062 if (evsel->nr_members > 1)
2063 printed += fprintf(fp, "%s{", evsel->group_name ?: "");
2064
2065 printed += fprintf(fp, "%s", perf_evsel__name(evsel));
2066 for_each_group_member(pos, evsel)
2067 printed += fprintf(fp, ",%s", perf_evsel__name(pos));
2068
2069 if (evsel->nr_members > 1)
2070 printed += fprintf(fp, "}");
2071 goto out;
2072 }
2073
2074 printed += fprintf(fp, "%s", perf_evsel__name(evsel));
0698aedd 2075
2c5e8c52
PZ
2076 if (details->verbose) {
2077 printed += perf_event_attr__fprintf(fp, &evsel->attr,
2078 __print_attr__fprintf, &first);
2079 } else if (details->freq) {
0698aedd
ACM
2080 printed += comma_fprintf(fp, &first, " sample_freq=%" PRIu64,
2081 (u64)evsel->attr.sample_freq);
2082 }
e6ab07d0 2083out:
0698aedd
ACM
2084 fputc('\n', fp);
2085 return ++printed;
2086}
c0a54341
ACM
2087
2088bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
2089 char *msg, size_t msgsize)
2090{
2b821cce 2091 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
c0a54341
ACM
2092 evsel->attr.type == PERF_TYPE_HARDWARE &&
2093 evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2094 /*
2095 * If it's cycles then fall back to hrtimer based
2096 * cpu-clock-tick sw counter, which is always available even if
2097 * no PMU support.
2098 *
2099 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2100 * b0a873e).
2101 */
2102 scnprintf(msg, msgsize, "%s",
2103"The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2104
2105 evsel->attr.type = PERF_TYPE_SOFTWARE;
2106 evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK;
2107
04662523 2108 zfree(&evsel->name);
c0a54341
ACM
2109 return true;
2110 }
2111
2112 return false;
2113}
56e52e85 2114
602ad878 2115int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
56e52e85
ACM
2116 int err, char *msg, size_t size)
2117{
6e81c74c
MH
2118 char sbuf[STRERR_BUFSIZE];
2119
56e52e85
ACM
2120 switch (err) {
2121 case EPERM:
2122 case EACCES:
b69e63a4 2123 return scnprintf(msg, size,
56e52e85
ACM
2124 "You may not have permission to collect %sstats.\n"
2125 "Consider tweaking /proc/sys/kernel/perf_event_paranoid:\n"
2126 " -1 - Not paranoid at all\n"
2127 " 0 - Disallow raw tracepoint access for unpriv\n"
2128 " 1 - Disallow cpu events for unpriv\n"
2129 " 2 - Disallow kernel profiling for unpriv",
2130 target->system_wide ? "system-wide " : "");
2131 case ENOENT:
2132 return scnprintf(msg, size, "The %s event is not supported.",
2133 perf_evsel__name(evsel));
2134 case EMFILE:
2135 return scnprintf(msg, size, "%s",
2136 "Too many events are opened.\n"
18ffdfe8
JO
2137 "Probably the maximum number of open file descriptors has been reached.\n"
2138 "Hint: Try again after reducing the number of events.\n"
2139 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
56e52e85
ACM
2140 case ENODEV:
2141 if (target->cpu_list)
2142 return scnprintf(msg, size, "%s",
2143 "No such device - did you specify an out-of-range profile CPU?\n");
2144 break;
2145 case EOPNOTSUPP:
2146 if (evsel->attr.precise_ip)
2147 return scnprintf(msg, size, "%s",
2148 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2149#if defined(__i386__) || defined(__x86_64__)
2150 if (evsel->attr.type == PERF_TYPE_HARDWARE)
2151 return scnprintf(msg, size, "%s",
2152 "No hardware sampling interrupt available.\n"
2153 "No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.");
2154#endif
2155 break;
63914aca
JO
2156 case EBUSY:
2157 if (find_process("oprofiled"))
2158 return scnprintf(msg, size,
2159 "The PMU counters are busy/taken by another profiler.\n"
2160 "We found oprofile daemon running, please stop it and try again.");
2161 break;
814c8c38
PZ
2162 case EINVAL:
2163 if (perf_missing_features.clockid)
2164 return scnprintf(msg, size, "clockid feature not supported.");
2165 if (perf_missing_features.clockid_wrong)
2166 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2167 break;
56e52e85
ACM
2168 default:
2169 break;
2170 }
2171
2172 return scnprintf(msg, size,
6e81c74c 2173 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
56e52e85
ACM
2174 "/bin/dmesg may provide additional information.\n"
2175 "No CONFIG_PERF_EVENTS=y kernel support configured?\n",
6e81c74c
MH
2176 err, strerror_r(err, sbuf, sizeof(sbuf)),
2177 perf_evsel__name(evsel));
56e52e85 2178}
This page took 0.323485 seconds and 5 git commands to generate.