1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
5 * Parts came from builtin-{top,stat,record}.c, see those files for further
12 #include <linux/bitops.h>
13 #include <api/fs/fs.h>
14 #include <api/fs/tracing_path.h>
15 #include <traceevent/event-parse.h>
16 #include <linux/hw_breakpoint.h>
17 #include <linux/perf_event.h>
18 #include <linux/compiler.h>
19 #include <linux/err.h>
20 #include <linux/zalloc.h>
21 #include <sys/ioctl.h>
22 #include <sys/resource.h>
23 #include <sys/types.h>
26 #include <perf/evsel.h>
28 #include "bpf_counter.h"
29 #include "callchain.h"
35 #include "util/evsel_config.h"
36 #include "util/evsel_fprintf.h"
38 #include <perf/cpumap.h>
39 #include "thread_map.h"
41 #include "perf_regs.h"
44 #include "trace-event.h"
50 #include "pmu-hybrid.h"
51 #include "../perf-sys.h"
52 #include "util/parse-branch-options.h"
53 #include <internal/xyarray.h>
54 #include <internal/lib.h>
56 #include <linux/ctype.h>
58 struct perf_missing_features perf_missing_features;
60 static clockid_t clockid;
62 static int evsel__no_extra_init(struct evsel *evsel __maybe_unused)
67 void __weak test_attr__ready(void) { }
69 static void evsel__no_extra_fini(struct evsel *evsel __maybe_unused)
75 int (*init)(struct evsel *evsel);
76 void (*fini)(struct evsel *evsel);
77 } perf_evsel__object = {
78 .size = sizeof(struct evsel),
79 .init = evsel__no_extra_init,
80 .fini = evsel__no_extra_fini,
83 int evsel__object_config(size_t object_size, int (*init)(struct evsel *evsel),
84 void (*fini)(struct evsel *evsel))
90 if (perf_evsel__object.size > object_size)
93 perf_evsel__object.size = object_size;
97 perf_evsel__object.init = init;
100 perf_evsel__object.fini = fini;
105 #define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
107 int __evsel__sample_size(u64 sample_type)
109 u64 mask = sample_type & PERF_SAMPLE_MASK;
113 for (i = 0; i < 64; i++) {
114 if (mask & (1ULL << i))
124 * __perf_evsel__calc_id_pos - calculate id_pos.
125 * @sample_type: sample type
127 * This function returns the position of the event id (PERF_SAMPLE_ID or
128 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct
129 * perf_record_sample.
131 static int __perf_evsel__calc_id_pos(u64 sample_type)
135 if (sample_type & PERF_SAMPLE_IDENTIFIER)
138 if (!(sample_type & PERF_SAMPLE_ID))
141 if (sample_type & PERF_SAMPLE_IP)
144 if (sample_type & PERF_SAMPLE_TID)
147 if (sample_type & PERF_SAMPLE_TIME)
150 if (sample_type & PERF_SAMPLE_ADDR)
157 * __perf_evsel__calc_is_pos - calculate is_pos.
158 * @sample_type: sample type
160 * This function returns the position (counting backwards) of the event id
161 * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if
162 * sample_id_all is used there is an id sample appended to non-sample events.
164 static int __perf_evsel__calc_is_pos(u64 sample_type)
168 if (sample_type & PERF_SAMPLE_IDENTIFIER)
171 if (!(sample_type & PERF_SAMPLE_ID))
174 if (sample_type & PERF_SAMPLE_CPU)
177 if (sample_type & PERF_SAMPLE_STREAM_ID)
183 void evsel__calc_id_pos(struct evsel *evsel)
185 evsel->id_pos = __perf_evsel__calc_id_pos(evsel->core.attr.sample_type);
186 evsel->is_pos = __perf_evsel__calc_is_pos(evsel->core.attr.sample_type);
189 void __evsel__set_sample_bit(struct evsel *evsel,
190 enum perf_event_sample_format bit)
192 if (!(evsel->core.attr.sample_type & bit)) {
193 evsel->core.attr.sample_type |= bit;
194 evsel->sample_size += sizeof(u64);
195 evsel__calc_id_pos(evsel);
199 void __evsel__reset_sample_bit(struct evsel *evsel,
200 enum perf_event_sample_format bit)
202 if (evsel->core.attr.sample_type & bit) {
203 evsel->core.attr.sample_type &= ~bit;
204 evsel->sample_size -= sizeof(u64);
205 evsel__calc_id_pos(evsel);
209 void evsel__set_sample_id(struct evsel *evsel,
210 bool can_sample_identifier)
212 if (can_sample_identifier) {
213 evsel__reset_sample_bit(evsel, ID);
214 evsel__set_sample_bit(evsel, IDENTIFIER);
216 evsel__set_sample_bit(evsel, ID);
218 evsel->core.attr.read_format |= PERF_FORMAT_ID;
222 * evsel__is_function_event - Return whether given evsel is a function
225 * @evsel - evsel selector to be tested
227 * Return %true if event is function trace event
229 bool evsel__is_function_event(struct evsel *evsel)
231 #define FUNCTION_EVENT "ftrace:function"
233 return evsel->name &&
234 !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
236 #undef FUNCTION_EVENT
239 void evsel__init(struct evsel *evsel,
240 struct perf_event_attr *attr, int idx)
242 perf_evsel__init(&evsel->core, attr, idx);
243 evsel->tracking = !idx;
246 evsel->max_events = ULONG_MAX;
247 evsel->evlist = NULL;
248 evsel->bpf_obj = NULL;
250 INIT_LIST_HEAD(&evsel->config_terms);
251 INIT_LIST_HEAD(&evsel->bpf_counter_list);
252 perf_evsel__object.init(evsel);
253 evsel->sample_size = __evsel__sample_size(attr->sample_type);
254 evsel__calc_id_pos(evsel);
255 evsel->cmdline_group_boundary = false;
256 evsel->metric_expr = NULL;
257 evsel->metric_name = NULL;
258 evsel->metric_events = NULL;
259 evsel->per_pkg_mask = NULL;
260 evsel->collect_stat = false;
261 evsel->pmu_name = NULL;
264 struct evsel *evsel__new_idx(struct perf_event_attr *attr, int idx)
266 struct evsel *evsel = zalloc(perf_evsel__object.size);
270 evsel__init(evsel, attr, idx);
272 if (evsel__is_bpf_output(evsel)) {
273 evsel->core.attr.sample_type |= (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
274 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
275 evsel->core.attr.sample_period = 1;
278 if (evsel__is_clock(evsel)) {
280 * The evsel->unit points to static alias->unit
281 * so it's ok to use static string in here.
283 static const char *unit = "msec";
292 static bool perf_event_can_profile_kernel(void)
294 return perf_event_paranoid_check(1);
297 struct evsel *evsel__new_cycles(bool precise, __u32 type, __u64 config)
299 struct perf_event_attr attr = {
302 .exclude_kernel = !perf_event_can_profile_kernel(),
306 event_attr_init(&attr);
312 * Now let the usual logic to set up the perf_event_attr defaults
313 * to kick in when we return and before perf_evsel__open() is called.
316 evsel = evsel__new(&attr);
320 evsel->precise_max = true;
322 /* use asprintf() because free(evsel) assumes name is allocated */
323 if (asprintf(&evsel->name, "cycles%s%s%.*s",
324 (attr.precise_ip || attr.exclude_kernel) ? ":" : "",
325 attr.exclude_kernel ? "u" : "",
326 attr.precise_ip ? attr.precise_ip + 1 : 0, "ppp") < 0)
331 evsel__delete(evsel);
336 static int evsel__copy_config_terms(struct evsel *dst, struct evsel *src)
338 struct evsel_config_term *pos, *tmp;
340 list_for_each_entry(pos, &src->config_terms, list) {
341 tmp = malloc(sizeof(*tmp));
347 tmp->val.str = strdup(pos->val.str);
348 if (tmp->val.str == NULL) {
353 list_add_tail(&tmp->list, &dst->config_terms);
359 * evsel__clone - create a new evsel copied from @orig
360 * @orig: original evsel
362 * The assumption is that @orig is not configured nor opened yet.
363 * So we only care about the attributes that can be set while it's parsed.
365 struct evsel *evsel__clone(struct evsel *orig)
369 BUG_ON(orig->core.fd);
370 BUG_ON(orig->counts);
372 BUG_ON(orig->per_pkg_mask);
374 /* cannot handle BPF objects for now */
378 evsel = evsel__new(&orig->core.attr);
382 evsel->core.cpus = perf_cpu_map__get(orig->core.cpus);
383 evsel->core.own_cpus = perf_cpu_map__get(orig->core.own_cpus);
384 evsel->core.threads = perf_thread_map__get(orig->core.threads);
385 evsel->core.nr_members = orig->core.nr_members;
386 evsel->core.system_wide = orig->core.system_wide;
389 evsel->name = strdup(orig->name);
390 if (evsel->name == NULL)
393 if (orig->group_name) {
394 evsel->group_name = strdup(orig->group_name);
395 if (evsel->group_name == NULL)
398 if (orig->pmu_name) {
399 evsel->pmu_name = strdup(orig->pmu_name);
400 if (evsel->pmu_name == NULL)
404 evsel->filter = strdup(orig->filter);
405 if (evsel->filter == NULL)
408 evsel->cgrp = cgroup__get(orig->cgrp);
409 evsel->tp_format = orig->tp_format;
410 evsel->handler = orig->handler;
411 evsel->core.leader = orig->core.leader;
413 evsel->max_events = orig->max_events;
414 evsel->tool_event = orig->tool_event;
415 evsel->unit = orig->unit;
416 evsel->scale = orig->scale;
417 evsel->snapshot = orig->snapshot;
418 evsel->per_pkg = orig->per_pkg;
419 evsel->percore = orig->percore;
420 evsel->precise_max = orig->precise_max;
421 evsel->use_uncore_alias = orig->use_uncore_alias;
422 evsel->is_libpfm_event = orig->is_libpfm_event;
424 evsel->exclude_GH = orig->exclude_GH;
425 evsel->sample_read = orig->sample_read;
426 evsel->auto_merge_stats = orig->auto_merge_stats;
427 evsel->collect_stat = orig->collect_stat;
428 evsel->weak_group = orig->weak_group;
429 evsel->use_config_name = orig->use_config_name;
431 if (evsel__copy_config_terms(evsel, orig) < 0)
437 evsel__delete(evsel);
442 * Returns pointer with encoded error via <linux/err.h> interface.
444 struct evsel *evsel__newtp_idx(const char *sys, const char *name, int idx)
446 struct evsel *evsel = zalloc(perf_evsel__object.size);
452 struct perf_event_attr attr = {
453 .type = PERF_TYPE_TRACEPOINT,
454 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
455 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
458 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
461 evsel->tp_format = trace_event__tp_format(sys, name);
462 if (IS_ERR(evsel->tp_format)) {
463 err = PTR_ERR(evsel->tp_format);
467 event_attr_init(&attr);
468 attr.config = evsel->tp_format->id;
469 attr.sample_period = 1;
470 evsel__init(evsel, &attr, idx);
482 const char *evsel__hw_names[PERF_COUNT_HW_MAX] = {
490 "stalled-cycles-frontend",
491 "stalled-cycles-backend",
495 char *evsel__bpf_counter_events;
497 bool evsel__match_bpf_counter_events(const char *name)
503 if (!evsel__bpf_counter_events)
506 ptr = strstr(evsel__bpf_counter_events, name);
507 name_len = strlen(name);
509 /* check name matches a full token in evsel__bpf_counter_events */
510 match = (ptr != NULL) &&
511 ((ptr == evsel__bpf_counter_events) || (*(ptr - 1) == ',')) &&
512 ((*(ptr + name_len) == ',') || (*(ptr + name_len) == '\0'));
517 static const char *__evsel__hw_name(u64 config)
519 if (config < PERF_COUNT_HW_MAX && evsel__hw_names[config])
520 return evsel__hw_names[config];
522 return "unknown-hardware";
525 static int evsel__add_modifiers(struct evsel *evsel, char *bf, size_t size)
527 int colon = 0, r = 0;
528 struct perf_event_attr *attr = &evsel->core.attr;
529 bool exclude_guest_default = false;
531 #define MOD_PRINT(context, mod) do { \
532 if (!attr->exclude_##context) { \
533 if (!colon) colon = ++r; \
534 r += scnprintf(bf + r, size - r, "%c", mod); \
537 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
538 MOD_PRINT(kernel, 'k');
539 MOD_PRINT(user, 'u');
541 exclude_guest_default = true;
544 if (attr->precise_ip) {
547 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
548 exclude_guest_default = true;
551 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
552 MOD_PRINT(host, 'H');
553 MOD_PRINT(guest, 'G');
561 static int evsel__hw_name(struct evsel *evsel, char *bf, size_t size)
563 int r = scnprintf(bf, size, "%s", __evsel__hw_name(evsel->core.attr.config));
564 return r + evsel__add_modifiers(evsel, bf + r, size - r);
567 const char *evsel__sw_names[PERF_COUNT_SW_MAX] = {
580 static const char *__evsel__sw_name(u64 config)
582 if (config < PERF_COUNT_SW_MAX && evsel__sw_names[config])
583 return evsel__sw_names[config];
584 return "unknown-software";
587 static int evsel__sw_name(struct evsel *evsel, char *bf, size_t size)
589 int r = scnprintf(bf, size, "%s", __evsel__sw_name(evsel->core.attr.config));
590 return r + evsel__add_modifiers(evsel, bf + r, size - r);
593 static int __evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
597 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
599 if (type & HW_BREAKPOINT_R)
600 r += scnprintf(bf + r, size - r, "r");
602 if (type & HW_BREAKPOINT_W)
603 r += scnprintf(bf + r, size - r, "w");
605 if (type & HW_BREAKPOINT_X)
606 r += scnprintf(bf + r, size - r, "x");
611 static int evsel__bp_name(struct evsel *evsel, char *bf, size_t size)
613 struct perf_event_attr *attr = &evsel->core.attr;
614 int r = __evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
615 return r + evsel__add_modifiers(evsel, bf + r, size - r);
618 const char *evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX][EVSEL__MAX_ALIASES] = {
619 { "L1-dcache", "l1-d", "l1d", "L1-data", },
620 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
622 { "dTLB", "d-tlb", "Data-TLB", },
623 { "iTLB", "i-tlb", "Instruction-TLB", },
624 { "branch", "branches", "bpu", "btb", "bpc", },
628 const char *evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX][EVSEL__MAX_ALIASES] = {
629 { "load", "loads", "read", },
630 { "store", "stores", "write", },
631 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
634 const char *evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX][EVSEL__MAX_ALIASES] = {
635 { "refs", "Reference", "ops", "access", },
636 { "misses", "miss", },
639 #define C(x) PERF_COUNT_HW_CACHE_##x
640 #define CACHE_READ (1 << C(OP_READ))
641 #define CACHE_WRITE (1 << C(OP_WRITE))
642 #define CACHE_PREFETCH (1 << C(OP_PREFETCH))
643 #define COP(x) (1 << x)
646 * cache operation stat
647 * L1I : Read and prefetch only
648 * ITLB and BPU : Read-only
650 static unsigned long evsel__hw_cache_stat[C(MAX)] = {
651 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
652 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
653 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
654 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
655 [C(ITLB)] = (CACHE_READ),
656 [C(BPU)] = (CACHE_READ),
657 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
660 bool evsel__is_cache_op_valid(u8 type, u8 op)
662 if (evsel__hw_cache_stat[type] & COP(op))
663 return true; /* valid */
665 return false; /* invalid */
668 int __evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result, char *bf, size_t size)
671 return scnprintf(bf, size, "%s-%s-%s", evsel__hw_cache[type][0],
672 evsel__hw_cache_op[op][0],
673 evsel__hw_cache_result[result][0]);
676 return scnprintf(bf, size, "%s-%s", evsel__hw_cache[type][0],
677 evsel__hw_cache_op[op][1]);
680 static int __evsel__hw_cache_name(u64 config, char *bf, size_t size)
682 u8 op, result, type = (config >> 0) & 0xff;
683 const char *err = "unknown-ext-hardware-cache-type";
685 if (type >= PERF_COUNT_HW_CACHE_MAX)
688 op = (config >> 8) & 0xff;
689 err = "unknown-ext-hardware-cache-op";
690 if (op >= PERF_COUNT_HW_CACHE_OP_MAX)
693 result = (config >> 16) & 0xff;
694 err = "unknown-ext-hardware-cache-result";
695 if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
698 err = "invalid-cache";
699 if (!evsel__is_cache_op_valid(type, op))
702 return __evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
704 return scnprintf(bf, size, "%s", err);
707 static int evsel__hw_cache_name(struct evsel *evsel, char *bf, size_t size)
709 int ret = __evsel__hw_cache_name(evsel->core.attr.config, bf, size);
710 return ret + evsel__add_modifiers(evsel, bf + ret, size - ret);
713 static int evsel__raw_name(struct evsel *evsel, char *bf, size_t size)
715 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->core.attr.config);
716 return ret + evsel__add_modifiers(evsel, bf + ret, size - ret);
719 static int evsel__tool_name(char *bf, size_t size)
721 int ret = scnprintf(bf, size, "duration_time");
725 const char *evsel__name(struct evsel *evsel)
735 switch (evsel->core.attr.type) {
737 evsel__raw_name(evsel, bf, sizeof(bf));
740 case PERF_TYPE_HARDWARE:
741 evsel__hw_name(evsel, bf, sizeof(bf));
744 case PERF_TYPE_HW_CACHE:
745 evsel__hw_cache_name(evsel, bf, sizeof(bf));
748 case PERF_TYPE_SOFTWARE:
749 if (evsel->tool_event)
750 evsel__tool_name(bf, sizeof(bf));
752 evsel__sw_name(evsel, bf, sizeof(bf));
755 case PERF_TYPE_TRACEPOINT:
756 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
759 case PERF_TYPE_BREAKPOINT:
760 evsel__bp_name(evsel, bf, sizeof(bf));
764 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
765 evsel->core.attr.type);
769 evsel->name = strdup(bf);
777 const char *evsel__group_name(struct evsel *evsel)
779 return evsel->group_name ?: "anon group";
783 * Returns the group details for the specified leader,
784 * with following rules.
786 * For record -e '{cycles,instructions}'
787 * 'anon group { cycles:u, instructions:u }'
789 * For record -e 'cycles,instructions' and report --group
790 * 'cycles:u, instructions:u'
792 int evsel__group_desc(struct evsel *evsel, char *buf, size_t size)
796 const char *group_name = evsel__group_name(evsel);
798 if (!evsel->forced_leader)
799 ret = scnprintf(buf, size, "%s { ", group_name);
801 ret += scnprintf(buf + ret, size - ret, "%s", evsel__name(evsel));
803 for_each_group_member(pos, evsel)
804 ret += scnprintf(buf + ret, size - ret, ", %s", evsel__name(pos));
806 if (!evsel->forced_leader)
807 ret += scnprintf(buf + ret, size - ret, " }");
812 static void __evsel__config_callchain(struct evsel *evsel, struct record_opts *opts,
813 struct callchain_param *param)
815 bool function = evsel__is_function_event(evsel);
816 struct perf_event_attr *attr = &evsel->core.attr;
818 evsel__set_sample_bit(evsel, CALLCHAIN);
820 attr->sample_max_stack = param->max_stack;
822 if (opts->kernel_callchains)
823 attr->exclude_callchain_user = 1;
824 if (opts->user_callchains)
825 attr->exclude_callchain_kernel = 1;
826 if (param->record_mode == CALLCHAIN_LBR) {
827 if (!opts->branch_stack) {
828 if (attr->exclude_user) {
829 pr_warning("LBR callstack option is only available "
830 "to get user callchain information. "
831 "Falling back to framepointers.\n");
833 evsel__set_sample_bit(evsel, BRANCH_STACK);
834 attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER |
835 PERF_SAMPLE_BRANCH_CALL_STACK |
836 PERF_SAMPLE_BRANCH_NO_CYCLES |
837 PERF_SAMPLE_BRANCH_NO_FLAGS |
838 PERF_SAMPLE_BRANCH_HW_INDEX;
841 pr_warning("Cannot use LBR callstack with branch stack. "
842 "Falling back to framepointers.\n");
845 if (param->record_mode == CALLCHAIN_DWARF) {
847 evsel__set_sample_bit(evsel, REGS_USER);
848 evsel__set_sample_bit(evsel, STACK_USER);
849 if (opts->sample_user_regs && DWARF_MINIMAL_REGS != PERF_REGS_MASK) {
850 attr->sample_regs_user |= DWARF_MINIMAL_REGS;
851 pr_warning("WARNING: The use of --call-graph=dwarf may require all the user registers, "
852 "specifying a subset with --user-regs may render DWARF unwinding unreliable, "
853 "so the minimal registers set (IP, SP) is explicitly forced.\n");
855 attr->sample_regs_user |= PERF_REGS_MASK;
857 attr->sample_stack_user = param->dump_size;
858 attr->exclude_callchain_user = 1;
860 pr_info("Cannot use DWARF unwind for function trace event,"
861 " falling back to framepointers.\n");
866 pr_info("Disabling user space callchains for function trace event.\n");
867 attr->exclude_callchain_user = 1;
871 void evsel__config_callchain(struct evsel *evsel, struct record_opts *opts,
872 struct callchain_param *param)
875 return __evsel__config_callchain(evsel, opts, param);
878 static void evsel__reset_callgraph(struct evsel *evsel, struct callchain_param *param)
880 struct perf_event_attr *attr = &evsel->core.attr;
882 evsel__reset_sample_bit(evsel, CALLCHAIN);
883 if (param->record_mode == CALLCHAIN_LBR) {
884 evsel__reset_sample_bit(evsel, BRANCH_STACK);
885 attr->branch_sample_type &= ~(PERF_SAMPLE_BRANCH_USER |
886 PERF_SAMPLE_BRANCH_CALL_STACK |
887 PERF_SAMPLE_BRANCH_HW_INDEX);
889 if (param->record_mode == CALLCHAIN_DWARF) {
890 evsel__reset_sample_bit(evsel, REGS_USER);
891 evsel__reset_sample_bit(evsel, STACK_USER);
895 static void evsel__apply_config_terms(struct evsel *evsel,
896 struct record_opts *opts, bool track)
898 struct evsel_config_term *term;
899 struct list_head *config_terms = &evsel->config_terms;
900 struct perf_event_attr *attr = &evsel->core.attr;
901 /* callgraph default */
902 struct callchain_param param = {
903 .record_mode = callchain_param.record_mode,
907 const char *callgraph_buf = NULL;
909 list_for_each_entry(term, config_terms, list) {
910 switch (term->type) {
911 case EVSEL__CONFIG_TERM_PERIOD:
912 if (!(term->weak && opts->user_interval != ULLONG_MAX)) {
913 attr->sample_period = term->val.period;
915 evsel__reset_sample_bit(evsel, PERIOD);
918 case EVSEL__CONFIG_TERM_FREQ:
919 if (!(term->weak && opts->user_freq != UINT_MAX)) {
920 attr->sample_freq = term->val.freq;
922 evsel__set_sample_bit(evsel, PERIOD);
925 case EVSEL__CONFIG_TERM_TIME:
927 evsel__set_sample_bit(evsel, TIME);
929 evsel__reset_sample_bit(evsel, TIME);
931 case EVSEL__CONFIG_TERM_CALLGRAPH:
932 callgraph_buf = term->val.str;
934 case EVSEL__CONFIG_TERM_BRANCH:
935 if (term->val.str && strcmp(term->val.str, "no")) {
936 evsel__set_sample_bit(evsel, BRANCH_STACK);
937 parse_branch_str(term->val.str,
938 &attr->branch_sample_type);
940 evsel__reset_sample_bit(evsel, BRANCH_STACK);
942 case EVSEL__CONFIG_TERM_STACK_USER:
943 dump_size = term->val.stack_user;
945 case EVSEL__CONFIG_TERM_MAX_STACK:
946 max_stack = term->val.max_stack;
948 case EVSEL__CONFIG_TERM_MAX_EVENTS:
949 evsel->max_events = term->val.max_events;
951 case EVSEL__CONFIG_TERM_INHERIT:
953 * attr->inherit should has already been set by
954 * evsel__config. If user explicitly set
955 * inherit using config terms, override global
956 * opt->no_inherit setting.
958 attr->inherit = term->val.inherit ? 1 : 0;
960 case EVSEL__CONFIG_TERM_OVERWRITE:
961 attr->write_backward = term->val.overwrite ? 1 : 0;
963 case EVSEL__CONFIG_TERM_DRV_CFG:
965 case EVSEL__CONFIG_TERM_PERCORE:
967 case EVSEL__CONFIG_TERM_AUX_OUTPUT:
968 attr->aux_output = term->val.aux_output ? 1 : 0;
970 case EVSEL__CONFIG_TERM_AUX_SAMPLE_SIZE:
971 /* Already applied by auxtrace */
973 case EVSEL__CONFIG_TERM_CFG_CHG:
980 /* User explicitly set per-event callgraph, clear the old setting and reset. */
981 if ((callgraph_buf != NULL) || (dump_size > 0) || max_stack) {
982 bool sample_address = false;
985 param.max_stack = max_stack;
986 if (callgraph_buf == NULL)
987 callgraph_buf = "fp";
990 /* parse callgraph parameters */
991 if (callgraph_buf != NULL) {
992 if (!strcmp(callgraph_buf, "no")) {
993 param.enabled = false;
994 param.record_mode = CALLCHAIN_NONE;
996 param.enabled = true;
997 if (parse_callchain_record(callgraph_buf, ¶m)) {
998 pr_err("per-event callgraph setting for %s failed. "
999 "Apply callgraph global setting for it\n",
1003 if (param.record_mode == CALLCHAIN_DWARF)
1004 sample_address = true;
1007 if (dump_size > 0) {
1008 dump_size = round_up(dump_size, sizeof(u64));
1009 param.dump_size = dump_size;
1012 /* If global callgraph set, clear it */
1013 if (callchain_param.enabled)
1014 evsel__reset_callgraph(evsel, &callchain_param);
1016 /* set perf-event callgraph */
1017 if (param.enabled) {
1018 if (sample_address) {
1019 evsel__set_sample_bit(evsel, ADDR);
1020 evsel__set_sample_bit(evsel, DATA_SRC);
1021 evsel->core.attr.mmap_data = track;
1023 evsel__config_callchain(evsel, opts, ¶m);
1028 struct evsel_config_term *__evsel__get_config_term(struct evsel *evsel, enum evsel_term_type type)
1030 struct evsel_config_term *term, *found_term = NULL;
1032 list_for_each_entry(term, &evsel->config_terms, list) {
1033 if (term->type == type)
1040 void __weak arch_evsel__set_sample_weight(struct evsel *evsel)
1042 evsel__set_sample_bit(evsel, WEIGHT);
1046 * The enable_on_exec/disabled value strategy:
1048 * 1) For any type of traced program:
1049 * - all independent events and group leaders are disabled
1050 * - all group members are enabled
1052 * Group members are ruled by group leaders. They need to
1053 * be enabled, because the group scheduling relies on that.
1055 * 2) For traced programs executed by perf:
1056 * - all independent events and group leaders have
1057 * enable_on_exec set
1058 * - we don't specifically enable or disable any event during
1059 * the record command
1061 * Independent events and group leaders are initially disabled
1062 * and get enabled by exec. Group members are ruled by group
1063 * leaders as stated in 1).
1065 * 3) For traced programs attached by perf (pid/tid):
1066 * - we specifically enable or disable all events during
1067 * the record command
1069 * When attaching events to already running traced we
1070 * enable/disable events specifically, as there's no
1071 * initial traced exec call.
1073 void evsel__config(struct evsel *evsel, struct record_opts *opts,
1074 struct callchain_param *callchain)
1076 struct evsel *leader = evsel__leader(evsel);
1077 struct perf_event_attr *attr = &evsel->core.attr;
1078 int track = evsel->tracking;
1079 bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread;
1081 attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1;
1082 attr->inherit = !opts->no_inherit;
1083 attr->write_backward = opts->overwrite ? 1 : 0;
1085 evsel__set_sample_bit(evsel, IP);
1086 evsel__set_sample_bit(evsel, TID);
1088 if (evsel->sample_read) {
1089 evsel__set_sample_bit(evsel, READ);
1092 * We need ID even in case of single event, because
1093 * PERF_SAMPLE_READ process ID specific data.
1095 evsel__set_sample_id(evsel, false);
1098 * Apply group format only if we belong to group
1099 * with more than one members.
1101 if (leader->core.nr_members > 1) {
1102 attr->read_format |= PERF_FORMAT_GROUP;
1108 * We default some events to have a default interval. But keep
1109 * it a weak assumption overridable by the user.
1111 if (!attr->sample_period) {
1114 attr->sample_freq = opts->freq;
1116 attr->sample_period = opts->default_interval;
1120 * If attr->freq was set (here or earlier), ask for period
1124 evsel__set_sample_bit(evsel, PERIOD);
1126 if (opts->no_samples)
1127 attr->sample_freq = 0;
1129 if (opts->inherit_stat) {
1130 evsel->core.attr.read_format |=
1131 PERF_FORMAT_TOTAL_TIME_ENABLED |
1132 PERF_FORMAT_TOTAL_TIME_RUNNING |
1134 attr->inherit_stat = 1;
1137 if (opts->sample_address) {
1138 evsel__set_sample_bit(evsel, ADDR);
1139 attr->mmap_data = track;
1143 * We don't allow user space callchains for function trace
1144 * event, due to issues with page faults while tracing page
1145 * fault handler and its overall trickiness nature.
1147 if (evsel__is_function_event(evsel))
1148 evsel->core.attr.exclude_callchain_user = 1;
1150 if (callchain && callchain->enabled && !evsel->no_aux_samples)
1151 evsel__config_callchain(evsel, opts, callchain);
1153 if (opts->sample_intr_regs && !evsel->no_aux_samples &&
1154 !evsel__is_dummy_event(evsel)) {
1155 attr->sample_regs_intr = opts->sample_intr_regs;
1156 evsel__set_sample_bit(evsel, REGS_INTR);
1159 if (opts->sample_user_regs && !evsel->no_aux_samples &&
1160 !evsel__is_dummy_event(evsel)) {
1161 attr->sample_regs_user |= opts->sample_user_regs;
1162 evsel__set_sample_bit(evsel, REGS_USER);
1165 if (target__has_cpu(&opts->target) || opts->sample_cpu)
1166 evsel__set_sample_bit(evsel, CPU);
1169 * When the user explicitly disabled time don't force it here.
1171 if (opts->sample_time &&
1172 (!perf_missing_features.sample_id_all &&
1173 (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu ||
1174 opts->sample_time_set)))
1175 evsel__set_sample_bit(evsel, TIME);
1177 if (opts->raw_samples && !evsel->no_aux_samples) {
1178 evsel__set_sample_bit(evsel, TIME);
1179 evsel__set_sample_bit(evsel, RAW);
1180 evsel__set_sample_bit(evsel, CPU);
1183 if (opts->sample_address)
1184 evsel__set_sample_bit(evsel, DATA_SRC);
1186 if (opts->sample_phys_addr)
1187 evsel__set_sample_bit(evsel, PHYS_ADDR);
1189 if (opts->no_buffering) {
1190 attr->watermark = 0;
1191 attr->wakeup_events = 1;
1193 if (opts->branch_stack && !evsel->no_aux_samples) {
1194 evsel__set_sample_bit(evsel, BRANCH_STACK);
1195 attr->branch_sample_type = opts->branch_stack;
1198 if (opts->sample_weight)
1199 arch_evsel__set_sample_weight(evsel);
1203 attr->mmap2 = track && !perf_missing_features.mmap2;
1205 attr->build_id = track && opts->build_id;
1208 * ksymbol is tracked separately with text poke because it needs to be
1209 * system wide and enabled immediately.
1211 if (!opts->text_poke)
1212 attr->ksymbol = track && !perf_missing_features.ksymbol;
1213 attr->bpf_event = track && !opts->no_bpf_event && !perf_missing_features.bpf;
1215 if (opts->record_namespaces)
1216 attr->namespaces = track;
1218 if (opts->record_cgroup) {
1219 attr->cgroup = track && !perf_missing_features.cgroup;
1220 evsel__set_sample_bit(evsel, CGROUP);
1223 if (opts->sample_data_page_size)
1224 evsel__set_sample_bit(evsel, DATA_PAGE_SIZE);
1226 if (opts->sample_code_page_size)
1227 evsel__set_sample_bit(evsel, CODE_PAGE_SIZE);
1229 if (opts->record_switch_events)
1230 attr->context_switch = track;
1232 if (opts->sample_transaction)
1233 evsel__set_sample_bit(evsel, TRANSACTION);
1235 if (opts->running_time) {
1236 evsel->core.attr.read_format |=
1237 PERF_FORMAT_TOTAL_TIME_ENABLED |
1238 PERF_FORMAT_TOTAL_TIME_RUNNING;
1242 * XXX see the function comment above
1244 * Disabling only independent events or group leaders,
1245 * keeping group members enabled.
1247 if (evsel__is_group_leader(evsel))
1251 * Setting enable_on_exec for independent events and
1252 * group leaders for traced executed by perf.
1254 if (target__none(&opts->target) && evsel__is_group_leader(evsel) &&
1255 !opts->initial_delay)
1256 attr->enable_on_exec = 1;
1258 if (evsel->immediate) {
1260 attr->enable_on_exec = 0;
1263 clockid = opts->clockid;
1264 if (opts->use_clockid) {
1265 attr->use_clockid = 1;
1266 attr->clockid = opts->clockid;
1269 if (evsel->precise_max)
1270 attr->precise_ip = 3;
1272 if (opts->all_user) {
1273 attr->exclude_kernel = 1;
1274 attr->exclude_user = 0;
1277 if (opts->all_kernel) {
1278 attr->exclude_kernel = 0;
1279 attr->exclude_user = 1;
1282 if (evsel->core.own_cpus || evsel->unit)
1283 evsel->core.attr.read_format |= PERF_FORMAT_ID;
1286 * Apply event specific term settings,
1287 * it overloads any global configuration.
1289 evsel__apply_config_terms(evsel, opts, track);
1291 evsel->ignore_missing_thread = opts->ignore_missing_thread;
1293 /* The --period option takes the precedence. */
1294 if (opts->period_set) {
1296 evsel__set_sample_bit(evsel, PERIOD);
1298 evsel__reset_sample_bit(evsel, PERIOD);
1302 * A dummy event never triggers any actual counter and therefore
1303 * cannot be used with branch_stack.
1305 * For initial_delay, a dummy event is added implicitly.
1306 * The software event will trigger -EOPNOTSUPP error out,
1307 * if BRANCH_STACK bit is set.
1309 if (evsel__is_dummy_event(evsel))
1310 evsel__reset_sample_bit(evsel, BRANCH_STACK);
1313 int evsel__set_filter(struct evsel *evsel, const char *filter)
1315 char *new_filter = strdup(filter);
1317 if (new_filter != NULL) {
1318 free(evsel->filter);
1319 evsel->filter = new_filter;
1326 static int evsel__append_filter(struct evsel *evsel, const char *fmt, const char *filter)
1330 if (evsel->filter == NULL)
1331 return evsel__set_filter(evsel, filter);
1333 if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
1334 free(evsel->filter);
1335 evsel->filter = new_filter;
1342 int evsel__append_tp_filter(struct evsel *evsel, const char *filter)
1344 return evsel__append_filter(evsel, "(%s) && (%s)", filter);
1347 int evsel__append_addr_filter(struct evsel *evsel, const char *filter)
1349 return evsel__append_filter(evsel, "%s,%s", filter);
1352 /* Caller has to clear disabled after going through all CPUs. */
1353 int evsel__enable_cpu(struct evsel *evsel, int cpu)
1355 return perf_evsel__enable_cpu(&evsel->core, cpu);
1358 int evsel__enable(struct evsel *evsel)
1360 int err = perf_evsel__enable(&evsel->core);
1363 evsel->disabled = false;
1367 /* Caller has to set disabled after going through all CPUs. */
1368 int evsel__disable_cpu(struct evsel *evsel, int cpu)
1370 return perf_evsel__disable_cpu(&evsel->core, cpu);
1373 int evsel__disable(struct evsel *evsel)
1375 int err = perf_evsel__disable(&evsel->core);
1377 * We mark it disabled here so that tools that disable a event can
1378 * ignore events after they disable it. I.e. the ring buffer may have
1379 * already a few more events queued up before the kernel got the stop
1383 evsel->disabled = true;
1388 static void evsel__free_config_terms(struct evsel *evsel)
1390 struct evsel_config_term *term, *h;
1392 list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1393 list_del_init(&term->list);
1395 zfree(&term->val.str);
1400 void evsel__exit(struct evsel *evsel)
1402 assert(list_empty(&evsel->core.node));
1403 assert(evsel->evlist == NULL);
1404 bpf_counter__destroy(evsel);
1405 evsel__free_counts(evsel);
1406 perf_evsel__free_fd(&evsel->core);
1407 perf_evsel__free_id(&evsel->core);
1408 evsel__free_config_terms(evsel);
1409 cgroup__put(evsel->cgrp);
1410 perf_cpu_map__put(evsel->core.cpus);
1411 perf_cpu_map__put(evsel->core.own_cpus);
1412 perf_thread_map__put(evsel->core.threads);
1413 zfree(&evsel->group_name);
1414 zfree(&evsel->name);
1415 zfree(&evsel->pmu_name);
1416 evsel__zero_per_pkg(evsel);
1417 hashmap__free(evsel->per_pkg_mask);
1418 evsel->per_pkg_mask = NULL;
1419 zfree(&evsel->metric_events);
1420 perf_evsel__object.fini(evsel);
1423 void evsel__delete(struct evsel *evsel)
1429 void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
1430 struct perf_counts_values *count)
1432 struct perf_counts_values tmp;
1434 if (!evsel->prev_raw_counts)
1438 tmp = evsel->prev_raw_counts->aggr;
1439 evsel->prev_raw_counts->aggr = *count;
1441 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1442 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
1445 count->val = count->val - tmp.val;
1446 count->ena = count->ena - tmp.ena;
1447 count->run = count->run - tmp.run;
1450 void perf_counts_values__scale(struct perf_counts_values *count,
1451 bool scale, s8 *pscaled)
1456 if (count->run == 0) {
1459 } else if (count->run < count->ena) {
1461 count->val = (u64)((double) count->val * count->ena / count->run);
1469 static int evsel__read_one(struct evsel *evsel, int cpu, int thread)
1471 struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread);
1473 return perf_evsel__read(&evsel->core, cpu, thread, count);
1476 static void evsel__set_count(struct evsel *counter, int cpu, int thread, u64 val, u64 ena, u64 run)
1478 struct perf_counts_values *count;
1480 count = perf_counts(counter->counts, cpu, thread);
1486 perf_counts__set_loaded(counter->counts, cpu, thread, true);
1489 static int evsel__process_group_data(struct evsel *leader, int cpu, int thread, u64 *data)
1491 u64 read_format = leader->core.attr.read_format;
1492 struct sample_read_value *v;
1493 u64 nr, ena = 0, run = 0, i;
1497 if (nr != (u64) leader->core.nr_members)
1500 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1503 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1506 v = (struct sample_read_value *) data;
1508 evsel__set_count(leader, cpu, thread, v[0].value, ena, run);
1510 for (i = 1; i < nr; i++) {
1511 struct evsel *counter;
1513 counter = evlist__id2evsel(leader->evlist, v[i].id);
1517 evsel__set_count(counter, cpu, thread, v[i].value, ena, run);
1523 static int evsel__read_group(struct evsel *leader, int cpu, int thread)
1525 struct perf_stat_evsel *ps = leader->stats;
1526 u64 read_format = leader->core.attr.read_format;
1527 int size = perf_evsel__read_size(&leader->core);
1528 u64 *data = ps->group_data;
1530 if (!(read_format & PERF_FORMAT_ID))
1533 if (!evsel__is_group_leader(leader))
1537 data = zalloc(size);
1541 ps->group_data = data;
1544 if (FD(leader, cpu, thread) < 0)
1547 if (readn(FD(leader, cpu, thread), data, size) <= 0)
1550 return evsel__process_group_data(leader, cpu, thread, data);
1553 int evsel__read_counter(struct evsel *evsel, int cpu, int thread)
1555 u64 read_format = evsel->core.attr.read_format;
1557 if (read_format & PERF_FORMAT_GROUP)
1558 return evsel__read_group(evsel, cpu, thread);
1560 return evsel__read_one(evsel, cpu, thread);
1563 int __evsel__read_on_cpu(struct evsel *evsel, int cpu, int thread, bool scale)
1565 struct perf_counts_values count;
1566 size_t nv = scale ? 3 : 1;
1568 if (FD(evsel, cpu, thread) < 0)
1571 if (evsel->counts == NULL && evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
1574 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
1577 evsel__compute_deltas(evsel, cpu, thread, &count);
1578 perf_counts_values__scale(&count, scale, NULL);
1579 *perf_counts(evsel->counts, cpu, thread) = count;
1583 static int evsel__match_other_cpu(struct evsel *evsel, struct evsel *other,
1588 cpuid = perf_cpu_map__cpu(evsel->core.cpus, cpu);
1589 return perf_cpu_map__idx(other->core.cpus, cpuid);
1592 static int evsel__hybrid_group_cpu(struct evsel *evsel, int cpu)
1594 struct evsel *leader = evsel__leader(evsel);
1596 if ((evsel__is_hybrid(evsel) && !evsel__is_hybrid(leader)) ||
1597 (!evsel__is_hybrid(evsel) && evsel__is_hybrid(leader))) {
1598 return evsel__match_other_cpu(evsel, leader, cpu);
1604 static int get_group_fd(struct evsel *evsel, int cpu, int thread)
1606 struct evsel *leader = evsel__leader(evsel);
1609 if (evsel__is_group_leader(evsel))
1613 * Leader must be already processed/open,
1614 * if not it's a bug.
1616 BUG_ON(!leader->core.fd);
1618 cpu = evsel__hybrid_group_cpu(evsel, cpu);
1622 fd = FD(leader, cpu, thread);
1628 static void evsel__remove_fd(struct evsel *pos, int nr_cpus, int nr_threads, int thread_idx)
1630 for (int cpu = 0; cpu < nr_cpus; cpu++)
1631 for (int thread = thread_idx; thread < nr_threads - 1; thread++)
1632 FD(pos, cpu, thread) = FD(pos, cpu, thread + 1);
1635 static int update_fds(struct evsel *evsel,
1636 int nr_cpus, int cpu_idx,
1637 int nr_threads, int thread_idx)
1641 if (cpu_idx >= nr_cpus || thread_idx >= nr_threads)
1644 evlist__for_each_entry(evsel->evlist, pos) {
1645 nr_cpus = pos != evsel ? nr_cpus : cpu_idx;
1647 evsel__remove_fd(pos, nr_cpus, nr_threads, thread_idx);
1650 * Since fds for next evsel has not been created,
1651 * there is no need to iterate whole event list.
1659 bool evsel__ignore_missing_thread(struct evsel *evsel,
1660 int nr_cpus, int cpu,
1661 struct perf_thread_map *threads,
1662 int thread, int err)
1664 pid_t ignore_pid = perf_thread_map__pid(threads, thread);
1666 if (!evsel->ignore_missing_thread)
1669 /* The system wide setup does not work with threads. */
1670 if (evsel->core.system_wide)
1673 /* The -ESRCH is perf event syscall errno for pid's not found. */
1677 /* If there's only one thread, let it fail. */
1678 if (threads->nr == 1)
1682 * We should remove fd for missing_thread first
1683 * because thread_map__remove() will decrease threads->nr.
1685 if (update_fds(evsel, nr_cpus, cpu, threads->nr, thread))
1688 if (thread_map__remove(threads, thread))
1691 pr_warning("WARNING: Ignored open failure for pid %d\n",
1696 static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
1697 void *priv __maybe_unused)
1699 return fprintf(fp, " %-32s %s\n", name, val);
1702 static void display_attr(struct perf_event_attr *attr)
1704 if (verbose >= 2 || debug_peo_args) {
1705 fprintf(stderr, "%.60s\n", graph_dotted_line);
1706 fprintf(stderr, "perf_event_attr:\n");
1707 perf_event_attr__fprintf(stderr, attr, __open_attr__fprintf, NULL);
1708 fprintf(stderr, "%.60s\n", graph_dotted_line);
1712 bool evsel__precise_ip_fallback(struct evsel *evsel)
1714 /* Do not try less precise if not requested. */
1715 if (!evsel->precise_max)
1719 * We tried all the precise_ip values, and it's
1720 * still failing, so leave it to standard fallback.
1722 if (!evsel->core.attr.precise_ip) {
1723 evsel->core.attr.precise_ip = evsel->precise_ip_original;
1727 if (!evsel->precise_ip_original)
1728 evsel->precise_ip_original = evsel->core.attr.precise_ip;
1730 evsel->core.attr.precise_ip--;
1731 pr_debug2_peo("decreasing precise_ip by one (%d)\n", evsel->core.attr.precise_ip);
1732 display_attr(&evsel->core.attr);
1736 static struct perf_cpu_map *empty_cpu_map;
1737 static struct perf_thread_map *empty_thread_map;
1739 static int __evsel__prepare_open(struct evsel *evsel, struct perf_cpu_map *cpus,
1740 struct perf_thread_map *threads)
1744 if ((perf_missing_features.write_backward && evsel->core.attr.write_backward) ||
1745 (perf_missing_features.aux_output && evsel->core.attr.aux_output))
1749 if (empty_cpu_map == NULL) {
1750 empty_cpu_map = perf_cpu_map__dummy_new();
1751 if (empty_cpu_map == NULL)
1755 cpus = empty_cpu_map;
1758 if (threads == NULL) {
1759 if (empty_thread_map == NULL) {
1760 empty_thread_map = thread_map__new_by_tid(-1);
1761 if (empty_thread_map == NULL)
1765 threads = empty_thread_map;
1768 if (evsel->core.system_wide)
1771 nthreads = threads->nr;
1773 if (evsel->core.fd == NULL &&
1774 perf_evsel__alloc_fd(&evsel->core, cpus->nr, nthreads) < 0)
1777 evsel->open_flags = PERF_FLAG_FD_CLOEXEC;
1779 evsel->open_flags |= PERF_FLAG_PID_CGROUP;
1784 static void evsel__disable_missing_features(struct evsel *evsel)
1786 if (perf_missing_features.weight_struct) {
1787 evsel__set_sample_bit(evsel, WEIGHT);
1788 evsel__reset_sample_bit(evsel, WEIGHT_STRUCT);
1790 if (perf_missing_features.clockid_wrong)
1791 evsel->core.attr.clockid = CLOCK_MONOTONIC; /* should always work */
1792 if (perf_missing_features.clockid) {
1793 evsel->core.attr.use_clockid = 0;
1794 evsel->core.attr.clockid = 0;
1796 if (perf_missing_features.cloexec)
1797 evsel->open_flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
1798 if (perf_missing_features.mmap2)
1799 evsel->core.attr.mmap2 = 0;
1800 if (perf_missing_features.exclude_guest)
1801 evsel->core.attr.exclude_guest = evsel->core.attr.exclude_host = 0;
1802 if (perf_missing_features.lbr_flags)
1803 evsel->core.attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1804 PERF_SAMPLE_BRANCH_NO_CYCLES);
1805 if (perf_missing_features.group_read && evsel->core.attr.inherit)
1806 evsel->core.attr.read_format &= ~(PERF_FORMAT_GROUP|PERF_FORMAT_ID);
1807 if (perf_missing_features.ksymbol)
1808 evsel->core.attr.ksymbol = 0;
1809 if (perf_missing_features.bpf)
1810 evsel->core.attr.bpf_event = 0;
1811 if (perf_missing_features.branch_hw_idx)
1812 evsel->core.attr.branch_sample_type &= ~PERF_SAMPLE_BRANCH_HW_INDEX;
1813 if (perf_missing_features.sample_id_all)
1814 evsel->core.attr.sample_id_all = 0;
1817 int evsel__prepare_open(struct evsel *evsel, struct perf_cpu_map *cpus,
1818 struct perf_thread_map *threads)
1822 err = __evsel__prepare_open(evsel, cpus, threads);
1826 evsel__disable_missing_features(evsel);
1831 bool evsel__detect_missing_features(struct evsel *evsel)
1834 * Must probe features in the order they were added to the
1835 * perf_event_attr interface.
1837 if (!perf_missing_features.weight_struct &&
1838 (evsel->core.attr.sample_type & PERF_SAMPLE_WEIGHT_STRUCT)) {
1839 perf_missing_features.weight_struct = true;
1840 pr_debug2("switching off weight struct support\n");
1842 } else if (!perf_missing_features.code_page_size &&
1843 (evsel->core.attr.sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)) {
1844 perf_missing_features.code_page_size = true;
1845 pr_debug2_peo("Kernel has no PERF_SAMPLE_CODE_PAGE_SIZE support, bailing out\n");
1847 } else if (!perf_missing_features.data_page_size &&
1848 (evsel->core.attr.sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)) {
1849 perf_missing_features.data_page_size = true;
1850 pr_debug2_peo("Kernel has no PERF_SAMPLE_DATA_PAGE_SIZE support, bailing out\n");
1852 } else if (!perf_missing_features.cgroup && evsel->core.attr.cgroup) {
1853 perf_missing_features.cgroup = true;
1854 pr_debug2_peo("Kernel has no cgroup sampling support, bailing out\n");
1856 } else if (!perf_missing_features.branch_hw_idx &&
1857 (evsel->core.attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX)) {
1858 perf_missing_features.branch_hw_idx = true;
1859 pr_debug2("switching off branch HW index support\n");
1861 } else if (!perf_missing_features.aux_output && evsel->core.attr.aux_output) {
1862 perf_missing_features.aux_output = true;
1863 pr_debug2_peo("Kernel has no attr.aux_output support, bailing out\n");
1865 } else if (!perf_missing_features.bpf && evsel->core.attr.bpf_event) {
1866 perf_missing_features.bpf = true;
1867 pr_debug2_peo("switching off bpf_event\n");
1869 } else if (!perf_missing_features.ksymbol && evsel->core.attr.ksymbol) {
1870 perf_missing_features.ksymbol = true;
1871 pr_debug2_peo("switching off ksymbol\n");
1873 } else if (!perf_missing_features.write_backward && evsel->core.attr.write_backward) {
1874 perf_missing_features.write_backward = true;
1875 pr_debug2_peo("switching off write_backward\n");
1877 } else if (!perf_missing_features.clockid_wrong && evsel->core.attr.use_clockid) {
1878 perf_missing_features.clockid_wrong = true;
1879 pr_debug2_peo("switching off clockid\n");
1881 } else if (!perf_missing_features.clockid && evsel->core.attr.use_clockid) {
1882 perf_missing_features.clockid = true;
1883 pr_debug2_peo("switching off use_clockid\n");
1885 } else if (!perf_missing_features.cloexec && (evsel->open_flags & PERF_FLAG_FD_CLOEXEC)) {
1886 perf_missing_features.cloexec = true;
1887 pr_debug2_peo("switching off cloexec flag\n");
1889 } else if (!perf_missing_features.mmap2 && evsel->core.attr.mmap2) {
1890 perf_missing_features.mmap2 = true;
1891 pr_debug2_peo("switching off mmap2\n");
1893 } else if (!perf_missing_features.exclude_guest &&
1894 (evsel->core.attr.exclude_guest || evsel->core.attr.exclude_host)) {
1895 perf_missing_features.exclude_guest = true;
1896 pr_debug2_peo("switching off exclude_guest, exclude_host\n");
1898 } else if (!perf_missing_features.sample_id_all) {
1899 perf_missing_features.sample_id_all = true;
1900 pr_debug2_peo("switching off sample_id_all\n");
1902 } else if (!perf_missing_features.lbr_flags &&
1903 (evsel->core.attr.branch_sample_type &
1904 (PERF_SAMPLE_BRANCH_NO_CYCLES |
1905 PERF_SAMPLE_BRANCH_NO_FLAGS))) {
1906 perf_missing_features.lbr_flags = true;
1907 pr_debug2_peo("switching off branch sample type no (cycles/flags)\n");
1909 } else if (!perf_missing_features.group_read &&
1910 evsel->core.attr.inherit &&
1911 (evsel->core.attr.read_format & PERF_FORMAT_GROUP) &&
1912 evsel__is_group_leader(evsel)) {
1913 perf_missing_features.group_read = true;
1914 pr_debug2_peo("switching off group read\n");
1921 bool evsel__increase_rlimit(enum rlimit_action *set_rlimit)
1926 if (*set_rlimit < INCREASED_MAX) {
1929 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1930 if (*set_rlimit == NO_CHANGE) {
1931 l.rlim_cur = l.rlim_max;
1933 l.rlim_cur = l.rlim_max + 1000;
1934 l.rlim_max = l.rlim_cur;
1936 if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1948 static int evsel__open_cpu(struct evsel *evsel, struct perf_cpu_map *cpus,
1949 struct perf_thread_map *threads,
1950 int start_cpu, int end_cpu)
1952 int cpu, thread, nthreads;
1953 int pid = -1, err, old_errno;
1954 enum rlimit_action set_rlimit = NO_CHANGE;
1956 err = __evsel__prepare_open(evsel, cpus, threads);
1961 cpus = empty_cpu_map;
1963 if (threads == NULL)
1964 threads = empty_thread_map;
1966 if (evsel->core.system_wide)
1969 nthreads = threads->nr;
1972 pid = evsel->cgrp->fd;
1974 fallback_missing_features:
1975 evsel__disable_missing_features(evsel);
1977 display_attr(&evsel->core.attr);
1979 for (cpu = start_cpu; cpu < end_cpu; cpu++) {
1981 for (thread = 0; thread < nthreads; thread++) {
1984 if (thread >= nthreads)
1987 if (!evsel->cgrp && !evsel->core.system_wide)
1988 pid = perf_thread_map__pid(threads, thread);
1990 group_fd = get_group_fd(evsel, cpu, thread);
1994 pr_debug2_peo("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx",
1995 pid, cpus->map[cpu], group_fd, evsel->open_flags);
1997 fd = sys_perf_event_open(&evsel->core.attr, pid, cpus->map[cpu],
1998 group_fd, evsel->open_flags);
2000 FD(evsel, cpu, thread) = fd;
2005 pr_debug2_peo("\nsys_perf_event_open failed, error %d\n",
2010 bpf_counter__install_pe(evsel, cpu, fd);
2012 if (unlikely(test_attr__enabled)) {
2013 test_attr__open(&evsel->core.attr, pid, cpus->map[cpu],
2014 fd, group_fd, evsel->open_flags);
2017 pr_debug2_peo(" = %d\n", fd);
2019 if (evsel->bpf_fd >= 0) {
2021 int bpf_fd = evsel->bpf_fd;
2024 PERF_EVENT_IOC_SET_BPF,
2026 if (err && errno != EEXIST) {
2027 pr_err("failed to attach bpf fd %d: %s\n",
2028 bpf_fd, strerror(errno));
2034 set_rlimit = NO_CHANGE;
2037 * If we succeeded but had to kill clockid, fail and
2038 * have evsel__open_strerror() print us a nice error.
2040 if (perf_missing_features.clockid ||
2041 perf_missing_features.clockid_wrong) {
2051 if (evsel__precise_ip_fallback(evsel))
2054 if (evsel__ignore_missing_thread(evsel, cpus->nr, cpu, threads, thread, err)) {
2055 /* We just removed 1 thread, so lower the upper nthreads limit. */
2058 /* ... and pretend like nothing have happened. */
2063 * perf stat needs between 5 and 22 fds per CPU. When we run out
2064 * of them try to increase the limits.
2066 if (err == -EMFILE && evsel__increase_rlimit(&set_rlimit))
2069 if (err != -EINVAL || cpu > 0 || thread > 0)
2072 if (evsel__detect_missing_features(evsel))
2073 goto fallback_missing_features;
2076 threads->err_thread = thread;
2080 while (--thread >= 0) {
2081 if (FD(evsel, cpu, thread) >= 0)
2082 close(FD(evsel, cpu, thread));
2083 FD(evsel, cpu, thread) = -1;
2086 } while (--cpu >= 0);
2091 int evsel__open(struct evsel *evsel, struct perf_cpu_map *cpus,
2092 struct perf_thread_map *threads)
2094 return evsel__open_cpu(evsel, cpus, threads, 0, cpus ? cpus->nr : 1);
2097 void evsel__close(struct evsel *evsel)
2099 perf_evsel__close(&evsel->core);
2100 perf_evsel__free_id(&evsel->core);
2103 int evsel__open_per_cpu(struct evsel *evsel, struct perf_cpu_map *cpus, int cpu)
2106 return evsel__open_cpu(evsel, cpus, NULL, 0,
2107 cpus ? cpus->nr : 1);
2109 return evsel__open_cpu(evsel, cpus, NULL, cpu, cpu + 1);
2112 int evsel__open_per_thread(struct evsel *evsel, struct perf_thread_map *threads)
2114 return evsel__open(evsel, NULL, threads);
2117 static int perf_evsel__parse_id_sample(const struct evsel *evsel,
2118 const union perf_event *event,
2119 struct perf_sample *sample)
2121 u64 type = evsel->core.attr.sample_type;
2122 const __u64 *array = event->sample.array;
2123 bool swapped = evsel->needs_swap;
2126 array += ((event->header.size -
2127 sizeof(event->header)) / sizeof(u64)) - 1;
2129 if (type & PERF_SAMPLE_IDENTIFIER) {
2130 sample->id = *array;
2134 if (type & PERF_SAMPLE_CPU) {
2137 /* undo swap of u64, then swap on individual u32s */
2138 u.val64 = bswap_64(u.val64);
2139 u.val32[0] = bswap_32(u.val32[0]);
2142 sample->cpu = u.val32[0];
2146 if (type & PERF_SAMPLE_STREAM_ID) {
2147 sample->stream_id = *array;
2151 if (type & PERF_SAMPLE_ID) {
2152 sample->id = *array;
2156 if (type & PERF_SAMPLE_TIME) {
2157 sample->time = *array;
2161 if (type & PERF_SAMPLE_TID) {
2164 /* undo swap of u64, then swap on individual u32s */
2165 u.val64 = bswap_64(u.val64);
2166 u.val32[0] = bswap_32(u.val32[0]);
2167 u.val32[1] = bswap_32(u.val32[1]);
2170 sample->pid = u.val32[0];
2171 sample->tid = u.val32[1];
2178 static inline bool overflow(const void *endp, u16 max_size, const void *offset,
2181 return size > max_size || offset + size > endp;
2184 #define OVERFLOW_CHECK(offset, size, max_size) \
2186 if (overflow(endp, (max_size), (offset), (size))) \
2190 #define OVERFLOW_CHECK_u64(offset) \
2191 OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
2194 perf_event__check_size(union perf_event *event, unsigned int sample_size)
2197 * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
2198 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
2199 * check the format does not go past the end of the event.
2201 if (sample_size + sizeof(event->header) > event->header.size)
2207 void __weak arch_perf_parse_sample_weight(struct perf_sample *data,
2209 u64 type __maybe_unused)
2211 data->weight = *array;
2214 int evsel__parse_sample(struct evsel *evsel, union perf_event *event,
2215 struct perf_sample *data)
2217 u64 type = evsel->core.attr.sample_type;
2218 bool swapped = evsel->needs_swap;
2220 u16 max_size = event->header.size;
2221 const void *endp = (void *)event + max_size;
2225 * used for cross-endian analysis. See git commit 65014ab3
2226 * for why this goofiness is needed.
2230 memset(data, 0, sizeof(*data));
2231 data->cpu = data->pid = data->tid = -1;
2232 data->stream_id = data->id = data->time = -1ULL;
2233 data->period = evsel->core.attr.sample_period;
2234 data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
2235 data->misc = event->header.misc;
2237 data->data_src = PERF_MEM_DATA_SRC_NONE;
2239 if (event->header.type != PERF_RECORD_SAMPLE) {
2240 if (!evsel->core.attr.sample_id_all)
2242 return perf_evsel__parse_id_sample(evsel, event, data);
2245 array = event->sample.array;
2247 if (perf_event__check_size(event, evsel->sample_size))
2250 if (type & PERF_SAMPLE_IDENTIFIER) {
2255 if (type & PERF_SAMPLE_IP) {
2260 if (type & PERF_SAMPLE_TID) {
2263 /* undo swap of u64, then swap on individual u32s */
2264 u.val64 = bswap_64(u.val64);
2265 u.val32[0] = bswap_32(u.val32[0]);
2266 u.val32[1] = bswap_32(u.val32[1]);
2269 data->pid = u.val32[0];
2270 data->tid = u.val32[1];
2274 if (type & PERF_SAMPLE_TIME) {
2275 data->time = *array;
2279 if (type & PERF_SAMPLE_ADDR) {
2280 data->addr = *array;
2284 if (type & PERF_SAMPLE_ID) {
2289 if (type & PERF_SAMPLE_STREAM_ID) {
2290 data->stream_id = *array;
2294 if (type & PERF_SAMPLE_CPU) {
2298 /* undo swap of u64, then swap on individual u32s */
2299 u.val64 = bswap_64(u.val64);
2300 u.val32[0] = bswap_32(u.val32[0]);
2303 data->cpu = u.val32[0];
2307 if (type & PERF_SAMPLE_PERIOD) {
2308 data->period = *array;
2312 if (type & PERF_SAMPLE_READ) {
2313 u64 read_format = evsel->core.attr.read_format;
2315 OVERFLOW_CHECK_u64(array);
2316 if (read_format & PERF_FORMAT_GROUP)
2317 data->read.group.nr = *array;
2319 data->read.one.value = *array;
2323 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2324 OVERFLOW_CHECK_u64(array);
2325 data->read.time_enabled = *array;
2329 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2330 OVERFLOW_CHECK_u64(array);
2331 data->read.time_running = *array;
2335 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2336 if (read_format & PERF_FORMAT_GROUP) {
2337 const u64 max_group_nr = UINT64_MAX /
2338 sizeof(struct sample_read_value);
2340 if (data->read.group.nr > max_group_nr)
2342 sz = data->read.group.nr *
2343 sizeof(struct sample_read_value);
2344 OVERFLOW_CHECK(array, sz, max_size);
2345 data->read.group.values =
2346 (struct sample_read_value *)array;
2347 array = (void *)array + sz;
2349 OVERFLOW_CHECK_u64(array);
2350 data->read.one.id = *array;
2355 if (type & PERF_SAMPLE_CALLCHAIN) {
2356 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
2358 OVERFLOW_CHECK_u64(array);
2359 data->callchain = (struct ip_callchain *)array++;
2360 if (data->callchain->nr > max_callchain_nr)
2362 sz = data->callchain->nr * sizeof(u64);
2363 OVERFLOW_CHECK(array, sz, max_size);
2364 array = (void *)array + sz;
2367 if (type & PERF_SAMPLE_RAW) {
2368 OVERFLOW_CHECK_u64(array);
2372 * Undo swap of u64, then swap on individual u32s,
2373 * get the size of the raw area and undo all of the
2374 * swap. The pevent interface handles endianness by
2378 u.val64 = bswap_64(u.val64);
2379 u.val32[0] = bswap_32(u.val32[0]);
2380 u.val32[1] = bswap_32(u.val32[1]);
2382 data->raw_size = u.val32[0];
2385 * The raw data is aligned on 64bits including the
2386 * u32 size, so it's safe to use mem_bswap_64.
2389 mem_bswap_64((void *) array, data->raw_size);
2391 array = (void *)array + sizeof(u32);
2393 OVERFLOW_CHECK(array, data->raw_size, max_size);
2394 data->raw_data = (void *)array;
2395 array = (void *)array + data->raw_size;
2398 if (type & PERF_SAMPLE_BRANCH_STACK) {
2399 const u64 max_branch_nr = UINT64_MAX /
2400 sizeof(struct branch_entry);
2402 OVERFLOW_CHECK_u64(array);
2403 data->branch_stack = (struct branch_stack *)array++;
2405 if (data->branch_stack->nr > max_branch_nr)
2408 sz = data->branch_stack->nr * sizeof(struct branch_entry);
2409 if (evsel__has_branch_hw_idx(evsel))
2412 data->no_hw_idx = true;
2413 OVERFLOW_CHECK(array, sz, max_size);
2414 array = (void *)array + sz;
2417 if (type & PERF_SAMPLE_REGS_USER) {
2418 OVERFLOW_CHECK_u64(array);
2419 data->user_regs.abi = *array;
2422 if (data->user_regs.abi) {
2423 u64 mask = evsel->core.attr.sample_regs_user;
2425 sz = hweight64(mask) * sizeof(u64);
2426 OVERFLOW_CHECK(array, sz, max_size);
2427 data->user_regs.mask = mask;
2428 data->user_regs.regs = (u64 *)array;
2429 array = (void *)array + sz;
2433 if (type & PERF_SAMPLE_STACK_USER) {
2434 OVERFLOW_CHECK_u64(array);
2437 data->user_stack.offset = ((char *)(array - 1)
2441 data->user_stack.size = 0;
2443 OVERFLOW_CHECK(array, sz, max_size);
2444 data->user_stack.data = (char *)array;
2445 array = (void *)array + sz;
2446 OVERFLOW_CHECK_u64(array);
2447 data->user_stack.size = *array++;
2448 if (WARN_ONCE(data->user_stack.size > sz,
2449 "user stack dump failure\n"))
2454 if (type & PERF_SAMPLE_WEIGHT_TYPE) {
2455 OVERFLOW_CHECK_u64(array);
2456 arch_perf_parse_sample_weight(data, array, type);
2460 if (type & PERF_SAMPLE_DATA_SRC) {
2461 OVERFLOW_CHECK_u64(array);
2462 data->data_src = *array;
2466 if (type & PERF_SAMPLE_TRANSACTION) {
2467 OVERFLOW_CHECK_u64(array);
2468 data->transaction = *array;
2472 data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2473 if (type & PERF_SAMPLE_REGS_INTR) {
2474 OVERFLOW_CHECK_u64(array);
2475 data->intr_regs.abi = *array;
2478 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2479 u64 mask = evsel->core.attr.sample_regs_intr;
2481 sz = hweight64(mask) * sizeof(u64);
2482 OVERFLOW_CHECK(array, sz, max_size);
2483 data->intr_regs.mask = mask;
2484 data->intr_regs.regs = (u64 *)array;
2485 array = (void *)array + sz;
2489 data->phys_addr = 0;
2490 if (type & PERF_SAMPLE_PHYS_ADDR) {
2491 data->phys_addr = *array;
2496 if (type & PERF_SAMPLE_CGROUP) {
2497 data->cgroup = *array;
2501 data->data_page_size = 0;
2502 if (type & PERF_SAMPLE_DATA_PAGE_SIZE) {
2503 data->data_page_size = *array;
2507 data->code_page_size = 0;
2508 if (type & PERF_SAMPLE_CODE_PAGE_SIZE) {
2509 data->code_page_size = *array;
2513 if (type & PERF_SAMPLE_AUX) {
2514 OVERFLOW_CHECK_u64(array);
2517 OVERFLOW_CHECK(array, sz, max_size);
2518 /* Undo swap of data */
2520 mem_bswap_64((char *)array, sz);
2521 data->aux_sample.size = sz;
2522 data->aux_sample.data = (char *)array;
2523 array = (void *)array + sz;
2529 int evsel__parse_sample_timestamp(struct evsel *evsel, union perf_event *event,
2532 u64 type = evsel->core.attr.sample_type;
2535 if (!(type & PERF_SAMPLE_TIME))
2538 if (event->header.type != PERF_RECORD_SAMPLE) {
2539 struct perf_sample data = {
2543 if (!evsel->core.attr.sample_id_all)
2545 if (perf_evsel__parse_id_sample(evsel, event, &data))
2548 *timestamp = data.time;
2552 array = event->sample.array;
2554 if (perf_event__check_size(event, evsel->sample_size))
2557 if (type & PERF_SAMPLE_IDENTIFIER)
2560 if (type & PERF_SAMPLE_IP)
2563 if (type & PERF_SAMPLE_TID)
2566 if (type & PERF_SAMPLE_TIME)
2567 *timestamp = *array;
2572 struct tep_format_field *evsel__field(struct evsel *evsel, const char *name)
2574 return tep_find_field(evsel->tp_format, name);
2577 void *evsel__rawptr(struct evsel *evsel, struct perf_sample *sample, const char *name)
2579 struct tep_format_field *field = evsel__field(evsel, name);
2585 offset = field->offset;
2587 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
2588 offset = *(int *)(sample->raw_data + field->offset);
2592 return sample->raw_data + offset;
2595 u64 format_field__intval(struct tep_format_field *field, struct perf_sample *sample,
2599 void *ptr = sample->raw_data + field->offset;
2601 switch (field->size) {
2605 value = *(u16 *)ptr;
2608 value = *(u32 *)ptr;
2611 memcpy(&value, ptr, sizeof(u64));
2620 switch (field->size) {
2622 return bswap_16(value);
2624 return bswap_32(value);
2626 return bswap_64(value);
2634 u64 evsel__intval(struct evsel *evsel, struct perf_sample *sample, const char *name)
2636 struct tep_format_field *field = evsel__field(evsel, name);
2641 return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2644 bool evsel__fallback(struct evsel *evsel, int err, char *msg, size_t msgsize)
2648 if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
2649 evsel->core.attr.type == PERF_TYPE_HARDWARE &&
2650 evsel->core.attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2652 * If it's cycles then fall back to hrtimer based
2653 * cpu-clock-tick sw counter, which is always available even if
2656 * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2659 scnprintf(msg, msgsize, "%s",
2660 "The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2662 evsel->core.attr.type = PERF_TYPE_SOFTWARE;
2663 evsel->core.attr.config = PERF_COUNT_SW_CPU_CLOCK;
2665 zfree(&evsel->name);
2667 } else if (err == EACCES && !evsel->core.attr.exclude_kernel &&
2668 (paranoid = perf_event_paranoid()) > 1) {
2669 const char *name = evsel__name(evsel);
2671 const char *sep = ":";
2673 /* If event has exclude user then don't exclude kernel. */
2674 if (evsel->core.attr.exclude_user)
2677 /* Is there already the separator in the name. */
2678 if (strchr(name, '/') ||
2679 (strchr(name, ':') && !evsel->is_libpfm_event))
2682 if (asprintf(&new_name, "%s%su", name, sep) < 0)
2687 evsel->name = new_name;
2688 scnprintf(msg, msgsize, "kernel.perf_event_paranoid=%d, trying "
2689 "to fall back to excluding kernel and hypervisor "
2690 " samples", paranoid);
2691 evsel->core.attr.exclude_kernel = 1;
2692 evsel->core.attr.exclude_hv = 1;
2700 static bool find_process(const char *name)
2702 size_t len = strlen(name);
2707 dir = opendir(procfs__mountpoint());
2711 /* Walk through the directory. */
2712 while (ret && (d = readdir(dir)) != NULL) {
2713 char path[PATH_MAX];
2717 if ((d->d_type != DT_DIR) ||
2718 !strcmp(".", d->d_name) ||
2719 !strcmp("..", d->d_name))
2722 scnprintf(path, sizeof(path), "%s/%s/comm",
2723 procfs__mountpoint(), d->d_name);
2725 if (filename__read_str(path, &data, &size))
2728 ret = strncmp(name, data, len);
2733 return ret ? false : true;
2736 int evsel__open_strerror(struct evsel *evsel, struct target *target,
2737 int err, char *msg, size_t size)
2739 char sbuf[STRERR_BUFSIZE];
2740 int printed = 0, enforced = 0;
2745 printed += scnprintf(msg + printed, size - printed,
2746 "Access to performance monitoring and observability operations is limited.\n");
2748 if (!sysfs__read_int("fs/selinux/enforce", &enforced)) {
2750 printed += scnprintf(msg + printed, size - printed,
2751 "Enforced MAC policy settings (SELinux) can limit access to performance\n"
2752 "monitoring and observability operations. Inspect system audit records for\n"
2753 "more perf_event access control information and adjusting the policy.\n");
2758 printed += scnprintf(msg, size,
2759 "No permission to enable %s event.\n\n", evsel__name(evsel));
2761 return scnprintf(msg + printed, size - printed,
2762 "Consider adjusting /proc/sys/kernel/perf_event_paranoid setting to open\n"
2763 "access to performance monitoring and observability operations for processes\n"
2764 "without CAP_PERFMON, CAP_SYS_PTRACE or CAP_SYS_ADMIN Linux capability.\n"
2765 "More information can be found at 'Perf events and tool security' document:\n"
2766 "https://www.kernel.org/doc/html/latest/admin-guide/perf-security.html\n"
2767 "perf_event_paranoid setting is %d:\n"
2768 " -1: Allow use of (almost) all events by all users\n"
2769 " Ignore mlock limit after perf_event_mlock_kb without CAP_IPC_LOCK\n"
2770 ">= 0: Disallow raw and ftrace function tracepoint access\n"
2771 ">= 1: Disallow CPU event access\n"
2772 ">= 2: Disallow kernel profiling\n"
2773 "To make the adjusted perf_event_paranoid setting permanent preserve it\n"
2774 "in /etc/sysctl.conf (e.g. kernel.perf_event_paranoid = <setting>)",
2775 perf_event_paranoid());
2777 return scnprintf(msg, size, "The %s event is not supported.", evsel__name(evsel));
2779 return scnprintf(msg, size, "%s",
2780 "Too many events are opened.\n"
2781 "Probably the maximum number of open file descriptors has been reached.\n"
2782 "Hint: Try again after reducing the number of events.\n"
2783 "Hint: Try increasing the limit with 'ulimit -n <limit>'");
2785 if (evsel__has_callchain(evsel) &&
2786 access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2787 return scnprintf(msg, size,
2788 "Not enough memory to setup event with callchain.\n"
2789 "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2790 "Hint: Current value: %d", sysctl__max_stack());
2793 if (target->cpu_list)
2794 return scnprintf(msg, size, "%s",
2795 "No such device - did you specify an out-of-range profile CPU?");
2798 if (evsel->core.attr.aux_output)
2799 return scnprintf(msg, size,
2800 "%s: PMU Hardware doesn't support 'aux_output' feature",
2801 evsel__name(evsel));
2802 if (evsel->core.attr.sample_period != 0)
2803 return scnprintf(msg, size,
2804 "%s: PMU Hardware doesn't support sampling/overflow-interrupts. Try 'perf stat'",
2805 evsel__name(evsel));
2806 if (evsel->core.attr.precise_ip)
2807 return scnprintf(msg, size, "%s",
2808 "\'precise\' request may not be supported. Try removing 'p' modifier.");
2809 #if defined(__i386__) || defined(__x86_64__)
2810 if (evsel->core.attr.type == PERF_TYPE_HARDWARE)
2811 return scnprintf(msg, size, "%s",
2812 "No hardware sampling interrupt available.\n");
2816 if (find_process("oprofiled"))
2817 return scnprintf(msg, size,
2818 "The PMU counters are busy/taken by another profiler.\n"
2819 "We found oprofile daemon running, please stop it and try again.");
2822 if (evsel->core.attr.sample_type & PERF_SAMPLE_CODE_PAGE_SIZE && perf_missing_features.code_page_size)
2823 return scnprintf(msg, size, "Asking for the code page size isn't supported by this kernel.");
2824 if (evsel->core.attr.sample_type & PERF_SAMPLE_DATA_PAGE_SIZE && perf_missing_features.data_page_size)
2825 return scnprintf(msg, size, "Asking for the data page size isn't supported by this kernel.");
2826 if (evsel->core.attr.write_backward && perf_missing_features.write_backward)
2827 return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
2828 if (perf_missing_features.clockid)
2829 return scnprintf(msg, size, "clockid feature not supported.");
2830 if (perf_missing_features.clockid_wrong)
2831 return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2832 if (perf_missing_features.aux_output)
2833 return scnprintf(msg, size, "The 'aux_output' feature is not supported, update the kernel.");
2836 return scnprintf(msg, size, "Cannot collect data source with the load latency event alone. "
2837 "Please add an auxiliary event in front of the load latency event.");
2842 return scnprintf(msg, size,
2843 "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
2844 "/bin/dmesg | grep -i perf may provide additional information.\n",
2845 err, str_error_r(err, sbuf, sizeof(sbuf)), evsel__name(evsel));
2848 struct perf_env *evsel__env(struct evsel *evsel)
2850 if (evsel && evsel->evlist)
2851 return evsel->evlist->env;
2855 static int store_evsel_ids(struct evsel *evsel, struct evlist *evlist)
2859 for (cpu = 0; cpu < xyarray__max_x(evsel->core.fd); cpu++) {
2860 for (thread = 0; thread < xyarray__max_y(evsel->core.fd);
2862 int fd = FD(evsel, cpu, thread);
2864 if (perf_evlist__id_add_fd(&evlist->core, &evsel->core,
2865 cpu, thread, fd) < 0)
2873 int evsel__store_ids(struct evsel *evsel, struct evlist *evlist)
2875 struct perf_cpu_map *cpus = evsel->core.cpus;
2876 struct perf_thread_map *threads = evsel->core.threads;
2878 if (perf_evsel__alloc_id(&evsel->core, cpus->nr, threads->nr))
2881 return store_evsel_ids(evsel, evlist);
2884 void evsel__zero_per_pkg(struct evsel *evsel)
2886 struct hashmap_entry *cur;
2889 if (evsel->per_pkg_mask) {
2890 hashmap__for_each_entry(evsel->per_pkg_mask, cur, bkt)
2891 free((char *)cur->key);
2893 hashmap__clear(evsel->per_pkg_mask);
2897 bool evsel__is_hybrid(struct evsel *evsel)
2899 return evsel->pmu_name && perf_pmu__is_hybrid(evsel->pmu_name);
2902 struct evsel *evsel__leader(struct evsel *evsel)
2904 return container_of(evsel->core.leader, struct evsel, core);
2907 bool evsel__has_leader(struct evsel *evsel, struct evsel *leader)
2909 return evsel->core.leader == &leader->core;
2912 bool evsel__is_leader(struct evsel *evsel)
2914 return evsel__has_leader(evsel, evsel);
2917 void evsel__set_leader(struct evsel *evsel, struct evsel *leader)
2919 evsel->core.leader = &leader->core;