blob: 7348eea0248fdbbe9bbbbf78adbc49f8ee624471 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jiri Olsacd82a322012-03-15 20:09:17 +01002#include <linux/list.h>
Sukadev Bhattiproluc5de47f2015-06-10 00:25:07 -07003#include <linux/compiler.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01004#include <sys/types.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03005#include <errno.h>
Arnaldo Carvalho de Meloc23c2a02017-09-11 10:50:26 -03006#include <fcntl.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -03007#include <sys/stat.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01008#include <unistd.h>
9#include <stdio.h>
Adrian Hunterdc0a6202014-07-31 09:00:49 +030010#include <stdbool.h>
Adrian Hunter7d4bdab2014-07-31 09:00:50 +030011#include <stdarg.h>
Jiri Olsacd82a322012-03-15 20:09:17 +010012#include <dirent.h>
Borislav Petkovcd0cfad2013-12-09 17:14:24 +010013#include <api/fs/fs.h>
Stephane Eranian410136f2013-11-12 17:58:49 +010014#include <locale.h>
William Cohenfbc28442017-12-04 09:57:28 -050015#include <regex.h>
Jiri Olsacd82a322012-03-15 20:09:17 +010016#include "util.h"
17#include "pmu.h"
18#include "parse-events.h"
Yan, Zheng7ae92e72012-09-10 15:53:50 +080019#include "cpumap.h"
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -070020#include "header.h"
21#include "pmu-events/pmu-events.h"
Andi Kleen61eb2eb2016-09-15 15:24:44 -070022#include "cache.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030023#include "string2.h"
Jiri Olsacd82a322012-03-15 20:09:17 +010024
Arnaldo Carvalho de Meloab1bf6532013-01-18 17:05:09 -030025struct perf_pmu_format {
26 char *name;
27 int value;
28 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
29 struct list_head list;
30};
31
Robert Richter50a96672012-08-16 21:10:24 +020032#define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"
33
Jiri Olsacd82a322012-03-15 20:09:17 +010034int perf_pmu_parse(struct list_head *list, char *name);
35extern FILE *perf_pmu_in;
36
37static LIST_HEAD(pmus);
38
39/*
40 * Parse & process all the sysfs attributes located under
41 * the directory specified in 'dir' parameter.
42 */
Jiri Olsacff7f952012-11-10 01:46:50 +010043int perf_pmu__format_parse(char *dir, struct list_head *head)
Jiri Olsacd82a322012-03-15 20:09:17 +010044{
45 struct dirent *evt_ent;
46 DIR *format_dir;
47 int ret = 0;
48
49 format_dir = opendir(dir);
50 if (!format_dir)
51 return -EINVAL;
52
53 while (!ret && (evt_ent = readdir(format_dir))) {
54 char path[PATH_MAX];
55 char *name = evt_ent->d_name;
56 FILE *file;
57
58 if (!strcmp(name, ".") || !strcmp(name, ".."))
59 continue;
60
61 snprintf(path, PATH_MAX, "%s/%s", dir, name);
62
63 ret = -EINVAL;
64 file = fopen(path, "r");
65 if (!file)
66 break;
67
68 perf_pmu_in = file;
69 ret = perf_pmu_parse(head, name);
70 fclose(file);
71 }
72
73 closedir(format_dir);
74 return ret;
75}
76
77/*
78 * Reading/parsing the default pmu format definition, which should be
79 * located at:
80 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
81 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +030082static int pmu_format(const char *name, struct list_head *format)
Jiri Olsacd82a322012-03-15 20:09:17 +010083{
84 struct stat st;
85 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -030086 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +010087
Jiri Olsacd82a322012-03-15 20:09:17 +010088 if (!sysfs)
89 return -1;
90
91 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +020092 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +010093
94 if (stat(path, &st) < 0)
Robert Richter9bc8f9f2012-06-14 22:38:37 +020095 return 0; /* no error if format does not exist */
Jiri Olsacd82a322012-03-15 20:09:17 +010096
Jiri Olsacff7f952012-11-10 01:46:50 +010097 if (perf_pmu__format_parse(path, format))
Jiri Olsacd82a322012-03-15 20:09:17 +010098 return -1;
99
100 return 0;
101}
102
Andi Kleend02fc6b2017-01-03 07:08:23 -0800103static int convert_scale(const char *scale, char **end, double *sval)
104{
105 char *lc;
106 int ret = 0;
107
108 /*
109 * save current locale
110 */
111 lc = setlocale(LC_NUMERIC, NULL);
112
113 /*
114 * The lc string may be allocated in static storage,
115 * so get a dynamic copy to make it survive setlocale
116 * call below.
117 */
118 lc = strdup(lc);
119 if (!lc) {
120 ret = -ENOMEM;
121 goto out;
122 }
123
124 /*
125 * force to C locale to ensure kernel
126 * scale string is converted correctly.
127 * kernel uses default C locale.
128 */
129 setlocale(LC_NUMERIC, "C");
130
131 *sval = strtod(scale, end);
132
133out:
134 /* restore locale */
135 setlocale(LC_NUMERIC, lc);
136 free(lc);
137 return ret;
138}
139
Stephane Eranian410136f2013-11-12 17:58:49 +0100140static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
141{
142 struct stat st;
143 ssize_t sret;
144 char scale[128];
145 int fd, ret = -1;
146 char path[PATH_MAX];
Stephane Eranian410136f2013-11-12 17:58:49 +0100147
Ben Hutchingsd124dd52018-11-11 18:45:24 +0000148 scnprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
Stephane Eranian410136f2013-11-12 17:58:49 +0100149
150 fd = open(path, O_RDONLY);
151 if (fd == -1)
152 return -1;
153
154 if (fstat(fd, &st) < 0)
155 goto error;
156
157 sret = read(fd, scale, sizeof(scale)-1);
158 if (sret < 0)
159 goto error;
160
Madhavan Srinivasan9ecae062015-05-31 11:36:23 +0530161 if (scale[sret - 1] == '\n')
162 scale[sret - 1] = '\0';
163 else
164 scale[sret] = '\0';
165
Andi Kleend02fc6b2017-01-03 07:08:23 -0800166 ret = convert_scale(scale, NULL, &alias->scale);
Stephane Eranian410136f2013-11-12 17:58:49 +0100167error:
168 close(fd);
169 return ret;
170}
171
172static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
173{
174 char path[PATH_MAX];
175 ssize_t sret;
176 int fd;
177
Ben Hutchingsd124dd52018-11-11 18:45:24 +0000178 scnprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
Stephane Eranian410136f2013-11-12 17:58:49 +0100179
180 fd = open(path, O_RDONLY);
181 if (fd == -1)
182 return -1;
183
Markus Trippelsdorfd85ce832015-12-14 16:44:40 +0100184 sret = read(fd, alias->unit, UNIT_MAX_LEN);
Stephane Eranian410136f2013-11-12 17:58:49 +0100185 if (sret < 0)
186 goto error;
187
188 close(fd);
189
Madhavan Srinivasan9ecae062015-05-31 11:36:23 +0530190 if (alias->unit[sret - 1] == '\n')
191 alias->unit[sret - 1] = '\0';
192 else
193 alias->unit[sret] = '\0';
Stephane Eranian410136f2013-11-12 17:58:49 +0100194
195 return 0;
196error:
197 close(fd);
198 alias->unit[0] = '\0';
199 return -1;
200}
201
Matt Fleming044330c2014-11-21 10:31:12 +0100202static int
203perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name)
204{
205 char path[PATH_MAX];
206 int fd;
207
Ben Hutchingsd124dd52018-11-11 18:45:24 +0000208 scnprintf(path, PATH_MAX, "%s/%s.per-pkg", dir, name);
Matt Fleming044330c2014-11-21 10:31:12 +0100209
210 fd = open(path, O_RDONLY);
211 if (fd == -1)
212 return -1;
213
214 close(fd);
215
216 alias->per_pkg = true;
217 return 0;
218}
219
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100220static int perf_pmu__parse_snapshot(struct perf_pmu_alias *alias,
221 char *dir, char *name)
222{
223 char path[PATH_MAX];
224 int fd;
225
Ben Hutchingsd124dd52018-11-11 18:45:24 +0000226 scnprintf(path, PATH_MAX, "%s/%s.snapshot", dir, name);
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100227
228 fd = open(path, O_RDONLY);
229 if (fd == -1)
230 return -1;
231
232 alias->snapshot = true;
233 close(fd);
234 return 0;
235}
236
Thomas Richter6dde6422018-06-15 12:11:05 +0200237static void perf_pmu_assign_str(char *name, const char *field, char **old_str,
238 char **new_str)
239{
240 if (!*old_str)
241 goto set_new;
242
243 if (*new_str) { /* Have new string, check with old */
244 if (strcasecmp(*old_str, *new_str))
245 pr_debug("alias %s differs in field '%s'\n",
246 name, field);
247 zfree(old_str);
248 } else /* Nothing new --> keep old string */
249 return;
250set_new:
251 *old_str = *new_str;
252 *new_str = NULL;
253}
254
255static void perf_pmu_update_alias(struct perf_pmu_alias *old,
256 struct perf_pmu_alias *newalias)
257{
258 perf_pmu_assign_str(old->name, "desc", &old->desc, &newalias->desc);
259 perf_pmu_assign_str(old->name, "long_desc", &old->long_desc,
260 &newalias->long_desc);
261 perf_pmu_assign_str(old->name, "topic", &old->topic, &newalias->topic);
262 perf_pmu_assign_str(old->name, "metric_expr", &old->metric_expr,
263 &newalias->metric_expr);
264 perf_pmu_assign_str(old->name, "metric_name", &old->metric_name,
265 &newalias->metric_name);
266 perf_pmu_assign_str(old->name, "value", &old->str, &newalias->str);
267 old->scale = newalias->scale;
268 old->per_pkg = newalias->per_pkg;
269 old->snapshot = newalias->snapshot;
270 memcpy(old->unit, newalias->unit, sizeof(old->unit));
271}
272
273/* Delete an alias entry. */
274static void perf_pmu_free_alias(struct perf_pmu_alias *newalias)
275{
276 zfree(&newalias->name);
277 zfree(&newalias->desc);
278 zfree(&newalias->long_desc);
279 zfree(&newalias->topic);
280 zfree(&newalias->str);
281 zfree(&newalias->metric_expr);
282 zfree(&newalias->metric_name);
283 parse_events_terms__purge(&newalias->terms);
284 free(newalias);
285}
286
287/* Merge an alias, search in alias list. If this name is already
288 * present merge both of them to combine all information.
289 */
290static bool perf_pmu_merge_alias(struct perf_pmu_alias *newalias,
291 struct list_head *alist)
292{
293 struct perf_pmu_alias *a;
294
295 list_for_each_entry(a, alist, list) {
296 if (!strcasecmp(newalias->name, a->name)) {
297 perf_pmu_update_alias(a, newalias);
298 perf_pmu_free_alias(newalias);
299 return true;
300 }
301 }
302 return false;
303}
304
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700305static int __perf_pmu__new_alias(struct list_head *list, char *dir, char *name,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800306 char *desc, char *val,
307 char *long_desc, char *topic,
Andi Kleen00636c32017-03-20 13:17:07 -0700308 char *unit, char *perpkg,
Andi Kleen96284812017-03-20 13:17:10 -0700309 char *metric_expr,
310 char *metric_name)
Zheng Yana6146d52012-06-15 14:31:41 +0800311{
Thomas Richter0c24d6f2018-06-15 12:11:04 +0200312 struct parse_events_term *term;
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300313 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800314 int ret;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800315 int num;
Thomas Richter0c24d6f2018-06-15 12:11:04 +0200316 char newval[256];
Zheng Yana6146d52012-06-15 14:31:41 +0800317
Zheng Yana6146d52012-06-15 14:31:41 +0800318 alias = malloc(sizeof(*alias));
319 if (!alias)
320 return -ENOMEM;
321
322 INIT_LIST_HEAD(&alias->terms);
Stephane Eranian410136f2013-11-12 17:58:49 +0100323 alias->scale = 1.0;
324 alias->unit[0] = '\0';
Matt Fleming044330c2014-11-21 10:31:12 +0100325 alias->per_pkg = false;
Stephane Eranian84530922016-01-06 19:50:01 +0100326 alias->snapshot = false;
Stephane Eranian410136f2013-11-12 17:58:49 +0100327
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700328 ret = parse_events_terms(&alias->terms, val);
Zheng Yana6146d52012-06-15 14:31:41 +0800329 if (ret) {
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700330 pr_err("Cannot parse alias %s: %d\n", val, ret);
Zheng Yana6146d52012-06-15 14:31:41 +0800331 free(alias);
332 return ret;
333 }
334
Thomas Richter0c24d6f2018-06-15 12:11:04 +0200335 /* Scan event and remove leading zeroes, spaces, newlines, some
336 * platforms have terms specified as
337 * event=0x0091 (read from files ../<PMU>/events/<FILE>
338 * and terms specified as event=0x91 (read from JSON files).
339 *
340 * Rebuild string to make alias->str member comparable.
341 */
342 memset(newval, 0, sizeof(newval));
343 ret = 0;
344 list_for_each_entry(term, &alias->terms, list) {
345 if (ret)
346 ret += scnprintf(newval + ret, sizeof(newval) - ret,
347 ",");
348 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM)
349 ret += scnprintf(newval + ret, sizeof(newval) - ret,
350 "%s=%#x", term->config, term->val.num);
351 else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
352 ret += scnprintf(newval + ret, sizeof(newval) - ret,
353 "%s=%s", term->config, term->val.str);
354 }
355
Zheng Yana6146d52012-06-15 14:31:41 +0800356 alias->name = strdup(name);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700357 if (dir) {
358 /*
359 * load unit name and scale if available
360 */
361 perf_pmu__parse_unit(alias, dir, name);
362 perf_pmu__parse_scale(alias, dir, name);
363 perf_pmu__parse_per_pkg(alias, dir, name);
364 perf_pmu__parse_snapshot(alias, dir, name);
365 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100366
Andi Kleen00636c32017-03-20 13:17:07 -0700367 alias->metric_expr = metric_expr ? strdup(metric_expr) : NULL;
Andi Kleen96284812017-03-20 13:17:10 -0700368 alias->metric_name = metric_name ? strdup(metric_name): NULL;
Andi Kleen08e60ed2016-09-15 15:24:43 -0700369 alias->desc = desc ? strdup(desc) : NULL;
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700370 alias->long_desc = long_desc ? strdup(long_desc) :
371 desc ? strdup(desc) : NULL;
Andi Kleendd5f1032016-09-15 15:24:50 -0700372 alias->topic = topic ? strdup(topic) : NULL;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800373 if (unit) {
374 if (convert_scale(unit, &unit, &alias->scale) < 0)
375 return -1;
376 snprintf(alias->unit, sizeof(alias->unit), "%s", unit);
377 }
378 alias->per_pkg = perpkg && sscanf(perpkg, "%d", &num) == 1 && num == 1;
Thomas Richter0c24d6f2018-06-15 12:11:04 +0200379 alias->str = strdup(newval);
Andi Kleenf2361022017-01-27 18:03:40 -0800380
Thomas Richter6dde6422018-06-15 12:11:05 +0200381 if (!perf_pmu_merge_alias(alias, list))
382 list_add_tail(&alias->list, list);
Stephane Eranian410136f2013-11-12 17:58:49 +0100383
Zheng Yana6146d52012-06-15 14:31:41 +0800384 return 0;
385}
386
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700387static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
388{
389 char buf[256];
390 int ret;
391
392 ret = fread(buf, 1, sizeof(buf), file);
393 if (ret == 0)
394 return -EINVAL;
395
396 buf[ret] = 0;
397
Thomas Richterea23ac72018-06-15 12:11:03 +0200398 /* Remove trailing newline from sysfs file */
399 rtrim(buf);
400
Andi Kleenfedb2b52017-01-27 18:03:37 -0800401 return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL, NULL, NULL,
Andi Kleen96284812017-03-20 13:17:10 -0700402 NULL, NULL, NULL);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700403}
404
Matt Fleming46441bd2014-09-24 15:04:06 +0100405static inline bool pmu_alias_info_file(char *name)
406{
407 size_t len;
408
409 len = strlen(name);
410 if (len > 5 && !strcmp(name + len - 5, ".unit"))
411 return true;
412 if (len > 6 && !strcmp(name + len - 6, ".scale"))
413 return true;
Matt Fleming044330c2014-11-21 10:31:12 +0100414 if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
415 return true;
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100416 if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
417 return true;
Matt Fleming46441bd2014-09-24 15:04:06 +0100418
419 return false;
420}
421
Zheng Yana6146d52012-06-15 14:31:41 +0800422/*
423 * Process all the sysfs attributes located under the directory
424 * specified in 'dir' parameter.
425 */
426static int pmu_aliases_parse(char *dir, struct list_head *head)
427{
428 struct dirent *evt_ent;
429 DIR *event_dir;
Zheng Yana6146d52012-06-15 14:31:41 +0800430
431 event_dir = opendir(dir);
432 if (!event_dir)
433 return -EINVAL;
434
Andi Kleen940db6d2016-02-17 14:44:55 -0800435 while ((evt_ent = readdir(event_dir))) {
Zheng Yana6146d52012-06-15 14:31:41 +0800436 char path[PATH_MAX];
437 char *name = evt_ent->d_name;
438 FILE *file;
439
440 if (!strcmp(name, ".") || !strcmp(name, ".."))
441 continue;
442
Stephane Eranian410136f2013-11-12 17:58:49 +0100443 /*
Matt Fleming46441bd2014-09-24 15:04:06 +0100444 * skip info files parsed in perf_pmu__new_alias()
Stephane Eranian410136f2013-11-12 17:58:49 +0100445 */
Matt Fleming46441bd2014-09-24 15:04:06 +0100446 if (pmu_alias_info_file(name))
Stephane Eranian410136f2013-11-12 17:58:49 +0100447 continue;
448
Jiri Olsa77f18152018-03-19 09:29:01 +0100449 scnprintf(path, PATH_MAX, "%s/%s", dir, name);
Zheng Yana6146d52012-06-15 14:31:41 +0800450
Zheng Yana6146d52012-06-15 14:31:41 +0800451 file = fopen(path, "r");
Andi Kleen940db6d2016-02-17 14:44:55 -0800452 if (!file) {
453 pr_debug("Cannot open %s\n", path);
454 continue;
455 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100456
Andi Kleen940db6d2016-02-17 14:44:55 -0800457 if (perf_pmu__new_alias(head, dir, name, file) < 0)
458 pr_debug("Cannot set up %s\n", name);
Zheng Yana6146d52012-06-15 14:31:41 +0800459 fclose(file);
460 }
461
462 closedir(event_dir);
Andi Kleen940db6d2016-02-17 14:44:55 -0800463 return 0;
Zheng Yana6146d52012-06-15 14:31:41 +0800464}
465
466/*
467 * Reading the pmu event aliases definition, which should be located at:
468 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
469 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300470static int pmu_aliases(const char *name, struct list_head *head)
Zheng Yana6146d52012-06-15 14:31:41 +0800471{
472 struct stat st;
473 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300474 const char *sysfs = sysfs__mountpoint();
Zheng Yana6146d52012-06-15 14:31:41 +0800475
Zheng Yana6146d52012-06-15 14:31:41 +0800476 if (!sysfs)
477 return -1;
478
479 snprintf(path, PATH_MAX,
480 "%s/bus/event_source/devices/%s/events", sysfs, name);
481
482 if (stat(path, &st) < 0)
Jiri Olsa3fded962012-10-10 14:53:16 +0200483 return 0; /* no error if 'events' does not exist */
Zheng Yana6146d52012-06-15 14:31:41 +0800484
485 if (pmu_aliases_parse(path, head))
486 return -1;
487
488 return 0;
489}
490
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300491static int pmu_alias_terms(struct perf_pmu_alias *alias,
Zheng Yana6146d52012-06-15 14:31:41 +0800492 struct list_head *terms)
493{
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200494 struct parse_events_term *term, *cloned;
Zheng Yana6146d52012-06-15 14:31:41 +0800495 LIST_HEAD(list);
496 int ret;
497
498 list_for_each_entry(term, &alias->terms, list) {
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200499 ret = parse_events_term__clone(&cloned, term);
Zheng Yana6146d52012-06-15 14:31:41 +0800500 if (ret) {
Arnaldo Carvalho de Melo682dc242016-02-12 16:48:00 -0300501 parse_events_terms__purge(&list);
Zheng Yana6146d52012-06-15 14:31:41 +0800502 return ret;
503 }
Andi Kleenc2f1cea2017-10-20 13:27:55 -0700504 /*
505 * Weak terms don't override command line options,
506 * which we don't want for implicit terms in aliases.
507 */
508 cloned->weak = true;
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200509 list_add_tail(&cloned->list, &list);
Zheng Yana6146d52012-06-15 14:31:41 +0800510 }
511 list_splice(&list, terms);
512 return 0;
513}
514
Jiri Olsacd82a322012-03-15 20:09:17 +0100515/*
516 * Reading/parsing the default pmu type value, which should be
517 * located at:
518 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
519 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300520static int pmu_type(const char *name, __u32 *type)
Jiri Olsacd82a322012-03-15 20:09:17 +0100521{
522 struct stat st;
523 char path[PATH_MAX];
Jiri Olsacd82a322012-03-15 20:09:17 +0100524 FILE *file;
525 int ret = 0;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300526 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +0100527
Jiri Olsacd82a322012-03-15 20:09:17 +0100528 if (!sysfs)
529 return -1;
530
531 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +0200532 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100533
534 if (stat(path, &st) < 0)
535 return -1;
536
537 file = fopen(path, "r");
538 if (!file)
539 return -EINVAL;
540
541 if (1 != fscanf(file, "%u", type))
542 ret = -1;
543
544 fclose(file);
545 return ret;
546}
547
Robert Richter50a96672012-08-16 21:10:24 +0200548/* Add all pmus in sysfs to pmu list: */
549static void pmu_read_sysfs(void)
550{
551 char path[PATH_MAX];
Robert Richter50a96672012-08-16 21:10:24 +0200552 DIR *dir;
553 struct dirent *dent;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300554 const char *sysfs = sysfs__mountpoint();
Robert Richter50a96672012-08-16 21:10:24 +0200555
Robert Richter50a96672012-08-16 21:10:24 +0200556 if (!sysfs)
557 return;
558
559 snprintf(path, PATH_MAX,
560 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
561
562 dir = opendir(path);
563 if (!dir)
564 return;
565
566 while ((dent = readdir(dir))) {
567 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
568 continue;
569 /* add to static LIST_HEAD(pmus): */
570 perf_pmu__find(dent->d_name);
571 }
572
573 closedir(dir);
574}
575
Mark Rutland66ec11912017-10-06 19:38:22 +0100576static struct cpu_map *__pmu_cpumask(const char *path)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800577{
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800578 FILE *file;
579 struct cpu_map *cpus;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800580
581 file = fopen(path, "r");
582 if (!file)
583 return NULL;
584
585 cpus = cpu_map__read(file);
586 fclose(file);
587 return cpus;
588}
589
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700590/*
Mark Rutland66ec11912017-10-06 19:38:22 +0100591 * Uncore PMUs have a "cpumask" file under sysfs. CPU PMUs (e.g. on arm/arm64)
592 * may have a "cpus" file.
593 */
594#define CPUS_TEMPLATE_UNCORE "%s/bus/event_source/devices/%s/cpumask"
595#define CPUS_TEMPLATE_CPU "%s/bus/event_source/devices/%s/cpus"
596
597static struct cpu_map *pmu_cpumask(const char *name)
598{
599 char path[PATH_MAX];
600 struct cpu_map *cpus;
601 const char *sysfs = sysfs__mountpoint();
602 const char *templates[] = {
603 CPUS_TEMPLATE_UNCORE,
604 CPUS_TEMPLATE_CPU,
605 NULL
606 };
607 const char **template;
608
609 if (!sysfs)
610 return NULL;
611
612 for (template = templates; *template; template++) {
613 snprintf(path, PATH_MAX, *template, sysfs, name);
614 cpus = __pmu_cpumask(path);
615 if (cpus)
616 return cpus;
617 }
618
619 return NULL;
620}
621
622static bool pmu_is_uncore(const char *name)
623{
624 char path[PATH_MAX];
625 struct cpu_map *cpus;
626 const char *sysfs = sysfs__mountpoint();
627
628 snprintf(path, PATH_MAX, CPUS_TEMPLATE_UNCORE, sysfs, name);
629 cpus = __pmu_cpumask(path);
630 cpu_map__put(cpus);
631
632 return !!cpus;
633}
634
635/*
Ganapatrao Kulkarni14b22ae2017-08-24 16:30:58 +0530636 * PMU CORE devices have different name other than cpu in sysfs on some
Kan Liang292c34c2018-04-24 11:20:10 -0700637 * platforms.
638 * Looking for possible sysfs files to identify the arm core device.
Ganapatrao Kulkarni14b22ae2017-08-24 16:30:58 +0530639 */
Kan Liang292c34c2018-04-24 11:20:10 -0700640static int is_arm_pmu_core(const char *name)
Ganapatrao Kulkarni14b22ae2017-08-24 16:30:58 +0530641{
642 struct stat st;
643 char path[PATH_MAX];
644 const char *sysfs = sysfs__mountpoint();
645
646 if (!sysfs)
647 return 0;
648
Ganapatrao Kulkarni14b22ae2017-08-24 16:30:58 +0530649 /* Look for cpu sysfs (specific to arm) */
650 scnprintf(path, PATH_MAX, "%s/bus/event_source/devices/%s/cpus",
651 sysfs, name);
652 if (stat(path, &st) == 0)
653 return 1;
654
655 return 0;
656}
657
658/*
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700659 * Return the CPU id as a raw string.
660 *
661 * Each architecture should provide a more precise id string that
662 * can be use to match the architecture's "mapfile".
663 */
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530664char * __weak get_cpuid_str(struct perf_pmu *pmu __maybe_unused)
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700665{
666 return NULL;
667}
668
Thomas Richter4cb7d3e2018-02-13 16:14:18 +0100669/* Return zero when the cpuid from the mapfile.csv matches the
670 * cpuid string generated on this platform.
671 * Otherwise return non-zero.
672 */
Thomas Richterce04abf2018-04-23 10:17:45 +0200673int strcmp_cpuid_str(const char *mapcpuid, const char *cpuid)
Thomas Richter4cb7d3e2018-02-13 16:14:18 +0100674{
675 regex_t re;
676 regmatch_t pmatch[1];
677 int match;
678
679 if (regcomp(&re, mapcpuid, REG_EXTENDED) != 0) {
680 /* Warn unable to generate match particular string. */
681 pr_info("Invalid regular expression %s\n", mapcpuid);
682 return 1;
683 }
684
685 match = !regexec(&re, cpuid, 1, pmatch, 0);
686 regfree(&re);
687 if (match) {
688 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so);
689
690 /* Verify the entire string matched. */
691 if (match_len == strlen(cpuid))
692 return 0;
693 }
694 return 1;
695}
696
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530697static char *perf_pmu__getcpuid(struct perf_pmu *pmu)
Andi Kleend77ade92017-08-31 12:40:30 -0700698{
699 char *cpuid;
700 static bool printed;
701
702 cpuid = getenv("PERF_CPUID");
703 if (cpuid)
704 cpuid = strdup(cpuid);
705 if (!cpuid)
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530706 cpuid = get_cpuid_str(pmu);
Andi Kleend77ade92017-08-31 12:40:30 -0700707 if (!cpuid)
708 return NULL;
709
710 if (!printed) {
711 pr_debug("Using CPUID %s\n", cpuid);
712 printed = true;
713 }
714 return cpuid;
715}
716
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530717struct pmu_events_map *perf_pmu__find_map(struct perf_pmu *pmu)
Andi Kleend77ade92017-08-31 12:40:30 -0700718{
719 struct pmu_events_map *map;
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530720 char *cpuid = perf_pmu__getcpuid(pmu);
Andi Kleend77ade92017-08-31 12:40:30 -0700721 int i;
722
Ganapatrao Kulkarnide3d0f12017-10-17 00:02:22 +0530723 /* on some platforms which uses cpus map, cpuid can be NULL for
724 * PMUs other than CORE PMUs.
725 */
726 if (!cpuid)
727 return NULL;
728
Andi Kleend77ade92017-08-31 12:40:30 -0700729 i = 0;
730 for (;;) {
731 map = &pmu_events_map[i++];
732 if (!map->table) {
733 map = NULL;
734 break;
735 }
736
Thomas Richter4cb7d3e2018-02-13 16:14:18 +0100737 if (!strcmp_cpuid_str(map->cpuid, cpuid))
Andi Kleend77ade92017-08-31 12:40:30 -0700738 break;
739 }
740 free(cpuid);
741 return map;
742}
743
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700744/*
745 * From the pmu_events_map, find the table of PMU events that corresponds
746 * to the current running CPU. Then, add all PMU events from that table
747 * as aliases.
748 */
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530749static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700750{
751 int i;
752 struct pmu_events_map *map;
753 struct pmu_event *pe;
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530754 const char *name = pmu->name;
Kan Liang292c34c2018-04-24 11:20:10 -0700755 const char *pname;
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700756
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530757 map = perf_pmu__find_map(pmu);
Andi Kleend77ade92017-08-31 12:40:30 -0700758 if (!map)
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700759 return;
760
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700761 /*
762 * Found a matching PMU events table. Create aliases
763 */
764 i = 0;
765 while (1) {
Andi Kleenfedb2b52017-01-27 18:03:37 -0800766
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700767 pe = &map->table[i++];
Andi Kleenb18f3e32017-08-31 12:40:31 -0700768 if (!pe->name) {
769 if (pe->metric_group || pe->metric_name)
770 continue;
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700771 break;
Andi Kleenb18f3e32017-08-31 12:40:31 -0700772 }
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700773
Kan Liang292c34c2018-04-24 11:20:10 -0700774 if (!is_arm_pmu_core(name)) {
775 pname = pe->pmu ? pe->pmu : "cpu";
Thomas Richter7b0131a2018-10-23 17:16:16 +0200776 if (strcmp(pname, name))
Ganapatrao Kulkarni14b22ae2017-08-24 16:30:58 +0530777 continue;
778 }
Andi Kleenfedb2b52017-01-27 18:03:37 -0800779
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700780 /* need type casts to override 'const' */
781 __perf_pmu__new_alias(head, NULL, (char *)pe->name,
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700782 (char *)pe->desc, (char *)pe->event,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800783 (char *)pe->long_desc, (char *)pe->topic,
Andi Kleen00636c32017-03-20 13:17:07 -0700784 (char *)pe->unit, (char *)pe->perpkg,
Andi Kleen96284812017-03-20 13:17:10 -0700785 (char *)pe->metric_expr,
786 (char *)pe->metric_name);
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700787 }
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700788}
789
Sukadev Bhattiproluc5de47f2015-06-10 00:25:07 -0700790struct perf_event_attr * __weak
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300791perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
792{
793 return NULL;
794}
795
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300796static struct perf_pmu *pmu_lookup(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100797{
798 struct perf_pmu *pmu;
799 LIST_HEAD(format);
Zheng Yana6146d52012-06-15 14:31:41 +0800800 LIST_HEAD(aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100801 __u32 type;
802
803 /*
804 * The pmu data we store & need consists of the pmu
805 * type value and format definitions. Load both right
806 * now.
807 */
808 if (pmu_format(name, &format))
809 return NULL;
810
Andi Kleen15b22ed2017-01-27 18:03:38 -0800811 /*
812 * Check the type first to avoid unnecessary work.
813 */
814 if (pmu_type(name, &type))
815 return NULL;
816
Jiri Olsa3fded962012-10-10 14:53:16 +0200817 if (pmu_aliases(name, &aliases))
818 return NULL;
819
Jiri Olsacd82a322012-03-15 20:09:17 +0100820 pmu = zalloc(sizeof(*pmu));
821 if (!pmu)
822 return NULL;
823
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800824 pmu->cpus = pmu_cpumask(name);
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530825 pmu->name = strdup(name);
826 pmu->type = type;
Mark Rutland66ec11912017-10-06 19:38:22 +0100827 pmu->is_uncore = pmu_is_uncore(name);
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +0530828 pmu_add_cpu_aliases(&aliases, pmu);
Mark Rutland66ec11912017-10-06 19:38:22 +0100829
Jiri Olsacd82a322012-03-15 20:09:17 +0100830 INIT_LIST_HEAD(&pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800831 INIT_LIST_HEAD(&pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100832 list_splice(&format, &pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800833 list_splice(&aliases, &pmu->aliases);
Robert Richter9bc8f9f2012-06-14 22:38:37 +0200834 list_add_tail(&pmu->list, &pmus);
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300835
836 pmu->default_config = perf_pmu__get_default_config(pmu);
837
Jiri Olsacd82a322012-03-15 20:09:17 +0100838 return pmu;
839}
840
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300841static struct perf_pmu *pmu_find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100842{
843 struct perf_pmu *pmu;
844
845 list_for_each_entry(pmu, &pmus, list)
846 if (!strcmp(pmu->name, name))
847 return pmu;
848
849 return NULL;
850}
851
Robert Richter50a96672012-08-16 21:10:24 +0200852struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
853{
854 /*
855 * pmu iterator: If pmu is NULL, we start at the begin,
856 * otherwise return the next pmu. Returns NULL on end.
857 */
858 if (!pmu) {
859 pmu_read_sysfs();
860 pmu = list_prepare_entry(pmu, &pmus, list);
861 }
862 list_for_each_entry_continue(pmu, &pmus, list)
863 return pmu;
864 return NULL;
865}
866
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300867struct perf_pmu *perf_pmu__find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100868{
869 struct perf_pmu *pmu;
870
871 /*
872 * Once PMU is loaded it stays in the list,
873 * so we keep us from multiple reading/parsing
874 * the pmu format definitions.
875 */
876 pmu = pmu_find(name);
877 if (pmu)
878 return pmu;
879
880 return pmu_lookup(name);
881}
882
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300883static struct perf_pmu_format *
Adrian Hunter09ff6072015-07-17 19:33:49 +0300884pmu_find_format(struct list_head *formats, const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100885{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300886 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100887
888 list_for_each_entry(format, formats, list)
889 if (!strcmp(format->name, name))
890 return format;
891
892 return NULL;
893}
894
Adrian Hunter09ff6072015-07-17 19:33:49 +0300895__u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
896{
897 struct perf_pmu_format *format = pmu_find_format(formats, name);
898 __u64 bits = 0;
899 int fbit;
900
901 if (!format)
902 return 0;
903
904 for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
905 bits |= 1ULL << fbit;
906
907 return bits;
908}
909
Jiri Olsacd82a322012-03-15 20:09:17 +0100910/*
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300911 * Sets value based on the format definition (format parameter)
Jiri Olsacd82a322012-03-15 20:09:17 +0100912 * and unformated value (value parameter).
Jiri Olsacd82a322012-03-15 20:09:17 +0100913 */
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300914static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
915 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100916{
917 unsigned long fbit, vbit;
Jiri Olsacd82a322012-03-15 20:09:17 +0100918
919 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
920
921 if (!test_bit(fbit, format))
922 continue;
923
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300924 if (value & (1llu << vbit++))
925 *v |= (1llu << fbit);
926 else if (zero)
927 *v &= ~(1llu << fbit);
Jiri Olsacd82a322012-03-15 20:09:17 +0100928 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100929}
930
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300931static __u64 pmu_format_max_value(const unsigned long *format)
932{
Jiri Olsa1b9caa12018-10-03 09:20:46 +0200933 int w;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300934
Jiri Olsa1b9caa12018-10-03 09:20:46 +0200935 w = bitmap_weight(format, PERF_PMU_FORMAT_BITS);
936 if (!w)
937 return 0;
938 if (w < 64)
939 return (1ULL << w) - 1;
940 return -1;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300941}
942
Jiri Olsacd82a322012-03-15 20:09:17 +0100943/*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800944 * Term is a string term, and might be a param-term. Try to look up it's value
945 * in the remaining terms.
946 * - We have a term like "base-or-format-term=param-term",
947 * - We need to find the value supplied for "param-term" (with param-term named
948 * in a config string) later on in the term list.
949 */
950static int pmu_resolve_param_term(struct parse_events_term *term,
951 struct list_head *head_terms,
952 __u64 *value)
953{
954 struct parse_events_term *t;
955
956 list_for_each_entry(t, head_terms, list) {
957 if (t->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
958 if (!strcmp(t->config, term->config)) {
959 t->used = true;
960 *value = t->val.num;
961 return 0;
962 }
963 }
964 }
965
Namhyung Kimbb963e12017-02-17 17:17:38 +0900966 if (verbose > 0)
Cody P Schafer688d4df2015-01-07 17:13:50 -0800967 printf("Required parameter '%s' not specified\n", term->config);
968
969 return -1;
970}
971
He Kuangffeb8832015-09-28 03:52:14 +0000972static char *pmu_formats_string(struct list_head *formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200973{
974 struct perf_pmu_format *format;
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900975 char *str = NULL;
976 struct strbuf buf = STRBUF_INIT;
Jiri Olsae64b0202015-04-22 21:10:21 +0200977 unsigned i = 0;
978
He Kuangffeb8832015-09-28 03:52:14 +0000979 if (!formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200980 return NULL;
981
982 /* sysfs exported terms */
He Kuangffeb8832015-09-28 03:52:14 +0000983 list_for_each_entry(format, formats, list)
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900984 if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
985 goto error;
Jiri Olsae64b0202015-04-22 21:10:21 +0200986
He Kuangffeb8832015-09-28 03:52:14 +0000987 str = strbuf_detach(&buf, NULL);
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900988error:
He Kuangffeb8832015-09-28 03:52:14 +0000989 strbuf_release(&buf);
Jiri Olsae64b0202015-04-22 21:10:21 +0200990
Jiri Olsae64b0202015-04-22 21:10:21 +0200991 return str;
Jiri Olsae64b0202015-04-22 21:10:21 +0200992}
993
Cody P Schafer688d4df2015-01-07 17:13:50 -0800994/*
Jiri Olsacd82a322012-03-15 20:09:17 +0100995 * Setup one of config[12] attr members based on the
Cody P Schafer88aca8d2014-01-08 08:43:51 -0800996 * user input data - term parameter.
Jiri Olsacd82a322012-03-15 20:09:17 +0100997 */
998static int pmu_config_term(struct list_head *formats,
999 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +03001000 struct parse_events_term *term,
Cody P Schafer688d4df2015-01-07 17:13:50 -08001001 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +02001002 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +01001003{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001004 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +01001005 __u64 *vp;
Adrian Hunter0efe6b62015-07-17 19:33:50 +03001006 __u64 val, max_val;
Jiri Olsacd82a322012-03-15 20:09:17 +01001007
1008 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -08001009 * If this is a parameter we've already used for parameterized-eval,
1010 * skip it in normal eval.
1011 */
1012 if (term->used)
1013 return 0;
1014
1015 /*
Jiri Olsacd82a322012-03-15 20:09:17 +01001016 * Hardcoded terms should be already in, so nothing
1017 * to be done for them.
1018 */
1019 if (parse_events__is_hardcoded_term(term))
1020 return 0;
1021
Jiri Olsacd82a322012-03-15 20:09:17 +01001022 format = pmu_find_format(formats, term->config);
Cody P Schafer688d4df2015-01-07 17:13:50 -08001023 if (!format) {
Namhyung Kimbb963e12017-02-17 17:17:38 +09001024 if (verbose > 0)
Cody P Schafer688d4df2015-01-07 17:13:50 -08001025 printf("Invalid event/parameter '%s'\n", term->config);
Jiri Olsae64b0202015-04-22 21:10:21 +02001026 if (err) {
He Kuangffeb8832015-09-28 03:52:14 +00001027 char *pmu_term = pmu_formats_string(formats);
1028
Jiri Olsae64b0202015-04-22 21:10:21 +02001029 err->idx = term->err_term;
1030 err->str = strdup("unknown term");
He Kuangffeb8832015-09-28 03:52:14 +00001031 err->help = parse_events_formats_error_string(pmu_term);
1032 free(pmu_term);
Jiri Olsae64b0202015-04-22 21:10:21 +02001033 }
Jiri Olsacd82a322012-03-15 20:09:17 +01001034 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -08001035 }
Jiri Olsacd82a322012-03-15 20:09:17 +01001036
1037 switch (format->value) {
1038 case PERF_PMU_FORMAT_VALUE_CONFIG:
1039 vp = &attr->config;
1040 break;
1041 case PERF_PMU_FORMAT_VALUE_CONFIG1:
1042 vp = &attr->config1;
1043 break;
1044 case PERF_PMU_FORMAT_VALUE_CONFIG2:
1045 vp = &attr->config2;
1046 break;
1047 default:
1048 return -EINVAL;
1049 }
1050
Jiri Olsa16fa7e82012-04-25 18:24:57 +02001051 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -08001052 * Either directly use a numeric term, or try to translate string terms
1053 * using event parameters.
Jiri Olsa16fa7e82012-04-25 18:24:57 +02001054 */
Jiri Olsa99e71382017-02-17 15:00:56 +01001055 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
1056 if (term->no_value &&
1057 bitmap_weight(format->bits, PERF_PMU_FORMAT_BITS) > 1) {
1058 if (err) {
1059 err->idx = term->err_val;
1060 err->str = strdup("no value assigned for term");
1061 }
1062 return -EINVAL;
1063 }
1064
Cody P Schafer688d4df2015-01-07 17:13:50 -08001065 val = term->val.num;
Jiri Olsa99e71382017-02-17 15:00:56 +01001066 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
Cody P Schafer688d4df2015-01-07 17:13:50 -08001067 if (strcmp(term->val.str, "?")) {
Namhyung Kimbb963e12017-02-17 17:17:38 +09001068 if (verbose > 0) {
Cody P Schafer688d4df2015-01-07 17:13:50 -08001069 pr_info("Invalid sysfs entry %s=%s\n",
1070 term->config, term->val.str);
Jiri Olsae64b0202015-04-22 21:10:21 +02001071 }
1072 if (err) {
1073 err->idx = term->err_val;
1074 err->str = strdup("expected numeric value");
1075 }
Cody P Schafer688d4df2015-01-07 17:13:50 -08001076 return -EINVAL;
1077 }
1078
1079 if (pmu_resolve_param_term(term, head_terms, &val))
1080 return -EINVAL;
1081 } else
1082 return -EINVAL;
1083
Adrian Hunter0efe6b62015-07-17 19:33:50 +03001084 max_val = pmu_format_max_value(format->bits);
1085 if (val > max_val) {
1086 if (err) {
1087 err->idx = term->err_val;
1088 if (asprintf(&err->str,
1089 "value too big for format, maximum is %llu",
1090 (unsigned long long)max_val) < 0)
1091 err->str = strdup("value too big for format");
1092 return -EINVAL;
1093 }
1094 /*
1095 * Assume we don't care if !err, in which case the value will be
1096 * silently truncated.
1097 */
1098 }
1099
Cody P Schafer688d4df2015-01-07 17:13:50 -08001100 pmu_format_value(format->bits, val, vp, zero);
Jiri Olsacd82a322012-03-15 20:09:17 +01001101 return 0;
1102}
1103
Jiri Olsacff7f952012-11-10 01:46:50 +01001104int perf_pmu__config_terms(struct list_head *formats,
1105 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +03001106 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +02001107 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +01001108{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -03001109 struct parse_events_term *term;
Jiri Olsacd82a322012-03-15 20:09:17 +01001110
Cody P Schafer688d4df2015-01-07 17:13:50 -08001111 list_for_each_entry(term, head_terms, list) {
Jiri Olsae64b0202015-04-22 21:10:21 +02001112 if (pmu_config_term(formats, attr, term, head_terms,
1113 zero, err))
Jiri Olsacd82a322012-03-15 20:09:17 +01001114 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -08001115 }
Jiri Olsacd82a322012-03-15 20:09:17 +01001116
1117 return 0;
1118}
1119
1120/*
1121 * Configures event's 'attr' parameter based on the:
1122 * 1) users input - specified in terms parameter
1123 * 2) pmu format definitions - specified by pmu parameter
1124 */
1125int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
Jiri Olsae64b0202015-04-22 21:10:21 +02001126 struct list_head *head_terms,
1127 struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +01001128{
Adrian Hunterdc0a6202014-07-31 09:00:49 +03001129 bool zero = !!pmu->default_config;
1130
Jiri Olsacd82a322012-03-15 20:09:17 +01001131 attr->type = pmu->type;
Jiri Olsae64b0202015-04-22 21:10:21 +02001132 return perf_pmu__config_terms(&pmu->format, attr, head_terms,
1133 zero, err);
Jiri Olsacd82a322012-03-15 20:09:17 +01001134}
1135
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001136static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
1137 struct parse_events_term *term)
Zheng Yana6146d52012-06-15 14:31:41 +08001138{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001139 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +08001140 char *name;
1141
1142 if (parse_events__is_hardcoded_term(term))
1143 return NULL;
1144
1145 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
1146 if (term->val.num != 1)
1147 return NULL;
1148 if (pmu_find_format(&pmu->format, term->config))
1149 return NULL;
1150 name = term->config;
1151 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
1152 if (strcasecmp(term->config, "event"))
1153 return NULL;
1154 name = term->val.str;
1155 } else {
1156 return NULL;
1157 }
1158
1159 list_for_each_entry(alias, &pmu->aliases, list) {
1160 if (!strcasecmp(alias->name, name))
1161 return alias;
1162 }
1163 return NULL;
1164}
1165
Stephane Eranian410136f2013-11-12 17:58:49 +01001166
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001167static int check_info_data(struct perf_pmu_alias *alias,
1168 struct perf_pmu_info *info)
Stephane Eranian410136f2013-11-12 17:58:49 +01001169{
1170 /*
1171 * Only one term in event definition can
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001172 * define unit, scale and snapshot, fail
1173 * if there's more than one.
Stephane Eranian410136f2013-11-12 17:58:49 +01001174 */
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -03001175 if ((info->unit && alias->unit[0]) ||
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001176 (info->scale && alias->scale) ||
1177 (info->snapshot && alias->snapshot))
Stephane Eranian410136f2013-11-12 17:58:49 +01001178 return -EINVAL;
1179
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -03001180 if (alias->unit[0])
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001181 info->unit = alias->unit;
Stephane Eranian410136f2013-11-12 17:58:49 +01001182
1183 if (alias->scale)
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001184 info->scale = alias->scale;
1185
1186 if (alias->snapshot)
1187 info->snapshot = alias->snapshot;
Stephane Eranian410136f2013-11-12 17:58:49 +01001188
1189 return 0;
1190}
1191
Zheng Yana6146d52012-06-15 14:31:41 +08001192/*
1193 * Find alias in the terms list and replace it with the terms
1194 * defined for the alias
1195 */
Stephane Eranian410136f2013-11-12 17:58:49 +01001196int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
Matt Fleming46441bd2014-09-24 15:04:06 +01001197 struct perf_pmu_info *info)
Zheng Yana6146d52012-06-15 14:31:41 +08001198{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -03001199 struct parse_events_term *term, *h;
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001200 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +08001201 int ret;
1202
Matt Fleming044330c2014-11-21 10:31:12 +01001203 info->per_pkg = false;
1204
Stephane Eranian8a398892014-01-17 16:34:05 +01001205 /*
1206 * Mark unit and scale as not set
1207 * (different from default values, see below)
1208 */
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001209 info->unit = NULL;
1210 info->scale = 0.0;
1211 info->snapshot = false;
Andi Kleen37932c12017-03-20 13:17:08 -07001212 info->metric_expr = NULL;
Andi Kleen96284812017-03-20 13:17:10 -07001213 info->metric_name = NULL;
Stephane Eranian410136f2013-11-12 17:58:49 +01001214
Zheng Yana6146d52012-06-15 14:31:41 +08001215 list_for_each_entry_safe(term, h, head_terms, list) {
1216 alias = pmu_find_alias(pmu, term);
1217 if (!alias)
1218 continue;
1219 ret = pmu_alias_terms(alias, &term->list);
1220 if (ret)
1221 return ret;
Stephane Eranian410136f2013-11-12 17:58:49 +01001222
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001223 ret = check_info_data(alias, info);
Stephane Eranian410136f2013-11-12 17:58:49 +01001224 if (ret)
1225 return ret;
1226
Matt Fleming044330c2014-11-21 10:31:12 +01001227 if (alias->per_pkg)
1228 info->per_pkg = true;
Andi Kleen37932c12017-03-20 13:17:08 -07001229 info->metric_expr = alias->metric_expr;
Andi Kleen96284812017-03-20 13:17:10 -07001230 info->metric_name = alias->metric_name;
Matt Fleming044330c2014-11-21 10:31:12 +01001231
Zheng Yana6146d52012-06-15 14:31:41 +08001232 list_del(&term->list);
1233 free(term);
1234 }
Stephane Eranian8a398892014-01-17 16:34:05 +01001235
1236 /*
1237 * if no unit or scale foundin aliases, then
1238 * set defaults as for evsel
1239 * unit cannot left to NULL
1240 */
Matt Fleming46441bd2014-09-24 15:04:06 +01001241 if (info->unit == NULL)
1242 info->unit = "";
Stephane Eranian8a398892014-01-17 16:34:05 +01001243
Matt Fleming46441bd2014-09-24 15:04:06 +01001244 if (info->scale == 0.0)
1245 info->scale = 1.0;
Stephane Eranian8a398892014-01-17 16:34:05 +01001246
Zheng Yana6146d52012-06-15 14:31:41 +08001247 return 0;
1248}
1249
Jiri Olsacd82a322012-03-15 20:09:17 +01001250int perf_pmu__new_format(struct list_head *list, char *name,
1251 int config, unsigned long *bits)
1252{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001253 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +01001254
1255 format = zalloc(sizeof(*format));
1256 if (!format)
1257 return -ENOMEM;
1258
1259 format->name = strdup(name);
1260 format->value = config;
1261 memcpy(format->bits, bits, sizeof(format->bits));
1262
1263 list_add_tail(&format->list, list);
1264 return 0;
1265}
1266
1267void perf_pmu__set_format(unsigned long *bits, long from, long to)
1268{
1269 long b;
1270
1271 if (!to)
1272 to = from;
1273
Sukadev Bhattiprolu15268132013-01-17 09:11:30 -08001274 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
Jiri Olsacd82a322012-03-15 20:09:17 +01001275 for (b = from; b <= to; b++)
1276 set_bit(b, bits);
1277}
Andi Kleendc098b32013-04-20 11:02:29 -07001278
Cody P Schaferaaea3612015-01-07 17:13:51 -08001279static int sub_non_neg(int a, int b)
1280{
1281 if (b > a)
1282 return 0;
1283 return a - b;
1284}
1285
Andi Kleendc098b32013-04-20 11:02:29 -07001286static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
1287 struct perf_pmu_alias *alias)
1288{
Cody P Schaferaaea3612015-01-07 17:13:51 -08001289 struct parse_events_term *term;
1290 int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1291
1292 list_for_each_entry(term, &alias->terms, list) {
1293 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
1294 used += snprintf(buf + used, sub_non_neg(len, used),
1295 ",%s=%s", term->config,
1296 term->val.str);
1297 }
1298
1299 if (sub_non_neg(len, used) > 0) {
1300 buf[used] = '/';
1301 used++;
1302 }
1303 if (sub_non_neg(len, used) > 0) {
1304 buf[used] = '\0';
1305 used++;
1306 } else
1307 buf[len - 1] = '\0';
1308
Andi Kleendc098b32013-04-20 11:02:29 -07001309 return buf;
1310}
1311
1312static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
1313 struct perf_pmu_alias *alias)
1314{
1315 snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
1316 return buf;
1317}
1318
Andi Kleendd5f1032016-09-15 15:24:50 -07001319struct sevent {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001320 char *name;
1321 char *desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001322 char *topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001323 char *str;
1324 char *pmu;
Andi Kleen7f372a62017-03-20 13:17:09 -07001325 char *metric_expr;
Andi Kleen96284812017-03-20 13:17:10 -07001326 char *metric_name;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001327};
1328
Andi Kleendd5f1032016-09-15 15:24:50 -07001329static int cmp_sevent(const void *a, const void *b)
Andi Kleendc098b32013-04-20 11:02:29 -07001330{
Andi Kleendd5f1032016-09-15 15:24:50 -07001331 const struct sevent *as = a;
1332 const struct sevent *bs = b;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001333
1334 /* Put extra events last */
1335 if (!!as->desc != !!bs->desc)
1336 return !!as->desc - !!bs->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001337 if (as->topic && bs->topic) {
1338 int n = strcmp(as->topic, bs->topic);
1339
1340 if (n)
1341 return n;
1342 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001343 return strcmp(as->name, bs->name);
1344}
1345
1346static void wordwrap(char *s, int start, int max, int corr)
1347{
1348 int column = start;
1349 int n;
1350
1351 while (*s) {
1352 int wlen = strcspn(s, " \t");
1353
1354 if (column + wlen >= max && column > start) {
1355 printf("\n%*s", start, "");
1356 column = start + corr;
1357 }
1358 n = printf("%s%.*s", column > start ? " " : "", wlen, s);
1359 if (n <= 0)
1360 break;
1361 s += wlen;
1362 column += n;
Taeung Songaa4beb12017-04-07 23:24:20 +09001363 s = ltrim(s);
Andi Kleen08e60ed2016-09-15 15:24:43 -07001364 }
Andi Kleendc098b32013-04-20 11:02:29 -07001365}
1366
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001367void print_pmu_events(const char *event_glob, bool name_only, bool quiet_flag,
Andi Kleenbf874fc2017-03-20 13:17:11 -07001368 bool long_desc, bool details_flag)
Andi Kleendc098b32013-04-20 11:02:29 -07001369{
1370 struct perf_pmu *pmu;
1371 struct perf_pmu_alias *alias;
1372 char buf[1024];
1373 int printed = 0;
1374 int len, j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001375 struct sevent *aliases;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001376 int numdesc = 0;
Andi Kleen61eb2eb2016-09-15 15:24:44 -07001377 int columns = pager_get_columns();
Andi Kleendd5f1032016-09-15 15:24:50 -07001378 char *topic = NULL;
Andi Kleendc098b32013-04-20 11:02:29 -07001379
1380 pmu = NULL;
1381 len = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001382 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001383 list_for_each_entry(alias, &pmu->aliases, list)
1384 len++;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001385 if (pmu->selectable)
1386 len++;
1387 }
Andi Kleendd5f1032016-09-15 15:24:50 -07001388 aliases = zalloc(sizeof(struct sevent) * len);
Andi Kleendc098b32013-04-20 11:02:29 -07001389 if (!aliases)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001390 goto out_enomem;
Andi Kleendc098b32013-04-20 11:02:29 -07001391 pmu = NULL;
1392 j = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001393 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001394 list_for_each_entry(alias, &pmu->aliases, list) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001395 char *name = alias->desc ? alias->name :
1396 format_alias(buf, sizeof(buf), pmu, alias);
Andi Kleendc098b32013-04-20 11:02:29 -07001397 bool is_cpu = !strcmp(pmu->name, "cpu");
1398
1399 if (event_glob != NULL &&
Andi Kleen38d14f02016-10-19 10:50:01 -07001400 !(strglobmatch_nocase(name, event_glob) ||
1401 (!is_cpu && strglobmatch_nocase(alias->name,
Andi Kleen67bdc352016-10-19 11:45:23 -07001402 event_glob)) ||
1403 (alias->topic &&
1404 strglobmatch_nocase(alias->topic, event_glob))))
Andi Kleendc098b32013-04-20 11:02:29 -07001405 continue;
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001406
Andi Kleen08e60ed2016-09-15 15:24:43 -07001407 if (is_cpu && !name_only && !alias->desc)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001408 name = format_alias_or(buf, sizeof(buf), pmu, alias);
1409
Andi Kleen08e60ed2016-09-15 15:24:43 -07001410 aliases[j].name = name;
1411 if (is_cpu && !name_only && !alias->desc)
1412 aliases[j].name = format_alias_or(buf,
1413 sizeof(buf),
1414 pmu, alias);
1415 aliases[j].name = strdup(aliases[j].name);
1416 if (!aliases[j].name)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001417 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001418
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001419 aliases[j].desc = long_desc ? alias->long_desc :
1420 alias->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001421 aliases[j].topic = alias->topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001422 aliases[j].str = alias->str;
1423 aliases[j].pmu = pmu->name;
Andi Kleen7f372a62017-03-20 13:17:09 -07001424 aliases[j].metric_expr = alias->metric_expr;
Andi Kleen96284812017-03-20 13:17:10 -07001425 aliases[j].metric_name = alias->metric_name;
Andi Kleendc098b32013-04-20 11:02:29 -07001426 j++;
1427 }
Arnaldo Carvalho de Melofa52cea2015-10-02 15:28:16 -03001428 if (pmu->selectable &&
1429 (event_glob == NULL || strglobmatch(pmu->name, event_glob))) {
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001430 char *s;
1431 if (asprintf(&s, "%s//", pmu->name) < 0)
1432 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001433 aliases[j].name = s;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001434 j++;
1435 }
1436 }
Andi Kleendc098b32013-04-20 11:02:29 -07001437 len = j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001438 qsort(aliases, len, sizeof(struct sevent), cmp_sevent);
Andi Kleendc098b32013-04-20 11:02:29 -07001439 for (j = 0; j < len; j++) {
Andi Kleen15b22ed2017-01-27 18:03:38 -08001440 /* Skip duplicates */
1441 if (j > 0 && !strcmp(aliases[j].name, aliases[j - 1].name))
1442 continue;
Andi Kleendc098b32013-04-20 11:02:29 -07001443 if (name_only) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001444 printf("%s ", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001445 continue;
1446 }
Andi Kleen1c5f01f2016-09-15 15:24:45 -07001447 if (aliases[j].desc && !quiet_flag) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001448 if (numdesc++ == 0)
1449 printf("\n");
Andi Kleendd5f1032016-09-15 15:24:50 -07001450 if (aliases[j].topic && (!topic ||
1451 strcmp(topic, aliases[j].topic))) {
1452 printf("%s%s:\n", topic ? "\n" : "",
1453 aliases[j].topic);
1454 topic = aliases[j].topic;
1455 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001456 printf(" %-50s\n", aliases[j].name);
1457 printf("%*s", 8, "[");
1458 wordwrap(aliases[j].desc, 8, columns, 0);
1459 printf("]\n");
Andi Kleenbf874fc2017-03-20 13:17:11 -07001460 if (details_flag) {
Andi Kleen7f372a62017-03-20 13:17:09 -07001461 printf("%*s%s/%s/ ", 8, "", aliases[j].pmu, aliases[j].str);
Andi Kleen96284812017-03-20 13:17:10 -07001462 if (aliases[j].metric_name)
1463 printf(" MetricName: %s", aliases[j].metric_name);
Andi Kleen7f372a62017-03-20 13:17:09 -07001464 if (aliases[j].metric_expr)
1465 printf(" MetricExpr: %s", aliases[j].metric_expr);
1466 putchar('\n');
1467 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001468 } else
1469 printf(" %-50s [Kernel PMU event]\n", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001470 printed++;
1471 }
Arnaldo Carvalho de Melodfc431c2015-09-30 17:13:26 -03001472 if (printed && pager_in_use())
Andi Kleendc098b32013-04-20 11:02:29 -07001473 printf("\n");
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001474out_free:
1475 for (j = 0; j < len; j++)
Andi Kleen08e60ed2016-09-15 15:24:43 -07001476 zfree(&aliases[j].name);
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001477 zfree(&aliases);
1478 return;
1479
1480out_enomem:
1481 printf("FATAL: not enough memory to print PMU events\n");
1482 if (aliases)
1483 goto out_free;
Andi Kleendc098b32013-04-20 11:02:29 -07001484}
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001485
1486bool pmu_have_event(const char *pname, const char *name)
1487{
1488 struct perf_pmu *pmu;
1489 struct perf_pmu_alias *alias;
1490
1491 pmu = NULL;
1492 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1493 if (strcmp(pname, pmu->name))
1494 continue;
1495 list_for_each_entry(alias, &pmu->aliases, list)
1496 if (!strcmp(alias->name, name))
1497 return true;
1498 }
1499 return false;
1500}
Adrian Hunter7d4bdab2014-07-31 09:00:50 +03001501
1502static FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1503{
1504 struct stat st;
1505 char path[PATH_MAX];
1506 const char *sysfs;
1507
1508 sysfs = sysfs__mountpoint();
1509 if (!sysfs)
1510 return NULL;
1511
1512 snprintf(path, PATH_MAX,
1513 "%s" EVENT_SOURCE_DEVICE_PATH "%s/%s", sysfs, pmu->name, name);
1514
1515 if (stat(path, &st) < 0)
1516 return NULL;
1517
1518 return fopen(path, "r");
1519}
1520
1521int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1522 ...)
1523{
1524 va_list args;
1525 FILE *file;
1526 int ret = EOF;
1527
1528 va_start(args, fmt);
1529 file = perf_pmu__open_file(pmu, name);
1530 if (file) {
1531 ret = vfscanf(file, fmt, args);
1532 fclose(file);
1533 }
1534 va_end(args);
1535 return ret;
1536}