Loading...
1// SPDX-License-Identifier: GPL-2.0
2#include <linux/hw_breakpoint.h>
3#include <linux/err.h>
4#include <dirent.h>
5#include <errno.h>
6#include <sys/ioctl.h>
7#include <sys/types.h>
8#include <sys/stat.h>
9#include <fcntl.h>
10#include <sys/param.h>
11#include "term.h"
12#include "../perf.h"
13#include "evlist.h"
14#include "evsel.h"
15#include <subcmd/parse-options.h>
16#include "parse-events.h"
17#include <subcmd/exec-cmd.h>
18#include "string2.h"
19#include "strlist.h"
20#include "symbol.h"
21#include "cache.h"
22#include "header.h"
23#include "bpf-loader.h"
24#include "debug.h"
25#include <api/fs/tracing_path.h>
26#include "parse-events-bison.h"
27#define YY_EXTRA_TYPE int
28#include "parse-events-flex.h"
29#include "pmu.h"
30#include "thread_map.h"
31#include "cpumap.h"
32#include "probe-file.h"
33#include "asm/bug.h"
34#include "util/parse-branch-options.h"
35#include "metricgroup.h"
36
37#define MAX_NAME_LEN 100
38
39#ifdef PARSER_DEBUG
40extern int parse_events_debug;
41#endif
42int parse_events_parse(void *parse_state, void *scanner);
43static int get_config_terms(struct list_head *head_config,
44 struct list_head *head_terms __maybe_unused);
45
46static struct perf_pmu_event_symbol *perf_pmu_events_list;
47/*
48 * The variable indicates the number of supported pmu event symbols.
49 * 0 means not initialized and ready to init
50 * -1 means failed to init, don't try anymore
51 * >0 is the number of supported pmu event symbols
52 */
53static int perf_pmu_events_list_num;
54
55struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
56 [PERF_COUNT_HW_CPU_CYCLES] = {
57 .symbol = "cpu-cycles",
58 .alias = "cycles",
59 },
60 [PERF_COUNT_HW_INSTRUCTIONS] = {
61 .symbol = "instructions",
62 .alias = "",
63 },
64 [PERF_COUNT_HW_CACHE_REFERENCES] = {
65 .symbol = "cache-references",
66 .alias = "",
67 },
68 [PERF_COUNT_HW_CACHE_MISSES] = {
69 .symbol = "cache-misses",
70 .alias = "",
71 },
72 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
73 .symbol = "branch-instructions",
74 .alias = "branches",
75 },
76 [PERF_COUNT_HW_BRANCH_MISSES] = {
77 .symbol = "branch-misses",
78 .alias = "",
79 },
80 [PERF_COUNT_HW_BUS_CYCLES] = {
81 .symbol = "bus-cycles",
82 .alias = "",
83 },
84 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
85 .symbol = "stalled-cycles-frontend",
86 .alias = "idle-cycles-frontend",
87 },
88 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
89 .symbol = "stalled-cycles-backend",
90 .alias = "idle-cycles-backend",
91 },
92 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
93 .symbol = "ref-cycles",
94 .alias = "",
95 },
96};
97
98struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
99 [PERF_COUNT_SW_CPU_CLOCK] = {
100 .symbol = "cpu-clock",
101 .alias = "",
102 },
103 [PERF_COUNT_SW_TASK_CLOCK] = {
104 .symbol = "task-clock",
105 .alias = "",
106 },
107 [PERF_COUNT_SW_PAGE_FAULTS] = {
108 .symbol = "page-faults",
109 .alias = "faults",
110 },
111 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
112 .symbol = "context-switches",
113 .alias = "cs",
114 },
115 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
116 .symbol = "cpu-migrations",
117 .alias = "migrations",
118 },
119 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
120 .symbol = "minor-faults",
121 .alias = "",
122 },
123 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
124 .symbol = "major-faults",
125 .alias = "",
126 },
127 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
128 .symbol = "alignment-faults",
129 .alias = "",
130 },
131 [PERF_COUNT_SW_EMULATION_FAULTS] = {
132 .symbol = "emulation-faults",
133 .alias = "",
134 },
135 [PERF_COUNT_SW_DUMMY] = {
136 .symbol = "dummy",
137 .alias = "",
138 },
139 [PERF_COUNT_SW_BPF_OUTPUT] = {
140 .symbol = "bpf-output",
141 .alias = "",
142 },
143};
144
145#define __PERF_EVENT_FIELD(config, name) \
146 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
147
148#define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
149#define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
150#define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
151#define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
152
153#define for_each_subsystem(sys_dir, sys_dirent) \
154 while ((sys_dirent = readdir(sys_dir)) != NULL) \
155 if (sys_dirent->d_type == DT_DIR && \
156 (strcmp(sys_dirent->d_name, ".")) && \
157 (strcmp(sys_dirent->d_name, "..")))
158
159static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
160{
161 char evt_path[MAXPATHLEN];
162 int fd;
163
164 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
165 sys_dir->d_name, evt_dir->d_name);
166 fd = open(evt_path, O_RDONLY);
167 if (fd < 0)
168 return -EINVAL;
169 close(fd);
170
171 return 0;
172}
173
174#define for_each_event(sys_dirent, evt_dir, evt_dirent) \
175 while ((evt_dirent = readdir(evt_dir)) != NULL) \
176 if (evt_dirent->d_type == DT_DIR && \
177 (strcmp(evt_dirent->d_name, ".")) && \
178 (strcmp(evt_dirent->d_name, "..")) && \
179 (!tp_event_has_id(sys_dirent, evt_dirent)))
180
181#define MAX_EVENT_LENGTH 512
182
183
184struct tracepoint_path *tracepoint_id_to_path(u64 config)
185{
186 struct tracepoint_path *path = NULL;
187 DIR *sys_dir, *evt_dir;
188 struct dirent *sys_dirent, *evt_dirent;
189 char id_buf[24];
190 int fd;
191 u64 id;
192 char evt_path[MAXPATHLEN];
193 char dir_path[MAXPATHLEN];
194
195 sys_dir = opendir(tracing_events_path);
196 if (!sys_dir)
197 return NULL;
198
199 for_each_subsystem(sys_dir, sys_dirent) {
200
201 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
202 sys_dirent->d_name);
203 evt_dir = opendir(dir_path);
204 if (!evt_dir)
205 continue;
206
207 for_each_event(sys_dirent, evt_dir, evt_dirent) {
208
209 scnprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
210 evt_dirent->d_name);
211 fd = open(evt_path, O_RDONLY);
212 if (fd < 0)
213 continue;
214 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
215 close(fd);
216 continue;
217 }
218 close(fd);
219 id = atoll(id_buf);
220 if (id == config) {
221 closedir(evt_dir);
222 closedir(sys_dir);
223 path = zalloc(sizeof(*path));
224 if (!path)
225 return NULL;
226 path->system = malloc(MAX_EVENT_LENGTH);
227 if (!path->system) {
228 free(path);
229 return NULL;
230 }
231 path->name = malloc(MAX_EVENT_LENGTH);
232 if (!path->name) {
233 zfree(&path->system);
234 free(path);
235 return NULL;
236 }
237 strncpy(path->system, sys_dirent->d_name,
238 MAX_EVENT_LENGTH);
239 strncpy(path->name, evt_dirent->d_name,
240 MAX_EVENT_LENGTH);
241 return path;
242 }
243 }
244 closedir(evt_dir);
245 }
246
247 closedir(sys_dir);
248 return NULL;
249}
250
251struct tracepoint_path *tracepoint_name_to_path(const char *name)
252{
253 struct tracepoint_path *path = zalloc(sizeof(*path));
254 char *str = strchr(name, ':');
255
256 if (path == NULL || str == NULL) {
257 free(path);
258 return NULL;
259 }
260
261 path->system = strndup(name, str - name);
262 path->name = strdup(str+1);
263
264 if (path->system == NULL || path->name == NULL) {
265 zfree(&path->system);
266 zfree(&path->name);
267 zfree(&path);
268 }
269
270 return path;
271}
272
273const char *event_type(int type)
274{
275 switch (type) {
276 case PERF_TYPE_HARDWARE:
277 return "hardware";
278
279 case PERF_TYPE_SOFTWARE:
280 return "software";
281
282 case PERF_TYPE_TRACEPOINT:
283 return "tracepoint";
284
285 case PERF_TYPE_HW_CACHE:
286 return "hardware-cache";
287
288 default:
289 break;
290 }
291
292 return "unknown";
293}
294
295static int parse_events__is_name_term(struct parse_events_term *term)
296{
297 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
298}
299
300static char *get_config_name(struct list_head *head_terms)
301{
302 struct parse_events_term *term;
303
304 if (!head_terms)
305 return NULL;
306
307 list_for_each_entry(term, head_terms, list)
308 if (parse_events__is_name_term(term))
309 return term->val.str;
310
311 return NULL;
312}
313
314static struct perf_evsel *
315__add_event(struct list_head *list, int *idx,
316 struct perf_event_attr *attr,
317 char *name, struct perf_pmu *pmu,
318 struct list_head *config_terms, bool auto_merge_stats)
319{
320 struct perf_evsel *evsel;
321 struct cpu_map *cpus = pmu ? pmu->cpus : NULL;
322
323 event_attr_init(attr);
324
325 evsel = perf_evsel__new_idx(attr, *idx);
326 if (!evsel)
327 return NULL;
328
329 (*idx)++;
330 evsel->cpus = cpu_map__get(cpus);
331 evsel->own_cpus = cpu_map__get(cpus);
332 evsel->system_wide = pmu ? pmu->is_uncore : false;
333 evsel->auto_merge_stats = auto_merge_stats;
334
335 if (name)
336 evsel->name = strdup(name);
337
338 if (config_terms)
339 list_splice(config_terms, &evsel->config_terms);
340
341 list_add_tail(&evsel->node, list);
342 return evsel;
343}
344
345static int add_event(struct list_head *list, int *idx,
346 struct perf_event_attr *attr, char *name,
347 struct list_head *config_terms)
348{
349 return __add_event(list, idx, attr, name, NULL, config_terms, false) ? 0 : -ENOMEM;
350}
351
352static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
353{
354 int i, j;
355 int n, longest = -1;
356
357 for (i = 0; i < size; i++) {
358 for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
359 n = strlen(names[i][j]);
360 if (n > longest && !strncasecmp(str, names[i][j], n))
361 longest = n;
362 }
363 if (longest > 0)
364 return i;
365 }
366
367 return -1;
368}
369
370typedef int config_term_func_t(struct perf_event_attr *attr,
371 struct parse_events_term *term,
372 struct parse_events_error *err);
373static int config_term_common(struct perf_event_attr *attr,
374 struct parse_events_term *term,
375 struct parse_events_error *err);
376static int config_attr(struct perf_event_attr *attr,
377 struct list_head *head,
378 struct parse_events_error *err,
379 config_term_func_t config_term);
380
381int parse_events_add_cache(struct list_head *list, int *idx,
382 char *type, char *op_result1, char *op_result2,
383 struct parse_events_error *err,
384 struct list_head *head_config)
385{
386 struct perf_event_attr attr;
387 LIST_HEAD(config_terms);
388 char name[MAX_NAME_LEN], *config_name;
389 int cache_type = -1, cache_op = -1, cache_result = -1;
390 char *op_result[2] = { op_result1, op_result2 };
391 int i, n;
392
393 /*
394 * No fallback - if we cannot get a clear cache type
395 * then bail out:
396 */
397 cache_type = parse_aliases(type, perf_evsel__hw_cache,
398 PERF_COUNT_HW_CACHE_MAX);
399 if (cache_type == -1)
400 return -EINVAL;
401
402 config_name = get_config_name(head_config);
403 n = snprintf(name, MAX_NAME_LEN, "%s", type);
404
405 for (i = 0; (i < 2) && (op_result[i]); i++) {
406 char *str = op_result[i];
407
408 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
409
410 if (cache_op == -1) {
411 cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
412 PERF_COUNT_HW_CACHE_OP_MAX);
413 if (cache_op >= 0) {
414 if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
415 return -EINVAL;
416 continue;
417 }
418 }
419
420 if (cache_result == -1) {
421 cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
422 PERF_COUNT_HW_CACHE_RESULT_MAX);
423 if (cache_result >= 0)
424 continue;
425 }
426 }
427
428 /*
429 * Fall back to reads:
430 */
431 if (cache_op == -1)
432 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
433
434 /*
435 * Fall back to accesses:
436 */
437 if (cache_result == -1)
438 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
439
440 memset(&attr, 0, sizeof(attr));
441 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
442 attr.type = PERF_TYPE_HW_CACHE;
443
444 if (head_config) {
445 if (config_attr(&attr, head_config, err,
446 config_term_common))
447 return -EINVAL;
448
449 if (get_config_terms(head_config, &config_terms))
450 return -ENOMEM;
451 }
452 return add_event(list, idx, &attr, config_name ? : name, &config_terms);
453}
454
455static void tracepoint_error(struct parse_events_error *e, int err,
456 const char *sys, const char *name)
457{
458 char help[BUFSIZ];
459
460 if (!e)
461 return;
462
463 /*
464 * We get error directly from syscall errno ( > 0),
465 * or from encoded pointer's error ( < 0).
466 */
467 err = abs(err);
468
469 switch (err) {
470 case EACCES:
471 e->str = strdup("can't access trace events");
472 break;
473 case ENOENT:
474 e->str = strdup("unknown tracepoint");
475 break;
476 default:
477 e->str = strdup("failed to add tracepoint");
478 break;
479 }
480
481 tracing_path__strerror_open_tp(err, help, sizeof(help), sys, name);
482 e->help = strdup(help);
483}
484
485static int add_tracepoint(struct list_head *list, int *idx,
486 const char *sys_name, const char *evt_name,
487 struct parse_events_error *err,
488 struct list_head *head_config)
489{
490 struct perf_evsel *evsel;
491
492 evsel = perf_evsel__newtp_idx(sys_name, evt_name, (*idx)++);
493 if (IS_ERR(evsel)) {
494 tracepoint_error(err, PTR_ERR(evsel), sys_name, evt_name);
495 return PTR_ERR(evsel);
496 }
497
498 if (head_config) {
499 LIST_HEAD(config_terms);
500
501 if (get_config_terms(head_config, &config_terms))
502 return -ENOMEM;
503 list_splice(&config_terms, &evsel->config_terms);
504 }
505
506 list_add_tail(&evsel->node, list);
507 return 0;
508}
509
510static int add_tracepoint_multi_event(struct list_head *list, int *idx,
511 const char *sys_name, const char *evt_name,
512 struct parse_events_error *err,
513 struct list_head *head_config)
514{
515 char evt_path[MAXPATHLEN];
516 struct dirent *evt_ent;
517 DIR *evt_dir;
518 int ret = 0, found = 0;
519
520 snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
521 evt_dir = opendir(evt_path);
522 if (!evt_dir) {
523 tracepoint_error(err, errno, sys_name, evt_name);
524 return -1;
525 }
526
527 while (!ret && (evt_ent = readdir(evt_dir))) {
528 if (!strcmp(evt_ent->d_name, ".")
529 || !strcmp(evt_ent->d_name, "..")
530 || !strcmp(evt_ent->d_name, "enable")
531 || !strcmp(evt_ent->d_name, "filter"))
532 continue;
533
534 if (!strglobmatch(evt_ent->d_name, evt_name))
535 continue;
536
537 found++;
538
539 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name,
540 err, head_config);
541 }
542
543 if (!found) {
544 tracepoint_error(err, ENOENT, sys_name, evt_name);
545 ret = -1;
546 }
547
548 closedir(evt_dir);
549 return ret;
550}
551
552static int add_tracepoint_event(struct list_head *list, int *idx,
553 const char *sys_name, const char *evt_name,
554 struct parse_events_error *err,
555 struct list_head *head_config)
556{
557 return strpbrk(evt_name, "*?") ?
558 add_tracepoint_multi_event(list, idx, sys_name, evt_name,
559 err, head_config) :
560 add_tracepoint(list, idx, sys_name, evt_name,
561 err, head_config);
562}
563
564static int add_tracepoint_multi_sys(struct list_head *list, int *idx,
565 const char *sys_name, const char *evt_name,
566 struct parse_events_error *err,
567 struct list_head *head_config)
568{
569 struct dirent *events_ent;
570 DIR *events_dir;
571 int ret = 0;
572
573 events_dir = opendir(tracing_events_path);
574 if (!events_dir) {
575 tracepoint_error(err, errno, sys_name, evt_name);
576 return -1;
577 }
578
579 while (!ret && (events_ent = readdir(events_dir))) {
580 if (!strcmp(events_ent->d_name, ".")
581 || !strcmp(events_ent->d_name, "..")
582 || !strcmp(events_ent->d_name, "enable")
583 || !strcmp(events_ent->d_name, "header_event")
584 || !strcmp(events_ent->d_name, "header_page"))
585 continue;
586
587 if (!strglobmatch(events_ent->d_name, sys_name))
588 continue;
589
590 ret = add_tracepoint_event(list, idx, events_ent->d_name,
591 evt_name, err, head_config);
592 }
593
594 closedir(events_dir);
595 return ret;
596}
597
598struct __add_bpf_event_param {
599 struct parse_events_state *parse_state;
600 struct list_head *list;
601 struct list_head *head_config;
602};
603
604static int add_bpf_event(const char *group, const char *event, int fd,
605 void *_param)
606{
607 LIST_HEAD(new_evsels);
608 struct __add_bpf_event_param *param = _param;
609 struct parse_events_state *parse_state = param->parse_state;
610 struct list_head *list = param->list;
611 struct perf_evsel *pos;
612 int err;
613
614 pr_debug("add bpf event %s:%s and attach bpf program %d\n",
615 group, event, fd);
616
617 err = parse_events_add_tracepoint(&new_evsels, &parse_state->idx, group,
618 event, parse_state->error,
619 param->head_config);
620 if (err) {
621 struct perf_evsel *evsel, *tmp;
622
623 pr_debug("Failed to add BPF event %s:%s\n",
624 group, event);
625 list_for_each_entry_safe(evsel, tmp, &new_evsels, node) {
626 list_del(&evsel->node);
627 perf_evsel__delete(evsel);
628 }
629 return err;
630 }
631 pr_debug("adding %s:%s\n", group, event);
632
633 list_for_each_entry(pos, &new_evsels, node) {
634 pr_debug("adding %s:%s to %p\n",
635 group, event, pos);
636 pos->bpf_fd = fd;
637 }
638 list_splice(&new_evsels, list);
639 return 0;
640}
641
642int parse_events_load_bpf_obj(struct parse_events_state *parse_state,
643 struct list_head *list,
644 struct bpf_object *obj,
645 struct list_head *head_config)
646{
647 int err;
648 char errbuf[BUFSIZ];
649 struct __add_bpf_event_param param = {parse_state, list, head_config};
650 static bool registered_unprobe_atexit = false;
651
652 if (IS_ERR(obj) || !obj) {
653 snprintf(errbuf, sizeof(errbuf),
654 "Internal error: load bpf obj with NULL");
655 err = -EINVAL;
656 goto errout;
657 }
658
659 /*
660 * Register atexit handler before calling bpf__probe() so
661 * bpf__probe() don't need to unprobe probe points its already
662 * created when failure.
663 */
664 if (!registered_unprobe_atexit) {
665 atexit(bpf__clear);
666 registered_unprobe_atexit = true;
667 }
668
669 err = bpf__probe(obj);
670 if (err) {
671 bpf__strerror_probe(obj, err, errbuf, sizeof(errbuf));
672 goto errout;
673 }
674
675 err = bpf__load(obj);
676 if (err) {
677 bpf__strerror_load(obj, err, errbuf, sizeof(errbuf));
678 goto errout;
679 }
680
681 err = bpf__foreach_event(obj, add_bpf_event, ¶m);
682 if (err) {
683 snprintf(errbuf, sizeof(errbuf),
684 "Attach events in BPF object failed");
685 goto errout;
686 }
687
688 return 0;
689errout:
690 parse_state->error->help = strdup("(add -v to see detail)");
691 parse_state->error->str = strdup(errbuf);
692 return err;
693}
694
695static int
696parse_events_config_bpf(struct parse_events_state *parse_state,
697 struct bpf_object *obj,
698 struct list_head *head_config)
699{
700 struct parse_events_term *term;
701 int error_pos;
702
703 if (!head_config || list_empty(head_config))
704 return 0;
705
706 list_for_each_entry(term, head_config, list) {
707 char errbuf[BUFSIZ];
708 int err;
709
710 if (term->type_term != PARSE_EVENTS__TERM_TYPE_USER) {
711 snprintf(errbuf, sizeof(errbuf),
712 "Invalid config term for BPF object");
713 errbuf[BUFSIZ - 1] = '\0';
714
715 parse_state->error->idx = term->err_term;
716 parse_state->error->str = strdup(errbuf);
717 return -EINVAL;
718 }
719
720 err = bpf__config_obj(obj, term, parse_state->evlist, &error_pos);
721 if (err) {
722 bpf__strerror_config_obj(obj, term, parse_state->evlist,
723 &error_pos, err, errbuf,
724 sizeof(errbuf));
725 parse_state->error->help = strdup(
726"Hint:\tValid config terms:\n"
727" \tmap:[<arraymap>].value<indices>=[value]\n"
728" \tmap:[<eventmap>].event<indices>=[event]\n"
729"\n"
730" \twhere <indices> is something like [0,3...5] or [all]\n"
731" \t(add -v to see detail)");
732 parse_state->error->str = strdup(errbuf);
733 if (err == -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE)
734 parse_state->error->idx = term->err_val;
735 else
736 parse_state->error->idx = term->err_term + error_pos;
737 return err;
738 }
739 }
740 return 0;
741}
742
743/*
744 * Split config terms:
745 * perf record -e bpf.c/call-graph=fp,map:array.value[0]=1/ ...
746 * 'call-graph=fp' is 'evt config', should be applied to each
747 * events in bpf.c.
748 * 'map:array.value[0]=1' is 'obj config', should be processed
749 * with parse_events_config_bpf.
750 *
751 * Move object config terms from the first list to obj_head_config.
752 */
753static void
754split_bpf_config_terms(struct list_head *evt_head_config,
755 struct list_head *obj_head_config)
756{
757 struct parse_events_term *term, *temp;
758
759 /*
760 * Currectly, all possible user config term
761 * belong to bpf object. parse_events__is_hardcoded_term()
762 * happends to be a good flag.
763 *
764 * See parse_events_config_bpf() and
765 * config_term_tracepoint().
766 */
767 list_for_each_entry_safe(term, temp, evt_head_config, list)
768 if (!parse_events__is_hardcoded_term(term))
769 list_move_tail(&term->list, obj_head_config);
770}
771
772int parse_events_load_bpf(struct parse_events_state *parse_state,
773 struct list_head *list,
774 char *bpf_file_name,
775 bool source,
776 struct list_head *head_config)
777{
778 int err;
779 struct bpf_object *obj;
780 LIST_HEAD(obj_head_config);
781
782 if (head_config)
783 split_bpf_config_terms(head_config, &obj_head_config);
784
785 obj = bpf__prepare_load(bpf_file_name, source);
786 if (IS_ERR(obj)) {
787 char errbuf[BUFSIZ];
788
789 err = PTR_ERR(obj);
790
791 if (err == -ENOTSUP)
792 snprintf(errbuf, sizeof(errbuf),
793 "BPF support is not compiled");
794 else
795 bpf__strerror_prepare_load(bpf_file_name,
796 source,
797 -err, errbuf,
798 sizeof(errbuf));
799
800 parse_state->error->help = strdup("(add -v to see detail)");
801 parse_state->error->str = strdup(errbuf);
802 return err;
803 }
804
805 err = parse_events_load_bpf_obj(parse_state, list, obj, head_config);
806 if (err)
807 return err;
808 err = parse_events_config_bpf(parse_state, obj, &obj_head_config);
809
810 /*
811 * Caller doesn't know anything about obj_head_config,
812 * so combine them together again before returnning.
813 */
814 if (head_config)
815 list_splice_tail(&obj_head_config, head_config);
816 return err;
817}
818
819static int
820parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
821{
822 int i;
823
824 for (i = 0; i < 3; i++) {
825 if (!type || !type[i])
826 break;
827
828#define CHECK_SET_TYPE(bit) \
829do { \
830 if (attr->bp_type & bit) \
831 return -EINVAL; \
832 else \
833 attr->bp_type |= bit; \
834} while (0)
835
836 switch (type[i]) {
837 case 'r':
838 CHECK_SET_TYPE(HW_BREAKPOINT_R);
839 break;
840 case 'w':
841 CHECK_SET_TYPE(HW_BREAKPOINT_W);
842 break;
843 case 'x':
844 CHECK_SET_TYPE(HW_BREAKPOINT_X);
845 break;
846 default:
847 return -EINVAL;
848 }
849 }
850
851#undef CHECK_SET_TYPE
852
853 if (!attr->bp_type) /* Default */
854 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
855
856 return 0;
857}
858
859int parse_events_add_breakpoint(struct list_head *list, int *idx,
860 void *ptr, char *type, u64 len)
861{
862 struct perf_event_attr attr;
863
864 memset(&attr, 0, sizeof(attr));
865 attr.bp_addr = (unsigned long) ptr;
866
867 if (parse_breakpoint_type(type, &attr))
868 return -EINVAL;
869
870 /* Provide some defaults if len is not specified */
871 if (!len) {
872 if (attr.bp_type == HW_BREAKPOINT_X)
873 len = sizeof(long);
874 else
875 len = HW_BREAKPOINT_LEN_4;
876 }
877
878 attr.bp_len = len;
879
880 attr.type = PERF_TYPE_BREAKPOINT;
881 attr.sample_period = 1;
882
883 return add_event(list, idx, &attr, NULL, NULL);
884}
885
886static int check_type_val(struct parse_events_term *term,
887 struct parse_events_error *err,
888 int type)
889{
890 if (type == term->type_val)
891 return 0;
892
893 if (err) {
894 err->idx = term->err_val;
895 if (type == PARSE_EVENTS__TERM_TYPE_NUM)
896 err->str = strdup("expected numeric value");
897 else
898 err->str = strdup("expected string value");
899 }
900 return -EINVAL;
901}
902
903/*
904 * Update according to parse-events.l
905 */
906static const char *config_term_names[__PARSE_EVENTS__TERM_TYPE_NR] = {
907 [PARSE_EVENTS__TERM_TYPE_USER] = "<sysfs term>",
908 [PARSE_EVENTS__TERM_TYPE_CONFIG] = "config",
909 [PARSE_EVENTS__TERM_TYPE_CONFIG1] = "config1",
910 [PARSE_EVENTS__TERM_TYPE_CONFIG2] = "config2",
911 [PARSE_EVENTS__TERM_TYPE_NAME] = "name",
912 [PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD] = "period",
913 [PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ] = "freq",
914 [PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE] = "branch_type",
915 [PARSE_EVENTS__TERM_TYPE_TIME] = "time",
916 [PARSE_EVENTS__TERM_TYPE_CALLGRAPH] = "call-graph",
917 [PARSE_EVENTS__TERM_TYPE_STACKSIZE] = "stack-size",
918 [PARSE_EVENTS__TERM_TYPE_NOINHERIT] = "no-inherit",
919 [PARSE_EVENTS__TERM_TYPE_INHERIT] = "inherit",
920 [PARSE_EVENTS__TERM_TYPE_MAX_STACK] = "max-stack",
921 [PARSE_EVENTS__TERM_TYPE_OVERWRITE] = "overwrite",
922 [PARSE_EVENTS__TERM_TYPE_NOOVERWRITE] = "no-overwrite",
923 [PARSE_EVENTS__TERM_TYPE_DRV_CFG] = "driver-config",
924};
925
926static bool config_term_shrinked;
927
928static bool
929config_term_avail(int term_type, struct parse_events_error *err)
930{
931 if (term_type < 0 || term_type >= __PARSE_EVENTS__TERM_TYPE_NR) {
932 err->str = strdup("Invalid term_type");
933 return false;
934 }
935 if (!config_term_shrinked)
936 return true;
937
938 switch (term_type) {
939 case PARSE_EVENTS__TERM_TYPE_CONFIG:
940 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
941 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
942 case PARSE_EVENTS__TERM_TYPE_NAME:
943 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
944 return true;
945 default:
946 if (!err)
947 return false;
948
949 /* term_type is validated so indexing is safe */
950 if (asprintf(&err->str, "'%s' is not usable in 'perf stat'",
951 config_term_names[term_type]) < 0)
952 err->str = NULL;
953 return false;
954 }
955}
956
957void parse_events__shrink_config_terms(void)
958{
959 config_term_shrinked = true;
960}
961
962static int config_term_common(struct perf_event_attr *attr,
963 struct parse_events_term *term,
964 struct parse_events_error *err)
965{
966#define CHECK_TYPE_VAL(type) \
967do { \
968 if (check_type_val(term, err, PARSE_EVENTS__TERM_TYPE_ ## type)) \
969 return -EINVAL; \
970} while (0)
971
972 switch (term->type_term) {
973 case PARSE_EVENTS__TERM_TYPE_CONFIG:
974 CHECK_TYPE_VAL(NUM);
975 attr->config = term->val.num;
976 break;
977 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
978 CHECK_TYPE_VAL(NUM);
979 attr->config1 = term->val.num;
980 break;
981 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
982 CHECK_TYPE_VAL(NUM);
983 attr->config2 = term->val.num;
984 break;
985 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
986 CHECK_TYPE_VAL(NUM);
987 break;
988 case PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ:
989 CHECK_TYPE_VAL(NUM);
990 break;
991 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
992 CHECK_TYPE_VAL(STR);
993 if (strcmp(term->val.str, "no") &&
994 parse_branch_str(term->val.str, &attr->branch_sample_type)) {
995 err->str = strdup("invalid branch sample type");
996 err->idx = term->err_val;
997 return -EINVAL;
998 }
999 break;
1000 case PARSE_EVENTS__TERM_TYPE_TIME:
1001 CHECK_TYPE_VAL(NUM);
1002 if (term->val.num > 1) {
1003 err->str = strdup("expected 0 or 1");
1004 err->idx = term->err_val;
1005 return -EINVAL;
1006 }
1007 break;
1008 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1009 CHECK_TYPE_VAL(STR);
1010 break;
1011 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1012 CHECK_TYPE_VAL(NUM);
1013 break;
1014 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1015 CHECK_TYPE_VAL(NUM);
1016 break;
1017 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1018 CHECK_TYPE_VAL(NUM);
1019 break;
1020 case PARSE_EVENTS__TERM_TYPE_OVERWRITE:
1021 CHECK_TYPE_VAL(NUM);
1022 break;
1023 case PARSE_EVENTS__TERM_TYPE_NOOVERWRITE:
1024 CHECK_TYPE_VAL(NUM);
1025 break;
1026 case PARSE_EVENTS__TERM_TYPE_NAME:
1027 CHECK_TYPE_VAL(STR);
1028 break;
1029 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1030 CHECK_TYPE_VAL(NUM);
1031 break;
1032 default:
1033 err->str = strdup("unknown term");
1034 err->idx = term->err_term;
1035 err->help = parse_events_formats_error_string(NULL);
1036 return -EINVAL;
1037 }
1038
1039 /*
1040 * Check term availbility after basic checking so
1041 * PARSE_EVENTS__TERM_TYPE_USER can be found and filtered.
1042 *
1043 * If check availbility at the entry of this function,
1044 * user will see "'<sysfs term>' is not usable in 'perf stat'"
1045 * if an invalid config term is provided for legacy events
1046 * (for example, instructions/badterm/...), which is confusing.
1047 */
1048 if (!config_term_avail(term->type_term, err))
1049 return -EINVAL;
1050 return 0;
1051#undef CHECK_TYPE_VAL
1052}
1053
1054static int config_term_pmu(struct perf_event_attr *attr,
1055 struct parse_events_term *term,
1056 struct parse_events_error *err)
1057{
1058 if (term->type_term == PARSE_EVENTS__TERM_TYPE_USER ||
1059 term->type_term == PARSE_EVENTS__TERM_TYPE_DRV_CFG)
1060 /*
1061 * Always succeed for sysfs terms, as we dont know
1062 * at this point what type they need to have.
1063 */
1064 return 0;
1065 else
1066 return config_term_common(attr, term, err);
1067}
1068
1069static int config_term_tracepoint(struct perf_event_attr *attr,
1070 struct parse_events_term *term,
1071 struct parse_events_error *err)
1072{
1073 switch (term->type_term) {
1074 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1075 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1076 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1077 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1078 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1079 case PARSE_EVENTS__TERM_TYPE_OVERWRITE:
1080 case PARSE_EVENTS__TERM_TYPE_NOOVERWRITE:
1081 return config_term_common(attr, term, err);
1082 default:
1083 if (err) {
1084 err->idx = term->err_term;
1085 err->str = strdup("unknown term");
1086 err->help = strdup("valid terms: call-graph,stack-size\n");
1087 }
1088 return -EINVAL;
1089 }
1090
1091 return 0;
1092}
1093
1094static int config_attr(struct perf_event_attr *attr,
1095 struct list_head *head,
1096 struct parse_events_error *err,
1097 config_term_func_t config_term)
1098{
1099 struct parse_events_term *term;
1100
1101 list_for_each_entry(term, head, list)
1102 if (config_term(attr, term, err))
1103 return -EINVAL;
1104
1105 return 0;
1106}
1107
1108static int get_config_terms(struct list_head *head_config,
1109 struct list_head *head_terms __maybe_unused)
1110{
1111#define ADD_CONFIG_TERM(__type, __name, __val) \
1112do { \
1113 struct perf_evsel_config_term *__t; \
1114 \
1115 __t = zalloc(sizeof(*__t)); \
1116 if (!__t) \
1117 return -ENOMEM; \
1118 \
1119 INIT_LIST_HEAD(&__t->list); \
1120 __t->type = PERF_EVSEL__CONFIG_TERM_ ## __type; \
1121 __t->val.__name = __val; \
1122 __t->weak = term->weak; \
1123 list_add_tail(&__t->list, head_terms); \
1124} while (0)
1125
1126 struct parse_events_term *term;
1127
1128 list_for_each_entry(term, head_config, list) {
1129 switch (term->type_term) {
1130 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
1131 ADD_CONFIG_TERM(PERIOD, period, term->val.num);
1132 break;
1133 case PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ:
1134 ADD_CONFIG_TERM(FREQ, freq, term->val.num);
1135 break;
1136 case PARSE_EVENTS__TERM_TYPE_TIME:
1137 ADD_CONFIG_TERM(TIME, time, term->val.num);
1138 break;
1139 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1140 ADD_CONFIG_TERM(CALLGRAPH, callgraph, term->val.str);
1141 break;
1142 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
1143 ADD_CONFIG_TERM(BRANCH, branch, term->val.str);
1144 break;
1145 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1146 ADD_CONFIG_TERM(STACK_USER, stack_user, term->val.num);
1147 break;
1148 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1149 ADD_CONFIG_TERM(INHERIT, inherit, term->val.num ? 1 : 0);
1150 break;
1151 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1152 ADD_CONFIG_TERM(INHERIT, inherit, term->val.num ? 0 : 1);
1153 break;
1154 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1155 ADD_CONFIG_TERM(MAX_STACK, max_stack, term->val.num);
1156 break;
1157 case PARSE_EVENTS__TERM_TYPE_OVERWRITE:
1158 ADD_CONFIG_TERM(OVERWRITE, overwrite, term->val.num ? 1 : 0);
1159 break;
1160 case PARSE_EVENTS__TERM_TYPE_NOOVERWRITE:
1161 ADD_CONFIG_TERM(OVERWRITE, overwrite, term->val.num ? 0 : 1);
1162 break;
1163 case PARSE_EVENTS__TERM_TYPE_DRV_CFG:
1164 ADD_CONFIG_TERM(DRV_CFG, drv_cfg, term->val.str);
1165 break;
1166 default:
1167 break;
1168 }
1169 }
1170#undef ADD_EVSEL_CONFIG
1171 return 0;
1172}
1173
1174int parse_events_add_tracepoint(struct list_head *list, int *idx,
1175 const char *sys, const char *event,
1176 struct parse_events_error *err,
1177 struct list_head *head_config)
1178{
1179 if (head_config) {
1180 struct perf_event_attr attr;
1181
1182 if (config_attr(&attr, head_config, err,
1183 config_term_tracepoint))
1184 return -EINVAL;
1185 }
1186
1187 if (strpbrk(sys, "*?"))
1188 return add_tracepoint_multi_sys(list, idx, sys, event,
1189 err, head_config);
1190 else
1191 return add_tracepoint_event(list, idx, sys, event,
1192 err, head_config);
1193}
1194
1195int parse_events_add_numeric(struct parse_events_state *parse_state,
1196 struct list_head *list,
1197 u32 type, u64 config,
1198 struct list_head *head_config)
1199{
1200 struct perf_event_attr attr;
1201 LIST_HEAD(config_terms);
1202
1203 memset(&attr, 0, sizeof(attr));
1204 attr.type = type;
1205 attr.config = config;
1206
1207 if (head_config) {
1208 if (config_attr(&attr, head_config, parse_state->error,
1209 config_term_common))
1210 return -EINVAL;
1211
1212 if (get_config_terms(head_config, &config_terms))
1213 return -ENOMEM;
1214 }
1215
1216 return add_event(list, &parse_state->idx, &attr,
1217 get_config_name(head_config), &config_terms);
1218}
1219
1220int parse_events_add_pmu(struct parse_events_state *parse_state,
1221 struct list_head *list, char *name,
1222 struct list_head *head_config,
1223 bool auto_merge_stats,
1224 bool use_alias)
1225{
1226 struct perf_event_attr attr;
1227 struct perf_pmu_info info;
1228 struct perf_pmu *pmu;
1229 struct perf_evsel *evsel;
1230 struct parse_events_error *err = parse_state->error;
1231 bool use_uncore_alias;
1232 LIST_HEAD(config_terms);
1233
1234 pmu = perf_pmu__find(name);
1235 if (!pmu) {
1236 if (asprintf(&err->str,
1237 "Cannot find PMU `%s'. Missing kernel support?",
1238 name) < 0)
1239 err->str = NULL;
1240 return -EINVAL;
1241 }
1242
1243 if (pmu->default_config) {
1244 memcpy(&attr, pmu->default_config,
1245 sizeof(struct perf_event_attr));
1246 } else {
1247 memset(&attr, 0, sizeof(attr));
1248 }
1249
1250 use_uncore_alias = (pmu->is_uncore && use_alias);
1251
1252 if (!head_config) {
1253 attr.type = pmu->type;
1254 evsel = __add_event(list, &parse_state->idx, &attr, NULL, pmu, NULL, auto_merge_stats);
1255 if (evsel) {
1256 evsel->pmu_name = name;
1257 evsel->use_uncore_alias = use_uncore_alias;
1258 return 0;
1259 } else {
1260 return -ENOMEM;
1261 }
1262 }
1263
1264 if (perf_pmu__check_alias(pmu, head_config, &info))
1265 return -EINVAL;
1266
1267 /*
1268 * Configure hardcoded terms first, no need to check
1269 * return value when called with fail == 0 ;)
1270 */
1271 if (config_attr(&attr, head_config, parse_state->error, config_term_pmu))
1272 return -EINVAL;
1273
1274 if (get_config_terms(head_config, &config_terms))
1275 return -ENOMEM;
1276
1277 if (perf_pmu__config(pmu, &attr, head_config, parse_state->error))
1278 return -EINVAL;
1279
1280 evsel = __add_event(list, &parse_state->idx, &attr,
1281 get_config_name(head_config), pmu,
1282 &config_terms, auto_merge_stats);
1283 if (evsel) {
1284 evsel->unit = info.unit;
1285 evsel->scale = info.scale;
1286 evsel->per_pkg = info.per_pkg;
1287 evsel->snapshot = info.snapshot;
1288 evsel->metric_expr = info.metric_expr;
1289 evsel->metric_name = info.metric_name;
1290 evsel->pmu_name = name;
1291 evsel->use_uncore_alias = use_uncore_alias;
1292 }
1293
1294 return evsel ? 0 : -ENOMEM;
1295}
1296
1297int parse_events_multi_pmu_add(struct parse_events_state *parse_state,
1298 char *str, struct list_head **listp)
1299{
1300 struct list_head *head;
1301 struct parse_events_term *term;
1302 struct list_head *list;
1303 struct perf_pmu *pmu = NULL;
1304 int ok = 0;
1305
1306 *listp = NULL;
1307 /* Add it for all PMUs that support the alias */
1308 list = malloc(sizeof(struct list_head));
1309 if (!list)
1310 return -1;
1311 INIT_LIST_HEAD(list);
1312 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1313 struct perf_pmu_alias *alias;
1314
1315 list_for_each_entry(alias, &pmu->aliases, list) {
1316 if (!strcasecmp(alias->name, str)) {
1317 head = malloc(sizeof(struct list_head));
1318 if (!head)
1319 return -1;
1320 INIT_LIST_HEAD(head);
1321 if (parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
1322 str, 1, false, &str, NULL) < 0)
1323 return -1;
1324 list_add_tail(&term->list, head);
1325
1326 if (!parse_events_add_pmu(parse_state, list,
1327 pmu->name, head,
1328 true, true)) {
1329 pr_debug("%s -> %s/%s/\n", str,
1330 pmu->name, alias->str);
1331 ok++;
1332 }
1333
1334 parse_events_terms__delete(head);
1335 }
1336 }
1337 }
1338 if (!ok)
1339 return -1;
1340 *listp = list;
1341 return 0;
1342}
1343
1344int parse_events__modifier_group(struct list_head *list,
1345 char *event_mod)
1346{
1347 return parse_events__modifier_event(list, event_mod, true);
1348}
1349
1350/*
1351 * Check if the two uncore PMUs are from the same uncore block
1352 * The format of the uncore PMU name is uncore_#blockname_#pmuidx
1353 */
1354static bool is_same_uncore_block(const char *pmu_name_a, const char *pmu_name_b)
1355{
1356 char *end_a, *end_b;
1357
1358 end_a = strrchr(pmu_name_a, '_');
1359 end_b = strrchr(pmu_name_b, '_');
1360
1361 if (!end_a || !end_b)
1362 return false;
1363
1364 if ((end_a - pmu_name_a) != (end_b - pmu_name_b))
1365 return false;
1366
1367 return (strncmp(pmu_name_a, pmu_name_b, end_a - pmu_name_a) == 0);
1368}
1369
1370static int
1371parse_events__set_leader_for_uncore_aliase(char *name, struct list_head *list,
1372 struct parse_events_state *parse_state)
1373{
1374 struct perf_evsel *evsel, *leader;
1375 uintptr_t *leaders;
1376 bool is_leader = true;
1377 int i, nr_pmu = 0, total_members, ret = 0;
1378
1379 leader = list_first_entry(list, struct perf_evsel, node);
1380 evsel = list_last_entry(list, struct perf_evsel, node);
1381 total_members = evsel->idx - leader->idx + 1;
1382
1383 leaders = calloc(total_members, sizeof(uintptr_t));
1384 if (WARN_ON(!leaders))
1385 return 0;
1386
1387 /*
1388 * Going through the whole group and doing sanity check.
1389 * All members must use alias, and be from the same uncore block.
1390 * Also, storing the leader events in an array.
1391 */
1392 __evlist__for_each_entry(list, evsel) {
1393
1394 /* Only split the uncore group which members use alias */
1395 if (!evsel->use_uncore_alias)
1396 goto out;
1397
1398 /* The events must be from the same uncore block */
1399 if (!is_same_uncore_block(leader->pmu_name, evsel->pmu_name))
1400 goto out;
1401
1402 if (!is_leader)
1403 continue;
1404 /*
1405 * If the event's PMU name starts to repeat, it must be a new
1406 * event. That can be used to distinguish the leader from
1407 * other members, even they have the same event name.
1408 */
1409 if ((leader != evsel) && (leader->pmu_name == evsel->pmu_name)) {
1410 is_leader = false;
1411 continue;
1412 }
1413 /* The name is always alias name */
1414 WARN_ON(strcmp(leader->name, evsel->name));
1415
1416 /* Store the leader event for each PMU */
1417 leaders[nr_pmu++] = (uintptr_t) evsel;
1418 }
1419
1420 /* only one event alias */
1421 if (nr_pmu == total_members) {
1422 parse_state->nr_groups--;
1423 goto handled;
1424 }
1425
1426 /*
1427 * An uncore event alias is a joint name which means the same event
1428 * runs on all PMUs of a block.
1429 * Perf doesn't support mixed events from different PMUs in the same
1430 * group. The big group has to be split into multiple small groups
1431 * which only include the events from the same PMU.
1432 *
1433 * Here the uncore event aliases must be from the same uncore block.
1434 * The number of PMUs must be same for each alias. The number of new
1435 * small groups equals to the number of PMUs.
1436 * Setting the leader event for corresponding members in each group.
1437 */
1438 i = 0;
1439 __evlist__for_each_entry(list, evsel) {
1440 if (i >= nr_pmu)
1441 i = 0;
1442 evsel->leader = (struct perf_evsel *) leaders[i++];
1443 }
1444
1445 /* The number of members and group name are same for each group */
1446 for (i = 0; i < nr_pmu; i++) {
1447 evsel = (struct perf_evsel *) leaders[i];
1448 evsel->nr_members = total_members / nr_pmu;
1449 evsel->group_name = name ? strdup(name) : NULL;
1450 }
1451
1452 /* Take the new small groups into account */
1453 parse_state->nr_groups += nr_pmu - 1;
1454
1455handled:
1456 ret = 1;
1457out:
1458 free(leaders);
1459 return ret;
1460}
1461
1462void parse_events__set_leader(char *name, struct list_head *list,
1463 struct parse_events_state *parse_state)
1464{
1465 struct perf_evsel *leader;
1466
1467 if (list_empty(list)) {
1468 WARN_ONCE(true, "WARNING: failed to set leader: empty list");
1469 return;
1470 }
1471
1472 if (parse_events__set_leader_for_uncore_aliase(name, list, parse_state))
1473 return;
1474
1475 __perf_evlist__set_leader(list);
1476 leader = list_entry(list->next, struct perf_evsel, node);
1477 leader->group_name = name ? strdup(name) : NULL;
1478}
1479
1480/* list_event is assumed to point to malloc'ed memory */
1481void parse_events_update_lists(struct list_head *list_event,
1482 struct list_head *list_all)
1483{
1484 /*
1485 * Called for single event definition. Update the
1486 * 'all event' list, and reinit the 'single event'
1487 * list, for next event definition.
1488 */
1489 list_splice_tail(list_event, list_all);
1490 free(list_event);
1491}
1492
1493struct event_modifier {
1494 int eu;
1495 int ek;
1496 int eh;
1497 int eH;
1498 int eG;
1499 int eI;
1500 int precise;
1501 int precise_max;
1502 int exclude_GH;
1503 int sample_read;
1504 int pinned;
1505 int weak;
1506};
1507
1508static int get_event_modifier(struct event_modifier *mod, char *str,
1509 struct perf_evsel *evsel)
1510{
1511 int eu = evsel ? evsel->attr.exclude_user : 0;
1512 int ek = evsel ? evsel->attr.exclude_kernel : 0;
1513 int eh = evsel ? evsel->attr.exclude_hv : 0;
1514 int eH = evsel ? evsel->attr.exclude_host : 0;
1515 int eG = evsel ? evsel->attr.exclude_guest : 0;
1516 int eI = evsel ? evsel->attr.exclude_idle : 0;
1517 int precise = evsel ? evsel->attr.precise_ip : 0;
1518 int precise_max = 0;
1519 int sample_read = 0;
1520 int pinned = evsel ? evsel->attr.pinned : 0;
1521
1522 int exclude = eu | ek | eh;
1523 int exclude_GH = evsel ? evsel->exclude_GH : 0;
1524 int weak = 0;
1525
1526 memset(mod, 0, sizeof(*mod));
1527
1528 while (*str) {
1529 if (*str == 'u') {
1530 if (!exclude)
1531 exclude = eu = ek = eh = 1;
1532 eu = 0;
1533 } else if (*str == 'k') {
1534 if (!exclude)
1535 exclude = eu = ek = eh = 1;
1536 ek = 0;
1537 } else if (*str == 'h') {
1538 if (!exclude)
1539 exclude = eu = ek = eh = 1;
1540 eh = 0;
1541 } else if (*str == 'G') {
1542 if (!exclude_GH)
1543 exclude_GH = eG = eH = 1;
1544 eG = 0;
1545 } else if (*str == 'H') {
1546 if (!exclude_GH)
1547 exclude_GH = eG = eH = 1;
1548 eH = 0;
1549 } else if (*str == 'I') {
1550 eI = 1;
1551 } else if (*str == 'p') {
1552 precise++;
1553 /* use of precise requires exclude_guest */
1554 if (!exclude_GH)
1555 eG = 1;
1556 } else if (*str == 'P') {
1557 precise_max = 1;
1558 } else if (*str == 'S') {
1559 sample_read = 1;
1560 } else if (*str == 'D') {
1561 pinned = 1;
1562 } else if (*str == 'W') {
1563 weak = 1;
1564 } else
1565 break;
1566
1567 ++str;
1568 }
1569
1570 /*
1571 * precise ip:
1572 *
1573 * 0 - SAMPLE_IP can have arbitrary skid
1574 * 1 - SAMPLE_IP must have constant skid
1575 * 2 - SAMPLE_IP requested to have 0 skid
1576 * 3 - SAMPLE_IP must have 0 skid
1577 *
1578 * See also PERF_RECORD_MISC_EXACT_IP
1579 */
1580 if (precise > 3)
1581 return -EINVAL;
1582
1583 mod->eu = eu;
1584 mod->ek = ek;
1585 mod->eh = eh;
1586 mod->eH = eH;
1587 mod->eG = eG;
1588 mod->eI = eI;
1589 mod->precise = precise;
1590 mod->precise_max = precise_max;
1591 mod->exclude_GH = exclude_GH;
1592 mod->sample_read = sample_read;
1593 mod->pinned = pinned;
1594 mod->weak = weak;
1595
1596 return 0;
1597}
1598
1599/*
1600 * Basic modifier sanity check to validate it contains only one
1601 * instance of any modifier (apart from 'p') present.
1602 */
1603static int check_modifier(char *str)
1604{
1605 char *p = str;
1606
1607 /* The sizeof includes 0 byte as well. */
1608 if (strlen(str) > (sizeof("ukhGHpppPSDIW") - 1))
1609 return -1;
1610
1611 while (*p) {
1612 if (*p != 'p' && strchr(p + 1, *p))
1613 return -1;
1614 p++;
1615 }
1616
1617 return 0;
1618}
1619
1620int parse_events__modifier_event(struct list_head *list, char *str, bool add)
1621{
1622 struct perf_evsel *evsel;
1623 struct event_modifier mod;
1624
1625 if (str == NULL)
1626 return 0;
1627
1628 if (check_modifier(str))
1629 return -EINVAL;
1630
1631 if (!add && get_event_modifier(&mod, str, NULL))
1632 return -EINVAL;
1633
1634 __evlist__for_each_entry(list, evsel) {
1635 if (add && get_event_modifier(&mod, str, evsel))
1636 return -EINVAL;
1637
1638 evsel->attr.exclude_user = mod.eu;
1639 evsel->attr.exclude_kernel = mod.ek;
1640 evsel->attr.exclude_hv = mod.eh;
1641 evsel->attr.precise_ip = mod.precise;
1642 evsel->attr.exclude_host = mod.eH;
1643 evsel->attr.exclude_guest = mod.eG;
1644 evsel->attr.exclude_idle = mod.eI;
1645 evsel->exclude_GH = mod.exclude_GH;
1646 evsel->sample_read = mod.sample_read;
1647 evsel->precise_max = mod.precise_max;
1648 evsel->weak_group = mod.weak;
1649
1650 if (perf_evsel__is_group_leader(evsel))
1651 evsel->attr.pinned = mod.pinned;
1652 }
1653
1654 return 0;
1655}
1656
1657int parse_events_name(struct list_head *list, char *name)
1658{
1659 struct perf_evsel *evsel;
1660
1661 __evlist__for_each_entry(list, evsel) {
1662 if (!evsel->name)
1663 evsel->name = strdup(name);
1664 }
1665
1666 return 0;
1667}
1668
1669static int
1670comp_pmu(const void *p1, const void *p2)
1671{
1672 struct perf_pmu_event_symbol *pmu1 = (struct perf_pmu_event_symbol *) p1;
1673 struct perf_pmu_event_symbol *pmu2 = (struct perf_pmu_event_symbol *) p2;
1674
1675 return strcasecmp(pmu1->symbol, pmu2->symbol);
1676}
1677
1678static void perf_pmu__parse_cleanup(void)
1679{
1680 if (perf_pmu_events_list_num > 0) {
1681 struct perf_pmu_event_symbol *p;
1682 int i;
1683
1684 for (i = 0; i < perf_pmu_events_list_num; i++) {
1685 p = perf_pmu_events_list + i;
1686 zfree(&p->symbol);
1687 }
1688 zfree(&perf_pmu_events_list);
1689 perf_pmu_events_list_num = 0;
1690 }
1691}
1692
1693#define SET_SYMBOL(str, stype) \
1694do { \
1695 p->symbol = str; \
1696 if (!p->symbol) \
1697 goto err; \
1698 p->type = stype; \
1699} while (0)
1700
1701/*
1702 * Read the pmu events list from sysfs
1703 * Save it into perf_pmu_events_list
1704 */
1705static void perf_pmu__parse_init(void)
1706{
1707
1708 struct perf_pmu *pmu = NULL;
1709 struct perf_pmu_alias *alias;
1710 int len = 0;
1711
1712 pmu = NULL;
1713 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1714 list_for_each_entry(alias, &pmu->aliases, list) {
1715 if (strchr(alias->name, '-'))
1716 len++;
1717 len++;
1718 }
1719 }
1720
1721 if (len == 0) {
1722 perf_pmu_events_list_num = -1;
1723 return;
1724 }
1725 perf_pmu_events_list = malloc(sizeof(struct perf_pmu_event_symbol) * len);
1726 if (!perf_pmu_events_list)
1727 return;
1728 perf_pmu_events_list_num = len;
1729
1730 len = 0;
1731 pmu = NULL;
1732 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1733 list_for_each_entry(alias, &pmu->aliases, list) {
1734 struct perf_pmu_event_symbol *p = perf_pmu_events_list + len;
1735 char *tmp = strchr(alias->name, '-');
1736
1737 if (tmp != NULL) {
1738 SET_SYMBOL(strndup(alias->name, tmp - alias->name),
1739 PMU_EVENT_SYMBOL_PREFIX);
1740 p++;
1741 SET_SYMBOL(strdup(++tmp), PMU_EVENT_SYMBOL_SUFFIX);
1742 len += 2;
1743 } else {
1744 SET_SYMBOL(strdup(alias->name), PMU_EVENT_SYMBOL);
1745 len++;
1746 }
1747 }
1748 }
1749 qsort(perf_pmu_events_list, len,
1750 sizeof(struct perf_pmu_event_symbol), comp_pmu);
1751
1752 return;
1753err:
1754 perf_pmu__parse_cleanup();
1755}
1756
1757enum perf_pmu_event_symbol_type
1758perf_pmu__parse_check(const char *name)
1759{
1760 struct perf_pmu_event_symbol p, *r;
1761
1762 /* scan kernel pmu events from sysfs if needed */
1763 if (perf_pmu_events_list_num == 0)
1764 perf_pmu__parse_init();
1765 /*
1766 * name "cpu" could be prefix of cpu-cycles or cpu// events.
1767 * cpu-cycles has been handled by hardcode.
1768 * So it must be cpu// events, not kernel pmu event.
1769 */
1770 if ((perf_pmu_events_list_num <= 0) || !strcmp(name, "cpu"))
1771 return PMU_EVENT_SYMBOL_ERR;
1772
1773 p.symbol = strdup(name);
1774 r = bsearch(&p, perf_pmu_events_list,
1775 (size_t) perf_pmu_events_list_num,
1776 sizeof(struct perf_pmu_event_symbol), comp_pmu);
1777 zfree(&p.symbol);
1778 return r ? r->type : PMU_EVENT_SYMBOL_ERR;
1779}
1780
1781static int parse_events__scanner(const char *str, void *parse_state, int start_token)
1782{
1783 YY_BUFFER_STATE buffer;
1784 void *scanner;
1785 int ret;
1786
1787 ret = parse_events_lex_init_extra(start_token, &scanner);
1788 if (ret)
1789 return ret;
1790
1791 buffer = parse_events__scan_string(str, scanner);
1792
1793#ifdef PARSER_DEBUG
1794 parse_events_debug = 1;
1795#endif
1796 ret = parse_events_parse(parse_state, scanner);
1797
1798 parse_events__flush_buffer(buffer, scanner);
1799 parse_events__delete_buffer(buffer, scanner);
1800 parse_events_lex_destroy(scanner);
1801 return ret;
1802}
1803
1804/*
1805 * parse event config string, return a list of event terms.
1806 */
1807int parse_events_terms(struct list_head *terms, const char *str)
1808{
1809 struct parse_events_state parse_state = {
1810 .terms = NULL,
1811 };
1812 int ret;
1813
1814 ret = parse_events__scanner(str, &parse_state, PE_START_TERMS);
1815 if (!ret) {
1816 list_splice(parse_state.terms, terms);
1817 zfree(&parse_state.terms);
1818 return 0;
1819 }
1820
1821 parse_events_terms__delete(parse_state.terms);
1822 return ret;
1823}
1824
1825int parse_events(struct perf_evlist *evlist, const char *str,
1826 struct parse_events_error *err)
1827{
1828 struct parse_events_state parse_state = {
1829 .list = LIST_HEAD_INIT(parse_state.list),
1830 .idx = evlist->nr_entries,
1831 .error = err,
1832 .evlist = evlist,
1833 };
1834 int ret;
1835
1836 ret = parse_events__scanner(str, &parse_state, PE_START_EVENTS);
1837 perf_pmu__parse_cleanup();
1838 if (!ret) {
1839 struct perf_evsel *last;
1840
1841 if (list_empty(&parse_state.list)) {
1842 WARN_ONCE(true, "WARNING: event parser found nothing\n");
1843 return -1;
1844 }
1845
1846 perf_evlist__splice_list_tail(evlist, &parse_state.list);
1847 evlist->nr_groups += parse_state.nr_groups;
1848 last = perf_evlist__last(evlist);
1849 last->cmdline_group_boundary = true;
1850
1851 return 0;
1852 }
1853
1854 /*
1855 * There are 2 users - builtin-record and builtin-test objects.
1856 * Both call perf_evlist__delete in case of error, so we dont
1857 * need to bother.
1858 */
1859 return ret;
1860}
1861
1862#define MAX_WIDTH 1000
1863static int get_term_width(void)
1864{
1865 struct winsize ws;
1866
1867 get_term_dimensions(&ws);
1868 return ws.ws_col > MAX_WIDTH ? MAX_WIDTH : ws.ws_col;
1869}
1870
1871void parse_events_print_error(struct parse_events_error *err,
1872 const char *event)
1873{
1874 const char *str = "invalid or unsupported event: ";
1875 char _buf[MAX_WIDTH];
1876 char *buf = (char *) event;
1877 int idx = 0;
1878
1879 if (err->str) {
1880 /* -2 for extra '' in the final fprintf */
1881 int width = get_term_width() - 2;
1882 int len_event = strlen(event);
1883 int len_str, max_len, cut = 0;
1884
1885 /*
1886 * Maximum error index indent, we will cut
1887 * the event string if it's bigger.
1888 */
1889 int max_err_idx = 13;
1890
1891 /*
1892 * Let's be specific with the message when
1893 * we have the precise error.
1894 */
1895 str = "event syntax error: ";
1896 len_str = strlen(str);
1897 max_len = width - len_str;
1898
1899 buf = _buf;
1900
1901 /* We're cutting from the beginning. */
1902 if (err->idx > max_err_idx)
1903 cut = err->idx - max_err_idx;
1904
1905 strncpy(buf, event + cut, max_len);
1906
1907 /* Mark cut parts with '..' on both sides. */
1908 if (cut)
1909 buf[0] = buf[1] = '.';
1910
1911 if ((len_event - cut) > max_len) {
1912 buf[max_len - 1] = buf[max_len - 2] = '.';
1913 buf[max_len] = 0;
1914 }
1915
1916 idx = len_str + err->idx - cut;
1917 }
1918
1919 fprintf(stderr, "%s'%s'\n", str, buf);
1920 if (idx) {
1921 fprintf(stderr, "%*s\\___ %s\n", idx + 1, "", err->str);
1922 if (err->help)
1923 fprintf(stderr, "\n%s\n", err->help);
1924 zfree(&err->str);
1925 zfree(&err->help);
1926 }
1927}
1928
1929#undef MAX_WIDTH
1930
1931int parse_events_option(const struct option *opt, const char *str,
1932 int unset __maybe_unused)
1933{
1934 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
1935 struct parse_events_error err = { .idx = 0, };
1936 int ret = parse_events(evlist, str, &err);
1937
1938 if (ret) {
1939 parse_events_print_error(&err, str);
1940 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
1941 }
1942
1943 return ret;
1944}
1945
1946static int
1947foreach_evsel_in_last_glob(struct perf_evlist *evlist,
1948 int (*func)(struct perf_evsel *evsel,
1949 const void *arg),
1950 const void *arg)
1951{
1952 struct perf_evsel *last = NULL;
1953 int err;
1954
1955 /*
1956 * Don't return when list_empty, give func a chance to report
1957 * error when it found last == NULL.
1958 *
1959 * So no need to WARN here, let *func do this.
1960 */
1961 if (evlist->nr_entries > 0)
1962 last = perf_evlist__last(evlist);
1963
1964 do {
1965 err = (*func)(last, arg);
1966 if (err)
1967 return -1;
1968 if (!last)
1969 return 0;
1970
1971 if (last->node.prev == &evlist->entries)
1972 return 0;
1973 last = list_entry(last->node.prev, struct perf_evsel, node);
1974 } while (!last->cmdline_group_boundary);
1975
1976 return 0;
1977}
1978
1979static int set_filter(struct perf_evsel *evsel, const void *arg)
1980{
1981 const char *str = arg;
1982 bool found = false;
1983 int nr_addr_filters = 0;
1984 struct perf_pmu *pmu = NULL;
1985
1986 if (evsel == NULL)
1987 goto err;
1988
1989 if (evsel->attr.type == PERF_TYPE_TRACEPOINT) {
1990 if (perf_evsel__append_tp_filter(evsel, str) < 0) {
1991 fprintf(stderr,
1992 "not enough memory to hold filter string\n");
1993 return -1;
1994 }
1995
1996 return 0;
1997 }
1998
1999 while ((pmu = perf_pmu__scan(pmu)) != NULL)
2000 if (pmu->type == evsel->attr.type) {
2001 found = true;
2002 break;
2003 }
2004
2005 if (found)
2006 perf_pmu__scan_file(pmu, "nr_addr_filters",
2007 "%d", &nr_addr_filters);
2008
2009 if (!nr_addr_filters)
2010 goto err;
2011
2012 if (perf_evsel__append_addr_filter(evsel, str) < 0) {
2013 fprintf(stderr,
2014 "not enough memory to hold filter string\n");
2015 return -1;
2016 }
2017
2018 return 0;
2019
2020err:
2021 fprintf(stderr,
2022 "--filter option should follow a -e tracepoint or HW tracer option\n");
2023
2024 return -1;
2025}
2026
2027int parse_filter(const struct option *opt, const char *str,
2028 int unset __maybe_unused)
2029{
2030 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
2031
2032 return foreach_evsel_in_last_glob(evlist, set_filter,
2033 (const void *)str);
2034}
2035
2036static int add_exclude_perf_filter(struct perf_evsel *evsel,
2037 const void *arg __maybe_unused)
2038{
2039 char new_filter[64];
2040
2041 if (evsel == NULL || evsel->attr.type != PERF_TYPE_TRACEPOINT) {
2042 fprintf(stderr,
2043 "--exclude-perf option should follow a -e tracepoint option\n");
2044 return -1;
2045 }
2046
2047 snprintf(new_filter, sizeof(new_filter), "common_pid != %d", getpid());
2048
2049 if (perf_evsel__append_tp_filter(evsel, new_filter) < 0) {
2050 fprintf(stderr,
2051 "not enough memory to hold filter string\n");
2052 return -1;
2053 }
2054
2055 return 0;
2056}
2057
2058int exclude_perf(const struct option *opt,
2059 const char *arg __maybe_unused,
2060 int unset __maybe_unused)
2061{
2062 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
2063
2064 return foreach_evsel_in_last_glob(evlist, add_exclude_perf_filter,
2065 NULL);
2066}
2067
2068static const char * const event_type_descriptors[] = {
2069 "Hardware event",
2070 "Software event",
2071 "Tracepoint event",
2072 "Hardware cache event",
2073 "Raw hardware event descriptor",
2074 "Hardware breakpoint",
2075};
2076
2077static int cmp_string(const void *a, const void *b)
2078{
2079 const char * const *as = a;
2080 const char * const *bs = b;
2081
2082 return strcmp(*as, *bs);
2083}
2084
2085/*
2086 * Print the events from <debugfs_mount_point>/tracing/events
2087 */
2088
2089void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
2090 bool name_only)
2091{
2092 DIR *sys_dir, *evt_dir;
2093 struct dirent *sys_dirent, *evt_dirent;
2094 char evt_path[MAXPATHLEN];
2095 char dir_path[MAXPATHLEN];
2096 char **evt_list = NULL;
2097 unsigned int evt_i = 0, evt_num = 0;
2098 bool evt_num_known = false;
2099
2100restart:
2101 sys_dir = opendir(tracing_events_path);
2102 if (!sys_dir)
2103 return;
2104
2105 if (evt_num_known) {
2106 evt_list = zalloc(sizeof(char *) * evt_num);
2107 if (!evt_list)
2108 goto out_close_sys_dir;
2109 }
2110
2111 for_each_subsystem(sys_dir, sys_dirent) {
2112 if (subsys_glob != NULL &&
2113 !strglobmatch(sys_dirent->d_name, subsys_glob))
2114 continue;
2115
2116 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
2117 sys_dirent->d_name);
2118 evt_dir = opendir(dir_path);
2119 if (!evt_dir)
2120 continue;
2121
2122 for_each_event(sys_dirent, evt_dir, evt_dirent) {
2123 if (event_glob != NULL &&
2124 !strglobmatch(evt_dirent->d_name, event_glob))
2125 continue;
2126
2127 if (!evt_num_known) {
2128 evt_num++;
2129 continue;
2130 }
2131
2132 snprintf(evt_path, MAXPATHLEN, "%s:%s",
2133 sys_dirent->d_name, evt_dirent->d_name);
2134
2135 evt_list[evt_i] = strdup(evt_path);
2136 if (evt_list[evt_i] == NULL)
2137 goto out_close_evt_dir;
2138 evt_i++;
2139 }
2140 closedir(evt_dir);
2141 }
2142 closedir(sys_dir);
2143
2144 if (!evt_num_known) {
2145 evt_num_known = true;
2146 goto restart;
2147 }
2148 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2149 evt_i = 0;
2150 while (evt_i < evt_num) {
2151 if (name_only) {
2152 printf("%s ", evt_list[evt_i++]);
2153 continue;
2154 }
2155 printf(" %-50s [%s]\n", evt_list[evt_i++],
2156 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
2157 }
2158 if (evt_num && pager_in_use())
2159 printf("\n");
2160
2161out_free:
2162 evt_num = evt_i;
2163 for (evt_i = 0; evt_i < evt_num; evt_i++)
2164 zfree(&evt_list[evt_i]);
2165 zfree(&evt_list);
2166 return;
2167
2168out_close_evt_dir:
2169 closedir(evt_dir);
2170out_close_sys_dir:
2171 closedir(sys_dir);
2172
2173 printf("FATAL: not enough memory to print %s\n",
2174 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
2175 if (evt_list)
2176 goto out_free;
2177}
2178
2179/*
2180 * Check whether event is in <debugfs_mount_point>/tracing/events
2181 */
2182
2183int is_valid_tracepoint(const char *event_string)
2184{
2185 DIR *sys_dir, *evt_dir;
2186 struct dirent *sys_dirent, *evt_dirent;
2187 char evt_path[MAXPATHLEN];
2188 char dir_path[MAXPATHLEN];
2189
2190 sys_dir = opendir(tracing_events_path);
2191 if (!sys_dir)
2192 return 0;
2193
2194 for_each_subsystem(sys_dir, sys_dirent) {
2195
2196 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
2197 sys_dirent->d_name);
2198 evt_dir = opendir(dir_path);
2199 if (!evt_dir)
2200 continue;
2201
2202 for_each_event(sys_dirent, evt_dir, evt_dirent) {
2203 snprintf(evt_path, MAXPATHLEN, "%s:%s",
2204 sys_dirent->d_name, evt_dirent->d_name);
2205 if (!strcmp(evt_path, event_string)) {
2206 closedir(evt_dir);
2207 closedir(sys_dir);
2208 return 1;
2209 }
2210 }
2211 closedir(evt_dir);
2212 }
2213 closedir(sys_dir);
2214 return 0;
2215}
2216
2217static bool is_event_supported(u8 type, unsigned config)
2218{
2219 bool ret = true;
2220 int open_return;
2221 struct perf_evsel *evsel;
2222 struct perf_event_attr attr = {
2223 .type = type,
2224 .config = config,
2225 .disabled = 1,
2226 };
2227 struct thread_map *tmap = thread_map__new_by_tid(0);
2228
2229 if (tmap == NULL)
2230 return false;
2231
2232 evsel = perf_evsel__new(&attr);
2233 if (evsel) {
2234 open_return = perf_evsel__open(evsel, NULL, tmap);
2235 ret = open_return >= 0;
2236
2237 if (open_return == -EACCES) {
2238 /*
2239 * This happens if the paranoid value
2240 * /proc/sys/kernel/perf_event_paranoid is set to 2
2241 * Re-run with exclude_kernel set; we don't do that
2242 * by default as some ARM machines do not support it.
2243 *
2244 */
2245 evsel->attr.exclude_kernel = 1;
2246 ret = perf_evsel__open(evsel, NULL, tmap) >= 0;
2247 }
2248 perf_evsel__delete(evsel);
2249 }
2250
2251 return ret;
2252}
2253
2254void print_sdt_events(const char *subsys_glob, const char *event_glob,
2255 bool name_only)
2256{
2257 struct probe_cache *pcache;
2258 struct probe_cache_entry *ent;
2259 struct strlist *bidlist, *sdtlist;
2260 struct strlist_config cfg = {.dont_dupstr = true};
2261 struct str_node *nd, *nd2;
2262 char *buf, *path, *ptr = NULL;
2263 bool show_detail = false;
2264 int ret;
2265
2266 sdtlist = strlist__new(NULL, &cfg);
2267 if (!sdtlist) {
2268 pr_debug("Failed to allocate new strlist for SDT\n");
2269 return;
2270 }
2271 bidlist = build_id_cache__list_all(true);
2272 if (!bidlist) {
2273 pr_debug("Failed to get buildids: %d\n", errno);
2274 return;
2275 }
2276 strlist__for_each_entry(nd, bidlist) {
2277 pcache = probe_cache__new(nd->s, NULL);
2278 if (!pcache)
2279 continue;
2280 list_for_each_entry(ent, &pcache->entries, node) {
2281 if (!ent->sdt)
2282 continue;
2283 if (subsys_glob &&
2284 !strglobmatch(ent->pev.group, subsys_glob))
2285 continue;
2286 if (event_glob &&
2287 !strglobmatch(ent->pev.event, event_glob))
2288 continue;
2289 ret = asprintf(&buf, "%s:%s@%s", ent->pev.group,
2290 ent->pev.event, nd->s);
2291 if (ret > 0)
2292 strlist__add(sdtlist, buf);
2293 }
2294 probe_cache__delete(pcache);
2295 }
2296 strlist__delete(bidlist);
2297
2298 strlist__for_each_entry(nd, sdtlist) {
2299 buf = strchr(nd->s, '@');
2300 if (buf)
2301 *(buf++) = '\0';
2302 if (name_only) {
2303 printf("%s ", nd->s);
2304 continue;
2305 }
2306 nd2 = strlist__next(nd);
2307 if (nd2) {
2308 ptr = strchr(nd2->s, '@');
2309 if (ptr)
2310 *ptr = '\0';
2311 if (strcmp(nd->s, nd2->s) == 0)
2312 show_detail = true;
2313 }
2314 if (show_detail) {
2315 path = build_id_cache__origname(buf);
2316 ret = asprintf(&buf, "%s@%s(%.12s)", nd->s, path, buf);
2317 if (ret > 0) {
2318 printf(" %-50s [%s]\n", buf, "SDT event");
2319 free(buf);
2320 }
2321 } else
2322 printf(" %-50s [%s]\n", nd->s, "SDT event");
2323 if (nd2) {
2324 if (strcmp(nd->s, nd2->s) != 0)
2325 show_detail = false;
2326 if (ptr)
2327 *ptr = '@';
2328 }
2329 }
2330 strlist__delete(sdtlist);
2331}
2332
2333int print_hwcache_events(const char *event_glob, bool name_only)
2334{
2335 unsigned int type, op, i, evt_i = 0, evt_num = 0;
2336 char name[64];
2337 char **evt_list = NULL;
2338 bool evt_num_known = false;
2339
2340restart:
2341 if (evt_num_known) {
2342 evt_list = zalloc(sizeof(char *) * evt_num);
2343 if (!evt_list)
2344 goto out_enomem;
2345 }
2346
2347 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
2348 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
2349 /* skip invalid cache type */
2350 if (!perf_evsel__is_cache_op_valid(type, op))
2351 continue;
2352
2353 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
2354 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
2355 name, sizeof(name));
2356 if (event_glob != NULL && !strglobmatch(name, event_glob))
2357 continue;
2358
2359 if (!is_event_supported(PERF_TYPE_HW_CACHE,
2360 type | (op << 8) | (i << 16)))
2361 continue;
2362
2363 if (!evt_num_known) {
2364 evt_num++;
2365 continue;
2366 }
2367
2368 evt_list[evt_i] = strdup(name);
2369 if (evt_list[evt_i] == NULL)
2370 goto out_enomem;
2371 evt_i++;
2372 }
2373 }
2374 }
2375
2376 if (!evt_num_known) {
2377 evt_num_known = true;
2378 goto restart;
2379 }
2380 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2381 evt_i = 0;
2382 while (evt_i < evt_num) {
2383 if (name_only) {
2384 printf("%s ", evt_list[evt_i++]);
2385 continue;
2386 }
2387 printf(" %-50s [%s]\n", evt_list[evt_i++],
2388 event_type_descriptors[PERF_TYPE_HW_CACHE]);
2389 }
2390 if (evt_num && pager_in_use())
2391 printf("\n");
2392
2393out_free:
2394 evt_num = evt_i;
2395 for (evt_i = 0; evt_i < evt_num; evt_i++)
2396 zfree(&evt_list[evt_i]);
2397 zfree(&evt_list);
2398 return evt_num;
2399
2400out_enomem:
2401 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[PERF_TYPE_HW_CACHE]);
2402 if (evt_list)
2403 goto out_free;
2404 return evt_num;
2405}
2406
2407void print_symbol_events(const char *event_glob, unsigned type,
2408 struct event_symbol *syms, unsigned max,
2409 bool name_only)
2410{
2411 unsigned int i, evt_i = 0, evt_num = 0;
2412 char name[MAX_NAME_LEN];
2413 char **evt_list = NULL;
2414 bool evt_num_known = false;
2415
2416restart:
2417 if (evt_num_known) {
2418 evt_list = zalloc(sizeof(char *) * evt_num);
2419 if (!evt_list)
2420 goto out_enomem;
2421 syms -= max;
2422 }
2423
2424 for (i = 0; i < max; i++, syms++) {
2425
2426 if (event_glob != NULL && syms->symbol != NULL &&
2427 !(strglobmatch(syms->symbol, event_glob) ||
2428 (syms->alias && strglobmatch(syms->alias, event_glob))))
2429 continue;
2430
2431 if (!is_event_supported(type, i))
2432 continue;
2433
2434 if (!evt_num_known) {
2435 evt_num++;
2436 continue;
2437 }
2438
2439 if (!name_only && strlen(syms->alias))
2440 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
2441 else
2442 strncpy(name, syms->symbol, MAX_NAME_LEN);
2443
2444 evt_list[evt_i] = strdup(name);
2445 if (evt_list[evt_i] == NULL)
2446 goto out_enomem;
2447 evt_i++;
2448 }
2449
2450 if (!evt_num_known) {
2451 evt_num_known = true;
2452 goto restart;
2453 }
2454 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2455 evt_i = 0;
2456 while (evt_i < evt_num) {
2457 if (name_only) {
2458 printf("%s ", evt_list[evt_i++]);
2459 continue;
2460 }
2461 printf(" %-50s [%s]\n", evt_list[evt_i++], event_type_descriptors[type]);
2462 }
2463 if (evt_num && pager_in_use())
2464 printf("\n");
2465
2466out_free:
2467 evt_num = evt_i;
2468 for (evt_i = 0; evt_i < evt_num; evt_i++)
2469 zfree(&evt_list[evt_i]);
2470 zfree(&evt_list);
2471 return;
2472
2473out_enomem:
2474 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[type]);
2475 if (evt_list)
2476 goto out_free;
2477}
2478
2479/*
2480 * Print the help text for the event symbols:
2481 */
2482void print_events(const char *event_glob, bool name_only, bool quiet_flag,
2483 bool long_desc, bool details_flag)
2484{
2485 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
2486 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
2487
2488 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
2489 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
2490
2491 print_hwcache_events(event_glob, name_only);
2492
2493 print_pmu_events(event_glob, name_only, quiet_flag, long_desc,
2494 details_flag);
2495
2496 if (event_glob != NULL)
2497 return;
2498
2499 if (!name_only) {
2500 printf(" %-50s [%s]\n",
2501 "rNNN",
2502 event_type_descriptors[PERF_TYPE_RAW]);
2503 printf(" %-50s [%s]\n",
2504 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
2505 event_type_descriptors[PERF_TYPE_RAW]);
2506 if (pager_in_use())
2507 printf(" (see 'man perf-list' on how to encode it)\n\n");
2508
2509 printf(" %-50s [%s]\n",
2510 "mem:<addr>[/len][:access]",
2511 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
2512 if (pager_in_use())
2513 printf("\n");
2514 }
2515
2516 print_tracepoint_events(NULL, NULL, name_only);
2517
2518 print_sdt_events(NULL, NULL, name_only);
2519
2520 metricgroup__print(true, true, NULL, name_only);
2521}
2522
2523int parse_events__is_hardcoded_term(struct parse_events_term *term)
2524{
2525 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
2526}
2527
2528static int new_term(struct parse_events_term **_term,
2529 struct parse_events_term *temp,
2530 char *str, u64 num)
2531{
2532 struct parse_events_term *term;
2533
2534 term = malloc(sizeof(*term));
2535 if (!term)
2536 return -ENOMEM;
2537
2538 *term = *temp;
2539 INIT_LIST_HEAD(&term->list);
2540 term->weak = false;
2541
2542 switch (term->type_val) {
2543 case PARSE_EVENTS__TERM_TYPE_NUM:
2544 term->val.num = num;
2545 break;
2546 case PARSE_EVENTS__TERM_TYPE_STR:
2547 term->val.str = str;
2548 break;
2549 default:
2550 free(term);
2551 return -EINVAL;
2552 }
2553
2554 *_term = term;
2555 return 0;
2556}
2557
2558int parse_events_term__num(struct parse_events_term **term,
2559 int type_term, char *config, u64 num,
2560 bool no_value,
2561 void *loc_term_, void *loc_val_)
2562{
2563 YYLTYPE *loc_term = loc_term_;
2564 YYLTYPE *loc_val = loc_val_;
2565
2566 struct parse_events_term temp = {
2567 .type_val = PARSE_EVENTS__TERM_TYPE_NUM,
2568 .type_term = type_term,
2569 .config = config,
2570 .no_value = no_value,
2571 .err_term = loc_term ? loc_term->first_column : 0,
2572 .err_val = loc_val ? loc_val->first_column : 0,
2573 };
2574
2575 return new_term(term, &temp, NULL, num);
2576}
2577
2578int parse_events_term__str(struct parse_events_term **term,
2579 int type_term, char *config, char *str,
2580 void *loc_term_, void *loc_val_)
2581{
2582 YYLTYPE *loc_term = loc_term_;
2583 YYLTYPE *loc_val = loc_val_;
2584
2585 struct parse_events_term temp = {
2586 .type_val = PARSE_EVENTS__TERM_TYPE_STR,
2587 .type_term = type_term,
2588 .config = config,
2589 .err_term = loc_term ? loc_term->first_column : 0,
2590 .err_val = loc_val ? loc_val->first_column : 0,
2591 };
2592
2593 return new_term(term, &temp, str, 0);
2594}
2595
2596int parse_events_term__sym_hw(struct parse_events_term **term,
2597 char *config, unsigned idx)
2598{
2599 struct event_symbol *sym;
2600 struct parse_events_term temp = {
2601 .type_val = PARSE_EVENTS__TERM_TYPE_STR,
2602 .type_term = PARSE_EVENTS__TERM_TYPE_USER,
2603 .config = config ?: (char *) "event",
2604 };
2605
2606 BUG_ON(idx >= PERF_COUNT_HW_MAX);
2607 sym = &event_symbols_hw[idx];
2608
2609 return new_term(term, &temp, (char *) sym->symbol, 0);
2610}
2611
2612int parse_events_term__clone(struct parse_events_term **new,
2613 struct parse_events_term *term)
2614{
2615 struct parse_events_term temp = {
2616 .type_val = term->type_val,
2617 .type_term = term->type_term,
2618 .config = term->config,
2619 .err_term = term->err_term,
2620 .err_val = term->err_val,
2621 };
2622
2623 return new_term(new, &temp, term->val.str, term->val.num);
2624}
2625
2626int parse_events_copy_term_list(struct list_head *old,
2627 struct list_head **new)
2628{
2629 struct parse_events_term *term, *n;
2630 int ret;
2631
2632 if (!old) {
2633 *new = NULL;
2634 return 0;
2635 }
2636
2637 *new = malloc(sizeof(struct list_head));
2638 if (!*new)
2639 return -ENOMEM;
2640 INIT_LIST_HEAD(*new);
2641
2642 list_for_each_entry (term, old, list) {
2643 ret = parse_events_term__clone(&n, term);
2644 if (ret)
2645 return ret;
2646 list_add_tail(&n->list, *new);
2647 }
2648 return 0;
2649}
2650
2651void parse_events_terms__purge(struct list_head *terms)
2652{
2653 struct parse_events_term *term, *h;
2654
2655 list_for_each_entry_safe(term, h, terms, list) {
2656 if (term->array.nr_ranges)
2657 zfree(&term->array.ranges);
2658 list_del_init(&term->list);
2659 free(term);
2660 }
2661}
2662
2663void parse_events_terms__delete(struct list_head *terms)
2664{
2665 if (!terms)
2666 return;
2667 parse_events_terms__purge(terms);
2668 free(terms);
2669}
2670
2671void parse_events__clear_array(struct parse_events_array *a)
2672{
2673 zfree(&a->ranges);
2674}
2675
2676void parse_events_evlist_error(struct parse_events_state *parse_state,
2677 int idx, const char *str)
2678{
2679 struct parse_events_error *err = parse_state->error;
2680
2681 if (!err)
2682 return;
2683 err->idx = idx;
2684 err->str = strdup(str);
2685 WARN_ONCE(!err->str, "WARNING: failed to allocate error string");
2686}
2687
2688static void config_terms_list(char *buf, size_t buf_sz)
2689{
2690 int i;
2691 bool first = true;
2692
2693 buf[0] = '\0';
2694 for (i = 0; i < __PARSE_EVENTS__TERM_TYPE_NR; i++) {
2695 const char *name = config_term_names[i];
2696
2697 if (!config_term_avail(i, NULL))
2698 continue;
2699 if (!name)
2700 continue;
2701 if (name[0] == '<')
2702 continue;
2703
2704 if (strlen(buf) + strlen(name) + 2 >= buf_sz)
2705 return;
2706
2707 if (!first)
2708 strcat(buf, ",");
2709 else
2710 first = false;
2711 strcat(buf, name);
2712 }
2713}
2714
2715/*
2716 * Return string contains valid config terms of an event.
2717 * @additional_terms: For terms such as PMU sysfs terms.
2718 */
2719char *parse_events_formats_error_string(char *additional_terms)
2720{
2721 char *str;
2722 /* "no-overwrite" is the longest name */
2723 char static_terms[__PARSE_EVENTS__TERM_TYPE_NR *
2724 (sizeof("no-overwrite") - 1)];
2725
2726 config_terms_list(static_terms, sizeof(static_terms));
2727 /* valid terms */
2728 if (additional_terms) {
2729 if (asprintf(&str, "valid terms: %s,%s",
2730 additional_terms, static_terms) < 0)
2731 goto fail;
2732 } else {
2733 if (asprintf(&str, "valid terms: %s", static_terms) < 0)
2734 goto fail;
2735 }
2736 return str;
2737
2738fail:
2739 return NULL;
2740}
1#include "../../../include/linux/hw_breakpoint.h"
2#include "util.h"
3#include "../perf.h"
4#include "evlist.h"
5#include "evsel.h"
6#include "parse-options.h"
7#include "parse-events.h"
8#include "exec_cmd.h"
9#include "string.h"
10#include "symbol.h"
11#include "cache.h"
12#include "header.h"
13#include "debugfs.h"
14
15struct event_symbol {
16 u8 type;
17 u64 config;
18 const char *symbol;
19 const char *alias;
20};
21
22enum event_result {
23 EVT_FAILED,
24 EVT_HANDLED,
25 EVT_HANDLED_ALL
26};
27
28char debugfs_path[MAXPATHLEN];
29
30#define CHW(x) .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_##x
31#define CSW(x) .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_##x
32
33static struct event_symbol event_symbols[] = {
34 { CHW(CPU_CYCLES), "cpu-cycles", "cycles" },
35 { CHW(STALLED_CYCLES_FRONTEND), "stalled-cycles-frontend", "idle-cycles-frontend" },
36 { CHW(STALLED_CYCLES_BACKEND), "stalled-cycles-backend", "idle-cycles-backend" },
37 { CHW(INSTRUCTIONS), "instructions", "" },
38 { CHW(CACHE_REFERENCES), "cache-references", "" },
39 { CHW(CACHE_MISSES), "cache-misses", "" },
40 { CHW(BRANCH_INSTRUCTIONS), "branch-instructions", "branches" },
41 { CHW(BRANCH_MISSES), "branch-misses", "" },
42 { CHW(BUS_CYCLES), "bus-cycles", "" },
43
44 { CSW(CPU_CLOCK), "cpu-clock", "" },
45 { CSW(TASK_CLOCK), "task-clock", "" },
46 { CSW(PAGE_FAULTS), "page-faults", "faults" },
47 { CSW(PAGE_FAULTS_MIN), "minor-faults", "" },
48 { CSW(PAGE_FAULTS_MAJ), "major-faults", "" },
49 { CSW(CONTEXT_SWITCHES), "context-switches", "cs" },
50 { CSW(CPU_MIGRATIONS), "cpu-migrations", "migrations" },
51 { CSW(ALIGNMENT_FAULTS), "alignment-faults", "" },
52 { CSW(EMULATION_FAULTS), "emulation-faults", "" },
53};
54
55#define __PERF_EVENT_FIELD(config, name) \
56 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
57
58#define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
59#define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
60#define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
61#define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
62
63static const char *hw_event_names[PERF_COUNT_HW_MAX] = {
64 "cycles",
65 "instructions",
66 "cache-references",
67 "cache-misses",
68 "branches",
69 "branch-misses",
70 "bus-cycles",
71 "stalled-cycles-frontend",
72 "stalled-cycles-backend",
73};
74
75static const char *sw_event_names[PERF_COUNT_SW_MAX] = {
76 "cpu-clock",
77 "task-clock",
78 "page-faults",
79 "context-switches",
80 "CPU-migrations",
81 "minor-faults",
82 "major-faults",
83 "alignment-faults",
84 "emulation-faults",
85};
86
87#define MAX_ALIASES 8
88
89static const char *hw_cache[PERF_COUNT_HW_CACHE_MAX][MAX_ALIASES] = {
90 { "L1-dcache", "l1-d", "l1d", "L1-data", },
91 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
92 { "LLC", "L2", },
93 { "dTLB", "d-tlb", "Data-TLB", },
94 { "iTLB", "i-tlb", "Instruction-TLB", },
95 { "branch", "branches", "bpu", "btb", "bpc", },
96 { "node", },
97};
98
99static const char *hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX][MAX_ALIASES] = {
100 { "load", "loads", "read", },
101 { "store", "stores", "write", },
102 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
103};
104
105static const char *hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
106 [MAX_ALIASES] = {
107 { "refs", "Reference", "ops", "access", },
108 { "misses", "miss", },
109};
110
111#define C(x) PERF_COUNT_HW_CACHE_##x
112#define CACHE_READ (1 << C(OP_READ))
113#define CACHE_WRITE (1 << C(OP_WRITE))
114#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
115#define COP(x) (1 << x)
116
117/*
118 * cache operartion stat
119 * L1I : Read and prefetch only
120 * ITLB and BPU : Read-only
121 */
122static unsigned long hw_cache_stat[C(MAX)] = {
123 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
124 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
125 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
126 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
127 [C(ITLB)] = (CACHE_READ),
128 [C(BPU)] = (CACHE_READ),
129 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
130};
131
132#define for_each_subsystem(sys_dir, sys_dirent, sys_next) \
133 while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \
134 if (sys_dirent.d_type == DT_DIR && \
135 (strcmp(sys_dirent.d_name, ".")) && \
136 (strcmp(sys_dirent.d_name, "..")))
137
138static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
139{
140 char evt_path[MAXPATHLEN];
141 int fd;
142
143 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path,
144 sys_dir->d_name, evt_dir->d_name);
145 fd = open(evt_path, O_RDONLY);
146 if (fd < 0)
147 return -EINVAL;
148 close(fd);
149
150 return 0;
151}
152
153#define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \
154 while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \
155 if (evt_dirent.d_type == DT_DIR && \
156 (strcmp(evt_dirent.d_name, ".")) && \
157 (strcmp(evt_dirent.d_name, "..")) && \
158 (!tp_event_has_id(&sys_dirent, &evt_dirent)))
159
160#define MAX_EVENT_LENGTH 512
161
162
163struct tracepoint_path *tracepoint_id_to_path(u64 config)
164{
165 struct tracepoint_path *path = NULL;
166 DIR *sys_dir, *evt_dir;
167 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
168 char id_buf[4];
169 int fd;
170 u64 id;
171 char evt_path[MAXPATHLEN];
172 char dir_path[MAXPATHLEN];
173
174 if (debugfs_valid_mountpoint(debugfs_path))
175 return NULL;
176
177 sys_dir = opendir(debugfs_path);
178 if (!sys_dir)
179 return NULL;
180
181 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
182
183 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
184 sys_dirent.d_name);
185 evt_dir = opendir(dir_path);
186 if (!evt_dir)
187 continue;
188
189 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
190
191 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
192 evt_dirent.d_name);
193 fd = open(evt_path, O_RDONLY);
194 if (fd < 0)
195 continue;
196 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
197 close(fd);
198 continue;
199 }
200 close(fd);
201 id = atoll(id_buf);
202 if (id == config) {
203 closedir(evt_dir);
204 closedir(sys_dir);
205 path = zalloc(sizeof(*path));
206 path->system = malloc(MAX_EVENT_LENGTH);
207 if (!path->system) {
208 free(path);
209 return NULL;
210 }
211 path->name = malloc(MAX_EVENT_LENGTH);
212 if (!path->name) {
213 free(path->system);
214 free(path);
215 return NULL;
216 }
217 strncpy(path->system, sys_dirent.d_name,
218 MAX_EVENT_LENGTH);
219 strncpy(path->name, evt_dirent.d_name,
220 MAX_EVENT_LENGTH);
221 return path;
222 }
223 }
224 closedir(evt_dir);
225 }
226
227 closedir(sys_dir);
228 return NULL;
229}
230
231#define TP_PATH_LEN (MAX_EVENT_LENGTH * 2 + 1)
232static const char *tracepoint_id_to_name(u64 config)
233{
234 static char buf[TP_PATH_LEN];
235 struct tracepoint_path *path;
236
237 path = tracepoint_id_to_path(config);
238 if (path) {
239 snprintf(buf, TP_PATH_LEN, "%s:%s", path->system, path->name);
240 free(path->name);
241 free(path->system);
242 free(path);
243 } else
244 snprintf(buf, TP_PATH_LEN, "%s:%s", "unknown", "unknown");
245
246 return buf;
247}
248
249static int is_cache_op_valid(u8 cache_type, u8 cache_op)
250{
251 if (hw_cache_stat[cache_type] & COP(cache_op))
252 return 1; /* valid */
253 else
254 return 0; /* invalid */
255}
256
257static char *event_cache_name(u8 cache_type, u8 cache_op, u8 cache_result)
258{
259 static char name[50];
260
261 if (cache_result) {
262 sprintf(name, "%s-%s-%s", hw_cache[cache_type][0],
263 hw_cache_op[cache_op][0],
264 hw_cache_result[cache_result][0]);
265 } else {
266 sprintf(name, "%s-%s", hw_cache[cache_type][0],
267 hw_cache_op[cache_op][1]);
268 }
269
270 return name;
271}
272
273const char *event_type(int type)
274{
275 switch (type) {
276 case PERF_TYPE_HARDWARE:
277 return "hardware";
278
279 case PERF_TYPE_SOFTWARE:
280 return "software";
281
282 case PERF_TYPE_TRACEPOINT:
283 return "tracepoint";
284
285 case PERF_TYPE_HW_CACHE:
286 return "hardware-cache";
287
288 default:
289 break;
290 }
291
292 return "unknown";
293}
294
295const char *event_name(struct perf_evsel *evsel)
296{
297 u64 config = evsel->attr.config;
298 int type = evsel->attr.type;
299
300 if (evsel->name)
301 return evsel->name;
302
303 return __event_name(type, config);
304}
305
306const char *__event_name(int type, u64 config)
307{
308 static char buf[32];
309
310 if (type == PERF_TYPE_RAW) {
311 sprintf(buf, "raw 0x%" PRIx64, config);
312 return buf;
313 }
314
315 switch (type) {
316 case PERF_TYPE_HARDWARE:
317 if (config < PERF_COUNT_HW_MAX && hw_event_names[config])
318 return hw_event_names[config];
319 return "unknown-hardware";
320
321 case PERF_TYPE_HW_CACHE: {
322 u8 cache_type, cache_op, cache_result;
323
324 cache_type = (config >> 0) & 0xff;
325 if (cache_type > PERF_COUNT_HW_CACHE_MAX)
326 return "unknown-ext-hardware-cache-type";
327
328 cache_op = (config >> 8) & 0xff;
329 if (cache_op > PERF_COUNT_HW_CACHE_OP_MAX)
330 return "unknown-ext-hardware-cache-op";
331
332 cache_result = (config >> 16) & 0xff;
333 if (cache_result > PERF_COUNT_HW_CACHE_RESULT_MAX)
334 return "unknown-ext-hardware-cache-result";
335
336 if (!is_cache_op_valid(cache_type, cache_op))
337 return "invalid-cache";
338
339 return event_cache_name(cache_type, cache_op, cache_result);
340 }
341
342 case PERF_TYPE_SOFTWARE:
343 if (config < PERF_COUNT_SW_MAX && sw_event_names[config])
344 return sw_event_names[config];
345 return "unknown-software";
346
347 case PERF_TYPE_TRACEPOINT:
348 return tracepoint_id_to_name(config);
349
350 default:
351 break;
352 }
353
354 return "unknown";
355}
356
357static int parse_aliases(const char **str, const char *names[][MAX_ALIASES], int size)
358{
359 int i, j;
360 int n, longest = -1;
361
362 for (i = 0; i < size; i++) {
363 for (j = 0; j < MAX_ALIASES && names[i][j]; j++) {
364 n = strlen(names[i][j]);
365 if (n > longest && !strncasecmp(*str, names[i][j], n))
366 longest = n;
367 }
368 if (longest > 0) {
369 *str += longest;
370 return i;
371 }
372 }
373
374 return -1;
375}
376
377static enum event_result
378parse_generic_hw_event(const char **str, struct perf_event_attr *attr)
379{
380 const char *s = *str;
381 int cache_type = -1, cache_op = -1, cache_result = -1;
382
383 cache_type = parse_aliases(&s, hw_cache, PERF_COUNT_HW_CACHE_MAX);
384 /*
385 * No fallback - if we cannot get a clear cache type
386 * then bail out:
387 */
388 if (cache_type == -1)
389 return EVT_FAILED;
390
391 while ((cache_op == -1 || cache_result == -1) && *s == '-') {
392 ++s;
393
394 if (cache_op == -1) {
395 cache_op = parse_aliases(&s, hw_cache_op,
396 PERF_COUNT_HW_CACHE_OP_MAX);
397 if (cache_op >= 0) {
398 if (!is_cache_op_valid(cache_type, cache_op))
399 return EVT_FAILED;
400 continue;
401 }
402 }
403
404 if (cache_result == -1) {
405 cache_result = parse_aliases(&s, hw_cache_result,
406 PERF_COUNT_HW_CACHE_RESULT_MAX);
407 if (cache_result >= 0)
408 continue;
409 }
410
411 /*
412 * Can't parse this as a cache op or result, so back up
413 * to the '-'.
414 */
415 --s;
416 break;
417 }
418
419 /*
420 * Fall back to reads:
421 */
422 if (cache_op == -1)
423 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
424
425 /*
426 * Fall back to accesses:
427 */
428 if (cache_result == -1)
429 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
430
431 attr->config = cache_type | (cache_op << 8) | (cache_result << 16);
432 attr->type = PERF_TYPE_HW_CACHE;
433
434 *str = s;
435 return EVT_HANDLED;
436}
437
438static enum event_result
439parse_single_tracepoint_event(char *sys_name,
440 const char *evt_name,
441 unsigned int evt_length,
442 struct perf_event_attr *attr,
443 const char **strp)
444{
445 char evt_path[MAXPATHLEN];
446 char id_buf[4];
447 u64 id;
448 int fd;
449
450 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path,
451 sys_name, evt_name);
452
453 fd = open(evt_path, O_RDONLY);
454 if (fd < 0)
455 return EVT_FAILED;
456
457 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
458 close(fd);
459 return EVT_FAILED;
460 }
461
462 close(fd);
463 id = atoll(id_buf);
464 attr->config = id;
465 attr->type = PERF_TYPE_TRACEPOINT;
466 *strp += strlen(sys_name) + evt_length + 1; /* + 1 for the ':' */
467
468 attr->sample_type |= PERF_SAMPLE_RAW;
469 attr->sample_type |= PERF_SAMPLE_TIME;
470 attr->sample_type |= PERF_SAMPLE_CPU;
471
472 attr->sample_period = 1;
473
474
475 return EVT_HANDLED;
476}
477
478/* sys + ':' + event + ':' + flags*/
479#define MAX_EVOPT_LEN (MAX_EVENT_LENGTH * 2 + 2 + 128)
480static enum event_result
481parse_multiple_tracepoint_event(struct perf_evlist *evlist, char *sys_name,
482 const char *evt_exp, char *flags)
483{
484 char evt_path[MAXPATHLEN];
485 struct dirent *evt_ent;
486 DIR *evt_dir;
487
488 snprintf(evt_path, MAXPATHLEN, "%s/%s", debugfs_path, sys_name);
489 evt_dir = opendir(evt_path);
490
491 if (!evt_dir) {
492 perror("Can't open event dir");
493 return EVT_FAILED;
494 }
495
496 while ((evt_ent = readdir(evt_dir))) {
497 char event_opt[MAX_EVOPT_LEN + 1];
498 int len;
499
500 if (!strcmp(evt_ent->d_name, ".")
501 || !strcmp(evt_ent->d_name, "..")
502 || !strcmp(evt_ent->d_name, "enable")
503 || !strcmp(evt_ent->d_name, "filter"))
504 continue;
505
506 if (!strglobmatch(evt_ent->d_name, evt_exp))
507 continue;
508
509 len = snprintf(event_opt, MAX_EVOPT_LEN, "%s:%s%s%s", sys_name,
510 evt_ent->d_name, flags ? ":" : "",
511 flags ?: "");
512 if (len < 0)
513 return EVT_FAILED;
514
515 if (parse_events(evlist, event_opt, 0))
516 return EVT_FAILED;
517 }
518
519 return EVT_HANDLED_ALL;
520}
521
522static enum event_result
523parse_tracepoint_event(struct perf_evlist *evlist, const char **strp,
524 struct perf_event_attr *attr)
525{
526 const char *evt_name;
527 char *flags = NULL, *comma_loc;
528 char sys_name[MAX_EVENT_LENGTH];
529 unsigned int sys_length, evt_length;
530
531 if (debugfs_valid_mountpoint(debugfs_path))
532 return 0;
533
534 evt_name = strchr(*strp, ':');
535 if (!evt_name)
536 return EVT_FAILED;
537
538 sys_length = evt_name - *strp;
539 if (sys_length >= MAX_EVENT_LENGTH)
540 return 0;
541
542 strncpy(sys_name, *strp, sys_length);
543 sys_name[sys_length] = '\0';
544 evt_name = evt_name + 1;
545
546 comma_loc = strchr(evt_name, ',');
547 if (comma_loc) {
548 /* take the event name up to the comma */
549 evt_name = strndup(evt_name, comma_loc - evt_name);
550 }
551 flags = strchr(evt_name, ':');
552 if (flags) {
553 /* split it out: */
554 evt_name = strndup(evt_name, flags - evt_name);
555 flags++;
556 }
557
558 evt_length = strlen(evt_name);
559 if (evt_length >= MAX_EVENT_LENGTH)
560 return EVT_FAILED;
561 if (strpbrk(evt_name, "*?")) {
562 *strp += strlen(sys_name) + evt_length + 1; /* 1 == the ':' */
563 return parse_multiple_tracepoint_event(evlist, sys_name,
564 evt_name, flags);
565 } else {
566 return parse_single_tracepoint_event(sys_name, evt_name,
567 evt_length, attr, strp);
568 }
569}
570
571static enum event_result
572parse_breakpoint_type(const char *type, const char **strp,
573 struct perf_event_attr *attr)
574{
575 int i;
576
577 for (i = 0; i < 3; i++) {
578 if (!type[i])
579 break;
580
581 switch (type[i]) {
582 case 'r':
583 attr->bp_type |= HW_BREAKPOINT_R;
584 break;
585 case 'w':
586 attr->bp_type |= HW_BREAKPOINT_W;
587 break;
588 case 'x':
589 attr->bp_type |= HW_BREAKPOINT_X;
590 break;
591 default:
592 return EVT_FAILED;
593 }
594 }
595 if (!attr->bp_type) /* Default */
596 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
597
598 *strp = type + i;
599
600 return EVT_HANDLED;
601}
602
603static enum event_result
604parse_breakpoint_event(const char **strp, struct perf_event_attr *attr)
605{
606 const char *target;
607 const char *type;
608 char *endaddr;
609 u64 addr;
610 enum event_result err;
611
612 target = strchr(*strp, ':');
613 if (!target)
614 return EVT_FAILED;
615
616 if (strncmp(*strp, "mem", target - *strp) != 0)
617 return EVT_FAILED;
618
619 target++;
620
621 addr = strtoull(target, &endaddr, 0);
622 if (target == endaddr)
623 return EVT_FAILED;
624
625 attr->bp_addr = addr;
626 *strp = endaddr;
627
628 type = strchr(target, ':');
629
630 /* If no type is defined, just rw as default */
631 if (!type) {
632 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
633 } else {
634 err = parse_breakpoint_type(++type, strp, attr);
635 if (err == EVT_FAILED)
636 return EVT_FAILED;
637 }
638
639 /*
640 * We should find a nice way to override the access length
641 * Provide some defaults for now
642 */
643 if (attr->bp_type == HW_BREAKPOINT_X)
644 attr->bp_len = sizeof(long);
645 else
646 attr->bp_len = HW_BREAKPOINT_LEN_4;
647
648 attr->type = PERF_TYPE_BREAKPOINT;
649
650 return EVT_HANDLED;
651}
652
653static int check_events(const char *str, unsigned int i)
654{
655 int n;
656
657 n = strlen(event_symbols[i].symbol);
658 if (!strncasecmp(str, event_symbols[i].symbol, n))
659 return n;
660
661 n = strlen(event_symbols[i].alias);
662 if (n) {
663 if (!strncasecmp(str, event_symbols[i].alias, n))
664 return n;
665 }
666
667 return 0;
668}
669
670static enum event_result
671parse_symbolic_event(const char **strp, struct perf_event_attr *attr)
672{
673 const char *str = *strp;
674 unsigned int i;
675 int n;
676
677 for (i = 0; i < ARRAY_SIZE(event_symbols); i++) {
678 n = check_events(str, i);
679 if (n > 0) {
680 attr->type = event_symbols[i].type;
681 attr->config = event_symbols[i].config;
682 *strp = str + n;
683 return EVT_HANDLED;
684 }
685 }
686 return EVT_FAILED;
687}
688
689static enum event_result
690parse_raw_event(const char **strp, struct perf_event_attr *attr)
691{
692 const char *str = *strp;
693 u64 config;
694 int n;
695
696 if (*str != 'r')
697 return EVT_FAILED;
698 n = hex2u64(str + 1, &config);
699 if (n > 0) {
700 const char *end = str + n + 1;
701 if (*end != '\0' && *end != ',' && *end != ':')
702 return EVT_FAILED;
703
704 *strp = end;
705 attr->type = PERF_TYPE_RAW;
706 attr->config = config;
707 return EVT_HANDLED;
708 }
709 return EVT_FAILED;
710}
711
712static enum event_result
713parse_numeric_event(const char **strp, struct perf_event_attr *attr)
714{
715 const char *str = *strp;
716 char *endp;
717 unsigned long type;
718 u64 config;
719
720 type = strtoul(str, &endp, 0);
721 if (endp > str && type < PERF_TYPE_MAX && *endp == ':') {
722 str = endp + 1;
723 config = strtoul(str, &endp, 0);
724 if (endp > str) {
725 attr->type = type;
726 attr->config = config;
727 *strp = endp;
728 return EVT_HANDLED;
729 }
730 }
731 return EVT_FAILED;
732}
733
734static int
735parse_event_modifier(const char **strp, struct perf_event_attr *attr)
736{
737 const char *str = *strp;
738 int exclude = 0;
739 int eu = 0, ek = 0, eh = 0, precise = 0;
740
741 if (!*str)
742 return 0;
743
744 if (*str == ',')
745 return 0;
746
747 if (*str++ != ':')
748 return -1;
749
750 while (*str) {
751 if (*str == 'u') {
752 if (!exclude)
753 exclude = eu = ek = eh = 1;
754 eu = 0;
755 } else if (*str == 'k') {
756 if (!exclude)
757 exclude = eu = ek = eh = 1;
758 ek = 0;
759 } else if (*str == 'h') {
760 if (!exclude)
761 exclude = eu = ek = eh = 1;
762 eh = 0;
763 } else if (*str == 'p') {
764 precise++;
765 } else
766 break;
767
768 ++str;
769 }
770 if (str < *strp + 2)
771 return -1;
772
773 *strp = str;
774
775 attr->exclude_user = eu;
776 attr->exclude_kernel = ek;
777 attr->exclude_hv = eh;
778 attr->precise_ip = precise;
779
780 return 0;
781}
782
783/*
784 * Each event can have multiple symbolic names.
785 * Symbolic names are (almost) exactly matched.
786 */
787static enum event_result
788parse_event_symbols(struct perf_evlist *evlist, const char **str,
789 struct perf_event_attr *attr)
790{
791 enum event_result ret;
792
793 ret = parse_tracepoint_event(evlist, str, attr);
794 if (ret != EVT_FAILED)
795 goto modifier;
796
797 ret = parse_raw_event(str, attr);
798 if (ret != EVT_FAILED)
799 goto modifier;
800
801 ret = parse_numeric_event(str, attr);
802 if (ret != EVT_FAILED)
803 goto modifier;
804
805 ret = parse_symbolic_event(str, attr);
806 if (ret != EVT_FAILED)
807 goto modifier;
808
809 ret = parse_generic_hw_event(str, attr);
810 if (ret != EVT_FAILED)
811 goto modifier;
812
813 ret = parse_breakpoint_event(str, attr);
814 if (ret != EVT_FAILED)
815 goto modifier;
816
817 fprintf(stderr, "invalid or unsupported event: '%s'\n", *str);
818 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
819 return EVT_FAILED;
820
821modifier:
822 if (parse_event_modifier(str, attr) < 0) {
823 fprintf(stderr, "invalid event modifier: '%s'\n", *str);
824 fprintf(stderr, "Run 'perf list' for a list of valid events and modifiers\n");
825
826 return EVT_FAILED;
827 }
828
829 return ret;
830}
831
832int parse_events(struct perf_evlist *evlist , const char *str, int unset __used)
833{
834 struct perf_event_attr attr;
835 enum event_result ret;
836 const char *ostr;
837
838 for (;;) {
839 ostr = str;
840 memset(&attr, 0, sizeof(attr));
841 ret = parse_event_symbols(evlist, &str, &attr);
842 if (ret == EVT_FAILED)
843 return -1;
844
845 if (!(*str == 0 || *str == ',' || isspace(*str)))
846 return -1;
847
848 if (ret != EVT_HANDLED_ALL) {
849 struct perf_evsel *evsel;
850 evsel = perf_evsel__new(&attr, evlist->nr_entries);
851 if (evsel == NULL)
852 return -1;
853 perf_evlist__add(evlist, evsel);
854
855 evsel->name = calloc(str - ostr + 1, 1);
856 if (!evsel->name)
857 return -1;
858 strncpy(evsel->name, ostr, str - ostr);
859 }
860
861 if (*str == 0)
862 break;
863 if (*str == ',')
864 ++str;
865 while (isspace(*str))
866 ++str;
867 }
868
869 return 0;
870}
871
872int parse_events_option(const struct option *opt, const char *str,
873 int unset __used)
874{
875 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
876 return parse_events(evlist, str, unset);
877}
878
879int parse_filter(const struct option *opt, const char *str,
880 int unset __used)
881{
882 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
883 struct perf_evsel *last = NULL;
884
885 if (evlist->nr_entries > 0)
886 last = list_entry(evlist->entries.prev, struct perf_evsel, node);
887
888 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
889 fprintf(stderr,
890 "-F option should follow a -e tracepoint option\n");
891 return -1;
892 }
893
894 last->filter = strdup(str);
895 if (last->filter == NULL) {
896 fprintf(stderr, "not enough memory to hold filter string\n");
897 return -1;
898 }
899
900 return 0;
901}
902
903static const char * const event_type_descriptors[] = {
904 "Hardware event",
905 "Software event",
906 "Tracepoint event",
907 "Hardware cache event",
908 "Raw hardware event descriptor",
909 "Hardware breakpoint",
910};
911
912/*
913 * Print the events from <debugfs_mount_point>/tracing/events
914 */
915
916void print_tracepoint_events(const char *subsys_glob, const char *event_glob)
917{
918 DIR *sys_dir, *evt_dir;
919 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
920 char evt_path[MAXPATHLEN];
921 char dir_path[MAXPATHLEN];
922
923 if (debugfs_valid_mountpoint(debugfs_path))
924 return;
925
926 sys_dir = opendir(debugfs_path);
927 if (!sys_dir)
928 return;
929
930 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
931 if (subsys_glob != NULL &&
932 !strglobmatch(sys_dirent.d_name, subsys_glob))
933 continue;
934
935 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
936 sys_dirent.d_name);
937 evt_dir = opendir(dir_path);
938 if (!evt_dir)
939 continue;
940
941 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
942 if (event_glob != NULL &&
943 !strglobmatch(evt_dirent.d_name, event_glob))
944 continue;
945
946 snprintf(evt_path, MAXPATHLEN, "%s:%s",
947 sys_dirent.d_name, evt_dirent.d_name);
948 printf(" %-50s [%s]\n", evt_path,
949 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
950 }
951 closedir(evt_dir);
952 }
953 closedir(sys_dir);
954}
955
956/*
957 * Check whether event is in <debugfs_mount_point>/tracing/events
958 */
959
960int is_valid_tracepoint(const char *event_string)
961{
962 DIR *sys_dir, *evt_dir;
963 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
964 char evt_path[MAXPATHLEN];
965 char dir_path[MAXPATHLEN];
966
967 if (debugfs_valid_mountpoint(debugfs_path))
968 return 0;
969
970 sys_dir = opendir(debugfs_path);
971 if (!sys_dir)
972 return 0;
973
974 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
975
976 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
977 sys_dirent.d_name);
978 evt_dir = opendir(dir_path);
979 if (!evt_dir)
980 continue;
981
982 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
983 snprintf(evt_path, MAXPATHLEN, "%s:%s",
984 sys_dirent.d_name, evt_dirent.d_name);
985 if (!strcmp(evt_path, event_string)) {
986 closedir(evt_dir);
987 closedir(sys_dir);
988 return 1;
989 }
990 }
991 closedir(evt_dir);
992 }
993 closedir(sys_dir);
994 return 0;
995}
996
997void print_events_type(u8 type)
998{
999 struct event_symbol *syms = event_symbols;
1000 unsigned int i;
1001 char name[64];
1002
1003 for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
1004 if (type != syms->type)
1005 continue;
1006
1007 if (strlen(syms->alias))
1008 snprintf(name, sizeof(name), "%s OR %s",
1009 syms->symbol, syms->alias);
1010 else
1011 snprintf(name, sizeof(name), "%s", syms->symbol);
1012
1013 printf(" %-50s [%s]\n", name,
1014 event_type_descriptors[type]);
1015 }
1016}
1017
1018int print_hwcache_events(const char *event_glob)
1019{
1020 unsigned int type, op, i, printed = 0;
1021
1022 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
1023 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
1024 /* skip invalid cache type */
1025 if (!is_cache_op_valid(type, op))
1026 continue;
1027
1028 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
1029 char *name = event_cache_name(type, op, i);
1030
1031 if (event_glob != NULL && !strglobmatch(name, event_glob))
1032 continue;
1033
1034 printf(" %-50s [%s]\n", name,
1035 event_type_descriptors[PERF_TYPE_HW_CACHE]);
1036 ++printed;
1037 }
1038 }
1039 }
1040
1041 return printed;
1042}
1043
1044#define MAX_NAME_LEN 100
1045
1046/*
1047 * Print the help text for the event symbols:
1048 */
1049void print_events(const char *event_glob)
1050{
1051 unsigned int i, type, prev_type = -1, printed = 0, ntypes_printed = 0;
1052 struct event_symbol *syms = event_symbols;
1053 char name[MAX_NAME_LEN];
1054
1055 printf("\n");
1056 printf("List of pre-defined events (to be used in -e):\n");
1057
1058 for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
1059 type = syms->type;
1060
1061 if (type != prev_type && printed) {
1062 printf("\n");
1063 printed = 0;
1064 ntypes_printed++;
1065 }
1066
1067 if (event_glob != NULL &&
1068 !(strglobmatch(syms->symbol, event_glob) ||
1069 (syms->alias && strglobmatch(syms->alias, event_glob))))
1070 continue;
1071
1072 if (strlen(syms->alias))
1073 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
1074 else
1075 strncpy(name, syms->symbol, MAX_NAME_LEN);
1076 printf(" %-50s [%s]\n", name,
1077 event_type_descriptors[type]);
1078
1079 prev_type = type;
1080 ++printed;
1081 }
1082
1083 if (ntypes_printed) {
1084 printed = 0;
1085 printf("\n");
1086 }
1087 print_hwcache_events(event_glob);
1088
1089 if (event_glob != NULL)
1090 return;
1091
1092 printf("\n");
1093 printf(" %-50s [%s]\n",
1094 "rNNN (see 'perf list --help' on how to encode it)",
1095 event_type_descriptors[PERF_TYPE_RAW]);
1096 printf("\n");
1097
1098 printf(" %-50s [%s]\n",
1099 "mem:<addr>[:access]",
1100 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
1101 printf("\n");
1102
1103 print_tracepoint_events(NULL, NULL);
1104}