1 #include <linux/list.h>
2 #include <linux/compiler.h>
13 #include "parse-events.h"
16 #include "pmu-events/pmu-events.h"
19 struct perf_pmu_format {
22 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
23 struct list_head list;
26 #define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"
28 int perf_pmu_parse(struct list_head *list, char *name);
29 extern FILE *perf_pmu_in;
31 static LIST_HEAD(pmus);
34 * Parse & process all the sysfs attributes located under
35 * the directory specified in 'dir' parameter.
37 int perf_pmu__format_parse(char *dir, struct list_head *head)
39 struct dirent *evt_ent;
43 format_dir = opendir(dir);
47 while (!ret && (evt_ent = readdir(format_dir))) {
49 char *name = evt_ent->d_name;
52 if (!strcmp(name, ".") || !strcmp(name, ".."))
55 snprintf(path, PATH_MAX, "%s/%s", dir, name);
58 file = fopen(path, "r");
63 ret = perf_pmu_parse(head, name);
72 * Reading/parsing the default pmu format definition, which should be
74 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
76 static int pmu_format(const char *name, struct list_head *format)
80 const char *sysfs = sysfs__mountpoint();
85 snprintf(path, PATH_MAX,
86 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
88 if (stat(path, &st) < 0)
89 return 0; /* no error if format does not exist */
91 if (perf_pmu__format_parse(path, format))
97 static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
106 snprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
108 fd = open(path, O_RDONLY);
112 if (fstat(fd, &st) < 0)
115 sret = read(fd, scale, sizeof(scale)-1);
119 if (scale[sret - 1] == '\n')
120 scale[sret - 1] = '\0';
125 * save current locale
127 lc = setlocale(LC_NUMERIC, NULL);
130 * The lc string may be allocated in static storage,
131 * so get a dynamic copy to make it survive setlocale
141 * force to C locale to ensure kernel
142 * scale string is converted correctly.
143 * kernel uses default C locale.
145 setlocale(LC_NUMERIC, "C");
147 alias->scale = strtod(scale, NULL);
150 setlocale(LC_NUMERIC, lc);
160 static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
166 snprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
168 fd = open(path, O_RDONLY);
172 sret = read(fd, alias->unit, UNIT_MAX_LEN);
178 if (alias->unit[sret - 1] == '\n')
179 alias->unit[sret - 1] = '\0';
181 alias->unit[sret] = '\0';
186 alias->unit[0] = '\0';
191 perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name)
196 snprintf(path, PATH_MAX, "%s/%s.per-pkg", dir, name);
198 fd = open(path, O_RDONLY);
204 alias->per_pkg = true;
208 static int perf_pmu__parse_snapshot(struct perf_pmu_alias *alias,
209 char *dir, char *name)
214 snprintf(path, PATH_MAX, "%s/%s.snapshot", dir, name);
216 fd = open(path, O_RDONLY);
220 alias->snapshot = true;
225 static int __perf_pmu__new_alias(struct list_head *list, char *dir, char *name,
226 char *desc, char *val, char *long_desc,
229 struct perf_pmu_alias *alias;
232 alias = malloc(sizeof(*alias));
236 INIT_LIST_HEAD(&alias->terms);
238 alias->unit[0] = '\0';
239 alias->per_pkg = false;
240 alias->snapshot = false;
242 ret = parse_events_terms(&alias->terms, val);
244 pr_err("Cannot parse alias %s: %d\n", val, ret);
249 alias->name = strdup(name);
252 * load unit name and scale if available
254 perf_pmu__parse_unit(alias, dir, name);
255 perf_pmu__parse_scale(alias, dir, name);
256 perf_pmu__parse_per_pkg(alias, dir, name);
257 perf_pmu__parse_snapshot(alias, dir, name);
260 alias->desc = desc ? strdup(desc) : NULL;
261 alias->long_desc = long_desc ? strdup(long_desc) :
262 desc ? strdup(desc) : NULL;
263 alias->topic = topic ? strdup(topic) : NULL;
265 list_add_tail(&alias->list, list);
270 static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
275 ret = fread(buf, 1, sizeof(buf), file);
281 return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL, NULL);
284 static inline bool pmu_alias_info_file(char *name)
289 if (len > 5 && !strcmp(name + len - 5, ".unit"))
291 if (len > 6 && !strcmp(name + len - 6, ".scale"))
293 if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
295 if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
302 * Process all the sysfs attributes located under the directory
303 * specified in 'dir' parameter.
305 static int pmu_aliases_parse(char *dir, struct list_head *head)
307 struct dirent *evt_ent;
310 event_dir = opendir(dir);
314 while ((evt_ent = readdir(event_dir))) {
316 char *name = evt_ent->d_name;
319 if (!strcmp(name, ".") || !strcmp(name, ".."))
323 * skip info files parsed in perf_pmu__new_alias()
325 if (pmu_alias_info_file(name))
328 snprintf(path, PATH_MAX, "%s/%s", dir, name);
330 file = fopen(path, "r");
332 pr_debug("Cannot open %s\n", path);
336 if (perf_pmu__new_alias(head, dir, name, file) < 0)
337 pr_debug("Cannot set up %s\n", name);
346 * Reading the pmu event aliases definition, which should be located at:
347 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
349 static int pmu_aliases(const char *name, struct list_head *head)
353 const char *sysfs = sysfs__mountpoint();
358 snprintf(path, PATH_MAX,
359 "%s/bus/event_source/devices/%s/events", sysfs, name);
361 if (stat(path, &st) < 0)
362 return 0; /* no error if 'events' does not exist */
364 if (pmu_aliases_parse(path, head))
370 static int pmu_alias_terms(struct perf_pmu_alias *alias,
371 struct list_head *terms)
373 struct parse_events_term *term, *cloned;
377 list_for_each_entry(term, &alias->terms, list) {
378 ret = parse_events_term__clone(&cloned, term);
380 parse_events_terms__purge(&list);
383 list_add_tail(&cloned->list, &list);
385 list_splice(&list, terms);
390 * Reading/parsing the default pmu type value, which should be
392 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
394 static int pmu_type(const char *name, __u32 *type)
400 const char *sysfs = sysfs__mountpoint();
405 snprintf(path, PATH_MAX,
406 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
408 if (stat(path, &st) < 0)
411 file = fopen(path, "r");
415 if (1 != fscanf(file, "%u", type))
422 /* Add all pmus in sysfs to pmu list: */
423 static void pmu_read_sysfs(void)
428 const char *sysfs = sysfs__mountpoint();
433 snprintf(path, PATH_MAX,
434 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
440 while ((dent = readdir(dir))) {
441 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
443 /* add to static LIST_HEAD(pmus): */
444 perf_pmu__find(dent->d_name);
450 static struct cpu_map *pmu_cpumask(const char *name)
455 struct cpu_map *cpus;
456 const char *sysfs = sysfs__mountpoint();
457 const char *templates[] = {
458 "%s/bus/event_source/devices/%s/cpumask",
459 "%s/bus/event_source/devices/%s/cpus",
462 const char **template;
467 for (template = templates; *template; template++) {
468 snprintf(path, PATH_MAX, *template, sysfs, name);
469 if (stat(path, &st) == 0)
476 file = fopen(path, "r");
480 cpus = cpu_map__read(file);
486 * Return the CPU id as a raw string.
488 * Each architecture should provide a more precise id string that
489 * can be use to match the architecture's "mapfile".
491 char * __weak get_cpuid_str(void)
497 * From the pmu_events_map, find the table of PMU events that corresponds
498 * to the current running CPU. Then, add all PMU events from that table
501 static void pmu_add_cpu_aliases(struct list_head *head)
504 struct pmu_events_map *map;
505 struct pmu_event *pe;
508 cpuid = getenv("PERF_CPUID");
510 cpuid = strdup(cpuid);
512 cpuid = get_cpuid_str();
516 pr_debug("Using CPUID %s\n", cpuid);
520 map = &pmu_events_map[i++];
524 if (!strcmp(map->cpuid, cpuid))
529 * Found a matching PMU events table. Create aliases
533 pe = &map->table[i++];
537 /* need type casts to override 'const' */
538 __perf_pmu__new_alias(head, NULL, (char *)pe->name,
539 (char *)pe->desc, (char *)pe->event,
540 (char *)pe->long_desc, (char *)pe->topic);
547 struct perf_event_attr * __weak
548 perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
553 static struct perf_pmu *pmu_lookup(const char *name)
555 struct perf_pmu *pmu;
561 * The pmu data we store & need consists of the pmu
562 * type value and format definitions. Load both right
565 if (pmu_format(name, &format))
568 if (pmu_aliases(name, &aliases))
571 if (!strcmp(name, "cpu"))
572 pmu_add_cpu_aliases(&aliases);
574 if (pmu_type(name, &type))
577 pmu = zalloc(sizeof(*pmu));
581 pmu->cpus = pmu_cpumask(name);
583 INIT_LIST_HEAD(&pmu->format);
584 INIT_LIST_HEAD(&pmu->aliases);
585 list_splice(&format, &pmu->format);
586 list_splice(&aliases, &pmu->aliases);
587 pmu->name = strdup(name);
589 list_add_tail(&pmu->list, &pmus);
591 pmu->default_config = perf_pmu__get_default_config(pmu);
596 static struct perf_pmu *pmu_find(const char *name)
598 struct perf_pmu *pmu;
600 list_for_each_entry(pmu, &pmus, list)
601 if (!strcmp(pmu->name, name))
607 struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
610 * pmu iterator: If pmu is NULL, we start at the begin,
611 * otherwise return the next pmu. Returns NULL on end.
615 pmu = list_prepare_entry(pmu, &pmus, list);
617 list_for_each_entry_continue(pmu, &pmus, list)
622 struct perf_pmu *perf_pmu__find(const char *name)
624 struct perf_pmu *pmu;
627 * Once PMU is loaded it stays in the list,
628 * so we keep us from multiple reading/parsing
629 * the pmu format definitions.
631 pmu = pmu_find(name);
635 return pmu_lookup(name);
638 static struct perf_pmu_format *
639 pmu_find_format(struct list_head *formats, const char *name)
641 struct perf_pmu_format *format;
643 list_for_each_entry(format, formats, list)
644 if (!strcmp(format->name, name))
650 __u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
652 struct perf_pmu_format *format = pmu_find_format(formats, name);
659 for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
660 bits |= 1ULL << fbit;
666 * Sets value based on the format definition (format parameter)
667 * and unformated value (value parameter).
669 static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
672 unsigned long fbit, vbit;
674 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
676 if (!test_bit(fbit, format))
679 if (value & (1llu << vbit++))
680 *v |= (1llu << fbit);
682 *v &= ~(1llu << fbit);
686 static __u64 pmu_format_max_value(const unsigned long *format)
691 for_each_set_bit(fbit, format, PERF_PMU_FORMAT_BITS)
698 * Term is a string term, and might be a param-term. Try to look up it's value
699 * in the remaining terms.
700 * - We have a term like "base-or-format-term=param-term",
701 * - We need to find the value supplied for "param-term" (with param-term named
702 * in a config string) later on in the term list.
704 static int pmu_resolve_param_term(struct parse_events_term *term,
705 struct list_head *head_terms,
708 struct parse_events_term *t;
710 list_for_each_entry(t, head_terms, list) {
711 if (t->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
712 if (!strcmp(t->config, term->config)) {
721 printf("Required parameter '%s' not specified\n", term->config);
726 static char *pmu_formats_string(struct list_head *formats)
728 struct perf_pmu_format *format;
730 struct strbuf buf = STRBUF_INIT;
736 /* sysfs exported terms */
737 list_for_each_entry(format, formats, list)
738 if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
741 str = strbuf_detach(&buf, NULL);
743 strbuf_release(&buf);
749 * Setup one of config[12] attr members based on the
750 * user input data - term parameter.
752 static int pmu_config_term(struct list_head *formats,
753 struct perf_event_attr *attr,
754 struct parse_events_term *term,
755 struct list_head *head_terms,
756 bool zero, struct parse_events_error *err)
758 struct perf_pmu_format *format;
763 * If this is a parameter we've already used for parameterized-eval,
764 * skip it in normal eval.
770 * Hardcoded terms should be already in, so nothing
771 * to be done for them.
773 if (parse_events__is_hardcoded_term(term))
776 format = pmu_find_format(formats, term->config);
779 printf("Invalid event/parameter '%s'\n", term->config);
781 char *pmu_term = pmu_formats_string(formats);
783 err->idx = term->err_term;
784 err->str = strdup("unknown term");
785 err->help = parse_events_formats_error_string(pmu_term);
791 switch (format->value) {
792 case PERF_PMU_FORMAT_VALUE_CONFIG:
795 case PERF_PMU_FORMAT_VALUE_CONFIG1:
798 case PERF_PMU_FORMAT_VALUE_CONFIG2:
806 * Either directly use a numeric term, or try to translate string terms
807 * using event parameters.
809 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM)
811 else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
812 if (strcmp(term->val.str, "?")) {
814 pr_info("Invalid sysfs entry %s=%s\n",
815 term->config, term->val.str);
818 err->idx = term->err_val;
819 err->str = strdup("expected numeric value");
824 if (pmu_resolve_param_term(term, head_terms, &val))
829 max_val = pmu_format_max_value(format->bits);
832 err->idx = term->err_val;
833 if (asprintf(&err->str,
834 "value too big for format, maximum is %llu",
835 (unsigned long long)max_val) < 0)
836 err->str = strdup("value too big for format");
840 * Assume we don't care if !err, in which case the value will be
841 * silently truncated.
845 pmu_format_value(format->bits, val, vp, zero);
849 int perf_pmu__config_terms(struct list_head *formats,
850 struct perf_event_attr *attr,
851 struct list_head *head_terms,
852 bool zero, struct parse_events_error *err)
854 struct parse_events_term *term;
856 list_for_each_entry(term, head_terms, list) {
857 if (pmu_config_term(formats, attr, term, head_terms,
866 * Configures event's 'attr' parameter based on the:
867 * 1) users input - specified in terms parameter
868 * 2) pmu format definitions - specified by pmu parameter
870 int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
871 struct list_head *head_terms,
872 struct parse_events_error *err)
874 bool zero = !!pmu->default_config;
876 attr->type = pmu->type;
877 return perf_pmu__config_terms(&pmu->format, attr, head_terms,
881 static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
882 struct parse_events_term *term)
884 struct perf_pmu_alias *alias;
887 if (parse_events__is_hardcoded_term(term))
890 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
891 if (term->val.num != 1)
893 if (pmu_find_format(&pmu->format, term->config))
896 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
897 if (strcasecmp(term->config, "event"))
899 name = term->val.str;
904 list_for_each_entry(alias, &pmu->aliases, list) {
905 if (!strcasecmp(alias->name, name))
912 static int check_info_data(struct perf_pmu_alias *alias,
913 struct perf_pmu_info *info)
916 * Only one term in event definition can
917 * define unit, scale and snapshot, fail
918 * if there's more than one.
920 if ((info->unit && alias->unit) ||
921 (info->scale && alias->scale) ||
922 (info->snapshot && alias->snapshot))
926 info->unit = alias->unit;
929 info->scale = alias->scale;
932 info->snapshot = alias->snapshot;
938 * Find alias in the terms list and replace it with the terms
939 * defined for the alias
941 int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
942 struct perf_pmu_info *info)
944 struct parse_events_term *term, *h;
945 struct perf_pmu_alias *alias;
948 info->per_pkg = false;
951 * Mark unit and scale as not set
952 * (different from default values, see below)
956 info->snapshot = false;
958 list_for_each_entry_safe(term, h, head_terms, list) {
959 alias = pmu_find_alias(pmu, term);
962 ret = pmu_alias_terms(alias, &term->list);
966 ret = check_info_data(alias, info);
971 info->per_pkg = true;
973 list_del(&term->list);
978 * if no unit or scale foundin aliases, then
979 * set defaults as for evsel
980 * unit cannot left to NULL
982 if (info->unit == NULL)
985 if (info->scale == 0.0)
991 int perf_pmu__new_format(struct list_head *list, char *name,
992 int config, unsigned long *bits)
994 struct perf_pmu_format *format;
996 format = zalloc(sizeof(*format));
1000 format->name = strdup(name);
1001 format->value = config;
1002 memcpy(format->bits, bits, sizeof(format->bits));
1004 list_add_tail(&format->list, list);
1008 void perf_pmu__set_format(unsigned long *bits, long from, long to)
1015 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
1016 for (b = from; b <= to; b++)
1020 static int sub_non_neg(int a, int b)
1027 static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
1028 struct perf_pmu_alias *alias)
1030 struct parse_events_term *term;
1031 int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1033 list_for_each_entry(term, &alias->terms, list) {
1034 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
1035 used += snprintf(buf + used, sub_non_neg(len, used),
1036 ",%s=%s", term->config,
1040 if (sub_non_neg(len, used) > 0) {
1044 if (sub_non_neg(len, used) > 0) {
1048 buf[len - 1] = '\0';
1053 static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
1054 struct perf_pmu_alias *alias)
1056 snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
1066 static int cmp_sevent(const void *a, const void *b)
1068 const struct sevent *as = a;
1069 const struct sevent *bs = b;
1071 /* Put extra events last */
1072 if (!!as->desc != !!bs->desc)
1073 return !!as->desc - !!bs->desc;
1074 if (as->topic && bs->topic) {
1075 int n = strcmp(as->topic, bs->topic);
1080 return strcmp(as->name, bs->name);
1083 static void wordwrap(char *s, int start, int max, int corr)
1089 int wlen = strcspn(s, " \t");
1091 if (column + wlen >= max && column > start) {
1092 printf("\n%*s", start, "");
1093 column = start + corr;
1095 n = printf("%s%.*s", column > start ? " " : "", wlen, s);
1105 void print_pmu_events(const char *event_glob, bool name_only, bool quiet_flag,
1108 struct perf_pmu *pmu;
1109 struct perf_pmu_alias *alias;
1113 struct sevent *aliases;
1115 int columns = pager_get_columns();
1120 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1121 list_for_each_entry(alias, &pmu->aliases, list)
1123 if (pmu->selectable)
1126 aliases = zalloc(sizeof(struct sevent) * len);
1131 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1132 list_for_each_entry(alias, &pmu->aliases, list) {
1133 char *name = alias->desc ? alias->name :
1134 format_alias(buf, sizeof(buf), pmu, alias);
1135 bool is_cpu = !strcmp(pmu->name, "cpu");
1137 if (event_glob != NULL &&
1138 !(strglobmatch(name, event_glob) ||
1139 (!is_cpu && strglobmatch(alias->name,
1143 if (is_cpu && !name_only && !alias->desc)
1144 name = format_alias_or(buf, sizeof(buf), pmu, alias);
1146 aliases[j].name = name;
1147 if (is_cpu && !name_only && !alias->desc)
1148 aliases[j].name = format_alias_or(buf,
1151 aliases[j].name = strdup(aliases[j].name);
1152 if (!aliases[j].name)
1155 aliases[j].desc = long_desc ? alias->long_desc :
1157 aliases[j].topic = alias->topic;
1160 if (pmu->selectable &&
1161 (event_glob == NULL || strglobmatch(pmu->name, event_glob))) {
1163 if (asprintf(&s, "%s//", pmu->name) < 0)
1165 aliases[j].name = s;
1170 qsort(aliases, len, sizeof(struct sevent), cmp_sevent);
1171 for (j = 0; j < len; j++) {
1173 printf("%s ", aliases[j].name);
1176 if (aliases[j].desc && !quiet_flag) {
1179 if (aliases[j].topic && (!topic ||
1180 strcmp(topic, aliases[j].topic))) {
1181 printf("%s%s:\n", topic ? "\n" : "",
1183 topic = aliases[j].topic;
1185 printf(" %-50s\n", aliases[j].name);
1186 printf("%*s", 8, "[");
1187 wordwrap(aliases[j].desc, 8, columns, 0);
1190 printf(" %-50s [Kernel PMU event]\n", aliases[j].name);
1193 if (printed && pager_in_use())
1196 for (j = 0; j < len; j++)
1197 zfree(&aliases[j].name);
1202 printf("FATAL: not enough memory to print PMU events\n");
1207 bool pmu_have_event(const char *pname, const char *name)
1209 struct perf_pmu *pmu;
1210 struct perf_pmu_alias *alias;
1213 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1214 if (strcmp(pname, pmu->name))
1216 list_for_each_entry(alias, &pmu->aliases, list)
1217 if (!strcmp(alias->name, name))
1223 static FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1226 char path[PATH_MAX];
1229 sysfs = sysfs__mountpoint();
1233 snprintf(path, PATH_MAX,
1234 "%s" EVENT_SOURCE_DEVICE_PATH "%s/%s", sysfs, pmu->name, name);
1236 if (stat(path, &st) < 0)
1239 return fopen(path, "r");
1242 int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1249 va_start(args, fmt);
1250 file = perf_pmu__open_file(pmu, name);
1252 ret = vfscanf(file, fmt, args);