1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/list.h>
3 #include <linux/compiler.h>
4 #include <linux/string.h>
5 #include <linux/zalloc.h>
6 #include <linux/ctype.h>
7 #include <subcmd/pager.h>
17 #include <api/fs/fs.h>
20 #include <perf/cpumap.h>
27 #include "parse-events.h"
28 #include "print-events.h"
33 #include "pmu-hybrid.h"
35 struct perf_pmu perf_pmu__fake;
38 * struct perf_pmu_format - Values from a format file read from
39 * <sysfs>/devices/cpu/format/ held in struct perf_pmu.
41 * For example, the contents of <sysfs>/devices/cpu/format/event may be
42 * "config:0-7" and will be represented here as name="event",
43 * value=PERF_PMU_FORMAT_VALUE_CONFIG and bits 0 to 7 will be set.
45 struct perf_pmu_format {
46 /** @name: The modifier/file name. */
49 * @value : Which config value the format relates to. Supported values
50 * are from PERF_PMU_FORMAT_VALUE_CONFIG to
51 * PERF_PMU_FORMAT_VALUE_CONFIG_END.
54 /** @bits: Which config bits are set by this format value. */
55 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
56 /** @list: Element on list within struct perf_pmu. */
57 struct list_head list;
60 int perf_pmu_parse(struct list_head *list, char *name);
61 extern FILE *perf_pmu_in;
63 static bool hybrid_scanned;
66 * Parse & process all the sysfs attributes located under
67 * the directory specified in 'dir' parameter.
69 int perf_pmu__format_parse(char *dir, struct list_head *head)
71 struct dirent *evt_ent;
75 format_dir = opendir(dir);
79 while (!ret && (evt_ent = readdir(format_dir))) {
81 char *name = evt_ent->d_name;
84 if (!strcmp(name, ".") || !strcmp(name, ".."))
87 snprintf(path, PATH_MAX, "%s/%s", dir, name);
90 file = fopen(path, "r");
95 ret = perf_pmu_parse(head, name);
104 * Reading/parsing the default pmu format definition, which should be
106 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
108 static int pmu_format(const char *name, struct list_head *format)
112 if (!perf_pmu__pathname_scnprintf(path, sizeof(path), name, "format"))
115 if (!file_available(path))
118 if (perf_pmu__format_parse(path, format))
124 int perf_pmu__convert_scale(const char *scale, char **end, double *sval)
130 * save current locale
132 lc = setlocale(LC_NUMERIC, NULL);
135 * The lc string may be allocated in static storage,
136 * so get a dynamic copy to make it survive setlocale
146 * force to C locale to ensure kernel
147 * scale string is converted correctly.
148 * kernel uses default C locale.
150 setlocale(LC_NUMERIC, "C");
152 *sval = strtod(scale, end);
156 setlocale(LC_NUMERIC, lc);
161 static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
169 scnprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
171 fd = open(path, O_RDONLY);
175 if (fstat(fd, &st) < 0)
178 sret = read(fd, scale, sizeof(scale)-1);
182 if (scale[sret - 1] == '\n')
183 scale[sret - 1] = '\0';
187 ret = perf_pmu__convert_scale(scale, NULL, &alias->scale);
193 static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
199 scnprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
201 fd = open(path, O_RDONLY);
205 sret = read(fd, alias->unit, UNIT_MAX_LEN);
211 if (alias->unit[sret - 1] == '\n')
212 alias->unit[sret - 1] = '\0';
214 alias->unit[sret] = '\0';
219 alias->unit[0] = '\0';
224 perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name)
229 scnprintf(path, PATH_MAX, "%s/%s.per-pkg", dir, name);
231 fd = open(path, O_RDONLY);
237 alias->per_pkg = true;
241 static int perf_pmu__parse_snapshot(struct perf_pmu_alias *alias,
242 char *dir, char *name)
247 scnprintf(path, PATH_MAX, "%s/%s.snapshot", dir, name);
249 fd = open(path, O_RDONLY);
253 alias->snapshot = true;
258 static void perf_pmu_assign_str(char *name, const char *field, char **old_str,
264 if (*new_str) { /* Have new string, check with old */
265 if (strcasecmp(*old_str, *new_str))
266 pr_debug("alias %s differs in field '%s'\n",
269 } else /* Nothing new --> keep old string */
276 static void perf_pmu_update_alias(struct perf_pmu_alias *old,
277 struct perf_pmu_alias *newalias)
279 perf_pmu_assign_str(old->name, "desc", &old->desc, &newalias->desc);
280 perf_pmu_assign_str(old->name, "long_desc", &old->long_desc,
281 &newalias->long_desc);
282 perf_pmu_assign_str(old->name, "topic", &old->topic, &newalias->topic);
283 perf_pmu_assign_str(old->name, "value", &old->str, &newalias->str);
284 old->scale = newalias->scale;
285 old->per_pkg = newalias->per_pkg;
286 old->snapshot = newalias->snapshot;
287 memcpy(old->unit, newalias->unit, sizeof(old->unit));
290 /* Delete an alias entry. */
291 void perf_pmu_free_alias(struct perf_pmu_alias *newalias)
293 zfree(&newalias->name);
294 zfree(&newalias->desc);
295 zfree(&newalias->long_desc);
296 zfree(&newalias->topic);
297 zfree(&newalias->str);
298 zfree(&newalias->pmu_name);
299 parse_events_terms__purge(&newalias->terms);
303 /* Merge an alias, search in alias list. If this name is already
304 * present merge both of them to combine all information.
306 static bool perf_pmu_merge_alias(struct perf_pmu_alias *newalias,
307 struct list_head *alist)
309 struct perf_pmu_alias *a;
311 list_for_each_entry(a, alist, list) {
312 if (!strcasecmp(newalias->name, a->name)) {
313 if (newalias->pmu_name && a->pmu_name &&
314 !strcasecmp(newalias->pmu_name, a->pmu_name)) {
317 perf_pmu_update_alias(a, newalias);
318 perf_pmu_free_alias(newalias);
325 static int __perf_pmu__new_alias(struct list_head *list, char *dir, char *name,
326 char *desc, char *val, const struct pmu_event *pe)
328 struct parse_events_term *term;
329 struct perf_pmu_alias *alias;
333 char *long_desc = NULL, *topic = NULL, *unit = NULL, *perpkg = NULL,
334 *deprecated = NULL, *pmu_name = NULL;
337 long_desc = (char *)pe->long_desc;
338 topic = (char *)pe->topic;
339 unit = (char *)pe->unit;
340 perpkg = (char *)pe->perpkg;
341 deprecated = (char *)pe->deprecated;
342 pmu_name = (char *)pe->pmu;
345 alias = malloc(sizeof(*alias));
349 INIT_LIST_HEAD(&alias->terms);
351 alias->unit[0] = '\0';
352 alias->per_pkg = false;
353 alias->snapshot = false;
354 alias->deprecated = false;
356 ret = parse_events_terms(&alias->terms, val);
358 pr_err("Cannot parse alias %s: %d\n", val, ret);
363 /* Scan event and remove leading zeroes, spaces, newlines, some
364 * platforms have terms specified as
365 * event=0x0091 (read from files ../<PMU>/events/<FILE>
366 * and terms specified as event=0x91 (read from JSON files).
368 * Rebuild string to make alias->str member comparable.
370 memset(newval, 0, sizeof(newval));
372 list_for_each_entry(term, &alias->terms, list) {
374 ret += scnprintf(newval + ret, sizeof(newval) - ret,
376 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM)
377 ret += scnprintf(newval + ret, sizeof(newval) - ret,
378 "%s=%#x", term->config, term->val.num);
379 else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
380 ret += scnprintf(newval + ret, sizeof(newval) - ret,
381 "%s=%s", term->config, term->val.str);
384 alias->name = strdup(name);
387 * load unit name and scale if available
389 perf_pmu__parse_unit(alias, dir, name);
390 perf_pmu__parse_scale(alias, dir, name);
391 perf_pmu__parse_per_pkg(alias, dir, name);
392 perf_pmu__parse_snapshot(alias, dir, name);
395 alias->desc = desc ? strdup(desc) : NULL;
396 alias->long_desc = long_desc ? strdup(long_desc) :
397 desc ? strdup(desc) : NULL;
398 alias->topic = topic ? strdup(topic) : NULL;
400 if (perf_pmu__convert_scale(unit, &unit, &alias->scale) < 0)
402 snprintf(alias->unit, sizeof(alias->unit), "%s", unit);
404 alias->per_pkg = perpkg && sscanf(perpkg, "%d", &num) == 1 && num == 1;
405 alias->str = strdup(newval);
406 alias->pmu_name = pmu_name ? strdup(pmu_name) : NULL;
409 alias->deprecated = true;
411 if (!perf_pmu_merge_alias(alias, list))
412 list_add_tail(&alias->list, list);
417 static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
422 ret = fread(buf, 1, sizeof(buf), file);
428 /* Remove trailing newline from sysfs file */
431 return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL);
434 static inline bool pmu_alias_info_file(char *name)
439 if (len > 5 && !strcmp(name + len - 5, ".unit"))
441 if (len > 6 && !strcmp(name + len - 6, ".scale"))
443 if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
445 if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
452 * Process all the sysfs attributes located under the directory
453 * specified in 'dir' parameter.
455 static int pmu_aliases_parse(char *dir, struct list_head *head)
457 struct dirent *evt_ent;
460 event_dir = opendir(dir);
464 while ((evt_ent = readdir(event_dir))) {
466 char *name = evt_ent->d_name;
469 if (!strcmp(name, ".") || !strcmp(name, ".."))
473 * skip info files parsed in perf_pmu__new_alias()
475 if (pmu_alias_info_file(name))
478 scnprintf(path, PATH_MAX, "%s/%s", dir, name);
480 file = fopen(path, "r");
482 pr_debug("Cannot open %s\n", path);
486 if (perf_pmu__new_alias(head, dir, name, file) < 0)
487 pr_debug("Cannot set up %s\n", name);
496 * Reading the pmu event aliases definition, which should be located at:
497 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
499 static int pmu_aliases(const char *name, struct list_head *head)
503 if (!perf_pmu__pathname_scnprintf(path, sizeof(path), name, "events"))
506 if (!file_available(path))
509 if (pmu_aliases_parse(path, head))
515 static int pmu_alias_terms(struct perf_pmu_alias *alias,
516 struct list_head *terms)
518 struct parse_events_term *term, *cloned;
522 list_for_each_entry(term, &alias->terms, list) {
523 ret = parse_events_term__clone(&cloned, term);
525 parse_events_terms__purge(&list);
529 * Weak terms don't override command line options,
530 * which we don't want for implicit terms in aliases.
533 list_add_tail(&cloned->list, &list);
535 list_splice(&list, terms);
539 /* Add all pmus in sysfs to pmu list: */
540 static void pmu_read_sysfs(void)
546 if (!perf_pmu__event_source_devices_scnprintf(path, sizeof(path)))
553 while ((dent = readdir(dir))) {
554 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
556 /* add to static LIST_HEAD(pmus): */
557 perf_pmu__find(dent->d_name);
564 * Uncore PMUs have a "cpumask" file under sysfs. CPU PMUs (e.g. on arm/arm64)
565 * may have a "cpus" file.
567 static struct perf_cpu_map *pmu_cpumask(const char *name)
569 struct perf_cpu_map *cpus;
570 const char *templates[] = {
575 const char **template;
576 char pmu_name[PATH_MAX];
577 struct perf_pmu pmu = {.name = pmu_name};
580 strlcpy(pmu_name, name, sizeof(pmu_name));
581 for (template = templates; *template; template++) {
582 file = perf_pmu__open_file(&pmu, *template);
585 cpus = perf_cpu_map__read(file);
593 static bool pmu_is_uncore(const char *name)
597 if (perf_pmu__hybrid_mounted(name))
600 perf_pmu__pathname_scnprintf(path, sizeof(path), name, "cpumask");
601 return file_available(path);
604 static char *pmu_id(const char *name)
606 char path[PATH_MAX], *str;
609 perf_pmu__pathname_scnprintf(path, sizeof(path), name, "identifier");
611 if (filename__read_str(path, &str, &len) < 0)
614 str[len - 1] = 0; /* remove line feed */
620 * PMU CORE devices have different name other than cpu in sysfs on some
622 * Looking for possible sysfs files to identify the arm core device.
624 static int is_arm_pmu_core(const char *name)
628 if (!perf_pmu__pathname_scnprintf(path, sizeof(path), name, "cpus"))
630 return file_available(path);
633 char *perf_pmu__getcpuid(struct perf_pmu *pmu)
638 cpuid = getenv("PERF_CPUID");
640 cpuid = strdup(cpuid);
642 cpuid = get_cpuid_str(pmu);
647 pr_debug("Using CPUID %s\n", cpuid);
653 __weak const struct pmu_events_table *pmu_events_table__find(void)
655 return perf_pmu__find_events_table(NULL);
658 __weak const struct pmu_metrics_table *pmu_metrics_table__find(void)
660 return perf_pmu__find_metrics_table(NULL);
664 * Suffix must be in form tok_{digits}, or tok{digits}, or same as pmu_name
667 static bool perf_pmu__valid_suffix(const char *pmu_name, char *tok)
671 if (strncmp(pmu_name, tok, strlen(tok)))
674 p = pmu_name + strlen(tok);
681 /* Ensure we end in a number */
692 bool pmu_uncore_alias_match(const char *pmu_name, const char *name)
694 char *tmp = NULL, *tok, *str;
697 str = strdup(pmu_name);
702 * uncore alias may be from different PMU with common prefix
704 tok = strtok_r(str, ",", &tmp);
705 if (strncmp(pmu_name, tok, strlen(tok))) {
711 * Match more complex aliases where the alias name is a comma-delimited
712 * list of tokens, orderly contained in the matching PMU name.
714 * Example: For alias "socket,pmuname" and PMU "socketX_pmunameY", we
715 * match "socket" in "socketX_pmunameY" and then "pmuname" in
719 char *next_tok = strtok_r(NULL, ",", &tmp);
721 name = strstr(name, tok);
723 (!next_tok && !perf_pmu__valid_suffix(name, tok))) {
739 struct pmu_add_cpu_aliases_map_data {
740 struct list_head *head;
742 const char *cpu_name;
743 struct perf_pmu *pmu;
746 static int pmu_add_cpu_aliases_map_callback(const struct pmu_event *pe,
747 const struct pmu_events_table *table __maybe_unused,
750 struct pmu_add_cpu_aliases_map_data *data = vdata;
751 const char *pname = pe->pmu ? pe->pmu : data->cpu_name;
753 if (data->pmu->is_uncore && pmu_uncore_alias_match(pname, data->name))
756 if (strcmp(pname, data->name))
760 /* need type casts to override 'const' */
761 __perf_pmu__new_alias(data->head, NULL, (char *)pe->name, (char *)pe->desc,
762 (char *)pe->event, pe);
767 * From the pmu_events_map, find the table of PMU events that corresponds
768 * to the current running CPU. Then, add all PMU events from that table
771 void pmu_add_cpu_aliases_table(struct list_head *head, struct perf_pmu *pmu,
772 const struct pmu_events_table *table)
774 struct pmu_add_cpu_aliases_map_data data = {
777 .cpu_name = is_arm_pmu_core(pmu->name) ? pmu->name : "cpu",
781 pmu_events_table_for_each_event(table, pmu_add_cpu_aliases_map_callback, &data);
784 static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
786 const struct pmu_events_table *table;
788 table = perf_pmu__find_events_table(pmu);
792 pmu_add_cpu_aliases_table(head, pmu, table);
795 struct pmu_sys_event_iter_data {
796 struct list_head *head;
797 struct perf_pmu *pmu;
800 static int pmu_add_sys_aliases_iter_fn(const struct pmu_event *pe,
801 const struct pmu_events_table *table __maybe_unused,
804 struct pmu_sys_event_iter_data *idata = data;
805 struct perf_pmu *pmu = idata->pmu;
807 if (!pe->compat || !pe->pmu)
810 if (!strcmp(pmu->id, pe->compat) &&
811 pmu_uncore_alias_match(pe->pmu, pmu->name)) {
812 __perf_pmu__new_alias(idata->head, NULL,
822 void pmu_add_sys_aliases(struct list_head *head, struct perf_pmu *pmu)
824 struct pmu_sys_event_iter_data idata = {
832 pmu_for_each_sys_event(pmu_add_sys_aliases_iter_fn, &idata);
835 struct perf_event_attr * __weak
836 perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
842 pmu_find_real_name(const char *name)
848 pmu_find_alias_name(const char *name __maybe_unused)
853 static int pmu_max_precise(struct perf_pmu *pmu)
855 int max_precise = -1;
857 perf_pmu__scan_file(pmu, "caps/max_precise", "%d", &max_precise);
861 static struct perf_pmu *pmu_lookup(const char *lookup_name)
863 struct perf_pmu *pmu;
867 char *name = pmu_find_real_name(lookup_name);
868 bool is_hybrid = perf_pmu__hybrid_mounted(name);
872 * Check pmu name for hybrid and the pmu may be invalid in sysfs
874 if (!strncmp(name, "cpu_", 4) && !is_hybrid)
878 * The pmu data we store & need consists of the pmu
879 * type value and format definitions. Load both right
882 if (pmu_format(name, &format))
886 * Check the aliases first to avoid unnecessary work.
888 if (pmu_aliases(name, &aliases))
891 pmu = zalloc(sizeof(*pmu));
895 pmu->cpus = pmu_cpumask(name);
896 pmu->name = strdup(name);
901 /* Read type, and ensure that type value is successfully assigned (return 1) */
902 if (perf_pmu__scan_file(pmu, "type", "%u", &type) != 1)
905 alias_name = pmu_find_alias_name(name);
907 pmu->alias_name = strdup(alias_name);
908 if (!pmu->alias_name)
913 pmu->is_uncore = pmu_is_uncore(name);
915 pmu->id = pmu_id(name);
916 pmu->max_precise = pmu_max_precise(pmu);
917 pmu_add_cpu_aliases(&aliases, pmu);
918 pmu_add_sys_aliases(&aliases, pmu);
920 INIT_LIST_HEAD(&pmu->format);
921 INIT_LIST_HEAD(&pmu->aliases);
922 INIT_LIST_HEAD(&pmu->caps);
923 list_splice(&format, &pmu->format);
924 list_splice(&aliases, &pmu->aliases);
925 list_add_tail(&pmu->list, &pmus);
928 list_add_tail(&pmu->hybrid_list, &perf_pmu__hybrid_pmus);
930 pmu->default_config = perf_pmu__get_default_config(pmu);
940 void perf_pmu__warn_invalid_formats(struct perf_pmu *pmu)
942 struct perf_pmu_format *format;
944 /* fake pmu doesn't have format list */
945 if (pmu == &perf_pmu__fake)
948 list_for_each_entry(format, &pmu->format, list)
949 if (format->value >= PERF_PMU_FORMAT_VALUE_CONFIG_END) {
950 pr_warning("WARNING: '%s' format '%s' requires 'perf_event_attr::config%d'"
951 "which is not supported by this version of perf!\n",
952 pmu->name, format->name, format->value);
957 static struct perf_pmu *pmu_find(const char *name)
959 struct perf_pmu *pmu;
961 list_for_each_entry(pmu, &pmus, list) {
962 if (!strcmp(pmu->name, name) ||
963 (pmu->alias_name && !strcmp(pmu->alias_name, name)))
970 struct perf_pmu *perf_pmu__find_by_type(unsigned int type)
972 struct perf_pmu *pmu;
974 list_for_each_entry(pmu, &pmus, list)
975 if (pmu->type == type)
981 struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
984 * pmu iterator: If pmu is NULL, we start at the begin,
985 * otherwise return the next pmu. Returns NULL on end.
989 pmu = list_prepare_entry(pmu, &pmus, list);
991 list_for_each_entry_continue(pmu, &pmus, list)
996 struct perf_pmu *evsel__find_pmu(struct evsel *evsel)
998 struct perf_pmu *pmu = NULL;
1003 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1004 if (pmu->type == evsel->core.attr.type)
1012 bool evsel__is_aux_event(struct evsel *evsel)
1014 struct perf_pmu *pmu = evsel__find_pmu(evsel);
1016 return pmu && pmu->auxtrace;
1019 struct perf_pmu *perf_pmu__find(const char *name)
1021 struct perf_pmu *pmu;
1024 * Once PMU is loaded it stays in the list,
1025 * so we keep us from multiple reading/parsing
1026 * the pmu format definitions.
1028 pmu = pmu_find(name);
1032 return pmu_lookup(name);
1035 static struct perf_pmu_format *
1036 pmu_find_format(struct list_head *formats, const char *name)
1038 struct perf_pmu_format *format;
1040 list_for_each_entry(format, formats, list)
1041 if (!strcmp(format->name, name))
1047 __u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
1049 struct perf_pmu_format *format = pmu_find_format(formats, name);
1056 for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
1057 bits |= 1ULL << fbit;
1062 int perf_pmu__format_type(struct list_head *formats, const char *name)
1064 struct perf_pmu_format *format = pmu_find_format(formats, name);
1069 return format->value;
1073 * Sets value based on the format definition (format parameter)
1074 * and unformatted value (value parameter).
1076 static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
1079 unsigned long fbit, vbit;
1081 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
1083 if (!test_bit(fbit, format))
1086 if (value & (1llu << vbit++))
1087 *v |= (1llu << fbit);
1089 *v &= ~(1llu << fbit);
1093 static __u64 pmu_format_max_value(const unsigned long *format)
1097 w = bitmap_weight(format, PERF_PMU_FORMAT_BITS);
1101 return (1ULL << w) - 1;
1106 * Term is a string term, and might be a param-term. Try to look up it's value
1107 * in the remaining terms.
1108 * - We have a term like "base-or-format-term=param-term",
1109 * - We need to find the value supplied for "param-term" (with param-term named
1110 * in a config string) later on in the term list.
1112 static int pmu_resolve_param_term(struct parse_events_term *term,
1113 struct list_head *head_terms,
1116 struct parse_events_term *t;
1118 list_for_each_entry(t, head_terms, list) {
1119 if (t->type_val == PARSE_EVENTS__TERM_TYPE_NUM &&
1120 t->config && !strcmp(t->config, term->config)) {
1122 *value = t->val.num;
1128 printf("Required parameter '%s' not specified\n", term->config);
1133 static char *pmu_formats_string(struct list_head *formats)
1135 struct perf_pmu_format *format;
1137 struct strbuf buf = STRBUF_INIT;
1143 /* sysfs exported terms */
1144 list_for_each_entry(format, formats, list)
1145 if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
1148 str = strbuf_detach(&buf, NULL);
1150 strbuf_release(&buf);
1156 * Setup one of config[12] attr members based on the
1157 * user input data - term parameter.
1159 static int pmu_config_term(const char *pmu_name,
1160 struct list_head *formats,
1161 struct perf_event_attr *attr,
1162 struct parse_events_term *term,
1163 struct list_head *head_terms,
1164 bool zero, struct parse_events_error *err)
1166 struct perf_pmu_format *format;
1171 * If this is a parameter we've already used for parameterized-eval,
1172 * skip it in normal eval.
1178 * Hardcoded terms should be already in, so nothing
1179 * to be done for them.
1181 if (parse_events__is_hardcoded_term(term))
1184 format = pmu_find_format(formats, term->config);
1186 char *pmu_term = pmu_formats_string(formats);
1190 if (asprintf(&unknown_term,
1191 "unknown term '%s' for pmu '%s'",
1192 term->config, pmu_name) < 0)
1193 unknown_term = NULL;
1194 help_msg = parse_events_formats_error_string(pmu_term);
1196 parse_events_error__handle(err, term->err_term,
1200 pr_debug("%s (%s)\n", unknown_term, help_msg);
1207 switch (format->value) {
1208 case PERF_PMU_FORMAT_VALUE_CONFIG:
1211 case PERF_PMU_FORMAT_VALUE_CONFIG1:
1212 vp = &attr->config1;
1214 case PERF_PMU_FORMAT_VALUE_CONFIG2:
1215 vp = &attr->config2;
1222 * Either directly use a numeric term, or try to translate string terms
1223 * using event parameters.
1225 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
1226 if (term->no_value &&
1227 bitmap_weight(format->bits, PERF_PMU_FORMAT_BITS) > 1) {
1229 parse_events_error__handle(err, term->err_val,
1230 strdup("no value assigned for term"),
1236 val = term->val.num;
1237 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
1238 if (strcmp(term->val.str, "?")) {
1240 pr_info("Invalid sysfs entry %s=%s\n",
1241 term->config, term->val.str);
1244 parse_events_error__handle(err, term->err_val,
1245 strdup("expected numeric value"),
1251 if (pmu_resolve_param_term(term, head_terms, &val))
1256 max_val = pmu_format_max_value(format->bits);
1257 if (val > max_val) {
1261 parse_events_error__handle(err, term->err_val,
1263 "value too big for format, maximum is %llu",
1264 (unsigned long long)max_val) < 0
1265 ? strdup("value too big for format")
1271 * Assume we don't care if !err, in which case the value will be
1272 * silently truncated.
1276 pmu_format_value(format->bits, val, vp, zero);
1280 int perf_pmu__config_terms(const char *pmu_name, struct list_head *formats,
1281 struct perf_event_attr *attr,
1282 struct list_head *head_terms,
1283 bool zero, struct parse_events_error *err)
1285 struct parse_events_term *term;
1287 list_for_each_entry(term, head_terms, list) {
1288 if (pmu_config_term(pmu_name, formats, attr, term, head_terms,
1297 * Configures event's 'attr' parameter based on the:
1298 * 1) users input - specified in terms parameter
1299 * 2) pmu format definitions - specified by pmu parameter
1301 int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
1302 struct list_head *head_terms,
1303 struct parse_events_error *err)
1305 bool zero = !!pmu->default_config;
1307 attr->type = pmu->type;
1308 return perf_pmu__config_terms(pmu->name, &pmu->format, attr,
1309 head_terms, zero, err);
1312 static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
1313 struct parse_events_term *term)
1315 struct perf_pmu_alias *alias;
1318 if (parse_events__is_hardcoded_term(term))
1321 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
1322 if (term->val.num != 1)
1324 if (pmu_find_format(&pmu->format, term->config))
1326 name = term->config;
1327 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
1328 if (strcasecmp(term->config, "event"))
1330 name = term->val.str;
1335 list_for_each_entry(alias, &pmu->aliases, list) {
1336 if (!strcasecmp(alias->name, name))
1343 static int check_info_data(struct perf_pmu_alias *alias,
1344 struct perf_pmu_info *info)
1347 * Only one term in event definition can
1348 * define unit, scale and snapshot, fail
1349 * if there's more than one.
1351 if ((info->unit && alias->unit[0]) ||
1352 (info->scale && alias->scale) ||
1353 (info->snapshot && alias->snapshot))
1357 info->unit = alias->unit;
1360 info->scale = alias->scale;
1362 if (alias->snapshot)
1363 info->snapshot = alias->snapshot;
1369 * Find alias in the terms list and replace it with the terms
1370 * defined for the alias
1372 int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
1373 struct perf_pmu_info *info)
1375 struct parse_events_term *term, *h;
1376 struct perf_pmu_alias *alias;
1379 info->per_pkg = false;
1382 * Mark unit and scale as not set
1383 * (different from default values, see below)
1387 info->snapshot = false;
1389 list_for_each_entry_safe(term, h, head_terms, list) {
1390 alias = pmu_find_alias(pmu, term);
1393 ret = pmu_alias_terms(alias, &term->list);
1397 ret = check_info_data(alias, info);
1402 info->per_pkg = true;
1404 list_del_init(&term->list);
1405 parse_events_term__delete(term);
1409 * if no unit or scale found in aliases, then
1410 * set defaults as for evsel
1411 * unit cannot left to NULL
1413 if (info->unit == NULL)
1416 if (info->scale == 0.0)
1422 int perf_pmu__new_format(struct list_head *list, char *name,
1423 int config, unsigned long *bits)
1425 struct perf_pmu_format *format;
1427 format = zalloc(sizeof(*format));
1431 format->name = strdup(name);
1432 format->value = config;
1433 memcpy(format->bits, bits, sizeof(format->bits));
1435 list_add_tail(&format->list, list);
1439 void perf_pmu__set_format(unsigned long *bits, long from, long to)
1446 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
1447 for (b = from; b <= to; b++)
1451 void perf_pmu__del_formats(struct list_head *formats)
1453 struct perf_pmu_format *fmt, *tmp;
1455 list_for_each_entry_safe(fmt, tmp, formats, list) {
1456 list_del(&fmt->list);
1462 static int sub_non_neg(int a, int b)
1469 static char *format_alias(char *buf, int len, const struct perf_pmu *pmu,
1470 const struct perf_pmu_alias *alias)
1472 struct parse_events_term *term;
1473 int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1475 list_for_each_entry(term, &alias->terms, list) {
1476 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
1477 used += snprintf(buf + used, sub_non_neg(len, used),
1478 ",%s=%s", term->config,
1482 if (sub_non_neg(len, used) > 0) {
1486 if (sub_non_neg(len, used) > 0) {
1490 buf[len - 1] = '\0';
1495 /** Struct for ordering events as output in perf list. */
1497 /** PMU for event. */
1498 const struct perf_pmu *pmu;
1500 * Optional event for name, desc, etc. If not present then this is a
1501 * selectable PMU and the event name is shown as "//".
1503 const struct perf_pmu_alias *event;
1504 /** Is the PMU for the CPU? */
1508 static int cmp_sevent(const void *a, const void *b)
1510 const struct sevent *as = a;
1511 const struct sevent *bs = b;
1512 const char *a_pmu_name, *b_pmu_name;
1513 const char *a_name = "//", *a_desc = NULL, *a_topic = "";
1514 const char *b_name = "//", *b_desc = NULL, *b_topic = "";
1518 a_name = as->event->name;
1519 a_desc = as->event->desc;
1520 a_topic = as->event->topic ?: "";
1523 b_name = bs->event->name;
1524 b_desc = bs->event->desc;
1525 b_topic = bs->event->topic ?: "";
1527 /* Put extra events last. */
1528 if (!!a_desc != !!b_desc)
1529 return !!a_desc - !!b_desc;
1531 /* Order by topics. */
1532 ret = strcmp(a_topic, b_topic);
1536 /* Order CPU core events to be first */
1537 if (as->is_cpu != bs->is_cpu)
1538 return as->is_cpu ? -1 : 1;
1540 /* Order by PMU name. */
1541 a_pmu_name = as->pmu->name ?: "";
1542 b_pmu_name = bs->pmu->name ?: "";
1543 ret = strcmp(a_pmu_name, b_pmu_name);
1547 /* Order by event name. */
1548 return strcmp(a_name, b_name);
1551 bool is_pmu_core(const char *name)
1553 return !strcmp(name, "cpu") || is_arm_pmu_core(name);
1556 static bool pmu_alias_is_duplicate(struct sevent *alias_a,
1557 struct sevent *alias_b)
1559 const char *a_pmu_name, *b_pmu_name;
1560 const char *a_name = alias_a->event ? alias_a->event->name : "//";
1561 const char *b_name = alias_b->event ? alias_b->event->name : "//";
1563 /* Different names -> never duplicates */
1564 if (strcmp(a_name, b_name))
1567 /* Don't remove duplicates for different PMUs */
1568 a_pmu_name = alias_a->pmu->name ?: "";
1569 b_pmu_name = alias_b->pmu->name ?: "";
1570 return strcmp(a_pmu_name, b_pmu_name) == 0;
1573 void print_pmu_events(const struct print_callbacks *print_cb, void *print_state)
1575 struct perf_pmu *pmu;
1576 struct perf_pmu_alias *event;
1580 struct sevent *aliases;
1584 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1585 list_for_each_entry(event, &pmu->aliases, list)
1587 if (pmu->selectable)
1590 aliases = zalloc(sizeof(struct sevent) * len);
1592 pr_err("FATAL: not enough memory to print PMU events\n");
1597 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1598 bool is_cpu = is_pmu_core(pmu->name) || perf_pmu__is_hybrid(pmu->name);
1600 list_for_each_entry(event, &pmu->aliases, list) {
1601 aliases[j].event = event;
1602 aliases[j].pmu = pmu;
1603 aliases[j].is_cpu = is_cpu;
1606 if (pmu->selectable) {
1607 aliases[j].event = NULL;
1608 aliases[j].pmu = pmu;
1609 aliases[j].is_cpu = is_cpu;
1614 qsort(aliases, len, sizeof(struct sevent), cmp_sevent);
1615 for (j = 0; j < len; j++) {
1616 const char *name, *alias = NULL, *scale_unit = NULL,
1617 *desc = NULL, *long_desc = NULL,
1618 *encoding_desc = NULL, *topic = NULL;
1619 bool deprecated = false;
1622 /* Skip duplicates */
1623 if (j > 0 && pmu_alias_is_duplicate(&aliases[j], &aliases[j - 1]))
1626 if (!aliases[j].event) {
1627 /* A selectable event. */
1628 buf_used = snprintf(buf, sizeof(buf), "%s//", aliases[j].pmu->name) + 1;
1631 if (aliases[j].event->desc) {
1632 name = aliases[j].event->name;
1635 name = format_alias(buf, sizeof(buf), aliases[j].pmu,
1637 if (aliases[j].is_cpu) {
1639 name = aliases[j].event->name;
1641 buf_used = strlen(buf) + 1;
1643 if (strlen(aliases[j].event->unit) || aliases[j].event->scale != 1.0) {
1644 scale_unit = buf + buf_used;
1645 buf_used += snprintf(buf + buf_used, sizeof(buf) - buf_used,
1646 "%G%s", aliases[j].event->scale,
1647 aliases[j].event->unit) + 1;
1649 desc = aliases[j].event->desc;
1650 long_desc = aliases[j].event->long_desc;
1651 topic = aliases[j].event->topic;
1652 encoding_desc = buf + buf_used;
1653 buf_used += snprintf(buf + buf_used, sizeof(buf) - buf_used,
1654 "%s/%s/", aliases[j].pmu->name,
1655 aliases[j].event->str) + 1;
1656 deprecated = aliases[j].event->deprecated;
1658 print_cb->print_event(print_state,
1659 aliases[j].pmu->name,
1670 if (printed && pager_in_use())
1677 bool pmu_have_event(const char *pname, const char *name)
1679 struct perf_pmu *pmu;
1680 struct perf_pmu_alias *alias;
1683 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1684 if (strcmp(pname, pmu->name))
1686 list_for_each_entry(alias, &pmu->aliases, list)
1687 if (!strcmp(alias->name, name))
1693 FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1695 char path[PATH_MAX];
1697 if (!perf_pmu__pathname_scnprintf(path, sizeof(path), pmu->name, name) ||
1698 !file_available(path))
1701 return fopen(path, "r");
1704 int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1711 va_start(args, fmt);
1712 file = perf_pmu__open_file(pmu, name);
1714 ret = vfscanf(file, fmt, args);
1721 bool perf_pmu__file_exists(struct perf_pmu *pmu, const char *name)
1723 char path[PATH_MAX];
1725 if (!perf_pmu__pathname_scnprintf(path, sizeof(path), pmu->name, name))
1728 return file_available(path);
1731 static int perf_pmu__new_caps(struct list_head *list, char *name, char *value)
1733 struct perf_pmu_caps *caps = zalloc(sizeof(*caps));
1738 caps->name = strdup(name);
1741 caps->value = strndup(value, strlen(value) - 1);
1744 list_add_tail(&caps->list, list);
1756 * Reading/parsing the given pmu capabilities, which should be located at:
1757 * /sys/bus/event_source/devices/<dev>/caps as sysfs group attributes.
1758 * Return the number of capabilities
1760 int perf_pmu__caps_parse(struct perf_pmu *pmu)
1763 char caps_path[PATH_MAX];
1765 struct dirent *evt_ent;
1767 if (pmu->caps_initialized)
1768 return pmu->nr_caps;
1772 if (!perf_pmu__pathname_scnprintf(caps_path, sizeof(caps_path), pmu->name, "caps"))
1775 if (stat(caps_path, &st) < 0) {
1776 pmu->caps_initialized = true;
1777 return 0; /* no error if caps does not exist */
1780 caps_dir = opendir(caps_path);
1784 while ((evt_ent = readdir(caps_dir)) != NULL) {
1785 char path[PATH_MAX + NAME_MAX + 1];
1786 char *name = evt_ent->d_name;
1790 if (!strcmp(name, ".") || !strcmp(name, ".."))
1793 snprintf(path, sizeof(path), "%s/%s", caps_path, name);
1795 file = fopen(path, "r");
1799 if (!fgets(value, sizeof(value), file) ||
1800 (perf_pmu__new_caps(&pmu->caps, name, value) < 0)) {
1811 pmu->caps_initialized = true;
1812 return pmu->nr_caps;
1815 void perf_pmu__warn_invalid_config(struct perf_pmu *pmu, __u64 config,
1818 struct perf_pmu_format *format;
1819 __u64 masks = 0, bits;
1823 list_for_each_entry(format, &pmu->format, list) {
1824 if (format->value != PERF_PMU_FORMAT_VALUE_CONFIG)
1827 for_each_set_bit(i, format->bits, PERF_PMU_FORMAT_BITS)
1832 * Kernel doesn't export any valid format bits.
1837 bits = config & ~masks;
1841 bitmap_scnprintf((unsigned long *)&bits, sizeof(bits) * 8, buf, sizeof(buf));
1843 pr_warning("WARNING: event '%s' not valid (bits %s of config "
1844 "'%llx' not supported by kernel)!\n",
1845 name ?: "N/A", buf, config);
1848 bool perf_pmu__has_hybrid(void)
1850 if (!hybrid_scanned) {
1851 hybrid_scanned = true;
1852 perf_pmu__scan(NULL);
1855 return !list_empty(&perf_pmu__hybrid_pmus);
1858 int perf_pmu__match(char *pattern, char *name, char *tok)
1863 if (fnmatch(pattern, name, 0))
1866 if (tok && !perf_pmu__valid_suffix(name, tok))
1872 int perf_pmu__cpus_match(struct perf_pmu *pmu, struct perf_cpu_map *cpus,
1873 struct perf_cpu_map **mcpus_ptr,
1874 struct perf_cpu_map **ucpus_ptr)
1876 struct perf_cpu_map *pmu_cpus = pmu->cpus;
1877 struct perf_cpu_map *matched_cpus, *unmatched_cpus;
1878 struct perf_cpu cpu;
1879 int i, matched_nr = 0, unmatched_nr = 0;
1881 matched_cpus = perf_cpu_map__default_new();
1885 unmatched_cpus = perf_cpu_map__default_new();
1886 if (!unmatched_cpus) {
1887 perf_cpu_map__put(matched_cpus);
1891 perf_cpu_map__for_each_cpu(cpu, i, cpus) {
1892 if (!perf_cpu_map__has(pmu_cpus, cpu))
1893 unmatched_cpus->map[unmatched_nr++] = cpu;
1895 matched_cpus->map[matched_nr++] = cpu;
1898 unmatched_cpus->nr = unmatched_nr;
1899 matched_cpus->nr = matched_nr;
1900 *mcpus_ptr = matched_cpus;
1901 *ucpus_ptr = unmatched_cpus;
1905 double __weak perf_pmu__cpu_slots_per_cycle(void)
1910 int perf_pmu__event_source_devices_scnprintf(char *pathname, size_t size)
1912 const char *sysfs = sysfs__mountpoint();
1916 return scnprintf(pathname, size, "%s/bus/event_source/devices/", sysfs);
1920 * Fill 'buf' with the path to a file or folder in 'pmu_name' in
1921 * sysfs. For example if pmu_name = "cs_etm" and 'filename' = "format"
1922 * then pathname will be filled with
1923 * "/sys/bus/event_source/devices/cs_etm/format"
1925 * Return 0 if the sysfs mountpoint couldn't be found or if no
1926 * characters were written.
1928 int perf_pmu__pathname_scnprintf(char *buf, size_t size,
1929 const char *pmu_name, const char *filename)
1931 char base_path[PATH_MAX];
1933 if (!perf_pmu__event_source_devices_scnprintf(base_path, sizeof(base_path)))
1935 return scnprintf(buf, size, "%s%s/%s", base_path, pmu_name, filename);