blob: 438bb261f391a79e7ec55a4a39b6dc150fefa488 [file] [log] [blame]
Jiri Olsacd82a322012-03-15 20:09:17 +01001#include <linux/list.h>
2#include <sys/types.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01003#include <unistd.h>
4#include <stdio.h>
Adrian Hunterdc0a6202014-07-31 09:00:49 +03005#include <stdbool.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01006#include <dirent.h>
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01007#include <api/fs/fs.h>
Stephane Eranian410136f2013-11-12 17:58:49 +01008#include <locale.h>
Jiri Olsacd82a322012-03-15 20:09:17 +01009#include "util.h"
10#include "pmu.h"
11#include "parse-events.h"
Yan, Zheng7ae92e72012-09-10 15:53:50 +080012#include "cpumap.h"
Jiri Olsacd82a322012-03-15 20:09:17 +010013
Stephane Eranian410136f2013-11-12 17:58:49 +010014#define UNIT_MAX_LEN 31 /* max length for event unit name */
15
Arnaldo Carvalho de Meloab1bf6532013-01-18 17:05:09 -030016struct perf_pmu_alias {
17 char *name;
Cody P Schafer885b5932014-08-15 00:26:14 -070018 struct list_head terms; /* HEAD struct parse_events_term -> list */
19 struct list_head list; /* ELEM */
Stephane Eranian410136f2013-11-12 17:58:49 +010020 char unit[UNIT_MAX_LEN+1];
21 double scale;
Arnaldo Carvalho de Meloab1bf6532013-01-18 17:05:09 -030022};
23
24struct perf_pmu_format {
25 char *name;
26 int value;
27 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
28 struct list_head list;
29};
30
Robert Richter50a96672012-08-16 21:10:24 +020031#define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"
32
Jiri Olsacd82a322012-03-15 20:09:17 +010033int perf_pmu_parse(struct list_head *list, char *name);
34extern FILE *perf_pmu_in;
35
36static LIST_HEAD(pmus);
37
38/*
39 * Parse & process all the sysfs attributes located under
40 * the directory specified in 'dir' parameter.
41 */
Jiri Olsacff7f952012-11-10 01:46:50 +010042int perf_pmu__format_parse(char *dir, struct list_head *head)
Jiri Olsacd82a322012-03-15 20:09:17 +010043{
44 struct dirent *evt_ent;
45 DIR *format_dir;
46 int ret = 0;
47
48 format_dir = opendir(dir);
49 if (!format_dir)
50 return -EINVAL;
51
52 while (!ret && (evt_ent = readdir(format_dir))) {
53 char path[PATH_MAX];
54 char *name = evt_ent->d_name;
55 FILE *file;
56
57 if (!strcmp(name, ".") || !strcmp(name, ".."))
58 continue;
59
60 snprintf(path, PATH_MAX, "%s/%s", dir, name);
61
62 ret = -EINVAL;
63 file = fopen(path, "r");
64 if (!file)
65 break;
66
67 perf_pmu_in = file;
68 ret = perf_pmu_parse(head, name);
69 fclose(file);
70 }
71
72 closedir(format_dir);
73 return ret;
74}
75
76/*
77 * Reading/parsing the default pmu format definition, which should be
78 * located at:
79 * /sys/bus/event_source/devices/<dev>/format as sysfs group attributes.
80 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +030081static int pmu_format(const char *name, struct list_head *format)
Jiri Olsacd82a322012-03-15 20:09:17 +010082{
83 struct stat st;
84 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -030085 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +010086
Jiri Olsacd82a322012-03-15 20:09:17 +010087 if (!sysfs)
88 return -1;
89
90 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +020091 "%s" EVENT_SOURCE_DEVICE_PATH "%s/format", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +010092
93 if (stat(path, &st) < 0)
Robert Richter9bc8f9f2012-06-14 22:38:37 +020094 return 0; /* no error if format does not exist */
Jiri Olsacd82a322012-03-15 20:09:17 +010095
Jiri Olsacff7f952012-11-10 01:46:50 +010096 if (perf_pmu__format_parse(path, format))
Jiri Olsacd82a322012-03-15 20:09:17 +010097 return -1;
98
99 return 0;
100}
101
Stephane Eranian410136f2013-11-12 17:58:49 +0100102static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name)
103{
104 struct stat st;
105 ssize_t sret;
106 char scale[128];
107 int fd, ret = -1;
108 char path[PATH_MAX];
Stephane Eranian8a398892014-01-17 16:34:05 +0100109 const char *lc;
Stephane Eranian410136f2013-11-12 17:58:49 +0100110
111 snprintf(path, PATH_MAX, "%s/%s.scale", dir, name);
112
113 fd = open(path, O_RDONLY);
114 if (fd == -1)
115 return -1;
116
117 if (fstat(fd, &st) < 0)
118 goto error;
119
120 sret = read(fd, scale, sizeof(scale)-1);
121 if (sret < 0)
122 goto error;
123
124 scale[sret] = '\0';
125 /*
126 * save current locale
127 */
128 lc = setlocale(LC_NUMERIC, NULL);
129
130 /*
131 * force to C locale to ensure kernel
132 * scale string is converted correctly.
133 * kernel uses default C locale.
134 */
135 setlocale(LC_NUMERIC, "C");
136
137 alias->scale = strtod(scale, NULL);
138
139 /* restore locale */
140 setlocale(LC_NUMERIC, lc);
141
142 ret = 0;
143error:
144 close(fd);
145 return ret;
146}
147
148static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name)
149{
150 char path[PATH_MAX];
151 ssize_t sret;
152 int fd;
153
154 snprintf(path, PATH_MAX, "%s/%s.unit", dir, name);
155
156 fd = open(path, O_RDONLY);
157 if (fd == -1)
158 return -1;
159
160 sret = read(fd, alias->unit, UNIT_MAX_LEN);
161 if (sret < 0)
162 goto error;
163
164 close(fd);
165
166 alias->unit[sret] = '\0';
167
168 return 0;
169error:
170 close(fd);
171 alias->unit[0] = '\0';
172 return -1;
173}
174
175static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FILE *file)
Zheng Yana6146d52012-06-15 14:31:41 +0800176{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300177 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800178 char buf[256];
179 int ret;
180
181 ret = fread(buf, 1, sizeof(buf), file);
182 if (ret == 0)
183 return -EINVAL;
184 buf[ret] = 0;
185
186 alias = malloc(sizeof(*alias));
187 if (!alias)
188 return -ENOMEM;
189
190 INIT_LIST_HEAD(&alias->terms);
Stephane Eranian410136f2013-11-12 17:58:49 +0100191 alias->scale = 1.0;
192 alias->unit[0] = '\0';
193
Zheng Yana6146d52012-06-15 14:31:41 +0800194 ret = parse_events_terms(&alias->terms, buf);
195 if (ret) {
196 free(alias);
197 return ret;
198 }
199
200 alias->name = strdup(name);
Stephane Eranian410136f2013-11-12 17:58:49 +0100201 /*
202 * load unit name and scale if available
203 */
204 perf_pmu__parse_unit(alias, dir, name);
205 perf_pmu__parse_scale(alias, dir, name);
206
Zheng Yana6146d52012-06-15 14:31:41 +0800207 list_add_tail(&alias->list, list);
Stephane Eranian410136f2013-11-12 17:58:49 +0100208
Zheng Yana6146d52012-06-15 14:31:41 +0800209 return 0;
210}
211
212/*
213 * Process all the sysfs attributes located under the directory
214 * specified in 'dir' parameter.
215 */
216static int pmu_aliases_parse(char *dir, struct list_head *head)
217{
218 struct dirent *evt_ent;
219 DIR *event_dir;
Stephane Eranian410136f2013-11-12 17:58:49 +0100220 size_t len;
Zheng Yana6146d52012-06-15 14:31:41 +0800221 int ret = 0;
222
223 event_dir = opendir(dir);
224 if (!event_dir)
225 return -EINVAL;
226
227 while (!ret && (evt_ent = readdir(event_dir))) {
228 char path[PATH_MAX];
229 char *name = evt_ent->d_name;
230 FILE *file;
231
232 if (!strcmp(name, ".") || !strcmp(name, ".."))
233 continue;
234
Stephane Eranian410136f2013-11-12 17:58:49 +0100235 /*
236 * skip .unit and .scale info files
237 * parsed in perf_pmu__new_alias()
238 */
239 len = strlen(name);
240 if (len > 5 && !strcmp(name + len - 5, ".unit"))
241 continue;
242 if (len > 6 && !strcmp(name + len - 6, ".scale"))
243 continue;
244
Zheng Yana6146d52012-06-15 14:31:41 +0800245 snprintf(path, PATH_MAX, "%s/%s", dir, name);
246
247 ret = -EINVAL;
248 file = fopen(path, "r");
249 if (!file)
250 break;
Stephane Eranian410136f2013-11-12 17:58:49 +0100251
252 ret = perf_pmu__new_alias(head, dir, name, file);
Zheng Yana6146d52012-06-15 14:31:41 +0800253 fclose(file);
254 }
255
256 closedir(event_dir);
257 return ret;
258}
259
260/*
261 * Reading the pmu event aliases definition, which should be located at:
262 * /sys/bus/event_source/devices/<dev>/events as sysfs group attributes.
263 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300264static int pmu_aliases(const char *name, struct list_head *head)
Zheng Yana6146d52012-06-15 14:31:41 +0800265{
266 struct stat st;
267 char path[PATH_MAX];
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300268 const char *sysfs = sysfs__mountpoint();
Zheng Yana6146d52012-06-15 14:31:41 +0800269
Zheng Yana6146d52012-06-15 14:31:41 +0800270 if (!sysfs)
271 return -1;
272
273 snprintf(path, PATH_MAX,
274 "%s/bus/event_source/devices/%s/events", sysfs, name);
275
276 if (stat(path, &st) < 0)
Jiri Olsa3fded962012-10-10 14:53:16 +0200277 return 0; /* no error if 'events' does not exist */
Zheng Yana6146d52012-06-15 14:31:41 +0800278
279 if (pmu_aliases_parse(path, head))
280 return -1;
281
282 return 0;
283}
284
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300285static int pmu_alias_terms(struct perf_pmu_alias *alias,
Zheng Yana6146d52012-06-15 14:31:41 +0800286 struct list_head *terms)
287{
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200288 struct parse_events_term *term, *cloned;
Zheng Yana6146d52012-06-15 14:31:41 +0800289 LIST_HEAD(list);
290 int ret;
291
292 list_for_each_entry(term, &alias->terms, list) {
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200293 ret = parse_events_term__clone(&cloned, term);
Zheng Yana6146d52012-06-15 14:31:41 +0800294 if (ret) {
295 parse_events__free_terms(&list);
296 return ret;
297 }
Jiri Olsa7c2f8162014-04-16 20:49:02 +0200298 list_add_tail(&cloned->list, &list);
Zheng Yana6146d52012-06-15 14:31:41 +0800299 }
300 list_splice(&list, terms);
301 return 0;
302}
303
Jiri Olsacd82a322012-03-15 20:09:17 +0100304/*
305 * Reading/parsing the default pmu type value, which should be
306 * located at:
307 * /sys/bus/event_source/devices/<dev>/type as sysfs attribute.
308 */
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300309static int pmu_type(const char *name, __u32 *type)
Jiri Olsacd82a322012-03-15 20:09:17 +0100310{
311 struct stat st;
312 char path[PATH_MAX];
Jiri Olsacd82a322012-03-15 20:09:17 +0100313 FILE *file;
314 int ret = 0;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300315 const char *sysfs = sysfs__mountpoint();
Jiri Olsacd82a322012-03-15 20:09:17 +0100316
Jiri Olsacd82a322012-03-15 20:09:17 +0100317 if (!sysfs)
318 return -1;
319
320 snprintf(path, PATH_MAX,
Robert Richter50a96672012-08-16 21:10:24 +0200321 "%s" EVENT_SOURCE_DEVICE_PATH "%s/type", sysfs, name);
Jiri Olsacd82a322012-03-15 20:09:17 +0100322
323 if (stat(path, &st) < 0)
324 return -1;
325
326 file = fopen(path, "r");
327 if (!file)
328 return -EINVAL;
329
330 if (1 != fscanf(file, "%u", type))
331 ret = -1;
332
333 fclose(file);
334 return ret;
335}
336
Robert Richter50a96672012-08-16 21:10:24 +0200337/* Add all pmus in sysfs to pmu list: */
338static void pmu_read_sysfs(void)
339{
340 char path[PATH_MAX];
Robert Richter50a96672012-08-16 21:10:24 +0200341 DIR *dir;
342 struct dirent *dent;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300343 const char *sysfs = sysfs__mountpoint();
Robert Richter50a96672012-08-16 21:10:24 +0200344
Robert Richter50a96672012-08-16 21:10:24 +0200345 if (!sysfs)
346 return;
347
348 snprintf(path, PATH_MAX,
349 "%s" EVENT_SOURCE_DEVICE_PATH, sysfs);
350
351 dir = opendir(path);
352 if (!dir)
353 return;
354
355 while ((dent = readdir(dir))) {
356 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
357 continue;
358 /* add to static LIST_HEAD(pmus): */
359 perf_pmu__find(dent->d_name);
360 }
361
362 closedir(dir);
363}
364
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300365static struct cpu_map *pmu_cpumask(const char *name)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800366{
367 struct stat st;
368 char path[PATH_MAX];
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800369 FILE *file;
370 struct cpu_map *cpus;
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -0300371 const char *sysfs = sysfs__mountpoint();
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800372
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800373 if (!sysfs)
374 return NULL;
375
376 snprintf(path, PATH_MAX,
377 "%s/bus/event_source/devices/%s/cpumask", sysfs, name);
378
379 if (stat(path, &st) < 0)
380 return NULL;
381
382 file = fopen(path, "r");
383 if (!file)
384 return NULL;
385
386 cpus = cpu_map__read(file);
387 fclose(file);
388 return cpus;
389}
390
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300391struct perf_event_attr *__attribute__((weak))
392perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
393{
394 return NULL;
395}
396
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300397static struct perf_pmu *pmu_lookup(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100398{
399 struct perf_pmu *pmu;
400 LIST_HEAD(format);
Zheng Yana6146d52012-06-15 14:31:41 +0800401 LIST_HEAD(aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100402 __u32 type;
403
404 /*
405 * The pmu data we store & need consists of the pmu
406 * type value and format definitions. Load both right
407 * now.
408 */
409 if (pmu_format(name, &format))
410 return NULL;
411
Jiri Olsa3fded962012-10-10 14:53:16 +0200412 if (pmu_aliases(name, &aliases))
413 return NULL;
414
Jiri Olsacd82a322012-03-15 20:09:17 +0100415 if (pmu_type(name, &type))
416 return NULL;
417
418 pmu = zalloc(sizeof(*pmu));
419 if (!pmu)
420 return NULL;
421
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800422 pmu->cpus = pmu_cpumask(name);
423
Jiri Olsacd82a322012-03-15 20:09:17 +0100424 INIT_LIST_HEAD(&pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800425 INIT_LIST_HEAD(&pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100426 list_splice(&format, &pmu->format);
Zheng Yana6146d52012-06-15 14:31:41 +0800427 list_splice(&aliases, &pmu->aliases);
Jiri Olsacd82a322012-03-15 20:09:17 +0100428 pmu->name = strdup(name);
429 pmu->type = type;
Robert Richter9bc8f9f2012-06-14 22:38:37 +0200430 list_add_tail(&pmu->list, &pmus);
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300431
432 pmu->default_config = perf_pmu__get_default_config(pmu);
433
Jiri Olsacd82a322012-03-15 20:09:17 +0100434 return pmu;
435}
436
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300437static struct perf_pmu *pmu_find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100438{
439 struct perf_pmu *pmu;
440
441 list_for_each_entry(pmu, &pmus, list)
442 if (!strcmp(pmu->name, name))
443 return pmu;
444
445 return NULL;
446}
447
Robert Richter50a96672012-08-16 21:10:24 +0200448struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu)
449{
450 /*
451 * pmu iterator: If pmu is NULL, we start at the begin,
452 * otherwise return the next pmu. Returns NULL on end.
453 */
454 if (!pmu) {
455 pmu_read_sysfs();
456 pmu = list_prepare_entry(pmu, &pmus, list);
457 }
458 list_for_each_entry_continue(pmu, &pmus, list)
459 return pmu;
460 return NULL;
461}
462
Adrian Hunterb6b96fb2013-07-04 16:20:25 +0300463struct perf_pmu *perf_pmu__find(const char *name)
Jiri Olsacd82a322012-03-15 20:09:17 +0100464{
465 struct perf_pmu *pmu;
466
467 /*
468 * Once PMU is loaded it stays in the list,
469 * so we keep us from multiple reading/parsing
470 * the pmu format definitions.
471 */
472 pmu = pmu_find(name);
473 if (pmu)
474 return pmu;
475
476 return pmu_lookup(name);
477}
478
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300479static struct perf_pmu_format *
Jiri Olsacd82a322012-03-15 20:09:17 +0100480pmu_find_format(struct list_head *formats, char *name)
481{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300482 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100483
484 list_for_each_entry(format, formats, list)
485 if (!strcmp(format->name, name))
486 return format;
487
488 return NULL;
489}
490
491/*
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300492 * Sets value based on the format definition (format parameter)
Jiri Olsacd82a322012-03-15 20:09:17 +0100493 * and unformated value (value parameter).
Jiri Olsacd82a322012-03-15 20:09:17 +0100494 */
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300495static void pmu_format_value(unsigned long *format, __u64 value, __u64 *v,
496 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100497{
498 unsigned long fbit, vbit;
Jiri Olsacd82a322012-03-15 20:09:17 +0100499
500 for (fbit = 0, vbit = 0; fbit < PERF_PMU_FORMAT_BITS; fbit++) {
501
502 if (!test_bit(fbit, format))
503 continue;
504
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300505 if (value & (1llu << vbit++))
506 *v |= (1llu << fbit);
507 else if (zero)
508 *v &= ~(1llu << fbit);
Jiri Olsacd82a322012-03-15 20:09:17 +0100509 }
Jiri Olsacd82a322012-03-15 20:09:17 +0100510}
511
512/*
513 * Setup one of config[12] attr members based on the
Cody P Schafer88aca8d2014-01-08 08:43:51 -0800514 * user input data - term parameter.
Jiri Olsacd82a322012-03-15 20:09:17 +0100515 */
516static int pmu_config_term(struct list_head *formats,
517 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300518 struct parse_events_term *term,
519 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100520{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300521 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100522 __u64 *vp;
523
524 /*
525 * Support only for hardcoded and numnerial terms.
526 * Hardcoded terms should be already in, so nothing
527 * to be done for them.
528 */
529 if (parse_events__is_hardcoded_term(term))
530 return 0;
531
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200532 if (term->type_val != PARSE_EVENTS__TERM_TYPE_NUM)
Jiri Olsacd82a322012-03-15 20:09:17 +0100533 return -EINVAL;
534
535 format = pmu_find_format(formats, term->config);
536 if (!format)
537 return -EINVAL;
538
539 switch (format->value) {
540 case PERF_PMU_FORMAT_VALUE_CONFIG:
541 vp = &attr->config;
542 break;
543 case PERF_PMU_FORMAT_VALUE_CONFIG1:
544 vp = &attr->config1;
545 break;
546 case PERF_PMU_FORMAT_VALUE_CONFIG2:
547 vp = &attr->config2;
548 break;
549 default:
550 return -EINVAL;
551 }
552
Jiri Olsa16fa7e82012-04-25 18:24:57 +0200553 /*
554 * XXX If we ever decide to go with string values for
555 * non-hardcoded terms, here's the place to translate
556 * them into value.
557 */
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300558 pmu_format_value(format->bits, term->val.num, vp, zero);
Jiri Olsacd82a322012-03-15 20:09:17 +0100559 return 0;
560}
561
Jiri Olsacff7f952012-11-10 01:46:50 +0100562int perf_pmu__config_terms(struct list_head *formats,
563 struct perf_event_attr *attr,
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300564 struct list_head *head_terms,
565 bool zero)
Jiri Olsacd82a322012-03-15 20:09:17 +0100566{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300567 struct parse_events_term *term;
Jiri Olsacd82a322012-03-15 20:09:17 +0100568
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200569 list_for_each_entry(term, head_terms, list)
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300570 if (pmu_config_term(formats, attr, term, zero))
Jiri Olsacd82a322012-03-15 20:09:17 +0100571 return -EINVAL;
572
573 return 0;
574}
575
576/*
577 * Configures event's 'attr' parameter based on the:
578 * 1) users input - specified in terms parameter
579 * 2) pmu format definitions - specified by pmu parameter
580 */
581int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
582 struct list_head *head_terms)
583{
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300584 bool zero = !!pmu->default_config;
585
Jiri Olsacd82a322012-03-15 20:09:17 +0100586 attr->type = pmu->type;
Adrian Hunterdc0a6202014-07-31 09:00:49 +0300587 return perf_pmu__config_terms(&pmu->format, attr, head_terms, zero);
Jiri Olsacd82a322012-03-15 20:09:17 +0100588}
589
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300590static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu,
591 struct parse_events_term *term)
Zheng Yana6146d52012-06-15 14:31:41 +0800592{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300593 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800594 char *name;
595
596 if (parse_events__is_hardcoded_term(term))
597 return NULL;
598
599 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) {
600 if (term->val.num != 1)
601 return NULL;
602 if (pmu_find_format(&pmu->format, term->config))
603 return NULL;
604 name = term->config;
605 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) {
606 if (strcasecmp(term->config, "event"))
607 return NULL;
608 name = term->val.str;
609 } else {
610 return NULL;
611 }
612
613 list_for_each_entry(alias, &pmu->aliases, list) {
614 if (!strcasecmp(alias->name, name))
615 return alias;
616 }
617 return NULL;
618}
619
Stephane Eranian410136f2013-11-12 17:58:49 +0100620
621static int check_unit_scale(struct perf_pmu_alias *alias,
Stephane Eranian8a398892014-01-17 16:34:05 +0100622 const char **unit, double *scale)
Stephane Eranian410136f2013-11-12 17:58:49 +0100623{
624 /*
625 * Only one term in event definition can
626 * define unit and scale, fail if there's
627 * more than one.
628 */
629 if ((*unit && alias->unit) ||
630 (*scale && alias->scale))
631 return -EINVAL;
632
633 if (alias->unit)
634 *unit = alias->unit;
635
636 if (alias->scale)
637 *scale = alias->scale;
638
639 return 0;
640}
641
Zheng Yana6146d52012-06-15 14:31:41 +0800642/*
643 * Find alias in the terms list and replace it with the terms
644 * defined for the alias
645 */
Stephane Eranian410136f2013-11-12 17:58:49 +0100646int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
Stephane Eranian8a398892014-01-17 16:34:05 +0100647 const char **unit, double *scale)
Zheng Yana6146d52012-06-15 14:31:41 +0800648{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300649 struct parse_events_term *term, *h;
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300650 struct perf_pmu_alias *alias;
Zheng Yana6146d52012-06-15 14:31:41 +0800651 int ret;
652
Stephane Eranian8a398892014-01-17 16:34:05 +0100653 /*
654 * Mark unit and scale as not set
655 * (different from default values, see below)
656 */
Stephane Eranian410136f2013-11-12 17:58:49 +0100657 *unit = NULL;
Stephane Eranian8a398892014-01-17 16:34:05 +0100658 *scale = 0.0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100659
Zheng Yana6146d52012-06-15 14:31:41 +0800660 list_for_each_entry_safe(term, h, head_terms, list) {
661 alias = pmu_find_alias(pmu, term);
662 if (!alias)
663 continue;
664 ret = pmu_alias_terms(alias, &term->list);
665 if (ret)
666 return ret;
Stephane Eranian410136f2013-11-12 17:58:49 +0100667
668 ret = check_unit_scale(alias, unit, scale);
669 if (ret)
670 return ret;
671
Zheng Yana6146d52012-06-15 14:31:41 +0800672 list_del(&term->list);
673 free(term);
674 }
Stephane Eranian8a398892014-01-17 16:34:05 +0100675
676 /*
677 * if no unit or scale foundin aliases, then
678 * set defaults as for evsel
679 * unit cannot left to NULL
680 */
681 if (*unit == NULL)
682 *unit = "";
683
684 if (*scale == 0.0)
685 *scale = 1.0;
686
Zheng Yana6146d52012-06-15 14:31:41 +0800687 return 0;
688}
689
Jiri Olsacd82a322012-03-15 20:09:17 +0100690int perf_pmu__new_format(struct list_head *list, char *name,
691 int config, unsigned long *bits)
692{
Arnaldo Carvalho de Melo5c6ccc32013-01-18 16:54:00 -0300693 struct perf_pmu_format *format;
Jiri Olsacd82a322012-03-15 20:09:17 +0100694
695 format = zalloc(sizeof(*format));
696 if (!format)
697 return -ENOMEM;
698
699 format->name = strdup(name);
700 format->value = config;
701 memcpy(format->bits, bits, sizeof(format->bits));
702
703 list_add_tail(&format->list, list);
704 return 0;
705}
706
707void perf_pmu__set_format(unsigned long *bits, long from, long to)
708{
709 long b;
710
711 if (!to)
712 to = from;
713
Sukadev Bhattiprolu15268132013-01-17 09:11:30 -0800714 memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
Jiri Olsacd82a322012-03-15 20:09:17 +0100715 for (b = from; b <= to; b++)
716 set_bit(b, bits);
717}
Andi Kleendc098b32013-04-20 11:02:29 -0700718
719static char *format_alias(char *buf, int len, struct perf_pmu *pmu,
720 struct perf_pmu_alias *alias)
721{
722 snprintf(buf, len, "%s/%s/", pmu->name, alias->name);
723 return buf;
724}
725
726static char *format_alias_or(char *buf, int len, struct perf_pmu *pmu,
727 struct perf_pmu_alias *alias)
728{
729 snprintf(buf, len, "%s OR %s/%s/", alias->name, pmu->name, alias->name);
730 return buf;
731}
732
733static int cmp_string(const void *a, const void *b)
734{
735 const char * const *as = a;
736 const char * const *bs = b;
737 return strcmp(*as, *bs);
738}
739
740void print_pmu_events(const char *event_glob, bool name_only)
741{
742 struct perf_pmu *pmu;
743 struct perf_pmu_alias *alias;
744 char buf[1024];
745 int printed = 0;
746 int len, j;
747 char **aliases;
748
749 pmu = NULL;
750 len = 0;
751 while ((pmu = perf_pmu__scan(pmu)) != NULL)
752 list_for_each_entry(alias, &pmu->aliases, list)
753 len++;
754 aliases = malloc(sizeof(char *) * len);
755 if (!aliases)
756 return;
757 pmu = NULL;
758 j = 0;
759 while ((pmu = perf_pmu__scan(pmu)) != NULL)
760 list_for_each_entry(alias, &pmu->aliases, list) {
761 char *name = format_alias(buf, sizeof(buf), pmu, alias);
762 bool is_cpu = !strcmp(pmu->name, "cpu");
763
764 if (event_glob != NULL &&
765 !(strglobmatch(name, event_glob) ||
766 (!is_cpu && strglobmatch(alias->name,
767 event_glob))))
768 continue;
769 aliases[j] = name;
770 if (is_cpu && !name_only)
771 aliases[j] = format_alias_or(buf, sizeof(buf),
772 pmu, alias);
773 aliases[j] = strdup(aliases[j]);
774 j++;
775 }
776 len = j;
777 qsort(aliases, len, sizeof(char *), cmp_string);
778 for (j = 0; j < len; j++) {
779 if (name_only) {
780 printf("%s ", aliases[j]);
781 continue;
782 }
783 printf(" %-50s [Kernel PMU event]\n", aliases[j]);
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300784 zfree(&aliases[j]);
Andi Kleendc098b32013-04-20 11:02:29 -0700785 printed++;
786 }
787 if (printed)
788 printf("\n");
789 free(aliases);
790}
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700791
792bool pmu_have_event(const char *pname, const char *name)
793{
794 struct perf_pmu *pmu;
795 struct perf_pmu_alias *alias;
796
797 pmu = NULL;
798 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
799 if (strcmp(pname, pmu->name))
800 continue;
801 list_for_each_entry(alias, &pmu->aliases, list)
802 if (!strcmp(alias->name, name))
803 return true;
804 }
805 return false;
806}