blob: ac16a9db1fb566ca14d272e33bc34e5166ea2b81 [file] [log] [blame]
Jiri Olsacd82a322012-03-15 20:09:17 +01001#include <linux/list.h>
Sukadev Bhattiproluc5de47f2015-06-10 00:25:07 -07002#include <linux/compiler.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01003#include <sys/types.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03004#include <errno.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -03005#include <sys/stat.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01006#include <unistd.h>
7#include <stdio.h>
Adrian Hunterdc0a6202014-07-31 09:00:49 +03008#include <stdbool.h>
Adrian Hunter7d4bdab2014-07-31 09:00:50 +03009#include <stdarg.h>
Jiri Olsacd82a322012-03-15 20:09:17 +010010#include <dirent.h>
Borislav Petkovcd0cfad2013-12-09 17:14:24 +010011#include <api/fs/fs.h>
Stephane Eranian410136f2013-11-12 17:58:49 +010012#include <locale.h>
Jiri Olsacd82a322012-03-15 20:09:17 +010013#include "util.h"
14#include "pmu.h"
15#include "parse-events.h"
Yan, Zheng7ae92e72012-09-10 15:53:50 +080016#include "cpumap.h"
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -070017#include "header.h"
18#include "pmu-events/pmu-events.h"
Andi Kleen61eb2eb2016-09-15 15:24:44 -070019#include "cache.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030020#include "string2.h"
Jiri Olsacd82a322012-03-15 20:09:17 +010021
Arnaldo Carvalho de Meloab1bf6532013-01-18 17:05:09 -030022struct perf_pmu_format {
23 char *name;
24 int value;
25 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
26 struct list_head list;
27};
28
Robert Richter50a96672012-08-16 21:10:24 +020029#define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"
30
Jiri Olsacd82a322012-03-15 20:09:17 +010031int perf_pmu_parse(struct list_head *list, char *name);
32extern FILE *perf_pmu_in;
33
34static LIST_HEAD(pmus);
35
36/*
37 * Parse & process all the sysfs attributes located under
38 * the directory specified in 'dir' parameter.
39 */
Jiri Olsacff7f952012-11-10 01:46:50 +010040int perf_pmu__format_parse(char *dir, struct list_head *head)
Jiri Olsacd82a322012-03-15 20:09:17 +010041{
42 struct dirent *evt_ent;
43 DIR *format_dir;
44 int ret = 0;
45
46 format_dir = opendir(dir);
47 if (!format_dir)
48 return -EINVAL;
49
50 while (!ret && (evt_ent = readdir(format_dir))) {
51 char path[PATH_MAX];
52 char *name = evt_ent->d_name;
53 FILE *file;
54
55 if (!strcmp(name, ".") || !strcmp(name, ".."))
56 continue;
57
58 snprintf(path, PATH_MAX, "%s/%s", dir, name);
59
60 ret = -EINVAL;
61 file = fopen(path, "r");
62 if (!file)
63 break;
64
65 perf_pmu_in = file;
66 ret = perf_pmu_parse(head, name);
67 fclose(file);
68 }
69
70 closedir(format_dir);
71 return ret;
72}
73
74/*
75 * Reading/parsing the default pmu format definition, which should be
76 * located at:
77 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
78 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +030079static int pmu_format(const char *name, struct list_head *format)
Jiri Olsacd82a322012-03-15 20:09:17 +010080{
81 struct stat st;
82 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -030083 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +010084
Jiri Olsacd82a322012-03-15 20:09:17 +010085 if (!sysfs)
86 return -1;
87
88 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +020089 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +010090
91 if (stat(path, &st) < 0)
Robert Richter9bc8f9f2012-06-14 22:38:37 +020092 return 0; /* no error if format does not exist */
Jiri Olsacd82a322012-03-15 20:09:17 +010093
Jiri Olsacff7f952012-11-10 01:46:50 +010094 if (perf_pmu__format_parse(path, format))
Jiri Olsacd82a322012-03-15 20:09:17 +010095 return -1;
96
97 return 0;
98}
99
Andi Kleend02fc6b2017-01-03 07:08:23 -0800100static int convert_scale(const char *scale, char **end, double *sval)
101{
102 char *lc;
103 int ret = 0;
104
105 /*
106 * save current locale
107 */
108 lc = setlocale(LC_NUMERIC, NULL);
109
110 /*
111 * The lc string may be allocated in static storage,
112 * so get a dynamic copy to make it survive setlocale
113 * call below.
114 */
115 lc = strdup(lc);
116 if (!lc) {
117 ret = -ENOMEM;
118 goto out;
119 }
120
121 /*
122 * force to C locale to ensure kernel
123 * scale string is converted correctly.
124 * kernel uses default C locale.
125 */
126 setlocale(LC_NUMERIC, "C");
127
128 *sval = strtod(scale, end);
129
130out:
131 /* restore locale */
132 setlocale(LC_NUMERIC, lc);
133 free(lc);
134 return ret;
135}
136
Stephane Eranian410136f2013-11-12 17:58:49 +0100137static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
138{
139 struct stat st;
140 ssize_t sret;
141 char scale[128];
142 int fd, ret = -1;
143 char path[PATH_MAX];
Stephane Eranian410136f2013-11-12 17:58:49 +0100144
145 snprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
146
147 fd = open(path, O_RDONLY);
148 if (fd == -1)
149 return -1;
150
151 if (fstat(fd, &st) < 0)
152 goto error;
153
154 sret = read(fd, scale, sizeof(scale)-1);
155 if (sret < 0)
156 goto error;
157
Madhavan Srinivasan9ecae062015-05-31 11:36:23 +0530158 if (scale[sret - 1] == '\n')
159 scale[sret - 1] = '\0';
160 else
161 scale[sret] = '\0';
162
Andi Kleend02fc6b2017-01-03 07:08:23 -0800163 ret = convert_scale(scale, NULL, &alias->scale);
Stephane Eranian410136f2013-11-12 17:58:49 +0100164error:
165 close(fd);
166 return ret;
167}
168
169static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
170{
171 char path[PATH_MAX];
172 ssize_t sret;
173 int fd;
174
175 snprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
176
177 fd = open(path, O_RDONLY);
178 if (fd == -1)
179 return -1;
180
Markus Trippelsdorfd85ce832015-12-14 16:44:40 +0100181 sret = read(fd, alias->unit, UNIT_MAX_LEN);
Stephane Eranian410136f2013-11-12 17:58:49 +0100182 if (sret < 0)
183 goto error;
184
185 close(fd);
186
Madhavan Srinivasan9ecae062015-05-31 11:36:23 +0530187 if (alias->unit[sret - 1] == '\n')
188 alias->unit[sret - 1] = '\0';
189 else
190 alias->unit[sret] = '\0';
Stephane Eranian410136f2013-11-12 17:58:49 +0100191
192 return 0;
193error:
194 close(fd);
195 alias->unit[0] = '\0';
196 return -1;
197}
198
Matt Fleming044330c2014-11-21 10:31:12 +0100199static int
200perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name)
201{
202 char path[PATH_MAX];
203 int fd;
204
205 snprintf(path, PATH_MAX, "%s/%s.per-pkg", dir, name);
206
207 fd = open(path, O_RDONLY);
208 if (fd == -1)
209 return -1;
210
211 close(fd);
212
213 alias->per_pkg = true;
214 return 0;
215}
216
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100217static int perf_pmu__parse_snapshot(struct perf_pmu_alias *alias,
218 char *dir, char *name)
219{
220 char path[PATH_MAX];
221 int fd;
222
223 snprintf(path, PATH_MAX, "%s/%s.snapshot", dir, name);
224
225 fd = open(path, O_RDONLY);
226 if (fd == -1)
227 return -1;
228
229 alias->snapshot = true;
230 close(fd);
231 return 0;
232}
233
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700234static int __perf_pmu__new_alias(struct list_head *list, char *dir, char *name,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800235 char *desc, char *val,
236 char *long_desc, char *topic,
Andi Kleen00636c32017-03-20 13:17:07 -0700237 char *unit, char *perpkg,
Andi Kleen96284812017-03-20 13:17:10 -0700238 char *metric_expr,
239 char *metric_name)
Zheng Yana6146d52012-06-15 14:31:41 +0800240{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300241 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800242 int ret;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800243 int num;
Zheng Yana6146d52012-06-15 14:31:41 +0800244
Zheng Yana6146d52012-06-15 14:31:41 +0800245 alias = malloc(sizeof(*alias));
246 if (!alias)
247 return -ENOMEM;
248
249 INIT_LIST_HEAD(&alias->terms);
Stephane Eranian410136f2013-11-12 17:58:49 +0100250 alias->scale = 1.0;
251 alias->unit[0] = '\0';
Matt Fleming044330c2014-11-21 10:31:12 +0100252 alias->per_pkg = false;
Stephane Eranian84530922016-01-06 19:50:01 +0100253 alias->snapshot = false;
Stephane Eranian410136f2013-11-12 17:58:49 +0100254
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700255 ret = parse_events_terms(&alias->terms, val);
Zheng Yana6146d52012-06-15 14:31:41 +0800256 if (ret) {
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700257 pr_err("Cannot parse alias %s: %d\n", val, ret);
Zheng Yana6146d52012-06-15 14:31:41 +0800258 free(alias);
259 return ret;
260 }
261
262 alias->name = strdup(name);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700263 if (dir) {
264 /*
265 * load unit name and scale if available
266 */
267 perf_pmu__parse_unit(alias, dir, name);
268 perf_pmu__parse_scale(alias, dir, name);
269 perf_pmu__parse_per_pkg(alias, dir, name);
270 perf_pmu__parse_snapshot(alias, dir, name);
271 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100272
Andi Kleen00636c32017-03-20 13:17:07 -0700273 alias->metric_expr = metric_expr ? strdup(metric_expr) : NULL;
Andi Kleen96284812017-03-20 13:17:10 -0700274 alias->metric_name = metric_name ? strdup(metric_name): NULL;
Andi Kleen08e60ed2016-09-15 15:24:43 -0700275 alias->desc = desc ? strdup(desc) : NULL;
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700276 alias->long_desc = long_desc ? strdup(long_desc) :
277 desc ? strdup(desc) : NULL;
Andi Kleendd5f1032016-09-15 15:24:50 -0700278 alias->topic = topic ? strdup(topic) : NULL;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800279 if (unit) {
280 if (convert_scale(unit, &unit, &alias->scale) < 0)
281 return -1;
282 snprintf(alias->unit, sizeof(alias->unit), "%s", unit);
283 }
284 alias->per_pkg = perpkg && sscanf(perpkg, "%d", &num) == 1 && num == 1;
Andi Kleenf2361022017-01-27 18:03:40 -0800285 alias->str = strdup(val);
286
Zheng Yana6146d52012-06-15 14:31:41 +0800287 list_add_tail(&alias->list, list);
Stephane Eranian410136f2013-11-12 17:58:49 +0100288
Zheng Yana6146d52012-06-15 14:31:41 +0800289 return 0;
290}
291
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700292static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
293{
294 char buf[256];
295 int ret;
296
297 ret = fread(buf, 1, sizeof(buf), file);
298 if (ret == 0)
299 return -EINVAL;
300
301 buf[ret] = 0;
302
Andi Kleenfedb2b52017-01-27 18:03:37 -0800303 return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL, NULL, NULL,
Andi Kleen96284812017-03-20 13:17:10 -0700304 NULL, NULL, NULL);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700305}
306
Matt Fleming46441bd2014-09-24 15:04:06 +0100307static inline bool pmu_alias_info_file(char *name)
308{
309 size_t len;
310
311 len = strlen(name);
312 if (len > 5 && !strcmp(name + len - 5, ".unit"))
313 return true;
314 if (len > 6 && !strcmp(name + len - 6, ".scale"))
315 return true;
Matt Fleming044330c2014-11-21 10:31:12 +0100316 if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
317 return true;
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100318 if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
319 return true;
Matt Fleming46441bd2014-09-24 15:04:06 +0100320
321 return false;
322}
323
Zheng Yana6146d52012-06-15 14:31:41 +0800324/*
325 * Process all the sysfs attributes located under the directory
326 * specified in 'dir' parameter.
327 */
328static int pmu_aliases_parse(char *dir, struct list_head *head)
329{
330 struct dirent *evt_ent;
331 DIR *event_dir;
Zheng Yana6146d52012-06-15 14:31:41 +0800332
333 event_dir = opendir(dir);
334 if (!event_dir)
335 return -EINVAL;
336
Andi Kleen940db6d2016-02-17 14:44:55 -0800337 while ((evt_ent = readdir(event_dir))) {
Zheng Yana6146d52012-06-15 14:31:41 +0800338 char path[PATH_MAX];
339 char *name = evt_ent->d_name;
340 FILE *file;
341
342 if (!strcmp(name, ".") || !strcmp(name, ".."))
343 continue;
344
Stephane Eranian410136f2013-11-12 17:58:49 +0100345 /*
Matt Fleming46441bd2014-09-24 15:04:06 +0100346 * skip info files parsed in perf_pmu__new_alias()
Stephane Eranian410136f2013-11-12 17:58:49 +0100347 */
Matt Fleming46441bd2014-09-24 15:04:06 +0100348 if (pmu_alias_info_file(name))
Stephane Eranian410136f2013-11-12 17:58:49 +0100349 continue;
350
Zheng Yana6146d52012-06-15 14:31:41 +0800351 snprintf(path, PATH_MAX, "%s/%s", dir, name);
352
Zheng Yana6146d52012-06-15 14:31:41 +0800353 file = fopen(path, "r");
Andi Kleen940db6d2016-02-17 14:44:55 -0800354 if (!file) {
355 pr_debug("Cannot open %s\n", path);
356 continue;
357 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100358
Andi Kleen940db6d2016-02-17 14:44:55 -0800359 if (perf_pmu__new_alias(head, dir, name, file) < 0)
360 pr_debug("Cannot set up %s\n", name);
Zheng Yana6146d52012-06-15 14:31:41 +0800361 fclose(file);
362 }
363
364 closedir(event_dir);
Andi Kleen940db6d2016-02-17 14:44:55 -0800365 return 0;
Zheng Yana6146d52012-06-15 14:31:41 +0800366}
367
368/*
369 * Reading the pmu event aliases definition, which should be located at:
370 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
371 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300372static int pmu_aliases(const char *name, struct list_head *head)
Zheng Yana6146d52012-06-15 14:31:41 +0800373{
374 struct stat st;
375 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300376 const char *sysfs = sysfs__mountpoint();
Zheng Yana6146d52012-06-15 14:31:41 +0800377
Zheng Yana6146d52012-06-15 14:31:41 +0800378 if (!sysfs)
379 return -1;
380
381 snprintf(path, PATH_MAX,
382 "%s/bus/event_source/devices/%s/events", sysfs, name);
383
384 if (stat(path, &st) < 0)
Jiri Olsa3fded962012-10-10 14:53:16 +0200385 return 0; /* no error if 'events' does not exist */
Zheng Yana6146d52012-06-15 14:31:41 +0800386
387 if (pmu_aliases_parse(path, head))
388 return -1;
389
390 return 0;
391}
392
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300393static int pmu_alias_terms(struct perf_pmu_alias *alias,
Zheng Yana6146d52012-06-15 14:31:41 +0800394 struct list_head *terms)
395{
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200396 struct parse_events_term *term, *cloned;
Zheng Yana6146d52012-06-15 14:31:41 +0800397 LIST_HEAD(list);
398 int ret;
399
400 list_for_each_entry(term, &alias->terms, list) {
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200401 ret = parse_events_term__clone(&cloned, term);
Zheng Yana6146d52012-06-15 14:31:41 +0800402 if (ret) {
Arnaldo Carvalho de Melo682dc242016-02-12 16:48:00 -0300403 parse_events_terms__purge(&list);
Zheng Yana6146d52012-06-15 14:31:41 +0800404 return ret;
405 }
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200406 list_add_tail(&cloned->list, &list);
Zheng Yana6146d52012-06-15 14:31:41 +0800407 }
408 list_splice(&list, terms);
409 return 0;
410}
411
Jiri Olsacd82a322012-03-15 20:09:17 +0100412/*
413 * Reading/parsing the default pmu type value, which should be
414 * located at:
415 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
416 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300417static int pmu_type(const char *name, __u32 *type)
Jiri Olsacd82a322012-03-15 20:09:17 +0100418{
419 struct stat st;
420 char path[PATH_MAX];
Jiri Olsacd82a322012-03-15 20:09:17 +0100421 FILE *file;
422 int ret = 0;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300423 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +0100424
Jiri Olsacd82a322012-03-15 20:09:17 +0100425 if (!sysfs)
426 return -1;
427
428 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +0200429 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100430
431 if (stat(path, &st) < 0)
432 return -1;
433
434 file = fopen(path, "r");
435 if (!file)
436 return -EINVAL;
437
438 if (1 != fscanf(file, "%u", type))
439 ret = -1;
440
441 fclose(file);
442 return ret;
443}
444
Robert Richter50a96672012-08-16 21:10:24 +0200445/* Add all pmus in sysfs to pmu list: */
446static void pmu_read_sysfs(void)
447{
448 char path[PATH_MAX];
Robert Richter50a96672012-08-16 21:10:24 +0200449 DIR *dir;
450 struct dirent *dent;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300451 const char *sysfs = sysfs__mountpoint();
Robert Richter50a96672012-08-16 21:10:24 +0200452
Robert Richter50a96672012-08-16 21:10:24 +0200453 if (!sysfs)
454 return;
455
456 snprintf(path, PATH_MAX,
457 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
458
459 dir = opendir(path);
460 if (!dir)
461 return;
462
463 while ((dent = readdir(dir))) {
464 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
465 continue;
466 /* add to static LIST_HEAD(pmus): */
467 perf_pmu__find(dent->d_name);
468 }
469
470 closedir(dir);
471}
472
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300473static struct cpu_map *pmu_cpumask(const char *name)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800474{
475 struct stat st;
476 char path[PATH_MAX];
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800477 FILE *file;
478 struct cpu_map *cpus;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300479 const char *sysfs = sysfs__mountpoint();
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100480 const char *templates[] = {
481 "%s/bus/event_source/devices/%s/cpumask",
482 "%s/bus/event_source/devices/%s/cpus",
483 NULL
484 };
485 const char **template;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800486
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800487 if (!sysfs)
488 return NULL;
489
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100490 for (template = templates; *template; template++) {
491 snprintf(path, PATH_MAX, *template, sysfs, name);
492 if (stat(path, &st) == 0)
493 break;
494 }
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800495
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100496 if (!*template)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800497 return NULL;
498
499 file = fopen(path, "r");
500 if (!file)
501 return NULL;
502
503 cpus = cpu_map__read(file);
504 fclose(file);
505 return cpus;
506}
507
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700508/*
509 * Return the CPU id as a raw string.
510 *
511 * Each architecture should provide a more precise id string that
512 * can be use to match the architecture's "mapfile".
513 */
514char * __weak get_cpuid_str(void)
515{
516 return NULL;
517}
518
519/*
520 * From the pmu_events_map, find the table of PMU events that corresponds
521 * to the current running CPU. Then, add all PMU events from that table
522 * as aliases.
523 */
Andi Kleenfedb2b52017-01-27 18:03:37 -0800524static void pmu_add_cpu_aliases(struct list_head *head, const char *name)
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700525{
526 int i;
527 struct pmu_events_map *map;
528 struct pmu_event *pe;
529 char *cpuid;
Andi Kleenfb967062016-10-13 14:15:24 -0700530 static bool printed;
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700531
Andi Kleenfc06e2a2016-09-15 15:24:46 -0700532 cpuid = getenv("PERF_CPUID");
533 if (cpuid)
534 cpuid = strdup(cpuid);
535 if (!cpuid)
536 cpuid = get_cpuid_str();
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700537 if (!cpuid)
538 return;
539
Andi Kleenfb967062016-10-13 14:15:24 -0700540 if (!printed) {
541 pr_debug("Using CPUID %s\n", cpuid);
542 printed = true;
543 }
Andi Kleenfc06e2a2016-09-15 15:24:46 -0700544
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700545 i = 0;
546 while (1) {
547 map = &pmu_events_map[i++];
548 if (!map->table)
549 goto out;
550
551 if (!strcmp(map->cpuid, cpuid))
552 break;
553 }
554
555 /*
556 * Found a matching PMU events table. Create aliases
557 */
558 i = 0;
559 while (1) {
Andi Kleenfedb2b52017-01-27 18:03:37 -0800560 const char *pname;
561
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700562 pe = &map->table[i++];
563 if (!pe->name)
564 break;
565
Andi Kleenfedb2b52017-01-27 18:03:37 -0800566 pname = pe->pmu ? pe->pmu : "cpu";
567 if (strncmp(pname, name, strlen(pname)))
568 continue;
569
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700570 /* need type casts to override 'const' */
571 __perf_pmu__new_alias(head, NULL, (char *)pe->name,
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700572 (char *)pe->desc, (char *)pe->event,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800573 (char *)pe->long_desc, (char *)pe->topic,
Andi Kleen00636c32017-03-20 13:17:07 -0700574 (char *)pe->unit, (char *)pe->perpkg,
Andi Kleen96284812017-03-20 13:17:10 -0700575 (char *)pe->metric_expr,
576 (char *)pe->metric_name);
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700577 }
578
579out:
580 free(cpuid);
581}
582
Sukadev Bhattiproluc5de47f2015-06-10 00:25:07 -0700583struct perf_event_attr * __weak
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300584perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
585{
586 return NULL;
587}
588
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300589static struct perf_pmu *pmu_lookup(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100590{
591 struct perf_pmu *pmu;
592 LIST_HEAD(format);
Zheng Yana6146d52012-06-15 14:31:41 +0800593 LIST_HEAD(aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100594 __u32 type;
595
596 /*
597 * The pmu data we store & need consists of the pmu
598 * type value and format definitions. Load both right
599 * now.
600 */
601 if (pmu_format(name, &format))
602 return NULL;
603
Andi Kleen15b22ed2017-01-27 18:03:38 -0800604 /*
605 * Check the type first to avoid unnecessary work.
606 */
607 if (pmu_type(name, &type))
608 return NULL;
609
Jiri Olsa3fded962012-10-10 14:53:16 +0200610 if (pmu_aliases(name, &aliases))
611 return NULL;
612
Andi Kleenfedb2b52017-01-27 18:03:37 -0800613 pmu_add_cpu_aliases(&aliases, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100614 pmu = zalloc(sizeof(*pmu));
615 if (!pmu)
616 return NULL;
617
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800618 pmu->cpus = pmu_cpumask(name);
619
Jiri Olsacd82a322012-03-15 20:09:17 +0100620 INIT_LIST_HEAD(&pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800621 INIT_LIST_HEAD(&pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100622 list_splice(&format, &pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800623 list_splice(&aliases, &pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100624 pmu->name = strdup(name);
625 pmu->type = type;
Robert Richter9bc8f9f2012-06-14 22:38:37 +0200626 list_add_tail(&pmu->list, &pmus);
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300627
628 pmu->default_config = perf_pmu__get_default_config(pmu);
629
Jiri Olsacd82a322012-03-15 20:09:17 +0100630 return pmu;
631}
632
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300633static struct perf_pmu *pmu_find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100634{
635 struct perf_pmu *pmu;
636
637 list_for_each_entry(pmu, &pmus, list)
638 if (!strcmp(pmu->name, name))
639 return pmu;
640
641 return NULL;
642}
643
Robert Richter50a96672012-08-16 21:10:24 +0200644struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
645{
646 /*
647 * pmu iterator: If pmu is NULL, we start at the begin,
648 * otherwise return the next pmu. Returns NULL on end.
649 */
650 if (!pmu) {
651 pmu_read_sysfs();
652 pmu = list_prepare_entry(pmu, &pmus, list);
653 }
654 list_for_each_entry_continue(pmu, &pmus, list)
655 return pmu;
656 return NULL;
657}
658
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300659struct perf_pmu *perf_pmu__find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100660{
661 struct perf_pmu *pmu;
662
663 /*
664 * Once PMU is loaded it stays in the list,
665 * so we keep us from multiple reading/parsing
666 * the pmu format definitions.
667 */
668 pmu = pmu_find(name);
669 if (pmu)
670 return pmu;
671
672 return pmu_lookup(name);
673}
674
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300675static struct perf_pmu_format *
Adrian Hunter09ff6072015-07-17 19:33:49 +0300676pmu_find_format(struct list_head *formats, const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100677{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300678 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100679
680 list_for_each_entry(format, formats, list)
681 if (!strcmp(format->name, name))
682 return format;
683
684 return NULL;
685}
686
Adrian Hunter09ff6072015-07-17 19:33:49 +0300687__u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
688{
689 struct perf_pmu_format *format = pmu_find_format(formats, name);
690 __u64 bits = 0;
691 int fbit;
692
693 if (!format)
694 return 0;
695
696 for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
697 bits |= 1ULL << fbit;
698
699 return bits;
700}
701
Jiri Olsacd82a322012-03-15 20:09:17 +0100702/*
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300703 * Sets value based on the format definition (format parameter)
Jiri Olsacd82a322012-03-15 20:09:17 +0100704 * and unformated value (value parameter).
Jiri Olsacd82a322012-03-15 20:09:17 +0100705 */
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300706static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
707 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100708{
709 unsigned long fbit, vbit;
Jiri Olsacd82a322012-03-15 20:09:17 +0100710
711 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
712
713 if (!test_bit(fbit, format))
714 continue;
715
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300716 if (value & (1llu << vbit++))
717 *v |= (1llu << fbit);
718 else if (zero)
719 *v &= ~(1llu << fbit);
Jiri Olsacd82a322012-03-15 20:09:17 +0100720 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100721}
722
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300723static __u64 pmu_format_max_value(const unsigned long *format)
724{
Kan Liangac0e2cd2016-03-30 12:16:15 -0700725 __u64 w = 0;
726 int fbit;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300727
Kan Liangac0e2cd2016-03-30 12:16:15 -0700728 for_each_set_bit(fbit, format, PERF_PMU_FORMAT_BITS)
729 w |= (1ULL << fbit);
730
731 return w;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300732}
733
Jiri Olsacd82a322012-03-15 20:09:17 +0100734/*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800735 * Term is a string term, and might be a param-term. Try to look up it's value
736 * in the remaining terms.
737 * - We have a term like "base-or-format-term=param-term",
738 * - We need to find the value supplied for "param-term" (with param-term named
739 * in a config string) later on in the term list.
740 */
741static int pmu_resolve_param_term(struct parse_events_term *term,
742 struct list_head *head_terms,
743 __u64 *value)
744{
745 struct parse_events_term *t;
746
747 list_for_each_entry(t, head_terms, list) {
748 if (t->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
749 if (!strcmp(t->config, term->config)) {
750 t->used = true;
751 *value = t->val.num;
752 return 0;
753 }
754 }
755 }
756
Namhyung Kimbb963e12017-02-17 17:17:38 +0900757 if (verbose > 0)
Cody P Schafer688d4df2015-01-07 17:13:50 -0800758 printf("Required parameter '%s' not specified\n", term->config);
759
760 return -1;
761}
762
He Kuangffeb8832015-09-28 03:52:14 +0000763static char *pmu_formats_string(struct list_head *formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200764{
765 struct perf_pmu_format *format;
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900766 char *str = NULL;
767 struct strbuf buf = STRBUF_INIT;
Jiri Olsae64b0202015-04-22 21:10:21 +0200768 unsigned i = 0;
769
He Kuangffeb8832015-09-28 03:52:14 +0000770 if (!formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200771 return NULL;
772
773 /* sysfs exported terms */
He Kuangffeb8832015-09-28 03:52:14 +0000774 list_for_each_entry(format, formats, list)
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900775 if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
776 goto error;
Jiri Olsae64b0202015-04-22 21:10:21 +0200777
He Kuangffeb8832015-09-28 03:52:14 +0000778 str = strbuf_detach(&buf, NULL);
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900779error:
He Kuangffeb8832015-09-28 03:52:14 +0000780 strbuf_release(&buf);
Jiri Olsae64b0202015-04-22 21:10:21 +0200781
Jiri Olsae64b0202015-04-22 21:10:21 +0200782 return str;
Jiri Olsae64b0202015-04-22 21:10:21 +0200783}
784
Cody P Schafer688d4df2015-01-07 17:13:50 -0800785/*
Jiri Olsacd82a322012-03-15 20:09:17 +0100786 * Setup one of config[12] attr members based on the
Cody P Schafer88aca8d2014-01-08 08:43:51 -0800787 * user input data - term parameter.
Jiri Olsacd82a322012-03-15 20:09:17 +0100788 */
789static int pmu_config_term(struct list_head *formats,
790 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300791 struct parse_events_term *term,
Cody P Schafer688d4df2015-01-07 17:13:50 -0800792 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +0200793 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100794{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300795 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100796 __u64 *vp;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300797 __u64 val, max_val;
Jiri Olsacd82a322012-03-15 20:09:17 +0100798
799 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800800 * If this is a parameter we've already used for parameterized-eval,
801 * skip it in normal eval.
802 */
803 if (term->used)
804 return 0;
805
806 /*
Jiri Olsacd82a322012-03-15 20:09:17 +0100807 * Hardcoded terms should be already in, so nothing
808 * to be done for them.
809 */
810 if (parse_events__is_hardcoded_term(term))
811 return 0;
812
Jiri Olsacd82a322012-03-15 20:09:17 +0100813 format = pmu_find_format(formats, term->config);
Cody P Schafer688d4df2015-01-07 17:13:50 -0800814 if (!format) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900815 if (verbose > 0)
Cody P Schafer688d4df2015-01-07 17:13:50 -0800816 printf("Invalid event/parameter '%s'\n", term->config);
Jiri Olsae64b0202015-04-22 21:10:21 +0200817 if (err) {
He Kuangffeb8832015-09-28 03:52:14 +0000818 char *pmu_term = pmu_formats_string(formats);
819
Jiri Olsae64b0202015-04-22 21:10:21 +0200820 err->idx = term->err_term;
821 err->str = strdup("unknown term");
He Kuangffeb8832015-09-28 03:52:14 +0000822 err->help = parse_events_formats_error_string(pmu_term);
823 free(pmu_term);
Jiri Olsae64b0202015-04-22 21:10:21 +0200824 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100825 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -0800826 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100827
828 switch (format->value) {
829 case PERF_PMU_FORMAT_VALUE_CONFIG:
830 vp = &attr->config;
831 break;
832 case PERF_PMU_FORMAT_VALUE_CONFIG1:
833 vp = &attr->config1;
834 break;
835 case PERF_PMU_FORMAT_VALUE_CONFIG2:
836 vp = &attr->config2;
837 break;
838 default:
839 return -EINVAL;
840 }
841
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200842 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800843 * Either directly use a numeric term, or try to translate string terms
844 * using event parameters.
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200845 */
Jiri Olsa99e71382017-02-17 15:00:56 +0100846 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
847 if (term->no_value &&
848 bitmap_weight(format->bits, PERF_PMU_FORMAT_BITS) > 1) {
849 if (err) {
850 err->idx = term->err_val;
851 err->str = strdup("no value assigned for term");
852 }
853 return -EINVAL;
854 }
855
Cody P Schafer688d4df2015-01-07 17:13:50 -0800856 val = term->val.num;
Jiri Olsa99e71382017-02-17 15:00:56 +0100857 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
Cody P Schafer688d4df2015-01-07 17:13:50 -0800858 if (strcmp(term->val.str, "?")) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900859 if (verbose > 0) {
Cody P Schafer688d4df2015-01-07 17:13:50 -0800860 pr_info("Invalid sysfs entry %s=%s\n",
861 term->config, term->val.str);
Jiri Olsae64b0202015-04-22 21:10:21 +0200862 }
863 if (err) {
864 err->idx = term->err_val;
865 err->str = strdup("expected numeric value");
866 }
Cody P Schafer688d4df2015-01-07 17:13:50 -0800867 return -EINVAL;
868 }
869
870 if (pmu_resolve_param_term(term, head_terms, &val))
871 return -EINVAL;
872 } else
873 return -EINVAL;
874
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300875 max_val = pmu_format_max_value(format->bits);
876 if (val > max_val) {
877 if (err) {
878 err->idx = term->err_val;
879 if (asprintf(&err->str,
880 "value too big for format, maximum is %llu",
881 (unsigned long long)max_val) < 0)
882 err->str = strdup("value too big for format");
883 return -EINVAL;
884 }
885 /*
886 * Assume we don't care if !err, in which case the value will be
887 * silently truncated.
888 */
889 }
890
Cody P Schafer688d4df2015-01-07 17:13:50 -0800891 pmu_format_value(format->bits, val, vp, zero);
Jiri Olsacd82a322012-03-15 20:09:17 +0100892 return 0;
893}
894
Jiri Olsacff7f952012-11-10 01:46:50 +0100895int perf_pmu__config_terms(struct list_head *formats,
896 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300897 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +0200898 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100899{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300900 struct parse_events_term *term;
Jiri Olsacd82a322012-03-15 20:09:17 +0100901
Cody P Schafer688d4df2015-01-07 17:13:50 -0800902 list_for_each_entry(term, head_terms, list) {
Jiri Olsae64b0202015-04-22 21:10:21 +0200903 if (pmu_config_term(formats, attr, term, head_terms,
904 zero, err))
Jiri Olsacd82a322012-03-15 20:09:17 +0100905 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -0800906 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100907
908 return 0;
909}
910
911/*
912 * Configures event's 'attr' parameter based on the:
913 * 1) users input - specified in terms parameter
914 * 2) pmu format definitions - specified by pmu parameter
915 */
916int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
Jiri Olsae64b0202015-04-22 21:10:21 +0200917 struct list_head *head_terms,
918 struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100919{
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300920 bool zero = !!pmu->default_config;
921
Jiri Olsacd82a322012-03-15 20:09:17 +0100922 attr->type = pmu->type;
Jiri Olsae64b0202015-04-22 21:10:21 +0200923 return perf_pmu__config_terms(&pmu->format, attr, head_terms,
924 zero, err);
Jiri Olsacd82a322012-03-15 20:09:17 +0100925}
926
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300927static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
928 struct parse_events_term *term)
Zheng Yana6146d52012-06-15 14:31:41 +0800929{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300930 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800931 char *name;
932
933 if (parse_events__is_hardcoded_term(term))
934 return NULL;
935
936 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
937 if (term->val.num != 1)
938 return NULL;
939 if (pmu_find_format(&pmu->format, term->config))
940 return NULL;
941 name = term->config;
942 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
943 if (strcasecmp(term->config, "event"))
944 return NULL;
945 name = term->val.str;
946 } else {
947 return NULL;
948 }
949
950 list_for_each_entry(alias, &pmu->aliases, list) {
951 if (!strcasecmp(alias->name, name))
952 return alias;
953 }
954 return NULL;
955}
956
Stephane Eranian410136f2013-11-12 17:58:49 +0100957
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100958static int check_info_data(struct perf_pmu_alias *alias,
959 struct perf_pmu_info *info)
Stephane Eranian410136f2013-11-12 17:58:49 +0100960{
961 /*
962 * Only one term in event definition can
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100963 * define unit, scale and snapshot, fail
964 * if there's more than one.
Stephane Eranian410136f2013-11-12 17:58:49 +0100965 */
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -0300966 if ((info->unit && alias->unit[0]) ||
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100967 (info->scale && alias->scale) ||
968 (info->snapshot && alias->snapshot))
Stephane Eranian410136f2013-11-12 17:58:49 +0100969 return -EINVAL;
970
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -0300971 if (alias->unit[0])
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100972 info->unit = alias->unit;
Stephane Eranian410136f2013-11-12 17:58:49 +0100973
974 if (alias->scale)
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100975 info->scale = alias->scale;
976
977 if (alias->snapshot)
978 info->snapshot = alias->snapshot;
Stephane Eranian410136f2013-11-12 17:58:49 +0100979
980 return 0;
981}
982
Zheng Yana6146d52012-06-15 14:31:41 +0800983/*
984 * Find alias in the terms list and replace it with the terms
985 * defined for the alias
986 */
Stephane Eranian410136f2013-11-12 17:58:49 +0100987int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
Matt Fleming46441bd2014-09-24 15:04:06 +0100988 struct perf_pmu_info *info)
Zheng Yana6146d52012-06-15 14:31:41 +0800989{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300990 struct parse_events_term *term, *h;
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300991 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800992 int ret;
993
Matt Fleming044330c2014-11-21 10:31:12 +0100994 info->per_pkg = false;
995
Stephane Eranian8a398892014-01-17 16:34:05 +0100996 /*
997 * Mark unit and scale as not set
998 * (different from default values, see below)
999 */
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001000 info->unit = NULL;
1001 info->scale = 0.0;
1002 info->snapshot = false;
Andi Kleen37932c12017-03-20 13:17:08 -07001003 info->metric_expr = NULL;
Andi Kleen96284812017-03-20 13:17:10 -07001004 info->metric_name = NULL;
Stephane Eranian410136f2013-11-12 17:58:49 +01001005
Zheng Yana6146d52012-06-15 14:31:41 +08001006 list_for_each_entry_safe(term, h, head_terms, list) {
1007 alias = pmu_find_alias(pmu, term);
1008 if (!alias)
1009 continue;
1010 ret = pmu_alias_terms(alias, &term->list);
1011 if (ret)
1012 return ret;
Stephane Eranian410136f2013-11-12 17:58:49 +01001013
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001014 ret = check_info_data(alias, info);
Stephane Eranian410136f2013-11-12 17:58:49 +01001015 if (ret)
1016 return ret;
1017
Matt Fleming044330c2014-11-21 10:31:12 +01001018 if (alias->per_pkg)
1019 info->per_pkg = true;
Andi Kleen37932c12017-03-20 13:17:08 -07001020 info->metric_expr = alias->metric_expr;
Andi Kleen96284812017-03-20 13:17:10 -07001021 info->metric_name = alias->metric_name;
Matt Fleming044330c2014-11-21 10:31:12 +01001022
Zheng Yana6146d52012-06-15 14:31:41 +08001023 list_del(&term->list);
1024 free(term);
1025 }
Stephane Eranian8a398892014-01-17 16:34:05 +01001026
1027 /*
1028 * if no unit or scale foundin aliases, then
1029 * set defaults as for evsel
1030 * unit cannot left to NULL
1031 */
Matt Fleming46441bd2014-09-24 15:04:06 +01001032 if (info->unit == NULL)
1033 info->unit = "";
Stephane Eranian8a398892014-01-17 16:34:05 +01001034
Matt Fleming46441bd2014-09-24 15:04:06 +01001035 if (info->scale == 0.0)
1036 info->scale = 1.0;
Stephane Eranian8a398892014-01-17 16:34:05 +01001037
Zheng Yana6146d52012-06-15 14:31:41 +08001038 return 0;
1039}
1040
Jiri Olsacd82a322012-03-15 20:09:17 +01001041int perf_pmu__new_format(struct list_head *list, char *name,
1042 int config, unsigned long *bits)
1043{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001044 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +01001045
1046 format = zalloc(sizeof(*format));
1047 if (!format)
1048 return -ENOMEM;
1049
1050 format->name = strdup(name);
1051 format->value = config;
1052 memcpy(format->bits, bits, sizeof(format->bits));
1053
1054 list_add_tail(&format->list, list);
1055 return 0;
1056}
1057
1058void perf_pmu__set_format(unsigned long *bits, long from, long to)
1059{
1060 long b;
1061
1062 if (!to)
1063 to = from;
1064
Sukadev Bhattiprolu15268132013-01-17 09:11:30 -08001065 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
Jiri Olsacd82a322012-03-15 20:09:17 +01001066 for (b = from; b <= to; b++)
1067 set_bit(b, bits);
1068}
Andi Kleendc098b32013-04-20 11:02:29 -07001069
Cody P Schaferaaea3612015-01-07 17:13:51 -08001070static int sub_non_neg(int a, int b)
1071{
1072 if (b > a)
1073 return 0;
1074 return a - b;
1075}
1076
Andi Kleendc098b32013-04-20 11:02:29 -07001077static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
1078 struct perf_pmu_alias *alias)
1079{
Cody P Schaferaaea3612015-01-07 17:13:51 -08001080 struct parse_events_term *term;
1081 int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1082
1083 list_for_each_entry(term, &alias->terms, list) {
1084 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
1085 used += snprintf(buf + used, sub_non_neg(len, used),
1086 ",%s=%s", term->config,
1087 term->val.str);
1088 }
1089
1090 if (sub_non_neg(len, used) > 0) {
1091 buf[used] = '/';
1092 used++;
1093 }
1094 if (sub_non_neg(len, used) > 0) {
1095 buf[used] = '\0';
1096 used++;
1097 } else
1098 buf[len - 1] = '\0';
1099
Andi Kleendc098b32013-04-20 11:02:29 -07001100 return buf;
1101}
1102
1103static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
1104 struct perf_pmu_alias *alias)
1105{
1106 snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
1107 return buf;
1108}
1109
Andi Kleendd5f1032016-09-15 15:24:50 -07001110struct sevent {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001111 char *name;
1112 char *desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001113 char *topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001114 char *str;
1115 char *pmu;
Andi Kleen7f372a62017-03-20 13:17:09 -07001116 char *metric_expr;
Andi Kleen96284812017-03-20 13:17:10 -07001117 char *metric_name;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001118};
1119
Andi Kleendd5f1032016-09-15 15:24:50 -07001120static int cmp_sevent(const void *a, const void *b)
Andi Kleendc098b32013-04-20 11:02:29 -07001121{
Andi Kleendd5f1032016-09-15 15:24:50 -07001122 const struct sevent *as = a;
1123 const struct sevent *bs = b;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001124
1125 /* Put extra events last */
1126 if (!!as->desc != !!bs->desc)
1127 return !!as->desc - !!bs->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001128 if (as->topic && bs->topic) {
1129 int n = strcmp(as->topic, bs->topic);
1130
1131 if (n)
1132 return n;
1133 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001134 return strcmp(as->name, bs->name);
1135}
1136
1137static void wordwrap(char *s, int start, int max, int corr)
1138{
1139 int column = start;
1140 int n;
1141
1142 while (*s) {
1143 int wlen = strcspn(s, " \t");
1144
1145 if (column + wlen >= max && column > start) {
1146 printf("\n%*s", start, "");
1147 column = start + corr;
1148 }
1149 n = printf("%s%.*s", column > start ? " " : "", wlen, s);
1150 if (n <= 0)
1151 break;
1152 s += wlen;
1153 column += n;
Taeung Songaa4beb12017-04-07 23:24:20 +09001154 s = ltrim(s);
Andi Kleen08e60ed2016-09-15 15:24:43 -07001155 }
Andi Kleendc098b32013-04-20 11:02:29 -07001156}
1157
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001158void print_pmu_events(const char *event_glob, bool name_only, bool quiet_flag,
Andi Kleenbf874fc2017-03-20 13:17:11 -07001159 bool long_desc, bool details_flag)
Andi Kleendc098b32013-04-20 11:02:29 -07001160{
1161 struct perf_pmu *pmu;
1162 struct perf_pmu_alias *alias;
1163 char buf[1024];
1164 int printed = 0;
1165 int len, j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001166 struct sevent *aliases;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001167 int numdesc = 0;
Andi Kleen61eb2eb2016-09-15 15:24:44 -07001168 int columns = pager_get_columns();
Andi Kleendd5f1032016-09-15 15:24:50 -07001169 char *topic = NULL;
Andi Kleendc098b32013-04-20 11:02:29 -07001170
1171 pmu = NULL;
1172 len = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001173 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001174 list_for_each_entry(alias, &pmu->aliases, list)
1175 len++;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001176 if (pmu->selectable)
1177 len++;
1178 }
Andi Kleendd5f1032016-09-15 15:24:50 -07001179 aliases = zalloc(sizeof(struct sevent) * len);
Andi Kleendc098b32013-04-20 11:02:29 -07001180 if (!aliases)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001181 goto out_enomem;
Andi Kleendc098b32013-04-20 11:02:29 -07001182 pmu = NULL;
1183 j = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001184 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001185 list_for_each_entry(alias, &pmu->aliases, list) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001186 char *name = alias->desc ? alias->name :
1187 format_alias(buf, sizeof(buf), pmu, alias);
Andi Kleendc098b32013-04-20 11:02:29 -07001188 bool is_cpu = !strcmp(pmu->name, "cpu");
1189
1190 if (event_glob != NULL &&
Andi Kleen38d14f02016-10-19 10:50:01 -07001191 !(strglobmatch_nocase(name, event_glob) ||
1192 (!is_cpu && strglobmatch_nocase(alias->name,
Andi Kleen67bdc352016-10-19 11:45:23 -07001193 event_glob)) ||
1194 (alias->topic &&
1195 strglobmatch_nocase(alias->topic, event_glob))))
Andi Kleendc098b32013-04-20 11:02:29 -07001196 continue;
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001197
Andi Kleen08e60ed2016-09-15 15:24:43 -07001198 if (is_cpu && !name_only && !alias->desc)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001199 name = format_alias_or(buf, sizeof(buf), pmu, alias);
1200
Andi Kleen08e60ed2016-09-15 15:24:43 -07001201 aliases[j].name = name;
1202 if (is_cpu && !name_only && !alias->desc)
1203 aliases[j].name = format_alias_or(buf,
1204 sizeof(buf),
1205 pmu, alias);
1206 aliases[j].name = strdup(aliases[j].name);
1207 if (!aliases[j].name)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001208 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001209
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001210 aliases[j].desc = long_desc ? alias->long_desc :
1211 alias->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001212 aliases[j].topic = alias->topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001213 aliases[j].str = alias->str;
1214 aliases[j].pmu = pmu->name;
Andi Kleen7f372a62017-03-20 13:17:09 -07001215 aliases[j].metric_expr = alias->metric_expr;
Andi Kleen96284812017-03-20 13:17:10 -07001216 aliases[j].metric_name = alias->metric_name;
Andi Kleendc098b32013-04-20 11:02:29 -07001217 j++;
1218 }
Arnaldo Carvalho de Melofa52cea2015-10-02 15:28:16 -03001219 if (pmu->selectable &&
1220 (event_glob == NULL || strglobmatch(pmu->name, event_glob))) {
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001221 char *s;
1222 if (asprintf(&s, "%s//", pmu->name) < 0)
1223 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001224 aliases[j].name = s;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001225 j++;
1226 }
1227 }
Andi Kleendc098b32013-04-20 11:02:29 -07001228 len = j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001229 qsort(aliases, len, sizeof(struct sevent), cmp_sevent);
Andi Kleendc098b32013-04-20 11:02:29 -07001230 for (j = 0; j < len; j++) {
Andi Kleen15b22ed2017-01-27 18:03:38 -08001231 /* Skip duplicates */
1232 if (j > 0 && !strcmp(aliases[j].name, aliases[j - 1].name))
1233 continue;
Andi Kleendc098b32013-04-20 11:02:29 -07001234 if (name_only) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001235 printf("%s ", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001236 continue;
1237 }
Andi Kleen1c5f01f2016-09-15 15:24:45 -07001238 if (aliases[j].desc && !quiet_flag) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001239 if (numdesc++ == 0)
1240 printf("\n");
Andi Kleendd5f1032016-09-15 15:24:50 -07001241 if (aliases[j].topic && (!topic ||
1242 strcmp(topic, aliases[j].topic))) {
1243 printf("%s%s:\n", topic ? "\n" : "",
1244 aliases[j].topic);
1245 topic = aliases[j].topic;
1246 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001247 printf(" %-50s\n", aliases[j].name);
1248 printf("%*s", 8, "[");
1249 wordwrap(aliases[j].desc, 8, columns, 0);
1250 printf("]\n");
Andi Kleenbf874fc2017-03-20 13:17:11 -07001251 if (details_flag) {
Andi Kleen7f372a62017-03-20 13:17:09 -07001252 printf("%*s%s/%s/ ", 8, "", aliases[j].pmu, aliases[j].str);
Andi Kleen96284812017-03-20 13:17:10 -07001253 if (aliases[j].metric_name)
1254 printf(" MetricName: %s", aliases[j].metric_name);
Andi Kleen7f372a62017-03-20 13:17:09 -07001255 if (aliases[j].metric_expr)
1256 printf(" MetricExpr: %s", aliases[j].metric_expr);
1257 putchar('\n');
1258 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001259 } else
1260 printf(" %-50s [Kernel PMU event]\n", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001261 printed++;
1262 }
Arnaldo Carvalho de Melodfc431c2015-09-30 17:13:26 -03001263 if (printed && pager_in_use())
Andi Kleendc098b32013-04-20 11:02:29 -07001264 printf("\n");
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001265out_free:
1266 for (j = 0; j < len; j++)
Andi Kleen08e60ed2016-09-15 15:24:43 -07001267 zfree(&aliases[j].name);
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001268 zfree(&aliases);
1269 return;
1270
1271out_enomem:
1272 printf("FATAL: not enough memory to print PMU events\n");
1273 if (aliases)
1274 goto out_free;
Andi Kleendc098b32013-04-20 11:02:29 -07001275}
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001276
1277bool pmu_have_event(const char *pname, const char *name)
1278{
1279 struct perf_pmu *pmu;
1280 struct perf_pmu_alias *alias;
1281
1282 pmu = NULL;
1283 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1284 if (strcmp(pname, pmu->name))
1285 continue;
1286 list_for_each_entry(alias, &pmu->aliases, list)
1287 if (!strcmp(alias->name, name))
1288 return true;
1289 }
1290 return false;
1291}
Adrian Hunter7d4bdab2014-07-31 09:00:50 +03001292
1293static FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1294{
1295 struct stat st;
1296 char path[PATH_MAX];
1297 const char *sysfs;
1298
1299 sysfs = sysfs__mountpoint();
1300 if (!sysfs)
1301 return NULL;
1302
1303 snprintf(path, PATH_MAX,
1304 "%s" EVENT_SOURCE_DEVICE_PATH "%s/%s", sysfs, pmu->name, name);
1305
1306 if (stat(path, &st) < 0)
1307 return NULL;
1308
1309 return fopen(path, "r");
1310}
1311
1312int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1313 ...)
1314{
1315 va_list args;
1316 FILE *file;
1317 int ret = EOF;
1318
1319 va_start(args, fmt);
1320 file = perf_pmu__open_file(pmu, name);
1321 if (file) {
1322 ret = vfscanf(file, fmt, args);
1323 fclose(file);
1324 }
1325 va_end(args);
1326 return ret;
1327}