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