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