xref: /openbmc/linux/tools/perf/util/pmu.c (revision ed1666f6)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/list.h>
3 #include <linux/compiler.h>
4 #include <sys/types.h>
5 #include <errno.h>
6 #include <fcntl.h>
7 #include <sys/stat.h>
8 #include <unistd.h>
9 #include <stdio.h>
10 #include <stdbool.h>
11 #include <stdarg.h>
12 #include <dirent.h>
13 #include <api/fs/fs.h>
14 #include <locale.h>
15 #include <regex.h>
16 #include "util.h"
17 #include "pmu.h"
18 #include "parse-events.h"
19 #include "cpumap.h"
20 #include "header.h"
21 #include "pmu-events/pmu-events.h"
22 #include "cache.h"
23 #include "string2.h"
24 
25 struct perf_pmu_format {
26 	char *name;
27 	int value;
28 	DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
29 	struct list_head list;
30 };
31 
32 int perf_pmu_parse(struct list_head *list, char *name);
33 extern FILE *perf_pmu_in;
34 
35 static LIST_HEAD(pmus);
36 
37 /*
38  * Parse & process all the sysfs attributes located under
39  * the directory specified in 'dir' parameter.
40  */
41 int perf_pmu__format_parse(char *dir, struct list_head *head)
42 {
43 	struct dirent *evt_ent;
44 	DIR *format_dir;
45 	int ret = 0;
46 
47 	format_dir = opendir(dir);
48 	if (!format_dir)
49 		return -EINVAL;
50 
51 	while (!ret && (evt_ent = readdir(format_dir))) {
52 		char path[PATH_MAX];
53 		char *name = evt_ent->d_name;
54 		FILE *file;
55 
56 		if (!strcmp(name, ".") || !strcmp(name, ".."))
57 			continue;
58 
59 		snprintf(path, PATH_MAX, "%s/%s", dir, name);
60 
61 		ret = -EINVAL;
62 		file = fopen(path, "r");
63 		if (!file)
64 			break;
65 
66 		perf_pmu_in = file;
67 		ret = perf_pmu_parse(head, name);
68 		fclose(file);
69 	}
70 
71 	closedir(format_dir);
72 	return ret;
73 }
74 
75 /*
76  * Reading/parsing the default pmu format definition, which should be
77  * located at:
78  * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
79  */
80 static int pmu_format(const char *name, struct list_head *format)
81 {
82 	struct stat st;
83 	char path[PATH_MAX];
84 	const char *sysfs = sysfs__mountpoint();
85 
86 	if (!sysfs)
87 		return -1;
88 
89 	snprintf(path, PATH_MAX,
90 		 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
91 
92 	if (stat(path, &st) < 0)
93 		return 0;	/* no error if format does not exist */
94 
95 	if (perf_pmu__format_parse(path, format))
96 		return -1;
97 
98 	return 0;
99 }
100 
101 static int convert_scale(const char *scale, char **end, double *sval)
102 {
103 	char *lc;
104 	int ret = 0;
105 
106 	/*
107 	 * save current locale
108 	 */
109 	lc = setlocale(LC_NUMERIC, NULL);
110 
111 	/*
112 	 * The lc string may be allocated in static storage,
113 	 * so get a dynamic copy to make it survive setlocale
114 	 * call below.
115 	 */
116 	lc = strdup(lc);
117 	if (!lc) {
118 		ret = -ENOMEM;
119 		goto out;
120 	}
121 
122 	/*
123 	 * force to C locale to ensure kernel
124 	 * scale string is converted correctly.
125 	 * kernel uses default C locale.
126 	 */
127 	setlocale(LC_NUMERIC, "C");
128 
129 	*sval = strtod(scale, end);
130 
131 out:
132 	/* restore locale */
133 	setlocale(LC_NUMERIC, lc);
134 	free(lc);
135 	return ret;
136 }
137 
138 static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
139 {
140 	struct stat st;
141 	ssize_t sret;
142 	char scale[128];
143 	int fd, ret = -1;
144 	char path[PATH_MAX];
145 
146 	scnprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
147 
148 	fd = open(path, O_RDONLY);
149 	if (fd == -1)
150 		return -1;
151 
152 	if (fstat(fd, &st) < 0)
153 		goto error;
154 
155 	sret = read(fd, scale, sizeof(scale)-1);
156 	if (sret < 0)
157 		goto error;
158 
159 	if (scale[sret - 1] == '\n')
160 		scale[sret - 1] = '\0';
161 	else
162 		scale[sret] = '\0';
163 
164 	ret = convert_scale(scale, NULL, &alias->scale);
165 error:
166 	close(fd);
167 	return ret;
168 }
169 
170 static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
171 {
172 	char path[PATH_MAX];
173 	ssize_t sret;
174 	int fd;
175 
176 	scnprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
177 
178 	fd = open(path, O_RDONLY);
179 	if (fd == -1)
180 		return -1;
181 
182 	sret = read(fd, alias->unit, UNIT_MAX_LEN);
183 	if (sret < 0)
184 		goto error;
185 
186 	close(fd);
187 
188 	if (alias->unit[sret - 1] == '\n')
189 		alias->unit[sret - 1] = '\0';
190 	else
191 		alias->unit[sret] = '\0';
192 
193 	return 0;
194 error:
195 	close(fd);
196 	alias->unit[0] = '\0';
197 	return -1;
198 }
199 
200 static int
201 perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name)
202 {
203 	char path[PATH_MAX];
204 	int fd;
205 
206 	scnprintf(path, PATH_MAX, "%s/%s.per-pkg", dir, name);
207 
208 	fd = open(path, O_RDONLY);
209 	if (fd == -1)
210 		return -1;
211 
212 	close(fd);
213 
214 	alias->per_pkg = true;
215 	return 0;
216 }
217 
218 static int perf_pmu__parse_snapshot(struct perf_pmu_alias *alias,
219 				    char *dir, char *name)
220 {
221 	char path[PATH_MAX];
222 	int fd;
223 
224 	scnprintf(path, PATH_MAX, "%s/%s.snapshot", dir, name);
225 
226 	fd = open(path, O_RDONLY);
227 	if (fd == -1)
228 		return -1;
229 
230 	alias->snapshot = true;
231 	close(fd);
232 	return 0;
233 }
234 
235 static void perf_pmu_assign_str(char *name, const char *field, char **old_str,
236 				char **new_str)
237 {
238 	if (!*old_str)
239 		goto set_new;
240 
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",
244 				 name, field);
245 		zfree(old_str);
246 	} else		/* Nothing new --> keep old string */
247 		return;
248 set_new:
249 	*old_str = *new_str;
250 	*new_str = NULL;
251 }
252 
253 static void perf_pmu_update_alias(struct perf_pmu_alias *old,
254 				  struct perf_pmu_alias *newalias)
255 {
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));
269 }
270 
271 /* Delete an alias entry. */
272 static void perf_pmu_free_alias(struct perf_pmu_alias *newalias)
273 {
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);
282 	free(newalias);
283 }
284 
285 /* Merge an alias, search in alias list. If this name is already
286  * present merge both of them to combine all information.
287  */
288 static bool perf_pmu_merge_alias(struct perf_pmu_alias *newalias,
289 				 struct list_head *alist)
290 {
291 	struct perf_pmu_alias *a;
292 
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);
297 			return true;
298 		}
299 	}
300 	return false;
301 }
302 
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,
307 				 char *metric_expr,
308 				 char *metric_name)
309 {
310 	struct parse_events_term *term;
311 	struct perf_pmu_alias *alias;
312 	int ret;
313 	int num;
314 	char newval[256];
315 
316 	alias = malloc(sizeof(*alias));
317 	if (!alias)
318 		return -ENOMEM;
319 
320 	INIT_LIST_HEAD(&alias->terms);
321 	alias->scale = 1.0;
322 	alias->unit[0] = '\0';
323 	alias->per_pkg = false;
324 	alias->snapshot = false;
325 
326 	ret = parse_events_terms(&alias->terms, val);
327 	if (ret) {
328 		pr_err("Cannot parse alias %s: %d\n", val, ret);
329 		free(alias);
330 		return ret;
331 	}
332 
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).
337 	 *
338 	 * Rebuild string to make alias->str member comparable.
339 	 */
340 	memset(newval, 0, sizeof(newval));
341 	ret = 0;
342 	list_for_each_entry(term, &alias->terms, list) {
343 		if (ret)
344 			ret += scnprintf(newval + ret, sizeof(newval) - ret,
345 					 ",");
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);
352 	}
353 
354 	alias->name = strdup(name);
355 	if (dir) {
356 		/*
357 		 * load unit name and scale if available
358 		 */
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);
363 	}
364 
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;
371 	if (unit) {
372 		if (convert_scale(unit, &unit, &alias->scale) < 0)
373 			return -1;
374 		snprintf(alias->unit, sizeof(alias->unit), "%s", unit);
375 	}
376 	alias->per_pkg = perpkg && sscanf(perpkg, "%d", &num) == 1 && num == 1;
377 	alias->str = strdup(newval);
378 
379 	if (!perf_pmu_merge_alias(alias, list))
380 		list_add_tail(&alias->list, list);
381 
382 	return 0;
383 }
384 
385 static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
386 {
387 	char buf[256];
388 	int ret;
389 
390 	ret = fread(buf, 1, sizeof(buf), file);
391 	if (ret == 0)
392 		return -EINVAL;
393 
394 	buf[ret] = 0;
395 
396 	/* Remove trailing newline from sysfs file */
397 	rtrim(buf);
398 
399 	return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL, NULL, NULL,
400 				     NULL, NULL, NULL);
401 }
402 
403 static inline bool pmu_alias_info_file(char *name)
404 {
405 	size_t len;
406 
407 	len = strlen(name);
408 	if (len > 5 && !strcmp(name + len - 5, ".unit"))
409 		return true;
410 	if (len > 6 && !strcmp(name + len - 6, ".scale"))
411 		return true;
412 	if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
413 		return true;
414 	if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
415 		return true;
416 
417 	return false;
418 }
419 
420 /*
421  * Process all the sysfs attributes located under the directory
422  * specified in 'dir' parameter.
423  */
424 static int pmu_aliases_parse(char *dir, struct list_head *head)
425 {
426 	struct dirent *evt_ent;
427 	DIR *event_dir;
428 
429 	event_dir = opendir(dir);
430 	if (!event_dir)
431 		return -EINVAL;
432 
433 	while ((evt_ent = readdir(event_dir))) {
434 		char path[PATH_MAX];
435 		char *name = evt_ent->d_name;
436 		FILE *file;
437 
438 		if (!strcmp(name, ".") || !strcmp(name, ".."))
439 			continue;
440 
441 		/*
442 		 * skip info files parsed in perf_pmu__new_alias()
443 		 */
444 		if (pmu_alias_info_file(name))
445 			continue;
446 
447 		scnprintf(path, PATH_MAX, "%s/%s", dir, name);
448 
449 		file = fopen(path, "r");
450 		if (!file) {
451 			pr_debug("Cannot open %s\n", path);
452 			continue;
453 		}
454 
455 		if (perf_pmu__new_alias(head, dir, name, file) < 0)
456 			pr_debug("Cannot set up %s\n", name);
457 		fclose(file);
458 	}
459 
460 	closedir(event_dir);
461 	return 0;
462 }
463 
464 /*
465  * Reading the pmu event aliases definition, which should be located at:
466  * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
467  */
468 static int pmu_aliases(const char *name, struct list_head *head)
469 {
470 	struct stat st;
471 	char path[PATH_MAX];
472 	const char *sysfs = sysfs__mountpoint();
473 
474 	if (!sysfs)
475 		return -1;
476 
477 	snprintf(path, PATH_MAX,
478 		 "%s/bus/event_source/devices/%s/events", sysfs, name);
479 
480 	if (stat(path, &st) < 0)
481 		return 0;	 /* no error if 'events' does not exist */
482 
483 	if (pmu_aliases_parse(path, head))
484 		return -1;
485 
486 	return 0;
487 }
488 
489 static int pmu_alias_terms(struct perf_pmu_alias *alias,
490 			   struct list_head *terms)
491 {
492 	struct parse_events_term *term, *cloned;
493 	LIST_HEAD(list);
494 	int ret;
495 
496 	list_for_each_entry(term, &alias->terms, list) {
497 		ret = parse_events_term__clone(&cloned, term);
498 		if (ret) {
499 			parse_events_terms__purge(&list);
500 			return ret;
501 		}
502 		/*
503 		 * Weak terms don't override command line options,
504 		 * which we don't want for implicit terms in aliases.
505 		 */
506 		cloned->weak = true;
507 		list_add_tail(&cloned->list, &list);
508 	}
509 	list_splice(&list, terms);
510 	return 0;
511 }
512 
513 /*
514  * Reading/parsing the default pmu type value, which should be
515  * located at:
516  * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
517  */
518 static int pmu_type(const char *name, __u32 *type)
519 {
520 	struct stat st;
521 	char path[PATH_MAX];
522 	FILE *file;
523 	int ret = 0;
524 	const char *sysfs = sysfs__mountpoint();
525 
526 	if (!sysfs)
527 		return -1;
528 
529 	snprintf(path, PATH_MAX,
530 		 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
531 
532 	if (stat(path, &st) < 0)
533 		return -1;
534 
535 	file = fopen(path, "r");
536 	if (!file)
537 		return -EINVAL;
538 
539 	if (1 != fscanf(file, "%u", type))
540 		ret = -1;
541 
542 	fclose(file);
543 	return ret;
544 }
545 
546 /* Add all pmus in sysfs to pmu list: */
547 static void pmu_read_sysfs(void)
548 {
549 	char path[PATH_MAX];
550 	DIR *dir;
551 	struct dirent *dent;
552 	const char *sysfs = sysfs__mountpoint();
553 
554 	if (!sysfs)
555 		return;
556 
557 	snprintf(path, PATH_MAX,
558 		 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
559 
560 	dir = opendir(path);
561 	if (!dir)
562 		return;
563 
564 	while ((dent = readdir(dir))) {
565 		if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
566 			continue;
567 		/* add to static LIST_HEAD(pmus): */
568 		perf_pmu__find(dent->d_name);
569 	}
570 
571 	closedir(dir);
572 }
573 
574 static struct cpu_map *__pmu_cpumask(const char *path)
575 {
576 	FILE *file;
577 	struct cpu_map *cpus;
578 
579 	file = fopen(path, "r");
580 	if (!file)
581 		return NULL;
582 
583 	cpus = cpu_map__read(file);
584 	fclose(file);
585 	return cpus;
586 }
587 
588 /*
589  * Uncore PMUs have a "cpumask" file under sysfs. CPU PMUs (e.g. on arm/arm64)
590  * may have a "cpus" file.
591  */
592 #define CPUS_TEMPLATE_UNCORE	"%s/bus/event_source/devices/%s/cpumask"
593 #define CPUS_TEMPLATE_CPU	"%s/bus/event_source/devices/%s/cpus"
594 
595 static struct cpu_map *pmu_cpumask(const char *name)
596 {
597 	char path[PATH_MAX];
598 	struct cpu_map *cpus;
599 	const char *sysfs = sysfs__mountpoint();
600 	const char *templates[] = {
601 		CPUS_TEMPLATE_UNCORE,
602 		CPUS_TEMPLATE_CPU,
603 		NULL
604 	};
605 	const char **template;
606 
607 	if (!sysfs)
608 		return NULL;
609 
610 	for (template = templates; *template; template++) {
611 		snprintf(path, PATH_MAX, *template, sysfs, name);
612 		cpus = __pmu_cpumask(path);
613 		if (cpus)
614 			return cpus;
615 	}
616 
617 	return NULL;
618 }
619 
620 static bool pmu_is_uncore(const char *name)
621 {
622 	char path[PATH_MAX];
623 	struct cpu_map *cpus;
624 	const char *sysfs = sysfs__mountpoint();
625 
626 	snprintf(path, PATH_MAX, CPUS_TEMPLATE_UNCORE, sysfs, name);
627 	cpus = __pmu_cpumask(path);
628 	cpu_map__put(cpus);
629 
630 	return !!cpus;
631 }
632 
633 /*
634  *  PMU CORE devices have different name other than cpu in sysfs on some
635  *  platforms.
636  *  Looking for possible sysfs files to identify the arm core device.
637  */
638 static int is_arm_pmu_core(const char *name)
639 {
640 	struct stat st;
641 	char path[PATH_MAX];
642 	const char *sysfs = sysfs__mountpoint();
643 
644 	if (!sysfs)
645 		return 0;
646 
647 	/* Look for cpu sysfs (specific to arm) */
648 	scnprintf(path, PATH_MAX, "%s/bus/event_source/devices/%s/cpus",
649 				sysfs, name);
650 	if (stat(path, &st) == 0)
651 		return 1;
652 
653 	return 0;
654 }
655 
656 static char *perf_pmu__getcpuid(struct perf_pmu *pmu)
657 {
658 	char *cpuid;
659 	static bool printed;
660 
661 	cpuid = getenv("PERF_CPUID");
662 	if (cpuid)
663 		cpuid = strdup(cpuid);
664 	if (!cpuid)
665 		cpuid = get_cpuid_str(pmu);
666 	if (!cpuid)
667 		return NULL;
668 
669 	if (!printed) {
670 		pr_debug("Using CPUID %s\n", cpuid);
671 		printed = true;
672 	}
673 	return cpuid;
674 }
675 
676 struct pmu_events_map *perf_pmu__find_map(struct perf_pmu *pmu)
677 {
678 	struct pmu_events_map *map;
679 	char *cpuid = perf_pmu__getcpuid(pmu);
680 	int i;
681 
682 	/* on some platforms which uses cpus map, cpuid can be NULL for
683 	 * PMUs other than CORE PMUs.
684 	 */
685 	if (!cpuid)
686 		return NULL;
687 
688 	i = 0;
689 	for (;;) {
690 		map = &pmu_events_map[i++];
691 		if (!map->table) {
692 			map = NULL;
693 			break;
694 		}
695 
696 		if (!strcmp_cpuid_str(map->cpuid, cpuid))
697 			break;
698 	}
699 	free(cpuid);
700 	return map;
701 }
702 
703 /*
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
706  * as aliases.
707  */
708 static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
709 {
710 	int i;
711 	struct pmu_events_map *map;
712 	struct pmu_event *pe;
713 	const char *name = pmu->name;
714 	const char *pname;
715 
716 	map = perf_pmu__find_map(pmu);
717 	if (!map)
718 		return;
719 
720 	/*
721 	 * Found a matching PMU events table. Create aliases
722 	 */
723 	i = 0;
724 	while (1) {
725 
726 		pe = &map->table[i++];
727 		if (!pe->name) {
728 			if (pe->metric_group || pe->metric_name)
729 				continue;
730 			break;
731 		}
732 
733 		if (!is_arm_pmu_core(name)) {
734 			pname = pe->pmu ? pe->pmu : "cpu";
735 			if (strcmp(pname, name))
736 				continue;
737 		}
738 
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);
746 	}
747 }
748 
749 struct perf_event_attr * __weak
750 perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
751 {
752 	return NULL;
753 }
754 
755 static int pmu_max_precise(const char *name)
756 {
757 	char path[PATH_MAX];
758 	int max_precise = -1;
759 
760 	scnprintf(path, PATH_MAX,
761 		 "bus/event_source/devices/%s/caps/max_precise",
762 		 name);
763 
764 	sysfs__read_int(path, &max_precise);
765 	return max_precise;
766 }
767 
768 static struct perf_pmu *pmu_lookup(const char *name)
769 {
770 	struct perf_pmu *pmu;
771 	LIST_HEAD(format);
772 	LIST_HEAD(aliases);
773 	__u32 type;
774 
775 	/*
776 	 * The pmu data we store & need consists of the pmu
777 	 * type value and format definitions. Load both right
778 	 * now.
779 	 */
780 	if (pmu_format(name, &format))
781 		return NULL;
782 
783 	/*
784 	 * Check the type first to avoid unnecessary work.
785 	 */
786 	if (pmu_type(name, &type))
787 		return NULL;
788 
789 	if (pmu_aliases(name, &aliases))
790 		return NULL;
791 
792 	pmu = zalloc(sizeof(*pmu));
793 	if (!pmu)
794 		return NULL;
795 
796 	pmu->cpus = pmu_cpumask(name);
797 	pmu->name = strdup(name);
798 	pmu->type = type;
799 	pmu->is_uncore = pmu_is_uncore(name);
800 	pmu->max_precise = pmu_max_precise(name);
801 	pmu_add_cpu_aliases(&aliases, pmu);
802 
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);
808 
809 	pmu->default_config = perf_pmu__get_default_config(pmu);
810 
811 	return pmu;
812 }
813 
814 static struct perf_pmu *pmu_find(const char *name)
815 {
816 	struct perf_pmu *pmu;
817 
818 	list_for_each_entry(pmu, &pmus, list)
819 		if (!strcmp(pmu->name, name))
820 			return pmu;
821 
822 	return NULL;
823 }
824 
825 struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
826 {
827 	/*
828 	 * pmu iterator: If pmu is NULL, we start at the begin,
829 	 * otherwise return the next pmu. Returns NULL on end.
830 	 */
831 	if (!pmu) {
832 		pmu_read_sysfs();
833 		pmu = list_prepare_entry(pmu, &pmus, list);
834 	}
835 	list_for_each_entry_continue(pmu, &pmus, list)
836 		return pmu;
837 	return NULL;
838 }
839 
840 struct perf_pmu *perf_pmu__find(const char *name)
841 {
842 	struct perf_pmu *pmu;
843 
844 	/*
845 	 * Once PMU is loaded it stays in the list,
846 	 * so we keep us from multiple reading/parsing
847 	 * the pmu format definitions.
848 	 */
849 	pmu = pmu_find(name);
850 	if (pmu)
851 		return pmu;
852 
853 	return pmu_lookup(name);
854 }
855 
856 static struct perf_pmu_format *
857 pmu_find_format(struct list_head *formats, const char *name)
858 {
859 	struct perf_pmu_format *format;
860 
861 	list_for_each_entry(format, formats, list)
862 		if (!strcmp(format->name, name))
863 			return format;
864 
865 	return NULL;
866 }
867 
868 __u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
869 {
870 	struct perf_pmu_format *format = pmu_find_format(formats, name);
871 	__u64 bits = 0;
872 	int fbit;
873 
874 	if (!format)
875 		return 0;
876 
877 	for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
878 		bits |= 1ULL << fbit;
879 
880 	return bits;
881 }
882 
883 /*
884  * Sets value based on the format definition (format parameter)
885  * and unformated value (value parameter).
886  */
887 static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
888 			     bool zero)
889 {
890 	unsigned long fbit, vbit;
891 
892 	for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
893 
894 		if (!test_bit(fbit, format))
895 			continue;
896 
897 		if (value & (1llu << vbit++))
898 			*v |= (1llu << fbit);
899 		else if (zero)
900 			*v &= ~(1llu << fbit);
901 	}
902 }
903 
904 static __u64 pmu_format_max_value(const unsigned long *format)
905 {
906 	int w;
907 
908 	w = bitmap_weight(format, PERF_PMU_FORMAT_BITS);
909 	if (!w)
910 		return 0;
911 	if (w < 64)
912 		return (1ULL << w) - 1;
913 	return -1;
914 }
915 
916 /*
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.
922  */
923 static int pmu_resolve_param_term(struct parse_events_term *term,
924 				  struct list_head *head_terms,
925 				  __u64 *value)
926 {
927 	struct parse_events_term *t;
928 
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)) {
932 				t->used = true;
933 				*value = t->val.num;
934 				return 0;
935 			}
936 		}
937 	}
938 
939 	if (verbose > 0)
940 		printf("Required parameter '%s' not specified\n", term->config);
941 
942 	return -1;
943 }
944 
945 static char *pmu_formats_string(struct list_head *formats)
946 {
947 	struct perf_pmu_format *format;
948 	char *str = NULL;
949 	struct strbuf buf = STRBUF_INIT;
950 	unsigned i = 0;
951 
952 	if (!formats)
953 		return NULL;
954 
955 	/* sysfs exported terms */
956 	list_for_each_entry(format, formats, list)
957 		if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
958 			goto error;
959 
960 	str = strbuf_detach(&buf, NULL);
961 error:
962 	strbuf_release(&buf);
963 
964 	return str;
965 }
966 
967 /*
968  * Setup one of config[12] attr members based on the
969  * user input data - term parameter.
970  */
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)
976 {
977 	struct perf_pmu_format *format;
978 	__u64 *vp;
979 	__u64 val, max_val;
980 
981 	/*
982 	 * If this is a parameter we've already used for parameterized-eval,
983 	 * skip it in normal eval.
984 	 */
985 	if (term->used)
986 		return 0;
987 
988 	/*
989 	 * Hardcoded terms should be already in, so nothing
990 	 * to be done for them.
991 	 */
992 	if (parse_events__is_hardcoded_term(term))
993 		return 0;
994 
995 	format = pmu_find_format(formats, term->config);
996 	if (!format) {
997 		if (verbose > 0)
998 			printf("Invalid event/parameter '%s'\n", term->config);
999 		if (err) {
1000 			char *pmu_term = pmu_formats_string(formats);
1001 
1002 			err->idx  = term->err_term;
1003 			err->str  = strdup("unknown term");
1004 			err->help = parse_events_formats_error_string(pmu_term);
1005 			free(pmu_term);
1006 		}
1007 		return -EINVAL;
1008 	}
1009 
1010 	switch (format->value) {
1011 	case PERF_PMU_FORMAT_VALUE_CONFIG:
1012 		vp = &attr->config;
1013 		break;
1014 	case PERF_PMU_FORMAT_VALUE_CONFIG1:
1015 		vp = &attr->config1;
1016 		break;
1017 	case PERF_PMU_FORMAT_VALUE_CONFIG2:
1018 		vp = &attr->config2;
1019 		break;
1020 	default:
1021 		return -EINVAL;
1022 	}
1023 
1024 	/*
1025 	 * Either directly use a numeric term, or try to translate string terms
1026 	 * using event parameters.
1027 	 */
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) {
1031 			if (err) {
1032 				err->idx = term->err_val;
1033 				err->str = strdup("no value assigned for term");
1034 			}
1035 			return -EINVAL;
1036 		}
1037 
1038 		val = term->val.num;
1039 	} else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
1040 		if (strcmp(term->val.str, "?")) {
1041 			if (verbose > 0) {
1042 				pr_info("Invalid sysfs entry %s=%s\n",
1043 						term->config, term->val.str);
1044 			}
1045 			if (err) {
1046 				err->idx = term->err_val;
1047 				err->str = strdup("expected numeric value");
1048 			}
1049 			return -EINVAL;
1050 		}
1051 
1052 		if (pmu_resolve_param_term(term, head_terms, &val))
1053 			return -EINVAL;
1054 	} else
1055 		return -EINVAL;
1056 
1057 	max_val = pmu_format_max_value(format->bits);
1058 	if (val > max_val) {
1059 		if (err) {
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");
1065 			return -EINVAL;
1066 		}
1067 		/*
1068 		 * Assume we don't care if !err, in which case the value will be
1069 		 * silently truncated.
1070 		 */
1071 	}
1072 
1073 	pmu_format_value(format->bits, val, vp, zero);
1074 	return 0;
1075 }
1076 
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)
1081 {
1082 	struct parse_events_term *term;
1083 
1084 	list_for_each_entry(term, head_terms, list) {
1085 		if (pmu_config_term(formats, attr, term, head_terms,
1086 				    zero, err))
1087 			return -EINVAL;
1088 	}
1089 
1090 	return 0;
1091 }
1092 
1093 /*
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
1097  */
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)
1101 {
1102 	bool zero = !!pmu->default_config;
1103 
1104 	attr->type = pmu->type;
1105 	return perf_pmu__config_terms(&pmu->format, attr, head_terms,
1106 				      zero, err);
1107 }
1108 
1109 static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
1110 					     struct parse_events_term *term)
1111 {
1112 	struct perf_pmu_alias *alias;
1113 	char *name;
1114 
1115 	if (parse_events__is_hardcoded_term(term))
1116 		return NULL;
1117 
1118 	if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
1119 		if (term->val.num != 1)
1120 			return NULL;
1121 		if (pmu_find_format(&pmu->format, term->config))
1122 			return NULL;
1123 		name = term->config;
1124 	} else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
1125 		if (strcasecmp(term->config, "event"))
1126 			return NULL;
1127 		name = term->val.str;
1128 	} else {
1129 		return NULL;
1130 	}
1131 
1132 	list_for_each_entry(alias, &pmu->aliases, list) {
1133 		if (!strcasecmp(alias->name, name))
1134 			return alias;
1135 	}
1136 	return NULL;
1137 }
1138 
1139 
1140 static int check_info_data(struct perf_pmu_alias *alias,
1141 			   struct perf_pmu_info *info)
1142 {
1143 	/*
1144 	 * Only one term in event definition can
1145 	 * define unit, scale and snapshot, fail
1146 	 * if there's more than one.
1147 	 */
1148 	if ((info->unit && alias->unit[0]) ||
1149 	    (info->scale && alias->scale) ||
1150 	    (info->snapshot && alias->snapshot))
1151 		return -EINVAL;
1152 
1153 	if (alias->unit[0])
1154 		info->unit = alias->unit;
1155 
1156 	if (alias->scale)
1157 		info->scale = alias->scale;
1158 
1159 	if (alias->snapshot)
1160 		info->snapshot = alias->snapshot;
1161 
1162 	return 0;
1163 }
1164 
1165 /*
1166  * Find alias in the terms list and replace it with the terms
1167  * defined for the alias
1168  */
1169 int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
1170 			  struct perf_pmu_info *info)
1171 {
1172 	struct parse_events_term *term, *h;
1173 	struct perf_pmu_alias *alias;
1174 	int ret;
1175 
1176 	info->per_pkg = false;
1177 
1178 	/*
1179 	 * Mark unit and scale as not set
1180 	 * (different from default values, see below)
1181 	 */
1182 	info->unit     = NULL;
1183 	info->scale    = 0.0;
1184 	info->snapshot = false;
1185 	info->metric_expr = NULL;
1186 	info->metric_name = NULL;
1187 
1188 	list_for_each_entry_safe(term, h, head_terms, list) {
1189 		alias = pmu_find_alias(pmu, term);
1190 		if (!alias)
1191 			continue;
1192 		ret = pmu_alias_terms(alias, &term->list);
1193 		if (ret)
1194 			return ret;
1195 
1196 		ret = check_info_data(alias, info);
1197 		if (ret)
1198 			return ret;
1199 
1200 		if (alias->per_pkg)
1201 			info->per_pkg = true;
1202 		info->metric_expr = alias->metric_expr;
1203 		info->metric_name = alias->metric_name;
1204 
1205 		list_del(&term->list);
1206 		free(term);
1207 	}
1208 
1209 	/*
1210 	 * if no unit or scale foundin aliases, then
1211 	 * set defaults as for evsel
1212 	 * unit cannot left to NULL
1213 	 */
1214 	if (info->unit == NULL)
1215 		info->unit   = "";
1216 
1217 	if (info->scale == 0.0)
1218 		info->scale  = 1.0;
1219 
1220 	return 0;
1221 }
1222 
1223 int perf_pmu__new_format(struct list_head *list, char *name,
1224 			 int config, unsigned long *bits)
1225 {
1226 	struct perf_pmu_format *format;
1227 
1228 	format = zalloc(sizeof(*format));
1229 	if (!format)
1230 		return -ENOMEM;
1231 
1232 	format->name = strdup(name);
1233 	format->value = config;
1234 	memcpy(format->bits, bits, sizeof(format->bits));
1235 
1236 	list_add_tail(&format->list, list);
1237 	return 0;
1238 }
1239 
1240 void perf_pmu__set_format(unsigned long *bits, long from, long to)
1241 {
1242 	long b;
1243 
1244 	if (!to)
1245 		to = from;
1246 
1247 	memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
1248 	for (b = from; b <= to; b++)
1249 		set_bit(b, bits);
1250 }
1251 
1252 static int sub_non_neg(int a, int b)
1253 {
1254 	if (b > a)
1255 		return 0;
1256 	return a - b;
1257 }
1258 
1259 static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
1260 			  struct perf_pmu_alias *alias)
1261 {
1262 	struct parse_events_term *term;
1263 	int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1264 
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,
1269 					term->val.str);
1270 	}
1271 
1272 	if (sub_non_neg(len, used) > 0) {
1273 		buf[used] = '/';
1274 		used++;
1275 	}
1276 	if (sub_non_neg(len, used) > 0) {
1277 		buf[used] = '\0';
1278 		used++;
1279 	} else
1280 		buf[len - 1] = '\0';
1281 
1282 	return buf;
1283 }
1284 
1285 static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
1286 			     struct perf_pmu_alias *alias)
1287 {
1288 	snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
1289 	return buf;
1290 }
1291 
1292 struct sevent {
1293 	char *name;
1294 	char *desc;
1295 	char *topic;
1296 	char *str;
1297 	char *pmu;
1298 	char *metric_expr;
1299 	char *metric_name;
1300 };
1301 
1302 static int cmp_sevent(const void *a, const void *b)
1303 {
1304 	const struct sevent *as = a;
1305 	const struct sevent *bs = b;
1306 
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);
1312 
1313 		if (n)
1314 			return n;
1315 	}
1316 	return strcmp(as->name, bs->name);
1317 }
1318 
1319 static void wordwrap(char *s, int start, int max, int corr)
1320 {
1321 	int column = start;
1322 	int n;
1323 
1324 	while (*s) {
1325 		int wlen = strcspn(s, " \t");
1326 
1327 		if (column + wlen >= max && column > start) {
1328 			printf("\n%*s", start, "");
1329 			column = start + corr;
1330 		}
1331 		n = printf("%s%.*s", column > start ? " " : "", wlen, s);
1332 		if (n <= 0)
1333 			break;
1334 		s += wlen;
1335 		column += n;
1336 		s = ltrim(s);
1337 	}
1338 }
1339 
1340 void print_pmu_events(const char *event_glob, bool name_only, bool quiet_flag,
1341 			bool long_desc, bool details_flag)
1342 {
1343 	struct perf_pmu *pmu;
1344 	struct perf_pmu_alias *alias;
1345 	char buf[1024];
1346 	int printed = 0;
1347 	int len, j;
1348 	struct sevent *aliases;
1349 	int numdesc = 0;
1350 	int columns = pager_get_columns();
1351 	char *topic = NULL;
1352 
1353 	pmu = NULL;
1354 	len = 0;
1355 	while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1356 		list_for_each_entry(alias, &pmu->aliases, list)
1357 			len++;
1358 		if (pmu->selectable)
1359 			len++;
1360 	}
1361 	aliases = zalloc(sizeof(struct sevent) * len);
1362 	if (!aliases)
1363 		goto out_enomem;
1364 	pmu = NULL;
1365 	j = 0;
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");
1371 
1372 			if (event_glob != NULL &&
1373 			    !(strglobmatch_nocase(name, event_glob) ||
1374 			      (!is_cpu && strglobmatch_nocase(alias->name,
1375 						       event_glob)) ||
1376 			      (alias->topic &&
1377 			       strglobmatch_nocase(alias->topic, event_glob))))
1378 				continue;
1379 
1380 			if (is_cpu && !name_only && !alias->desc)
1381 				name = format_alias_or(buf, sizeof(buf), pmu, alias);
1382 
1383 			aliases[j].name = name;
1384 			if (is_cpu && !name_only && !alias->desc)
1385 				aliases[j].name = format_alias_or(buf,
1386 								  sizeof(buf),
1387 								  pmu, alias);
1388 			aliases[j].name = strdup(aliases[j].name);
1389 			if (!aliases[j].name)
1390 				goto out_enomem;
1391 
1392 			aliases[j].desc = long_desc ? alias->long_desc :
1393 						alias->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;
1399 			j++;
1400 		}
1401 		if (pmu->selectable &&
1402 		    (event_glob == NULL || strglobmatch(pmu->name, event_glob))) {
1403 			char *s;
1404 			if (asprintf(&s, "%s//", pmu->name) < 0)
1405 				goto out_enomem;
1406 			aliases[j].name = s;
1407 			j++;
1408 		}
1409 	}
1410 	len = j;
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))
1415 			continue;
1416 		if (name_only) {
1417 			printf("%s ", aliases[j].name);
1418 			continue;
1419 		}
1420 		if (aliases[j].desc && !quiet_flag) {
1421 			if (numdesc++ == 0)
1422 				printf("\n");
1423 			if (aliases[j].topic && (!topic ||
1424 					strcmp(topic, aliases[j].topic))) {
1425 				printf("%s%s:\n", topic ? "\n" : "",
1426 						aliases[j].topic);
1427 				topic = aliases[j].topic;
1428 			}
1429 			printf("  %-50s\n", aliases[j].name);
1430 			printf("%*s", 8, "[");
1431 			wordwrap(aliases[j].desc, 8, columns, 0);
1432 			printf("]\n");
1433 			if (details_flag) {
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);
1439 				putchar('\n');
1440 			}
1441 		} else
1442 			printf("  %-50s [Kernel PMU event]\n", aliases[j].name);
1443 		printed++;
1444 	}
1445 	if (printed && pager_in_use())
1446 		printf("\n");
1447 out_free:
1448 	for (j = 0; j < len; j++)
1449 		zfree(&aliases[j].name);
1450 	zfree(&aliases);
1451 	return;
1452 
1453 out_enomem:
1454 	printf("FATAL: not enough memory to print PMU events\n");
1455 	if (aliases)
1456 		goto out_free;
1457 }
1458 
1459 bool pmu_have_event(const char *pname, const char *name)
1460 {
1461 	struct perf_pmu *pmu;
1462 	struct perf_pmu_alias *alias;
1463 
1464 	pmu = NULL;
1465 	while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1466 		if (strcmp(pname, pmu->name))
1467 			continue;
1468 		list_for_each_entry(alias, &pmu->aliases, list)
1469 			if (!strcmp(alias->name, name))
1470 				return true;
1471 	}
1472 	return false;
1473 }
1474 
1475 static FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1476 {
1477 	struct stat st;
1478 	char path[PATH_MAX];
1479 	const char *sysfs;
1480 
1481 	sysfs = sysfs__mountpoint();
1482 	if (!sysfs)
1483 		return NULL;
1484 
1485 	snprintf(path, PATH_MAX,
1486 		 "%s" EVENT_SOURCE_DEVICE_PATH "%s/%s", sysfs, pmu->name, name);
1487 
1488 	if (stat(path, &st) < 0)
1489 		return NULL;
1490 
1491 	return fopen(path, "r");
1492 }
1493 
1494 int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1495 			...)
1496 {
1497 	va_list args;
1498 	FILE *file;
1499 	int ret = EOF;
1500 
1501 	va_start(args, fmt);
1502 	file = perf_pmu__open_file(pmu, name);
1503 	if (file) {
1504 		ret = vfscanf(file, fmt, args);
1505 		fclose(file);
1506 	}
1507 	va_end(args);
1508 	return ret;
1509 }
1510