blob: 0f1133aa3253991256bb3062d2006a15ef3325fa [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,
Andi Kleen00636c32017-03-20 13:17:07 -0700234 char *unit, char *perpkg,
235 char *metric_expr)
Zheng Yana6146d52012-06-15 14:31:41 +0800236{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300237 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800238 int ret;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800239 int num;
Zheng Yana6146d52012-06-15 14:31:41 +0800240
Zheng Yana6146d52012-06-15 14:31:41 +0800241 alias = malloc(sizeof(*alias));
242 if (!alias)
243 return -ENOMEM;
244
245 INIT_LIST_HEAD(&alias->terms);
Stephane Eranian410136f2013-11-12 17:58:49 +0100246 alias->scale = 1.0;
247 alias->unit[0] = '\0';
Matt Fleming044330c2014-11-21 10:31:12 +0100248 alias->per_pkg = false;
Stephane Eranian84530922016-01-06 19:50:01 +0100249 alias->snapshot = false;
Stephane Eranian410136f2013-11-12 17:58:49 +0100250
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700251 ret = parse_events_terms(&alias->terms, val);
Zheng Yana6146d52012-06-15 14:31:41 +0800252 if (ret) {
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700253 pr_err("Cannot parse alias %s: %d\n", val, ret);
Zheng Yana6146d52012-06-15 14:31:41 +0800254 free(alias);
255 return ret;
256 }
257
258 alias->name = strdup(name);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700259 if (dir) {
260 /*
261 * load unit name and scale if available
262 */
263 perf_pmu__parse_unit(alias, dir, name);
264 perf_pmu__parse_scale(alias, dir, name);
265 perf_pmu__parse_per_pkg(alias, dir, name);
266 perf_pmu__parse_snapshot(alias, dir, name);
267 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100268
Andi Kleen00636c32017-03-20 13:17:07 -0700269 alias->metric_expr = metric_expr ? strdup(metric_expr) : NULL;
Andi Kleen08e60ed2016-09-15 15:24:43 -0700270 alias->desc = desc ? strdup(desc) : NULL;
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700271 alias->long_desc = long_desc ? strdup(long_desc) :
272 desc ? strdup(desc) : NULL;
Andi Kleendd5f1032016-09-15 15:24:50 -0700273 alias->topic = topic ? strdup(topic) : NULL;
Andi Kleenfedb2b52017-01-27 18:03:37 -0800274 if (unit) {
275 if (convert_scale(unit, &unit, &alias->scale) < 0)
276 return -1;
277 snprintf(alias->unit, sizeof(alias->unit), "%s", unit);
278 }
279 alias->per_pkg = perpkg && sscanf(perpkg, "%d", &num) == 1 && num == 1;
Andi Kleenf2361022017-01-27 18:03:40 -0800280 alias->str = strdup(val);
281
Zheng Yana6146d52012-06-15 14:31:41 +0800282 list_add_tail(&alias->list, list);
Stephane Eranian410136f2013-11-12 17:58:49 +0100283
Zheng Yana6146d52012-06-15 14:31:41 +0800284 return 0;
285}
286
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700287static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
288{
289 char buf[256];
290 int ret;
291
292 ret = fread(buf, 1, sizeof(buf), file);
293 if (ret == 0)
294 return -EINVAL;
295
296 buf[ret] = 0;
297
Andi Kleenfedb2b52017-01-27 18:03:37 -0800298 return __perf_pmu__new_alias(list, dir, name, NULL, buf, NULL, NULL, NULL,
Andi Kleen00636c32017-03-20 13:17:07 -0700299 NULL, NULL);
Sukadev Bhattiprolu70c646e2015-06-10 00:25:08 -0700300}
301
Matt Fleming46441bd2014-09-24 15:04:06 +0100302static inline bool pmu_alias_info_file(char *name)
303{
304 size_t len;
305
306 len = strlen(name);
307 if (len > 5 && !strcmp(name + len - 5, ".unit"))
308 return true;
309 if (len > 6 && !strcmp(name + len - 6, ".scale"))
310 return true;
Matt Fleming044330c2014-11-21 10:31:12 +0100311 if (len > 8 && !strcmp(name + len - 8, ".per-pkg"))
312 return true;
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100313 if (len > 9 && !strcmp(name + len - 9, ".snapshot"))
314 return true;
Matt Fleming46441bd2014-09-24 15:04:06 +0100315
316 return false;
317}
318
Zheng Yana6146d52012-06-15 14:31:41 +0800319/*
320 * Process all the sysfs attributes located under the directory
321 * specified in 'dir' parameter.
322 */
323static int pmu_aliases_parse(char *dir, struct list_head *head)
324{
325 struct dirent *evt_ent;
326 DIR *event_dir;
Zheng Yana6146d52012-06-15 14:31:41 +0800327
328 event_dir = opendir(dir);
329 if (!event_dir)
330 return -EINVAL;
331
Andi Kleen940db6d2016-02-17 14:44:55 -0800332 while ((evt_ent = readdir(event_dir))) {
Zheng Yana6146d52012-06-15 14:31:41 +0800333 char path[PATH_MAX];
334 char *name = evt_ent->d_name;
335 FILE *file;
336
337 if (!strcmp(name, ".") || !strcmp(name, ".."))
338 continue;
339
Stephane Eranian410136f2013-11-12 17:58:49 +0100340 /*
Matt Fleming46441bd2014-09-24 15:04:06 +0100341 * skip info files parsed in perf_pmu__new_alias()
Stephane Eranian410136f2013-11-12 17:58:49 +0100342 */
Matt Fleming46441bd2014-09-24 15:04:06 +0100343 if (pmu_alias_info_file(name))
Stephane Eranian410136f2013-11-12 17:58:49 +0100344 continue;
345
Zheng Yana6146d52012-06-15 14:31:41 +0800346 snprintf(path, PATH_MAX, "%s/%s", dir, name);
347
Zheng Yana6146d52012-06-15 14:31:41 +0800348 file = fopen(path, "r");
Andi Kleen940db6d2016-02-17 14:44:55 -0800349 if (!file) {
350 pr_debug("Cannot open %s\n", path);
351 continue;
352 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100353
Andi Kleen940db6d2016-02-17 14:44:55 -0800354 if (perf_pmu__new_alias(head, dir, name, file) < 0)
355 pr_debug("Cannot set up %s\n", name);
Zheng Yana6146d52012-06-15 14:31:41 +0800356 fclose(file);
357 }
358
359 closedir(event_dir);
Andi Kleen940db6d2016-02-17 14:44:55 -0800360 return 0;
Zheng Yana6146d52012-06-15 14:31:41 +0800361}
362
363/*
364 * Reading the pmu event aliases definition, which should be located at:
365 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
366 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300367static int pmu_aliases(const char *name, struct list_head *head)
Zheng Yana6146d52012-06-15 14:31:41 +0800368{
369 struct stat st;
370 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300371 const char *sysfs = sysfs__mountpoint();
Zheng Yana6146d52012-06-15 14:31:41 +0800372
Zheng Yana6146d52012-06-15 14:31:41 +0800373 if (!sysfs)
374 return -1;
375
376 snprintf(path, PATH_MAX,
377 "%s/bus/event_source/devices/%s/events", sysfs, name);
378
379 if (stat(path, &st) < 0)
Jiri Olsa3fded962012-10-10 14:53:16 +0200380 return 0; /* no error if 'events' does not exist */
Zheng Yana6146d52012-06-15 14:31:41 +0800381
382 if (pmu_aliases_parse(path, head))
383 return -1;
384
385 return 0;
386}
387
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300388static int pmu_alias_terms(struct perf_pmu_alias *alias,
Zheng Yana6146d52012-06-15 14:31:41 +0800389 struct list_head *terms)
390{
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200391 struct parse_events_term *term, *cloned;
Zheng Yana6146d52012-06-15 14:31:41 +0800392 LIST_HEAD(list);
393 int ret;
394
395 list_for_each_entry(term, &alias->terms, list) {
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200396 ret = parse_events_term__clone(&cloned, term);
Zheng Yana6146d52012-06-15 14:31:41 +0800397 if (ret) {
Arnaldo Carvalho de Melo682dc242016-02-12 16:48:00 -0300398 parse_events_terms__purge(&list);
Zheng Yana6146d52012-06-15 14:31:41 +0800399 return ret;
400 }
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200401 list_add_tail(&cloned->list, &list);
Zheng Yana6146d52012-06-15 14:31:41 +0800402 }
403 list_splice(&list, terms);
404 return 0;
405}
406
Jiri Olsacd82a322012-03-15 20:09:17 +0100407/*
408 * Reading/parsing the default pmu type value, which should be
409 * located at:
410 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
411 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300412static int pmu_type(const char *name, __u32 *type)
Jiri Olsacd82a322012-03-15 20:09:17 +0100413{
414 struct stat st;
415 char path[PATH_MAX];
Jiri Olsacd82a322012-03-15 20:09:17 +0100416 FILE *file;
417 int ret = 0;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300418 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +0100419
Jiri Olsacd82a322012-03-15 20:09:17 +0100420 if (!sysfs)
421 return -1;
422
423 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +0200424 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100425
426 if (stat(path, &st) < 0)
427 return -1;
428
429 file = fopen(path, "r");
430 if (!file)
431 return -EINVAL;
432
433 if (1 != fscanf(file, "%u", type))
434 ret = -1;
435
436 fclose(file);
437 return ret;
438}
439
Robert Richter50a96672012-08-16 21:10:24 +0200440/* Add all pmus in sysfs to pmu list: */
441static void pmu_read_sysfs(void)
442{
443 char path[PATH_MAX];
Robert Richter50a96672012-08-16 21:10:24 +0200444 DIR *dir;
445 struct dirent *dent;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300446 const char *sysfs = sysfs__mountpoint();
Robert Richter50a96672012-08-16 21:10:24 +0200447
Robert Richter50a96672012-08-16 21:10:24 +0200448 if (!sysfs)
449 return;
450
451 snprintf(path, PATH_MAX,
452 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
453
454 dir = opendir(path);
455 if (!dir)
456 return;
457
458 while ((dent = readdir(dir))) {
459 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
460 continue;
461 /* add to static LIST_HEAD(pmus): */
462 perf_pmu__find(dent->d_name);
463 }
464
465 closedir(dir);
466}
467
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300468static struct cpu_map *pmu_cpumask(const char *name)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800469{
470 struct stat st;
471 char path[PATH_MAX];
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800472 FILE *file;
473 struct cpu_map *cpus;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300474 const char *sysfs = sysfs__mountpoint();
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100475 const char *templates[] = {
476 "%s/bus/event_source/devices/%s/cpumask",
477 "%s/bus/event_source/devices/%s/cpus",
478 NULL
479 };
480 const char **template;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800481
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800482 if (!sysfs)
483 return NULL;
484
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100485 for (template = templates; *template; template++) {
486 snprintf(path, PATH_MAX, *template, sysfs, name);
487 if (stat(path, &st) == 0)
488 break;
489 }
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800490
Mark Rutland7e3fcffe2016-09-08 11:21:52 +0100491 if (!*template)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800492 return NULL;
493
494 file = fopen(path, "r");
495 if (!file)
496 return NULL;
497
498 cpus = cpu_map__read(file);
499 fclose(file);
500 return cpus;
501}
502
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700503/*
504 * Return the CPU id as a raw string.
505 *
506 * Each architecture should provide a more precise id string that
507 * can be use to match the architecture's "mapfile".
508 */
509char * __weak get_cpuid_str(void)
510{
511 return NULL;
512}
513
514/*
515 * From the pmu_events_map, find the table of PMU events that corresponds
516 * to the current running CPU. Then, add all PMU events from that table
517 * as aliases.
518 */
Andi Kleenfedb2b52017-01-27 18:03:37 -0800519static void pmu_add_cpu_aliases(struct list_head *head, const char *name)
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700520{
521 int i;
522 struct pmu_events_map *map;
523 struct pmu_event *pe;
524 char *cpuid;
Andi Kleenfb967062016-10-13 14:15:24 -0700525 static bool printed;
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700526
Andi Kleenfc06e2a2016-09-15 15:24:46 -0700527 cpuid = getenv("PERF_CPUID");
528 if (cpuid)
529 cpuid = strdup(cpuid);
530 if (!cpuid)
531 cpuid = get_cpuid_str();
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700532 if (!cpuid)
533 return;
534
Andi Kleenfb967062016-10-13 14:15:24 -0700535 if (!printed) {
536 pr_debug("Using CPUID %s\n", cpuid);
537 printed = true;
538 }
Andi Kleenfc06e2a2016-09-15 15:24:46 -0700539
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700540 i = 0;
541 while (1) {
542 map = &pmu_events_map[i++];
543 if (!map->table)
544 goto out;
545
546 if (!strcmp(map->cpuid, cpuid))
547 break;
548 }
549
550 /*
551 * Found a matching PMU events table. Create aliases
552 */
553 i = 0;
554 while (1) {
Andi Kleenfedb2b52017-01-27 18:03:37 -0800555 const char *pname;
556
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700557 pe = &map->table[i++];
558 if (!pe->name)
559 break;
560
Andi Kleenfedb2b52017-01-27 18:03:37 -0800561 pname = pe->pmu ? pe->pmu : "cpu";
562 if (strncmp(pname, name, strlen(pname)))
563 continue;
564
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700565 /* need type casts to override 'const' */
566 __perf_pmu__new_alias(head, NULL, (char *)pe->name,
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -0700567 (char *)pe->desc, (char *)pe->event,
Andi Kleenfedb2b52017-01-27 18:03:37 -0800568 (char *)pe->long_desc, (char *)pe->topic,
Andi Kleen00636c32017-03-20 13:17:07 -0700569 (char *)pe->unit, (char *)pe->perpkg,
570 (char *)pe->metric_expr);
Sukadev Bhattiprolu933f82f2016-09-15 15:24:40 -0700571 }
572
573out:
574 free(cpuid);
575}
576
Sukadev Bhattiproluc5de47f2015-06-10 00:25:07 -0700577struct perf_event_attr * __weak
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300578perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
579{
580 return NULL;
581}
582
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300583static struct perf_pmu *pmu_lookup(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100584{
585 struct perf_pmu *pmu;
586 LIST_HEAD(format);
Zheng Yana6146d52012-06-15 14:31:41 +0800587 LIST_HEAD(aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100588 __u32 type;
589
590 /*
591 * The pmu data we store & need consists of the pmu
592 * type value and format definitions. Load both right
593 * now.
594 */
595 if (pmu_format(name, &format))
596 return NULL;
597
Andi Kleen15b22ed2017-01-27 18:03:38 -0800598 /*
599 * Check the type first to avoid unnecessary work.
600 */
601 if (pmu_type(name, &type))
602 return NULL;
603
Jiri Olsa3fded962012-10-10 14:53:16 +0200604 if (pmu_aliases(name, &aliases))
605 return NULL;
606
Andi Kleenfedb2b52017-01-27 18:03:37 -0800607 pmu_add_cpu_aliases(&aliases, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100608 pmu = zalloc(sizeof(*pmu));
609 if (!pmu)
610 return NULL;
611
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800612 pmu->cpus = pmu_cpumask(name);
613
Jiri Olsacd82a322012-03-15 20:09:17 +0100614 INIT_LIST_HEAD(&pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800615 INIT_LIST_HEAD(&pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100616 list_splice(&format, &pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800617 list_splice(&aliases, &pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100618 pmu->name = strdup(name);
619 pmu->type = type;
Robert Richter9bc8f9f2012-06-14 22:38:37 +0200620 list_add_tail(&pmu->list, &pmus);
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300621
622 pmu->default_config = perf_pmu__get_default_config(pmu);
623
Jiri Olsacd82a322012-03-15 20:09:17 +0100624 return pmu;
625}
626
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300627static struct perf_pmu *pmu_find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100628{
629 struct perf_pmu *pmu;
630
631 list_for_each_entry(pmu, &pmus, list)
632 if (!strcmp(pmu->name, name))
633 return pmu;
634
635 return NULL;
636}
637
Robert Richter50a96672012-08-16 21:10:24 +0200638struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
639{
640 /*
641 * pmu iterator: If pmu is NULL, we start at the begin,
642 * otherwise return the next pmu. Returns NULL on end.
643 */
644 if (!pmu) {
645 pmu_read_sysfs();
646 pmu = list_prepare_entry(pmu, &pmus, list);
647 }
648 list_for_each_entry_continue(pmu, &pmus, list)
649 return pmu;
650 return NULL;
651}
652
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300653struct perf_pmu *perf_pmu__find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100654{
655 struct perf_pmu *pmu;
656
657 /*
658 * Once PMU is loaded it stays in the list,
659 * so we keep us from multiple reading/parsing
660 * the pmu format definitions.
661 */
662 pmu = pmu_find(name);
663 if (pmu)
664 return pmu;
665
666 return pmu_lookup(name);
667}
668
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300669static struct perf_pmu_format *
Adrian Hunter09ff6072015-07-17 19:33:49 +0300670pmu_find_format(struct list_head *formats, const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100671{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300672 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100673
674 list_for_each_entry(format, formats, list)
675 if (!strcmp(format->name, name))
676 return format;
677
678 return NULL;
679}
680
Adrian Hunter09ff6072015-07-17 19:33:49 +0300681__u64 perf_pmu__format_bits(struct list_head *formats, const char *name)
682{
683 struct perf_pmu_format *format = pmu_find_format(formats, name);
684 __u64 bits = 0;
685 int fbit;
686
687 if (!format)
688 return 0;
689
690 for_each_set_bit(fbit, format->bits, PERF_PMU_FORMAT_BITS)
691 bits |= 1ULL << fbit;
692
693 return bits;
694}
695
Jiri Olsacd82a322012-03-15 20:09:17 +0100696/*
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300697 * Sets value based on the format definition (format parameter)
Jiri Olsacd82a322012-03-15 20:09:17 +0100698 * and unformated value (value parameter).
Jiri Olsacd82a322012-03-15 20:09:17 +0100699 */
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300700static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
701 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100702{
703 unsigned long fbit, vbit;
Jiri Olsacd82a322012-03-15 20:09:17 +0100704
705 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
706
707 if (!test_bit(fbit, format))
708 continue;
709
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300710 if (value & (1llu << vbit++))
711 *v |= (1llu << fbit);
712 else if (zero)
713 *v &= ~(1llu << fbit);
Jiri Olsacd82a322012-03-15 20:09:17 +0100714 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100715}
716
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300717static __u64 pmu_format_max_value(const unsigned long *format)
718{
Kan Liangac0e2cd2016-03-30 12:16:15 -0700719 __u64 w = 0;
720 int fbit;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300721
Kan Liangac0e2cd2016-03-30 12:16:15 -0700722 for_each_set_bit(fbit, format, PERF_PMU_FORMAT_BITS)
723 w |= (1ULL << fbit);
724
725 return w;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300726}
727
Jiri Olsacd82a322012-03-15 20:09:17 +0100728/*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800729 * Term is a string term, and might be a param-term. Try to look up it's value
730 * in the remaining terms.
731 * - We have a term like "base-or-format-term=param-term",
732 * - We need to find the value supplied for "param-term" (with param-term named
733 * in a config string) later on in the term list.
734 */
735static int pmu_resolve_param_term(struct parse_events_term *term,
736 struct list_head *head_terms,
737 __u64 *value)
738{
739 struct parse_events_term *t;
740
741 list_for_each_entry(t, head_terms, list) {
742 if (t->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
743 if (!strcmp(t->config, term->config)) {
744 t->used = true;
745 *value = t->val.num;
746 return 0;
747 }
748 }
749 }
750
Namhyung Kimbb963e12017-02-17 17:17:38 +0900751 if (verbose > 0)
Cody P Schafer688d4df2015-01-07 17:13:50 -0800752 printf("Required parameter '%s' not specified\n", term->config);
753
754 return -1;
755}
756
He Kuangffeb8832015-09-28 03:52:14 +0000757static char *pmu_formats_string(struct list_head *formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200758{
759 struct perf_pmu_format *format;
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900760 char *str = NULL;
761 struct strbuf buf = STRBUF_INIT;
Jiri Olsae64b0202015-04-22 21:10:21 +0200762 unsigned i = 0;
763
He Kuangffeb8832015-09-28 03:52:14 +0000764 if (!formats)
Jiri Olsae64b0202015-04-22 21:10:21 +0200765 return NULL;
766
767 /* sysfs exported terms */
He Kuangffeb8832015-09-28 03:52:14 +0000768 list_for_each_entry(format, formats, list)
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900769 if (strbuf_addf(&buf, i++ ? ",%s" : "%s", format->name) < 0)
770 goto error;
Jiri Olsae64b0202015-04-22 21:10:21 +0200771
He Kuangffeb8832015-09-28 03:52:14 +0000772 str = strbuf_detach(&buf, NULL);
Masami Hiramatsu11db4e22016-05-10 14:47:44 +0900773error:
He Kuangffeb8832015-09-28 03:52:14 +0000774 strbuf_release(&buf);
Jiri Olsae64b0202015-04-22 21:10:21 +0200775
Jiri Olsae64b0202015-04-22 21:10:21 +0200776 return str;
Jiri Olsae64b0202015-04-22 21:10:21 +0200777}
778
Cody P Schafer688d4df2015-01-07 17:13:50 -0800779/*
Jiri Olsacd82a322012-03-15 20:09:17 +0100780 * Setup one of config[12] attr members based on the
Cody P Schafer88aca8d2014-01-08 08:43:51 -0800781 * user input data - term parameter.
Jiri Olsacd82a322012-03-15 20:09:17 +0100782 */
783static int pmu_config_term(struct list_head *formats,
784 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300785 struct parse_events_term *term,
Cody P Schafer688d4df2015-01-07 17:13:50 -0800786 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +0200787 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100788{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300789 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100790 __u64 *vp;
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300791 __u64 val, max_val;
Jiri Olsacd82a322012-03-15 20:09:17 +0100792
793 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800794 * If this is a parameter we've already used for parameterized-eval,
795 * skip it in normal eval.
796 */
797 if (term->used)
798 return 0;
799
800 /*
Jiri Olsacd82a322012-03-15 20:09:17 +0100801 * Hardcoded terms should be already in, so nothing
802 * to be done for them.
803 */
804 if (parse_events__is_hardcoded_term(term))
805 return 0;
806
Jiri Olsacd82a322012-03-15 20:09:17 +0100807 format = pmu_find_format(formats, term->config);
Cody P Schafer688d4df2015-01-07 17:13:50 -0800808 if (!format) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900809 if (verbose > 0)
Cody P Schafer688d4df2015-01-07 17:13:50 -0800810 printf("Invalid event/parameter '%s'\n", term->config);
Jiri Olsae64b0202015-04-22 21:10:21 +0200811 if (err) {
He Kuangffeb8832015-09-28 03:52:14 +0000812 char *pmu_term = pmu_formats_string(formats);
813
Jiri Olsae64b0202015-04-22 21:10:21 +0200814 err->idx = term->err_term;
815 err->str = strdup("unknown term");
He Kuangffeb8832015-09-28 03:52:14 +0000816 err->help = parse_events_formats_error_string(pmu_term);
817 free(pmu_term);
Jiri Olsae64b0202015-04-22 21:10:21 +0200818 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100819 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -0800820 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100821
822 switch (format->value) {
823 case PERF_PMU_FORMAT_VALUE_CONFIG:
824 vp = &attr->config;
825 break;
826 case PERF_PMU_FORMAT_VALUE_CONFIG1:
827 vp = &attr->config1;
828 break;
829 case PERF_PMU_FORMAT_VALUE_CONFIG2:
830 vp = &attr->config2;
831 break;
832 default:
833 return -EINVAL;
834 }
835
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200836 /*
Cody P Schafer688d4df2015-01-07 17:13:50 -0800837 * Either directly use a numeric term, or try to translate string terms
838 * using event parameters.
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200839 */
Jiri Olsa99e71382017-02-17 15:00:56 +0100840 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
841 if (term->no_value &&
842 bitmap_weight(format->bits, PERF_PMU_FORMAT_BITS) > 1) {
843 if (err) {
844 err->idx = term->err_val;
845 err->str = strdup("no value assigned for term");
846 }
847 return -EINVAL;
848 }
849
Cody P Schafer688d4df2015-01-07 17:13:50 -0800850 val = term->val.num;
Jiri Olsa99e71382017-02-17 15:00:56 +0100851 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
Cody P Schafer688d4df2015-01-07 17:13:50 -0800852 if (strcmp(term->val.str, "?")) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900853 if (verbose > 0) {
Cody P Schafer688d4df2015-01-07 17:13:50 -0800854 pr_info("Invalid sysfs entry %s=%s\n",
855 term->config, term->val.str);
Jiri Olsae64b0202015-04-22 21:10:21 +0200856 }
857 if (err) {
858 err->idx = term->err_val;
859 err->str = strdup("expected numeric value");
860 }
Cody P Schafer688d4df2015-01-07 17:13:50 -0800861 return -EINVAL;
862 }
863
864 if (pmu_resolve_param_term(term, head_terms, &val))
865 return -EINVAL;
866 } else
867 return -EINVAL;
868
Adrian Hunter0efe6b62015-07-17 19:33:50 +0300869 max_val = pmu_format_max_value(format->bits);
870 if (val > max_val) {
871 if (err) {
872 err->idx = term->err_val;
873 if (asprintf(&err->str,
874 "value too big for format, maximum is %llu",
875 (unsigned long long)max_val) < 0)
876 err->str = strdup("value too big for format");
877 return -EINVAL;
878 }
879 /*
880 * Assume we don't care if !err, in which case the value will be
881 * silently truncated.
882 */
883 }
884
Cody P Schafer688d4df2015-01-07 17:13:50 -0800885 pmu_format_value(format->bits, val, vp, zero);
Jiri Olsacd82a322012-03-15 20:09:17 +0100886 return 0;
887}
888
Jiri Olsacff7f952012-11-10 01:46:50 +0100889int perf_pmu__config_terms(struct list_head *formats,
890 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300891 struct list_head *head_terms,
Jiri Olsae64b0202015-04-22 21:10:21 +0200892 bool zero, struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100893{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300894 struct parse_events_term *term;
Jiri Olsacd82a322012-03-15 20:09:17 +0100895
Cody P Schafer688d4df2015-01-07 17:13:50 -0800896 list_for_each_entry(term, head_terms, list) {
Jiri Olsae64b0202015-04-22 21:10:21 +0200897 if (pmu_config_term(formats, attr, term, head_terms,
898 zero, err))
Jiri Olsacd82a322012-03-15 20:09:17 +0100899 return -EINVAL;
Cody P Schafer688d4df2015-01-07 17:13:50 -0800900 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100901
902 return 0;
903}
904
905/*
906 * Configures event's 'attr' parameter based on the:
907 * 1) users input - specified in terms parameter
908 * 2) pmu format definitions - specified by pmu parameter
909 */
910int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
Jiri Olsae64b0202015-04-22 21:10:21 +0200911 struct list_head *head_terms,
912 struct parse_events_error *err)
Jiri Olsacd82a322012-03-15 20:09:17 +0100913{
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300914 bool zero = !!pmu->default_config;
915
Jiri Olsacd82a322012-03-15 20:09:17 +0100916 attr->type = pmu->type;
Jiri Olsae64b0202015-04-22 21:10:21 +0200917 return perf_pmu__config_terms(&pmu->format, attr, head_terms,
918 zero, err);
Jiri Olsacd82a322012-03-15 20:09:17 +0100919}
920
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300921static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
922 struct parse_events_term *term)
Zheng Yana6146d52012-06-15 14:31:41 +0800923{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300924 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800925 char *name;
926
927 if (parse_events__is_hardcoded_term(term))
928 return NULL;
929
930 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
931 if (term->val.num != 1)
932 return NULL;
933 if (pmu_find_format(&pmu->format, term->config))
934 return NULL;
935 name = term->config;
936 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
937 if (strcasecmp(term->config, "event"))
938 return NULL;
939 name = term->val.str;
940 } else {
941 return NULL;
942 }
943
944 list_for_each_entry(alias, &pmu->aliases, list) {
945 if (!strcasecmp(alias->name, name))
946 return alias;
947 }
948 return NULL;
949}
950
Stephane Eranian410136f2013-11-12 17:58:49 +0100951
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100952static int check_info_data(struct perf_pmu_alias *alias,
953 struct perf_pmu_info *info)
Stephane Eranian410136f2013-11-12 17:58:49 +0100954{
955 /*
956 * Only one term in event definition can
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100957 * define unit, scale and snapshot, fail
958 * if there's more than one.
Stephane Eranian410136f2013-11-12 17:58:49 +0100959 */
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -0300960 if ((info->unit && alias->unit[0]) ||
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100961 (info->scale && alias->scale) ||
962 (info->snapshot && alias->snapshot))
Stephane Eranian410136f2013-11-12 17:58:49 +0100963 return -EINVAL;
964
Arnaldo Carvalho de Melob30a7d12017-02-15 10:06:20 -0300965 if (alias->unit[0])
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100966 info->unit = alias->unit;
Stephane Eranian410136f2013-11-12 17:58:49 +0100967
968 if (alias->scale)
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100969 info->scale = alias->scale;
970
971 if (alias->snapshot)
972 info->snapshot = alias->snapshot;
Stephane Eranian410136f2013-11-12 17:58:49 +0100973
974 return 0;
975}
976
Zheng Yana6146d52012-06-15 14:31:41 +0800977/*
978 * Find alias in the terms list and replace it with the terms
979 * defined for the alias
980 */
Stephane Eranian410136f2013-11-12 17:58:49 +0100981int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
Matt Fleming46441bd2014-09-24 15:04:06 +0100982 struct perf_pmu_info *info)
Zheng Yana6146d52012-06-15 14:31:41 +0800983{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300984 struct parse_events_term *term, *h;
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300985 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800986 int ret;
987
Matt Fleming044330c2014-11-21 10:31:12 +0100988 info->per_pkg = false;
989
Stephane Eranian8a398892014-01-17 16:34:05 +0100990 /*
991 * Mark unit and scale as not set
992 * (different from default values, see below)
993 */
Jiri Olsa1d9e4462014-11-21 10:31:13 +0100994 info->unit = NULL;
995 info->scale = 0.0;
996 info->snapshot = false;
Andi Kleen37932c12017-03-20 13:17:08 -0700997 info->metric_expr = NULL;
Stephane Eranian410136f2013-11-12 17:58:49 +0100998
Zheng Yana6146d52012-06-15 14:31:41 +0800999 list_for_each_entry_safe(term, h, head_terms, list) {
1000 alias = pmu_find_alias(pmu, term);
1001 if (!alias)
1002 continue;
1003 ret = pmu_alias_terms(alias, &term->list);
1004 if (ret)
1005 return ret;
Stephane Eranian410136f2013-11-12 17:58:49 +01001006
Jiri Olsa1d9e4462014-11-21 10:31:13 +01001007 ret = check_info_data(alias, info);
Stephane Eranian410136f2013-11-12 17:58:49 +01001008 if (ret)
1009 return ret;
1010
Matt Fleming044330c2014-11-21 10:31:12 +01001011 if (alias->per_pkg)
1012 info->per_pkg = true;
Andi Kleen37932c12017-03-20 13:17:08 -07001013 info->metric_expr = alias->metric_expr;
Matt Fleming044330c2014-11-21 10:31:12 +01001014
Zheng Yana6146d52012-06-15 14:31:41 +08001015 list_del(&term->list);
1016 free(term);
1017 }
Stephane Eranian8a398892014-01-17 16:34:05 +01001018
1019 /*
1020 * if no unit or scale foundin aliases, then
1021 * set defaults as for evsel
1022 * unit cannot left to NULL
1023 */
Matt Fleming46441bd2014-09-24 15:04:06 +01001024 if (info->unit == NULL)
1025 info->unit = "";
Stephane Eranian8a398892014-01-17 16:34:05 +01001026
Matt Fleming46441bd2014-09-24 15:04:06 +01001027 if (info->scale == 0.0)
1028 info->scale = 1.0;
Stephane Eranian8a398892014-01-17 16:34:05 +01001029
Zheng Yana6146d52012-06-15 14:31:41 +08001030 return 0;
1031}
1032
Jiri Olsacd82a322012-03-15 20:09:17 +01001033int perf_pmu__new_format(struct list_head *list, char *name,
1034 int config, unsigned long *bits)
1035{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -03001036 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +01001037
1038 format = zalloc(sizeof(*format));
1039 if (!format)
1040 return -ENOMEM;
1041
1042 format->name = strdup(name);
1043 format->value = config;
1044 memcpy(format->bits, bits, sizeof(format->bits));
1045
1046 list_add_tail(&format->list, list);
1047 return 0;
1048}
1049
1050void perf_pmu__set_format(unsigned long *bits, long from, long to)
1051{
1052 long b;
1053
1054 if (!to)
1055 to = from;
1056
Sukadev Bhattiprolu15268132013-01-17 09:11:30 -08001057 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
Jiri Olsacd82a322012-03-15 20:09:17 +01001058 for (b = from; b <= to; b++)
1059 set_bit(b, bits);
1060}
Andi Kleendc098b32013-04-20 11:02:29 -07001061
Cody P Schaferaaea3612015-01-07 17:13:51 -08001062static int sub_non_neg(int a, int b)
1063{
1064 if (b > a)
1065 return 0;
1066 return a - b;
1067}
1068
Andi Kleendc098b32013-04-20 11:02:29 -07001069static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
1070 struct perf_pmu_alias *alias)
1071{
Cody P Schaferaaea3612015-01-07 17:13:51 -08001072 struct parse_events_term *term;
1073 int used = snprintf(buf, len, "%s/%s", pmu->name, alias->name);
1074
1075 list_for_each_entry(term, &alias->terms, list) {
1076 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR)
1077 used += snprintf(buf + used, sub_non_neg(len, used),
1078 ",%s=%s", term->config,
1079 term->val.str);
1080 }
1081
1082 if (sub_non_neg(len, used) > 0) {
1083 buf[used] = '/';
1084 used++;
1085 }
1086 if (sub_non_neg(len, used) > 0) {
1087 buf[used] = '\0';
1088 used++;
1089 } else
1090 buf[len - 1] = '\0';
1091
Andi Kleendc098b32013-04-20 11:02:29 -07001092 return buf;
1093}
1094
1095static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
1096 struct perf_pmu_alias *alias)
1097{
1098 snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
1099 return buf;
1100}
1101
Andi Kleendd5f1032016-09-15 15:24:50 -07001102struct sevent {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001103 char *name;
1104 char *desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001105 char *topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001106 char *str;
1107 char *pmu;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001108};
1109
Andi Kleendd5f1032016-09-15 15:24:50 -07001110static int cmp_sevent(const void *a, const void *b)
Andi Kleendc098b32013-04-20 11:02:29 -07001111{
Andi Kleendd5f1032016-09-15 15:24:50 -07001112 const struct sevent *as = a;
1113 const struct sevent *bs = b;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001114
1115 /* Put extra events last */
1116 if (!!as->desc != !!bs->desc)
1117 return !!as->desc - !!bs->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001118 if (as->topic && bs->topic) {
1119 int n = strcmp(as->topic, bs->topic);
1120
1121 if (n)
1122 return n;
1123 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001124 return strcmp(as->name, bs->name);
1125}
1126
1127static void wordwrap(char *s, int start, int max, int corr)
1128{
1129 int column = start;
1130 int n;
1131
1132 while (*s) {
1133 int wlen = strcspn(s, " \t");
1134
1135 if (column + wlen >= max && column > start) {
1136 printf("\n%*s", start, "");
1137 column = start + corr;
1138 }
1139 n = printf("%s%.*s", column > start ? " " : "", wlen, s);
1140 if (n <= 0)
1141 break;
1142 s += wlen;
1143 column += n;
1144 while (isspace(*s))
1145 s++;
1146 }
Andi Kleendc098b32013-04-20 11:02:29 -07001147}
1148
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001149void print_pmu_events(const char *event_glob, bool name_only, bool quiet_flag,
1150 bool long_desc)
Andi Kleendc098b32013-04-20 11:02:29 -07001151{
1152 struct perf_pmu *pmu;
1153 struct perf_pmu_alias *alias;
1154 char buf[1024];
1155 int printed = 0;
1156 int len, j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001157 struct sevent *aliases;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001158 int numdesc = 0;
Andi Kleen61eb2eb2016-09-15 15:24:44 -07001159 int columns = pager_get_columns();
Andi Kleendd5f1032016-09-15 15:24:50 -07001160 char *topic = NULL;
Andi Kleendc098b32013-04-20 11:02:29 -07001161
1162 pmu = NULL;
1163 len = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001164 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001165 list_for_each_entry(alias, &pmu->aliases, list)
1166 len++;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001167 if (pmu->selectable)
1168 len++;
1169 }
Andi Kleendd5f1032016-09-15 15:24:50 -07001170 aliases = zalloc(sizeof(struct sevent) * len);
Andi Kleendc098b32013-04-20 11:02:29 -07001171 if (!aliases)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001172 goto out_enomem;
Andi Kleendc098b32013-04-20 11:02:29 -07001173 pmu = NULL;
1174 j = 0;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001175 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
Andi Kleendc098b32013-04-20 11:02:29 -07001176 list_for_each_entry(alias, &pmu->aliases, list) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001177 char *name = alias->desc ? alias->name :
1178 format_alias(buf, sizeof(buf), pmu, alias);
Andi Kleendc098b32013-04-20 11:02:29 -07001179 bool is_cpu = !strcmp(pmu->name, "cpu");
1180
1181 if (event_glob != NULL &&
Andi Kleen38d14f02016-10-19 10:50:01 -07001182 !(strglobmatch_nocase(name, event_glob) ||
1183 (!is_cpu && strglobmatch_nocase(alias->name,
Andi Kleen67bdc352016-10-19 11:45:23 -07001184 event_glob)) ||
1185 (alias->topic &&
1186 strglobmatch_nocase(alias->topic, event_glob))))
Andi Kleendc098b32013-04-20 11:02:29 -07001187 continue;
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001188
Andi Kleen08e60ed2016-09-15 15:24:43 -07001189 if (is_cpu && !name_only && !alias->desc)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001190 name = format_alias_or(buf, sizeof(buf), pmu, alias);
1191
Andi Kleen08e60ed2016-09-15 15:24:43 -07001192 aliases[j].name = name;
1193 if (is_cpu && !name_only && !alias->desc)
1194 aliases[j].name = format_alias_or(buf,
1195 sizeof(buf),
1196 pmu, alias);
1197 aliases[j].name = strdup(aliases[j].name);
1198 if (!aliases[j].name)
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001199 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001200
Sukadev Bhattiproluc8d68282016-09-15 15:24:48 -07001201 aliases[j].desc = long_desc ? alias->long_desc :
1202 alias->desc;
Andi Kleendd5f1032016-09-15 15:24:50 -07001203 aliases[j].topic = alias->topic;
Andi Kleenf2361022017-01-27 18:03:40 -08001204 aliases[j].str = alias->str;
1205 aliases[j].pmu = pmu->name;
Andi Kleendc098b32013-04-20 11:02:29 -07001206 j++;
1207 }
Arnaldo Carvalho de Melofa52cea2015-10-02 15:28:16 -03001208 if (pmu->selectable &&
1209 (event_glob == NULL || strglobmatch(pmu->name, event_glob))) {
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001210 char *s;
1211 if (asprintf(&s, "%s//", pmu->name) < 0)
1212 goto out_enomem;
Andi Kleen08e60ed2016-09-15 15:24:43 -07001213 aliases[j].name = s;
Adrian Hunter42634bc2014-10-23 13:45:10 +03001214 j++;
1215 }
1216 }
Andi Kleendc098b32013-04-20 11:02:29 -07001217 len = j;
Andi Kleendd5f1032016-09-15 15:24:50 -07001218 qsort(aliases, len, sizeof(struct sevent), cmp_sevent);
Andi Kleendc098b32013-04-20 11:02:29 -07001219 for (j = 0; j < len; j++) {
Andi Kleen15b22ed2017-01-27 18:03:38 -08001220 /* Skip duplicates */
1221 if (j > 0 && !strcmp(aliases[j].name, aliases[j - 1].name))
1222 continue;
Andi Kleendc098b32013-04-20 11:02:29 -07001223 if (name_only) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001224 printf("%s ", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001225 continue;
1226 }
Andi Kleen1c5f01f2016-09-15 15:24:45 -07001227 if (aliases[j].desc && !quiet_flag) {
Andi Kleen08e60ed2016-09-15 15:24:43 -07001228 if (numdesc++ == 0)
1229 printf("\n");
Andi Kleendd5f1032016-09-15 15:24:50 -07001230 if (aliases[j].topic && (!topic ||
1231 strcmp(topic, aliases[j].topic))) {
1232 printf("%s%s:\n", topic ? "\n" : "",
1233 aliases[j].topic);
1234 topic = aliases[j].topic;
1235 }
Andi Kleen08e60ed2016-09-15 15:24:43 -07001236 printf(" %-50s\n", aliases[j].name);
1237 printf("%*s", 8, "[");
1238 wordwrap(aliases[j].desc, 8, columns, 0);
1239 printf("]\n");
Namhyung Kimbb963e12017-02-17 17:17:38 +09001240 if (verbose > 0)
Andi Kleenf2361022017-01-27 18:03:40 -08001241 printf("%*s%s/%s/\n", 8, "", aliases[j].pmu, aliases[j].str);
Andi Kleen08e60ed2016-09-15 15:24:43 -07001242 } else
1243 printf(" %-50s [Kernel PMU event]\n", aliases[j].name);
Andi Kleendc098b32013-04-20 11:02:29 -07001244 printed++;
1245 }
Arnaldo Carvalho de Melodfc431c2015-09-30 17:13:26 -03001246 if (printed && pager_in_use())
Andi Kleendc098b32013-04-20 11:02:29 -07001247 printf("\n");
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001248out_free:
1249 for (j = 0; j < len; j++)
Andi Kleen08e60ed2016-09-15 15:24:43 -07001250 zfree(&aliases[j].name);
Arnaldo Carvalho de Melo7e4772d2014-10-24 10:25:09 -03001251 zfree(&aliases);
1252 return;
1253
1254out_enomem:
1255 printf("FATAL: not enough memory to print PMU events\n");
1256 if (aliases)
1257 goto out_free;
Andi Kleendc098b32013-04-20 11:02:29 -07001258}
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001259
1260bool pmu_have_event(const char *pname, const char *name)
1261{
1262 struct perf_pmu *pmu;
1263 struct perf_pmu_alias *alias;
1264
1265 pmu = NULL;
1266 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1267 if (strcmp(pname, pmu->name))
1268 continue;
1269 list_for_each_entry(alias, &pmu->aliases, list)
1270 if (!strcmp(alias->name, name))
1271 return true;
1272 }
1273 return false;
1274}
Adrian Hunter7d4bdab2014-07-31 09:00:50 +03001275
1276static FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name)
1277{
1278 struct stat st;
1279 char path[PATH_MAX];
1280 const char *sysfs;
1281
1282 sysfs = sysfs__mountpoint();
1283 if (!sysfs)
1284 return NULL;
1285
1286 snprintf(path, PATH_MAX,
1287 "%s" EVENT_SOURCE_DEVICE_PATH "%s/%s", sysfs, pmu->name, name);
1288
1289 if (stat(path, &st) < 0)
1290 return NULL;
1291
1292 return fopen(path, "r");
1293}
1294
1295int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
1296 ...)
1297{
1298 va_list args;
1299 FILE *file;
1300 int ret = EOF;
1301
1302 va_start(args, fmt);
1303 file = perf_pmu__open_file(pmu, name);
1304 if (file) {
1305 ret = vfscanf(file, fmt, args);
1306 fclose(file);
1307 }
1308 va_end(args);
1309 return ret;
1310}