perf evsel: Add evsel__prepare_open()
[linux-2.6-microblaze.git] / tools / perf / util / evsel.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
4  *
5  * Parts came from builtin-{top,stat,record}.c, see those files for further
6  * copyright notes.
7  */
8
9 #include <byteswap.h>
10 #include <errno.h>
11 #include <inttypes.h>
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>
24 #include <dirent.h>
25 #include <stdlib.h>
26 #include <perf/evsel.h>
27 #include "asm/bug.h"
28 #include "bpf_counter.h"
29 #include "callchain.h"
30 #include "cgroup.h"
31 #include "counts.h"
32 #include "event.h"
33 #include "evsel.h"
34 #include "util/env.h"
35 #include "util/evsel_config.h"
36 #include "util/evsel_fprintf.h"
37 #include "evlist.h"
38 #include <perf/cpumap.h>
39 #include "thread_map.h"
40 #include "target.h"
41 #include "perf_regs.h"
42 #include "record.h"
43 #include "debug.h"
44 #include "trace-event.h"
45 #include "stat.h"
46 #include "string2.h"
47 #include "memswap.h"
48 #include "util.h"
49 #include "hashmap.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>
55
56 #include <linux/ctype.h>
57
58 struct perf_missing_features perf_missing_features;
59
60 static clockid_t clockid;
61
62 static int evsel__no_extra_init(struct evsel *evsel __maybe_unused)
63 {
64         return 0;
65 }
66
67 void __weak test_attr__ready(void) { }
68
69 static void evsel__no_extra_fini(struct evsel *evsel __maybe_unused)
70 {
71 }
72
73 static struct {
74         size_t  size;
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,
81 };
82
83 int evsel__object_config(size_t object_size, int (*init)(struct evsel *evsel),
84                          void (*fini)(struct evsel *evsel))
85 {
86
87         if (object_size == 0)
88                 goto set_methods;
89
90         if (perf_evsel__object.size > object_size)
91                 return -EINVAL;
92
93         perf_evsel__object.size = object_size;
94
95 set_methods:
96         if (init != NULL)
97                 perf_evsel__object.init = init;
98
99         if (fini != NULL)
100                 perf_evsel__object.fini = fini;
101
102         return 0;
103 }
104
105 #define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
106
107 int __evsel__sample_size(u64 sample_type)
108 {
109         u64 mask = sample_type & PERF_SAMPLE_MASK;
110         int size = 0;
111         int i;
112
113         for (i = 0; i < 64; i++) {
114                 if (mask & (1ULL << i))
115                         size++;
116         }
117
118         size *= sizeof(u64);
119
120         return size;
121 }
122
123 /**
124  * __perf_evsel__calc_id_pos - calculate id_pos.
125  * @sample_type: sample type
126  *
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.
130  */
131 static int __perf_evsel__calc_id_pos(u64 sample_type)
132 {
133         int idx = 0;
134
135         if (sample_type & PERF_SAMPLE_IDENTIFIER)
136                 return 0;
137
138         if (!(sample_type & PERF_SAMPLE_ID))
139                 return -1;
140
141         if (sample_type & PERF_SAMPLE_IP)
142                 idx += 1;
143
144         if (sample_type & PERF_SAMPLE_TID)
145                 idx += 1;
146
147         if (sample_type & PERF_SAMPLE_TIME)
148                 idx += 1;
149
150         if (sample_type & PERF_SAMPLE_ADDR)
151                 idx += 1;
152
153         return idx;
154 }
155
156 /**
157  * __perf_evsel__calc_is_pos - calculate is_pos.
158  * @sample_type: sample type
159  *
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.
163  */
164 static int __perf_evsel__calc_is_pos(u64 sample_type)
165 {
166         int idx = 1;
167
168         if (sample_type & PERF_SAMPLE_IDENTIFIER)
169                 return 1;
170
171         if (!(sample_type & PERF_SAMPLE_ID))
172                 return -1;
173
174         if (sample_type & PERF_SAMPLE_CPU)
175                 idx += 1;
176
177         if (sample_type & PERF_SAMPLE_STREAM_ID)
178                 idx += 1;
179
180         return idx;
181 }
182
183 void evsel__calc_id_pos(struct evsel *evsel)
184 {
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);
187 }
188
189 void __evsel__set_sample_bit(struct evsel *evsel,
190                                   enum perf_event_sample_format bit)
191 {
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);
196         }
197 }
198
199 void __evsel__reset_sample_bit(struct evsel *evsel,
200                                     enum perf_event_sample_format bit)
201 {
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);
206         }
207 }
208
209 void evsel__set_sample_id(struct evsel *evsel,
210                                bool can_sample_identifier)
211 {
212         if (can_sample_identifier) {
213                 evsel__reset_sample_bit(evsel, ID);
214                 evsel__set_sample_bit(evsel, IDENTIFIER);
215         } else {
216                 evsel__set_sample_bit(evsel, ID);
217         }
218         evsel->core.attr.read_format |= PERF_FORMAT_ID;
219 }
220
221 /**
222  * evsel__is_function_event - Return whether given evsel is a function
223  * trace event
224  *
225  * @evsel - evsel selector to be tested
226  *
227  * Return %true if event is function trace event
228  */
229 bool evsel__is_function_event(struct evsel *evsel)
230 {
231 #define FUNCTION_EVENT "ftrace:function"
232
233         return evsel->name &&
234                !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
235
236 #undef FUNCTION_EVENT
237 }
238
239 void evsel__init(struct evsel *evsel,
240                  struct perf_event_attr *attr, int idx)
241 {
242         perf_evsel__init(&evsel->core, attr, idx);
243         evsel->tracking    = !idx;
244         evsel->unit        = "";
245         evsel->scale       = 1.0;
246         evsel->max_events  = ULONG_MAX;
247         evsel->evlist      = NULL;
248         evsel->bpf_obj     = NULL;
249         evsel->bpf_fd      = -1;
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;
262 }
263
264 struct evsel *evsel__new_idx(struct perf_event_attr *attr, int idx)
265 {
266         struct evsel *evsel = zalloc(perf_evsel__object.size);
267
268         if (!evsel)
269                 return NULL;
270         evsel__init(evsel, attr, idx);
271
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;
276         }
277
278         if (evsel__is_clock(evsel)) {
279                 /*
280                  * The evsel->unit points to static alias->unit
281                  * so it's ok to use static string in here.
282                  */
283                 static const char *unit = "msec";
284
285                 evsel->unit = unit;
286                 evsel->scale = 1e-6;
287         }
288
289         return evsel;
290 }
291
292 static bool perf_event_can_profile_kernel(void)
293 {
294         return perf_event_paranoid_check(1);
295 }
296
297 struct evsel *evsel__new_cycles(bool precise, __u32 type, __u64 config)
298 {
299         struct perf_event_attr attr = {
300                 .type   = type,
301                 .config = config,
302                 .exclude_kernel = !perf_event_can_profile_kernel(),
303         };
304         struct evsel *evsel;
305
306         event_attr_init(&attr);
307
308         if (!precise)
309                 goto new_event;
310
311         /*
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.
314          */
315 new_event:
316         evsel = evsel__new(&attr);
317         if (evsel == NULL)
318                 goto out;
319
320         evsel->precise_max = true;
321
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)
327                 goto error_free;
328 out:
329         return evsel;
330 error_free:
331         evsel__delete(evsel);
332         evsel = NULL;
333         goto out;
334 }
335
336 static int evsel__copy_config_terms(struct evsel *dst, struct evsel *src)
337 {
338         struct evsel_config_term *pos, *tmp;
339
340         list_for_each_entry(pos, &src->config_terms, list) {
341                 tmp = malloc(sizeof(*tmp));
342                 if (tmp == NULL)
343                         return -ENOMEM;
344
345                 *tmp = *pos;
346                 if (tmp->free_str) {
347                         tmp->val.str = strdup(pos->val.str);
348                         if (tmp->val.str == NULL) {
349                                 free(tmp);
350                                 return -ENOMEM;
351                         }
352                 }
353                 list_add_tail(&tmp->list, &dst->config_terms);
354         }
355         return 0;
356 }
357
358 /**
359  * evsel__clone - create a new evsel copied from @orig
360  * @orig: original evsel
361  *
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.
364  */
365 struct evsel *evsel__clone(struct evsel *orig)
366 {
367         struct evsel *evsel;
368
369         BUG_ON(orig->core.fd);
370         BUG_ON(orig->counts);
371         BUG_ON(orig->priv);
372         BUG_ON(orig->per_pkg_mask);
373
374         /* cannot handle BPF objects for now */
375         if (orig->bpf_obj)
376                 return NULL;
377
378         evsel = evsel__new(&orig->core.attr);
379         if (evsel == NULL)
380                 return NULL;
381
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;
387
388         if (orig->name) {
389                 evsel->name = strdup(orig->name);
390                 if (evsel->name == NULL)
391                         goto out_err;
392         }
393         if (orig->group_name) {
394                 evsel->group_name = strdup(orig->group_name);
395                 if (evsel->group_name == NULL)
396                         goto out_err;
397         }
398         if (orig->pmu_name) {
399                 evsel->pmu_name = strdup(orig->pmu_name);
400                 if (evsel->pmu_name == NULL)
401                         goto out_err;
402         }
403         if (orig->filter) {
404                 evsel->filter = strdup(orig->filter);
405                 if (evsel->filter == NULL)
406                         goto out_err;
407         }
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;
412
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;
423
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;
430
431         if (evsel__copy_config_terms(evsel, orig) < 0)
432                 goto out_err;
433
434         return evsel;
435
436 out_err:
437         evsel__delete(evsel);
438         return NULL;
439 }
440
441 /*
442  * Returns pointer with encoded error via <linux/err.h> interface.
443  */
444 struct evsel *evsel__newtp_idx(const char *sys, const char *name, int idx)
445 {
446         struct evsel *evsel = zalloc(perf_evsel__object.size);
447         int err = -ENOMEM;
448
449         if (evsel == NULL) {
450                 goto out_err;
451         } else {
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),
456                 };
457
458                 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
459                         goto out_free;
460
461                 evsel->tp_format = trace_event__tp_format(sys, name);
462                 if (IS_ERR(evsel->tp_format)) {
463                         err = PTR_ERR(evsel->tp_format);
464                         goto out_free;
465                 }
466
467                 event_attr_init(&attr);
468                 attr.config = evsel->tp_format->id;
469                 attr.sample_period = 1;
470                 evsel__init(evsel, &attr, idx);
471         }
472
473         return evsel;
474
475 out_free:
476         zfree(&evsel->name);
477         free(evsel);
478 out_err:
479         return ERR_PTR(err);
480 }
481
482 const char *evsel__hw_names[PERF_COUNT_HW_MAX] = {
483         "cycles",
484         "instructions",
485         "cache-references",
486         "cache-misses",
487         "branches",
488         "branch-misses",
489         "bus-cycles",
490         "stalled-cycles-frontend",
491         "stalled-cycles-backend",
492         "ref-cycles",
493 };
494
495 char *evsel__bpf_counter_events;
496
497 bool evsel__match_bpf_counter_events(const char *name)
498 {
499         int name_len;
500         bool match;
501         char *ptr;
502
503         if (!evsel__bpf_counter_events)
504                 return false;
505
506         ptr = strstr(evsel__bpf_counter_events, name);
507         name_len = strlen(name);
508
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'));
513
514         return match;
515 }
516
517 static const char *__evsel__hw_name(u64 config)
518 {
519         if (config < PERF_COUNT_HW_MAX && evsel__hw_names[config])
520                 return evsel__hw_names[config];
521
522         return "unknown-hardware";
523 }
524
525 static int evsel__add_modifiers(struct evsel *evsel, char *bf, size_t size)
526 {
527         int colon = 0, r = 0;
528         struct perf_event_attr *attr = &evsel->core.attr;
529         bool exclude_guest_default = false;
530
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);    \
535                 } } while(0)
536
537         if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
538                 MOD_PRINT(kernel, 'k');
539                 MOD_PRINT(user, 'u');
540                 MOD_PRINT(hv, 'h');
541                 exclude_guest_default = true;
542         }
543
544         if (attr->precise_ip) {
545                 if (!colon)
546                         colon = ++r;
547                 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
548                 exclude_guest_default = true;
549         }
550
551         if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
552                 MOD_PRINT(host, 'H');
553                 MOD_PRINT(guest, 'G');
554         }
555 #undef MOD_PRINT
556         if (colon)
557                 bf[colon - 1] = ':';
558         return r;
559 }
560
561 static int evsel__hw_name(struct evsel *evsel, char *bf, size_t size)
562 {
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);
565 }
566
567 const char *evsel__sw_names[PERF_COUNT_SW_MAX] = {
568         "cpu-clock",
569         "task-clock",
570         "page-faults",
571         "context-switches",
572         "cpu-migrations",
573         "minor-faults",
574         "major-faults",
575         "alignment-faults",
576         "emulation-faults",
577         "dummy",
578 };
579
580 static const char *__evsel__sw_name(u64 config)
581 {
582         if (config < PERF_COUNT_SW_MAX && evsel__sw_names[config])
583                 return evsel__sw_names[config];
584         return "unknown-software";
585 }
586
587 static int evsel__sw_name(struct evsel *evsel, char *bf, size_t size)
588 {
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);
591 }
592
593 static int __evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
594 {
595         int r;
596
597         r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
598
599         if (type & HW_BREAKPOINT_R)
600                 r += scnprintf(bf + r, size - r, "r");
601
602         if (type & HW_BREAKPOINT_W)
603                 r += scnprintf(bf + r, size - r, "w");
604
605         if (type & HW_BREAKPOINT_X)
606                 r += scnprintf(bf + r, size - r, "x");
607
608         return r;
609 }
610
611 static int evsel__bp_name(struct evsel *evsel, char *bf, size_t size)
612 {
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);
616 }
617
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",       },
621  { "LLC",       "L2",                                                   },
622  { "dTLB",      "d-tlb",        "Data-TLB",                             },
623  { "iTLB",      "i-tlb",        "Instruction-TLB",                      },
624  { "branch",    "branches",     "bpu",          "btb",          "bpc",  },
625  { "node",                                                              },
626 };
627
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", },
632 };
633
634 const char *evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX][EVSEL__MAX_ALIASES] = {
635  { "refs",      "Reference",    "ops",          "access",               },
636  { "misses",    "miss",                                                 },
637 };
638
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)
644
645 /*
646  * cache operation stat
647  * L1I : Read and prefetch only
648  * ITLB and BPU : Read-only
649  */
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),
658 };
659
660 bool evsel__is_cache_op_valid(u8 type, u8 op)
661 {
662         if (evsel__hw_cache_stat[type] & COP(op))
663                 return true;    /* valid */
664         else
665                 return false;   /* invalid */
666 }
667
668 int __evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result, char *bf, size_t size)
669 {
670         if (result) {
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]);
674         }
675
676         return scnprintf(bf, size, "%s-%s", evsel__hw_cache[type][0],
677                          evsel__hw_cache_op[op][1]);
678 }
679
680 static int __evsel__hw_cache_name(u64 config, char *bf, size_t size)
681 {
682         u8 op, result, type = (config >>  0) & 0xff;
683         const char *err = "unknown-ext-hardware-cache-type";
684
685         if (type >= PERF_COUNT_HW_CACHE_MAX)
686                 goto out_err;
687
688         op = (config >>  8) & 0xff;
689         err = "unknown-ext-hardware-cache-op";
690         if (op >= PERF_COUNT_HW_CACHE_OP_MAX)
691                 goto out_err;
692
693         result = (config >> 16) & 0xff;
694         err = "unknown-ext-hardware-cache-result";
695         if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
696                 goto out_err;
697
698         err = "invalid-cache";
699         if (!evsel__is_cache_op_valid(type, op))
700                 goto out_err;
701
702         return __evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
703 out_err:
704         return scnprintf(bf, size, "%s", err);
705 }
706
707 static int evsel__hw_cache_name(struct evsel *evsel, char *bf, size_t size)
708 {
709         int ret = __evsel__hw_cache_name(evsel->core.attr.config, bf, size);
710         return ret + evsel__add_modifiers(evsel, bf + ret, size - ret);
711 }
712
713 static int evsel__raw_name(struct evsel *evsel, char *bf, size_t size)
714 {
715         int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->core.attr.config);
716         return ret + evsel__add_modifiers(evsel, bf + ret, size - ret);
717 }
718
719 static int evsel__tool_name(char *bf, size_t size)
720 {
721         int ret = scnprintf(bf, size, "duration_time");
722         return ret;
723 }
724
725 const char *evsel__name(struct evsel *evsel)
726 {
727         char bf[128];
728
729         if (!evsel)
730                 goto out_unknown;
731
732         if (evsel->name)
733                 return evsel->name;
734
735         switch (evsel->core.attr.type) {
736         case PERF_TYPE_RAW:
737                 evsel__raw_name(evsel, bf, sizeof(bf));
738                 break;
739
740         case PERF_TYPE_HARDWARE:
741                 evsel__hw_name(evsel, bf, sizeof(bf));
742                 break;
743
744         case PERF_TYPE_HW_CACHE:
745                 evsel__hw_cache_name(evsel, bf, sizeof(bf));
746                 break;
747
748         case PERF_TYPE_SOFTWARE:
749                 if (evsel->tool_event)
750                         evsel__tool_name(bf, sizeof(bf));
751                 else
752                         evsel__sw_name(evsel, bf, sizeof(bf));
753                 break;
754
755         case PERF_TYPE_TRACEPOINT:
756                 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
757                 break;
758
759         case PERF_TYPE_BREAKPOINT:
760                 evsel__bp_name(evsel, bf, sizeof(bf));
761                 break;
762
763         default:
764                 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
765                           evsel->core.attr.type);
766                 break;
767         }
768
769         evsel->name = strdup(bf);
770
771         if (evsel->name)
772                 return evsel->name;
773 out_unknown:
774         return "unknown";
775 }
776
777 const char *evsel__group_name(struct evsel *evsel)
778 {
779         return evsel->group_name ?: "anon group";
780 }
781
782 /*
783  * Returns the group details for the specified leader,
784  * with following rules.
785  *
786  *  For record -e '{cycles,instructions}'
787  *    'anon group { cycles:u, instructions:u }'
788  *
789  *  For record -e 'cycles,instructions' and report --group
790  *    'cycles:u, instructions:u'
791  */
792 int evsel__group_desc(struct evsel *evsel, char *buf, size_t size)
793 {
794         int ret = 0;
795         struct evsel *pos;
796         const char *group_name = evsel__group_name(evsel);
797
798         if (!evsel->forced_leader)
799                 ret = scnprintf(buf, size, "%s { ", group_name);
800
801         ret += scnprintf(buf + ret, size - ret, "%s", evsel__name(evsel));
802
803         for_each_group_member(pos, evsel)
804                 ret += scnprintf(buf + ret, size - ret, ", %s", evsel__name(pos));
805
806         if (!evsel->forced_leader)
807                 ret += scnprintf(buf + ret, size - ret, " }");
808
809         return ret;
810 }
811
812 static void __evsel__config_callchain(struct evsel *evsel, struct record_opts *opts,
813                                       struct callchain_param *param)
814 {
815         bool function = evsel__is_function_event(evsel);
816         struct perf_event_attr *attr = &evsel->core.attr;
817
818         evsel__set_sample_bit(evsel, CALLCHAIN);
819
820         attr->sample_max_stack = param->max_stack;
821
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");
832                         } else {
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;
839                         }
840                 } else
841                          pr_warning("Cannot use LBR callstack with branch stack. "
842                                     "Falling back to framepointers.\n");
843         }
844
845         if (param->record_mode == CALLCHAIN_DWARF) {
846                 if (!function) {
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");
854                         } else {
855                                 attr->sample_regs_user |= PERF_REGS_MASK;
856                         }
857                         attr->sample_stack_user = param->dump_size;
858                         attr->exclude_callchain_user = 1;
859                 } else {
860                         pr_info("Cannot use DWARF unwind for function trace event,"
861                                 " falling back to framepointers.\n");
862                 }
863         }
864
865         if (function) {
866                 pr_info("Disabling user space callchains for function trace event.\n");
867                 attr->exclude_callchain_user = 1;
868         }
869 }
870
871 void evsel__config_callchain(struct evsel *evsel, struct record_opts *opts,
872                              struct callchain_param *param)
873 {
874         if (param->enabled)
875                 return __evsel__config_callchain(evsel, opts, param);
876 }
877
878 static void evsel__reset_callgraph(struct evsel *evsel, struct callchain_param *param)
879 {
880         struct perf_event_attr *attr = &evsel->core.attr;
881
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);
888         }
889         if (param->record_mode == CALLCHAIN_DWARF) {
890                 evsel__reset_sample_bit(evsel, REGS_USER);
891                 evsel__reset_sample_bit(evsel, STACK_USER);
892         }
893 }
894
895 static void evsel__apply_config_terms(struct evsel *evsel,
896                                       struct record_opts *opts, bool track)
897 {
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,
904         };
905         u32 dump_size = 0;
906         int max_stack = 0;
907         const char *callgraph_buf = NULL;
908
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;
914                                 attr->freq = 0;
915                                 evsel__reset_sample_bit(evsel, PERIOD);
916                         }
917                         break;
918                 case EVSEL__CONFIG_TERM_FREQ:
919                         if (!(term->weak && opts->user_freq != UINT_MAX)) {
920                                 attr->sample_freq = term->val.freq;
921                                 attr->freq = 1;
922                                 evsel__set_sample_bit(evsel, PERIOD);
923                         }
924                         break;
925                 case EVSEL__CONFIG_TERM_TIME:
926                         if (term->val.time)
927                                 evsel__set_sample_bit(evsel, TIME);
928                         else
929                                 evsel__reset_sample_bit(evsel, TIME);
930                         break;
931                 case EVSEL__CONFIG_TERM_CALLGRAPH:
932                         callgraph_buf = term->val.str;
933                         break;
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);
939                         } else
940                                 evsel__reset_sample_bit(evsel, BRANCH_STACK);
941                         break;
942                 case EVSEL__CONFIG_TERM_STACK_USER:
943                         dump_size = term->val.stack_user;
944                         break;
945                 case EVSEL__CONFIG_TERM_MAX_STACK:
946                         max_stack = term->val.max_stack;
947                         break;
948                 case EVSEL__CONFIG_TERM_MAX_EVENTS:
949                         evsel->max_events = term->val.max_events;
950                         break;
951                 case EVSEL__CONFIG_TERM_INHERIT:
952                         /*
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.
957                          */
958                         attr->inherit = term->val.inherit ? 1 : 0;
959                         break;
960                 case EVSEL__CONFIG_TERM_OVERWRITE:
961                         attr->write_backward = term->val.overwrite ? 1 : 0;
962                         break;
963                 case EVSEL__CONFIG_TERM_DRV_CFG:
964                         break;
965                 case EVSEL__CONFIG_TERM_PERCORE:
966                         break;
967                 case EVSEL__CONFIG_TERM_AUX_OUTPUT:
968                         attr->aux_output = term->val.aux_output ? 1 : 0;
969                         break;
970                 case EVSEL__CONFIG_TERM_AUX_SAMPLE_SIZE:
971                         /* Already applied by auxtrace */
972                         break;
973                 case EVSEL__CONFIG_TERM_CFG_CHG:
974                         break;
975                 default:
976                         break;
977                 }
978         }
979
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;
983
984                 if (max_stack) {
985                         param.max_stack = max_stack;
986                         if (callgraph_buf == NULL)
987                                 callgraph_buf = "fp";
988                 }
989
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;
995                         } else {
996                                 param.enabled = true;
997                                 if (parse_callchain_record(callgraph_buf, &param)) {
998                                         pr_err("per-event callgraph setting for %s failed. "
999                                                "Apply callgraph global setting for it\n",
1000                                                evsel->name);
1001                                         return;
1002                                 }
1003                                 if (param.record_mode == CALLCHAIN_DWARF)
1004                                         sample_address = true;
1005                         }
1006                 }
1007                 if (dump_size > 0) {
1008                         dump_size = round_up(dump_size, sizeof(u64));
1009                         param.dump_size = dump_size;
1010                 }
1011
1012                 /* If global callgraph set, clear it */
1013                 if (callchain_param.enabled)
1014                         evsel__reset_callgraph(evsel, &callchain_param);
1015
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;
1022                         }
1023                         evsel__config_callchain(evsel, opts, &param);
1024                 }
1025         }
1026 }
1027
1028 struct evsel_config_term *__evsel__get_config_term(struct evsel *evsel, enum evsel_term_type type)
1029 {
1030         struct evsel_config_term *term, *found_term = NULL;
1031
1032         list_for_each_entry(term, &evsel->config_terms, list) {
1033                 if (term->type == type)
1034                         found_term = term;
1035         }
1036
1037         return found_term;
1038 }
1039
1040 void __weak arch_evsel__set_sample_weight(struct evsel *evsel)
1041 {
1042         evsel__set_sample_bit(evsel, WEIGHT);
1043 }
1044
1045 /*
1046  * The enable_on_exec/disabled value strategy:
1047  *
1048  *  1) For any type of traced program:
1049  *    - all independent events and group leaders are disabled
1050  *    - all group members are enabled
1051  *
1052  *     Group members are ruled by group leaders. They need to
1053  *     be enabled, because the group scheduling relies on that.
1054  *
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
1060  *
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).
1064  *
1065  *  3) For traced programs attached by perf (pid/tid):
1066  *     - we specifically enable or disable all events during
1067  *       the record command
1068  *
1069  *     When attaching events to already running traced we
1070  *     enable/disable events specifically, as there's no
1071  *     initial traced exec call.
1072  */
1073 void evsel__config(struct evsel *evsel, struct record_opts *opts,
1074                    struct callchain_param *callchain)
1075 {
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;
1080
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;
1084
1085         evsel__set_sample_bit(evsel, IP);
1086         evsel__set_sample_bit(evsel, TID);
1087
1088         if (evsel->sample_read) {
1089                 evsel__set_sample_bit(evsel, READ);
1090
1091                 /*
1092                  * We need ID even in case of single event, because
1093                  * PERF_SAMPLE_READ process ID specific data.
1094                  */
1095                 evsel__set_sample_id(evsel, false);
1096
1097                 /*
1098                  * Apply group format only if we belong to group
1099                  * with more than one members.
1100                  */
1101                 if (leader->core.nr_members > 1) {
1102                         attr->read_format |= PERF_FORMAT_GROUP;
1103                         attr->inherit = 0;
1104                 }
1105         }
1106
1107         /*
1108          * We default some events to have a default interval. But keep
1109          * it a weak assumption overridable by the user.
1110          */
1111         if (!attr->sample_period) {
1112                 if (opts->freq) {
1113                         attr->freq              = 1;
1114                         attr->sample_freq       = opts->freq;
1115                 } else {
1116                         attr->sample_period = opts->default_interval;
1117                 }
1118         }
1119         /*
1120          * If attr->freq was set (here or earlier), ask for period
1121          * to be sampled.
1122          */
1123         if (attr->freq)
1124                 evsel__set_sample_bit(evsel, PERIOD);
1125
1126         if (opts->no_samples)
1127                 attr->sample_freq = 0;
1128
1129         if (opts->inherit_stat) {
1130                 evsel->core.attr.read_format |=
1131                         PERF_FORMAT_TOTAL_TIME_ENABLED |
1132                         PERF_FORMAT_TOTAL_TIME_RUNNING |
1133                         PERF_FORMAT_ID;
1134                 attr->inherit_stat = 1;
1135         }
1136
1137         if (opts->sample_address) {
1138                 evsel__set_sample_bit(evsel, ADDR);
1139                 attr->mmap_data = track;
1140         }
1141
1142         /*
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.
1146          */
1147         if (evsel__is_function_event(evsel))
1148                 evsel->core.attr.exclude_callchain_user = 1;
1149
1150         if (callchain && callchain->enabled && !evsel->no_aux_samples)
1151                 evsel__config_callchain(evsel, opts, callchain);
1152
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);
1157         }
1158
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);
1163         }
1164
1165         if (target__has_cpu(&opts->target) || opts->sample_cpu)
1166                 evsel__set_sample_bit(evsel, CPU);
1167
1168         /*
1169          * When the user explicitly disabled time don't force it here.
1170          */
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);
1176
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);
1181         }
1182
1183         if (opts->sample_address)
1184                 evsel__set_sample_bit(evsel, DATA_SRC);
1185
1186         if (opts->sample_phys_addr)
1187                 evsel__set_sample_bit(evsel, PHYS_ADDR);
1188
1189         if (opts->no_buffering) {
1190                 attr->watermark = 0;
1191                 attr->wakeup_events = 1;
1192         }
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;
1196         }
1197
1198         if (opts->sample_weight)
1199                 arch_evsel__set_sample_weight(evsel);
1200
1201         attr->task     = track;
1202         attr->mmap     = track;
1203         attr->mmap2    = track && !perf_missing_features.mmap2;
1204         attr->comm     = track;
1205         attr->build_id = track && opts->build_id;
1206
1207         /*
1208          * ksymbol is tracked separately with text poke because it needs to be
1209          * system wide and enabled immediately.
1210          */
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;
1214
1215         if (opts->record_namespaces)
1216                 attr->namespaces  = track;
1217
1218         if (opts->record_cgroup) {
1219                 attr->cgroup = track && !perf_missing_features.cgroup;
1220                 evsel__set_sample_bit(evsel, CGROUP);
1221         }
1222
1223         if (opts->sample_data_page_size)
1224                 evsel__set_sample_bit(evsel, DATA_PAGE_SIZE);
1225
1226         if (opts->sample_code_page_size)
1227                 evsel__set_sample_bit(evsel, CODE_PAGE_SIZE);
1228
1229         if (opts->record_switch_events)
1230                 attr->context_switch = track;
1231
1232         if (opts->sample_transaction)
1233                 evsel__set_sample_bit(evsel, TRANSACTION);
1234
1235         if (opts->running_time) {
1236                 evsel->core.attr.read_format |=
1237                         PERF_FORMAT_TOTAL_TIME_ENABLED |
1238                         PERF_FORMAT_TOTAL_TIME_RUNNING;
1239         }
1240
1241         /*
1242          * XXX see the function comment above
1243          *
1244          * Disabling only independent events or group leaders,
1245          * keeping group members enabled.
1246          */
1247         if (evsel__is_group_leader(evsel))
1248                 attr->disabled = 1;
1249
1250         /*
1251          * Setting enable_on_exec for independent events and
1252          * group leaders for traced executed by perf.
1253          */
1254         if (target__none(&opts->target) && evsel__is_group_leader(evsel) &&
1255             !opts->initial_delay)
1256                 attr->enable_on_exec = 1;
1257
1258         if (evsel->immediate) {
1259                 attr->disabled = 0;
1260                 attr->enable_on_exec = 0;
1261         }
1262
1263         clockid = opts->clockid;
1264         if (opts->use_clockid) {
1265                 attr->use_clockid = 1;
1266                 attr->clockid = opts->clockid;
1267         }
1268
1269         if (evsel->precise_max)
1270                 attr->precise_ip = 3;
1271
1272         if (opts->all_user) {
1273                 attr->exclude_kernel = 1;
1274                 attr->exclude_user   = 0;
1275         }
1276
1277         if (opts->all_kernel) {
1278                 attr->exclude_kernel = 0;
1279                 attr->exclude_user   = 1;
1280         }
1281
1282         if (evsel->core.own_cpus || evsel->unit)
1283                 evsel->core.attr.read_format |= PERF_FORMAT_ID;
1284
1285         /*
1286          * Apply event specific term settings,
1287          * it overloads any global configuration.
1288          */
1289         evsel__apply_config_terms(evsel, opts, track);
1290
1291         evsel->ignore_missing_thread = opts->ignore_missing_thread;
1292
1293         /* The --period option takes the precedence. */
1294         if (opts->period_set) {
1295                 if (opts->period)
1296                         evsel__set_sample_bit(evsel, PERIOD);
1297                 else
1298                         evsel__reset_sample_bit(evsel, PERIOD);
1299         }
1300
1301         /*
1302          * A dummy event never triggers any actual counter and therefore
1303          * cannot be used with branch_stack.
1304          *
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.
1308          */
1309         if (evsel__is_dummy_event(evsel))
1310                 evsel__reset_sample_bit(evsel, BRANCH_STACK);
1311 }
1312
1313 int evsel__set_filter(struct evsel *evsel, const char *filter)
1314 {
1315         char *new_filter = strdup(filter);
1316
1317         if (new_filter != NULL) {
1318                 free(evsel->filter);
1319                 evsel->filter = new_filter;
1320                 return 0;
1321         }
1322
1323         return -1;
1324 }
1325
1326 static int evsel__append_filter(struct evsel *evsel, const char *fmt, const char *filter)
1327 {
1328         char *new_filter;
1329
1330         if (evsel->filter == NULL)
1331                 return evsel__set_filter(evsel, filter);
1332
1333         if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) {
1334                 free(evsel->filter);
1335                 evsel->filter = new_filter;
1336                 return 0;
1337         }
1338
1339         return -1;
1340 }
1341
1342 int evsel__append_tp_filter(struct evsel *evsel, const char *filter)
1343 {
1344         return evsel__append_filter(evsel, "(%s) && (%s)", filter);
1345 }
1346
1347 int evsel__append_addr_filter(struct evsel *evsel, const char *filter)
1348 {
1349         return evsel__append_filter(evsel, "%s,%s", filter);
1350 }
1351
1352 /* Caller has to clear disabled after going through all CPUs. */
1353 int evsel__enable_cpu(struct evsel *evsel, int cpu)
1354 {
1355         return perf_evsel__enable_cpu(&evsel->core, cpu);
1356 }
1357
1358 int evsel__enable(struct evsel *evsel)
1359 {
1360         int err = perf_evsel__enable(&evsel->core);
1361
1362         if (!err)
1363                 evsel->disabled = false;
1364         return err;
1365 }
1366
1367 /* Caller has to set disabled after going through all CPUs. */
1368 int evsel__disable_cpu(struct evsel *evsel, int cpu)
1369 {
1370         return perf_evsel__disable_cpu(&evsel->core, cpu);
1371 }
1372
1373 int evsel__disable(struct evsel *evsel)
1374 {
1375         int err = perf_evsel__disable(&evsel->core);
1376         /*
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
1380          * request.
1381          */
1382         if (!err)
1383                 evsel->disabled = true;
1384
1385         return err;
1386 }
1387
1388 static void evsel__free_config_terms(struct evsel *evsel)
1389 {
1390         struct evsel_config_term *term, *h;
1391
1392         list_for_each_entry_safe(term, h, &evsel->config_terms, list) {
1393                 list_del_init(&term->list);
1394                 if (term->free_str)
1395                         zfree(&term->val.str);
1396                 free(term);
1397         }
1398 }
1399
1400 void evsel__exit(struct evsel *evsel)
1401 {
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);
1421 }
1422
1423 void evsel__delete(struct evsel *evsel)
1424 {
1425         evsel__exit(evsel);
1426         free(evsel);
1427 }
1428
1429 void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
1430                            struct perf_counts_values *count)
1431 {
1432         struct perf_counts_values tmp;
1433
1434         if (!evsel->prev_raw_counts)
1435                 return;
1436
1437         if (cpu == -1) {
1438                 tmp = evsel->prev_raw_counts->aggr;
1439                 evsel->prev_raw_counts->aggr = *count;
1440         } else {
1441                 tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread);
1442                 *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count;
1443         }
1444
1445         count->val = count->val - tmp.val;
1446         count->ena = count->ena - tmp.ena;
1447         count->run = count->run - tmp.run;
1448 }
1449
1450 void perf_counts_values__scale(struct perf_counts_values *count,
1451                                bool scale, s8 *pscaled)
1452 {
1453         s8 scaled = 0;
1454
1455         if (scale) {
1456                 if (count->run == 0) {
1457                         scaled = -1;
1458                         count->val = 0;
1459                 } else if (count->run < count->ena) {
1460                         scaled = 1;
1461                         count->val = (u64)((double) count->val * count->ena / count->run);
1462                 }
1463         }
1464
1465         if (pscaled)
1466                 *pscaled = scaled;
1467 }
1468
1469 static int evsel__read_one(struct evsel *evsel, int cpu, int thread)
1470 {
1471         struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread);
1472
1473         return perf_evsel__read(&evsel->core, cpu, thread, count);
1474 }
1475
1476 static void evsel__set_count(struct evsel *counter, int cpu, int thread, u64 val, u64 ena, u64 run)
1477 {
1478         struct perf_counts_values *count;
1479
1480         count = perf_counts(counter->counts, cpu, thread);
1481
1482         count->val    = val;
1483         count->ena    = ena;
1484         count->run    = run;
1485
1486         perf_counts__set_loaded(counter->counts, cpu, thread, true);
1487 }
1488
1489 static int evsel__process_group_data(struct evsel *leader, int cpu, int thread, u64 *data)
1490 {
1491         u64 read_format = leader->core.attr.read_format;
1492         struct sample_read_value *v;
1493         u64 nr, ena = 0, run = 0, i;
1494
1495         nr = *data++;
1496
1497         if (nr != (u64) leader->core.nr_members)
1498                 return -EINVAL;
1499
1500         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1501                 ena = *data++;
1502
1503         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1504                 run = *data++;
1505
1506         v = (struct sample_read_value *) data;
1507
1508         evsel__set_count(leader, cpu, thread, v[0].value, ena, run);
1509
1510         for (i = 1; i < nr; i++) {
1511                 struct evsel *counter;
1512
1513                 counter = evlist__id2evsel(leader->evlist, v[i].id);
1514                 if (!counter)
1515                         return -EINVAL;
1516
1517                 evsel__set_count(counter, cpu, thread, v[i].value, ena, run);
1518         }
1519
1520         return 0;
1521 }
1522
1523 static int evsel__read_group(struct evsel *leader, int cpu, int thread)
1524 {
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;
1529
1530         if (!(read_format & PERF_FORMAT_ID))
1531                 return -EINVAL;
1532
1533         if (!evsel__is_group_leader(leader))
1534                 return -EINVAL;
1535
1536         if (!data) {
1537                 data = zalloc(size);
1538                 if (!data)
1539                         return -ENOMEM;
1540
1541                 ps->group_data = data;
1542         }
1543
1544         if (FD(leader, cpu, thread) < 0)
1545                 return -EINVAL;
1546
1547         if (readn(FD(leader, cpu, thread), data, size) <= 0)
1548                 return -errno;
1549
1550         return evsel__process_group_data(leader, cpu, thread, data);
1551 }
1552
1553 int evsel__read_counter(struct evsel *evsel, int cpu, int thread)
1554 {
1555         u64 read_format = evsel->core.attr.read_format;
1556
1557         if (read_format & PERF_FORMAT_GROUP)
1558                 return evsel__read_group(evsel, cpu, thread);
1559
1560         return evsel__read_one(evsel, cpu, thread);
1561 }
1562
1563 int __evsel__read_on_cpu(struct evsel *evsel, int cpu, int thread, bool scale)
1564 {
1565         struct perf_counts_values count;
1566         size_t nv = scale ? 3 : 1;
1567
1568         if (FD(evsel, cpu, thread) < 0)
1569                 return -EINVAL;
1570
1571         if (evsel->counts == NULL && evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0)
1572                 return -ENOMEM;
1573
1574         if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
1575                 return -errno;
1576
1577         evsel__compute_deltas(evsel, cpu, thread, &count);
1578         perf_counts_values__scale(&count, scale, NULL);
1579         *perf_counts(evsel->counts, cpu, thread) = count;
1580         return 0;
1581 }
1582
1583 static int evsel__match_other_cpu(struct evsel *evsel, struct evsel *other,
1584                                   int cpu)
1585 {
1586         int cpuid;
1587
1588         cpuid = perf_cpu_map__cpu(evsel->core.cpus, cpu);
1589         return perf_cpu_map__idx(other->core.cpus, cpuid);
1590 }
1591
1592 static int evsel__hybrid_group_cpu(struct evsel *evsel, int cpu)
1593 {
1594         struct evsel *leader = evsel__leader(evsel);
1595
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);
1599         }
1600
1601         return cpu;
1602 }
1603
1604 static int get_group_fd(struct evsel *evsel, int cpu, int thread)
1605 {
1606         struct evsel *leader = evsel__leader(evsel);
1607         int fd;
1608
1609         if (evsel__is_group_leader(evsel))
1610                 return -1;
1611
1612         /*
1613          * Leader must be already processed/open,
1614          * if not it's a bug.
1615          */
1616         BUG_ON(!leader->core.fd);
1617
1618         cpu = evsel__hybrid_group_cpu(evsel, cpu);
1619         if (cpu == -1)
1620                 return -1;
1621
1622         fd = FD(leader, cpu, thread);
1623         BUG_ON(fd == -1);
1624
1625         return fd;
1626 }
1627
1628 static void evsel__remove_fd(struct evsel *pos, int nr_cpus, int nr_threads, int thread_idx)
1629 {
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);
1633 }
1634
1635 static int update_fds(struct evsel *evsel,
1636                       int nr_cpus, int cpu_idx,
1637                       int nr_threads, int thread_idx)
1638 {
1639         struct evsel *pos;
1640
1641         if (cpu_idx >= nr_cpus || thread_idx >= nr_threads)
1642                 return -EINVAL;
1643
1644         evlist__for_each_entry(evsel->evlist, pos) {
1645                 nr_cpus = pos != evsel ? nr_cpus : cpu_idx;
1646
1647                 evsel__remove_fd(pos, nr_cpus, nr_threads, thread_idx);
1648
1649                 /*
1650                  * Since fds for next evsel has not been created,
1651                  * there is no need to iterate whole event list.
1652                  */
1653                 if (pos == evsel)
1654                         break;
1655         }
1656         return 0;
1657 }
1658
1659 static bool ignore_missing_thread(struct evsel *evsel,
1660                                   int nr_cpus, int cpu,
1661                                   struct perf_thread_map *threads,
1662                                   int thread, int err)
1663 {
1664         pid_t ignore_pid = perf_thread_map__pid(threads, thread);
1665
1666         if (!evsel->ignore_missing_thread)
1667                 return false;
1668
1669         /* The system wide setup does not work with threads. */
1670         if (evsel->core.system_wide)
1671                 return false;
1672
1673         /* The -ESRCH is perf event syscall errno for pid's not found. */
1674         if (err != -ESRCH)
1675                 return false;
1676
1677         /* If there's only one thread, let it fail. */
1678         if (threads->nr == 1)
1679                 return false;
1680
1681         /*
1682          * We should remove fd for missing_thread first
1683          * because thread_map__remove() will decrease threads->nr.
1684          */
1685         if (update_fds(evsel, nr_cpus, cpu, threads->nr, thread))
1686                 return false;
1687
1688         if (thread_map__remove(threads, thread))
1689                 return false;
1690
1691         pr_warning("WARNING: Ignored open failure for pid %d\n",
1692                    ignore_pid);
1693         return true;
1694 }
1695
1696 static int __open_attr__fprintf(FILE *fp, const char *name, const char *val,
1697                                 void *priv __maybe_unused)
1698 {
1699         return fprintf(fp, "  %-32s %s\n", name, val);
1700 }
1701
1702 static void display_attr(struct perf_event_attr *attr)
1703 {
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);
1709         }
1710 }
1711
1712 static int perf_event_open(struct evsel *evsel,
1713                            pid_t pid, int cpu, int group_fd)
1714 {
1715         int precise_ip = evsel->core.attr.precise_ip;
1716         int fd;
1717
1718         while (1) {
1719                 pr_debug2_peo("sys_perf_event_open: pid %d  cpu %d  group_fd %d  flags %#lx",
1720                           pid, cpu, group_fd, evsel->open_flags);
1721
1722                 fd = sys_perf_event_open(&evsel->core.attr, pid, cpu, group_fd, evsel->open_flags);
1723                 if (fd >= 0)
1724                         break;
1725
1726                 /* Do not try less precise if not requested. */
1727                 if (!evsel->precise_max)
1728                         break;
1729
1730                 /*
1731                  * We tried all the precise_ip values, and it's
1732                  * still failing, so leave it to standard fallback.
1733                  */
1734                 if (!evsel->core.attr.precise_ip) {
1735                         evsel->core.attr.precise_ip = precise_ip;
1736                         break;
1737                 }
1738
1739                 pr_debug2_peo("\nsys_perf_event_open failed, error %d\n", -ENOTSUP);
1740                 evsel->core.attr.precise_ip--;
1741                 pr_debug2_peo("decreasing precise_ip by one (%d)\n", evsel->core.attr.precise_ip);
1742                 display_attr(&evsel->core.attr);
1743         }
1744
1745         return fd;
1746 }
1747
1748
1749 static struct perf_cpu_map *empty_cpu_map;
1750 static struct perf_thread_map *empty_thread_map;
1751
1752 static int __evsel__prepare_open(struct evsel *evsel, struct perf_cpu_map *cpus,
1753                 struct perf_thread_map *threads)
1754 {
1755         int nthreads;
1756
1757         if ((perf_missing_features.write_backward && evsel->core.attr.write_backward) ||
1758             (perf_missing_features.aux_output     && evsel->core.attr.aux_output))
1759                 return -EINVAL;
1760
1761         if (cpus == NULL) {
1762                 if (empty_cpu_map == NULL) {
1763                         empty_cpu_map = perf_cpu_map__dummy_new();
1764                         if (empty_cpu_map == NULL)
1765                                 return -ENOMEM;
1766                 }
1767
1768                 cpus = empty_cpu_map;
1769         }
1770
1771         if (threads == NULL) {
1772                 if (empty_thread_map == NULL) {
1773                         empty_thread_map = thread_map__new_by_tid(-1);
1774                         if (empty_thread_map == NULL)
1775                                 return -ENOMEM;
1776                 }
1777
1778                 threads = empty_thread_map;
1779         }
1780
1781         if (evsel->core.system_wide)
1782                 nthreads = 1;
1783         else
1784                 nthreads = threads->nr;
1785
1786         if (evsel->core.fd == NULL &&
1787             perf_evsel__alloc_fd(&evsel->core, cpus->nr, nthreads) < 0)
1788                 return -ENOMEM;
1789
1790         evsel->open_flags = PERF_FLAG_FD_CLOEXEC;
1791         if (evsel->cgrp)
1792                 evsel->open_flags |= PERF_FLAG_PID_CGROUP;
1793
1794         return 0;
1795 }
1796
1797 static void evsel__disable_missing_features(struct evsel *evsel)
1798 {
1799         if (perf_missing_features.weight_struct) {
1800                 evsel__set_sample_bit(evsel, WEIGHT);
1801                 evsel__reset_sample_bit(evsel, WEIGHT_STRUCT);
1802         }
1803         if (perf_missing_features.clockid_wrong)
1804                 evsel->core.attr.clockid = CLOCK_MONOTONIC; /* should always work */
1805         if (perf_missing_features.clockid) {
1806                 evsel->core.attr.use_clockid = 0;
1807                 evsel->core.attr.clockid = 0;
1808         }
1809         if (perf_missing_features.cloexec)
1810                 evsel->open_flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC;
1811         if (perf_missing_features.mmap2)
1812                 evsel->core.attr.mmap2 = 0;
1813         if (perf_missing_features.exclude_guest)
1814                 evsel->core.attr.exclude_guest = evsel->core.attr.exclude_host = 0;
1815         if (perf_missing_features.lbr_flags)
1816                 evsel->core.attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS |
1817                                      PERF_SAMPLE_BRANCH_NO_CYCLES);
1818         if (perf_missing_features.group_read && evsel->core.attr.inherit)
1819                 evsel->core.attr.read_format &= ~(PERF_FORMAT_GROUP|PERF_FORMAT_ID);
1820         if (perf_missing_features.ksymbol)
1821                 evsel->core.attr.ksymbol = 0;
1822         if (perf_missing_features.bpf)
1823                 evsel->core.attr.bpf_event = 0;
1824         if (perf_missing_features.branch_hw_idx)
1825                 evsel->core.attr.branch_sample_type &= ~PERF_SAMPLE_BRANCH_HW_INDEX;
1826         if (perf_missing_features.sample_id_all)
1827                 evsel->core.attr.sample_id_all = 0;
1828 }
1829
1830 int evsel__prepare_open(struct evsel *evsel, struct perf_cpu_map *cpus,
1831                         struct perf_thread_map *threads)
1832 {
1833         int err;
1834
1835         err = __evsel__prepare_open(evsel, cpus, threads);
1836         if (err)
1837                 return err;
1838
1839         evsel__disable_missing_features(evsel);
1840
1841         return err;
1842 }
1843
1844 static int evsel__open_cpu(struct evsel *evsel, struct perf_cpu_map *cpus,
1845                 struct perf_thread_map *threads,
1846                 int start_cpu, int end_cpu)
1847 {
1848         int cpu, thread, nthreads;
1849         int pid = -1, err, old_errno;
1850         enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE;
1851
1852         err = __evsel__prepare_open(evsel, cpus, threads);
1853         if (err)
1854                 return err;
1855
1856         if (cpus == NULL)
1857                 cpus = empty_cpu_map;
1858
1859         if (threads == NULL)
1860                 threads = empty_thread_map;
1861
1862         if (evsel->core.system_wide)
1863                 nthreads = 1;
1864         else
1865                 nthreads = threads->nr;
1866
1867         if (evsel->cgrp)
1868                 pid = evsel->cgrp->fd;
1869
1870 fallback_missing_features:
1871         evsel__disable_missing_features(evsel);
1872
1873         display_attr(&evsel->core.attr);
1874
1875         for (cpu = start_cpu; cpu < end_cpu; cpu++) {
1876
1877                 for (thread = 0; thread < nthreads; thread++) {
1878                         int fd, group_fd;
1879
1880                         if (!evsel->cgrp && !evsel->core.system_wide)
1881                                 pid = perf_thread_map__pid(threads, thread);
1882
1883                         group_fd = get_group_fd(evsel, cpu, thread);
1884 retry_open:
1885                         test_attr__ready();
1886
1887                         fd = perf_event_open(evsel, pid, cpus->map[cpu],
1888                                              group_fd);
1889
1890                         FD(evsel, cpu, thread) = fd;
1891
1892                         bpf_counter__install_pe(evsel, cpu, fd);
1893
1894                         if (unlikely(test_attr__enabled)) {
1895                                 test_attr__open(&evsel->core.attr, pid, cpus->map[cpu],
1896                                                 fd, group_fd, evsel->open_flags);
1897                         }
1898
1899                         if (fd < 0) {
1900                                 err = -errno;
1901
1902                                 if (ignore_missing_thread(evsel, cpus->nr, cpu, threads, thread, err)) {
1903                                         /*
1904                                          * We just removed 1 thread, so take a step
1905                                          * back on thread index and lower the upper
1906                                          * nthreads limit.
1907                                          */
1908                                         nthreads--;
1909                                         thread--;
1910
1911                                         /* ... and pretend like nothing have happened. */
1912                                         err = 0;
1913                                         continue;
1914                                 }
1915
1916                                 pr_debug2_peo("\nsys_perf_event_open failed, error %d\n",
1917                                           err);
1918                                 goto try_fallback;
1919                         }
1920
1921                         pr_debug2_peo(" = %d\n", fd);
1922
1923                         if (evsel->bpf_fd >= 0) {
1924                                 int evt_fd = fd;
1925                                 int bpf_fd = evsel->bpf_fd;
1926
1927                                 err = ioctl(evt_fd,
1928                                             PERF_EVENT_IOC_SET_BPF,
1929                                             bpf_fd);
1930                                 if (err && errno != EEXIST) {
1931                                         pr_err("failed to attach bpf fd %d: %s\n",
1932                                                bpf_fd, strerror(errno));
1933                                         err = -EINVAL;
1934                                         goto out_close;
1935                                 }
1936                         }
1937
1938                         set_rlimit = NO_CHANGE;
1939
1940                         /*
1941                          * If we succeeded but had to kill clockid, fail and
1942                          * have evsel__open_strerror() print us a nice error.
1943                          */
1944                         if (perf_missing_features.clockid ||
1945                             perf_missing_features.clockid_wrong) {
1946                                 err = -EINVAL;
1947                                 goto out_close;
1948                         }
1949                 }
1950         }
1951
1952         return 0;
1953
1954 try_fallback:
1955         /*
1956          * perf stat needs between 5 and 22 fds per CPU. When we run out
1957          * of them try to increase the limits.
1958          */
1959         if (err == -EMFILE && set_rlimit < INCREASED_MAX) {
1960                 struct rlimit l;
1961
1962                 old_errno = errno;
1963                 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
1964                         if (set_rlimit == NO_CHANGE)
1965                                 l.rlim_cur = l.rlim_max;
1966                         else {
1967                                 l.rlim_cur = l.rlim_max + 1000;
1968                                 l.rlim_max = l.rlim_cur;
1969                         }
1970                         if (setrlimit(RLIMIT_NOFILE, &l) == 0) {
1971                                 set_rlimit++;
1972                                 errno = old_errno;
1973                                 goto retry_open;
1974                         }
1975                 }
1976                 errno = old_errno;
1977         }
1978
1979         if (err != -EINVAL || cpu > 0 || thread > 0)
1980                 goto out_close;
1981
1982         /*
1983          * Must probe features in the order they were added to the
1984          * perf_event_attr interface.
1985          */
1986         if (!perf_missing_features.weight_struct &&
1987             (evsel->core.attr.sample_type & PERF_SAMPLE_WEIGHT_STRUCT)) {
1988                 perf_missing_features.weight_struct = true;
1989                 pr_debug2("switching off weight struct support\n");
1990                 goto fallback_missing_features;
1991         } else if (!perf_missing_features.code_page_size &&
1992             (evsel->core.attr.sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)) {
1993                 perf_missing_features.code_page_size = true;
1994                 pr_debug2_peo("Kernel has no PERF_SAMPLE_CODE_PAGE_SIZE support, bailing out\n");
1995                 goto out_close;
1996         } else if (!perf_missing_features.data_page_size &&
1997             (evsel->core.attr.sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)) {
1998                 perf_missing_features.data_page_size = true;
1999                 pr_debug2_peo("Kernel has no PERF_SAMPLE_DATA_PAGE_SIZE support, bailing out\n");
2000                 goto out_close;
2001         } else if (!perf_missing_features.cgroup && evsel->core.attr.cgroup) {
2002                 perf_missing_features.cgroup = true;
2003                 pr_debug2_peo("Kernel has no cgroup sampling support, bailing out\n");
2004                 goto out_close;
2005         } else if (!perf_missing_features.branch_hw_idx &&
2006             (evsel->core.attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX)) {
2007                 perf_missing_features.branch_hw_idx = true;
2008                 pr_debug2("switching off branch HW index support\n");
2009                 goto fallback_missing_features;
2010         } else if (!perf_missing_features.aux_output && evsel->core.attr.aux_output) {
2011                 perf_missing_features.aux_output = true;
2012                 pr_debug2_peo("Kernel has no attr.aux_output support, bailing out\n");
2013                 goto out_close;
2014         } else if (!perf_missing_features.bpf && evsel->core.attr.bpf_event) {
2015                 perf_missing_features.bpf = true;
2016                 pr_debug2_peo("switching off bpf_event\n");
2017                 goto fallback_missing_features;
2018         } else if (!perf_missing_features.ksymbol && evsel->core.attr.ksymbol) {
2019                 perf_missing_features.ksymbol = true;
2020                 pr_debug2_peo("switching off ksymbol\n");
2021                 goto fallback_missing_features;
2022         } else if (!perf_missing_features.write_backward && evsel->core.attr.write_backward) {
2023                 perf_missing_features.write_backward = true;
2024                 pr_debug2_peo("switching off write_backward\n");
2025                 goto out_close;
2026         } else if (!perf_missing_features.clockid_wrong && evsel->core.attr.use_clockid) {
2027                 perf_missing_features.clockid_wrong = true;
2028                 pr_debug2_peo("switching off clockid\n");
2029                 goto fallback_missing_features;
2030         } else if (!perf_missing_features.clockid && evsel->core.attr.use_clockid) {
2031                 perf_missing_features.clockid = true;
2032                 pr_debug2_peo("switching off use_clockid\n");
2033                 goto fallback_missing_features;
2034         } else if (!perf_missing_features.cloexec && (evsel->open_flags & PERF_FLAG_FD_CLOEXEC)) {
2035                 perf_missing_features.cloexec = true;
2036                 pr_debug2_peo("switching off cloexec flag\n");
2037                 goto fallback_missing_features;
2038         } else if (!perf_missing_features.mmap2 && evsel->core.attr.mmap2) {
2039                 perf_missing_features.mmap2 = true;
2040                 pr_debug2_peo("switching off mmap2\n");
2041                 goto fallback_missing_features;
2042         } else if (!perf_missing_features.exclude_guest &&
2043                    (evsel->core.attr.exclude_guest || evsel->core.attr.exclude_host)) {
2044                 perf_missing_features.exclude_guest = true;
2045                 pr_debug2_peo("switching off exclude_guest, exclude_host\n");
2046                 goto fallback_missing_features;
2047         } else if (!perf_missing_features.sample_id_all) {
2048                 perf_missing_features.sample_id_all = true;
2049                 pr_debug2_peo("switching off sample_id_all\n");
2050                 goto fallback_missing_features;
2051         } else if (!perf_missing_features.lbr_flags &&
2052                         (evsel->core.attr.branch_sample_type &
2053                          (PERF_SAMPLE_BRANCH_NO_CYCLES |
2054                           PERF_SAMPLE_BRANCH_NO_FLAGS))) {
2055                 perf_missing_features.lbr_flags = true;
2056                 pr_debug2_peo("switching off branch sample type no (cycles/flags)\n");
2057                 goto fallback_missing_features;
2058         } else if (!perf_missing_features.group_read &&
2059                     evsel->core.attr.inherit &&
2060                    (evsel->core.attr.read_format & PERF_FORMAT_GROUP) &&
2061                    evsel__is_group_leader(evsel)) {
2062                 perf_missing_features.group_read = true;
2063                 pr_debug2_peo("switching off group read\n");
2064                 goto fallback_missing_features;
2065         }
2066 out_close:
2067         if (err)
2068                 threads->err_thread = thread;
2069
2070         old_errno = errno;
2071         do {
2072                 while (--thread >= 0) {
2073                         if (FD(evsel, cpu, thread) >= 0)
2074                                 close(FD(evsel, cpu, thread));
2075                         FD(evsel, cpu, thread) = -1;
2076                 }
2077                 thread = nthreads;
2078         } while (--cpu >= 0);
2079         errno = old_errno;
2080         return err;
2081 }
2082
2083 int evsel__open(struct evsel *evsel, struct perf_cpu_map *cpus,
2084                 struct perf_thread_map *threads)
2085 {
2086         return evsel__open_cpu(evsel, cpus, threads, 0, cpus ? cpus->nr : 1);
2087 }
2088
2089 void evsel__close(struct evsel *evsel)
2090 {
2091         perf_evsel__close(&evsel->core);
2092         perf_evsel__free_id(&evsel->core);
2093 }
2094
2095 int evsel__open_per_cpu(struct evsel *evsel, struct perf_cpu_map *cpus, int cpu)
2096 {
2097         if (cpu == -1)
2098                 return evsel__open_cpu(evsel, cpus, NULL, 0,
2099                                         cpus ? cpus->nr : 1);
2100
2101         return evsel__open_cpu(evsel, cpus, NULL, cpu, cpu + 1);
2102 }
2103
2104 int evsel__open_per_thread(struct evsel *evsel, struct perf_thread_map *threads)
2105 {
2106         return evsel__open(evsel, NULL, threads);
2107 }
2108
2109 static int perf_evsel__parse_id_sample(const struct evsel *evsel,
2110                                        const union perf_event *event,
2111                                        struct perf_sample *sample)
2112 {
2113         u64 type = evsel->core.attr.sample_type;
2114         const __u64 *array = event->sample.array;
2115         bool swapped = evsel->needs_swap;
2116         union u64_swap u;
2117
2118         array += ((event->header.size -
2119                    sizeof(event->header)) / sizeof(u64)) - 1;
2120
2121         if (type & PERF_SAMPLE_IDENTIFIER) {
2122                 sample->id = *array;
2123                 array--;
2124         }
2125
2126         if (type & PERF_SAMPLE_CPU) {
2127                 u.val64 = *array;
2128                 if (swapped) {
2129                         /* undo swap of u64, then swap on individual u32s */
2130                         u.val64 = bswap_64(u.val64);
2131                         u.val32[0] = bswap_32(u.val32[0]);
2132                 }
2133
2134                 sample->cpu = u.val32[0];
2135                 array--;
2136         }
2137
2138         if (type & PERF_SAMPLE_STREAM_ID) {
2139                 sample->stream_id = *array;
2140                 array--;
2141         }
2142
2143         if (type & PERF_SAMPLE_ID) {
2144                 sample->id = *array;
2145                 array--;
2146         }
2147
2148         if (type & PERF_SAMPLE_TIME) {
2149                 sample->time = *array;
2150                 array--;
2151         }
2152
2153         if (type & PERF_SAMPLE_TID) {
2154                 u.val64 = *array;
2155                 if (swapped) {
2156                         /* undo swap of u64, then swap on individual u32s */
2157                         u.val64 = bswap_64(u.val64);
2158                         u.val32[0] = bswap_32(u.val32[0]);
2159                         u.val32[1] = bswap_32(u.val32[1]);
2160                 }
2161
2162                 sample->pid = u.val32[0];
2163                 sample->tid = u.val32[1];
2164                 array--;
2165         }
2166
2167         return 0;
2168 }
2169
2170 static inline bool overflow(const void *endp, u16 max_size, const void *offset,
2171                             u64 size)
2172 {
2173         return size > max_size || offset + size > endp;
2174 }
2175
2176 #define OVERFLOW_CHECK(offset, size, max_size)                          \
2177         do {                                                            \
2178                 if (overflow(endp, (max_size), (offset), (size)))       \
2179                         return -EFAULT;                                 \
2180         } while (0)
2181
2182 #define OVERFLOW_CHECK_u64(offset) \
2183         OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64))
2184
2185 static int
2186 perf_event__check_size(union perf_event *event, unsigned int sample_size)
2187 {
2188         /*
2189          * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes
2190          * up to PERF_SAMPLE_PERIOD.  After that overflow() must be used to
2191          * check the format does not go past the end of the event.
2192          */
2193         if (sample_size + sizeof(event->header) > event->header.size)
2194                 return -EFAULT;
2195
2196         return 0;
2197 }
2198
2199 void __weak arch_perf_parse_sample_weight(struct perf_sample *data,
2200                                           const __u64 *array,
2201                                           u64 type __maybe_unused)
2202 {
2203         data->weight = *array;
2204 }
2205
2206 int evsel__parse_sample(struct evsel *evsel, union perf_event *event,
2207                         struct perf_sample *data)
2208 {
2209         u64 type = evsel->core.attr.sample_type;
2210         bool swapped = evsel->needs_swap;
2211         const __u64 *array;
2212         u16 max_size = event->header.size;
2213         const void *endp = (void *)event + max_size;
2214         u64 sz;
2215
2216         /*
2217          * used for cross-endian analysis. See git commit 65014ab3
2218          * for why this goofiness is needed.
2219          */
2220         union u64_swap u;
2221
2222         memset(data, 0, sizeof(*data));
2223         data->cpu = data->pid = data->tid = -1;
2224         data->stream_id = data->id = data->time = -1ULL;
2225         data->period = evsel->core.attr.sample_period;
2226         data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
2227         data->misc    = event->header.misc;
2228         data->id = -1ULL;
2229         data->data_src = PERF_MEM_DATA_SRC_NONE;
2230
2231         if (event->header.type != PERF_RECORD_SAMPLE) {
2232                 if (!evsel->core.attr.sample_id_all)
2233                         return 0;
2234                 return perf_evsel__parse_id_sample(evsel, event, data);
2235         }
2236
2237         array = event->sample.array;
2238
2239         if (perf_event__check_size(event, evsel->sample_size))
2240                 return -EFAULT;
2241
2242         if (type & PERF_SAMPLE_IDENTIFIER) {
2243                 data->id = *array;
2244                 array++;
2245         }
2246
2247         if (type & PERF_SAMPLE_IP) {
2248                 data->ip = *array;
2249                 array++;
2250         }
2251
2252         if (type & PERF_SAMPLE_TID) {
2253                 u.val64 = *array;
2254                 if (swapped) {
2255                         /* undo swap of u64, then swap on individual u32s */
2256                         u.val64 = bswap_64(u.val64);
2257                         u.val32[0] = bswap_32(u.val32[0]);
2258                         u.val32[1] = bswap_32(u.val32[1]);
2259                 }
2260
2261                 data->pid = u.val32[0];
2262                 data->tid = u.val32[1];
2263                 array++;
2264         }
2265
2266         if (type & PERF_SAMPLE_TIME) {
2267                 data->time = *array;
2268                 array++;
2269         }
2270
2271         if (type & PERF_SAMPLE_ADDR) {
2272                 data->addr = *array;
2273                 array++;
2274         }
2275
2276         if (type & PERF_SAMPLE_ID) {
2277                 data->id = *array;
2278                 array++;
2279         }
2280
2281         if (type & PERF_SAMPLE_STREAM_ID) {
2282                 data->stream_id = *array;
2283                 array++;
2284         }
2285
2286         if (type & PERF_SAMPLE_CPU) {
2287
2288                 u.val64 = *array;
2289                 if (swapped) {
2290                         /* undo swap of u64, then swap on individual u32s */
2291                         u.val64 = bswap_64(u.val64);
2292                         u.val32[0] = bswap_32(u.val32[0]);
2293                 }
2294
2295                 data->cpu = u.val32[0];
2296                 array++;
2297         }
2298
2299         if (type & PERF_SAMPLE_PERIOD) {
2300                 data->period = *array;
2301                 array++;
2302         }
2303
2304         if (type & PERF_SAMPLE_READ) {
2305                 u64 read_format = evsel->core.attr.read_format;
2306
2307                 OVERFLOW_CHECK_u64(array);
2308                 if (read_format & PERF_FORMAT_GROUP)
2309                         data->read.group.nr = *array;
2310                 else
2311                         data->read.one.value = *array;
2312
2313                 array++;
2314
2315                 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2316                         OVERFLOW_CHECK_u64(array);
2317                         data->read.time_enabled = *array;
2318                         array++;
2319                 }
2320
2321                 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2322                         OVERFLOW_CHECK_u64(array);
2323                         data->read.time_running = *array;
2324                         array++;
2325                 }
2326
2327                 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
2328                 if (read_format & PERF_FORMAT_GROUP) {
2329                         const u64 max_group_nr = UINT64_MAX /
2330                                         sizeof(struct sample_read_value);
2331
2332                         if (data->read.group.nr > max_group_nr)
2333                                 return -EFAULT;
2334                         sz = data->read.group.nr *
2335                              sizeof(struct sample_read_value);
2336                         OVERFLOW_CHECK(array, sz, max_size);
2337                         data->read.group.values =
2338                                         (struct sample_read_value *)array;
2339                         array = (void *)array + sz;
2340                 } else {
2341                         OVERFLOW_CHECK_u64(array);
2342                         data->read.one.id = *array;
2343                         array++;
2344                 }
2345         }
2346
2347         if (type & PERF_SAMPLE_CALLCHAIN) {
2348                 const u64 max_callchain_nr = UINT64_MAX / sizeof(u64);
2349
2350                 OVERFLOW_CHECK_u64(array);
2351                 data->callchain = (struct ip_callchain *)array++;
2352                 if (data->callchain->nr > max_callchain_nr)
2353                         return -EFAULT;
2354                 sz = data->callchain->nr * sizeof(u64);
2355                 OVERFLOW_CHECK(array, sz, max_size);
2356                 array = (void *)array + sz;
2357         }
2358
2359         if (type & PERF_SAMPLE_RAW) {
2360                 OVERFLOW_CHECK_u64(array);
2361                 u.val64 = *array;
2362
2363                 /*
2364                  * Undo swap of u64, then swap on individual u32s,
2365                  * get the size of the raw area and undo all of the
2366                  * swap. The pevent interface handles endianness by
2367                  * itself.
2368                  */
2369                 if (swapped) {
2370                         u.val64 = bswap_64(u.val64);
2371                         u.val32[0] = bswap_32(u.val32[0]);
2372                         u.val32[1] = bswap_32(u.val32[1]);
2373                 }
2374                 data->raw_size = u.val32[0];
2375
2376                 /*
2377                  * The raw data is aligned on 64bits including the
2378                  * u32 size, so it's safe to use mem_bswap_64.
2379                  */
2380                 if (swapped)
2381                         mem_bswap_64((void *) array, data->raw_size);
2382
2383                 array = (void *)array + sizeof(u32);
2384
2385                 OVERFLOW_CHECK(array, data->raw_size, max_size);
2386                 data->raw_data = (void *)array;
2387                 array = (void *)array + data->raw_size;
2388         }
2389
2390         if (type & PERF_SAMPLE_BRANCH_STACK) {
2391                 const u64 max_branch_nr = UINT64_MAX /
2392                                           sizeof(struct branch_entry);
2393
2394                 OVERFLOW_CHECK_u64(array);
2395                 data->branch_stack = (struct branch_stack *)array++;
2396
2397                 if (data->branch_stack->nr > max_branch_nr)
2398                         return -EFAULT;
2399
2400                 sz = data->branch_stack->nr * sizeof(struct branch_entry);
2401                 if (evsel__has_branch_hw_idx(evsel))
2402                         sz += sizeof(u64);
2403                 else
2404                         data->no_hw_idx = true;
2405                 OVERFLOW_CHECK(array, sz, max_size);
2406                 array = (void *)array + sz;
2407         }
2408
2409         if (type & PERF_SAMPLE_REGS_USER) {
2410                 OVERFLOW_CHECK_u64(array);
2411                 data->user_regs.abi = *array;
2412                 array++;
2413
2414                 if (data->user_regs.abi) {
2415                         u64 mask = evsel->core.attr.sample_regs_user;
2416
2417                         sz = hweight64(mask) * sizeof(u64);
2418                         OVERFLOW_CHECK(array, sz, max_size);
2419                         data->user_regs.mask = mask;
2420                         data->user_regs.regs = (u64 *)array;
2421                         array = (void *)array + sz;
2422                 }
2423         }
2424
2425         if (type & PERF_SAMPLE_STACK_USER) {
2426                 OVERFLOW_CHECK_u64(array);
2427                 sz = *array++;
2428
2429                 data->user_stack.offset = ((char *)(array - 1)
2430                                           - (char *) event);
2431
2432                 if (!sz) {
2433                         data->user_stack.size = 0;
2434                 } else {
2435                         OVERFLOW_CHECK(array, sz, max_size);
2436                         data->user_stack.data = (char *)array;
2437                         array = (void *)array + sz;
2438                         OVERFLOW_CHECK_u64(array);
2439                         data->user_stack.size = *array++;
2440                         if (WARN_ONCE(data->user_stack.size > sz,
2441                                       "user stack dump failure\n"))
2442                                 return -EFAULT;
2443                 }
2444         }
2445
2446         if (type & PERF_SAMPLE_WEIGHT_TYPE) {
2447                 OVERFLOW_CHECK_u64(array);
2448                 arch_perf_parse_sample_weight(data, array, type);
2449                 array++;
2450         }
2451
2452         if (type & PERF_SAMPLE_DATA_SRC) {
2453                 OVERFLOW_CHECK_u64(array);
2454                 data->data_src = *array;
2455                 array++;
2456         }
2457
2458         if (type & PERF_SAMPLE_TRANSACTION) {
2459                 OVERFLOW_CHECK_u64(array);
2460                 data->transaction = *array;
2461                 array++;
2462         }
2463
2464         data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
2465         if (type & PERF_SAMPLE_REGS_INTR) {
2466                 OVERFLOW_CHECK_u64(array);
2467                 data->intr_regs.abi = *array;
2468                 array++;
2469
2470                 if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
2471                         u64 mask = evsel->core.attr.sample_regs_intr;
2472
2473                         sz = hweight64(mask) * sizeof(u64);
2474                         OVERFLOW_CHECK(array, sz, max_size);
2475                         data->intr_regs.mask = mask;
2476                         data->intr_regs.regs = (u64 *)array;
2477                         array = (void *)array + sz;
2478                 }
2479         }
2480
2481         data->phys_addr = 0;
2482         if (type & PERF_SAMPLE_PHYS_ADDR) {
2483                 data->phys_addr = *array;
2484                 array++;
2485         }
2486
2487         data->cgroup = 0;
2488         if (type & PERF_SAMPLE_CGROUP) {
2489                 data->cgroup = *array;
2490                 array++;
2491         }
2492
2493         data->data_page_size = 0;
2494         if (type & PERF_SAMPLE_DATA_PAGE_SIZE) {
2495                 data->data_page_size = *array;
2496                 array++;
2497         }
2498
2499         data->code_page_size = 0;
2500         if (type & PERF_SAMPLE_CODE_PAGE_SIZE) {
2501                 data->code_page_size = *array;
2502                 array++;
2503         }
2504
2505         if (type & PERF_SAMPLE_AUX) {
2506                 OVERFLOW_CHECK_u64(array);
2507                 sz = *array++;
2508
2509                 OVERFLOW_CHECK(array, sz, max_size);
2510                 /* Undo swap of data */
2511                 if (swapped)
2512                         mem_bswap_64((char *)array, sz);
2513                 data->aux_sample.size = sz;
2514                 data->aux_sample.data = (char *)array;
2515                 array = (void *)array + sz;
2516         }
2517
2518         return 0;
2519 }
2520
2521 int evsel__parse_sample_timestamp(struct evsel *evsel, union perf_event *event,
2522                                   u64 *timestamp)
2523 {
2524         u64 type = evsel->core.attr.sample_type;
2525         const __u64 *array;
2526
2527         if (!(type & PERF_SAMPLE_TIME))
2528                 return -1;
2529
2530         if (event->header.type != PERF_RECORD_SAMPLE) {
2531                 struct perf_sample data = {
2532                         .time = -1ULL,
2533                 };
2534
2535                 if (!evsel->core.attr.sample_id_all)
2536                         return -1;
2537                 if (perf_evsel__parse_id_sample(evsel, event, &data))
2538                         return -1;
2539
2540                 *timestamp = data.time;
2541                 return 0;
2542         }
2543
2544         array = event->sample.array;
2545
2546         if (perf_event__check_size(event, evsel->sample_size))
2547                 return -EFAULT;
2548
2549         if (type & PERF_SAMPLE_IDENTIFIER)
2550                 array++;
2551
2552         if (type & PERF_SAMPLE_IP)
2553                 array++;
2554
2555         if (type & PERF_SAMPLE_TID)
2556                 array++;
2557
2558         if (type & PERF_SAMPLE_TIME)
2559                 *timestamp = *array;
2560
2561         return 0;
2562 }
2563
2564 struct tep_format_field *evsel__field(struct evsel *evsel, const char *name)
2565 {
2566         return tep_find_field(evsel->tp_format, name);
2567 }
2568
2569 void *evsel__rawptr(struct evsel *evsel, struct perf_sample *sample, const char *name)
2570 {
2571         struct tep_format_field *field = evsel__field(evsel, name);
2572         int offset;
2573
2574         if (!field)
2575                 return NULL;
2576
2577         offset = field->offset;
2578
2579         if (field->flags & TEP_FIELD_IS_DYNAMIC) {
2580                 offset = *(int *)(sample->raw_data + field->offset);
2581                 offset &= 0xffff;
2582         }
2583
2584         return sample->raw_data + offset;
2585 }
2586
2587 u64 format_field__intval(struct tep_format_field *field, struct perf_sample *sample,
2588                          bool needs_swap)
2589 {
2590         u64 value;
2591         void *ptr = sample->raw_data + field->offset;
2592
2593         switch (field->size) {
2594         case 1:
2595                 return *(u8 *)ptr;
2596         case 2:
2597                 value = *(u16 *)ptr;
2598                 break;
2599         case 4:
2600                 value = *(u32 *)ptr;
2601                 break;
2602         case 8:
2603                 memcpy(&value, ptr, sizeof(u64));
2604                 break;
2605         default:
2606                 return 0;
2607         }
2608
2609         if (!needs_swap)
2610                 return value;
2611
2612         switch (field->size) {
2613         case 2:
2614                 return bswap_16(value);
2615         case 4:
2616                 return bswap_32(value);
2617         case 8:
2618                 return bswap_64(value);
2619         default:
2620                 return 0;
2621         }
2622
2623         return 0;
2624 }
2625
2626 u64 evsel__intval(struct evsel *evsel, struct perf_sample *sample, const char *name)
2627 {
2628         struct tep_format_field *field = evsel__field(evsel, name);
2629
2630         if (!field)
2631                 return 0;
2632
2633         return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
2634 }
2635
2636 bool evsel__fallback(struct evsel *evsel, int err, char *msg, size_t msgsize)
2637 {
2638         int paranoid;
2639
2640         if ((err == ENOENT || err == ENXIO || err == ENODEV) &&
2641             evsel->core.attr.type   == PERF_TYPE_HARDWARE &&
2642             evsel->core.attr.config == PERF_COUNT_HW_CPU_CYCLES) {
2643                 /*
2644                  * If it's cycles then fall back to hrtimer based
2645                  * cpu-clock-tick sw counter, which is always available even if
2646                  * no PMU support.
2647                  *
2648                  * PPC returns ENXIO until 2.6.37 (behavior changed with commit
2649                  * b0a873e).
2650                  */
2651                 scnprintf(msg, msgsize, "%s",
2652 "The cycles event is not supported, trying to fall back to cpu-clock-ticks");
2653
2654                 evsel->core.attr.type   = PERF_TYPE_SOFTWARE;
2655                 evsel->core.attr.config = PERF_COUNT_SW_CPU_CLOCK;
2656
2657                 zfree(&evsel->name);
2658                 return true;
2659         } else if (err == EACCES && !evsel->core.attr.exclude_kernel &&
2660                    (paranoid = perf_event_paranoid()) > 1) {
2661                 const char *name = evsel__name(evsel);
2662                 char *new_name;
2663                 const char *sep = ":";
2664
2665                 /* If event has exclude user then don't exclude kernel. */
2666                 if (evsel->core.attr.exclude_user)
2667                         return false;
2668
2669                 /* Is there already the separator in the name. */
2670                 if (strchr(name, '/') ||
2671                     (strchr(name, ':') && !evsel->is_libpfm_event))
2672                         sep = "";
2673
2674                 if (asprintf(&new_name, "%s%su", name, sep) < 0)
2675                         return false;
2676
2677                 if (evsel->name)
2678                         free(evsel->name);
2679                 evsel->name = new_name;
2680                 scnprintf(msg, msgsize, "kernel.perf_event_paranoid=%d, trying "
2681                           "to fall back to excluding kernel and hypervisor "
2682                           " samples", paranoid);
2683                 evsel->core.attr.exclude_kernel = 1;
2684                 evsel->core.attr.exclude_hv     = 1;
2685
2686                 return true;
2687         }
2688
2689         return false;
2690 }
2691
2692 static bool find_process(const char *name)
2693 {
2694         size_t len = strlen(name);
2695         DIR *dir;
2696         struct dirent *d;
2697         int ret = -1;
2698
2699         dir = opendir(procfs__mountpoint());
2700         if (!dir)
2701                 return false;
2702
2703         /* Walk through the directory. */
2704         while (ret && (d = readdir(dir)) != NULL) {
2705                 char path[PATH_MAX];
2706                 char *data;
2707                 size_t size;
2708
2709                 if ((d->d_type != DT_DIR) ||
2710                      !strcmp(".", d->d_name) ||
2711                      !strcmp("..", d->d_name))
2712                         continue;
2713
2714                 scnprintf(path, sizeof(path), "%s/%s/comm",
2715                           procfs__mountpoint(), d->d_name);
2716
2717                 if (filename__read_str(path, &data, &size))
2718                         continue;
2719
2720                 ret = strncmp(name, data, len);
2721                 free(data);
2722         }
2723
2724         closedir(dir);
2725         return ret ? false : true;
2726 }
2727
2728 int evsel__open_strerror(struct evsel *evsel, struct target *target,
2729                          int err, char *msg, size_t size)
2730 {
2731         char sbuf[STRERR_BUFSIZE];
2732         int printed = 0, enforced = 0;
2733
2734         switch (err) {
2735         case EPERM:
2736         case EACCES:
2737                 printed += scnprintf(msg + printed, size - printed,
2738                         "Access to performance monitoring and observability operations is limited.\n");
2739
2740                 if (!sysfs__read_int("fs/selinux/enforce", &enforced)) {
2741                         if (enforced) {
2742                                 printed += scnprintf(msg + printed, size - printed,
2743                                         "Enforced MAC policy settings (SELinux) can limit access to performance\n"
2744                                         "monitoring and observability operations. Inspect system audit records for\n"
2745                                         "more perf_event access control information and adjusting the policy.\n");
2746                         }
2747                 }
2748
2749                 if (err == EPERM)
2750                         printed += scnprintf(msg, size,
2751                                 "No permission to enable %s event.\n\n", evsel__name(evsel));
2752
2753                 return scnprintf(msg + printed, size - printed,
2754                  "Consider adjusting /proc/sys/kernel/perf_event_paranoid setting to open\n"
2755                  "access to performance monitoring and observability operations for processes\n"
2756                  "without CAP_PERFMON, CAP_SYS_PTRACE or CAP_SYS_ADMIN Linux capability.\n"
2757                  "More information can be found at 'Perf events and tool security' document:\n"
2758                  "https://www.kernel.org/doc/html/latest/admin-guide/perf-security.html\n"
2759                  "perf_event_paranoid setting is %d:\n"
2760                  "  -1: Allow use of (almost) all events by all users\n"
2761                  "      Ignore mlock limit after perf_event_mlock_kb without CAP_IPC_LOCK\n"
2762                  ">= 0: Disallow raw and ftrace function tracepoint access\n"
2763                  ">= 1: Disallow CPU event access\n"
2764                  ">= 2: Disallow kernel profiling\n"
2765                  "To make the adjusted perf_event_paranoid setting permanent preserve it\n"
2766                  "in /etc/sysctl.conf (e.g. kernel.perf_event_paranoid = <setting>)",
2767                  perf_event_paranoid());
2768         case ENOENT:
2769                 return scnprintf(msg, size, "The %s event is not supported.", evsel__name(evsel));
2770         case EMFILE:
2771                 return scnprintf(msg, size, "%s",
2772                          "Too many events are opened.\n"
2773                          "Probably the maximum number of open file descriptors has been reached.\n"
2774                          "Hint: Try again after reducing the number of events.\n"
2775                          "Hint: Try increasing the limit with 'ulimit -n <limit>'");
2776         case ENOMEM:
2777                 if (evsel__has_callchain(evsel) &&
2778                     access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0)
2779                         return scnprintf(msg, size,
2780                                          "Not enough memory to setup event with callchain.\n"
2781                                          "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n"
2782                                          "Hint: Current value: %d", sysctl__max_stack());
2783                 break;
2784         case ENODEV:
2785                 if (target->cpu_list)
2786                         return scnprintf(msg, size, "%s",
2787          "No such device - did you specify an out-of-range profile CPU?");
2788                 break;
2789         case EOPNOTSUPP:
2790                 if (evsel->core.attr.aux_output)
2791                         return scnprintf(msg, size,
2792         "%s: PMU Hardware doesn't support 'aux_output' feature",
2793                                          evsel__name(evsel));
2794                 if (evsel->core.attr.sample_period != 0)
2795                         return scnprintf(msg, size,
2796         "%s: PMU Hardware doesn't support sampling/overflow-interrupts. Try 'perf stat'",
2797                                          evsel__name(evsel));
2798                 if (evsel->core.attr.precise_ip)
2799                         return scnprintf(msg, size, "%s",
2800         "\'precise\' request may not be supported. Try removing 'p' modifier.");
2801 #if defined(__i386__) || defined(__x86_64__)
2802                 if (evsel->core.attr.type == PERF_TYPE_HARDWARE)
2803                         return scnprintf(msg, size, "%s",
2804         "No hardware sampling interrupt available.\n");
2805 #endif
2806                 break;
2807         case EBUSY:
2808                 if (find_process("oprofiled"))
2809                         return scnprintf(msg, size,
2810         "The PMU counters are busy/taken by another profiler.\n"
2811         "We found oprofile daemon running, please stop it and try again.");
2812                 break;
2813         case EINVAL:
2814                 if (evsel->core.attr.sample_type & PERF_SAMPLE_CODE_PAGE_SIZE && perf_missing_features.code_page_size)
2815                         return scnprintf(msg, size, "Asking for the code page size isn't supported by this kernel.");
2816                 if (evsel->core.attr.sample_type & PERF_SAMPLE_DATA_PAGE_SIZE && perf_missing_features.data_page_size)
2817                         return scnprintf(msg, size, "Asking for the data page size isn't supported by this kernel.");
2818                 if (evsel->core.attr.write_backward && perf_missing_features.write_backward)
2819                         return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel.");
2820                 if (perf_missing_features.clockid)
2821                         return scnprintf(msg, size, "clockid feature not supported.");
2822                 if (perf_missing_features.clockid_wrong)
2823                         return scnprintf(msg, size, "wrong clockid (%d).", clockid);
2824                 if (perf_missing_features.aux_output)
2825                         return scnprintf(msg, size, "The 'aux_output' feature is not supported, update the kernel.");
2826                 break;
2827         case ENODATA:
2828                 return scnprintf(msg, size, "Cannot collect data source with the load latency event alone. "
2829                                  "Please add an auxiliary event in front of the load latency event.");
2830         default:
2831                 break;
2832         }
2833
2834         return scnprintf(msg, size,
2835         "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n"
2836         "/bin/dmesg | grep -i perf may provide additional information.\n",
2837                          err, str_error_r(err, sbuf, sizeof(sbuf)), evsel__name(evsel));
2838 }
2839
2840 struct perf_env *evsel__env(struct evsel *evsel)
2841 {
2842         if (evsel && evsel->evlist)
2843                 return evsel->evlist->env;
2844         return &perf_env;
2845 }
2846
2847 static int store_evsel_ids(struct evsel *evsel, struct evlist *evlist)
2848 {
2849         int cpu, thread;
2850
2851         for (cpu = 0; cpu < xyarray__max_x(evsel->core.fd); cpu++) {
2852                 for (thread = 0; thread < xyarray__max_y(evsel->core.fd);
2853                      thread++) {
2854                         int fd = FD(evsel, cpu, thread);
2855
2856                         if (perf_evlist__id_add_fd(&evlist->core, &evsel->core,
2857                                                    cpu, thread, fd) < 0)
2858                                 return -1;
2859                 }
2860         }
2861
2862         return 0;
2863 }
2864
2865 int evsel__store_ids(struct evsel *evsel, struct evlist *evlist)
2866 {
2867         struct perf_cpu_map *cpus = evsel->core.cpus;
2868         struct perf_thread_map *threads = evsel->core.threads;
2869
2870         if (perf_evsel__alloc_id(&evsel->core, cpus->nr, threads->nr))
2871                 return -ENOMEM;
2872
2873         return store_evsel_ids(evsel, evlist);
2874 }
2875
2876 void evsel__zero_per_pkg(struct evsel *evsel)
2877 {
2878         struct hashmap_entry *cur;
2879         size_t bkt;
2880
2881         if (evsel->per_pkg_mask) {
2882                 hashmap__for_each_entry(evsel->per_pkg_mask, cur, bkt)
2883                         free((char *)cur->key);
2884
2885                 hashmap__clear(evsel->per_pkg_mask);
2886         }
2887 }
2888
2889 bool evsel__is_hybrid(struct evsel *evsel)
2890 {
2891         return evsel->pmu_name && perf_pmu__is_hybrid(evsel->pmu_name);
2892 }
2893
2894 struct evsel *evsel__leader(struct evsel *evsel)
2895 {
2896         return container_of(evsel->core.leader, struct evsel, core);
2897 }
2898
2899 bool evsel__has_leader(struct evsel *evsel, struct evsel *leader)
2900 {
2901         return evsel->core.leader == &leader->core;
2902 }
2903
2904 bool evsel__is_leader(struct evsel *evsel)
2905 {
2906         return evsel__has_leader(evsel, evsel);
2907 }
2908
2909 void evsel__set_leader(struct evsel *evsel, struct evsel *leader)
2910 {
2911         evsel->core.leader = &leader->core;
2912 }