perf util: Move debugfs/tracing helper functions to util.c
[linux-2.6-block.git] / tools / perf / util / parse-events.c
CommitLineData
d2709c7c 1#include <linux/hw_breakpoint.h>
8ad8db37 2#include "util.h"
6b58e7f1 3#include "../perf.h"
361c99a6 4#include "evlist.h"
69aad6f1 5#include "evsel.h"
8ad8db37
IM
6#include "parse-options.h"
7#include "parse-events.h"
8#include "exec_cmd.h"
a0055ae2 9#include "string.h"
5aab621b 10#include "symbol.h"
5beeded1 11#include "cache.h"
8755a8f2 12#include "header.h"
85c66be1 13#include <lk/debugfs.h>
ac20de6f 14#include "parse-events-bison.h"
90e2b22d 15#define YY_EXTRA_TYPE int
89812fc8 16#include "parse-events-flex.h"
5f537a26 17#include "pmu.h"
89812fc8
JO
18
19#define MAX_NAME_LEN 100
8ad8db37 20
8ad8db37 21struct event_symbol {
83a0944f
IM
22 const char *symbol;
23 const char *alias;
8ad8db37
IM
24};
25
82ba1f2f
JO
26#ifdef PARSER_DEBUG
27extern int parse_events_debug;
28#endif
ac20de6f 29int parse_events_parse(void *data, void *scanner);
bcd3279f 30
1dc12760
JO
31static struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
32 [PERF_COUNT_HW_CPU_CYCLES] = {
33 .symbol = "cpu-cycles",
34 .alias = "cycles",
35 },
36 [PERF_COUNT_HW_INSTRUCTIONS] = {
37 .symbol = "instructions",
38 .alias = "",
39 },
40 [PERF_COUNT_HW_CACHE_REFERENCES] = {
41 .symbol = "cache-references",
42 .alias = "",
43 },
44 [PERF_COUNT_HW_CACHE_MISSES] = {
45 .symbol = "cache-misses",
46 .alias = "",
47 },
48 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
49 .symbol = "branch-instructions",
50 .alias = "branches",
51 },
52 [PERF_COUNT_HW_BRANCH_MISSES] = {
53 .symbol = "branch-misses",
54 .alias = "",
55 },
56 [PERF_COUNT_HW_BUS_CYCLES] = {
57 .symbol = "bus-cycles",
58 .alias = "",
59 },
60 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
61 .symbol = "stalled-cycles-frontend",
62 .alias = "idle-cycles-frontend",
63 },
64 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
65 .symbol = "stalled-cycles-backend",
66 .alias = "idle-cycles-backend",
67 },
68 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
69 .symbol = "ref-cycles",
70 .alias = "",
71 },
72};
73
74static struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
75 [PERF_COUNT_SW_CPU_CLOCK] = {
76 .symbol = "cpu-clock",
77 .alias = "",
78 },
79 [PERF_COUNT_SW_TASK_CLOCK] = {
80 .symbol = "task-clock",
81 .alias = "",
82 },
83 [PERF_COUNT_SW_PAGE_FAULTS] = {
84 .symbol = "page-faults",
85 .alias = "faults",
86 },
87 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
88 .symbol = "context-switches",
89 .alias = "cs",
90 },
91 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
92 .symbol = "cpu-migrations",
93 .alias = "migrations",
94 },
95 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
96 .symbol = "minor-faults",
97 .alias = "",
98 },
99 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
100 .symbol = "major-faults",
101 .alias = "",
102 },
103 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
104 .symbol = "alignment-faults",
105 .alias = "",
106 },
107 [PERF_COUNT_SW_EMULATION_FAULTS] = {
108 .symbol = "emulation-faults",
109 .alias = "",
110 },
8ad8db37
IM
111};
112
cdd6c482
IM
113#define __PERF_EVENT_FIELD(config, name) \
114 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
5242519b 115
1fc570ad 116#define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
cdd6c482 117#define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
1fc570ad 118#define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
cdd6c482 119#define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
5242519b 120
6b58e7f1 121#define for_each_subsystem(sys_dir, sys_dirent, sys_next) \
f6bdafef 122 while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \
6b58e7f1 123 if (sys_dirent.d_type == DT_DIR && \
f6bdafef
JB
124 (strcmp(sys_dirent.d_name, ".")) && \
125 (strcmp(sys_dirent.d_name, "..")))
126
ae07b63f
PZ
127static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
128{
129 char evt_path[MAXPATHLEN];
130 int fd;
131
ebf294bf 132 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
ae07b63f
PZ
133 sys_dir->d_name, evt_dir->d_name);
134 fd = open(evt_path, O_RDONLY);
135 if (fd < 0)
136 return -EINVAL;
137 close(fd);
138
139 return 0;
140}
141
6b58e7f1 142#define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \
f6bdafef 143 while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \
6b58e7f1 144 if (evt_dirent.d_type == DT_DIR && \
f6bdafef 145 (strcmp(evt_dirent.d_name, ".")) && \
ae07b63f
PZ
146 (strcmp(evt_dirent.d_name, "..")) && \
147 (!tp_event_has_id(&sys_dirent, &evt_dirent)))
f6bdafef 148
270bbbe8 149#define MAX_EVENT_LENGTH 512
f6bdafef 150
f6bdafef 151
1ef2ed10 152struct tracepoint_path *tracepoint_id_to_path(u64 config)
f6bdafef 153{
1ef2ed10 154 struct tracepoint_path *path = NULL;
f6bdafef
JB
155 DIR *sys_dir, *evt_dir;
156 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
8aa8a7c8 157 char id_buf[24];
725b1368 158 int fd;
f6bdafef
JB
159 u64 id;
160 char evt_path[MAXPATHLEN];
725b1368 161 char dir_path[MAXPATHLEN];
f6bdafef 162
ebf294bf 163 if (debugfs_valid_mountpoint(tracing_events_path))
1ef2ed10 164 return NULL;
f6bdafef 165
ebf294bf 166 sys_dir = opendir(tracing_events_path);
f6bdafef 167 if (!sys_dir)
725b1368 168 return NULL;
6b58e7f1
UD
169
170 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
725b1368 171
ebf294bf 172 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
725b1368
ED
173 sys_dirent.d_name);
174 evt_dir = opendir(dir_path);
175 if (!evt_dir)
6b58e7f1 176 continue;
725b1368 177
6b58e7f1 178 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
725b1368
ED
179
180 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
f6bdafef 181 evt_dirent.d_name);
725b1368 182 fd = open(evt_path, O_RDONLY);
f6bdafef
JB
183 if (fd < 0)
184 continue;
185 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
186 close(fd);
187 continue;
188 }
189 close(fd);
190 id = atoll(id_buf);
191 if (id == config) {
192 closedir(evt_dir);
193 closedir(sys_dir);
59b4caeb 194 path = zalloc(sizeof(*path));
1ef2ed10
FW
195 path->system = malloc(MAX_EVENT_LENGTH);
196 if (!path->system) {
197 free(path);
198 return NULL;
199 }
200 path->name = malloc(MAX_EVENT_LENGTH);
201 if (!path->name) {
202 free(path->system);
203 free(path);
204 return NULL;
205 }
206 strncpy(path->system, sys_dirent.d_name,
207 MAX_EVENT_LENGTH);
208 strncpy(path->name, evt_dirent.d_name,
209 MAX_EVENT_LENGTH);
210 return path;
f6bdafef
JB
211 }
212 }
213 closedir(evt_dir);
214 }
215
f6bdafef 216 closedir(sys_dir);
1ef2ed10
FW
217 return NULL;
218}
219
1424dc96
DA
220const char *event_type(int type)
221{
222 switch (type) {
223 case PERF_TYPE_HARDWARE:
224 return "hardware";
225
226 case PERF_TYPE_SOFTWARE:
227 return "software";
228
229 case PERF_TYPE_TRACEPOINT:
230 return "tracepoint";
231
232 case PERF_TYPE_HW_CACHE:
233 return "hardware-cache";
234
235 default:
236 break;
237 }
238
239 return "unknown";
240}
241
7ae92e74
YZ
242
243
244static int __add_event(struct list_head **_list, int *idx,
245 struct perf_event_attr *attr,
246 char *name, struct cpu_map *cpus)
89812fc8
JO
247{
248 struct perf_evsel *evsel;
b847cbdc
JO
249 struct list_head *list = *_list;
250
251 if (!list) {
252 list = malloc(sizeof(*list));
253 if (!list)
254 return -ENOMEM;
255 INIT_LIST_HEAD(list);
256 }
89812fc8
JO
257
258 event_attr_init(attr);
259
260 evsel = perf_evsel__new(attr, (*idx)++);
b847cbdc
JO
261 if (!evsel) {
262 free(list);
89812fc8 263 return -ENOMEM;
b847cbdc 264 }
89812fc8 265
7ae92e74 266 evsel->cpus = cpus;
9db1763c
ACM
267 if (name)
268 evsel->name = strdup(name);
b847cbdc
JO
269 list_add_tail(&evsel->node, list);
270 *_list = list;
89812fc8
JO
271 return 0;
272}
273
7ae92e74
YZ
274static int add_event(struct list_head **_list, int *idx,
275 struct perf_event_attr *attr, char *name)
276{
277 return __add_event(_list, idx, attr, name, NULL);
278}
279
0b668bc9 280static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
8326f44d
IM
281{
282 int i, j;
61c45981 283 int n, longest = -1;
8326f44d
IM
284
285 for (i = 0; i < size; i++) {
0b668bc9 286 for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
61c45981 287 n = strlen(names[i][j]);
89812fc8 288 if (n > longest && !strncasecmp(str, names[i][j], n))
61c45981
PM
289 longest = n;
290 }
89812fc8 291 if (longest > 0)
61c45981 292 return i;
8326f44d
IM
293 }
294
8953645f 295 return -1;
8326f44d
IM
296}
297
b847cbdc 298int parse_events_add_cache(struct list_head **list, int *idx,
89812fc8 299 char *type, char *op_result1, char *op_result2)
8326f44d 300{
89812fc8
JO
301 struct perf_event_attr attr;
302 char name[MAX_NAME_LEN];
61c45981 303 int cache_type = -1, cache_op = -1, cache_result = -1;
89812fc8
JO
304 char *op_result[2] = { op_result1, op_result2 };
305 int i, n;
8326f44d 306
8326f44d
IM
307 /*
308 * No fallback - if we cannot get a clear cache type
309 * then bail out:
310 */
0b668bc9 311 cache_type = parse_aliases(type, perf_evsel__hw_cache,
89812fc8 312 PERF_COUNT_HW_CACHE_MAX);
8326f44d 313 if (cache_type == -1)
89812fc8
JO
314 return -EINVAL;
315
316 n = snprintf(name, MAX_NAME_LEN, "%s", type);
61c45981 317
89812fc8
JO
318 for (i = 0; (i < 2) && (op_result[i]); i++) {
319 char *str = op_result[i];
320
275ef387 321 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
61c45981
PM
322
323 if (cache_op == -1) {
0b668bc9 324 cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
89812fc8 325 PERF_COUNT_HW_CACHE_OP_MAX);
61c45981 326 if (cache_op >= 0) {
0b668bc9 327 if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
89812fc8 328 return -EINVAL;
61c45981
PM
329 continue;
330 }
331 }
332
333 if (cache_result == -1) {
0b668bc9
ACM
334 cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
335 PERF_COUNT_HW_CACHE_RESULT_MAX);
61c45981
PM
336 if (cache_result >= 0)
337 continue;
338 }
61c45981 339 }
8326f44d 340
8326f44d
IM
341 /*
342 * Fall back to reads:
343 */
8953645f
IM
344 if (cache_op == -1)
345 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
8326f44d 346
8326f44d
IM
347 /*
348 * Fall back to accesses:
349 */
350 if (cache_result == -1)
351 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
352
89812fc8
JO
353 memset(&attr, 0, sizeof(attr));
354 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
355 attr.type = PERF_TYPE_HW_CACHE;
356 return add_event(list, idx, &attr, name);
bcd3279f
FW
357}
358
82fe1c29 359static int add_tracepoint(struct list_head **listp, int *idx,
89812fc8 360 char *sys_name, char *evt_name)
bcd3279f 361{
82fe1c29
ACM
362 struct perf_evsel *evsel;
363 struct list_head *list = *listp;
bcd3279f 364
82fe1c29
ACM
365 if (!list) {
366 list = malloc(sizeof(*list));
367 if (!list)
368 return -ENOMEM;
369 INIT_LIST_HEAD(list);
bcd3279f
FW
370 }
371
82fe1c29
ACM
372 evsel = perf_evsel__newtp(sys_name, evt_name, (*idx)++);
373 if (!evsel) {
374 free(list);
375 return -ENOMEM;
376 }
bcd3279f 377
82fe1c29
ACM
378 list_add_tail(&evsel->node, list);
379 *listp = list;
380 return 0;
8326f44d
IM
381}
382
f35488f9
JO
383static int add_tracepoint_multi_event(struct list_head **list, int *idx,
384 char *sys_name, char *evt_name)
bcd3279f
FW
385{
386 char evt_path[MAXPATHLEN];
387 struct dirent *evt_ent;
388 DIR *evt_dir;
89812fc8 389 int ret = 0;
bcd3279f 390
ebf294bf 391 snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
bcd3279f 392 evt_dir = opendir(evt_path);
bcd3279f
FW
393 if (!evt_dir) {
394 perror("Can't open event dir");
89812fc8 395 return -1;
bcd3279f
FW
396 }
397
89812fc8 398 while (!ret && (evt_ent = readdir(evt_dir))) {
bcd3279f
FW
399 if (!strcmp(evt_ent->d_name, ".")
400 || !strcmp(evt_ent->d_name, "..")
401 || !strcmp(evt_ent->d_name, "enable")
402 || !strcmp(evt_ent->d_name, "filter"))
403 continue;
404
89812fc8 405 if (!strglobmatch(evt_ent->d_name, evt_name))
fb1d2edf
MH
406 continue;
407
89812fc8 408 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name);
bcd3279f
FW
409 }
410
0bd3f084 411 closedir(evt_dir);
89812fc8 412 return ret;
bcd3279f
FW
413}
414
f35488f9
JO
415static int add_tracepoint_event(struct list_head **list, int *idx,
416 char *sys_name, char *evt_name)
417{
418 return strpbrk(evt_name, "*?") ?
419 add_tracepoint_multi_event(list, idx, sys_name, evt_name) :
420 add_tracepoint(list, idx, sys_name, evt_name);
421}
422
423static int add_tracepoint_multi_sys(struct list_head **list, int *idx,
424 char *sys_name, char *evt_name)
425{
426 struct dirent *events_ent;
427 DIR *events_dir;
428 int ret = 0;
429
430 events_dir = opendir(tracing_events_path);
431 if (!events_dir) {
432 perror("Can't open event dir");
433 return -1;
434 }
435
436 while (!ret && (events_ent = readdir(events_dir))) {
437 if (!strcmp(events_ent->d_name, ".")
438 || !strcmp(events_ent->d_name, "..")
439 || !strcmp(events_ent->d_name, "enable")
440 || !strcmp(events_ent->d_name, "header_event")
441 || !strcmp(events_ent->d_name, "header_page"))
442 continue;
443
444 if (!strglobmatch(events_ent->d_name, sys_name))
445 continue;
446
447 ret = add_tracepoint_event(list, idx, events_ent->d_name,
448 evt_name);
449 }
450
451 closedir(events_dir);
452 return ret;
453}
454
b847cbdc 455int parse_events_add_tracepoint(struct list_head **list, int *idx,
89812fc8 456 char *sys, char *event)
f6bdafef 457{
89812fc8 458 int ret;
f6bdafef 459
89812fc8
JO
460 ret = debugfs_valid_mountpoint(tracing_events_path);
461 if (ret)
462 return ret;
f6bdafef 463
f35488f9
JO
464 if (strpbrk(sys, "*?"))
465 return add_tracepoint_multi_sys(list, idx, sys, event);
466 else
467 return add_tracepoint_event(list, idx, sys, event);
f6bdafef
JB
468}
469
89812fc8
JO
470static int
471parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
1b290d67
FW
472{
473 int i;
474
475 for (i = 0; i < 3; i++) {
89812fc8 476 if (!type || !type[i])
1b290d67
FW
477 break;
478
7582732f
JO
479#define CHECK_SET_TYPE(bit) \
480do { \
481 if (attr->bp_type & bit) \
482 return -EINVAL; \
483 else \
484 attr->bp_type |= bit; \
485} while (0)
486
1b290d67
FW
487 switch (type[i]) {
488 case 'r':
7582732f 489 CHECK_SET_TYPE(HW_BREAKPOINT_R);
1b290d67
FW
490 break;
491 case 'w':
7582732f 492 CHECK_SET_TYPE(HW_BREAKPOINT_W);
1b290d67
FW
493 break;
494 case 'x':
7582732f 495 CHECK_SET_TYPE(HW_BREAKPOINT_X);
1b290d67
FW
496 break;
497 default:
89812fc8 498 return -EINVAL;
1b290d67
FW
499 }
500 }
89812fc8 501
7582732f
JO
502#undef CHECK_SET_TYPE
503
1b290d67
FW
504 if (!attr->bp_type) /* Default */
505 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
506
89812fc8 507 return 0;
1b290d67
FW
508}
509
b847cbdc 510int parse_events_add_breakpoint(struct list_head **list, int *idx,
89812fc8 511 void *ptr, char *type)
1b290d67 512{
89812fc8 513 struct perf_event_attr attr;
1b290d67 514
89812fc8 515 memset(&attr, 0, sizeof(attr));
9fafd98f 516 attr.bp_addr = (unsigned long) ptr;
1b290d67 517
89812fc8
JO
518 if (parse_breakpoint_type(type, &attr))
519 return -EINVAL;
1b290d67 520
aa59a485
FW
521 /*
522 * We should find a nice way to override the access length
523 * Provide some defaults for now
524 */
89812fc8
JO
525 if (attr.bp_type == HW_BREAKPOINT_X)
526 attr.bp_len = sizeof(long);
aa59a485 527 else
89812fc8 528 attr.bp_len = HW_BREAKPOINT_LEN_4;
61c45981 529
89812fc8 530 attr.type = PERF_TYPE_BREAKPOINT;
4a841d65 531 attr.sample_period = 1;
b908debd 532
287e74aa 533 return add_event(list, idx, &attr, NULL);
74d5b588
JSR
534}
535
8f707d84 536static int config_term(struct perf_event_attr *attr,
6cee6cd3 537 struct parse_events_term *term)
8f707d84 538{
16fa7e82
JO
539#define CHECK_TYPE_VAL(type) \
540do { \
541 if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \
542 return -EINVAL; \
543} while (0)
544
545 switch (term->type_term) {
8f707d84 546 case PARSE_EVENTS__TERM_TYPE_CONFIG:
16fa7e82 547 CHECK_TYPE_VAL(NUM);
8f707d84
JO
548 attr->config = term->val.num;
549 break;
550 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
16fa7e82 551 CHECK_TYPE_VAL(NUM);
8f707d84
JO
552 attr->config1 = term->val.num;
553 break;
554 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
16fa7e82 555 CHECK_TYPE_VAL(NUM);
8f707d84
JO
556 attr->config2 = term->val.num;
557 break;
558 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
16fa7e82 559 CHECK_TYPE_VAL(NUM);
8f707d84
JO
560 attr->sample_period = term->val.num;
561 break;
562 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
563 /*
564 * TODO uncomment when the field is available
565 * attr->branch_sample_type = term->val.num;
566 */
567 break;
6b5fc39b
JO
568 case PARSE_EVENTS__TERM_TYPE_NAME:
569 CHECK_TYPE_VAL(STR);
570 break;
8f707d84
JO
571 default:
572 return -EINVAL;
573 }
16fa7e82 574
8f707d84 575 return 0;
16fa7e82 576#undef CHECK_TYPE_VAL
8f707d84
JO
577}
578
579static int config_attr(struct perf_event_attr *attr,
580 struct list_head *head, int fail)
581{
6cee6cd3 582 struct parse_events_term *term;
8f707d84
JO
583
584 list_for_each_entry(term, head, list)
585 if (config_term(attr, term) && fail)
586 return -EINVAL;
587
588 return 0;
589}
590
b847cbdc 591int parse_events_add_numeric(struct list_head **list, int *idx,
b527bab5 592 u32 type, u64 config,
8f707d84 593 struct list_head *head_config)
8ad8db37 594{
89812fc8 595 struct perf_event_attr attr;
61c45981 596
89812fc8
JO
597 memset(&attr, 0, sizeof(attr));
598 attr.type = type;
599 attr.config = config;
8f707d84
JO
600
601 if (head_config &&
602 config_attr(&attr, head_config, 1))
603 return -EINVAL;
604
9db1763c 605 return add_event(list, idx, &attr, NULL);
61c45981 606}
8ad8db37 607
6cee6cd3 608static int parse_events__is_name_term(struct parse_events_term *term)
6b5fc39b
JO
609{
610 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
611}
612
9db1763c 613static char *pmu_event_name(struct list_head *head_terms)
6b5fc39b 614{
6cee6cd3 615 struct parse_events_term *term;
6b5fc39b
JO
616
617 list_for_each_entry(term, head_terms, list)
618 if (parse_events__is_name_term(term))
619 return term->val.str;
620
9db1763c 621 return NULL;
6b5fc39b
JO
622}
623
b847cbdc 624int parse_events_add_pmu(struct list_head **list, int *idx,
5f537a26
JO
625 char *name, struct list_head *head_config)
626{
627 struct perf_event_attr attr;
628 struct perf_pmu *pmu;
629
630 pmu = perf_pmu__find(name);
631 if (!pmu)
632 return -EINVAL;
633
634 memset(&attr, 0, sizeof(attr));
635
a6146d50
ZY
636 if (perf_pmu__check_alias(pmu, head_config))
637 return -EINVAL;
638
5f537a26
JO
639 /*
640 * Configure hardcoded terms first, no need to check
641 * return value when called with fail == 0 ;)
642 */
643 config_attr(&attr, head_config, 0);
644
645 if (perf_pmu__config(pmu, &attr, head_config))
646 return -EINVAL;
647
7ae92e74
YZ
648 return __add_event(list, idx, &attr, pmu_event_name(head_config),
649 pmu->cpus);
5f537a26
JO
650}
651
6a4bb04c
JO
652int parse_events__modifier_group(struct list_head *list,
653 char *event_mod)
89efb029 654{
6a4bb04c
JO
655 return parse_events__modifier_event(list, event_mod, true);
656}
657
63dab225 658void parse_events__set_leader(char *name, struct list_head *list)
6a4bb04c
JO
659{
660 struct perf_evsel *leader;
661
63dab225
ACM
662 __perf_evlist__set_leader(list);
663 leader = list_entry(list->next, struct perf_evsel, node);
6a4bb04c 664 leader->group_name = name ? strdup(name) : NULL;
89efb029
JO
665}
666
5d7be90e
JO
667void parse_events_update_lists(struct list_head *list_event,
668 struct list_head *list_all)
669{
670 /*
671 * Called for single event definition. Update the
89efb029 672 * 'all event' list, and reinit the 'single event'
5d7be90e
JO
673 * list, for next event definition.
674 */
675 list_splice_tail(list_event, list_all);
b847cbdc 676 free(list_event);
5d7be90e
JO
677}
678
f5b1135b
JO
679struct event_modifier {
680 int eu;
681 int ek;
682 int eh;
683 int eH;
684 int eG;
685 int precise;
686 int exclude_GH;
687};
688
689static int get_event_modifier(struct event_modifier *mod, char *str,
690 struct perf_evsel *evsel)
61c45981 691{
f5b1135b
JO
692 int eu = evsel ? evsel->attr.exclude_user : 0;
693 int ek = evsel ? evsel->attr.exclude_kernel : 0;
694 int eh = evsel ? evsel->attr.exclude_hv : 0;
695 int eH = evsel ? evsel->attr.exclude_host : 0;
696 int eG = evsel ? evsel->attr.exclude_guest : 0;
697 int precise = evsel ? evsel->attr.precise_ip : 0;
a21ca2ca 698
f5b1135b
JO
699 int exclude = eu | ek | eh;
700 int exclude_GH = evsel ? evsel->exclude_GH : 0;
701
f5b1135b 702 memset(mod, 0, sizeof(*mod));
ceb53fbf 703
61c45981 704 while (*str) {
ab608344
PZ
705 if (*str == 'u') {
706 if (!exclude)
707 exclude = eu = ek = eh = 1;
61c45981 708 eu = 0;
ab608344
PZ
709 } else if (*str == 'k') {
710 if (!exclude)
711 exclude = eu = ek = eh = 1;
61c45981 712 ek = 0;
ab608344
PZ
713 } else if (*str == 'h') {
714 if (!exclude)
715 exclude = eu = ek = eh = 1;
61c45981 716 eh = 0;
99320cc8
JR
717 } else if (*str == 'G') {
718 if (!exclude_GH)
719 exclude_GH = eG = eH = 1;
720 eG = 0;
721 } else if (*str == 'H') {
722 if (!exclude_GH)
723 exclude_GH = eG = eH = 1;
724 eH = 0;
ab608344
PZ
725 } else if (*str == 'p') {
726 precise++;
1342798c
DA
727 /* use of precise requires exclude_guest */
728 if (!exclude_GH)
729 eG = 1;
ab608344 730 } else
61c45981 731 break;
ab608344 732
61c45981 733 ++str;
5242519b 734 }
ceb53fbf 735
89812fc8
JO
736 /*
737 * precise ip:
738 *
739 * 0 - SAMPLE_IP can have arbitrary skid
740 * 1 - SAMPLE_IP must have constant skid
741 * 2 - SAMPLE_IP requested to have 0 skid
742 * 3 - SAMPLE_IP must have 0 skid
743 *
744 * See also PERF_RECORD_MISC_EXACT_IP
745 */
746 if (precise > 3)
747 return -EINVAL;
ceb53fbf 748
f5b1135b
JO
749 mod->eu = eu;
750 mod->ek = ek;
751 mod->eh = eh;
752 mod->eH = eH;
753 mod->eG = eG;
754 mod->precise = precise;
755 mod->exclude_GH = exclude_GH;
756 return 0;
757}
758
534123f4
JO
759/*
760 * Basic modifier sanity check to validate it contains only one
761 * instance of any modifier (apart from 'p') present.
762 */
763static int check_modifier(char *str)
764{
765 char *p = str;
766
767 /* The sizeof includes 0 byte as well. */
768 if (strlen(str) > (sizeof("ukhGHppp") - 1))
769 return -1;
770
771 while (*p) {
772 if (*p != 'p' && strchr(p + 1, *p))
773 return -1;
774 p++;
775 }
776
777 return 0;
778}
779
f5b1135b
JO
780int parse_events__modifier_event(struct list_head *list, char *str, bool add)
781{
782 struct perf_evsel *evsel;
783 struct event_modifier mod;
784
785 if (str == NULL)
786 return 0;
787
534123f4
JO
788 if (check_modifier(str))
789 return -EINVAL;
790
f5b1135b
JO
791 if (!add && get_event_modifier(&mod, str, NULL))
792 return -EINVAL;
793
89812fc8 794 list_for_each_entry(evsel, list, node) {
f5b1135b
JO
795
796 if (add && get_event_modifier(&mod, str, evsel))
797 return -EINVAL;
798
799 evsel->attr.exclude_user = mod.eu;
800 evsel->attr.exclude_kernel = mod.ek;
801 evsel->attr.exclude_hv = mod.eh;
802 evsel->attr.precise_ip = mod.precise;
803 evsel->attr.exclude_host = mod.eH;
804 evsel->attr.exclude_guest = mod.eG;
805 evsel->exclude_GH = mod.exclude_GH;
89812fc8 806 }
ceb53fbf 807
61c45981
PM
808 return 0;
809}
8ad8db37 810
ac2ba9f3
RR
811int parse_events_name(struct list_head *list, char *name)
812{
813 struct perf_evsel *evsel;
814
815 list_for_each_entry(evsel, list, node) {
816 if (!evsel->name)
817 evsel->name = strdup(name);
818 }
819
820 return 0;
821}
822
90e2b22d 823static int parse_events__scanner(const char *str, void *data, int start_token)
61c45981 824{
89812fc8 825 YY_BUFFER_STATE buffer;
ac20de6f 826 void *scanner;
46010ab2 827 int ret;
bcd3279f 828
90e2b22d 829 ret = parse_events_lex_init_extra(start_token, &scanner);
ac20de6f
ZY
830 if (ret)
831 return ret;
832
833 buffer = parse_events__scan_string(str, scanner);
a21ca2ca 834
82ba1f2f
JO
835#ifdef PARSER_DEBUG
836 parse_events_debug = 1;
837#endif
ac20de6f
ZY
838 ret = parse_events_parse(data, scanner);
839
840 parse_events__flush_buffer(buffer, scanner);
841 parse_events__delete_buffer(buffer, scanner);
842 parse_events_lex_destroy(scanner);
843 return ret;
844}
bcd3279f 845
90e2b22d
JO
846/*
847 * parse event config string, return a list of event terms.
848 */
849int parse_events_terms(struct list_head *terms, const char *str)
850{
23b6339b 851 struct parse_events_terms data = {
90e2b22d
JO
852 .terms = NULL,
853 };
854 int ret;
855
856 ret = parse_events__scanner(str, &data, PE_START_TERMS);
857 if (!ret) {
858 list_splice(data.terms, terms);
859 free(data.terms);
860 return 0;
861 }
862
b2c34fde
AH
863 if (data.terms)
864 parse_events__free_terms(data.terms);
90e2b22d
JO
865 return ret;
866}
867
d8f7bbc9 868int parse_events(struct perf_evlist *evlist, const char *str)
ac20de6f 869{
23b6339b 870 struct parse_events_evlist data = {
ac20de6f
ZY
871 .list = LIST_HEAD_INIT(data.list),
872 .idx = evlist->nr_entries,
873 };
874 int ret;
bcd3279f 875
90e2b22d 876 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
89812fc8 877 if (!ret) {
46010ab2
JO
878 int entries = data.idx - evlist->nr_entries;
879 perf_evlist__splice_list_tail(evlist, &data.list, entries);
97f63e4a 880 evlist->nr_groups += data.nr_groups;
89812fc8
JO
881 return 0;
882 }
bcd3279f 883
5d7be90e
JO
884 /*
885 * There are 2 users - builtin-record and builtin-test objects.
886 * Both call perf_evlist__delete in case of error, so we dont
887 * need to bother.
888 */
bcd3279f 889 return ret;
8ad8db37
IM
890}
891
f120f9d5 892int parse_events_option(const struct option *opt, const char *str,
1d037ca1 893 int unset __maybe_unused)
f120f9d5
JO
894{
895 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
d8f7bbc9 896 int ret = parse_events(evlist, str);
9175ce1f
AK
897
898 if (ret) {
899 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
900 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
901 }
902 return ret;
f120f9d5
JO
903}
904
361c99a6 905int parse_filter(const struct option *opt, const char *str,
1d037ca1 906 int unset __maybe_unused)
c171b552 907{
361c99a6 908 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
69aad6f1 909 struct perf_evsel *last = NULL;
c171b552 910
361c99a6 911 if (evlist->nr_entries > 0)
0c21f736 912 last = perf_evlist__last(evlist);
69aad6f1
ACM
913
914 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
c171b552
LZ
915 fprintf(stderr,
916 "-F option should follow a -e tracepoint option\n");
917 return -1;
918 }
919
69aad6f1
ACM
920 last->filter = strdup(str);
921 if (last->filter == NULL) {
c171b552
LZ
922 fprintf(stderr, "not enough memory to hold filter string\n");
923 return -1;
924 }
c171b552
LZ
925
926 return 0;
927}
928
86847b62 929static const char * const event_type_descriptors[] = {
86847b62
TG
930 "Hardware event",
931 "Software event",
932 "Tracepoint event",
933 "Hardware cache event",
41bdcb23
LW
934 "Raw hardware event descriptor",
935 "Hardware breakpoint",
86847b62
TG
936};
937
f6bdafef
JB
938/*
939 * Print the events from <debugfs_mount_point>/tracing/events
940 */
941
a3277d2d
FW
942void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
943 bool name_only)
f6bdafef
JB
944{
945 DIR *sys_dir, *evt_dir;
946 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
f6bdafef 947 char evt_path[MAXPATHLEN];
725b1368 948 char dir_path[MAXPATHLEN];
f6bdafef 949
ebf294bf 950 if (debugfs_valid_mountpoint(tracing_events_path))
f6bdafef
JB
951 return;
952
ebf294bf 953 sys_dir = opendir(tracing_events_path);
f6bdafef 954 if (!sys_dir)
725b1368 955 return;
6b58e7f1
UD
956
957 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
668b8788
ACM
958 if (subsys_glob != NULL &&
959 !strglobmatch(sys_dirent.d_name, subsys_glob))
960 continue;
725b1368 961
ebf294bf 962 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
725b1368
ED
963 sys_dirent.d_name);
964 evt_dir = opendir(dir_path);
965 if (!evt_dir)
6b58e7f1 966 continue;
725b1368 967
6b58e7f1 968 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
668b8788
ACM
969 if (event_glob != NULL &&
970 !strglobmatch(evt_dirent.d_name, event_glob))
971 continue;
972
a3277d2d
FW
973 if (name_only) {
974 printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name);
975 continue;
976 }
977
f6bdafef
JB
978 snprintf(evt_path, MAXPATHLEN, "%s:%s",
979 sys_dirent.d_name, evt_dirent.d_name);
947b4ad1 980 printf(" %-50s [%s]\n", evt_path,
41bdcb23 981 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
f6bdafef
JB
982 }
983 closedir(evt_dir);
984 }
f6bdafef
JB
985 closedir(sys_dir);
986}
987
20c457b8
TR
988/*
989 * Check whether event is in <debugfs_mount_point>/tracing/events
990 */
991
992int is_valid_tracepoint(const char *event_string)
993{
994 DIR *sys_dir, *evt_dir;
995 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
996 char evt_path[MAXPATHLEN];
997 char dir_path[MAXPATHLEN];
998
ebf294bf 999 if (debugfs_valid_mountpoint(tracing_events_path))
20c457b8
TR
1000 return 0;
1001
ebf294bf 1002 sys_dir = opendir(tracing_events_path);
20c457b8
TR
1003 if (!sys_dir)
1004 return 0;
1005
1006 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
1007
ebf294bf 1008 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
20c457b8
TR
1009 sys_dirent.d_name);
1010 evt_dir = opendir(dir_path);
1011 if (!evt_dir)
1012 continue;
1013
1014 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
1015 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1016 sys_dirent.d_name, evt_dirent.d_name);
1017 if (!strcmp(evt_path, event_string)) {
1018 closedir(evt_dir);
1019 closedir(sys_dir);
1020 return 1;
1021 }
1022 }
1023 closedir(evt_dir);
1024 }
1025 closedir(sys_dir);
1026 return 0;
1027}
1028
1dc12760
JO
1029static void __print_events_type(u8 type, struct event_symbol *syms,
1030 unsigned max)
668b8788 1031{
668b8788 1032 char name[64];
1dc12760 1033 unsigned i;
668b8788 1034
1dc12760 1035 for (i = 0; i < max ; i++, syms++) {
668b8788
ACM
1036 if (strlen(syms->alias))
1037 snprintf(name, sizeof(name), "%s OR %s",
1038 syms->symbol, syms->alias);
1039 else
1040 snprintf(name, sizeof(name), "%s", syms->symbol);
1041
947b4ad1 1042 printf(" %-50s [%s]\n", name,
668b8788
ACM
1043 event_type_descriptors[type]);
1044 }
1045}
1046
1dc12760
JO
1047void print_events_type(u8 type)
1048{
1049 if (type == PERF_TYPE_SOFTWARE)
1050 __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX);
1051 else
1052 __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX);
1053}
1054
a3277d2d 1055int print_hwcache_events(const char *event_glob, bool name_only)
668b8788
ACM
1056{
1057 unsigned int type, op, i, printed = 0;
0b668bc9 1058 char name[64];
668b8788
ACM
1059
1060 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
1061 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
1062 /* skip invalid cache type */
0b668bc9 1063 if (!perf_evsel__is_cache_op_valid(type, op))
668b8788
ACM
1064 continue;
1065
1066 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
0b668bc9
ACM
1067 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
1068 name, sizeof(name));
947b4ad1 1069 if (event_glob != NULL && !strglobmatch(name, event_glob))
668b8788
ACM
1070 continue;
1071
a3277d2d
FW
1072 if (name_only)
1073 printf("%s ", name);
1074 else
1075 printf(" %-50s [%s]\n", name,
1076 event_type_descriptors[PERF_TYPE_HW_CACHE]);
668b8788
ACM
1077 ++printed;
1078 }
1079 }
1080 }
1081
1082 return printed;
1083}
1084
1dc12760 1085static void print_symbol_events(const char *event_glob, unsigned type,
a3277d2d
FW
1086 struct event_symbol *syms, unsigned max,
1087 bool name_only)
8ad8db37 1088{
1dc12760 1089 unsigned i, printed = 0;
947b4ad1 1090 char name[MAX_NAME_LEN];
8ad8db37 1091
1dc12760 1092 for (i = 0; i < max; i++, syms++) {
668b8788
ACM
1093
1094 if (event_glob != NULL &&
1095 !(strglobmatch(syms->symbol, event_glob) ||
1096 (syms->alias && strglobmatch(syms->alias, event_glob))))
1097 continue;
8ad8db37 1098
a3277d2d
FW
1099 if (name_only) {
1100 printf("%s ", syms->symbol);
1101 continue;
1102 }
1103
74d5b588 1104 if (strlen(syms->alias))
947b4ad1 1105 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
74d5b588 1106 else
947b4ad1 1107 strncpy(name, syms->symbol, MAX_NAME_LEN);
8ad8db37 1108
1dc12760
JO
1109 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1110
1111 printed++;
8ad8db37
IM
1112 }
1113
1dc12760 1114 if (printed)
668b8788 1115 printf("\n");
1dc12760
JO
1116}
1117
1118/*
1119 * Print the help text for the event symbols:
1120 */
a3277d2d 1121void print_events(const char *event_glob, bool name_only)
1dc12760 1122{
a3277d2d
FW
1123 if (!name_only) {
1124 printf("\n");
1125 printf("List of pre-defined events (to be used in -e):\n");
1126 }
1dc12760
JO
1127
1128 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
a3277d2d 1129 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1dc12760
JO
1130
1131 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
a3277d2d 1132 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1dc12760 1133
a3277d2d 1134 print_hwcache_events(event_glob, name_only);
668b8788
ACM
1135
1136 if (event_glob != NULL)
1137 return;
73c24cb8 1138
a3277d2d
FW
1139 if (!name_only) {
1140 printf("\n");
1141 printf(" %-50s [%s]\n",
1142 "rNNN",
1143 event_type_descriptors[PERF_TYPE_RAW]);
1144 printf(" %-50s [%s]\n",
1145 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
1146 event_type_descriptors[PERF_TYPE_RAW]);
af3df2cf 1147 printf(" (see 'man perf-list' on how to encode it)\n");
a3277d2d
FW
1148 printf("\n");
1149
1150 printf(" %-50s [%s]\n",
1151 "mem:<addr>[:access]",
41bdcb23 1152 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
a3277d2d
FW
1153 printf("\n");
1154 }
1b290d67 1155
a3277d2d 1156 print_tracepoint_events(NULL, NULL, name_only);
8ad8db37 1157}
8f707d84 1158
6cee6cd3 1159int parse_events__is_hardcoded_term(struct parse_events_term *term)
8f707d84 1160{
16fa7e82 1161 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
8f707d84
JO
1162}
1163
6cee6cd3 1164static int new_term(struct parse_events_term **_term, int type_val,
16fa7e82 1165 int type_term, char *config,
b527bab5 1166 char *str, u64 num)
8f707d84 1167{
6cee6cd3 1168 struct parse_events_term *term;
8f707d84
JO
1169
1170 term = zalloc(sizeof(*term));
1171 if (!term)
1172 return -ENOMEM;
1173
1174 INIT_LIST_HEAD(&term->list);
16fa7e82
JO
1175 term->type_val = type_val;
1176 term->type_term = type_term;
8f707d84
JO
1177 term->config = config;
1178
16fa7e82 1179 switch (type_val) {
8f707d84
JO
1180 case PARSE_EVENTS__TERM_TYPE_NUM:
1181 term->val.num = num;
1182 break;
1183 case PARSE_EVENTS__TERM_TYPE_STR:
1184 term->val.str = str;
1185 break;
1186 default:
4be8be6b 1187 free(term);
8f707d84
JO
1188 return -EINVAL;
1189 }
1190
1191 *_term = term;
1192 return 0;
1193}
1194
6cee6cd3 1195int parse_events_term__num(struct parse_events_term **term,
b527bab5 1196 int type_term, char *config, u64 num)
16fa7e82
JO
1197{
1198 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
1199 config, NULL, num);
1200}
1201
6cee6cd3 1202int parse_events_term__str(struct parse_events_term **term,
16fa7e82
JO
1203 int type_term, char *config, char *str)
1204{
1205 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
1206 config, str, 0);
1207}
1208
6cee6cd3 1209int parse_events_term__sym_hw(struct parse_events_term **term,
1d33d6dc
JO
1210 char *config, unsigned idx)
1211{
1212 struct event_symbol *sym;
1213
1214 BUG_ON(idx >= PERF_COUNT_HW_MAX);
1215 sym = &event_symbols_hw[idx];
1216
1217 if (config)
1218 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1219 PARSE_EVENTS__TERM_TYPE_USER, config,
1220 (char *) sym->symbol, 0);
1221 else
1222 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1223 PARSE_EVENTS__TERM_TYPE_USER,
1224 (char *) "event", (char *) sym->symbol, 0);
1225}
1226
6cee6cd3
ACM
1227int parse_events_term__clone(struct parse_events_term **new,
1228 struct parse_events_term *term)
a6146d50
ZY
1229{
1230 return new_term(new, term->type_val, term->type_term, term->config,
1231 term->val.str, term->val.num);
1232}
1233
8f707d84
JO
1234void parse_events__free_terms(struct list_head *terms)
1235{
6cee6cd3 1236 struct parse_events_term *term, *h;
8f707d84
JO
1237
1238 list_for_each_entry_safe(term, h, terms, list)
1239 free(term);
1240
1241 free(terms);
1242}