perf evlist: Make {pause,resume} internal helpers
[linux-2.6-block.git] / tools / perf / util / parse-events.c
CommitLineData
d2709c7c 1#include <linux/hw_breakpoint.h>
8dd2a131 2#include <linux/err.h>
8ad8db37 3#include "util.h"
6b58e7f1 4#include "../perf.h"
361c99a6 5#include "evlist.h"
69aad6f1 6#include "evsel.h"
4b6ab94e 7#include <subcmd/parse-options.h>
8ad8db37 8#include "parse-events.h"
4b6ab94e 9#include <subcmd/exec-cmd.h>
42f60c2d 10#include "string.h"
5aab621b 11#include "symbol.h"
5beeded1 12#include "cache.h"
8755a8f2 13#include "header.h"
84c86ca1 14#include "bpf-loader.h"
6e81c74c 15#include "debug.h"
592d5a6b 16#include <api/fs/tracing_path.h>
ac20de6f 17#include "parse-events-bison.h"
90e2b22d 18#define YY_EXTRA_TYPE int
89812fc8 19#include "parse-events-flex.h"
5f537a26 20#include "pmu.h"
b41f1cec 21#include "thread_map.h"
f30a79b0 22#include "cpumap.h"
40218dae 23#include "probe-file.h"
b39b8393 24#include "asm/bug.h"
89812fc8
JO
25
26#define MAX_NAME_LEN 100
8ad8db37 27
82ba1f2f
JO
28#ifdef PARSER_DEBUG
29extern int parse_events_debug;
30#endif
ac20de6f 31int parse_events_parse(void *data, void *scanner);
e637d177
HK
32static int get_config_terms(struct list_head *head_config,
33 struct list_head *head_terms __maybe_unused);
bcd3279f 34
dcb4e102
KL
35static struct perf_pmu_event_symbol *perf_pmu_events_list;
36/*
37 * The variable indicates the number of supported pmu event symbols.
38 * 0 means not initialized and ready to init
39 * -1 means failed to init, don't try anymore
40 * >0 is the number of supported pmu event symbols
41 */
42static int perf_pmu_events_list_num;
43
705750f2 44struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
1dc12760
JO
45 [PERF_COUNT_HW_CPU_CYCLES] = {
46 .symbol = "cpu-cycles",
47 .alias = "cycles",
48 },
49 [PERF_COUNT_HW_INSTRUCTIONS] = {
50 .symbol = "instructions",
51 .alias = "",
52 },
53 [PERF_COUNT_HW_CACHE_REFERENCES] = {
54 .symbol = "cache-references",
55 .alias = "",
56 },
57 [PERF_COUNT_HW_CACHE_MISSES] = {
58 .symbol = "cache-misses",
59 .alias = "",
60 },
61 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
62 .symbol = "branch-instructions",
63 .alias = "branches",
64 },
65 [PERF_COUNT_HW_BRANCH_MISSES] = {
66 .symbol = "branch-misses",
67 .alias = "",
68 },
69 [PERF_COUNT_HW_BUS_CYCLES] = {
70 .symbol = "bus-cycles",
71 .alias = "",
72 },
73 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
74 .symbol = "stalled-cycles-frontend",
75 .alias = "idle-cycles-frontend",
76 },
77 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
78 .symbol = "stalled-cycles-backend",
79 .alias = "idle-cycles-backend",
80 },
81 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
82 .symbol = "ref-cycles",
83 .alias = "",
84 },
85};
86
705750f2 87struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
1dc12760
JO
88 [PERF_COUNT_SW_CPU_CLOCK] = {
89 .symbol = "cpu-clock",
90 .alias = "",
91 },
92 [PERF_COUNT_SW_TASK_CLOCK] = {
93 .symbol = "task-clock",
94 .alias = "",
95 },
96 [PERF_COUNT_SW_PAGE_FAULTS] = {
97 .symbol = "page-faults",
98 .alias = "faults",
99 },
100 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
101 .symbol = "context-switches",
102 .alias = "cs",
103 },
104 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
105 .symbol = "cpu-migrations",
106 .alias = "migrations",
107 },
108 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
109 .symbol = "minor-faults",
110 .alias = "",
111 },
112 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
113 .symbol = "major-faults",
114 .alias = "",
115 },
116 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
117 .symbol = "alignment-faults",
118 .alias = "",
119 },
120 [PERF_COUNT_SW_EMULATION_FAULTS] = {
121 .symbol = "emulation-faults",
122 .alias = "",
123 },
d22d1a2a
AH
124 [PERF_COUNT_SW_DUMMY] = {
125 .symbol = "dummy",
126 .alias = "",
127 },
bae9cc41
ACM
128 [PERF_COUNT_SW_BPF_OUTPUT] = {
129 .symbol = "bpf-output",
130 .alias = "",
131 },
8ad8db37
IM
132};
133
cdd6c482
IM
134#define __PERF_EVENT_FIELD(config, name) \
135 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
5242519b 136
1fc570ad 137#define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
cdd6c482 138#define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
1fc570ad 139#define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
cdd6c482 140#define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
5242519b 141
22a9f41b
ACM
142#define for_each_subsystem(sys_dir, sys_dirent) \
143 while ((sys_dirent = readdir(sys_dir)) != NULL) \
144 if (sys_dirent->d_type == DT_DIR && \
145 (strcmp(sys_dirent->d_name, ".")) && \
146 (strcmp(sys_dirent->d_name, "..")))
f6bdafef 147
ae07b63f
PZ
148static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
149{
150 char evt_path[MAXPATHLEN];
151 int fd;
152
ebf294bf 153 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
ae07b63f
PZ
154 sys_dir->d_name, evt_dir->d_name);
155 fd = open(evt_path, O_RDONLY);
156 if (fd < 0)
157 return -EINVAL;
158 close(fd);
159
160 return 0;
161}
162
22a9f41b
ACM
163#define for_each_event(sys_dirent, evt_dir, evt_dirent) \
164 while ((evt_dirent = readdir(evt_dir)) != NULL) \
165 if (evt_dirent->d_type == DT_DIR && \
166 (strcmp(evt_dirent->d_name, ".")) && \
167 (strcmp(evt_dirent->d_name, "..")) && \
168 (!tp_event_has_id(sys_dirent, evt_dirent)))
f6bdafef 169
270bbbe8 170#define MAX_EVENT_LENGTH 512
f6bdafef 171
f6bdafef 172
1ef2ed10 173struct tracepoint_path *tracepoint_id_to_path(u64 config)
f6bdafef 174{
1ef2ed10 175 struct tracepoint_path *path = NULL;
f6bdafef 176 DIR *sys_dir, *evt_dir;
22a9f41b 177 struct dirent *sys_dirent, *evt_dirent;
8aa8a7c8 178 char id_buf[24];
725b1368 179 int fd;
f6bdafef
JB
180 u64 id;
181 char evt_path[MAXPATHLEN];
725b1368 182 char dir_path[MAXPATHLEN];
f6bdafef 183
ebf294bf 184 sys_dir = opendir(tracing_events_path);
f6bdafef 185 if (!sys_dir)
725b1368 186 return NULL;
6b58e7f1 187
22a9f41b 188 for_each_subsystem(sys_dir, sys_dirent) {
725b1368 189
ebf294bf 190 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
22a9f41b 191 sys_dirent->d_name);
725b1368
ED
192 evt_dir = opendir(dir_path);
193 if (!evt_dir)
6b58e7f1 194 continue;
725b1368 195
22a9f41b 196 for_each_event(sys_dirent, evt_dir, evt_dirent) {
725b1368
ED
197
198 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
22a9f41b 199 evt_dirent->d_name);
725b1368 200 fd = open(evt_path, O_RDONLY);
f6bdafef
JB
201 if (fd < 0)
202 continue;
203 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
204 close(fd);
205 continue;
206 }
207 close(fd);
208 id = atoll(id_buf);
209 if (id == config) {
210 closedir(evt_dir);
211 closedir(sys_dir);
59b4caeb 212 path = zalloc(sizeof(*path));
1ef2ed10
FW
213 path->system = malloc(MAX_EVENT_LENGTH);
214 if (!path->system) {
215 free(path);
216 return NULL;
217 }
218 path->name = malloc(MAX_EVENT_LENGTH);
219 if (!path->name) {
74cf249d 220 zfree(&path->system);
1ef2ed10
FW
221 free(path);
222 return NULL;
223 }
22a9f41b 224 strncpy(path->system, sys_dirent->d_name,
1ef2ed10 225 MAX_EVENT_LENGTH);
22a9f41b 226 strncpy(path->name, evt_dirent->d_name,
1ef2ed10
FW
227 MAX_EVENT_LENGTH);
228 return path;
f6bdafef
JB
229 }
230 }
231 closedir(evt_dir);
232 }
233
f6bdafef 234 closedir(sys_dir);
1ef2ed10
FW
235 return NULL;
236}
237
e7c93f09
NK
238struct tracepoint_path *tracepoint_name_to_path(const char *name)
239{
240 struct tracepoint_path *path = zalloc(sizeof(*path));
241 char *str = strchr(name, ':');
242
243 if (path == NULL || str == NULL) {
244 free(path);
245 return NULL;
246 }
247
248 path->system = strndup(name, str - name);
249 path->name = strdup(str+1);
250
251 if (path->system == NULL || path->name == NULL) {
74cf249d
ACM
252 zfree(&path->system);
253 zfree(&path->name);
e7c93f09
NK
254 free(path);
255 path = NULL;
256 }
257
258 return path;
259}
260
1424dc96
DA
261const char *event_type(int type)
262{
263 switch (type) {
264 case PERF_TYPE_HARDWARE:
265 return "hardware";
266
267 case PERF_TYPE_SOFTWARE:
268 return "software";
269
270 case PERF_TYPE_TRACEPOINT:
271 return "tracepoint";
272
273 case PERF_TYPE_HW_CACHE:
274 return "hardware-cache";
275
276 default:
277 break;
278 }
279
280 return "unknown";
281}
282
e814fddd
WN
283static int parse_events__is_name_term(struct parse_events_term *term)
284{
285 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
286}
7ae92e74 287
e814fddd
WN
288static char *get_config_name(struct list_head *head_terms)
289{
290 struct parse_events_term *term;
291
292 if (!head_terms)
293 return NULL;
294
295 list_for_each_entry(term, head_terms, list)
296 if (parse_events__is_name_term(term))
297 return term->val.str;
298
299 return NULL;
300}
7ae92e74 301
410136f5
SE
302static struct perf_evsel *
303__add_event(struct list_head *list, int *idx,
304 struct perf_event_attr *attr,
930a2e29
JO
305 char *name, struct cpu_map *cpus,
306 struct list_head *config_terms)
89812fc8
JO
307{
308 struct perf_evsel *evsel;
309
310 event_attr_init(attr);
311
ef503831 312 evsel = perf_evsel__new_idx(attr, (*idx)++);
c5cd8ac0 313 if (!evsel)
410136f5 314 return NULL;
89812fc8 315
fce4d296
AH
316 evsel->cpus = cpu_map__get(cpus);
317 evsel->own_cpus = cpu_map__get(cpus);
f30a79b0 318
9db1763c
ACM
319 if (name)
320 evsel->name = strdup(name);
930a2e29
JO
321
322 if (config_terms)
323 list_splice(config_terms, &evsel->config_terms);
324
b847cbdc 325 list_add_tail(&evsel->node, list);
410136f5 326 return evsel;
89812fc8
JO
327}
328
c5cd8ac0 329static int add_event(struct list_head *list, int *idx,
930a2e29
JO
330 struct perf_event_attr *attr, char *name,
331 struct list_head *config_terms)
7ae92e74 332{
930a2e29 333 return __add_event(list, idx, attr, name, NULL, config_terms) ? 0 : -ENOMEM;
7ae92e74
YZ
334}
335
0b668bc9 336static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
8326f44d
IM
337{
338 int i, j;
61c45981 339 int n, longest = -1;
8326f44d
IM
340
341 for (i = 0; i < size; i++) {
0b668bc9 342 for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
61c45981 343 n = strlen(names[i][j]);
89812fc8 344 if (n > longest && !strncasecmp(str, names[i][j], n))
61c45981
PM
345 longest = n;
346 }
89812fc8 347 if (longest > 0)
61c45981 348 return i;
8326f44d
IM
349 }
350
8953645f 351 return -1;
8326f44d
IM
352}
353
43d0b978
WN
354typedef int config_term_func_t(struct perf_event_attr *attr,
355 struct parse_events_term *term,
356 struct parse_events_error *err);
357static int config_term_common(struct perf_event_attr *attr,
358 struct parse_events_term *term,
359 struct parse_events_error *err);
360static int config_attr(struct perf_event_attr *attr,
361 struct list_head *head,
362 struct parse_events_error *err,
363 config_term_func_t config_term);
364
c5cd8ac0 365int parse_events_add_cache(struct list_head *list, int *idx,
43d0b978 366 char *type, char *op_result1, char *op_result2,
2c97b0d4 367 struct parse_events_error *err,
43d0b978 368 struct list_head *head_config)
8326f44d 369{
89812fc8 370 struct perf_event_attr attr;
43d0b978
WN
371 LIST_HEAD(config_terms);
372 char name[MAX_NAME_LEN], *config_name;
61c45981 373 int cache_type = -1, cache_op = -1, cache_result = -1;
89812fc8
JO
374 char *op_result[2] = { op_result1, op_result2 };
375 int i, n;
8326f44d 376
8326f44d
IM
377 /*
378 * No fallback - if we cannot get a clear cache type
379 * then bail out:
380 */
0b668bc9 381 cache_type = parse_aliases(type, perf_evsel__hw_cache,
89812fc8 382 PERF_COUNT_HW_CACHE_MAX);
8326f44d 383 if (cache_type == -1)
89812fc8
JO
384 return -EINVAL;
385
43d0b978 386 config_name = get_config_name(head_config);
89812fc8 387 n = snprintf(name, MAX_NAME_LEN, "%s", type);
61c45981 388
89812fc8
JO
389 for (i = 0; (i < 2) && (op_result[i]); i++) {
390 char *str = op_result[i];
391
275ef387 392 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
61c45981
PM
393
394 if (cache_op == -1) {
0b668bc9 395 cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
89812fc8 396 PERF_COUNT_HW_CACHE_OP_MAX);
61c45981 397 if (cache_op >= 0) {
0b668bc9 398 if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
89812fc8 399 return -EINVAL;
61c45981
PM
400 continue;
401 }
402 }
403
404 if (cache_result == -1) {
0b668bc9
ACM
405 cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
406 PERF_COUNT_HW_CACHE_RESULT_MAX);
61c45981
PM
407 if (cache_result >= 0)
408 continue;
409 }
61c45981 410 }
8326f44d 411
8326f44d
IM
412 /*
413 * Fall back to reads:
414 */
8953645f
IM
415 if (cache_op == -1)
416 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
8326f44d 417
8326f44d
IM
418 /*
419 * Fall back to accesses:
420 */
421 if (cache_result == -1)
422 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
423
89812fc8
JO
424 memset(&attr, 0, sizeof(attr));
425 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
426 attr.type = PERF_TYPE_HW_CACHE;
43d0b978
WN
427
428 if (head_config) {
2c97b0d4 429 if (config_attr(&attr, head_config, err,
43d0b978
WN
430 config_term_common))
431 return -EINVAL;
432
433 if (get_config_terms(head_config, &config_terms))
434 return -ENOMEM;
435 }
436 return add_event(list, idx, &attr, config_name ? : name, &config_terms);
bcd3279f
FW
437}
438
272ed29a 439static void tracepoint_error(struct parse_events_error *e, int err,
8c619d6a 440 const char *sys, const char *name)
19658171
JO
441{
442 char help[BUFSIZ];
443
ec183d22
AH
444 if (!e)
445 return;
446
19658171
JO
447 /*
448 * We get error directly from syscall errno ( > 0),
449 * or from encoded pointer's error ( < 0).
450 */
451 err = abs(err);
452
453 switch (err) {
454 case EACCES:
272ed29a 455 e->str = strdup("can't access trace events");
19658171
JO
456 break;
457 case ENOENT:
272ed29a 458 e->str = strdup("unknown tracepoint");
19658171
JO
459 break;
460 default:
272ed29a 461 e->str = strdup("failed to add tracepoint");
19658171
JO
462 break;
463 }
464
465 tracing_path__strerror_open_tp(err, help, sizeof(help), sys, name);
272ed29a 466 e->help = strdup(help);
19658171
JO
467}
468
c5cd8ac0 469static int add_tracepoint(struct list_head *list, int *idx,
8c619d6a 470 const char *sys_name, const char *evt_name,
272ed29a 471 struct parse_events_error *err,
e637d177 472 struct list_head *head_config)
bcd3279f 473{
82fe1c29 474 struct perf_evsel *evsel;
bcd3279f 475
ef503831 476 evsel = perf_evsel__newtp_idx(sys_name, evt_name, (*idx)++);
19658171 477 if (IS_ERR(evsel)) {
272ed29a 478 tracepoint_error(err, PTR_ERR(evsel), sys_name, evt_name);
8dd2a131 479 return PTR_ERR(evsel);
19658171 480 }
bcd3279f 481
e637d177
HK
482 if (head_config) {
483 LIST_HEAD(config_terms);
484
485 if (get_config_terms(head_config, &config_terms))
486 return -ENOMEM;
487 list_splice(&config_terms, &evsel->config_terms);
488 }
489
82fe1c29 490 list_add_tail(&evsel->node, list);
82fe1c29 491 return 0;
8326f44d
IM
492}
493
c5cd8ac0 494static int add_tracepoint_multi_event(struct list_head *list, int *idx,
8c619d6a 495 const char *sys_name, const char *evt_name,
272ed29a 496 struct parse_events_error *err,
e637d177 497 struct list_head *head_config)
bcd3279f
FW
498{
499 char evt_path[MAXPATHLEN];
500 struct dirent *evt_ent;
501 DIR *evt_dir;
27bf90bf 502 int ret = 0, found = 0;
bcd3279f 503
ebf294bf 504 snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
bcd3279f 505 evt_dir = opendir(evt_path);
bcd3279f 506 if (!evt_dir) {
272ed29a 507 tracepoint_error(err, errno, sys_name, evt_name);
89812fc8 508 return -1;
bcd3279f
FW
509 }
510
89812fc8 511 while (!ret && (evt_ent = readdir(evt_dir))) {
bcd3279f
FW
512 if (!strcmp(evt_ent->d_name, ".")
513 || !strcmp(evt_ent->d_name, "..")
514 || !strcmp(evt_ent->d_name, "enable")
515 || !strcmp(evt_ent->d_name, "filter"))
516 continue;
517
89812fc8 518 if (!strglobmatch(evt_ent->d_name, evt_name))
fb1d2edf
MH
519 continue;
520
27bf90bf
JO
521 found++;
522
e637d177 523 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name,
272ed29a 524 err, head_config);
bcd3279f
FW
525 }
526
27bf90bf
JO
527 if (!found) {
528 tracepoint_error(err, ENOENT, sys_name, evt_name);
529 ret = -1;
530 }
531
0bd3f084 532 closedir(evt_dir);
89812fc8 533 return ret;
bcd3279f
FW
534}
535
c5cd8ac0 536static int add_tracepoint_event(struct list_head *list, int *idx,
8c619d6a 537 const char *sys_name, const char *evt_name,
272ed29a 538 struct parse_events_error *err,
e637d177 539 struct list_head *head_config)
f35488f9
JO
540{
541 return strpbrk(evt_name, "*?") ?
e637d177 542 add_tracepoint_multi_event(list, idx, sys_name, evt_name,
272ed29a 543 err, head_config) :
e637d177 544 add_tracepoint(list, idx, sys_name, evt_name,
272ed29a 545 err, head_config);
f35488f9
JO
546}
547
c5cd8ac0 548static int add_tracepoint_multi_sys(struct list_head *list, int *idx,
8c619d6a 549 const char *sys_name, const char *evt_name,
272ed29a 550 struct parse_events_error *err,
e637d177 551 struct list_head *head_config)
f35488f9
JO
552{
553 struct dirent *events_ent;
554 DIR *events_dir;
555 int ret = 0;
556
557 events_dir = opendir(tracing_events_path);
558 if (!events_dir) {
272ed29a 559 tracepoint_error(err, errno, sys_name, evt_name);
f35488f9
JO
560 return -1;
561 }
562
563 while (!ret && (events_ent = readdir(events_dir))) {
564 if (!strcmp(events_ent->d_name, ".")
565 || !strcmp(events_ent->d_name, "..")
566 || !strcmp(events_ent->d_name, "enable")
567 || !strcmp(events_ent->d_name, "header_event")
568 || !strcmp(events_ent->d_name, "header_page"))
569 continue;
570
571 if (!strglobmatch(events_ent->d_name, sys_name))
572 continue;
573
574 ret = add_tracepoint_event(list, idx, events_ent->d_name,
272ed29a 575 evt_name, err, head_config);
f35488f9
JO
576 }
577
578 closedir(events_dir);
579 return ret;
580}
581
4edf30e3
WN
582struct __add_bpf_event_param {
583 struct parse_events_evlist *data;
584 struct list_head *list;
95088a59 585 struct list_head *head_config;
4edf30e3
WN
586};
587
cd102d70 588static int add_bpf_event(const char *group, const char *event, int fd,
4edf30e3
WN
589 void *_param)
590{
591 LIST_HEAD(new_evsels);
592 struct __add_bpf_event_param *param = _param;
593 struct parse_events_evlist *evlist = param->data;
594 struct list_head *list = param->list;
1f45b1d4 595 struct perf_evsel *pos;
4edf30e3
WN
596 int err;
597
598 pr_debug("add bpf event %s:%s and attach bpf program %d\n",
cd102d70 599 group, event, fd);
4edf30e3 600
cd102d70
WN
601 err = parse_events_add_tracepoint(&new_evsels, &evlist->idx, group,
602 event, evlist->error,
95088a59 603 param->head_config);
4edf30e3
WN
604 if (err) {
605 struct perf_evsel *evsel, *tmp;
606
607 pr_debug("Failed to add BPF event %s:%s\n",
cd102d70 608 group, event);
4edf30e3
WN
609 list_for_each_entry_safe(evsel, tmp, &new_evsels, node) {
610 list_del(&evsel->node);
611 perf_evsel__delete(evsel);
612 }
613 return err;
614 }
cd102d70 615 pr_debug("adding %s:%s\n", group, event);
4edf30e3 616
1f45b1d4
WN
617 list_for_each_entry(pos, &new_evsels, node) {
618 pr_debug("adding %s:%s to %p\n",
cd102d70 619 group, event, pos);
1f45b1d4
WN
620 pos->bpf_fd = fd;
621 }
4edf30e3
WN
622 list_splice(&new_evsels, list);
623 return 0;
624}
625
84c86ca1
WN
626int parse_events_load_bpf_obj(struct parse_events_evlist *data,
627 struct list_head *list,
95088a59
WN
628 struct bpf_object *obj,
629 struct list_head *head_config)
84c86ca1
WN
630{
631 int err;
632 char errbuf[BUFSIZ];
95088a59 633 struct __add_bpf_event_param param = {data, list, head_config};
aa3abf30 634 static bool registered_unprobe_atexit = false;
84c86ca1
WN
635
636 if (IS_ERR(obj) || !obj) {
637 snprintf(errbuf, sizeof(errbuf),
638 "Internal error: load bpf obj with NULL");
639 err = -EINVAL;
640 goto errout;
641 }
642
aa3abf30
WN
643 /*
644 * Register atexit handler before calling bpf__probe() so
645 * bpf__probe() don't need to unprobe probe points its already
646 * created when failure.
647 */
648 if (!registered_unprobe_atexit) {
649 atexit(bpf__clear);
650 registered_unprobe_atexit = true;
651 }
652
653 err = bpf__probe(obj);
654 if (err) {
655 bpf__strerror_probe(obj, err, errbuf, sizeof(errbuf));
656 goto errout;
657 }
658
1e5e3ee8
WN
659 err = bpf__load(obj);
660 if (err) {
661 bpf__strerror_load(obj, err, errbuf, sizeof(errbuf));
662 goto errout;
663 }
664
cd102d70 665 err = bpf__foreach_event(obj, add_bpf_event, &param);
4edf30e3
WN
666 if (err) {
667 snprintf(errbuf, sizeof(errbuf),
668 "Attach events in BPF object failed");
669 goto errout;
670 }
671
672 return 0;
84c86ca1
WN
673errout:
674 data->error->help = strdup("(add -v to see detail)");
675 data->error->str = strdup(errbuf);
676 return err;
677}
678
a34f3be7
WN
679static int
680parse_events_config_bpf(struct parse_events_evlist *data,
681 struct bpf_object *obj,
682 struct list_head *head_config)
683{
684 struct parse_events_term *term;
685 int error_pos;
686
687 if (!head_config || list_empty(head_config))
688 return 0;
689
690 list_for_each_entry(term, head_config, list) {
691 char errbuf[BUFSIZ];
692 int err;
693
694 if (term->type_term != PARSE_EVENTS__TERM_TYPE_USER) {
695 snprintf(errbuf, sizeof(errbuf),
696 "Invalid config term for BPF object");
697 errbuf[BUFSIZ - 1] = '\0';
698
699 data->error->idx = term->err_term;
700 data->error->str = strdup(errbuf);
701 return -EINVAL;
702 }
703
7630b3e2 704 err = bpf__config_obj(obj, term, data->evlist, &error_pos);
a34f3be7 705 if (err) {
7630b3e2 706 bpf__strerror_config_obj(obj, term, data->evlist,
a34f3be7
WN
707 &error_pos, err, errbuf,
708 sizeof(errbuf));
709 data->error->help = strdup(
7630b3e2 710"Hint:\tValid config terms:\n"
e571e029
WN
711" \tmap:[<arraymap>].value<indices>=[value]\n"
712" \tmap:[<eventmap>].event<indices>=[event]\n"
7630b3e2 713"\n"
e571e029 714" \twhere <indices> is something like [0,3...5] or [all]\n"
a34f3be7
WN
715" \t(add -v to see detail)");
716 data->error->str = strdup(errbuf);
717 if (err == -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE)
718 data->error->idx = term->err_val;
719 else
720 data->error->idx = term->err_term + error_pos;
721 return err;
722 }
723 }
724 return 0;
725}
726
95088a59
WN
727/*
728 * Split config terms:
729 * perf record -e bpf.c/call-graph=fp,map:array.value[0]=1/ ...
730 * 'call-graph=fp' is 'evt config', should be applied to each
731 * events in bpf.c.
732 * 'map:array.value[0]=1' is 'obj config', should be processed
733 * with parse_events_config_bpf.
734 *
735 * Move object config terms from the first list to obj_head_config.
736 */
737static void
738split_bpf_config_terms(struct list_head *evt_head_config,
739 struct list_head *obj_head_config)
740{
741 struct parse_events_term *term, *temp;
742
743 /*
744 * Currectly, all possible user config term
745 * belong to bpf object. parse_events__is_hardcoded_term()
746 * happends to be a good flag.
747 *
748 * See parse_events_config_bpf() and
749 * config_term_tracepoint().
750 */
751 list_for_each_entry_safe(term, temp, evt_head_config, list)
752 if (!parse_events__is_hardcoded_term(term))
753 list_move_tail(&term->list, obj_head_config);
754}
755
84c86ca1
WN
756int parse_events_load_bpf(struct parse_events_evlist *data,
757 struct list_head *list,
d509db04 758 char *bpf_file_name,
a34f3be7
WN
759 bool source,
760 struct list_head *head_config)
84c86ca1 761{
a34f3be7 762 int err;
95088a59
WN
763 struct bpf_object *obj;
764 LIST_HEAD(obj_head_config);
765
766 if (head_config)
767 split_bpf_config_terms(head_config, &obj_head_config);
84c86ca1 768
d509db04 769 obj = bpf__prepare_load(bpf_file_name, source);
6371ca3b 770 if (IS_ERR(obj)) {
84c86ca1 771 char errbuf[BUFSIZ];
84c86ca1 772
6371ca3b 773 err = PTR_ERR(obj);
84c86ca1
WN
774
775 if (err == -ENOTSUP)
776 snprintf(errbuf, sizeof(errbuf),
777 "BPF support is not compiled");
778 else
d3e0ce39
WN
779 bpf__strerror_prepare_load(bpf_file_name,
780 source,
781 -err, errbuf,
782 sizeof(errbuf));
84c86ca1
WN
783
784 data->error->help = strdup("(add -v to see detail)");
785 data->error->str = strdup(errbuf);
786 return err;
787 }
788
95088a59 789 err = parse_events_load_bpf_obj(data, list, obj, head_config);
a34f3be7
WN
790 if (err)
791 return err;
95088a59
WN
792 err = parse_events_config_bpf(data, obj, &obj_head_config);
793
794 /*
795 * Caller doesn't know anything about obj_head_config,
796 * so combine them together again before returnning.
797 */
798 if (head_config)
799 list_splice_tail(&obj_head_config, head_config);
800 return err;
84c86ca1
WN
801}
802
89812fc8
JO
803static int
804parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
1b290d67
FW
805{
806 int i;
807
808 for (i = 0; i < 3; i++) {
89812fc8 809 if (!type || !type[i])
1b290d67
FW
810 break;
811
7582732f
JO
812#define CHECK_SET_TYPE(bit) \
813do { \
814 if (attr->bp_type & bit) \
815 return -EINVAL; \
816 else \
817 attr->bp_type |= bit; \
818} while (0)
819
1b290d67
FW
820 switch (type[i]) {
821 case 'r':
7582732f 822 CHECK_SET_TYPE(HW_BREAKPOINT_R);
1b290d67
FW
823 break;
824 case 'w':
7582732f 825 CHECK_SET_TYPE(HW_BREAKPOINT_W);
1b290d67
FW
826 break;
827 case 'x':
7582732f 828 CHECK_SET_TYPE(HW_BREAKPOINT_X);
1b290d67
FW
829 break;
830 default:
89812fc8 831 return -EINVAL;
1b290d67
FW
832 }
833 }
89812fc8 834
7582732f
JO
835#undef CHECK_SET_TYPE
836
1b290d67
FW
837 if (!attr->bp_type) /* Default */
838 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
839
89812fc8 840 return 0;
1b290d67
FW
841}
842
c5cd8ac0 843int parse_events_add_breakpoint(struct list_head *list, int *idx,
3741eb9f 844 void *ptr, char *type, u64 len)
1b290d67 845{
89812fc8 846 struct perf_event_attr attr;
1b290d67 847
89812fc8 848 memset(&attr, 0, sizeof(attr));
9fafd98f 849 attr.bp_addr = (unsigned long) ptr;
1b290d67 850
89812fc8
JO
851 if (parse_breakpoint_type(type, &attr))
852 return -EINVAL;
1b290d67 853
3741eb9f
JS
854 /* Provide some defaults if len is not specified */
855 if (!len) {
856 if (attr.bp_type == HW_BREAKPOINT_X)
857 len = sizeof(long);
858 else
859 len = HW_BREAKPOINT_LEN_4;
860 }
861
862 attr.bp_len = len;
61c45981 863
89812fc8 864 attr.type = PERF_TYPE_BREAKPOINT;
4a841d65 865 attr.sample_period = 1;
b908debd 866
930a2e29 867 return add_event(list, idx, &attr, NULL, NULL);
74d5b588
JSR
868}
869
3b0e371c
JO
870static int check_type_val(struct parse_events_term *term,
871 struct parse_events_error *err,
872 int type)
873{
874 if (type == term->type_val)
875 return 0;
876
877 if (err) {
878 err->idx = term->err_val;
879 if (type == PARSE_EVENTS__TERM_TYPE_NUM)
880 err->str = strdup("expected numeric value");
881 else
882 err->str = strdup("expected string value");
883 }
884 return -EINVAL;
885}
886
17cb5f84
WN
887/*
888 * Update according to parse-events.l
889 */
890static const char *config_term_names[__PARSE_EVENTS__TERM_TYPE_NR] = {
891 [PARSE_EVENTS__TERM_TYPE_USER] = "<sysfs term>",
892 [PARSE_EVENTS__TERM_TYPE_CONFIG] = "config",
893 [PARSE_EVENTS__TERM_TYPE_CONFIG1] = "config1",
894 [PARSE_EVENTS__TERM_TYPE_CONFIG2] = "config2",
895 [PARSE_EVENTS__TERM_TYPE_NAME] = "name",
896 [PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD] = "period",
897 [PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ] = "freq",
898 [PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE] = "branch_type",
899 [PARSE_EVENTS__TERM_TYPE_TIME] = "time",
900 [PARSE_EVENTS__TERM_TYPE_CALLGRAPH] = "call-graph",
901 [PARSE_EVENTS__TERM_TYPE_STACKSIZE] = "stack-size",
902 [PARSE_EVENTS__TERM_TYPE_NOINHERIT] = "no-inherit",
903 [PARSE_EVENTS__TERM_TYPE_INHERIT] = "inherit",
792d48b4 904 [PARSE_EVENTS__TERM_TYPE_MAX_STACK] = "max-stack",
17cb5f84
WN
905};
906
1669e509
WN
907static bool config_term_shrinked;
908
909static bool
910config_term_avail(int term_type, struct parse_events_error *err)
911{
912 if (term_type < 0 || term_type >= __PARSE_EVENTS__TERM_TYPE_NR) {
913 err->str = strdup("Invalid term_type");
914 return false;
915 }
916 if (!config_term_shrinked)
917 return true;
918
919 switch (term_type) {
920 case PARSE_EVENTS__TERM_TYPE_CONFIG:
921 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
922 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
923 case PARSE_EVENTS__TERM_TYPE_NAME:
924 return true;
925 default:
926 if (!err)
927 return false;
928
929 /* term_type is validated so indexing is safe */
930 if (asprintf(&err->str, "'%s' is not usable in 'perf stat'",
931 config_term_names[term_type]) < 0)
932 err->str = NULL;
933 return false;
934 }
935}
936
937void parse_events__shrink_config_terms(void)
938{
939 config_term_shrinked = true;
940}
941
0b8891a8
HK
942static int config_term_common(struct perf_event_attr *attr,
943 struct parse_events_term *term,
944 struct parse_events_error *err)
8f707d84 945{
3b0e371c
JO
946#define CHECK_TYPE_VAL(type) \
947do { \
948 if (check_type_val(term, err, PARSE_EVENTS__TERM_TYPE_ ## type)) \
949 return -EINVAL; \
16fa7e82
JO
950} while (0)
951
952 switch (term->type_term) {
8f707d84 953 case PARSE_EVENTS__TERM_TYPE_CONFIG:
16fa7e82 954 CHECK_TYPE_VAL(NUM);
8f707d84
JO
955 attr->config = term->val.num;
956 break;
957 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
16fa7e82 958 CHECK_TYPE_VAL(NUM);
8f707d84
JO
959 attr->config1 = term->val.num;
960 break;
961 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
16fa7e82 962 CHECK_TYPE_VAL(NUM);
8f707d84
JO
963 attr->config2 = term->val.num;
964 break;
965 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
16fa7e82 966 CHECK_TYPE_VAL(NUM);
8f707d84 967 break;
09af2a55
NK
968 case PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ:
969 CHECK_TYPE_VAL(NUM);
970 break;
8f707d84
JO
971 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
972 /*
973 * TODO uncomment when the field is available
974 * attr->branch_sample_type = term->val.num;
975 */
976 break;
32067712
KL
977 case PARSE_EVENTS__TERM_TYPE_TIME:
978 CHECK_TYPE_VAL(NUM);
979 if (term->val.num > 1) {
980 err->str = strdup("expected 0 or 1");
981 err->idx = term->err_val;
982 return -EINVAL;
983 }
984 break;
d457c963
KL
985 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
986 CHECK_TYPE_VAL(STR);
987 break;
988 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
989 CHECK_TYPE_VAL(NUM);
990 break;
374ce938
WN
991 case PARSE_EVENTS__TERM_TYPE_INHERIT:
992 CHECK_TYPE_VAL(NUM);
993 break;
994 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
995 CHECK_TYPE_VAL(NUM);
996 break;
6b5fc39b
JO
997 case PARSE_EVENTS__TERM_TYPE_NAME:
998 CHECK_TYPE_VAL(STR);
999 break;
792d48b4
ACM
1000 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1001 CHECK_TYPE_VAL(NUM);
1002 break;
8f707d84 1003 default:
ffeb883e
HK
1004 err->str = strdup("unknown term");
1005 err->idx = term->err_term;
1006 err->help = parse_events_formats_error_string(NULL);
8f707d84
JO
1007 return -EINVAL;
1008 }
16fa7e82 1009
1669e509
WN
1010 /*
1011 * Check term availbility after basic checking so
1012 * PARSE_EVENTS__TERM_TYPE_USER can be found and filtered.
1013 *
1014 * If check availbility at the entry of this function,
1015 * user will see "'<sysfs term>' is not usable in 'perf stat'"
1016 * if an invalid config term is provided for legacy events
1017 * (for example, instructions/badterm/...), which is confusing.
1018 */
1019 if (!config_term_avail(term->type_term, err))
1020 return -EINVAL;
8f707d84 1021 return 0;
16fa7e82 1022#undef CHECK_TYPE_VAL
8f707d84
JO
1023}
1024
0b8891a8
HK
1025static int config_term_pmu(struct perf_event_attr *attr,
1026 struct parse_events_term *term,
1027 struct parse_events_error *err)
1028{
1029 if (term->type_term == PARSE_EVENTS__TERM_TYPE_USER)
1030 /*
1031 * Always succeed for sysfs terms, as we dont know
1032 * at this point what type they need to have.
1033 */
1034 return 0;
1035 else
1036 return config_term_common(attr, term, err);
1037}
1038
e637d177
HK
1039static int config_term_tracepoint(struct perf_event_attr *attr,
1040 struct parse_events_term *term,
1041 struct parse_events_error *err)
1042{
1043 switch (term->type_term) {
1044 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1045 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
374ce938
WN
1046 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1047 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
792d48b4 1048 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
e637d177
HK
1049 return config_term_common(attr, term, err);
1050 default:
1051 if (err) {
1052 err->idx = term->err_term;
1053 err->str = strdup("unknown term");
1054 err->help = strdup("valid terms: call-graph,stack-size\n");
1055 }
1056 return -EINVAL;
1057 }
1058
1059 return 0;
1060}
1061
8f707d84 1062static int config_attr(struct perf_event_attr *attr,
3b0e371c 1063 struct list_head *head,
0b8891a8
HK
1064 struct parse_events_error *err,
1065 config_term_func_t config_term)
8f707d84 1066{
6cee6cd3 1067 struct parse_events_term *term;
8f707d84
JO
1068
1069 list_for_each_entry(term, head, list)
3b0e371c 1070 if (config_term(attr, term, err))
8f707d84
JO
1071 return -EINVAL;
1072
1073 return 0;
1074}
1075
930a2e29
JO
1076static int get_config_terms(struct list_head *head_config,
1077 struct list_head *head_terms __maybe_unused)
1078{
1079#define ADD_CONFIG_TERM(__type, __name, __val) \
1080do { \
1081 struct perf_evsel_config_term *__t; \
1082 \
1083 __t = zalloc(sizeof(*__t)); \
1084 if (!__t) \
1085 return -ENOMEM; \
1086 \
1087 INIT_LIST_HEAD(&__t->list); \
1088 __t->type = PERF_EVSEL__CONFIG_TERM_ ## __type; \
1089 __t->val.__name = __val; \
1090 list_add_tail(&__t->list, head_terms); \
1091} while (0)
1092
1093 struct parse_events_term *term;
1094
1095 list_for_each_entry(term, head_config, list) {
1096 switch (term->type_term) {
ee4c7588
JO
1097 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
1098 ADD_CONFIG_TERM(PERIOD, period, term->val.num);
32067712 1099 break;
09af2a55
NK
1100 case PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ:
1101 ADD_CONFIG_TERM(FREQ, freq, term->val.num);
1102 break;
32067712
KL
1103 case PARSE_EVENTS__TERM_TYPE_TIME:
1104 ADD_CONFIG_TERM(TIME, time, term->val.num);
1105 break;
d457c963
KL
1106 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1107 ADD_CONFIG_TERM(CALLGRAPH, callgraph, term->val.str);
1108 break;
1109 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1110 ADD_CONFIG_TERM(STACK_USER, stack_user, term->val.num);
1111 break;
374ce938
WN
1112 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1113 ADD_CONFIG_TERM(INHERIT, inherit, term->val.num ? 1 : 0);
1114 break;
1115 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1116 ADD_CONFIG_TERM(INHERIT, inherit, term->val.num ? 0 : 1);
1117 break;
792d48b4
ACM
1118 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1119 ADD_CONFIG_TERM(MAX_STACK, max_stack, term->val.num);
1120 break;
930a2e29
JO
1121 default:
1122 break;
1123 }
1124 }
1125#undef ADD_EVSEL_CONFIG
1126 return 0;
1127}
1128
e637d177 1129int parse_events_add_tracepoint(struct list_head *list, int *idx,
8c619d6a 1130 const char *sys, const char *event,
272ed29a 1131 struct parse_events_error *err,
e637d177
HK
1132 struct list_head *head_config)
1133{
1134 if (head_config) {
1135 struct perf_event_attr attr;
1136
272ed29a 1137 if (config_attr(&attr, head_config, err,
e637d177
HK
1138 config_term_tracepoint))
1139 return -EINVAL;
1140 }
1141
1142 if (strpbrk(sys, "*?"))
1143 return add_tracepoint_multi_sys(list, idx, sys, event,
272ed29a 1144 err, head_config);
e637d177
HK
1145 else
1146 return add_tracepoint_event(list, idx, sys, event,
272ed29a 1147 err, head_config);
e637d177
HK
1148}
1149
87d650be
JO
1150int parse_events_add_numeric(struct parse_events_evlist *data,
1151 struct list_head *list,
b527bab5 1152 u32 type, u64 config,
8f707d84 1153 struct list_head *head_config)
8ad8db37 1154{
89812fc8 1155 struct perf_event_attr attr;
930a2e29 1156 LIST_HEAD(config_terms);
61c45981 1157
89812fc8
JO
1158 memset(&attr, 0, sizeof(attr));
1159 attr.type = type;
1160 attr.config = config;
8f707d84 1161
930a2e29 1162 if (head_config) {
0b8891a8
HK
1163 if (config_attr(&attr, head_config, data->error,
1164 config_term_common))
930a2e29
JO
1165 return -EINVAL;
1166
1167 if (get_config_terms(head_config, &config_terms))
1168 return -ENOMEM;
1169 }
8f707d84 1170
10bf358a
WN
1171 return add_event(list, &data->idx, &attr,
1172 get_config_name(head_config), &config_terms);
61c45981 1173}
8ad8db37 1174
36adec85
JO
1175int parse_events_add_pmu(struct parse_events_evlist *data,
1176 struct list_head *list, char *name,
1177 struct list_head *head_config)
5f537a26
JO
1178{
1179 struct perf_event_attr attr;
46441bdc 1180 struct perf_pmu_info info;
5f537a26 1181 struct perf_pmu *pmu;
410136f5 1182 struct perf_evsel *evsel;
930a2e29 1183 LIST_HEAD(config_terms);
5f537a26
JO
1184
1185 pmu = perf_pmu__find(name);
1186 if (!pmu)
1187 return -EINVAL;
1188
dc0a6202
AH
1189 if (pmu->default_config) {
1190 memcpy(&attr, pmu->default_config,
1191 sizeof(struct perf_event_attr));
1192 } else {
1193 memset(&attr, 0, sizeof(attr));
1194 }
5f537a26 1195
ad962273
AH
1196 if (!head_config) {
1197 attr.type = pmu->type;
930a2e29 1198 evsel = __add_event(list, &data->idx, &attr, NULL, pmu->cpus, NULL);
ad962273
AH
1199 return evsel ? 0 : -ENOMEM;
1200 }
1201
46441bdc 1202 if (perf_pmu__check_alias(pmu, head_config, &info))
a6146d50
ZY
1203 return -EINVAL;
1204
5f537a26
JO
1205 /*
1206 * Configure hardcoded terms first, no need to check
1207 * return value when called with fail == 0 ;)
1208 */
0b8891a8 1209 if (config_attr(&attr, head_config, data->error, config_term_pmu))
c056ba6a 1210 return -EINVAL;
5f537a26 1211
930a2e29
JO
1212 if (get_config_terms(head_config, &config_terms))
1213 return -ENOMEM;
1214
e64b020b 1215 if (perf_pmu__config(pmu, &attr, head_config, data->error))
5f537a26
JO
1216 return -EINVAL;
1217
36adec85 1218 evsel = __add_event(list, &data->idx, &attr,
e814fddd 1219 get_config_name(head_config), pmu->cpus,
930a2e29 1220 &config_terms);
410136f5 1221 if (evsel) {
46441bdc
MF
1222 evsel->unit = info.unit;
1223 evsel->scale = info.scale;
044330c1 1224 evsel->per_pkg = info.per_pkg;
1d9e446b 1225 evsel->snapshot = info.snapshot;
410136f5
SE
1226 }
1227
1228 return evsel ? 0 : -ENOMEM;
5f537a26
JO
1229}
1230
6a4bb04c
JO
1231int parse_events__modifier_group(struct list_head *list,
1232 char *event_mod)
89efb029 1233{
6a4bb04c
JO
1234 return parse_events__modifier_event(list, event_mod, true);
1235}
1236
63dab225 1237void parse_events__set_leader(char *name, struct list_head *list)
6a4bb04c
JO
1238{
1239 struct perf_evsel *leader;
1240
854f7363
WN
1241 if (list_empty(list)) {
1242 WARN_ONCE(true, "WARNING: failed to set leader: empty list");
1243 return;
1244 }
1245
63dab225
ACM
1246 __perf_evlist__set_leader(list);
1247 leader = list_entry(list->next, struct perf_evsel, node);
6a4bb04c 1248 leader->group_name = name ? strdup(name) : NULL;
89efb029
JO
1249}
1250
c5cd8ac0 1251/* list_event is assumed to point to malloc'ed memory */
5d7be90e
JO
1252void parse_events_update_lists(struct list_head *list_event,
1253 struct list_head *list_all)
1254{
1255 /*
1256 * Called for single event definition. Update the
89efb029 1257 * 'all event' list, and reinit the 'single event'
5d7be90e
JO
1258 * list, for next event definition.
1259 */
1260 list_splice_tail(list_event, list_all);
b847cbdc 1261 free(list_event);
5d7be90e
JO
1262}
1263
f5b1135b
JO
1264struct event_modifier {
1265 int eu;
1266 int ek;
1267 int eh;
1268 int eH;
1269 int eG;
a1e12da4 1270 int eI;
f5b1135b 1271 int precise;
7f94af7a 1272 int precise_max;
f5b1135b 1273 int exclude_GH;
3c176311 1274 int sample_read;
e9a7c414 1275 int pinned;
f5b1135b
JO
1276};
1277
1278static int get_event_modifier(struct event_modifier *mod, char *str,
1279 struct perf_evsel *evsel)
61c45981 1280{
f5b1135b
JO
1281 int eu = evsel ? evsel->attr.exclude_user : 0;
1282 int ek = evsel ? evsel->attr.exclude_kernel : 0;
1283 int eh = evsel ? evsel->attr.exclude_hv : 0;
1284 int eH = evsel ? evsel->attr.exclude_host : 0;
1285 int eG = evsel ? evsel->attr.exclude_guest : 0;
a1e12da4 1286 int eI = evsel ? evsel->attr.exclude_idle : 0;
f5b1135b 1287 int precise = evsel ? evsel->attr.precise_ip : 0;
7f94af7a 1288 int precise_max = 0;
3c176311 1289 int sample_read = 0;
e9a7c414 1290 int pinned = evsel ? evsel->attr.pinned : 0;
a21ca2ca 1291
f5b1135b
JO
1292 int exclude = eu | ek | eh;
1293 int exclude_GH = evsel ? evsel->exclude_GH : 0;
1294
f5b1135b 1295 memset(mod, 0, sizeof(*mod));
ceb53fbf 1296
61c45981 1297 while (*str) {
ab608344
PZ
1298 if (*str == 'u') {
1299 if (!exclude)
1300 exclude = eu = ek = eh = 1;
61c45981 1301 eu = 0;
ab608344
PZ
1302 } else if (*str == 'k') {
1303 if (!exclude)
1304 exclude = eu = ek = eh = 1;
61c45981 1305 ek = 0;
ab608344
PZ
1306 } else if (*str == 'h') {
1307 if (!exclude)
1308 exclude = eu = ek = eh = 1;
61c45981 1309 eh = 0;
99320cc8
JR
1310 } else if (*str == 'G') {
1311 if (!exclude_GH)
1312 exclude_GH = eG = eH = 1;
1313 eG = 0;
1314 } else if (*str == 'H') {
1315 if (!exclude_GH)
1316 exclude_GH = eG = eH = 1;
1317 eH = 0;
a1e12da4
JO
1318 } else if (*str == 'I') {
1319 eI = 1;
ab608344
PZ
1320 } else if (*str == 'p') {
1321 precise++;
1342798c
DA
1322 /* use of precise requires exclude_guest */
1323 if (!exclude_GH)
1324 eG = 1;
7f94af7a
JO
1325 } else if (*str == 'P') {
1326 precise_max = 1;
3c176311
JO
1327 } else if (*str == 'S') {
1328 sample_read = 1;
e9a7c414
ME
1329 } else if (*str == 'D') {
1330 pinned = 1;
ab608344 1331 } else
61c45981 1332 break;
ab608344 1333
61c45981 1334 ++str;
5242519b 1335 }
ceb53fbf 1336
89812fc8
JO
1337 /*
1338 * precise ip:
1339 *
1340 * 0 - SAMPLE_IP can have arbitrary skid
1341 * 1 - SAMPLE_IP must have constant skid
1342 * 2 - SAMPLE_IP requested to have 0 skid
1343 * 3 - SAMPLE_IP must have 0 skid
1344 *
1345 * See also PERF_RECORD_MISC_EXACT_IP
1346 */
1347 if (precise > 3)
1348 return -EINVAL;
ceb53fbf 1349
f5b1135b
JO
1350 mod->eu = eu;
1351 mod->ek = ek;
1352 mod->eh = eh;
1353 mod->eH = eH;
1354 mod->eG = eG;
a1e12da4 1355 mod->eI = eI;
f5b1135b 1356 mod->precise = precise;
7f94af7a 1357 mod->precise_max = precise_max;
f5b1135b 1358 mod->exclude_GH = exclude_GH;
3c176311 1359 mod->sample_read = sample_read;
e9a7c414
ME
1360 mod->pinned = pinned;
1361
f5b1135b
JO
1362 return 0;
1363}
1364
534123f4
JO
1365/*
1366 * Basic modifier sanity check to validate it contains only one
1367 * instance of any modifier (apart from 'p') present.
1368 */
1369static int check_modifier(char *str)
1370{
1371 char *p = str;
1372
1373 /* The sizeof includes 0 byte as well. */
7f94af7a 1374 if (strlen(str) > (sizeof("ukhGHpppPSDI") - 1))
534123f4
JO
1375 return -1;
1376
1377 while (*p) {
1378 if (*p != 'p' && strchr(p + 1, *p))
1379 return -1;
1380 p++;
1381 }
1382
1383 return 0;
1384}
1385
f5b1135b
JO
1386int parse_events__modifier_event(struct list_head *list, char *str, bool add)
1387{
1388 struct perf_evsel *evsel;
1389 struct event_modifier mod;
1390
1391 if (str == NULL)
1392 return 0;
1393
534123f4
JO
1394 if (check_modifier(str))
1395 return -EINVAL;
1396
f5b1135b
JO
1397 if (!add && get_event_modifier(&mod, str, NULL))
1398 return -EINVAL;
1399
e5cadb93 1400 __evlist__for_each_entry(list, evsel) {
f5b1135b
JO
1401 if (add && get_event_modifier(&mod, str, evsel))
1402 return -EINVAL;
1403
1404 evsel->attr.exclude_user = mod.eu;
1405 evsel->attr.exclude_kernel = mod.ek;
1406 evsel->attr.exclude_hv = mod.eh;
1407 evsel->attr.precise_ip = mod.precise;
1408 evsel->attr.exclude_host = mod.eH;
1409 evsel->attr.exclude_guest = mod.eG;
a1e12da4 1410 evsel->attr.exclude_idle = mod.eI;
f5b1135b 1411 evsel->exclude_GH = mod.exclude_GH;
3c176311 1412 evsel->sample_read = mod.sample_read;
7f94af7a 1413 evsel->precise_max = mod.precise_max;
e9a7c414
ME
1414
1415 if (perf_evsel__is_group_leader(evsel))
1416 evsel->attr.pinned = mod.pinned;
89812fc8 1417 }
ceb53fbf 1418
61c45981
PM
1419 return 0;
1420}
8ad8db37 1421
ac2ba9f3
RR
1422int parse_events_name(struct list_head *list, char *name)
1423{
1424 struct perf_evsel *evsel;
1425
e5cadb93 1426 __evlist__for_each_entry(list, evsel) {
ac2ba9f3
RR
1427 if (!evsel->name)
1428 evsel->name = strdup(name);
1429 }
1430
1431 return 0;
1432}
1433
dcb4e102
KL
1434static int
1435comp_pmu(const void *p1, const void *p2)
1436{
1437 struct perf_pmu_event_symbol *pmu1 = (struct perf_pmu_event_symbol *) p1;
1438 struct perf_pmu_event_symbol *pmu2 = (struct perf_pmu_event_symbol *) p2;
1439
1440 return strcmp(pmu1->symbol, pmu2->symbol);
1441}
1442
1443static void perf_pmu__parse_cleanup(void)
1444{
1445 if (perf_pmu_events_list_num > 0) {
1446 struct perf_pmu_event_symbol *p;
1447 int i;
1448
1449 for (i = 0; i < perf_pmu_events_list_num; i++) {
1450 p = perf_pmu_events_list + i;
1451 free(p->symbol);
1452 }
1453 free(perf_pmu_events_list);
1454 perf_pmu_events_list = NULL;
1455 perf_pmu_events_list_num = 0;
1456 }
1457}
1458
1459#define SET_SYMBOL(str, stype) \
1460do { \
1461 p->symbol = str; \
1462 if (!p->symbol) \
1463 goto err; \
1464 p->type = stype; \
1465} while (0)
1466
1467/*
1468 * Read the pmu events list from sysfs
1469 * Save it into perf_pmu_events_list
1470 */
1471static void perf_pmu__parse_init(void)
1472{
1473
1474 struct perf_pmu *pmu = NULL;
1475 struct perf_pmu_alias *alias;
1476 int len = 0;
1477
1478 pmu = perf_pmu__find("cpu");
1479 if ((pmu == NULL) || list_empty(&pmu->aliases)) {
1480 perf_pmu_events_list_num = -1;
1481 return;
1482 }
1483 list_for_each_entry(alias, &pmu->aliases, list) {
1484 if (strchr(alias->name, '-'))
1485 len++;
1486 len++;
1487 }
1488 perf_pmu_events_list = malloc(sizeof(struct perf_pmu_event_symbol) * len);
1489 if (!perf_pmu_events_list)
1490 return;
1491 perf_pmu_events_list_num = len;
1492
1493 len = 0;
1494 list_for_each_entry(alias, &pmu->aliases, list) {
1495 struct perf_pmu_event_symbol *p = perf_pmu_events_list + len;
1496 char *tmp = strchr(alias->name, '-');
1497
1498 if (tmp != NULL) {
1499 SET_SYMBOL(strndup(alias->name, tmp - alias->name),
1500 PMU_EVENT_SYMBOL_PREFIX);
1501 p++;
1502 SET_SYMBOL(strdup(++tmp), PMU_EVENT_SYMBOL_SUFFIX);
1503 len += 2;
1504 } else {
1505 SET_SYMBOL(strdup(alias->name), PMU_EVENT_SYMBOL);
1506 len++;
1507 }
1508 }
1509 qsort(perf_pmu_events_list, len,
1510 sizeof(struct perf_pmu_event_symbol), comp_pmu);
1511
1512 return;
1513err:
1514 perf_pmu__parse_cleanup();
1515}
1516
1517enum perf_pmu_event_symbol_type
1518perf_pmu__parse_check(const char *name)
1519{
1520 struct perf_pmu_event_symbol p, *r;
1521
1522 /* scan kernel pmu events from sysfs if needed */
1523 if (perf_pmu_events_list_num == 0)
1524 perf_pmu__parse_init();
1525 /*
1526 * name "cpu" could be prefix of cpu-cycles or cpu// events.
1527 * cpu-cycles has been handled by hardcode.
1528 * So it must be cpu// events, not kernel pmu event.
1529 */
1530 if ((perf_pmu_events_list_num <= 0) || !strcmp(name, "cpu"))
1531 return PMU_EVENT_SYMBOL_ERR;
1532
1533 p.symbol = strdup(name);
1534 r = bsearch(&p, perf_pmu_events_list,
1535 (size_t) perf_pmu_events_list_num,
1536 sizeof(struct perf_pmu_event_symbol), comp_pmu);
1537 free(p.symbol);
1538 return r ? r->type : PMU_EVENT_SYMBOL_ERR;
1539}
1540
90e2b22d 1541static int parse_events__scanner(const char *str, void *data, int start_token)
61c45981 1542{
89812fc8 1543 YY_BUFFER_STATE buffer;
ac20de6f 1544 void *scanner;
46010ab2 1545 int ret;
bcd3279f 1546
90e2b22d 1547 ret = parse_events_lex_init_extra(start_token, &scanner);
ac20de6f
ZY
1548 if (ret)
1549 return ret;
1550
1551 buffer = parse_events__scan_string(str, scanner);
a21ca2ca 1552
82ba1f2f
JO
1553#ifdef PARSER_DEBUG
1554 parse_events_debug = 1;
1555#endif
ac20de6f
ZY
1556 ret = parse_events_parse(data, scanner);
1557
1558 parse_events__flush_buffer(buffer, scanner);
1559 parse_events__delete_buffer(buffer, scanner);
1560 parse_events_lex_destroy(scanner);
1561 return ret;
1562}
bcd3279f 1563
90e2b22d
JO
1564/*
1565 * parse event config string, return a list of event terms.
1566 */
1567int parse_events_terms(struct list_head *terms, const char *str)
1568{
23b6339b 1569 struct parse_events_terms data = {
90e2b22d
JO
1570 .terms = NULL,
1571 };
1572 int ret;
1573
1574 ret = parse_events__scanner(str, &data, PE_START_TERMS);
1575 if (!ret) {
1576 list_splice(data.terms, terms);
74cf249d 1577 zfree(&data.terms);
90e2b22d
JO
1578 return 0;
1579 }
1580
2146afc6 1581 parse_events_terms__delete(data.terms);
90e2b22d
JO
1582 return ret;
1583}
1584
b39b8393
JO
1585int parse_events(struct perf_evlist *evlist, const char *str,
1586 struct parse_events_error *err)
ac20de6f 1587{
23b6339b 1588 struct parse_events_evlist data = {
7630b3e2
WN
1589 .list = LIST_HEAD_INIT(data.list),
1590 .idx = evlist->nr_entries,
1591 .error = err,
1592 .evlist = evlist,
ac20de6f
ZY
1593 };
1594 int ret;
bcd3279f 1595
90e2b22d 1596 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
dcb4e102 1597 perf_pmu__parse_cleanup();
89812fc8 1598 if (!ret) {
15bfd2cc
WN
1599 struct perf_evsel *last;
1600
854f7363
WN
1601 if (list_empty(&data.list)) {
1602 WARN_ONCE(true, "WARNING: event parser found nothing");
1603 return -1;
1604 }
1605
f114d6ef 1606 perf_evlist__splice_list_tail(evlist, &data.list);
97f63e4a 1607 evlist->nr_groups += data.nr_groups;
15bfd2cc
WN
1608 last = perf_evlist__last(evlist);
1609 last->cmdline_group_boundary = true;
1610
89812fc8
JO
1611 return 0;
1612 }
bcd3279f 1613
5d7be90e
JO
1614 /*
1615 * There are 2 users - builtin-record and builtin-test objects.
1616 * Both call perf_evlist__delete in case of error, so we dont
1617 * need to bother.
1618 */
bcd3279f 1619 return ret;
8ad8db37
IM
1620}
1621
b39b8393
JO
1622#define MAX_WIDTH 1000
1623static int get_term_width(void)
1624{
1625 struct winsize ws;
1626
1627 get_term_dimensions(&ws);
1628 return ws.ws_col > MAX_WIDTH ? MAX_WIDTH : ws.ws_col;
1629}
1630
1631static void parse_events_print_error(struct parse_events_error *err,
1632 const char *event)
1633{
1634 const char *str = "invalid or unsupported event: ";
1635 char _buf[MAX_WIDTH];
1636 char *buf = (char *) event;
1637 int idx = 0;
1638
1639 if (err->str) {
1640 /* -2 for extra '' in the final fprintf */
1641 int width = get_term_width() - 2;
1642 int len_event = strlen(event);
1643 int len_str, max_len, cut = 0;
1644
1645 /*
1646 * Maximum error index indent, we will cut
1647 * the event string if it's bigger.
1648 */
141b2d31 1649 int max_err_idx = 13;
b39b8393
JO
1650
1651 /*
1652 * Let's be specific with the message when
1653 * we have the precise error.
1654 */
1655 str = "event syntax error: ";
1656 len_str = strlen(str);
1657 max_len = width - len_str;
1658
1659 buf = _buf;
1660
bd1a0be5 1661 /* We're cutting from the beginning. */
b39b8393
JO
1662 if (err->idx > max_err_idx)
1663 cut = err->idx - max_err_idx;
1664
1665 strncpy(buf, event + cut, max_len);
1666
1667 /* Mark cut parts with '..' on both sides. */
1668 if (cut)
1669 buf[0] = buf[1] = '.';
1670
1671 if ((len_event - cut) > max_len) {
1672 buf[max_len - 1] = buf[max_len - 2] = '.';
1673 buf[max_len] = 0;
1674 }
1675
1676 idx = len_str + err->idx - cut;
1677 }
1678
1679 fprintf(stderr, "%s'%s'\n", str, buf);
1680 if (idx) {
1681 fprintf(stderr, "%*s\\___ %s\n", idx + 1, "", err->str);
1682 if (err->help)
1683 fprintf(stderr, "\n%s\n", err->help);
1684 free(err->str);
1685 free(err->help);
1686 }
1687
1688 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
1689}
1690
1691#undef MAX_WIDTH
1692
f120f9d5 1693int parse_events_option(const struct option *opt, const char *str,
1d037ca1 1694 int unset __maybe_unused)
f120f9d5
JO
1695{
1696 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
b39b8393
JO
1697 struct parse_events_error err = { .idx = 0, };
1698 int ret = parse_events(evlist, str, &err);
1699
1700 if (ret)
1701 parse_events_print_error(&err, str);
9175ce1f 1702
9175ce1f 1703 return ret;
f120f9d5
JO
1704}
1705
4ba1faa1
WN
1706static int
1707foreach_evsel_in_last_glob(struct perf_evlist *evlist,
1708 int (*func)(struct perf_evsel *evsel,
1709 const void *arg),
1710 const void *arg)
c171b552 1711{
69aad6f1 1712 struct perf_evsel *last = NULL;
4ba1faa1 1713 int err;
c171b552 1714
854f7363
WN
1715 /*
1716 * Don't return when list_empty, give func a chance to report
1717 * error when it found last == NULL.
1718 *
1719 * So no need to WARN here, let *func do this.
1720 */
361c99a6 1721 if (evlist->nr_entries > 0)
0c21f736 1722 last = perf_evlist__last(evlist);
69aad6f1 1723
15bfd2cc 1724 do {
4ba1faa1
WN
1725 err = (*func)(last, arg);
1726 if (err)
15bfd2cc 1727 return -1;
4ba1faa1
WN
1728 if (!last)
1729 return 0;
15bfd2cc
WN
1730
1731 if (last->node.prev == &evlist->entries)
1732 return 0;
1733 last = list_entry(last->node.prev, struct perf_evsel, node);
1734 } while (!last->cmdline_group_boundary);
c171b552
LZ
1735
1736 return 0;
1737}
1738
4ba1faa1
WN
1739static int set_filter(struct perf_evsel *evsel, const void *arg)
1740{
1741 const char *str = arg;
1742
1743 if (evsel == NULL || evsel->attr.type != PERF_TYPE_TRACEPOINT) {
1744 fprintf(stderr,
1745 "--filter option should follow a -e tracepoint option\n");
1746 return -1;
1747 }
1748
1749 if (perf_evsel__append_filter(evsel, "&&", str) < 0) {
1750 fprintf(stderr,
1751 "not enough memory to hold filter string\n");
1752 return -1;
1753 }
1754
1755 return 0;
1756}
1757
1758int parse_filter(const struct option *opt, const char *str,
1759 int unset __maybe_unused)
1760{
1761 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
1762
1763 return foreach_evsel_in_last_glob(evlist, set_filter,
1764 (const void *)str);
1765}
1766
1767static int add_exclude_perf_filter(struct perf_evsel *evsel,
1768 const void *arg __maybe_unused)
1769{
1770 char new_filter[64];
1771
1772 if (evsel == NULL || evsel->attr.type != PERF_TYPE_TRACEPOINT) {
1773 fprintf(stderr,
1774 "--exclude-perf option should follow a -e tracepoint option\n");
1775 return -1;
1776 }
1777
1778 snprintf(new_filter, sizeof(new_filter), "common_pid != %d", getpid());
1779
1780 if (perf_evsel__append_filter(evsel, "&&", new_filter) < 0) {
1781 fprintf(stderr,
1782 "not enough memory to hold filter string\n");
1783 return -1;
1784 }
1785
1786 return 0;
1787}
1788
1789int exclude_perf(const struct option *opt,
1790 const char *arg __maybe_unused,
1791 int unset __maybe_unused)
1792{
1793 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
1794
1795 return foreach_evsel_in_last_glob(evlist, add_exclude_perf_filter,
1796 NULL);
1797}
1798
86847b62 1799static const char * const event_type_descriptors[] = {
86847b62
TG
1800 "Hardware event",
1801 "Software event",
1802 "Tracepoint event",
1803 "Hardware cache event",
41bdcb23
LW
1804 "Raw hardware event descriptor",
1805 "Hardware breakpoint",
86847b62
TG
1806};
1807
ab0e4800
YS
1808static int cmp_string(const void *a, const void *b)
1809{
1810 const char * const *as = a;
1811 const char * const *bs = b;
1812
1813 return strcmp(*as, *bs);
1814}
1815
f6bdafef
JB
1816/*
1817 * Print the events from <debugfs_mount_point>/tracing/events
1818 */
1819
a3277d2d
FW
1820void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
1821 bool name_only)
f6bdafef
JB
1822{
1823 DIR *sys_dir, *evt_dir;
22a9f41b 1824 struct dirent *sys_dirent, *evt_dirent;
f6bdafef 1825 char evt_path[MAXPATHLEN];
725b1368 1826 char dir_path[MAXPATHLEN];
ab0e4800
YS
1827 char **evt_list = NULL;
1828 unsigned int evt_i = 0, evt_num = 0;
1829 bool evt_num_known = false;
f6bdafef 1830
ab0e4800 1831restart:
ebf294bf 1832 sys_dir = opendir(tracing_events_path);
f6bdafef 1833 if (!sys_dir)
725b1368 1834 return;
6b58e7f1 1835
ab0e4800
YS
1836 if (evt_num_known) {
1837 evt_list = zalloc(sizeof(char *) * evt_num);
1838 if (!evt_list)
1839 goto out_close_sys_dir;
1840 }
1841
22a9f41b 1842 for_each_subsystem(sys_dir, sys_dirent) {
48000a1a 1843 if (subsys_glob != NULL &&
22a9f41b 1844 !strglobmatch(sys_dirent->d_name, subsys_glob))
668b8788 1845 continue;
725b1368 1846
ebf294bf 1847 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
22a9f41b 1848 sys_dirent->d_name);
725b1368
ED
1849 evt_dir = opendir(dir_path);
1850 if (!evt_dir)
6b58e7f1 1851 continue;
725b1368 1852
22a9f41b 1853 for_each_event(sys_dirent, evt_dir, evt_dirent) {
48000a1a 1854 if (event_glob != NULL &&
22a9f41b 1855 !strglobmatch(evt_dirent->d_name, event_glob))
668b8788
ACM
1856 continue;
1857
ab0e4800
YS
1858 if (!evt_num_known) {
1859 evt_num++;
a3277d2d
FW
1860 continue;
1861 }
1862
f6bdafef 1863 snprintf(evt_path, MAXPATHLEN, "%s:%s",
22a9f41b 1864 sys_dirent->d_name, evt_dirent->d_name);
ab0e4800
YS
1865
1866 evt_list[evt_i] = strdup(evt_path);
1867 if (evt_list[evt_i] == NULL)
1868 goto out_close_evt_dir;
1869 evt_i++;
f6bdafef
JB
1870 }
1871 closedir(evt_dir);
1872 }
f6bdafef 1873 closedir(sys_dir);
ab0e4800
YS
1874
1875 if (!evt_num_known) {
1876 evt_num_known = true;
1877 goto restart;
1878 }
1879 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
1880 evt_i = 0;
1881 while (evt_i < evt_num) {
1882 if (name_only) {
1883 printf("%s ", evt_list[evt_i++]);
1884 continue;
1885 }
1886 printf(" %-50s [%s]\n", evt_list[evt_i++],
1887 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
1888 }
dfc431cb 1889 if (evt_num && pager_in_use())
ab0e4800
YS
1890 printf("\n");
1891
1892out_free:
1893 evt_num = evt_i;
1894 for (evt_i = 0; evt_i < evt_num; evt_i++)
1895 zfree(&evt_list[evt_i]);
1896 zfree(&evt_list);
1897 return;
1898
1899out_close_evt_dir:
1900 closedir(evt_dir);
1901out_close_sys_dir:
1902 closedir(sys_dir);
1903
1904 printf("FATAL: not enough memory to print %s\n",
1905 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
1906 if (evt_list)
1907 goto out_free;
f6bdafef
JB
1908}
1909
20c457b8
TR
1910/*
1911 * Check whether event is in <debugfs_mount_point>/tracing/events
1912 */
1913
1914int is_valid_tracepoint(const char *event_string)
1915{
1916 DIR *sys_dir, *evt_dir;
22a9f41b 1917 struct dirent *sys_dirent, *evt_dirent;
20c457b8
TR
1918 char evt_path[MAXPATHLEN];
1919 char dir_path[MAXPATHLEN];
1920
ebf294bf 1921 sys_dir = opendir(tracing_events_path);
20c457b8
TR
1922 if (!sys_dir)
1923 return 0;
1924
22a9f41b 1925 for_each_subsystem(sys_dir, sys_dirent) {
20c457b8 1926
ebf294bf 1927 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
22a9f41b 1928 sys_dirent->d_name);
20c457b8
TR
1929 evt_dir = opendir(dir_path);
1930 if (!evt_dir)
1931 continue;
1932
22a9f41b 1933 for_each_event(sys_dirent, evt_dir, evt_dirent) {
20c457b8 1934 snprintf(evt_path, MAXPATHLEN, "%s:%s",
22a9f41b 1935 sys_dirent->d_name, evt_dirent->d_name);
20c457b8
TR
1936 if (!strcmp(evt_path, event_string)) {
1937 closedir(evt_dir);
1938 closedir(sys_dir);
1939 return 1;
1940 }
1941 }
1942 closedir(evt_dir);
1943 }
1944 closedir(sys_dir);
1945 return 0;
1946}
1947
b41f1cec
NK
1948static bool is_event_supported(u8 type, unsigned config)
1949{
1950 bool ret = true;
88fee52e 1951 int open_return;
b41f1cec
NK
1952 struct perf_evsel *evsel;
1953 struct perf_event_attr attr = {
1954 .type = type,
1955 .config = config,
1956 .disabled = 1,
b41f1cec
NK
1957 };
1958 struct {
1959 struct thread_map map;
1960 int threads[1];
1961 } tmap = {
1962 .map.nr = 1,
1963 .threads = { 0 },
1964 };
1965
ef503831 1966 evsel = perf_evsel__new(&attr);
b41f1cec 1967 if (evsel) {
88fee52e
VW
1968 open_return = perf_evsel__open(evsel, NULL, &tmap.map);
1969 ret = open_return >= 0;
1970
1971 if (open_return == -EACCES) {
1972 /*
1973 * This happens if the paranoid value
1974 * /proc/sys/kernel/perf_event_paranoid is set to 2
1975 * Re-run with exclude_kernel set; we don't do that
1976 * by default as some ARM machines do not support it.
1977 *
1978 */
1979 evsel->attr.exclude_kernel = 1;
1980 ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0;
1981 }
b41f1cec
NK
1982 perf_evsel__delete(evsel);
1983 }
1984
1985 return ret;
1986}
1987
40218dae
MH
1988void print_sdt_events(const char *subsys_glob, const char *event_glob,
1989 bool name_only)
1990{
1991 struct probe_cache *pcache;
1992 struct probe_cache_entry *ent;
1993 struct strlist *bidlist, *sdtlist;
1994 struct strlist_config cfg = {.dont_dupstr = true};
1995 struct str_node *nd, *nd2;
1996 char *buf, *path, *ptr = NULL;
1997 bool show_detail = false;
1998 int ret;
1999
2000 sdtlist = strlist__new(NULL, &cfg);
2001 if (!sdtlist) {
2002 pr_debug("Failed to allocate new strlist for SDT\n");
2003 return;
2004 }
2005 bidlist = build_id_cache__list_all(true);
2006 if (!bidlist) {
2007 pr_debug("Failed to get buildids: %d\n", errno);
2008 return;
2009 }
2010 strlist__for_each_entry(nd, bidlist) {
2011 pcache = probe_cache__new(nd->s);
2012 if (!pcache)
2013 continue;
2014 list_for_each_entry(ent, &pcache->entries, node) {
2015 if (!ent->sdt)
2016 continue;
2017 if (subsys_glob &&
2018 !strglobmatch(ent->pev.group, subsys_glob))
2019 continue;
2020 if (event_glob &&
2021 !strglobmatch(ent->pev.event, event_glob))
2022 continue;
2023 ret = asprintf(&buf, "%s:%s@%s", ent->pev.group,
2024 ent->pev.event, nd->s);
2025 if (ret > 0)
2026 strlist__add(sdtlist, buf);
2027 }
2028 probe_cache__delete(pcache);
2029 }
2030 strlist__delete(bidlist);
2031
2032 strlist__for_each_entry(nd, sdtlist) {
2033 buf = strchr(nd->s, '@');
2034 if (buf)
2035 *(buf++) = '\0';
2036 if (name_only) {
2037 printf("%s ", nd->s);
2038 continue;
2039 }
2040 nd2 = strlist__next(nd);
2041 if (nd2) {
2042 ptr = strchr(nd2->s, '@');
2043 if (ptr)
2044 *ptr = '\0';
2045 if (strcmp(nd->s, nd2->s) == 0)
2046 show_detail = true;
2047 }
2048 if (show_detail) {
2049 path = build_id_cache__origname(buf);
2050 ret = asprintf(&buf, "%s@%s(%.12s)", nd->s, path, buf);
2051 if (ret > 0) {
2052 printf(" %-50s [%s]\n", buf, "SDT event");
2053 free(buf);
2054 }
2055 } else
2056 printf(" %-50s [%s]\n", nd->s, "SDT event");
2057 if (nd2) {
2058 if (strcmp(nd->s, nd2->s) != 0)
2059 show_detail = false;
2060 if (ptr)
2061 *ptr = '@';
2062 }
2063 }
2064 strlist__delete(sdtlist);
2065}
2066
a3277d2d 2067int print_hwcache_events(const char *event_glob, bool name_only)
668b8788 2068{
ab0e4800 2069 unsigned int type, op, i, evt_i = 0, evt_num = 0;
0b668bc9 2070 char name[64];
ab0e4800
YS
2071 char **evt_list = NULL;
2072 bool evt_num_known = false;
2073
2074restart:
2075 if (evt_num_known) {
2076 evt_list = zalloc(sizeof(char *) * evt_num);
2077 if (!evt_list)
2078 goto out_enomem;
2079 }
668b8788
ACM
2080
2081 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
2082 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
2083 /* skip invalid cache type */
0b668bc9 2084 if (!perf_evsel__is_cache_op_valid(type, op))
668b8788
ACM
2085 continue;
2086
2087 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
0b668bc9
ACM
2088 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
2089 name, sizeof(name));
947b4ad1 2090 if (event_glob != NULL && !strglobmatch(name, event_glob))
668b8788
ACM
2091 continue;
2092
b41f1cec
NK
2093 if (!is_event_supported(PERF_TYPE_HW_CACHE,
2094 type | (op << 8) | (i << 16)))
2095 continue;
2096
ab0e4800
YS
2097 if (!evt_num_known) {
2098 evt_num++;
2099 continue;
2100 }
2101
2102 evt_list[evt_i] = strdup(name);
2103 if (evt_list[evt_i] == NULL)
2104 goto out_enomem;
2105 evt_i++;
668b8788
ACM
2106 }
2107 }
2108 }
2109
ab0e4800
YS
2110 if (!evt_num_known) {
2111 evt_num_known = true;
2112 goto restart;
2113 }
2114 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2115 evt_i = 0;
2116 while (evt_i < evt_num) {
2117 if (name_only) {
2118 printf("%s ", evt_list[evt_i++]);
2119 continue;
2120 }
2121 printf(" %-50s [%s]\n", evt_list[evt_i++],
2122 event_type_descriptors[PERF_TYPE_HW_CACHE]);
2123 }
dfc431cb 2124 if (evt_num && pager_in_use())
dc098b35 2125 printf("\n");
ab0e4800
YS
2126
2127out_free:
2128 evt_num = evt_i;
2129 for (evt_i = 0; evt_i < evt_num; evt_i++)
2130 zfree(&evt_list[evt_i]);
2131 zfree(&evt_list);
2132 return evt_num;
2133
2134out_enomem:
2135 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[PERF_TYPE_HW_CACHE]);
2136 if (evt_list)
2137 goto out_free;
2138 return evt_num;
668b8788
ACM
2139}
2140
705750f2 2141void print_symbol_events(const char *event_glob, unsigned type,
a3277d2d
FW
2142 struct event_symbol *syms, unsigned max,
2143 bool name_only)
8ad8db37 2144{
ab0e4800 2145 unsigned int i, evt_i = 0, evt_num = 0;
947b4ad1 2146 char name[MAX_NAME_LEN];
ab0e4800
YS
2147 char **evt_list = NULL;
2148 bool evt_num_known = false;
2149
2150restart:
2151 if (evt_num_known) {
2152 evt_list = zalloc(sizeof(char *) * evt_num);
2153 if (!evt_list)
2154 goto out_enomem;
2155 syms -= max;
2156 }
8ad8db37 2157
1dc12760 2158 for (i = 0; i < max; i++, syms++) {
668b8788 2159
e37df6c7 2160 if (event_glob != NULL && syms->symbol != NULL &&
668b8788
ACM
2161 !(strglobmatch(syms->symbol, event_glob) ||
2162 (syms->alias && strglobmatch(syms->alias, event_glob))))
2163 continue;
8ad8db37 2164
b41f1cec
NK
2165 if (!is_event_supported(type, i))
2166 continue;
2167
ab0e4800
YS
2168 if (!evt_num_known) {
2169 evt_num++;
a3277d2d
FW
2170 continue;
2171 }
2172
ab0e4800 2173 if (!name_only && strlen(syms->alias))
947b4ad1 2174 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
74d5b588 2175 else
947b4ad1 2176 strncpy(name, syms->symbol, MAX_NAME_LEN);
8ad8db37 2177
ab0e4800
YS
2178 evt_list[evt_i] = strdup(name);
2179 if (evt_list[evt_i] == NULL)
2180 goto out_enomem;
2181 evt_i++;
8ad8db37
IM
2182 }
2183
ab0e4800
YS
2184 if (!evt_num_known) {
2185 evt_num_known = true;
2186 goto restart;
2187 }
2188 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2189 evt_i = 0;
2190 while (evt_i < evt_num) {
2191 if (name_only) {
2192 printf("%s ", evt_list[evt_i++]);
2193 continue;
2194 }
2195 printf(" %-50s [%s]\n", evt_list[evt_i++], event_type_descriptors[type]);
2196 }
dfc431cb 2197 if (evt_num && pager_in_use())
668b8788 2198 printf("\n");
ab0e4800
YS
2199
2200out_free:
2201 evt_num = evt_i;
2202 for (evt_i = 0; evt_i < evt_num; evt_i++)
2203 zfree(&evt_list[evt_i]);
2204 zfree(&evt_list);
2205 return;
2206
2207out_enomem:
2208 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[type]);
2209 if (evt_list)
2210 goto out_free;
1dc12760
JO
2211}
2212
2213/*
2214 * Print the help text for the event symbols:
2215 */
a3277d2d 2216void print_events(const char *event_glob, bool name_only)
1dc12760 2217{
1dc12760 2218 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
a3277d2d 2219 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1dc12760
JO
2220
2221 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
a3277d2d 2222 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1dc12760 2223
a3277d2d 2224 print_hwcache_events(event_glob, name_only);
668b8788 2225
dc098b35
AK
2226 print_pmu_events(event_glob, name_only);
2227
668b8788
ACM
2228 if (event_glob != NULL)
2229 return;
73c24cb8 2230
a3277d2d 2231 if (!name_only) {
a3277d2d
FW
2232 printf(" %-50s [%s]\n",
2233 "rNNN",
2234 event_type_descriptors[PERF_TYPE_RAW]);
2235 printf(" %-50s [%s]\n",
2236 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
2237 event_type_descriptors[PERF_TYPE_RAW]);
dfc431cb
ACM
2238 if (pager_in_use())
2239 printf(" (see 'man perf-list' on how to encode it)\n\n");
a3277d2d
FW
2240
2241 printf(" %-50s [%s]\n",
3741eb9f 2242 "mem:<addr>[/len][:access]",
41bdcb23 2243 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
dfc431cb
ACM
2244 if (pager_in_use())
2245 printf("\n");
a3277d2d 2246 }
1b290d67 2247
a3277d2d 2248 print_tracepoint_events(NULL, NULL, name_only);
40218dae
MH
2249
2250 print_sdt_events(NULL, NULL, name_only);
8ad8db37 2251}
8f707d84 2252
6cee6cd3 2253int parse_events__is_hardcoded_term(struct parse_events_term *term)
8f707d84 2254{
16fa7e82 2255 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
8f707d84
JO
2256}
2257
6cee6cd3 2258static int new_term(struct parse_events_term **_term, int type_val,
16fa7e82 2259 int type_term, char *config,
cecf3a2e 2260 char *str, u64 num, int err_term, int err_val)
8f707d84 2261{
6cee6cd3 2262 struct parse_events_term *term;
8f707d84
JO
2263
2264 term = zalloc(sizeof(*term));
2265 if (!term)
2266 return -ENOMEM;
2267
2268 INIT_LIST_HEAD(&term->list);
16fa7e82
JO
2269 term->type_val = type_val;
2270 term->type_term = type_term;
8f707d84 2271 term->config = config;
cecf3a2e
JO
2272 term->err_term = err_term;
2273 term->err_val = err_val;
8f707d84 2274
16fa7e82 2275 switch (type_val) {
8f707d84
JO
2276 case PARSE_EVENTS__TERM_TYPE_NUM:
2277 term->val.num = num;
2278 break;
2279 case PARSE_EVENTS__TERM_TYPE_STR:
2280 term->val.str = str;
2281 break;
2282 default:
4be8be6b 2283 free(term);
8f707d84
JO
2284 return -EINVAL;
2285 }
2286
2287 *_term = term;
2288 return 0;
2289}
2290
6cee6cd3 2291int parse_events_term__num(struct parse_events_term **term,
cecf3a2e 2292 int type_term, char *config, u64 num,
bb78ce7d 2293 void *loc_term_, void *loc_val_)
16fa7e82 2294{
bb78ce7d
AH
2295 YYLTYPE *loc_term = loc_term_;
2296 YYLTYPE *loc_val = loc_val_;
2297
16fa7e82 2298 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
cecf3a2e
JO
2299 config, NULL, num,
2300 loc_term ? loc_term->first_column : 0,
2301 loc_val ? loc_val->first_column : 0);
16fa7e82
JO
2302}
2303
6cee6cd3 2304int parse_events_term__str(struct parse_events_term **term,
cecf3a2e 2305 int type_term, char *config, char *str,
bb78ce7d 2306 void *loc_term_, void *loc_val_)
16fa7e82 2307{
bb78ce7d
AH
2308 YYLTYPE *loc_term = loc_term_;
2309 YYLTYPE *loc_val = loc_val_;
2310
16fa7e82 2311 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
cecf3a2e
JO
2312 config, str, 0,
2313 loc_term ? loc_term->first_column : 0,
2314 loc_val ? loc_val->first_column : 0);
16fa7e82
JO
2315}
2316
6cee6cd3 2317int parse_events_term__sym_hw(struct parse_events_term **term,
1d33d6dc
JO
2318 char *config, unsigned idx)
2319{
2320 struct event_symbol *sym;
2321
2322 BUG_ON(idx >= PERF_COUNT_HW_MAX);
2323 sym = &event_symbols_hw[idx];
2324
2325 if (config)
2326 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
2327 PARSE_EVENTS__TERM_TYPE_USER, config,
cecf3a2e 2328 (char *) sym->symbol, 0, 0, 0);
1d33d6dc
JO
2329 else
2330 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
2331 PARSE_EVENTS__TERM_TYPE_USER,
cecf3a2e
JO
2332 (char *) "event", (char *) sym->symbol,
2333 0, 0, 0);
1d33d6dc
JO
2334}
2335
6cee6cd3
ACM
2336int parse_events_term__clone(struct parse_events_term **new,
2337 struct parse_events_term *term)
a6146d50
ZY
2338{
2339 return new_term(new, term->type_val, term->type_term, term->config,
cecf3a2e
JO
2340 term->val.str, term->val.num,
2341 term->err_term, term->err_val);
a6146d50
ZY
2342}
2343
fc0a2c1d 2344void parse_events_terms__purge(struct list_head *terms)
8f707d84 2345{
6cee6cd3 2346 struct parse_events_term *term, *h;
8f707d84 2347
a8adfceb 2348 list_for_each_entry_safe(term, h, terms, list) {
2d055bf2
WN
2349 if (term->array.nr_ranges)
2350 free(term->array.ranges);
a8adfceb 2351 list_del_init(&term->list);
8f707d84 2352 free(term);
a8adfceb 2353 }
8f707d84 2354}
b39b8393 2355
2146afc6 2356void parse_events_terms__delete(struct list_head *terms)
fc0a2c1d 2357{
2146afc6
ACM
2358 if (!terms)
2359 return;
fc0a2c1d 2360 parse_events_terms__purge(terms);
d20a5f2b 2361 free(terms);
fc0a2c1d
ACM
2362}
2363
2d055bf2
WN
2364void parse_events__clear_array(struct parse_events_array *a)
2365{
2366 free(a->ranges);
2367}
2368
b39b8393
JO
2369void parse_events_evlist_error(struct parse_events_evlist *data,
2370 int idx, const char *str)
2371{
2372 struct parse_events_error *err = data->error;
2373
a6ced2be
AH
2374 if (!err)
2375 return;
b39b8393
JO
2376 err->idx = idx;
2377 err->str = strdup(str);
2378 WARN_ONCE(!err->str, "WARNING: failed to allocate error string");
2379}
ffeb883e 2380
17cb5f84
WN
2381static void config_terms_list(char *buf, size_t buf_sz)
2382{
2383 int i;
2384 bool first = true;
2385
2386 buf[0] = '\0';
2387 for (i = 0; i < __PARSE_EVENTS__TERM_TYPE_NR; i++) {
2388 const char *name = config_term_names[i];
2389
1669e509
WN
2390 if (!config_term_avail(i, NULL))
2391 continue;
17cb5f84
WN
2392 if (!name)
2393 continue;
2394 if (name[0] == '<')
2395 continue;
2396
2397 if (strlen(buf) + strlen(name) + 2 >= buf_sz)
2398 return;
2399
2400 if (!first)
2401 strcat(buf, ",");
2402 else
2403 first = false;
2404 strcat(buf, name);
2405 }
2406}
2407
ffeb883e
HK
2408/*
2409 * Return string contains valid config terms of an event.
2410 * @additional_terms: For terms such as PMU sysfs terms.
2411 */
2412char *parse_events_formats_error_string(char *additional_terms)
2413{
2414 char *str;
17cb5f84
WN
2415 /* "branch_type" is the longest name */
2416 char static_terms[__PARSE_EVENTS__TERM_TYPE_NR *
2417 (sizeof("branch_type") - 1)];
ffeb883e 2418
17cb5f84 2419 config_terms_list(static_terms, sizeof(static_terms));
ffeb883e
HK
2420 /* valid terms */
2421 if (additional_terms) {
26dee028
WN
2422 if (asprintf(&str, "valid terms: %s,%s",
2423 additional_terms, static_terms) < 0)
ffeb883e
HK
2424 goto fail;
2425 } else {
26dee028 2426 if (asprintf(&str, "valid terms: %s", static_terms) < 0)
ffeb883e
HK
2427 goto fail;
2428 }
2429 return str;
2430
2431fail:
2432 return NULL;
2433}