blob: 49bfee0e3d9ed0b483180a74b7bfd96954f4968b [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>
Jiri Olsacd82a322012-03-15 20:09:17 +01004#include <unistd.h>
5#include <stdio.h>
Adrian Hunterdc0a6202014-07-31 09:00:49 +03006#include <stdbool.h>
Adrian Hunter7d4bdab2014-07-31 09:00:50 +03007#include <stdarg.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01008#include <dirent.h>
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01009#include <api/fs/fs.h>
Stephane Eranian410136f2013-11-12 17:58:49 +010010#include <locale.h>
Jiri Olsacd82a322012-03-15 20:09:17 +010011#include "util.h"
12#include "pmu.h"
13#include "parse-events.h"
Yan, Zheng7ae92e72012-09-10 15:53:50 +080014#include "cpumap.h"
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -070015#include "header.h"
16#include "pmu-events/pmu-events.h"
Andi Kleen61eb2eb2016-09-15 15:24:44 -070017#include "cache.h"
Jiri Olsacd82a322012-03-15 20:09:17 +010018
Arnaldo Carvalho de Meloab1bf6532013-01-18 17:05:09 -030019struct perf_pmu_format {
20 char *name;
21 int value;
22 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
23 struct list_head list;
24};
25
Robert Richter50a96672012-08-16 21:10:24 +020026#define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"
27
Jiri Olsacd82a322012-03-15 20:09:17 +010028int perf_pmu_parse(struct list_head *list, char *name);
29extern FILE *perf_pmu_in;
30
31static LIST_HEAD(pmus);
32
33/*
34 * Parse & process all the sysfs attributes located under
35 * the directory specified in 'dir' parameter.
36 */
Jiri Olsacff7f952012-11-10 01:46:50 +010037int perf_pmu__format_parse(char *dir, struct list_head *head)
Jiri Olsacd82a322012-03-15 20:09:17 +010038{
39 struct dirent *evt_ent;
40 DIR *format_dir;
41 int ret = 0;
42
43 format_dir = opendir(dir);
44 if (!format_dir)
45 return -EINVAL;
46
47 while (!ret && (evt_ent = readdir(format_dir))) {
48 char path[PATH_MAX];
49 char *name = evt_ent->d_name;
50 FILE *file;
51
52 if (!strcmp(name, ".") || !strcmp(name, ".."))
53 continue;
54
55 snprintf(path, PATH_MAX, "%s/%s", dir, name);
56
57 ret = -EINVAL;
58 file = fopen(path, "r");
59 if (!file)
60 break;
61
62 perf_pmu_in = file;
63 ret = perf_pmu_parse(head, name);
64 fclose(file);
65 }
66
67 closedir(format_dir);
68 return ret;
69}
70
71/*
72 * Reading/parsing the default pmu format definition, which should be
73 * located at:
74 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
75 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +030076static int pmu_format(const char *name, struct list_head *format)
Jiri Olsacd82a322012-03-15 20:09:17 +010077{
78 struct stat st;
79 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -030080 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +010081
Jiri Olsacd82a322012-03-15 20:09:17 +010082 if (!sysfs)
83 return -1;
84
85 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +020086 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +010087
88 if (stat(path, &st) < 0)
Robert Richter9bc8f9f2012-06-14 22:38:37 +020089 return 0; /* no error if format does not exist */
Jiri Olsacd82a322012-03-15 20:09:17 +010090
Jiri Olsacff7f952012-11-10 01:46:50 +010091 if (perf_pmu__format_parse(path, format))
Jiri Olsacd82a322012-03-15 20:09:17 +010092 return -1;
93
94 return 0;
95}
96
Andi Kleend02fc6b2017-01-03 07:08:23 -080097static int convert_scale(const char *scale, char **end, double *sval)
98{
99 char *lc;
100 int ret = 0;
101
102 /*
103 * save current locale
104 */
105 lc = setlocale(LC_NUMERIC, NULL);
106
107 /*
108 * The lc string may be allocated in static storage,
109 * so get a dynamic copy to make it survive setlocale
110 * call below.
111 */
112 lc = strdup(lc);
113 if (!lc) {
114 ret = -ENOMEM;
115 goto out;
116 }
117
118 /*
119 * force to C locale to ensure kernel
120 * scale string is converted correctly.
121 * kernel uses default C locale.
122 */
123 setlocale(LC_NUMERIC, "C");
124
125 *sval = strtod(scale, end);
126
127out:
128 /* restore locale */
129 setlocale(LC_NUMERIC, lc);
130 free(lc);
131 return ret;
132}
133
Stephane Eranian410136f2013-11-12 17:58:49 +0100134static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
135{
136 struct stat st;
137 ssize_t sret;
138 char scale[128];
139 int fd, ret = -1;
140 char path[PATH_MAX];
Stephane Eranian410136f2013-11-12 17:58:49 +0100141
142 snprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
143
144 fd = open(path, O_RDONLY);
145 if (fd == -1)
146 return -1;
147
148 if (fstat(fd, &st) < 0)
149 goto error;
150
151 sret = read(fd, scale, sizeof(scale)-1);
152 if (sret < 0)
153 goto error;
154
Madhavan Srinivasan9ecae062015-05-31 11:36:23 +0530155 if (scale[sret - 1] == '\n')
156 scale[sret - 1] = '\0';
157 else
158 scale[sret] = '\0';
159
Andi Kleend02fc6b2017-01-03 07:08:23 -0800160 ret = convert_scale(scale, NULL, &alias->scale);
Stephane Eranian410136f2013-11-12 17:58:49 +0100161error:
162 close(fd);
163 return ret;
164}
165
166static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
167{
168 char path[PATH_MAX];
169 ssize_t sret;
170 int fd;
171
172 snprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
173
174 fd = open(path, O_RDONLY);
175 if (fd == -1)
176 return -1;
177
Markus Trippelsdorfd85ce832015-12-14 16:44:40 +0100178 sret = read(fd, alias->unit, UNIT_MAX_LEN);
Stephane Eranian410136f2013-11-12 17:58:49 +0100179 if (sret < 0)
180 goto error;
181
182 close(fd);
183
Madhavan Srinivasan9ecae062015-05-31 11:36:23 +0530184 if (alias->unit[sret - 1] == '\n')
185 alias->unit[sret - 1] = '\0';
186 else
187 alias->unit[sret] = '\0';
Stephane Eranian410136f2013-11-12 17:58:49 +0100188
189 return 0;
190error:
191 close(fd);
192 alias->unit[0] = '\0';
193 return -1;
194}
195
Matt Fleming044330c2014-11-21 10:31:12 +0100196static int
197perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name)
198{
199 char path[PATH_MAX];
200 int fd;
201
202 snprintf(path, PATH_MAX, "%s/%s.per-pkg", dir, name);
203
204 fd = open(path, O_RDONLY);
205 if (fd == -1)
206 return -1;
207
208 close(fd);
209
210 alias->per_pkg = true;
211 return 0;
212}
213
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100214static int perf_pmu__parse_snapshot(struct perf_pmu_alias *alias,
215 char *dir, char *name)
216{
217 char path[PATH_MAX];
218 int fd;
219
220 snprintf(path, PATH_MAX, "%s/%s.snapshot", dir, name);
221
222 fd = open(path, O_RDONLY);
223 if (fd == -1)
224 return -1;
225
226 alias->snapshot = true;
227 close(fd);
228 return 0;
229}
230
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700231static int __perf_pmu__new_alias(struct list_head *list, char *dir, char *name,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800232 char *desc, char *val,
233 char *long_desc, char *topic,
234 char *unit, char *perpkg)
Zheng Yana6146d52012-06-15 14:31:41 +0800235{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300236 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800237 int ret;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800238 int num;
Zheng Yana6146d52012-06-15 14:31:41 +0800239
Zheng Yana6146d52012-06-15 14:31:41 +0800240 alias = malloc(sizeof(*alias));
241 if (!alias)
242 return -ENOMEM;
243
244 INIT_LIST_HEAD(&alias->terms);
Stephane Eranian410136f2013-11-12 17:58:49 +0100245 alias->scale = 1.0;
246 alias->unit[0] = '\0';
Matt Fleming044330c2014-11-21 10:31:12 +0100247 alias->per_pkg = false;
Stephane Eranian84530922016-01-06 19:50:01 +0100248 alias->snapshot = false;
Stephane Eranian410136f2013-11-12 17:58:49 +0100249
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700250 ret = parse_events_terms(&alias->terms, val);
Zheng Yana6146d52012-06-15 14:31:41 +0800251 if (ret) {
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700252 pr_err("Cannot parse alias %s: %d\n", val, ret);
Zheng Yana6146d52012-06-15 14:31:41 +0800253 free(alias);
254 return ret;
255 }
256
257 alias->name = strdup(name);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700258 if (dir) {
259 /*
260 * load unit name and scale if available
261 */
262 perf_pmu__parse_unit(alias, dir, name);
263 perf_pmu__parse_scale(alias, dir, name);
264 perf_pmu__parse_per_pkg(alias, dir, name);
265 perf_pmu__parse_snapshot(alias, dir, name);
266 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100267
Andi Kleen08e60ed2016-09-15 15:24:43 -0700268 alias->desc = desc ? strdup(desc) : NULL;
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700269 alias->long_desc = long_desc ? strdup(long_desc) :
270 desc ? strdup(desc) : NULL;
Andi Kleendd5f1032016-09-15 15:24:50 -0700271 alias->topic = topic ? strdup(topic) : NULL;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800272 if (unit) {
273 if (convert_scale(unit, &unit, &alias->scale) < 0)
274 return -1;
275 snprintf(alias->unit, sizeof(alias->unit), "%s", unit);
276 }
277 alias->per_pkg = perpkg && sscanf(perpkg, "%d", &num) == 1 && num == 1;
Andi Kleenf2361022017-01-27 18:03:40 -0800278 alias->str = strdup(val);
279
Zheng Yana6146d52012-06-15 14:31:41 +0800280 list_add_tail(&alias->list, list);
Stephane Eranian410136f2013-11-12 17:58:49 +0100281
Zheng Yana6146d52012-06-15 14:31:41 +0800282 return 0;
283}
284
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700285static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
286{
287 char buf[256];
288 int ret;
289
290 ret = fread(buf, 1, sizeof(buf), file);
291 if (ret == 0)
292 return -EINVAL;
293
294 buf[ret] = 0;
295
Andi Kleenfedb2b52017-01-27 18:03:37 -0800296 return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL, NULL, NULL,
297 NULL);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700298}
299
Matt Fleming46441bd2014-09-24 15:04:06 +0100300static inline bool pmu_alias_info_file(char *name)
301{
302 size_t len;
303
304 len = strlen(name);
305 if (len > 5 && !strcmp(name + len - 5, ".unit"))
306 return true;
307 if (len > 6 && !strcmp(name + len - 6, ".scale"))
308 return true;
Matt Fleming044330c2014-11-21 10:31:12 +0100309 if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
310 return true;
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100311 if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
312 return true;
Matt Fleming46441bd2014-09-24 15:04:06 +0100313
314 return false;
315}
316
Zheng Yana6146d52012-06-15 14:31:41 +0800317/*
318 * Process all the sysfs attributes located under the directory
319 * specified in 'dir' parameter.
320 */
321static int pmu_aliases_parse(char *dir, struct list_head *head)
322{
323 struct dirent *evt_ent;
324 DIR *event_dir;
Zheng Yana6146d52012-06-15 14:31:41 +0800325
326 event_dir = opendir(dir);
327 if (!event_dir)
328 return -EINVAL;
329
Andi Kleen940db6d2016-02-17 14:44:55 -0800330 while ((evt_ent = readdir(event_dir))) {
Zheng Yana6146d52012-06-15 14:31:41 +0800331 char path[PATH_MAX];
332 char *name = evt_ent->d_name;
333 FILE *file;
334
335 if (!strcmp(name, ".") || !strcmp(name, ".."))
336 continue;
337
Stephane Eranian410136f2013-11-12 17:58:49 +0100338 /*
Matt Fleming46441bd2014-09-24 15:04:06 +0100339 * skip info files parsed in perf_pmu__new_alias()
Stephane Eranian410136f2013-11-12 17:58:49 +0100340 */
Matt Fleming46441bd2014-09-24 15:04:06 +0100341 if (pmu_alias_info_file(name))
Stephane Eranian410136f2013-11-12 17:58:49 +0100342 continue;
343
Zheng Yana6146d52012-06-15 14:31:41 +0800344 snprintf(path, PATH_MAX, "%s/%s", dir, name);
345
Zheng Yana6146d52012-06-15 14:31:41 +0800346 file = fopen(path, "r");
Andi Kleen940db6d2016-02-17 14:44:55 -0800347 if (!file) {
348 pr_debug("Cannot open %s\n", path);
349 continue;
350 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100351
Andi Kleen940db6d2016-02-17 14:44:55 -0800352 if (perf_pmu__new_alias(head, dir, name, file) < 0)
353 pr_debug("Cannot set up %s\n", name);
Zheng Yana6146d52012-06-15 14:31:41 +0800354 fclose(file);
355 }
356
357 closedir(event_dir);
Andi Kleen940db6d2016-02-17 14:44:55 -0800358 return 0;
Zheng Yana6146d52012-06-15 14:31:41 +0800359}
360
361/*
362 * Reading the pmu event aliases definition, which should be located at:
363 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
364 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300365static int pmu_aliases(const char *name, struct list_head *head)
Zheng Yana6146d52012-06-15 14:31:41 +0800366{
367 struct stat st;
368 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300369 const char *sysfs = sysfs__mountpoint();
Zheng Yana6146d52012-06-15 14:31:41 +0800370
Zheng Yana6146d52012-06-15 14:31:41 +0800371 if (!sysfs)
372 return -1;
373
374 snprintf(path, PATH_MAX,
375 "%s/bus/event_source/devices/%s/events", sysfs, name);
376
377 if (stat(path, &st) < 0)
Jiri Olsa3fded962012-10-10 14:53:16 +0200378 return 0; /* no error if 'events' does not exist */
Zheng Yana6146d52012-06-15 14:31:41 +0800379
380 if (pmu_aliases_parse(path, head))
381 return -1;
382
383 return 0;
384}
385
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300386static int pmu_alias_terms(struct perf_pmu_alias *alias,
Zheng Yana6146d52012-06-15 14:31:41 +0800387 struct list_head *terms)
388{
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200389 struct parse_events_term *term, *cloned;
Zheng Yana6146d52012-06-15 14:31:41 +0800390 LIST_HEAD(list);
391 int ret;
392
393 list_for_each_entry(term, &alias->terms, list) {
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200394 ret = parse_events_term__clone(&cloned, term);
Zheng Yana6146d52012-06-15 14:31:41 +0800395 if (ret) {
Arnaldo Carvalho de Melo682dc242016-02-12 16:48:00 -0300396 parse_events_terms__purge(&list);
Zheng Yana6146d52012-06-15 14:31:41 +0800397 return ret;
398 }
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200399 list_add_tail(&cloned->list, &list);
Zheng Yana6146d52012-06-15 14:31:41 +0800400 }
401 list_splice(&list, terms);
402 return 0;
403}
404
Jiri Olsacd82a322012-03-15 20:09:17 +0100405/*
406 * Reading/parsing the default pmu type value, which should be
407 * located at:
408 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
409 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300410static int pmu_type(const char *name, __u32 *type)
Jiri Olsacd82a322012-03-15 20:09:17 +0100411{
412 struct stat st;
413 char path[PATH_MAX];
Jiri Olsacd82a322012-03-15 20:09:17 +0100414 FILE *file;
415 int ret = 0;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300416 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +0100417
Jiri Olsacd82a322012-03-15 20:09:17 +0100418 if (!sysfs)
419 return -1;
420
421 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +0200422 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100423
424 if (stat(path, &st) < 0)
425 return -1;
426
427 file = fopen(path, "r");
428 if (!file)
429 return -EINVAL;
430
431 if (1 != fscanf(file, "%u", type))
432 ret = -1;
433
434 fclose(file);
435 return ret;
436}
437
Robert Richter50a96672012-08-16 21:10:24 +0200438/* Add all pmus in sysfs to pmu list: */
439static void pmu_read_sysfs(void)
440{
441 char path[PATH_MAX];
Robert Richter50a96672012-08-16 21:10:24 +0200442 DIR *dir;
443 struct dirent *dent;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300444 const char *sysfs = sysfs__mountpoint();
Robert Richter50a96672012-08-16 21:10:24 +0200445
Robert Richter50a96672012-08-16 21:10:24 +0200446 if (!sysfs)
447 return;
448
449 snprintf(path, PATH_MAX,
450 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
451
452 dir = opendir(path);
453 if (!dir)
454 return;
455
456 while ((dent = readdir(dir))) {
457 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
458 continue;
459 /* add to static LIST_HEAD(pmus): */
460 perf_pmu__find(dent->d_name);
461 }
462
463 closedir(dir);
464}
465
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300466static struct cpu_map *pmu_cpumask(const char *name)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800467{
468 struct stat st;
469 char path[PATH_MAX];
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800470 FILE *file;
471 struct cpu_map *cpus;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300472 const char *sysfs = sysfs__mountpoint();
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100473 const char *templates[] = {
474 "%s/bus/event_source/devices/%s/cpumask",
475 "%s/bus/event_source/devices/%s/cpus",
476 NULL
477 };
478 const char **template;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800479
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800480 if (!sysfs)
481 return NULL;
482
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100483 for (template = templates; *template; template++) {
484 snprintf(path, PATH_MAX, *template, sysfs, name);
485 if (stat(path, &st) == 0)
486 break;
487 }
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800488
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100489 if (!*template)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800490 return NULL;
491
492 file = fopen(path, "r");
493 if (!file)
494 return NULL;
495
496 cpus = cpu_map__read(file);
497 fclose(file);
498 return cpus;
499}
500
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700501/*
502 * Return the CPU id as a raw string.
503 *
504 * Each architecture should provide a more precise id string that
505 * can be use to match the architecture's "mapfile".
506 */
507char * __weak get_cpuid_str(void)
508{
509 return NULL;
510}
511
512/*
513 * From the pmu_events_map, find the table of PMU events that corresponds
514 * to the current running CPU. Then, add all PMU events from that table
515 * as aliases.
516 */
Andi Kleenfedb2b52017-01-27 18:03:37 -0800517static void pmu_add_cpu_aliases(struct list_head *head, const char *name)
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700518{
519 int i;
520 struct pmu_events_map *map;
521 struct pmu_event *pe;
522 char *cpuid;
Andi Kleenfb967062016-10-13 14:15:24 -0700523 static bool printed;
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700524
Andi Kleenfc06e2a2016-09-15 15:24:46 -0700525 cpuid = getenv("PERF_CPUID");
526 if (cpuid)
527 cpuid = strdup(cpuid);
528 if (!cpuid)
529 cpuid = get_cpuid_str();
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700530 if (!cpuid)
531 return;
532
Andi Kleenfb967062016-10-13 14:15:24 -0700533 if (!printed) {
534 pr_debug("Using CPUID %s\n", cpuid);
535 printed = true;
536 }
Andi Kleenfc06e2a2016-09-15 15:24:46 -0700537
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700538 i = 0;
539 while (1) {
540 map = &pmu_events_map[i++];
541 if (!map->table)
542 goto out;
543
544 if (!strcmp(map->cpuid, cpuid))
545 break;
546 }
547
548 /*
549 * Found a matching PMU events table. Create aliases
550 */
551 i = 0;
552 while (1) {
Andi Kleenfedb2b52017-01-27 18:03:37 -0800553 const char *pname;
554
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700555 pe = &map->table[i++];
556 if (!pe->name)
557 break;
558
Andi Kleenfedb2b52017-01-27 18:03:37 -0800559 pname = pe->pmu ? pe->pmu : "cpu";
560 if (strncmp(pname, name, strlen(pname)))
561 continue;
562
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700563 /* need type casts to override 'const' */
564 __perf_pmu__new_alias(head, NULL, (char *)pe->name,
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700565 (char *)pe->desc, (char *)pe->event,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800566 (char *)pe->long_desc, (char *)pe->topic,
567 (char *)pe->unit, (char *)pe->perpkg);
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700568 }
569
570out:
571 free(cpuid);
572}
573
Sukadev Bhattiproluc5de47f2015-06-10 00:25:07 -0700574struct perf_event_attr * __weak
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300575perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
576{
577 return NULL;
578}
579
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300580static struct perf_pmu *pmu_lookup(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100581{
582 struct perf_pmu *pmu;
583 LIST_HEAD(format);
Zheng Yana6146d52012-06-15 14:31:41 +0800584 LIST_HEAD(aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100585 __u32 type;
586
587 /*
588 * The pmu data we store & need consists of the pmu
589 * type value and format definitions. Load both right
590 * now.
591 */
592 if (pmu_format(name, &format))
593 return NULL;
594
Andi Kleen15b22ed2017-01-27 18:03:38 -0800595 /*
596 * Check the type first to avoid unnecessary work.
597 */
598 if (pmu_type(name, &type))
599 return NULL;
600
Jiri Olsa3fded962012-10-10 14:53:16 +0200601 if (pmu_aliases(name, &aliases))
602 return NULL;
603
Andi Kleenfedb2b52017-01-27 18:03:37 -0800604 pmu_add_cpu_aliases(&aliases, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100605 pmu = zalloc(sizeof(*pmu));
606 if (!pmu)
607 return NULL;
608
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800609 pmu->cpus = pmu_cpumask(name);
610
Jiri Olsacd82a322012-03-15 20:09:17 +0100611 INIT_LIST_HEAD(&pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800612 INIT_LIST_HEAD(&pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100613 list_splice(&format, &pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800614 list_splice(&aliases, &pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100615 pmu->name = strdup(name);
616 pmu->type = type;
Robert Richter9bc8f9f2012-06-14 22:38:37 +0200617 list_add_tail(&pmu->list, &pmus);
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300618
619 pmu->default_config = perf_pmu__get_default_config(pmu);
620
Jiri Olsacd82a322012-03-15 20:09:17 +0100621 return pmu;
622}
623
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300624static struct perf_pmu *pmu_find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100625{
626 struct perf_pmu *pmu;
627
628 list_for_each_entry(pmu, &pmus, list)
629 if (!strcmp(pmu->name, name))
630 return pmu;
631
632 return NULL;
633}
634
Robert Richter50a96672012-08-16 21:10:24 +0200635struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
636{
637 /*
638 * pmu iterator: If pmu is NULL, we start at the begin,
639 * otherwise return the next pmu. Returns NULL on end.
640 */
641 if (!pmu) {
642 pmu_read_sysfs();
643 pmu = list_prepare_entry(pmu, &pmus, list);
644 }
645 list_for_each_entry_continue(pmu, &pmus, list)
646 return pmu;
647 return NULL;
648}
649
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300650struct perf_pmu *perf_pmu__find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100651{
652 struct perf_pmu *pmu;
653
654 /*
655 * Once PMU is loaded it stays in the list,
656 * so we keep us from multiple reading/parsing
657 * the pmu format definitions.
658 */
659 pmu = pmu_find(name);
660 if (pmu)
661 return pmu;
662
663 return pmu_lookup(name);
664}
665
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300666static struct perf_pmu_format *
Adrian Hunter09ff6072015-07-17 19:33:49 +0300667pmu_find_format(struct list_head *formats, const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100668{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300669 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100670
671 list_for_each_entry(format, formats, list)
672 if (!strcmp(format->name, name))
673 return format;
674
675 return NULL;
676}
677
Adrian Hunter09ff6072015-07-17 19:33:49 +0300678__u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
679{
680 struct perf_pmu_format *format = pmu_find_format(formats, name);
681 __u64 bits = 0;
682 int fbit;
683
684 if (!format)
685 return 0;
686
687 for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
688 bits |= 1ULL << fbit;
689
690 return bits;
691}
692
Jiri Olsacd82a322012-03-15 20:09:17 +0100693/*
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300694 * Sets value based on the format definition (format parameter)
Jiri Olsacd82a322012-03-15 20:09:17 +0100695 * and unformated value (value parameter).
Jiri Olsacd82a322012-03-15 20:09:17 +0100696 */
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300697static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
698 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100699{
700 unsigned long fbit, vbit;
Jiri Olsacd82a322012-03-15 20:09:17 +0100701
702 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
703
704 if (!test_bit(fbit, format))
705 continue;
706
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300707 if (value & (1llu << vbit++))
708 *v |= (1llu << fbit);
709 else if (zero)
710 *v &= ~(1llu << fbit);
Jiri Olsacd82a322012-03-15 20:09:17 +0100711 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100712}
713
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300714static __u64 pmu_format_max_value(const unsigned long *format)
715{
Kan Liangac0e2cd2016-03-30 12:16:15 -0700716 __u64 w = 0;
717 int fbit;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300718
Kan Liangac0e2cd2016-03-30 12:16:15 -0700719 for_each_set_bit(fbit, format, PERF_PMU_FORMAT_BITS)
720 w |= (1ULL << fbit);
721
722 return w;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300723}
724
Jiri Olsacd82a322012-03-15 20:09:17 +0100725/*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800726 * Term is a string term, and might be a param-term. Try to look up it's value
727 * in the remaining terms.
728 * - We have a term like "base-or-format-term=param-term",
729 * - We need to find the value supplied for "param-term" (with param-term named
730 * in a config string) later on in the term list.
731 */
732static int pmu_resolve_param_term(struct parse_events_term *term,
733 struct list_head *head_terms,
734 __u64 *value)
735{
736 struct parse_events_term *t;
737
738 list_for_each_entry(t, head_terms, list) {
739 if (t->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
740 if (!strcmp(t->config, term->config)) {
741 t->used = true;
742 *value = t->val.num;
743 return 0;
744 }
745 }
746 }
747
748 if (verbose)
749 printf("Required parameter '%s' not specified\n", term->config);
750
751 return -1;
752}
753
He Kuangffeb8832015-09-28 03:52:14 +0000754static char *pmu_formats_string(struct list_head *formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200755{
756 struct perf_pmu_format *format;
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900757 char *str = NULL;
758 struct strbuf buf = STRBUF_INIT;
Jiri Olsae64b0202015-04-22 21:10:21 +0200759 unsigned i = 0;
760
He Kuangffeb8832015-09-28 03:52:14 +0000761 if (!formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200762 return NULL;
763
764 /* sysfs exported terms */
He Kuangffeb8832015-09-28 03:52:14 +0000765 list_for_each_entry(format, formats, list)
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900766 if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
767 goto error;
Jiri Olsae64b0202015-04-22 21:10:21 +0200768
He Kuangffeb8832015-09-28 03:52:14 +0000769 str = strbuf_detach(&buf, NULL);
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900770error:
He Kuangffeb8832015-09-28 03:52:14 +0000771 strbuf_release(&buf);
Jiri Olsae64b0202015-04-22 21:10:21 +0200772
Jiri Olsae64b0202015-04-22 21:10:21 +0200773 return str;
Jiri Olsae64b0202015-04-22 21:10:21 +0200774}
775
Cody P Schafer688d4df2015-01-07 17:13:50 -0800776/*
Jiri Olsacd82a322012-03-15 20:09:17 +0100777 * Setup one of config[12] attr members based on the
Cody P Schafer88aca8d2014-01-08 08:43:51 -0800778 * user input data - term parameter.
Jiri Olsacd82a322012-03-15 20:09:17 +0100779 */
780static int pmu_config_term(struct list_head *formats,
781 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300782 struct parse_events_term *term,
Cody P Schafer688d4df2015-01-07 17:13:50 -0800783 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +0200784 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100785{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300786 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100787 __u64 *vp;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300788 __u64 val, max_val;
Jiri Olsacd82a322012-03-15 20:09:17 +0100789
790 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800791 * If this is a parameter we've already used for parameterized-eval,
792 * skip it in normal eval.
793 */
794 if (term->used)
795 return 0;
796
797 /*
Jiri Olsacd82a322012-03-15 20:09:17 +0100798 * Hardcoded terms should be already in, so nothing
799 * to be done for them.
800 */
801 if (parse_events__is_hardcoded_term(term))
802 return 0;
803
Jiri Olsacd82a322012-03-15 20:09:17 +0100804 format = pmu_find_format(formats, term->config);
Cody P Schafer688d4df2015-01-07 17:13:50 -0800805 if (!format) {
806 if (verbose)
807 printf("Invalid event/parameter '%s'\n", term->config);
Jiri Olsae64b0202015-04-22 21:10:21 +0200808 if (err) {
He Kuangffeb8832015-09-28 03:52:14 +0000809 char *pmu_term = pmu_formats_string(formats);
810
Jiri Olsae64b0202015-04-22 21:10:21 +0200811 err->idx = term->err_term;
812 err->str = strdup("unknown term");
He Kuangffeb8832015-09-28 03:52:14 +0000813 err->help = parse_events_formats_error_string(pmu_term);
814 free(pmu_term);
Jiri Olsae64b0202015-04-22 21:10:21 +0200815 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100816 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -0800817 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100818
819 switch (format->value) {
820 case PERF_PMU_FORMAT_VALUE_CONFIG:
821 vp = &attr->config;
822 break;
823 case PERF_PMU_FORMAT_VALUE_CONFIG1:
824 vp = &attr->config1;
825 break;
826 case PERF_PMU_FORMAT_VALUE_CONFIG2:
827 vp = &attr->config2;
828 break;
829 default:
830 return -EINVAL;
831 }
832
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200833 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800834 * Either directly use a numeric term, or try to translate string terms
835 * using event parameters.
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200836 */
Cody P Schafer688d4df2015-01-07 17:13:50 -0800837 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM)
838 val = term->val.num;
839 else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
840 if (strcmp(term->val.str, "?")) {
Jiri Olsae64b0202015-04-22 21:10:21 +0200841 if (verbose) {
Cody P Schafer688d4df2015-01-07 17:13:50 -0800842 pr_info("Invalid sysfs entry %s=%s\n",
843 term->config, term->val.str);
Jiri Olsae64b0202015-04-22 21:10:21 +0200844 }
845 if (err) {
846 err->idx = term->err_val;
847 err->str = strdup("expected numeric value");
848 }
Cody P Schafer688d4df2015-01-07 17:13:50 -0800849 return -EINVAL;
850 }
851
852 if (pmu_resolve_param_term(term, head_terms, &val))
853 return -EINVAL;
854 } else
855 return -EINVAL;
856
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300857 max_val = pmu_format_max_value(format->bits);
858 if (val > max_val) {
859 if (err) {
860 err->idx = term->err_val;
861 if (asprintf(&err->str,
862 "value too big for format, maximum is %llu",
863 (unsigned long long)max_val) < 0)
864 err->str = strdup("value too big for format");
865 return -EINVAL;
866 }
867 /*
868 * Assume we don't care if !err, in which case the value will be
869 * silently truncated.
870 */
871 }
872
Cody P Schafer688d4df2015-01-07 17:13:50 -0800873 pmu_format_value(format->bits, val, vp, zero);
Jiri Olsacd82a322012-03-15 20:09:17 +0100874 return 0;
875}
876
Jiri Olsacff7f952012-11-10 01:46:50 +0100877int perf_pmu__config_terms(struct list_head *formats,
878 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300879 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +0200880 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100881{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300882 struct parse_events_term *term;
Jiri Olsacd82a322012-03-15 20:09:17 +0100883
Cody P Schafer688d4df2015-01-07 17:13:50 -0800884 list_for_each_entry(term, head_terms, list) {
Jiri Olsae64b0202015-04-22 21:10:21 +0200885 if (pmu_config_term(formats, attr, term, head_terms,
886 zero, err))
Jiri Olsacd82a322012-03-15 20:09:17 +0100887 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -0800888 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100889
890 return 0;
891}
892
893/*
894 * Configures event's 'attr' parameter based on the:
895 * 1) users input - specified in terms parameter
896 * 2) pmu format definitions - specified by pmu parameter
897 */
898int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
Jiri Olsae64b0202015-04-22 21:10:21 +0200899 struct list_head *head_terms,
900 struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100901{
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300902 bool zero = !!pmu->default_config;
903
Jiri Olsacd82a322012-03-15 20:09:17 +0100904 attr->type = pmu->type;
Jiri Olsae64b0202015-04-22 21:10:21 +0200905 return perf_pmu__config_terms(&pmu->format, attr, head_terms,
906 zero, err);
Jiri Olsacd82a322012-03-15 20:09:17 +0100907}
908
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300909static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
910 struct parse_events_term *term)
Zheng Yana6146d52012-06-15 14:31:41 +0800911{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300912 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800913 char *name;
914
915 if (parse_events__is_hardcoded_term(term))
916 return NULL;
917
918 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
919 if (term->val.num != 1)
920 return NULL;
921 if (pmu_find_format(&pmu->format, term->config))
922 return NULL;
923 name = term->config;
924 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
925 if (strcasecmp(term->config, "event"))
926 return NULL;
927 name = term->val.str;
928 } else {
929 return NULL;
930 }
931
932 list_for_each_entry(alias, &pmu->aliases, list) {
933 if (!strcasecmp(alias->name, name))
934 return alias;
935 }
936 return NULL;
937}
938
Stephane Eranian410136f2013-11-12 17:58:49 +0100939
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100940static int check_info_data(struct perf_pmu_alias *alias,
941 struct perf_pmu_info *info)
Stephane Eranian410136f2013-11-12 17:58:49 +0100942{
943 /*
944 * Only one term in event definition can
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100945 * define unit, scale and snapshot, fail
946 * if there's more than one.
Stephane Eranian410136f2013-11-12 17:58:49 +0100947 */
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -0300948 if ((info->unit && alias->unit[0]) ||
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100949 (info->scale && alias->scale) ||
950 (info->snapshot && alias->snapshot))
Stephane Eranian410136f2013-11-12 17:58:49 +0100951 return -EINVAL;
952
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -0300953 if (alias->unit[0])
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100954 info->unit = alias->unit;
Stephane Eranian410136f2013-11-12 17:58:49 +0100955
956 if (alias->scale)
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100957 info->scale = alias->scale;
958
959 if (alias->snapshot)
960 info->snapshot = alias->snapshot;
Stephane Eranian410136f2013-11-12 17:58:49 +0100961
962 return 0;
963}
964
Zheng Yana6146d52012-06-15 14:31:41 +0800965/*
966 * Find alias in the terms list and replace it with the terms
967 * defined for the alias
968 */
Stephane Eranian410136f2013-11-12 17:58:49 +0100969int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
Matt Fleming46441bd2014-09-24 15:04:06 +0100970 struct perf_pmu_info *info)
Zheng Yana6146d52012-06-15 14:31:41 +0800971{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300972 struct parse_events_term *term, *h;
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300973 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800974 int ret;
975
Matt Fleming044330c2014-11-21 10:31:12 +0100976 info->per_pkg = false;
977
Stephane Eranian8a398892014-01-17 16:34:05 +0100978 /*
979 * Mark unit and scale as not set
980 * (different from default values, see below)
981 */
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100982 info->unit = NULL;
983 info->scale = 0.0;
984 info->snapshot = false;
Stephane Eranian410136f2013-11-12 17:58:49 +0100985
Zheng Yana6146d52012-06-15 14:31:41 +0800986 list_for_each_entry_safe(term, h, head_terms, list) {
987 alias = pmu_find_alias(pmu, term);
988 if (!alias)
989 continue;
990 ret = pmu_alias_terms(alias, &term->list);
991 if (ret)
992 return ret;
Stephane Eranian410136f2013-11-12 17:58:49 +0100993
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100994 ret = check_info_data(alias, info);
Stephane Eranian410136f2013-11-12 17:58:49 +0100995 if (ret)
996 return ret;
997
Matt Fleming044330c2014-11-21 10:31:12 +0100998 if (alias->per_pkg)
999 info->per_pkg = true;
1000
Zheng Yana6146d52012-06-15 14:31:41 +08001001 list_del(&term->list);
1002 free(term);
1003 }
Stephane Eranian8a398892014-01-17 16:34:05 +01001004
1005 /*
1006 * if no unit or scale foundin aliases, then
1007 * set defaults as for evsel
1008 * unit cannot left to NULL
1009 */
Matt Fleming46441bd2014-09-24 15:04:06 +01001010 if (info->unit == NULL)
1011 info->unit = "";
Stephane Eranian8a398892014-01-17 16:34:05 +01001012
Matt Fleming46441bd2014-09-24 15:04:06 +01001013 if (info->scale == 0.0)
1014 info->scale = 1.0;
Stephane Eranian8a398892014-01-17 16:34:05 +01001015
Zheng Yana6146d52012-06-15 14:31:41 +08001016 return 0;
1017}
1018
Jiri Olsacd82a322012-03-15 20:09:17 +01001019int perf_pmu__new_format(struct list_head *list, char *name,
1020 int config, unsigned long *bits)
1021{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001022 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +01001023
1024 format = zalloc(sizeof(*format));
1025 if (!format)
1026 return -ENOMEM;
1027
1028 format->name = strdup(name);
1029 format->value = config;
1030 memcpy(format->bits, bits, sizeof(format->bits));
1031
1032 list_add_tail(&format->list, list);
1033 return 0;
1034}
1035
1036void perf_pmu__set_format(unsigned long *bits, long from, long to)
1037{
1038 long b;
1039
1040 if (!to)
1041 to = from;
1042
Sukadev Bhattiprolu15268132013-01-17 09:11:30 -08001043 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
Jiri Olsacd82a322012-03-15 20:09:17 +01001044 for (b = from; b <= to; b++)
1045 set_bit(b, bits);
1046}
Andi Kleendc098b32013-04-20 11:02:29 -07001047
Cody P Schaferaaea3612015-01-07 17:13:51 -08001048static int sub_non_neg(int a, int b)
1049{
1050 if (b > a)
1051 return 0;
1052 return a - b;
1053}
1054
Andi Kleendc098b32013-04-20 11:02:29 -07001055static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
1056 struct perf_pmu_alias *alias)
1057{
Cody P Schaferaaea3612015-01-07 17:13:51 -08001058 struct parse_events_term *term;
1059 int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1060
1061 list_for_each_entry(term, &alias->terms, list) {
1062 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
1063 used += snprintf(buf + used, sub_non_neg(len, used),
1064 ",%s=%s", term->config,
1065 term->val.str);
1066 }
1067
1068 if (sub_non_neg(len, used) > 0) {
1069 buf[used] = '/';
1070 used++;
1071 }
1072 if (sub_non_neg(len, used) > 0) {
1073 buf[used] = '\0';
1074 used++;
1075 } else
1076 buf[len - 1] = '\0';
1077
Andi Kleendc098b32013-04-20 11:02:29 -07001078 return buf;
1079}
1080
1081static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
1082 struct perf_pmu_alias *alias)
1083{
1084 snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
1085 return buf;
1086}
1087
Andi Kleendd5f1032016-09-15 15:24:50 -07001088struct sevent {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001089 char *name;
1090 char *desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001091 char *topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001092 char *str;
1093 char *pmu;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001094};
1095
Andi Kleendd5f1032016-09-15 15:24:50 -07001096static int cmp_sevent(const void *a, const void *b)
Andi Kleendc098b32013-04-20 11:02:29 -07001097{
Andi Kleendd5f1032016-09-15 15:24:50 -07001098 const struct sevent *as = a;
1099 const struct sevent *bs = b;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001100
1101 /* Put extra events last */
1102 if (!!as->desc != !!bs->desc)
1103 return !!as->desc - !!bs->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001104 if (as->topic && bs->topic) {
1105 int n = strcmp(as->topic, bs->topic);
1106
1107 if (n)
1108 return n;
1109 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001110 return strcmp(as->name, bs->name);
1111}
1112
1113static void wordwrap(char *s, int start, int max, int corr)
1114{
1115 int column = start;
1116 int n;
1117
1118 while (*s) {
1119 int wlen = strcspn(s, " \t");
1120
1121 if (column + wlen >= max && column > start) {
1122 printf("\n%*s", start, "");
1123 column = start + corr;
1124 }
1125 n = printf("%s%.*s", column > start ? " " : "", wlen, s);
1126 if (n <= 0)
1127 break;
1128 s += wlen;
1129 column += n;
1130 while (isspace(*s))
1131 s++;
1132 }
Andi Kleendc098b32013-04-20 11:02:29 -07001133}
1134
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001135void print_pmu_events(const char *event_glob, bool name_only, bool quiet_flag,
1136 bool long_desc)
Andi Kleendc098b32013-04-20 11:02:29 -07001137{
1138 struct perf_pmu *pmu;
1139 struct perf_pmu_alias *alias;
1140 char buf[1024];
1141 int printed = 0;
1142 int len, j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001143 struct sevent *aliases;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001144 int numdesc = 0;
Andi Kleen61eb2eb2016-09-15 15:24:44 -07001145 int columns = pager_get_columns();
Andi Kleendd5f1032016-09-15 15:24:50 -07001146 char *topic = NULL;
Andi Kleendc098b32013-04-20 11:02:29 -07001147
1148 pmu = NULL;
1149 len = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001150 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001151 list_for_each_entry(alias, &pmu->aliases, list)
1152 len++;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001153 if (pmu->selectable)
1154 len++;
1155 }
Andi Kleendd5f1032016-09-15 15:24:50 -07001156 aliases = zalloc(sizeof(struct sevent) * len);
Andi Kleendc098b32013-04-20 11:02:29 -07001157 if (!aliases)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001158 goto out_enomem;
Andi Kleendc098b32013-04-20 11:02:29 -07001159 pmu = NULL;
1160 j = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001161 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001162 list_for_each_entry(alias, &pmu->aliases, list) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001163 char *name = alias->desc ? alias->name :
1164 format_alias(buf, sizeof(buf), pmu, alias);
Andi Kleendc098b32013-04-20 11:02:29 -07001165 bool is_cpu = !strcmp(pmu->name, "cpu");
1166
1167 if (event_glob != NULL &&
Andi Kleen38d14f02016-10-19 10:50:01 -07001168 !(strglobmatch_nocase(name, event_glob) ||
1169 (!is_cpu && strglobmatch_nocase(alias->name,
Andi Kleen67bdc352016-10-19 11:45:23 -07001170 event_glob)) ||
1171 (alias->topic &&
1172 strglobmatch_nocase(alias->topic, event_glob))))
Andi Kleendc098b32013-04-20 11:02:29 -07001173 continue;
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001174
Andi Kleen08e60ed2016-09-15 15:24:43 -07001175 if (is_cpu && !name_only && !alias->desc)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001176 name = format_alias_or(buf, sizeof(buf), pmu, alias);
1177
Andi Kleen08e60ed2016-09-15 15:24:43 -07001178 aliases[j].name = name;
1179 if (is_cpu && !name_only && !alias->desc)
1180 aliases[j].name = format_alias_or(buf,
1181 sizeof(buf),
1182 pmu, alias);
1183 aliases[j].name = strdup(aliases[j].name);
1184 if (!aliases[j].name)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001185 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001186
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001187 aliases[j].desc = long_desc ? alias->long_desc :
1188 alias->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001189 aliases[j].topic = alias->topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001190 aliases[j].str = alias->str;
1191 aliases[j].pmu = pmu->name;
Andi Kleendc098b32013-04-20 11:02:29 -07001192 j++;
1193 }
Arnaldo Carvalho de Melofa52cea2015-10-02 15:28:16 -03001194 if (pmu->selectable &&
1195 (event_glob == NULL || strglobmatch(pmu->name, event_glob))) {
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001196 char *s;
1197 if (asprintf(&s, "%s//", pmu->name) < 0)
1198 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001199 aliases[j].name = s;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001200 j++;
1201 }
1202 }
Andi Kleendc098b32013-04-20 11:02:29 -07001203 len = j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001204 qsort(aliases, len, sizeof(struct sevent), cmp_sevent);
Andi Kleendc098b32013-04-20 11:02:29 -07001205 for (j = 0; j < len; j++) {
Andi Kleen15b22ed2017-01-27 18:03:38 -08001206 /* Skip duplicates */
1207 if (j > 0 && !strcmp(aliases[j].name, aliases[j - 1].name))
1208 continue;
Andi Kleendc098b32013-04-20 11:02:29 -07001209 if (name_only) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001210 printf("%s ", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001211 continue;
1212 }
Andi Kleen1c5f01f2016-09-15 15:24:45 -07001213 if (aliases[j].desc && !quiet_flag) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001214 if (numdesc++ == 0)
1215 printf("\n");
Andi Kleendd5f1032016-09-15 15:24:50 -07001216 if (aliases[j].topic && (!topic ||
1217 strcmp(topic, aliases[j].topic))) {
1218 printf("%s%s:\n", topic ? "\n" : "",
1219 aliases[j].topic);
1220 topic = aliases[j].topic;
1221 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001222 printf(" %-50s\n", aliases[j].name);
1223 printf("%*s", 8, "[");
1224 wordwrap(aliases[j].desc, 8, columns, 0);
1225 printf("]\n");
Andi Kleenf2361022017-01-27 18:03:40 -08001226 if (verbose)
1227 printf("%*s%s/%s/\n", 8, "", aliases[j].pmu, aliases[j].str);
Andi Kleen08e60ed2016-09-15 15:24:43 -07001228 } else
1229 printf(" %-50s [Kernel PMU event]\n", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001230 printed++;
1231 }
Arnaldo Carvalho de Melodfc431c2015-09-30 17:13:26 -03001232 if (printed && pager_in_use())
Andi Kleendc098b32013-04-20 11:02:29 -07001233 printf("\n");
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001234out_free:
1235 for (j = 0; j < len; j++)
Andi Kleen08e60ed2016-09-15 15:24:43 -07001236 zfree(&aliases[j].name);
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001237 zfree(&aliases);
1238 return;
1239
1240out_enomem:
1241 printf("FATAL: not enough memory to print PMU events\n");
1242 if (aliases)
1243 goto out_free;
Andi Kleendc098b32013-04-20 11:02:29 -07001244}
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001245
1246bool pmu_have_event(const char *pname, const char *name)
1247{
1248 struct perf_pmu *pmu;
1249 struct perf_pmu_alias *alias;
1250
1251 pmu = NULL;
1252 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1253 if (strcmp(pname, pmu->name))
1254 continue;
1255 list_for_each_entry(alias, &pmu->aliases, list)
1256 if (!strcmp(alias->name, name))
1257 return true;
1258 }
1259 return false;
1260}
Adrian Hunter7d4bdab2014-07-31 09:00:50 +03001261
1262static FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1263{
1264 struct stat st;
1265 char path[PATH_MAX];
1266 const char *sysfs;
1267
1268 sysfs = sysfs__mountpoint();
1269 if (!sysfs)
1270 return NULL;
1271
1272 snprintf(path, PATH_MAX,
1273 "%s" EVENT_SOURCE_DEVICE_PATH "%s/%s", sysfs, pmu->name, name);
1274
1275 if (stat(path, &st) < 0)
1276 return NULL;
1277
1278 return fopen(path, "r");
1279}
1280
1281int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1282 ...)
1283{
1284 va_list args;
1285 FILE *file;
1286 int ret = EOF;
1287
1288 va_start(args, fmt);
1289 file = perf_pmu__open_file(pmu, name);
1290 if (file) {
1291 ret = vfscanf(file, fmt, args);
1292 fclose(file);
1293 }
1294 va_end(args);
1295 return ret;
1296}