1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/list.h>
3 #include <linux/compiler.h>
13 #include <api/fs/fs.h>
18 #include "parse-events.h"
21 #include "pmu-events/pmu-events.h"
25 struct perf_pmu_format
{
28 DECLARE_BITMAP(bits
, PERF_PMU_FORMAT_BITS
);
29 struct list_head list
;
32 int perf_pmu_parse(struct list_head
*list
, char *name
);
33 extern FILE *perf_pmu_in
;
35 static LIST_HEAD(pmus
);
38 * Parse & process all the sysfs attributes located under
39 * the directory specified in 'dir' parameter.
41 int perf_pmu__format_parse(char *dir
, struct list_head
*head
)
43 struct dirent
*evt_ent
;
47 format_dir
= opendir(dir
);
51 while (!ret
&& (evt_ent
= readdir(format_dir
))) {
53 char *name
= evt_ent
->d_name
;
56 if (!strcmp(name
, ".") || !strcmp(name
, ".."))
59 snprintf(path
, PATH_MAX
, "%s/%s", dir
, name
);
62 file
= fopen(path
, "r");
67 ret
= perf_pmu_parse(head
, name
);
76 * Reading/parsing the default pmu format definition, which should be
78 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
80 static int pmu_format(const char *name
, struct list_head
*format
)
84 const char *sysfs
= sysfs__mountpoint();
89 snprintf(path
, PATH_MAX
,
90 "%s" EVENT_SOURCE_DEVICE_PATH
"%s/format", sysfs
, name
);
92 if (stat(path
, &st
) < 0)
93 return 0; /* no error if format does not exist */
95 if (perf_pmu__format_parse(path
, format
))
101 static int convert_scale(const char *scale
, char **end
, double *sval
)
107 * save current locale
109 lc
= setlocale(LC_NUMERIC
, NULL
);
112 * The lc string may be allocated in static storage,
113 * so get a dynamic copy to make it survive setlocale
123 * force to C locale to ensure kernel
124 * scale string is converted correctly.
125 * kernel uses default C locale.
127 setlocale(LC_NUMERIC
, "C");
129 *sval
= strtod(scale
, end
);
133 setlocale(LC_NUMERIC
, lc
);
138 static int perf_pmu__parse_scale(struct perf_pmu_alias
*alias
, char *dir
, char *name
)
146 scnprintf(path
, PATH_MAX
, "%s/%s.scale", dir
, name
);
148 fd
= open(path
, O_RDONLY
);
152 if (fstat(fd
, &st
) < 0)
155 sret
= read(fd
, scale
, sizeof(scale
)-1);
159 if (scale
[sret
- 1] == '\n')
160 scale
[sret
- 1] = '\0';
164 ret
= convert_scale(scale
, NULL
, &alias
->scale
);
170 static int perf_pmu__parse_unit(struct perf_pmu_alias
*alias
, char *dir
, char *name
)
176 scnprintf(path
, PATH_MAX
, "%s/%s.unit", dir
, name
);
178 fd
= open(path
, O_RDONLY
);
182 sret
= read(fd
, alias
->unit
, UNIT_MAX_LEN
);
188 if (alias
->unit
[sret
- 1] == '\n')
189 alias
->unit
[sret
- 1] = '\0';
191 alias
->unit
[sret
] = '\0';
196 alias
->unit
[0] = '\0';
201 perf_pmu__parse_per_pkg(struct perf_pmu_alias
*alias
, char *dir
, char *name
)
206 scnprintf(path
, PATH_MAX
, "%s/%s.per-pkg", dir
, name
);
208 fd
= open(path
, O_RDONLY
);
214 alias
->per_pkg
= true;
218 static int perf_pmu__parse_snapshot(struct perf_pmu_alias
*alias
,
219 char *dir
, char *name
)
224 scnprintf(path
, PATH_MAX
, "%s/%s.snapshot", dir
, name
);
226 fd
= open(path
, O_RDONLY
);
230 alias
->snapshot
= true;
235 static void perf_pmu_assign_str(char *name
, const char *field
, char **old_str
,
241 if (*new_str
) { /* Have new string, check with old */
242 if (strcasecmp(*old_str
, *new_str
))
243 pr_debug("alias %s differs in field '%s'\n",
246 } else /* Nothing new --> keep old string */
253 static void perf_pmu_update_alias(struct perf_pmu_alias
*old
,
254 struct perf_pmu_alias
*newalias
)
256 perf_pmu_assign_str(old
->name
, "desc", &old
->desc
, &newalias
->desc
);
257 perf_pmu_assign_str(old
->name
, "long_desc", &old
->long_desc
,
258 &newalias
->long_desc
);
259 perf_pmu_assign_str(old
->name
, "topic", &old
->topic
, &newalias
->topic
);
260 perf_pmu_assign_str(old
->name
, "metric_expr", &old
->metric_expr
,
261 &newalias
->metric_expr
);
262 perf_pmu_assign_str(old
->name
, "metric_name", &old
->metric_name
,
263 &newalias
->metric_name
);
264 perf_pmu_assign_str(old
->name
, "value", &old
->str
, &newalias
->str
);
265 old
->scale
= newalias
->scale
;
266 old
->per_pkg
= newalias
->per_pkg
;
267 old
->snapshot
= newalias
->snapshot
;
268 memcpy(old
->unit
, newalias
->unit
, sizeof(old
->unit
));
271 /* Delete an alias entry. */
272 static void perf_pmu_free_alias(struct perf_pmu_alias
*newalias
)
274 zfree(&newalias
->name
);
275 zfree(&newalias
->desc
);
276 zfree(&newalias
->long_desc
);
277 zfree(&newalias
->topic
);
278 zfree(&newalias
->str
);
279 zfree(&newalias
->metric_expr
);
280 zfree(&newalias
->metric_name
);
281 parse_events_terms__purge(&newalias
->terms
);
285 /* Merge an alias, search in alias list. If this name is already
286 * present merge both of them to combine all information.
288 static bool perf_pmu_merge_alias(struct perf_pmu_alias
*newalias
,
289 struct list_head
*alist
)
291 struct perf_pmu_alias
*a
;
293 list_for_each_entry(a
, alist
, list
) {
294 if (!strcasecmp(newalias
->name
, a
->name
)) {
295 perf_pmu_update_alias(a
, newalias
);
296 perf_pmu_free_alias(newalias
);
303 static int __perf_pmu__new_alias(struct list_head
*list
, char *dir
, char *name
,
304 char *desc
, char *val
,
305 char *long_desc
, char *topic
,
306 char *unit
, char *perpkg
,
310 struct parse_events_term
*term
;
311 struct perf_pmu_alias
*alias
;
316 alias
= malloc(sizeof(*alias
));
320 INIT_LIST_HEAD(&alias
->terms
);
322 alias
->unit
[0] = '\0';
323 alias
->per_pkg
= false;
324 alias
->snapshot
= false;
326 ret
= parse_events_terms(&alias
->terms
, val
);
328 pr_err("Cannot parse alias %s: %d\n", val
, ret
);
333 /* Scan event and remove leading zeroes, spaces, newlines, some
334 * platforms have terms specified as
335 * event=0x0091 (read from files ../<PMU>/events/<FILE>
336 * and terms specified as event=0x91 (read from JSON files).
338 * Rebuild string to make alias->str member comparable.
340 memset(newval
, 0, sizeof(newval
));
342 list_for_each_entry(term
, &alias
->terms
, list
) {
344 ret
+= scnprintf(newval
+ ret
, sizeof(newval
) - ret
,
346 if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_NUM
)
347 ret
+= scnprintf(newval
+ ret
, sizeof(newval
) - ret
,
348 "%s=%#x", term
->config
, term
->val
.num
);
349 else if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_STR
)
350 ret
+= scnprintf(newval
+ ret
, sizeof(newval
) - ret
,
351 "%s=%s", term
->config
, term
->val
.str
);
354 alias
->name
= strdup(name
);
357 * load unit name and scale if available
359 perf_pmu__parse_unit(alias
, dir
, name
);
360 perf_pmu__parse_scale(alias
, dir
, name
);
361 perf_pmu__parse_per_pkg(alias
, dir
, name
);
362 perf_pmu__parse_snapshot(alias
, dir
, name
);
365 alias
->metric_expr
= metric_expr
? strdup(metric_expr
) : NULL
;
366 alias
->metric_name
= metric_name
? strdup(metric_name
): NULL
;
367 alias
->desc
= desc
? strdup(desc
) : NULL
;
368 alias
->long_desc
= long_desc
? strdup(long_desc
) :
369 desc
? strdup(desc
) : NULL
;
370 alias
->topic
= topic
? strdup(topic
) : NULL
;
372 if (convert_scale(unit
, &unit
, &alias
->scale
) < 0)
374 snprintf(alias
->unit
, sizeof(alias
->unit
), "%s", unit
);
376 alias
->per_pkg
= perpkg
&& sscanf(perpkg
, "%d", &num
) == 1 && num
== 1;
377 alias
->str
= strdup(newval
);
379 if (!perf_pmu_merge_alias(alias
, list
))
380 list_add_tail(&alias
->list
, list
);
385 static int perf_pmu__new_alias(struct list_head
*list
, char *dir
, char *name
, FILE *file
)
390 ret
= fread(buf
, 1, sizeof(buf
), file
);
396 /* Remove trailing newline from sysfs file */
399 return __perf_pmu__new_alias(list
, dir
, name
, NULL
, buf
, NULL
, NULL
, NULL
,
403 static inline bool pmu_alias_info_file(char *name
)
408 if (len
> 5 && !strcmp(name
+ len
- 5, ".unit"))
410 if (len
> 6 && !strcmp(name
+ len
- 6, ".scale"))
412 if (len
> 8 && !strcmp(name
+ len
- 8, ".per-pkg"))
414 if (len
> 9 && !strcmp(name
+ len
- 9, ".snapshot"))
421 * Process all the sysfs attributes located under the directory
422 * specified in 'dir' parameter.
424 static int pmu_aliases_parse(char *dir
, struct list_head
*head
)
426 struct dirent
*evt_ent
;
429 event_dir
= opendir(dir
);
433 while ((evt_ent
= readdir(event_dir
))) {
435 char *name
= evt_ent
->d_name
;
438 if (!strcmp(name
, ".") || !strcmp(name
, ".."))
442 * skip info files parsed in perf_pmu__new_alias()
444 if (pmu_alias_info_file(name
))
447 scnprintf(path
, PATH_MAX
, "%s/%s", dir
, name
);
449 file
= fopen(path
, "r");
451 pr_debug("Cannot open %s\n", path
);
455 if (perf_pmu__new_alias(head
, dir
, name
, file
) < 0)
456 pr_debug("Cannot set up %s\n", name
);
465 * Reading the pmu event aliases definition, which should be located at:
466 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
468 static int pmu_aliases(const char *name
, struct list_head
*head
)
472 const char *sysfs
= sysfs__mountpoint();
477 snprintf(path
, PATH_MAX
,
478 "%s/bus/event_source/devices/%s/events", sysfs
, name
);
480 if (stat(path
, &st
) < 0)
481 return 0; /* no error if 'events' does not exist */
483 if (pmu_aliases_parse(path
, head
))
489 static int pmu_alias_terms(struct perf_pmu_alias
*alias
,
490 struct list_head
*terms
)
492 struct parse_events_term
*term
, *cloned
;
496 list_for_each_entry(term
, &alias
->terms
, list
) {
497 ret
= parse_events_term__clone(&cloned
, term
);
499 parse_events_terms__purge(&list
);
503 * Weak terms don't override command line options,
504 * which we don't want for implicit terms in aliases.
507 list_add_tail(&cloned
->list
, &list
);
509 list_splice(&list
, terms
);
514 * Reading/parsing the default pmu type value, which should be
516 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
518 static int pmu_type(const char *name
, __u32
*type
)
524 const char *sysfs
= sysfs__mountpoint();
529 snprintf(path
, PATH_MAX
,
530 "%s" EVENT_SOURCE_DEVICE_PATH
"%s/type", sysfs
, name
);
532 if (stat(path
, &st
) < 0)
535 file
= fopen(path
, "r");
539 if (1 != fscanf(file
, "%u", type
))
546 /* Add all pmus in sysfs to pmu list: */
547 static void pmu_read_sysfs(void)
552 const char *sysfs
= sysfs__mountpoint();
557 snprintf(path
, PATH_MAX
,
558 "%s" EVENT_SOURCE_DEVICE_PATH
, sysfs
);
564 while ((dent
= readdir(dir
))) {
565 if (!strcmp(dent
->d_name
, ".") || !strcmp(dent
->d_name
, ".."))
567 /* add to static LIST_HEAD(pmus): */
568 perf_pmu__find(dent
->d_name
);
574 static struct cpu_map
*__pmu_cpumask(const char *path
)
577 struct cpu_map
*cpus
;
579 file
= fopen(path
, "r");
583 cpus
= cpu_map__read(file
);
589 * Uncore PMUs have a "cpumask" file under sysfs. CPU PMUs (e.g. on arm/arm64)
590 * may have a "cpus" file.
592 #define CPUS_TEMPLATE_UNCORE "%s/bus/event_source/devices/%s/cpumask"
593 #define CPUS_TEMPLATE_CPU "%s/bus/event_source/devices/%s/cpus"
595 static struct cpu_map
*pmu_cpumask(const char *name
)
598 struct cpu_map
*cpus
;
599 const char *sysfs
= sysfs__mountpoint();
600 const char *templates
[] = {
601 CPUS_TEMPLATE_UNCORE
,
605 const char **template;
610 for (template = templates
; *template; template++) {
611 snprintf(path
, PATH_MAX
, *template, sysfs
, name
);
612 cpus
= __pmu_cpumask(path
);
620 static bool pmu_is_uncore(const char *name
)
623 struct cpu_map
*cpus
;
624 const char *sysfs
= sysfs__mountpoint();
626 snprintf(path
, PATH_MAX
, CPUS_TEMPLATE_UNCORE
, sysfs
, name
);
627 cpus
= __pmu_cpumask(path
);
634 * PMU CORE devices have different name other than cpu in sysfs on some
636 * Looking for possible sysfs files to identify the arm core device.
638 static int is_arm_pmu_core(const char *name
)
642 const char *sysfs
= sysfs__mountpoint();
647 /* Look for cpu sysfs (specific to arm) */
648 scnprintf(path
, PATH_MAX
, "%s/bus/event_source/devices/%s/cpus",
650 if (stat(path
, &st
) == 0)
656 static char *perf_pmu__getcpuid(struct perf_pmu
*pmu
)
661 cpuid
= getenv("PERF_CPUID");
663 cpuid
= strdup(cpuid
);
665 cpuid
= get_cpuid_str(pmu
);
670 pr_debug("Using CPUID %s\n", cpuid
);
676 struct pmu_events_map
*perf_pmu__find_map(struct perf_pmu
*pmu
)
678 struct pmu_events_map
*map
;
679 char *cpuid
= perf_pmu__getcpuid(pmu
);
682 /* on some platforms which uses cpus map, cpuid can be NULL for
683 * PMUs other than CORE PMUs.
690 map
= &pmu_events_map
[i
++];
696 if (!strcmp_cpuid_str(map
->cpuid
, cpuid
))
704 * From the pmu_events_map, find the table of PMU events that corresponds
705 * to the current running CPU. Then, add all PMU events from that table
708 static void pmu_add_cpu_aliases(struct list_head
*head
, struct perf_pmu
*pmu
)
711 struct pmu_events_map
*map
;
712 struct pmu_event
*pe
;
713 const char *name
= pmu
->name
;
716 map
= perf_pmu__find_map(pmu
);
721 * Found a matching PMU events table. Create aliases
726 pe
= &map
->table
[i
++];
728 if (pe
->metric_group
|| pe
->metric_name
)
733 if (!is_arm_pmu_core(name
)) {
734 pname
= pe
->pmu
? pe
->pmu
: "cpu";
735 if (strcmp(pname
, name
))
739 /* need type casts to override 'const' */
740 __perf_pmu__new_alias(head
, NULL
, (char *)pe
->name
,
741 (char *)pe
->desc
, (char *)pe
->event
,
742 (char *)pe
->long_desc
, (char *)pe
->topic
,
743 (char *)pe
->unit
, (char *)pe
->perpkg
,
744 (char *)pe
->metric_expr
,
745 (char *)pe
->metric_name
);
749 struct perf_event_attr
* __weak
750 perf_pmu__get_default_config(struct perf_pmu
*pmu __maybe_unused
)
755 static int pmu_max_precise(const char *name
)
758 int max_precise
= -1;
760 scnprintf(path
, PATH_MAX
,
761 "bus/event_source/devices/%s/caps/max_precise",
764 sysfs__read_int(path
, &max_precise
);
768 static struct perf_pmu
*pmu_lookup(const char *name
)
770 struct perf_pmu
*pmu
;
776 * The pmu data we store & need consists of the pmu
777 * type value and format definitions. Load both right
780 if (pmu_format(name
, &format
))
784 * Check the type first to avoid unnecessary work.
786 if (pmu_type(name
, &type
))
789 if (pmu_aliases(name
, &aliases
))
792 pmu
= zalloc(sizeof(*pmu
));
796 pmu
->cpus
= pmu_cpumask(name
);
797 pmu
->name
= strdup(name
);
799 pmu
->is_uncore
= pmu_is_uncore(name
);
800 pmu
->max_precise
= pmu_max_precise(name
);
801 pmu_add_cpu_aliases(&aliases
, pmu
);
803 INIT_LIST_HEAD(&pmu
->format
);
804 INIT_LIST_HEAD(&pmu
->aliases
);
805 list_splice(&format
, &pmu
->format
);
806 list_splice(&aliases
, &pmu
->aliases
);
807 list_add_tail(&pmu
->list
, &pmus
);
809 pmu
->default_config
= perf_pmu__get_default_config(pmu
);
814 static struct perf_pmu
*pmu_find(const char *name
)
816 struct perf_pmu
*pmu
;
818 list_for_each_entry(pmu
, &pmus
, list
)
819 if (!strcmp(pmu
->name
, name
))
825 struct perf_pmu
*perf_pmu__scan(struct perf_pmu
*pmu
)
828 * pmu iterator: If pmu is NULL, we start at the begin,
829 * otherwise return the next pmu. Returns NULL on end.
833 pmu
= list_prepare_entry(pmu
, &pmus
, list
);
835 list_for_each_entry_continue(pmu
, &pmus
, list
)
840 struct perf_pmu
*perf_pmu__find(const char *name
)
842 struct perf_pmu
*pmu
;
845 * Once PMU is loaded it stays in the list,
846 * so we keep us from multiple reading/parsing
847 * the pmu format definitions.
849 pmu
= pmu_find(name
);
853 return pmu_lookup(name
);
856 static struct perf_pmu_format
*
857 pmu_find_format(struct list_head
*formats
, const char *name
)
859 struct perf_pmu_format
*format
;
861 list_for_each_entry(format
, formats
, list
)
862 if (!strcmp(format
->name
, name
))
868 __u64
perf_pmu__format_bits(struct list_head
*formats
, const char *name
)
870 struct perf_pmu_format
*format
= pmu_find_format(formats
, name
);
877 for_each_set_bit(fbit
, format
->bits
, PERF_PMU_FORMAT_BITS
)
878 bits
|= 1ULL << fbit
;
884 * Sets value based on the format definition (format parameter)
885 * and unformated value (value parameter).
887 static void pmu_format_value(unsigned long *format
, __u64 value
, __u64
*v
,
890 unsigned long fbit
, vbit
;
892 for (fbit
= 0, vbit
= 0; fbit
< PERF_PMU_FORMAT_BITS
; fbit
++) {
894 if (!test_bit(fbit
, format
))
897 if (value
& (1llu << vbit
++))
898 *v
|= (1llu << fbit
);
900 *v
&= ~(1llu << fbit
);
904 static __u64
pmu_format_max_value(const unsigned long *format
)
908 w
= bitmap_weight(format
, PERF_PMU_FORMAT_BITS
);
912 return (1ULL << w
) - 1;
917 * Term is a string term, and might be a param-term. Try to look up it's value
918 * in the remaining terms.
919 * - We have a term like "base-or-format-term=param-term",
920 * - We need to find the value supplied for "param-term" (with param-term named
921 * in a config string) later on in the term list.
923 static int pmu_resolve_param_term(struct parse_events_term
*term
,
924 struct list_head
*head_terms
,
927 struct parse_events_term
*t
;
929 list_for_each_entry(t
, head_terms
, list
) {
930 if (t
->type_val
== PARSE_EVENTS__TERM_TYPE_NUM
) {
931 if (!strcmp(t
->config
, term
->config
)) {
940 printf("Required parameter '%s' not specified\n", term
->config
);
945 static char *pmu_formats_string(struct list_head
*formats
)
947 struct perf_pmu_format
*format
;
949 struct strbuf buf
= STRBUF_INIT
;
955 /* sysfs exported terms */
956 list_for_each_entry(format
, formats
, list
)
957 if (strbuf_addf(&buf
, i
++ ? ",%s" : "%s", format
->name
) < 0)
960 str
= strbuf_detach(&buf
, NULL
);
962 strbuf_release(&buf
);
968 * Setup one of config[12] attr members based on the
969 * user input data - term parameter.
971 static int pmu_config_term(struct list_head
*formats
,
972 struct perf_event_attr
*attr
,
973 struct parse_events_term
*term
,
974 struct list_head
*head_terms
,
975 bool zero
, struct parse_events_error
*err
)
977 struct perf_pmu_format
*format
;
982 * If this is a parameter we've already used for parameterized-eval,
983 * skip it in normal eval.
989 * Hardcoded terms should be already in, so nothing
990 * to be done for them.
992 if (parse_events__is_hardcoded_term(term
))
995 format
= pmu_find_format(formats
, term
->config
);
998 printf("Invalid event/parameter '%s'\n", term
->config
);
1000 char *pmu_term
= pmu_formats_string(formats
);
1002 err
->idx
= term
->err_term
;
1003 err
->str
= strdup("unknown term");
1004 err
->help
= parse_events_formats_error_string(pmu_term
);
1010 switch (format
->value
) {
1011 case PERF_PMU_FORMAT_VALUE_CONFIG
:
1014 case PERF_PMU_FORMAT_VALUE_CONFIG1
:
1015 vp
= &attr
->config1
;
1017 case PERF_PMU_FORMAT_VALUE_CONFIG2
:
1018 vp
= &attr
->config2
;
1025 * Either directly use a numeric term, or try to translate string terms
1026 * using event parameters.
1028 if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_NUM
) {
1029 if (term
->no_value
&&
1030 bitmap_weight(format
->bits
, PERF_PMU_FORMAT_BITS
) > 1) {
1032 err
->idx
= term
->err_val
;
1033 err
->str
= strdup("no value assigned for term");
1038 val
= term
->val
.num
;
1039 } else if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_STR
) {
1040 if (strcmp(term
->val
.str
, "?")) {
1042 pr_info("Invalid sysfs entry %s=%s\n",
1043 term
->config
, term
->val
.str
);
1046 err
->idx
= term
->err_val
;
1047 err
->str
= strdup("expected numeric value");
1052 if (pmu_resolve_param_term(term
, head_terms
, &val
))
1057 max_val
= pmu_format_max_value(format
->bits
);
1058 if (val
> max_val
) {
1060 err
->idx
= term
->err_val
;
1061 if (asprintf(&err
->str
,
1062 "value too big for format, maximum is %llu",
1063 (unsigned long long)max_val
) < 0)
1064 err
->str
= strdup("value too big for format");
1068 * Assume we don't care if !err, in which case the value will be
1069 * silently truncated.
1073 pmu_format_value(format
->bits
, val
, vp
, zero
);
1077 int perf_pmu__config_terms(struct list_head
*formats
,
1078 struct perf_event_attr
*attr
,
1079 struct list_head
*head_terms
,
1080 bool zero
, struct parse_events_error
*err
)
1082 struct parse_events_term
*term
;
1084 list_for_each_entry(term
, head_terms
, list
) {
1085 if (pmu_config_term(formats
, attr
, term
, head_terms
,
1094 * Configures event's 'attr' parameter based on the:
1095 * 1) users input - specified in terms parameter
1096 * 2) pmu format definitions - specified by pmu parameter
1098 int perf_pmu__config(struct perf_pmu
*pmu
, struct perf_event_attr
*attr
,
1099 struct list_head
*head_terms
,
1100 struct parse_events_error
*err
)
1102 bool zero
= !!pmu
->default_config
;
1104 attr
->type
= pmu
->type
;
1105 return perf_pmu__config_terms(&pmu
->format
, attr
, head_terms
,
1109 static struct perf_pmu_alias
*pmu_find_alias(struct perf_pmu
*pmu
,
1110 struct parse_events_term
*term
)
1112 struct perf_pmu_alias
*alias
;
1115 if (parse_events__is_hardcoded_term(term
))
1118 if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_NUM
) {
1119 if (term
->val
.num
!= 1)
1121 if (pmu_find_format(&pmu
->format
, term
->config
))
1123 name
= term
->config
;
1124 } else if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_STR
) {
1125 if (strcasecmp(term
->config
, "event"))
1127 name
= term
->val
.str
;
1132 list_for_each_entry(alias
, &pmu
->aliases
, list
) {
1133 if (!strcasecmp(alias
->name
, name
))
1140 static int check_info_data(struct perf_pmu_alias
*alias
,
1141 struct perf_pmu_info
*info
)
1144 * Only one term in event definition can
1145 * define unit, scale and snapshot, fail
1146 * if there's more than one.
1148 if ((info
->unit
&& alias
->unit
[0]) ||
1149 (info
->scale
&& alias
->scale
) ||
1150 (info
->snapshot
&& alias
->snapshot
))
1154 info
->unit
= alias
->unit
;
1157 info
->scale
= alias
->scale
;
1159 if (alias
->snapshot
)
1160 info
->snapshot
= alias
->snapshot
;
1166 * Find alias in the terms list and replace it with the terms
1167 * defined for the alias
1169 int perf_pmu__check_alias(struct perf_pmu
*pmu
, struct list_head
*head_terms
,
1170 struct perf_pmu_info
*info
)
1172 struct parse_events_term
*term
, *h
;
1173 struct perf_pmu_alias
*alias
;
1176 info
->per_pkg
= false;
1179 * Mark unit and scale as not set
1180 * (different from default values, see below)
1184 info
->snapshot
= false;
1185 info
->metric_expr
= NULL
;
1186 info
->metric_name
= NULL
;
1188 list_for_each_entry_safe(term
, h
, head_terms
, list
) {
1189 alias
= pmu_find_alias(pmu
, term
);
1192 ret
= pmu_alias_terms(alias
, &term
->list
);
1196 ret
= check_info_data(alias
, info
);
1201 info
->per_pkg
= true;
1202 info
->metric_expr
= alias
->metric_expr
;
1203 info
->metric_name
= alias
->metric_name
;
1205 list_del(&term
->list
);
1210 * if no unit or scale foundin aliases, then
1211 * set defaults as for evsel
1212 * unit cannot left to NULL
1214 if (info
->unit
== NULL
)
1217 if (info
->scale
== 0.0)
1223 int perf_pmu__new_format(struct list_head
*list
, char *name
,
1224 int config
, unsigned long *bits
)
1226 struct perf_pmu_format
*format
;
1228 format
= zalloc(sizeof(*format
));
1232 format
->name
= strdup(name
);
1233 format
->value
= config
;
1234 memcpy(format
->bits
, bits
, sizeof(format
->bits
));
1236 list_add_tail(&format
->list
, list
);
1240 void perf_pmu__set_format(unsigned long *bits
, long from
, long to
)
1247 memset(bits
, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS
));
1248 for (b
= from
; b
<= to
; b
++)
1252 static int sub_non_neg(int a
, int b
)
1259 static char *format_alias(char *buf
, int len
, struct perf_pmu
*pmu
,
1260 struct perf_pmu_alias
*alias
)
1262 struct parse_events_term
*term
;
1263 int used
= snprintf(buf
, len
, "%s/%s", pmu
->name
, alias
->name
);
1265 list_for_each_entry(term
, &alias
->terms
, list
) {
1266 if (term
->type_val
== PARSE_EVENTS__TERM_TYPE_STR
)
1267 used
+= snprintf(buf
+ used
, sub_non_neg(len
, used
),
1268 ",%s=%s", term
->config
,
1272 if (sub_non_neg(len
, used
) > 0) {
1276 if (sub_non_neg(len
, used
) > 0) {
1280 buf
[len
- 1] = '\0';
1285 static char *format_alias_or(char *buf
, int len
, struct perf_pmu
*pmu
,
1286 struct perf_pmu_alias
*alias
)
1288 snprintf(buf
, len
, "%s OR %s/%s/", alias
->name
, pmu
->name
, alias
->name
);
1302 static int cmp_sevent(const void *a
, const void *b
)
1304 const struct sevent
*as
= a
;
1305 const struct sevent
*bs
= b
;
1307 /* Put extra events last */
1308 if (!!as
->desc
!= !!bs
->desc
)
1309 return !!as
->desc
- !!bs
->desc
;
1310 if (as
->topic
&& bs
->topic
) {
1311 int n
= strcmp(as
->topic
, bs
->topic
);
1316 return strcmp(as
->name
, bs
->name
);
1319 static void wordwrap(char *s
, int start
, int max
, int corr
)
1325 int wlen
= strcspn(s
, " \t");
1327 if (column
+ wlen
>= max
&& column
> start
) {
1328 printf("\n%*s", start
, "");
1329 column
= start
+ corr
;
1331 n
= printf("%s%.*s", column
> start
? " " : "", wlen
, s
);
1340 void print_pmu_events(const char *event_glob
, bool name_only
, bool quiet_flag
,
1341 bool long_desc
, bool details_flag
)
1343 struct perf_pmu
*pmu
;
1344 struct perf_pmu_alias
*alias
;
1348 struct sevent
*aliases
;
1350 int columns
= pager_get_columns();
1355 while ((pmu
= perf_pmu__scan(pmu
)) != NULL
) {
1356 list_for_each_entry(alias
, &pmu
->aliases
, list
)
1358 if (pmu
->selectable
)
1361 aliases
= zalloc(sizeof(struct sevent
) * len
);
1366 while ((pmu
= perf_pmu__scan(pmu
)) != NULL
) {
1367 list_for_each_entry(alias
, &pmu
->aliases
, list
) {
1368 char *name
= alias
->desc
? alias
->name
:
1369 format_alias(buf
, sizeof(buf
), pmu
, alias
);
1370 bool is_cpu
= !strcmp(pmu
->name
, "cpu");
1372 if (event_glob
!= NULL
&&
1373 !(strglobmatch_nocase(name
, event_glob
) ||
1374 (!is_cpu
&& strglobmatch_nocase(alias
->name
,
1377 strglobmatch_nocase(alias
->topic
, event_glob
))))
1380 if (is_cpu
&& !name_only
&& !alias
->desc
)
1381 name
= format_alias_or(buf
, sizeof(buf
), pmu
, alias
);
1383 aliases
[j
].name
= name
;
1384 if (is_cpu
&& !name_only
&& !alias
->desc
)
1385 aliases
[j
].name
= format_alias_or(buf
,
1388 aliases
[j
].name
= strdup(aliases
[j
].name
);
1389 if (!aliases
[j
].name
)
1392 aliases
[j
].desc
= long_desc
? alias
->long_desc
:
1394 aliases
[j
].topic
= alias
->topic
;
1395 aliases
[j
].str
= alias
->str
;
1396 aliases
[j
].pmu
= pmu
->name
;
1397 aliases
[j
].metric_expr
= alias
->metric_expr
;
1398 aliases
[j
].metric_name
= alias
->metric_name
;
1401 if (pmu
->selectable
&&
1402 (event_glob
== NULL
|| strglobmatch(pmu
->name
, event_glob
))) {
1404 if (asprintf(&s
, "%s//", pmu
->name
) < 0)
1406 aliases
[j
].name
= s
;
1411 qsort(aliases
, len
, sizeof(struct sevent
), cmp_sevent
);
1412 for (j
= 0; j
< len
; j
++) {
1413 /* Skip duplicates */
1414 if (j
> 0 && !strcmp(aliases
[j
].name
, aliases
[j
- 1].name
))
1417 printf("%s ", aliases
[j
].name
);
1420 if (aliases
[j
].desc
&& !quiet_flag
) {
1423 if (aliases
[j
].topic
&& (!topic
||
1424 strcmp(topic
, aliases
[j
].topic
))) {
1425 printf("%s%s:\n", topic
? "\n" : "",
1427 topic
= aliases
[j
].topic
;
1429 printf(" %-50s\n", aliases
[j
].name
);
1430 printf("%*s", 8, "[");
1431 wordwrap(aliases
[j
].desc
, 8, columns
, 0);
1434 printf("%*s%s/%s/ ", 8, "", aliases
[j
].pmu
, aliases
[j
].str
);
1435 if (aliases
[j
].metric_name
)
1436 printf(" MetricName: %s", aliases
[j
].metric_name
);
1437 if (aliases
[j
].metric_expr
)
1438 printf(" MetricExpr: %s", aliases
[j
].metric_expr
);
1442 printf(" %-50s [Kernel PMU event]\n", aliases
[j
].name
);
1445 if (printed
&& pager_in_use())
1448 for (j
= 0; j
< len
; j
++)
1449 zfree(&aliases
[j
].name
);
1454 printf("FATAL: not enough memory to print PMU events\n");
1459 bool pmu_have_event(const char *pname
, const char *name
)
1461 struct perf_pmu
*pmu
;
1462 struct perf_pmu_alias
*alias
;
1465 while ((pmu
= perf_pmu__scan(pmu
)) != NULL
) {
1466 if (strcmp(pname
, pmu
->name
))
1468 list_for_each_entry(alias
, &pmu
->aliases
, list
)
1469 if (!strcmp(alias
->name
, name
))
1475 static FILE *perf_pmu__open_file(struct perf_pmu
*pmu
, const char *name
)
1478 char path
[PATH_MAX
];
1481 sysfs
= sysfs__mountpoint();
1485 snprintf(path
, PATH_MAX
,
1486 "%s" EVENT_SOURCE_DEVICE_PATH
"%s/%s", sysfs
, pmu
->name
, name
);
1488 if (stat(path
, &st
) < 0)
1491 return fopen(path
, "r");
1494 int perf_pmu__scan_file(struct perf_pmu
*pmu
, const char *name
, const char *fmt
,
1501 va_start(args
, fmt
);
1502 file
= perf_pmu__open_file(pmu
, name
);
1504 ret
= vfscanf(file
, fmt
, args
);