perf tools: Remove addr_location argument to sample__fprintf_callchain
[linux-block.git] / tools / perf / builtin-script.c
CommitLineData
5f9c39dc
FW
1#include "builtin.h"
2
b7eead86 3#include "perf.h"
5f9c39dc 4#include "util/cache.h"
b7eead86 5#include "util/debug.h"
4b6ab94e 6#include <subcmd/exec-cmd.h>
b7eead86 7#include "util/header.h"
4b6ab94e 8#include <subcmd/parse-options.h>
fc36f948 9#include "util/perf_regs.h"
b7eead86 10#include "util/session.h"
45694aa7 11#include "util/tool.h"
5f9c39dc
FW
12#include "util/symbol.h"
13#include "util/thread.h"
cf72344d 14#include "util/trace-event.h"
b7eead86 15#include "util/util.h"
1424dc96
DA
16#include "util/evlist.h"
17#include "util/evsel.h"
36385be5 18#include "util/sort.h"
f5fc1412 19#include "util/data.h"
7a680eb9 20#include "util/auxtrace.h"
cfc8874a
JO
21#include "util/cpumap.h"
22#include "util/thread_map.h"
23#include "util/stat.h"
5d67be97 24#include <linux/bitmap.h>
cfc8874a 25#include "asm/bug.h"
c19ac912 26#include "util/mem-events.h"
5f9c39dc 27
956ffd02
TZ
28static char const *script_name;
29static char const *generate_script_lang;
ffabd99e 30static bool debug_mode;
e1889d75 31static u64 last_timestamp;
6fcf7ddb 32static u64 nr_unordered;
c0230b2b 33static bool no_callchain;
47390ae2 34static bool latency_format;
317df650 35static bool system_wide;
400ea6d3 36static bool print_flags;
83e19860 37static bool nanosecs;
5d67be97
AB
38static const char *cpu_list;
39static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
91a2c3d5 40static struct perf_stat_config stat_config;
956ffd02 41
44cbe729 42unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
03cd1fed 43
745f43e3
DA
44enum perf_output_field {
45 PERF_OUTPUT_COMM = 1U << 0,
46 PERF_OUTPUT_TID = 1U << 1,
47 PERF_OUTPUT_PID = 1U << 2,
48 PERF_OUTPUT_TIME = 1U << 3,
49 PERF_OUTPUT_CPU = 1U << 4,
50 PERF_OUTPUT_EVNAME = 1U << 5,
51 PERF_OUTPUT_TRACE = 1U << 6,
787bef17
DA
52 PERF_OUTPUT_IP = 1U << 7,
53 PERF_OUTPUT_SYM = 1U << 8,
610723f2 54 PERF_OUTPUT_DSO = 1U << 9,
7cec0922 55 PERF_OUTPUT_ADDR = 1U << 10,
a978f2ab 56 PERF_OUTPUT_SYMOFFSET = 1U << 11,
cc8fae1d 57 PERF_OUTPUT_SRCLINE = 1U << 12,
535aeaae 58 PERF_OUTPUT_PERIOD = 1U << 13,
fc36f948 59 PERF_OUTPUT_IREGS = 1U << 14,
dc323ce8
SE
60 PERF_OUTPUT_BRSTACK = 1U << 15,
61 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
94ddddfa
JO
62 PERF_OUTPUT_DATA_SRC = 1U << 17,
63 PERF_OUTPUT_WEIGHT = 1U << 18,
30372f04 64 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
745f43e3
DA
65};
66
67struct output_option {
68 const char *str;
69 enum perf_output_field field;
70} all_output_options[] = {
71 {.str = "comm", .field = PERF_OUTPUT_COMM},
72 {.str = "tid", .field = PERF_OUTPUT_TID},
73 {.str = "pid", .field = PERF_OUTPUT_PID},
74 {.str = "time", .field = PERF_OUTPUT_TIME},
75 {.str = "cpu", .field = PERF_OUTPUT_CPU},
76 {.str = "event", .field = PERF_OUTPUT_EVNAME},
77 {.str = "trace", .field = PERF_OUTPUT_TRACE},
787bef17 78 {.str = "ip", .field = PERF_OUTPUT_IP},
c0230b2b 79 {.str = "sym", .field = PERF_OUTPUT_SYM},
610723f2 80 {.str = "dso", .field = PERF_OUTPUT_DSO},
7cec0922 81 {.str = "addr", .field = PERF_OUTPUT_ADDR},
a978f2ab 82 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
cc8fae1d 83 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
535aeaae 84 {.str = "period", .field = PERF_OUTPUT_PERIOD},
fc36f948 85 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
dc323ce8
SE
86 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
87 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
94ddddfa
JO
88 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
89 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
30372f04 90 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
745f43e3
DA
91};
92
93/* default set to maintain compatibility with current format */
2c9e45f7
DA
94static struct {
95 bool user_set;
9cbdb702 96 bool wildcard_set;
a6ffaf91 97 unsigned int print_ip_opts;
2c9e45f7
DA
98 u64 fields;
99 u64 invalid_fields;
100} output[PERF_TYPE_MAX] = {
101
102 [PERF_TYPE_HARDWARE] = {
103 .user_set = false,
104
105 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
106 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
787bef17 107 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
e8564b71
JO
108 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
109 PERF_OUTPUT_PERIOD,
2c9e45f7 110
30372f04 111 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
2c9e45f7
DA
112 },
113
114 [PERF_TYPE_SOFTWARE] = {
115 .user_set = false,
116
117 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
118 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
787bef17 119 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
e8564b71 120 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
30372f04 121 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
2c9e45f7
DA
122
123 .invalid_fields = PERF_OUTPUT_TRACE,
124 },
125
126 [PERF_TYPE_TRACEPOINT] = {
127 .user_set = false,
128
129 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
130 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
30372f04 131 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
2c9e45f7 132 },
0817a6a3
AS
133
134 [PERF_TYPE_RAW] = {
135 .user_set = false,
136
137 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
138 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
787bef17 139 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
e8564b71 140 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
ff7b1915
JO
141 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
142 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT,
0817a6a3 143
30372f04 144 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
0817a6a3 145 },
27cfef00
WN
146
147 [PERF_TYPE_BREAKPOINT] = {
148 .user_set = false,
149
150 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
151 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
152 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
153 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
154 PERF_OUTPUT_PERIOD,
155
30372f04 156 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
27cfef00 157 },
1424dc96 158};
745f43e3 159
2c9e45f7
DA
160static bool output_set_by_user(void)
161{
162 int j;
163 for (j = 0; j < PERF_TYPE_MAX; ++j) {
164 if (output[j].user_set)
165 return true;
166 }
167 return false;
168}
745f43e3 169
9cbdb702
DA
170static const char *output_field2str(enum perf_output_field field)
171{
172 int i, imax = ARRAY_SIZE(all_output_options);
173 const char *str = "";
174
175 for (i = 0; i < imax; ++i) {
176 if (all_output_options[i].field == field) {
177 str = all_output_options[i].str;
178 break;
179 }
180 }
181 return str;
182}
183
2c9e45f7 184#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
1424dc96 185
6d5cdd64
AH
186static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
187 u64 sample_type, const char *sample_msg,
188 enum perf_output_field field,
189 bool allow_user_set)
1424dc96 190{
5bff01f6 191 struct perf_event_attr *attr = &evsel->attr;
9cbdb702
DA
192 int type = attr->type;
193 const char *evname;
194
195 if (attr->sample_type & sample_type)
196 return 0;
197
198 if (output[type].user_set) {
6d5cdd64
AH
199 if (allow_user_set)
200 return 0;
5bff01f6 201 evname = perf_evsel__name(evsel);
9cbdb702
DA
202 pr_err("Samples for '%s' event do not have %s attribute set. "
203 "Cannot print '%s' field.\n",
204 evname, sample_msg, output_field2str(field));
205 return -1;
206 }
207
208 /* user did not ask for it explicitly so remove from the default list */
209 output[type].fields &= ~field;
5bff01f6 210 evname = perf_evsel__name(evsel);
9cbdb702
DA
211 pr_debug("Samples for '%s' event do not have %s attribute set. "
212 "Skipping '%s' field.\n",
213 evname, sample_msg, output_field2str(field));
214
215 return 0;
216}
217
6d5cdd64
AH
218static int perf_evsel__check_stype(struct perf_evsel *evsel,
219 u64 sample_type, const char *sample_msg,
220 enum perf_output_field field)
221{
222 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
223 false);
224}
225
9cbdb702
DA
226static int perf_evsel__check_attr(struct perf_evsel *evsel,
227 struct perf_session *session)
228{
229 struct perf_event_attr *attr = &evsel->attr;
6d5cdd64
AH
230 bool allow_user_set;
231
e099eba8
JO
232 if (perf_header__has_feat(&session->header, HEADER_STAT))
233 return 0;
234
6d5cdd64
AH
235 allow_user_set = perf_header__has_feat(&session->header,
236 HEADER_AUXTRACE);
9cbdb702 237
1424dc96
DA
238 if (PRINT_FIELD(TRACE) &&
239 !perf_session__has_traces(session, "record -R"))
240 return -EINVAL;
241
787bef17 242 if (PRINT_FIELD(IP)) {
5bff01f6
ACM
243 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
244 PERF_OUTPUT_IP))
1424dc96 245 return -EINVAL;
1424dc96 246 }
7cec0922
DA
247
248 if (PRINT_FIELD(ADDR) &&
6d5cdd64
AH
249 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
250 PERF_OUTPUT_ADDR, allow_user_set))
7cec0922
DA
251 return -EINVAL;
252
94ddddfa
JO
253 if (PRINT_FIELD(DATA_SRC) &&
254 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
255 PERF_OUTPUT_DATA_SRC))
256 return -EINVAL;
257
258 if (PRINT_FIELD(WEIGHT) &&
259 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
260 PERF_OUTPUT_WEIGHT))
261 return -EINVAL;
262
7cec0922
DA
263 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
264 pr_err("Display of symbols requested but neither sample IP nor "
265 "sample address\nis selected. Hence, no addresses to convert "
266 "to symbols.\n");
787bef17
DA
267 return -EINVAL;
268 }
a978f2ab
AN
269 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
270 pr_err("Display of offsets requested but symbol is not"
271 "selected.\n");
272 return -EINVAL;
273 }
7cec0922
DA
274 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
275 pr_err("Display of DSO requested but neither sample IP nor "
276 "sample address\nis selected. Hence, no addresses to convert "
277 "to DSO.\n");
610723f2
DA
278 return -EINVAL;
279 }
cc8fae1d
AH
280 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
281 pr_err("Display of source line number requested but sample IP is not\n"
282 "selected. Hence, no address to lookup the source line number.\n");
283 return -EINVAL;
284 }
1424dc96
DA
285
286 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
5bff01f6
ACM
287 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
288 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
1424dc96 289 return -EINVAL;
1424dc96
DA
290
291 if (PRINT_FIELD(TIME) &&
5bff01f6
ACM
292 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
293 PERF_OUTPUT_TIME))
1424dc96 294 return -EINVAL;
1424dc96
DA
295
296 if (PRINT_FIELD(CPU) &&
6d5cdd64
AH
297 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
298 PERF_OUTPUT_CPU, allow_user_set))
1424dc96 299 return -EINVAL;
9cbdb702 300
535aeaae
JO
301 if (PRINT_FIELD(PERIOD) &&
302 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
303 PERF_OUTPUT_PERIOD))
304 return -EINVAL;
305
fc36f948
SE
306 if (PRINT_FIELD(IREGS) &&
307 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
308 PERF_OUTPUT_IREGS))
309 return -EINVAL;
310
9cbdb702
DA
311 return 0;
312}
313
7ea95727
AH
314static void set_print_ip_opts(struct perf_event_attr *attr)
315{
316 unsigned int type = attr->type;
317
318 output[type].print_ip_opts = 0;
319 if (PRINT_FIELD(IP))
e20ab86e 320 output[type].print_ip_opts |= EVSEL__PRINT_IP;
7ea95727
AH
321
322 if (PRINT_FIELD(SYM))
e20ab86e 323 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
7ea95727
AH
324
325 if (PRINT_FIELD(DSO))
e20ab86e 326 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
7ea95727
AH
327
328 if (PRINT_FIELD(SYMOFFSET))
e20ab86e 329 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
cc8fae1d
AH
330
331 if (PRINT_FIELD(SRCLINE))
e20ab86e 332 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
7ea95727
AH
333}
334
9cbdb702
DA
335/*
336 * verify all user requested events exist and the samples
337 * have the expected data
338 */
339static int perf_session__check_output_opt(struct perf_session *session)
340{
341 int j;
342 struct perf_evsel *evsel;
343
344 for (j = 0; j < PERF_TYPE_MAX; ++j) {
345 evsel = perf_session__find_first_evtype(session, j);
346
347 /*
348 * even if fields is set to 0 (ie., show nothing) event must
349 * exist if user explicitly includes it on the command line
350 */
351 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
352 pr_err("%s events do not exist. "
353 "Remove corresponding -f option to proceed.\n",
354 event_type(j));
355 return -1;
356 }
357
358 if (evsel && output[j].fields &&
359 perf_evsel__check_attr(evsel, session))
360 return -1;
a6ffaf91
DA
361
362 if (evsel == NULL)
363 continue;
364
7ea95727 365 set_print_ip_opts(&evsel->attr);
1424dc96
DA
366 }
367
98526ee7
AH
368 if (!no_callchain) {
369 bool use_callchain = false;
370
371 evlist__for_each(session->evlist, evsel) {
372 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
373 use_callchain = true;
374 break;
375 }
376 }
377 if (!use_callchain)
378 symbol_conf.use_callchain = false;
379 }
380
80b8b496
DA
381 /*
382 * set default for tracepoints to print symbols only
383 * if callchains are present
384 */
385 if (symbol_conf.use_callchain &&
386 !output[PERF_TYPE_TRACEPOINT].user_set) {
387 struct perf_event_attr *attr;
388
389 j = PERF_TYPE_TRACEPOINT;
390 evsel = perf_session__find_first_evtype(session, j);
391 if (evsel == NULL)
392 goto out;
393
394 attr = &evsel->attr;
395
396 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
397 output[j].fields |= PERF_OUTPUT_IP;
398 output[j].fields |= PERF_OUTPUT_SYM;
399 output[j].fields |= PERF_OUTPUT_DSO;
400 set_print_ip_opts(attr);
401 }
402 }
403
404out:
1424dc96
DA
405 return 0;
406}
745f43e3 407
a3dff304 408static void print_sample_iregs(struct perf_sample *sample,
fc36f948
SE
409 struct perf_event_attr *attr)
410{
411 struct regs_dump *regs = &sample->intr_regs;
412 uint64_t mask = attr->sample_regs_intr;
413 unsigned i = 0, r;
414
415 if (!regs)
416 return;
417
418 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
419 u64 val = regs->regs[i++];
420 printf("%5s:0x%"PRIx64" ", perf_reg_name(r), val);
421 }
422}
423
fcf65bf1 424static void print_sample_start(struct perf_sample *sample,
1424dc96 425 struct thread *thread,
5bff01f6 426 struct perf_evsel *evsel)
c70c94b4 427{
5bff01f6 428 struct perf_event_attr *attr = &evsel->attr;
c70c94b4
DA
429 unsigned long secs;
430 unsigned long usecs;
745f43e3
DA
431 unsigned long long nsecs;
432
433 if (PRINT_FIELD(COMM)) {
434 if (latency_format)
b9c5143a 435 printf("%8.8s ", thread__comm_str(thread));
787bef17 436 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
b9c5143a 437 printf("%s ", thread__comm_str(thread));
745f43e3 438 else
b9c5143a 439 printf("%16s ", thread__comm_str(thread));
745f43e3 440 }
c70c94b4 441
745f43e3
DA
442 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
443 printf("%5d/%-5d ", sample->pid, sample->tid);
444 else if (PRINT_FIELD(PID))
445 printf("%5d ", sample->pid);
446 else if (PRINT_FIELD(TID))
447 printf("%5d ", sample->tid);
448
449 if (PRINT_FIELD(CPU)) {
450 if (latency_format)
451 printf("%3d ", sample->cpu);
452 else
453 printf("[%03d] ", sample->cpu);
454 }
c70c94b4 455
745f43e3
DA
456 if (PRINT_FIELD(TIME)) {
457 nsecs = sample->time;
458 secs = nsecs / NSECS_PER_SEC;
459 nsecs -= secs * NSECS_PER_SEC;
460 usecs = nsecs / NSECS_PER_USEC;
83e19860
AH
461 if (nanosecs)
462 printf("%5lu.%09llu: ", secs, nsecs);
463 else
464 printf("%5lu.%06lu: ", secs, usecs);
745f43e3 465 }
c70c94b4
DA
466}
467
dc323ce8
SE
468static inline char
469mispred_str(struct branch_entry *br)
470{
471 if (!(br->flags.mispred || br->flags.predicted))
472 return '-';
473
474 return br->flags.predicted ? 'P' : 'M';
475}
476
a3dff304 477static void print_sample_brstack(struct perf_sample *sample)
dc323ce8
SE
478{
479 struct branch_stack *br = sample->branch_stack;
480 u64 i;
481
482 if (!(br && br->nr))
483 return;
484
485 for (i = 0; i < br->nr; i++) {
486 printf(" 0x%"PRIx64"/0x%"PRIx64"/%c/%c/%c/%d ",
487 br->entries[i].from,
488 br->entries[i].to,
489 mispred_str( br->entries + i),
490 br->entries[i].flags.in_tx? 'X' : '-',
491 br->entries[i].flags.abort? 'A' : '-',
492 br->entries[i].flags.cycles);
493 }
494}
495
a3dff304
ACM
496static void print_sample_brstacksym(struct perf_sample *sample,
497 struct thread *thread)
dc323ce8
SE
498{
499 struct branch_stack *br = sample->branch_stack;
500 struct addr_location alf, alt;
dc323ce8
SE
501 u64 i, from, to;
502
503 if (!(br && br->nr))
504 return;
505
506 for (i = 0; i < br->nr; i++) {
507
508 memset(&alf, 0, sizeof(alf));
509 memset(&alt, 0, sizeof(alt));
510 from = br->entries[i].from;
511 to = br->entries[i].to;
512
473398a2 513 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
dc323ce8
SE
514 if (alf.map)
515 alf.sym = map__find_symbol(alf.map, alf.addr, NULL);
516
473398a2 517 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
dc323ce8
SE
518 if (alt.map)
519 alt.sym = map__find_symbol(alt.map, alt.addr, NULL);
520
521 symbol__fprintf_symname_offs(alf.sym, &alf, stdout);
522 putchar('/');
523 symbol__fprintf_symname_offs(alt.sym, &alt, stdout);
524 printf("/%c/%c/%c/%d ",
525 mispred_str( br->entries + i),
526 br->entries[i].flags.in_tx? 'X' : '-',
527 br->entries[i].flags.abort? 'A' : '-',
528 br->entries[i].flags.cycles);
529 }
530}
531
532
a3dff304 533static void print_sample_addr(struct perf_sample *sample,
7cec0922
DA
534 struct thread *thread,
535 struct perf_event_attr *attr)
536{
537 struct addr_location al;
7cec0922
DA
538
539 printf("%16" PRIx64, sample->addr);
540
541 if (!sample_addr_correlates_sym(attr))
542 return;
543
c2740a87 544 thread__resolve(thread, &al, sample);
7cec0922
DA
545
546 if (PRINT_FIELD(SYM)) {
547a92e0 547 printf(" ");
a978f2ab
AN
548 if (PRINT_FIELD(SYMOFFSET))
549 symbol__fprintf_symname_offs(al.sym, &al, stdout);
550 else
551 symbol__fprintf_symname(al.sym, stdout);
7cec0922
DA
552 }
553
554 if (PRINT_FIELD(DSO)) {
547a92e0
AN
555 printf(" (");
556 map__fprintf_dsoname(al.map, stdout);
557 printf(")");
7cec0922
DA
558 }
559}
560
a3dff304 561static void print_sample_bts(struct perf_sample *sample,
95582596 562 struct perf_evsel *evsel,
a2cb3cf2
AH
563 struct thread *thread,
564 struct addr_location *al)
95582596
AN
565{
566 struct perf_event_attr *attr = &evsel->attr;
8066be5f 567 bool print_srcline_last = false;
95582596
AN
568
569 /* print branch_from information */
570 if (PRINT_FIELD(IP)) {
8066be5f 571 unsigned int print_opts = output[attr->type].print_ip_opts;
6f736735 572 struct callchain_cursor *cursor = NULL, cursor_callchain;
8066be5f 573
6f736735
ACM
574 if (symbol_conf.use_callchain && sample->callchain &&
575 thread__resolve_callchain(al->thread, &cursor_callchain, evsel,
576 sample, NULL, NULL, scripting_max_stack) == 0)
577 cursor = &cursor_callchain;
578
579 if (cursor == NULL) {
580 putchar(' ');
e20ab86e 581 if (print_opts & EVSEL__PRINT_SRCLINE) {
8066be5f 582 print_srcline_last = true;
e20ab86e 583 print_opts &= ~EVSEL__PRINT_SRCLINE;
8066be5f 584 }
6f736735
ACM
585 } else
586 putchar('\n');
587
588 sample__fprintf_sym(sample, al, 0, print_opts, cursor, stdout);
95582596
AN
589 }
590
95582596 591 /* print branch_to information */
243be3dd
AH
592 if (PRINT_FIELD(ADDR) ||
593 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
578bea40
AH
594 !output[attr->type].user_set)) {
595 printf(" => ");
a3dff304 596 print_sample_addr(sample, thread, attr);
578bea40 597 }
95582596 598
8066be5f
AH
599 if (print_srcline_last)
600 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
601
95582596
AN
602 printf("\n");
603}
604
400ea6d3
AH
605static void print_sample_flags(u32 flags)
606{
607 const char *chars = PERF_IP_FLAG_CHARS;
608 const int n = strlen(PERF_IP_FLAG_CHARS);
609 char str[33];
610 int i, pos = 0;
611
612 for (i = 0; i < n; i++, flags >>= 1) {
613 if (flags & 1)
614 str[pos++] = chars[i];
615 }
616 for (; i < 32; i++, flags >>= 1) {
617 if (flags & 1)
618 str[pos++] = '?';
619 }
620 str[pos] = 0;
621 printf(" %-4s ", str);
622}
623
30372f04
WN
624struct printer_data {
625 int line_no;
626 bool hit_nul;
627 bool is_printable;
628};
629
630static void
631print_sample_bpf_output_printer(enum binary_printer_ops op,
632 unsigned int val,
633 void *extra)
634{
635 unsigned char ch = (unsigned char)val;
636 struct printer_data *printer_data = extra;
637
638 switch (op) {
639 case BINARY_PRINT_DATA_BEGIN:
640 printf("\n");
641 break;
642 case BINARY_PRINT_LINE_BEGIN:
643 printf("%17s", !printer_data->line_no ? "BPF output:" :
644 " ");
645 break;
646 case BINARY_PRINT_ADDR:
647 printf(" %04x:", val);
648 break;
649 case BINARY_PRINT_NUM_DATA:
650 printf(" %02x", val);
651 break;
652 case BINARY_PRINT_NUM_PAD:
653 printf(" ");
654 break;
655 case BINARY_PRINT_SEP:
656 printf(" ");
657 break;
658 case BINARY_PRINT_CHAR_DATA:
659 if (printer_data->hit_nul && ch)
660 printer_data->is_printable = false;
661
662 if (!isprint(ch)) {
663 printf("%c", '.');
664
665 if (!printer_data->is_printable)
666 break;
667
668 if (ch == '\0')
669 printer_data->hit_nul = true;
670 else
671 printer_data->is_printable = false;
672 } else {
673 printf("%c", ch);
674 }
675 break;
676 case BINARY_PRINT_CHAR_PAD:
677 printf(" ");
678 break;
679 case BINARY_PRINT_LINE_END:
680 printf("\n");
681 printer_data->line_no++;
682 break;
683 case BINARY_PRINT_DATA_END:
684 default:
685 break;
686 }
687}
688
689static void print_sample_bpf_output(struct perf_sample *sample)
690{
691 unsigned int nr_bytes = sample->raw_size;
692 struct printer_data printer_data = {0, false, true};
693
694 print_binary(sample->raw_data, nr_bytes, 8,
695 print_sample_bpf_output_printer, &printer_data);
696
697 if (printer_data.is_printable && printer_data.hit_nul)
698 printf("%17s \"%s\"\n", "BPF string:",
699 (char *)(sample->raw_data));
700}
701
809e9423
JO
702struct perf_script {
703 struct perf_tool tool;
704 struct perf_session *session;
705 bool show_task_events;
706 bool show_mmap_events;
707 bool show_switch_events;
cfc8874a
JO
708 bool allocated;
709 struct cpu_map *cpus;
710 struct thread_map *threads;
9cdbc409 711 int name_width;
809e9423
JO
712};
713
9cdbc409
JO
714static int perf_evlist__max_name_len(struct perf_evlist *evlist)
715{
716 struct perf_evsel *evsel;
717 int max = 0;
718
719 evlist__for_each(evlist, evsel) {
720 int len = strlen(perf_evsel__name(evsel));
721
722 max = MAX(len, max);
723 }
724
725 return max;
726}
727
c19ac912
JO
728static size_t data_src__printf(u64 data_src)
729{
730 struct mem_info mi = { .data_src.val = data_src };
731 char decode[100];
732 char out[100];
733 static int maxlen;
734 int len;
735
736 perf_script__meminfo_scnprintf(decode, 100, &mi);
737
738 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
739 if (maxlen < len)
740 maxlen = len;
741
742 return printf("%-*s", maxlen, out);
743}
744
a3dff304 745static void process_event(struct perf_script *script,
809e9423
JO
746 struct perf_sample *sample, struct perf_evsel *evsel,
747 struct addr_location *al)
be6d842a 748{
f9d5d549 749 struct thread *thread = al->thread;
9e69c210 750 struct perf_event_attr *attr = &evsel->attr;
1424dc96 751
2c9e45f7 752 if (output[attr->type].fields == 0)
1424dc96
DA
753 return;
754
fcf65bf1 755 print_sample_start(sample, thread, evsel);
745f43e3 756
535aeaae
JO
757 if (PRINT_FIELD(PERIOD))
758 printf("%10" PRIu64 " ", sample->period);
759
e944d3d7
NK
760 if (PRINT_FIELD(EVNAME)) {
761 const char *evname = perf_evsel__name(evsel);
9cdbc409
JO
762
763 if (!script->name_width)
764 script->name_width = perf_evlist__max_name_len(script->session->evlist);
765
766 printf("%*s: ", script->name_width,
767 evname ? evname : "[unknown]");
e944d3d7
NK
768 }
769
400ea6d3
AH
770 if (print_flags)
771 print_sample_flags(sample->flags);
772
95582596 773 if (is_bts_event(attr)) {
a3dff304 774 print_sample_bts(sample, evsel, thread, al);
95582596
AN
775 return;
776 }
777
745f43e3 778 if (PRINT_FIELD(TRACE))
fcf65bf1
ACM
779 event_format__print(evsel->tp_format, sample->cpu,
780 sample->raw_data, sample->raw_size);
7cec0922 781 if (PRINT_FIELD(ADDR))
a3dff304 782 print_sample_addr(sample, thread, attr);
7cec0922 783
94ddddfa 784 if (PRINT_FIELD(DATA_SRC))
c19ac912 785 data_src__printf(sample->data_src);
94ddddfa
JO
786
787 if (PRINT_FIELD(WEIGHT))
788 printf("%16" PRIu64, sample->weight);
789
787bef17 790 if (PRINT_FIELD(IP)) {
6f736735
ACM
791 struct callchain_cursor *cursor = NULL, cursor_callchain;
792
793 if (symbol_conf.use_callchain &&
794 thread__resolve_callchain(al->thread, &cursor_callchain, evsel,
795 sample, NULL, NULL, scripting_max_stack) == 0)
796 cursor = &cursor_callchain;
a6ffaf91 797
6f736735
ACM
798 putchar(cursor ? '\n' : ' ');
799 sample__fprintf_sym(sample, al, 0, output[attr->type].print_ip_opts, cursor, stdout);
c0230b2b
DA
800 }
801
fc36f948 802 if (PRINT_FIELD(IREGS))
a3dff304 803 print_sample_iregs(sample, attr);
fc36f948 804
dc323ce8 805 if (PRINT_FIELD(BRSTACK))
a3dff304 806 print_sample_brstack(sample);
dc323ce8 807 else if (PRINT_FIELD(BRSTACKSYM))
a3dff304 808 print_sample_brstacksym(sample, thread);
dc323ce8 809
30372f04
WN
810 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
811 print_sample_bpf_output(sample);
812
c70c94b4 813 printf("\n");
be6d842a
DA
814}
815
956ffd02
TZ
816static struct scripting_ops *scripting_ops;
817
36e33c53
JO
818static void __process_stat(struct perf_evsel *counter, u64 tstamp)
819{
820 int nthreads = thread_map__nr(counter->threads);
821 int ncpus = perf_evsel__nr_cpus(counter);
822 int cpu, thread;
823 static int header_printed;
824
825 if (counter->system_wide)
826 nthreads = 1;
827
828 if (!header_printed) {
829 printf("%3s %8s %15s %15s %15s %15s %s\n",
830 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
831 header_printed = 1;
832 }
833
834 for (thread = 0; thread < nthreads; thread++) {
835 for (cpu = 0; cpu < ncpus; cpu++) {
836 struct perf_counts_values *counts;
837
838 counts = perf_counts(counter->counts, cpu, thread);
839
840 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
841 counter->cpus->map[cpu],
842 thread_map__pid(counter->threads, thread),
843 counts->val,
844 counts->ena,
845 counts->run,
846 tstamp,
847 perf_evsel__name(counter));
848 }
849 }
850}
851
e099eba8
JO
852static void process_stat(struct perf_evsel *counter, u64 tstamp)
853{
854 if (scripting_ops && scripting_ops->process_stat)
855 scripting_ops->process_stat(&stat_config, counter, tstamp);
36e33c53
JO
856 else
857 __process_stat(counter, tstamp);
e099eba8
JO
858}
859
860static void process_stat_interval(u64 tstamp)
861{
862 if (scripting_ops && scripting_ops->process_stat_interval)
863 scripting_ops->process_stat_interval(tstamp);
864}
865
956ffd02
TZ
866static void setup_scripting(void)
867{
16c632de 868 setup_perl_scripting();
7e4b21b8 869 setup_python_scripting();
956ffd02
TZ
870}
871
d445dd2a
AH
872static int flush_scripting(void)
873{
2aaecfc5 874 return scripting_ops ? scripting_ops->flush_script() : 0;
d445dd2a
AH
875}
876
956ffd02
TZ
877static int cleanup_scripting(void)
878{
133dc4c3 879 pr_debug("\nperf script stopped\n");
3824a4e8 880
2aaecfc5 881 return scripting_ops ? scripting_ops->stop_script() : 0;
956ffd02
TZ
882}
883
809e9423 884static int process_sample_event(struct perf_tool *tool,
d20deb64 885 union perf_event *event,
8115d60c 886 struct perf_sample *sample,
9e69c210 887 struct perf_evsel *evsel,
743eb868 888 struct machine *machine)
5f9c39dc 889{
809e9423 890 struct perf_script *scr = container_of(tool, struct perf_script, tool);
e7984b7b 891 struct addr_location al;
5f9c39dc 892
1424dc96
DA
893 if (debug_mode) {
894 if (sample->time < last_timestamp) {
895 pr_err("Samples misordered, previous: %" PRIu64
896 " this: %" PRIu64 "\n", last_timestamp,
897 sample->time);
898 nr_unordered++;
e1889d75 899 }
1424dc96
DA
900 last_timestamp = sample->time;
901 return 0;
5f9c39dc 902 }
5d67be97 903
bb3eb566 904 if (machine__resolve(machine, &al, sample) < 0) {
e7984b7b
DA
905 pr_err("problem processing %d event, skipping it.\n",
906 event->header.type);
907 return -1;
908 }
909
910 if (al.filtered)
b91fc39f 911 goto out_put;
e7984b7b 912
5d67be97 913 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
b91fc39f 914 goto out_put;
5d67be97 915
2aaecfc5
JO
916 if (scripting_ops)
917 scripting_ops->process_event(event, sample, evsel, &al);
918 else
a3dff304 919 process_event(scr, sample, evsel, &al);
2aaecfc5 920
b91fc39f
ACM
921out_put:
922 addr_location__put(&al);
5f9c39dc
FW
923 return 0;
924}
925
7ea95727
AH
926static int process_attr(struct perf_tool *tool, union perf_event *event,
927 struct perf_evlist **pevlist)
928{
929 struct perf_script *scr = container_of(tool, struct perf_script, tool);
930 struct perf_evlist *evlist;
931 struct perf_evsel *evsel, *pos;
932 int err;
933
934 err = perf_event__process_attr(tool, event, pevlist);
935 if (err)
936 return err;
937
938 evlist = *pevlist;
939 evsel = perf_evlist__last(*pevlist);
940
941 if (evsel->attr.type >= PERF_TYPE_MAX)
942 return 0;
943
0050f7aa 944 evlist__for_each(evlist, pos) {
7ea95727
AH
945 if (pos->attr.type == evsel->attr.type && pos != evsel)
946 return 0;
947 }
948
949 set_print_ip_opts(&evsel->attr);
950
d2b5a315
JO
951 if (evsel->attr.sample_type)
952 err = perf_evsel__check_attr(evsel, scr->session);
953
954 return err;
7ea95727
AH
955}
956
ad7ebb9a
NK
957static int process_comm_event(struct perf_tool *tool,
958 union perf_event *event,
959 struct perf_sample *sample,
960 struct machine *machine)
961{
962 struct thread *thread;
963 struct perf_script *script = container_of(tool, struct perf_script, tool);
964 struct perf_session *session = script->session;
06b234ec 965 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
ad7ebb9a
NK
966 int ret = -1;
967
968 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
969 if (thread == NULL) {
970 pr_debug("problem processing COMM event, skipping it.\n");
971 return -1;
972 }
973
974 if (perf_event__process_comm(tool, event, sample, machine) < 0)
975 goto out;
976
977 if (!evsel->attr.sample_id_all) {
978 sample->cpu = 0;
979 sample->time = 0;
980 sample->tid = event->comm.tid;
981 sample->pid = event->comm.pid;
982 }
983 print_sample_start(sample, thread, evsel);
984 perf_event__fprintf(event, stdout);
985 ret = 0;
ad7ebb9a 986out:
b91fc39f 987 thread__put(thread);
ad7ebb9a
NK
988 return ret;
989}
990
991static int process_fork_event(struct perf_tool *tool,
992 union perf_event *event,
993 struct perf_sample *sample,
994 struct machine *machine)
995{
996 struct thread *thread;
997 struct perf_script *script = container_of(tool, struct perf_script, tool);
998 struct perf_session *session = script->session;
06b234ec 999 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
ad7ebb9a
NK
1000
1001 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1002 return -1;
1003
1004 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1005 if (thread == NULL) {
1006 pr_debug("problem processing FORK event, skipping it.\n");
1007 return -1;
1008 }
1009
1010 if (!evsel->attr.sample_id_all) {
1011 sample->cpu = 0;
1012 sample->time = event->fork.time;
1013 sample->tid = event->fork.tid;
1014 sample->pid = event->fork.pid;
1015 }
1016 print_sample_start(sample, thread, evsel);
1017 perf_event__fprintf(event, stdout);
b91fc39f 1018 thread__put(thread);
ad7ebb9a
NK
1019
1020 return 0;
1021}
1022static int process_exit_event(struct perf_tool *tool,
1023 union perf_event *event,
1024 struct perf_sample *sample,
1025 struct machine *machine)
1026{
b91fc39f 1027 int err = 0;
ad7ebb9a
NK
1028 struct thread *thread;
1029 struct perf_script *script = container_of(tool, struct perf_script, tool);
1030 struct perf_session *session = script->session;
06b234ec 1031 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
ad7ebb9a
NK
1032
1033 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1034 if (thread == NULL) {
1035 pr_debug("problem processing EXIT event, skipping it.\n");
1036 return -1;
1037 }
1038
1039 if (!evsel->attr.sample_id_all) {
1040 sample->cpu = 0;
1041 sample->time = 0;
53ff6bc3
AH
1042 sample->tid = event->fork.tid;
1043 sample->pid = event->fork.pid;
ad7ebb9a
NK
1044 }
1045 print_sample_start(sample, thread, evsel);
1046 perf_event__fprintf(event, stdout);
1047
1048 if (perf_event__process_exit(tool, event, sample, machine) < 0)
b91fc39f 1049 err = -1;
ad7ebb9a 1050
b91fc39f
ACM
1051 thread__put(thread);
1052 return err;
ad7ebb9a
NK
1053}
1054
ba1ddf42
NK
1055static int process_mmap_event(struct perf_tool *tool,
1056 union perf_event *event,
1057 struct perf_sample *sample,
1058 struct machine *machine)
1059{
1060 struct thread *thread;
1061 struct perf_script *script = container_of(tool, struct perf_script, tool);
1062 struct perf_session *session = script->session;
06b234ec 1063 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
ba1ddf42
NK
1064
1065 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1066 return -1;
1067
1068 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1069 if (thread == NULL) {
1070 pr_debug("problem processing MMAP event, skipping it.\n");
1071 return -1;
1072 }
1073
1074 if (!evsel->attr.sample_id_all) {
1075 sample->cpu = 0;
1076 sample->time = 0;
1077 sample->tid = event->mmap.tid;
1078 sample->pid = event->mmap.pid;
1079 }
1080 print_sample_start(sample, thread, evsel);
1081 perf_event__fprintf(event, stdout);
b91fc39f 1082 thread__put(thread);
ba1ddf42
NK
1083 return 0;
1084}
1085
1086static int process_mmap2_event(struct perf_tool *tool,
1087 union perf_event *event,
1088 struct perf_sample *sample,
1089 struct machine *machine)
1090{
1091 struct thread *thread;
1092 struct perf_script *script = container_of(tool, struct perf_script, tool);
1093 struct perf_session *session = script->session;
06b234ec 1094 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
ba1ddf42
NK
1095
1096 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1097 return -1;
1098
1099 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1100 if (thread == NULL) {
1101 pr_debug("problem processing MMAP2 event, skipping it.\n");
1102 return -1;
1103 }
1104
1105 if (!evsel->attr.sample_id_all) {
1106 sample->cpu = 0;
1107 sample->time = 0;
1108 sample->tid = event->mmap2.tid;
1109 sample->pid = event->mmap2.pid;
1110 }
1111 print_sample_start(sample, thread, evsel);
1112 perf_event__fprintf(event, stdout);
b91fc39f 1113 thread__put(thread);
ba1ddf42
NK
1114 return 0;
1115}
1116
7c14898b
AH
1117static int process_switch_event(struct perf_tool *tool,
1118 union perf_event *event,
1119 struct perf_sample *sample,
1120 struct machine *machine)
1121{
1122 struct thread *thread;
1123 struct perf_script *script = container_of(tool, struct perf_script, tool);
1124 struct perf_session *session = script->session;
1125 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1126
1127 if (perf_event__process_switch(tool, event, sample, machine) < 0)
1128 return -1;
1129
1130 thread = machine__findnew_thread(machine, sample->pid,
1131 sample->tid);
1132 if (thread == NULL) {
1133 pr_debug("problem processing SWITCH event, skipping it.\n");
1134 return -1;
1135 }
1136
1137 print_sample_start(sample, thread, evsel);
1138 perf_event__fprintf(event, stdout);
1139 thread__put(thread);
1140 return 0;
1141}
1142
1d037ca1 1143static void sig_handler(int sig __maybe_unused)
c239da3b
TZ
1144{
1145 session_done = 1;
1146}
1147
6f3e5eda 1148static int __cmd_script(struct perf_script *script)
5f9c39dc 1149{
6fcf7ddb
FW
1150 int ret;
1151
c239da3b
TZ
1152 signal(SIGINT, sig_handler);
1153
ad7ebb9a
NK
1154 /* override event processing functions */
1155 if (script->show_task_events) {
1156 script->tool.comm = process_comm_event;
1157 script->tool.fork = process_fork_event;
1158 script->tool.exit = process_exit_event;
1159 }
ba1ddf42
NK
1160 if (script->show_mmap_events) {
1161 script->tool.mmap = process_mmap_event;
1162 script->tool.mmap2 = process_mmap2_event;
1163 }
7c14898b
AH
1164 if (script->show_switch_events)
1165 script->tool.context_switch = process_switch_event;
ad7ebb9a 1166
b7b61cbe 1167 ret = perf_session__process_events(script->session);
6fcf7ddb 1168
6d8afb56 1169 if (debug_mode)
9486aa38 1170 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
6fcf7ddb
FW
1171
1172 return ret;
5f9c39dc
FW
1173}
1174
956ffd02
TZ
1175struct script_spec {
1176 struct list_head node;
1177 struct scripting_ops *ops;
1178 char spec[0];
1179};
1180
eccdfe2d 1181static LIST_HEAD(script_specs);
956ffd02
TZ
1182
1183static struct script_spec *script_spec__new(const char *spec,
1184 struct scripting_ops *ops)
1185{
1186 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
1187
1188 if (s != NULL) {
1189 strcpy(s->spec, spec);
1190 s->ops = ops;
1191 }
1192
1193 return s;
1194}
1195
956ffd02
TZ
1196static void script_spec__add(struct script_spec *s)
1197{
1198 list_add_tail(&s->node, &script_specs);
1199}
1200
1201static struct script_spec *script_spec__find(const char *spec)
1202{
1203 struct script_spec *s;
1204
1205 list_for_each_entry(s, &script_specs, node)
1206 if (strcasecmp(s->spec, spec) == 0)
1207 return s;
1208 return NULL;
1209}
1210
956ffd02
TZ
1211int script_spec_register(const char *spec, struct scripting_ops *ops)
1212{
1213 struct script_spec *s;
1214
1215 s = script_spec__find(spec);
1216 if (s)
1217 return -1;
1218
8560bae0 1219 s = script_spec__new(spec, ops);
956ffd02
TZ
1220 if (!s)
1221 return -1;
8560bae0
TS
1222 else
1223 script_spec__add(s);
956ffd02
TZ
1224
1225 return 0;
1226}
1227
1228static struct scripting_ops *script_spec__lookup(const char *spec)
1229{
1230 struct script_spec *s = script_spec__find(spec);
1231 if (!s)
1232 return NULL;
1233
1234 return s->ops;
1235}
1236
1237static void list_available_languages(void)
1238{
1239 struct script_spec *s;
1240
1241 fprintf(stderr, "\n");
1242 fprintf(stderr, "Scripting language extensions (used in "
133dc4c3 1243 "perf script -s [spec:]script.[spec]):\n\n");
956ffd02
TZ
1244
1245 list_for_each_entry(s, &script_specs, node)
1246 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
1247
1248 fprintf(stderr, "\n");
1249}
1250
1d037ca1
IT
1251static int parse_scriptname(const struct option *opt __maybe_unused,
1252 const char *str, int unset __maybe_unused)
956ffd02
TZ
1253{
1254 char spec[PATH_MAX];
1255 const char *script, *ext;
1256 int len;
1257
f526d68b 1258 if (strcmp(str, "lang") == 0) {
956ffd02 1259 list_available_languages();
f526d68b 1260 exit(0);
956ffd02
TZ
1261 }
1262
1263 script = strchr(str, ':');
1264 if (script) {
1265 len = script - str;
1266 if (len >= PATH_MAX) {
1267 fprintf(stderr, "invalid language specifier");
1268 return -1;
1269 }
1270 strncpy(spec, str, len);
1271 spec[len] = '\0';
1272 scripting_ops = script_spec__lookup(spec);
1273 if (!scripting_ops) {
1274 fprintf(stderr, "invalid language specifier");
1275 return -1;
1276 }
1277 script++;
1278 } else {
1279 script = str;
d1e95bb5 1280 ext = strrchr(script, '.');
956ffd02
TZ
1281 if (!ext) {
1282 fprintf(stderr, "invalid script extension");
1283 return -1;
1284 }
1285 scripting_ops = script_spec__lookup(++ext);
1286 if (!scripting_ops) {
1287 fprintf(stderr, "invalid script extension");
1288 return -1;
1289 }
1290 }
1291
1292 script_name = strdup(script);
1293
1294 return 0;
1295}
1296
1d037ca1
IT
1297static int parse_output_fields(const struct option *opt __maybe_unused,
1298 const char *arg, int unset __maybe_unused)
745f43e3
DA
1299{
1300 char *tok;
50ca19ae 1301 int i, imax = ARRAY_SIZE(all_output_options);
2c9e45f7 1302 int j;
745f43e3
DA
1303 int rc = 0;
1304 char *str = strdup(arg);
1424dc96 1305 int type = -1;
745f43e3
DA
1306
1307 if (!str)
1308 return -ENOMEM;
1309
2c9e45f7
DA
1310 /* first word can state for which event type the user is specifying
1311 * the fields. If no type exists, the specified fields apply to all
1312 * event types found in the file minus the invalid fields for a type.
1424dc96 1313 */
2c9e45f7
DA
1314 tok = strchr(str, ':');
1315 if (tok) {
1316 *tok = '\0';
1317 tok++;
1318 if (!strcmp(str, "hw"))
1319 type = PERF_TYPE_HARDWARE;
1320 else if (!strcmp(str, "sw"))
1321 type = PERF_TYPE_SOFTWARE;
1322 else if (!strcmp(str, "trace"))
1323 type = PERF_TYPE_TRACEPOINT;
0817a6a3
AS
1324 else if (!strcmp(str, "raw"))
1325 type = PERF_TYPE_RAW;
27cfef00
WN
1326 else if (!strcmp(str, "break"))
1327 type = PERF_TYPE_BREAKPOINT;
2c9e45f7
DA
1328 else {
1329 fprintf(stderr, "Invalid event type in field string.\n");
38efb539
RR
1330 rc = -EINVAL;
1331 goto out;
2c9e45f7
DA
1332 }
1333
1334 if (output[type].user_set)
1335 pr_warning("Overriding previous field request for %s events.\n",
1336 event_type(type));
1337
1338 output[type].fields = 0;
1339 output[type].user_set = true;
9cbdb702 1340 output[type].wildcard_set = false;
2c9e45f7
DA
1341
1342 } else {
1343 tok = str;
1344 if (strlen(str) == 0) {
1345 fprintf(stderr,
1346 "Cannot set fields to 'none' for all event types.\n");
1347 rc = -EINVAL;
1348 goto out;
1349 }
1350
1351 if (output_set_by_user())
1352 pr_warning("Overriding previous field request for all events.\n");
1353
1354 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1355 output[j].fields = 0;
1356 output[j].user_set = true;
9cbdb702 1357 output[j].wildcard_set = true;
2c9e45f7 1358 }
745f43e3
DA
1359 }
1360
400ea6d3 1361 for (tok = strtok(tok, ","); tok; tok = strtok(NULL, ",")) {
745f43e3 1362 for (i = 0; i < imax; ++i) {
2c9e45f7 1363 if (strcmp(tok, all_output_options[i].str) == 0)
745f43e3 1364 break;
745f43e3 1365 }
400ea6d3
AH
1366 if (i == imax && strcmp(tok, "flags") == 0) {
1367 print_flags = true;
1368 continue;
1369 }
745f43e3 1370 if (i == imax) {
2c9e45f7 1371 fprintf(stderr, "Invalid field requested.\n");
745f43e3 1372 rc = -EINVAL;
2c9e45f7 1373 goto out;
745f43e3
DA
1374 }
1375
2c9e45f7
DA
1376 if (type == -1) {
1377 /* add user option to all events types for
1378 * which it is valid
1379 */
1380 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1381 if (output[j].invalid_fields & all_output_options[i].field) {
1382 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1383 all_output_options[i].str, event_type(j));
1384 } else
1385 output[j].fields |= all_output_options[i].field;
1386 }
1387 } else {
1388 if (output[type].invalid_fields & all_output_options[i].field) {
1389 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1390 all_output_options[i].str, event_type(type));
1391
1392 rc = -EINVAL;
1393 goto out;
1394 }
1395 output[type].fields |= all_output_options[i].field;
1396 }
745f43e3
DA
1397 }
1398
2c9e45f7
DA
1399 if (type >= 0) {
1400 if (output[type].fields == 0) {
1401 pr_debug("No fields requested for %s type. "
1402 "Events will not be displayed.\n", event_type(type));
1403 }
1404 }
745f43e3 1405
2c9e45f7 1406out:
745f43e3
DA
1407 free(str);
1408 return rc;
1409}
1410
008f29d3
SB
1411/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1412static int is_directory(const char *base_path, const struct dirent *dent)
1413{
1414 char path[PATH_MAX];
1415 struct stat st;
1416
1417 sprintf(path, "%s/%s", base_path, dent->d_name);
1418 if (stat(path, &st))
1419 return 0;
1420
1421 return S_ISDIR(st.st_mode);
1422}
1423
a5e8e825
ACM
1424#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
1425 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
1426 if ((lang_dirent->d_type == DT_DIR || \
1427 (lang_dirent->d_type == DT_UNKNOWN && \
1428 is_directory(scripts_path, lang_dirent))) && \
1429 (strcmp(lang_dirent->d_name, ".")) && \
1430 (strcmp(lang_dirent->d_name, "..")))
1431
1432#define for_each_script(lang_path, lang_dir, script_dirent) \
1433 while ((script_dirent = readdir(lang_dir)) != NULL) \
1434 if (script_dirent->d_type != DT_DIR && \
1435 (script_dirent->d_type != DT_UNKNOWN || \
1436 !is_directory(lang_path, script_dirent)))
4b9c0c59
TZ
1437
1438
1439#define RECORD_SUFFIX "-record"
1440#define REPORT_SUFFIX "-report"
1441
1442struct script_desc {
1443 struct list_head node;
1444 char *name;
1445 char *half_liner;
1446 char *args;
1447};
1448
eccdfe2d 1449static LIST_HEAD(script_descs);
4b9c0c59
TZ
1450
1451static struct script_desc *script_desc__new(const char *name)
1452{
1453 struct script_desc *s = zalloc(sizeof(*s));
1454
b5b87312 1455 if (s != NULL && name)
4b9c0c59
TZ
1456 s->name = strdup(name);
1457
1458 return s;
1459}
1460
1461static void script_desc__delete(struct script_desc *s)
1462{
74cf249d
ACM
1463 zfree(&s->name);
1464 zfree(&s->half_liner);
1465 zfree(&s->args);
4b9c0c59
TZ
1466 free(s);
1467}
1468
1469static void script_desc__add(struct script_desc *s)
1470{
1471 list_add_tail(&s->node, &script_descs);
1472}
1473
1474static struct script_desc *script_desc__find(const char *name)
1475{
1476 struct script_desc *s;
1477
1478 list_for_each_entry(s, &script_descs, node)
1479 if (strcasecmp(s->name, name) == 0)
1480 return s;
1481 return NULL;
1482}
1483
1484static struct script_desc *script_desc__findnew(const char *name)
1485{
1486 struct script_desc *s = script_desc__find(name);
1487
1488 if (s)
1489 return s;
1490
1491 s = script_desc__new(name);
1492 if (!s)
1493 goto out_delete_desc;
1494
1495 script_desc__add(s);
1496
1497 return s;
1498
1499out_delete_desc:
1500 script_desc__delete(s);
1501
1502 return NULL;
1503}
1504
965bb6be 1505static const char *ends_with(const char *str, const char *suffix)
4b9c0c59
TZ
1506{
1507 size_t suffix_len = strlen(suffix);
965bb6be 1508 const char *p = str;
4b9c0c59
TZ
1509
1510 if (strlen(str) > suffix_len) {
1511 p = str + strlen(str) - suffix_len;
1512 if (!strncmp(p, suffix, suffix_len))
1513 return p;
1514 }
1515
1516 return NULL;
1517}
1518
4b9c0c59
TZ
1519static int read_script_info(struct script_desc *desc, const char *filename)
1520{
1521 char line[BUFSIZ], *p;
1522 FILE *fp;
1523
1524 fp = fopen(filename, "r");
1525 if (!fp)
1526 return -1;
1527
1528 while (fgets(line, sizeof(line), fp)) {
1529 p = ltrim(line);
1530 if (strlen(p) == 0)
1531 continue;
1532 if (*p != '#')
1533 continue;
1534 p++;
1535 if (strlen(p) && *p == '!')
1536 continue;
1537
1538 p = ltrim(p);
1539 if (strlen(p) && p[strlen(p) - 1] == '\n')
1540 p[strlen(p) - 1] = '\0';
1541
1542 if (!strncmp(p, "description:", strlen("description:"))) {
1543 p += strlen("description:");
1544 desc->half_liner = strdup(ltrim(p));
1545 continue;
1546 }
1547
1548 if (!strncmp(p, "args:", strlen("args:"))) {
1549 p += strlen("args:");
1550 desc->args = strdup(ltrim(p));
1551 continue;
1552 }
1553 }
1554
1555 fclose(fp);
1556
1557 return 0;
1558}
1559
38efb539
RR
1560static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1561{
1562 char *script_root, *str;
1563
1564 script_root = strdup(script_dirent->d_name);
1565 if (!script_root)
1566 return NULL;
1567
1568 str = (char *)ends_with(script_root, suffix);
1569 if (!str) {
1570 free(script_root);
1571 return NULL;
1572 }
1573
1574 *str = '\0';
1575 return script_root;
1576}
1577
1d037ca1
IT
1578static int list_available_scripts(const struct option *opt __maybe_unused,
1579 const char *s __maybe_unused,
1580 int unset __maybe_unused)
4b9c0c59 1581{
a5e8e825 1582 struct dirent *script_dirent, *lang_dirent;
4b9c0c59
TZ
1583 char scripts_path[MAXPATHLEN];
1584 DIR *scripts_dir, *lang_dir;
1585 char script_path[MAXPATHLEN];
1586 char lang_path[MAXPATHLEN];
1587 struct script_desc *desc;
1588 char first_half[BUFSIZ];
1589 char *script_root;
4b9c0c59 1590
46113a54 1591 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
4b9c0c59
TZ
1592
1593 scripts_dir = opendir(scripts_path);
1594 if (!scripts_dir)
1595 return -1;
1596
a5e8e825 1597 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
4b9c0c59 1598 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
a5e8e825 1599 lang_dirent->d_name);
4b9c0c59
TZ
1600 lang_dir = opendir(lang_path);
1601 if (!lang_dir)
1602 continue;
1603
a5e8e825
ACM
1604 for_each_script(lang_path, lang_dir, script_dirent) {
1605 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
38efb539 1606 if (script_root) {
4b9c0c59
TZ
1607 desc = script_desc__findnew(script_root);
1608 snprintf(script_path, MAXPATHLEN, "%s/%s",
a5e8e825 1609 lang_path, script_dirent->d_name);
4b9c0c59 1610 read_script_info(desc, script_path);
38efb539 1611 free(script_root);
4b9c0c59 1612 }
4b9c0c59
TZ
1613 }
1614 }
1615
1616 fprintf(stdout, "List of available trace scripts:\n");
1617 list_for_each_entry(desc, &script_descs, node) {
1618 sprintf(first_half, "%s %s", desc->name,
1619 desc->args ? desc->args : "");
1620 fprintf(stdout, " %-36s %s\n", first_half,
1621 desc->half_liner ? desc->half_liner : "");
1622 }
1623
1624 exit(0);
1625}
1626
49e639e2
FT
1627/*
1628 * Some scripts specify the required events in their "xxx-record" file,
1629 * this function will check if the events in perf.data match those
1630 * mentioned in the "xxx-record".
1631 *
1632 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1633 * which is covered well now. And new parsing code should be added to
1634 * cover the future complexing formats like event groups etc.
1635 */
1636static int check_ev_match(char *dir_name, char *scriptname,
1637 struct perf_session *session)
1638{
1639 char filename[MAXPATHLEN], evname[128];
1640 char line[BUFSIZ], *p;
1641 struct perf_evsel *pos;
1642 int match, len;
1643 FILE *fp;
1644
1645 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1646
1647 fp = fopen(filename, "r");
1648 if (!fp)
1649 return -1;
1650
1651 while (fgets(line, sizeof(line), fp)) {
1652 p = ltrim(line);
1653 if (*p == '#')
1654 continue;
1655
1656 while (strlen(p)) {
1657 p = strstr(p, "-e");
1658 if (!p)
1659 break;
1660
1661 p += 2;
1662 p = ltrim(p);
1663 len = strcspn(p, " \t");
1664 if (!len)
1665 break;
1666
1667 snprintf(evname, len + 1, "%s", p);
1668
1669 match = 0;
0050f7aa 1670 evlist__for_each(session->evlist, pos) {
49e639e2
FT
1671 if (!strcmp(perf_evsel__name(pos), evname)) {
1672 match = 1;
1673 break;
1674 }
1675 }
1676
1677 if (!match) {
1678 fclose(fp);
1679 return -1;
1680 }
1681 }
1682 }
1683
1684 fclose(fp);
1685 return 0;
1686}
1687
e5f3705e
FT
1688/*
1689 * Return -1 if none is found, otherwise the actual scripts number.
1690 *
1691 * Currently the only user of this function is the script browser, which
1692 * will list all statically runnable scripts, select one, execute it and
1693 * show the output in a perf browser.
1694 */
1695int find_scripts(char **scripts_array, char **scripts_path_array)
1696{
a5e8e825 1697 struct dirent *script_dirent, *lang_dirent;
49e639e2 1698 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
e5f3705e 1699 DIR *scripts_dir, *lang_dir;
49e639e2 1700 struct perf_session *session;
f5fc1412
JO
1701 struct perf_data_file file = {
1702 .path = input_name,
1703 .mode = PERF_DATA_MODE_READ,
1704 };
e5f3705e
FT
1705 char *temp;
1706 int i = 0;
1707
f5fc1412 1708 session = perf_session__new(&file, false, NULL);
49e639e2
FT
1709 if (!session)
1710 return -1;
1711
46113a54 1712 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
e5f3705e
FT
1713
1714 scripts_dir = opendir(scripts_path);
49e639e2
FT
1715 if (!scripts_dir) {
1716 perf_session__delete(session);
e5f3705e 1717 return -1;
49e639e2 1718 }
e5f3705e 1719
a5e8e825 1720 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
e5f3705e 1721 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
a5e8e825 1722 lang_dirent->d_name);
e5f3705e
FT
1723#ifdef NO_LIBPERL
1724 if (strstr(lang_path, "perl"))
1725 continue;
1726#endif
1727#ifdef NO_LIBPYTHON
1728 if (strstr(lang_path, "python"))
1729 continue;
1730#endif
1731
1732 lang_dir = opendir(lang_path);
1733 if (!lang_dir)
1734 continue;
1735
a5e8e825 1736 for_each_script(lang_path, lang_dir, script_dirent) {
e5f3705e 1737 /* Skip those real time scripts: xxxtop.p[yl] */
a5e8e825 1738 if (strstr(script_dirent->d_name, "top."))
e5f3705e
FT
1739 continue;
1740 sprintf(scripts_path_array[i], "%s/%s", lang_path,
a5e8e825
ACM
1741 script_dirent->d_name);
1742 temp = strchr(script_dirent->d_name, '.');
e5f3705e 1743 snprintf(scripts_array[i],
a5e8e825
ACM
1744 (temp - script_dirent->d_name) + 1,
1745 "%s", script_dirent->d_name);
49e639e2
FT
1746
1747 if (check_ev_match(lang_path,
1748 scripts_array[i], session))
1749 continue;
1750
e5f3705e
FT
1751 i++;
1752 }
49e639e2 1753 closedir(lang_dir);
e5f3705e
FT
1754 }
1755
49e639e2
FT
1756 closedir(scripts_dir);
1757 perf_session__delete(session);
e5f3705e
FT
1758 return i;
1759}
1760
3875294f
TZ
1761static char *get_script_path(const char *script_root, const char *suffix)
1762{
a5e8e825 1763 struct dirent *script_dirent, *lang_dirent;
3875294f
TZ
1764 char scripts_path[MAXPATHLEN];
1765 char script_path[MAXPATHLEN];
1766 DIR *scripts_dir, *lang_dir;
1767 char lang_path[MAXPATHLEN];
38efb539 1768 char *__script_root;
3875294f 1769
46113a54 1770 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
3875294f
TZ
1771
1772 scripts_dir = opendir(scripts_path);
1773 if (!scripts_dir)
1774 return NULL;
1775
a5e8e825 1776 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
3875294f 1777 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
a5e8e825 1778 lang_dirent->d_name);
3875294f
TZ
1779 lang_dir = opendir(lang_path);
1780 if (!lang_dir)
1781 continue;
1782
a5e8e825
ACM
1783 for_each_script(lang_path, lang_dir, script_dirent) {
1784 __script_root = get_script_root(script_dirent, suffix);
38efb539
RR
1785 if (__script_root && !strcmp(script_root, __script_root)) {
1786 free(__script_root);
946ef2a2
NK
1787 closedir(lang_dir);
1788 closedir(scripts_dir);
3875294f 1789 snprintf(script_path, MAXPATHLEN, "%s/%s",
a5e8e825 1790 lang_path, script_dirent->d_name);
38efb539 1791 return strdup(script_path);
3875294f
TZ
1792 }
1793 free(__script_root);
1794 }
946ef2a2 1795 closedir(lang_dir);
3875294f 1796 }
946ef2a2 1797 closedir(scripts_dir);
3875294f 1798
38efb539 1799 return NULL;
3875294f
TZ
1800}
1801
b5b87312
TZ
1802static bool is_top_script(const char *script_path)
1803{
965bb6be 1804 return ends_with(script_path, "top") == NULL ? false : true;
b5b87312
TZ
1805}
1806
1807static int has_required_arg(char *script_path)
1808{
1809 struct script_desc *desc;
1810 int n_args = 0;
1811 char *p;
1812
1813 desc = script_desc__new(NULL);
1814
1815 if (read_script_info(desc, script_path))
1816 goto out;
1817
1818 if (!desc->args)
1819 goto out;
1820
1821 for (p = desc->args; *p; p++)
1822 if (*p == '<')
1823 n_args++;
1824out:
1825 script_desc__delete(desc);
1826
1827 return n_args;
1828}
1829
69b6470e
ACM
1830static int have_cmd(int argc, const char **argv)
1831{
1832 char **__argv = malloc(sizeof(const char *) * argc);
1833
1834 if (!__argv) {
1835 pr_err("malloc failed\n");
1836 return -1;
1837 }
1838
1839 memcpy(__argv, argv, sizeof(const char *) * argc);
1840 argc = parse_options(argc, (const char **)__argv, record_options,
1841 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1842 free(__argv);
5f9c39dc 1843
69b6470e
ACM
1844 system_wide = (argc == 0);
1845
1846 return 0;
1847}
1848
7322d6c9
JO
1849static void script__setup_sample_type(struct perf_script *script)
1850{
1851 struct perf_session *session = script->session;
1852 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
1853
1854 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
1855 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
1856 (sample_type & PERF_SAMPLE_STACK_USER))
1857 callchain_param.record_mode = CALLCHAIN_DWARF;
1858 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
1859 callchain_param.record_mode = CALLCHAIN_LBR;
1860 else
1861 callchain_param.record_mode = CALLCHAIN_FP;
1862 }
1863}
1864
e099eba8
JO
1865static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
1866 union perf_event *event,
1867 struct perf_session *session)
1868{
1869 struct stat_round_event *round = &event->stat_round;
1870 struct perf_evsel *counter;
1871
1872 evlist__for_each(session->evlist, counter) {
1873 perf_stat_process_counter(&stat_config, counter);
1874 process_stat(counter, round->time);
1875 }
1876
1877 process_stat_interval(round->time);
1878 return 0;
1879}
1880
91a2c3d5
JO
1881static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
1882 union perf_event *event,
1883 struct perf_session *session __maybe_unused)
1884{
1885 perf_event__read_stat_config(&stat_config, &event->stat_config);
1886 return 0;
1887}
1888
cfc8874a
JO
1889static int set_maps(struct perf_script *script)
1890{
1891 struct perf_evlist *evlist = script->session->evlist;
1892
1893 if (!script->cpus || !script->threads)
1894 return 0;
1895
1896 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
1897 return -EINVAL;
1898
1899 perf_evlist__set_maps(evlist, script->cpus, script->threads);
1900
1901 if (perf_evlist__alloc_stats(evlist, true))
1902 return -ENOMEM;
1903
1904 script->allocated = true;
1905 return 0;
1906}
1907
1908static
1909int process_thread_map_event(struct perf_tool *tool,
1910 union perf_event *event,
1911 struct perf_session *session __maybe_unused)
1912{
1913 struct perf_script *script = container_of(tool, struct perf_script, tool);
1914
1915 if (script->threads) {
1916 pr_warning("Extra thread map event, ignoring.\n");
1917 return 0;
1918 }
1919
1920 script->threads = thread_map__new_event(&event->thread_map);
1921 if (!script->threads)
1922 return -ENOMEM;
1923
1924 return set_maps(script);
1925}
1926
1927static
1928int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
1929 union perf_event *event,
1930 struct perf_session *session __maybe_unused)
1931{
1932 struct perf_script *script = container_of(tool, struct perf_script, tool);
1933
1934 if (script->cpus) {
1935 pr_warning("Extra cpu map event, ignoring.\n");
1936 return 0;
1937 }
1938
1939 script->cpus = cpu_map__new_data(&event->cpu_map.data);
1940 if (!script->cpus)
1941 return -ENOMEM;
1942
1943 return set_maps(script);
1944}
1945
69b6470e
ACM
1946int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
1947{
1948 bool show_full_info = false;
e90debdd
JO
1949 bool header = false;
1950 bool header_only = false;
6cc870f0 1951 bool script_started = false;
69b6470e
ACM
1952 char *rec_script_path = NULL;
1953 char *rep_script_path = NULL;
1954 struct perf_session *session;
7a680eb9 1955 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
69b6470e
ACM
1956 char *script_path = NULL;
1957 const char **__argv;
6cc870f0 1958 int i, j, err = 0;
6f3e5eda
AH
1959 struct perf_script script = {
1960 .tool = {
1961 .sample = process_sample_event,
1962 .mmap = perf_event__process_mmap,
1963 .mmap2 = perf_event__process_mmap2,
1964 .comm = perf_event__process_comm,
1965 .exit = perf_event__process_exit,
1966 .fork = perf_event__process_fork,
7ea95727 1967 .attr = process_attr,
91daee30 1968 .event_update = perf_event__process_event_update,
6f3e5eda
AH
1969 .tracing_data = perf_event__process_tracing_data,
1970 .build_id = perf_event__process_build_id,
7a680eb9
AH
1971 .id_index = perf_event__process_id_index,
1972 .auxtrace_info = perf_event__process_auxtrace_info,
1973 .auxtrace = perf_event__process_auxtrace,
1974 .auxtrace_error = perf_event__process_auxtrace_error,
e099eba8
JO
1975 .stat = perf_event__process_stat_event,
1976 .stat_round = process_stat_round_event,
91a2c3d5 1977 .stat_config = process_stat_config_event,
cfc8874a
JO
1978 .thread_map = process_thread_map_event,
1979 .cpu_map = process_cpu_map_event,
0a8cb85c 1980 .ordered_events = true,
6f3e5eda
AH
1981 .ordering_requires_timestamps = true,
1982 },
1983 };
06af0f2c
YS
1984 struct perf_data_file file = {
1985 .mode = PERF_DATA_MODE_READ,
1986 };
69b6470e 1987 const struct option options[] = {
5f9c39dc
FW
1988 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1989 "dump raw trace in ASCII"),
c0555642 1990 OPT_INCR('v', "verbose", &verbose,
69b6470e 1991 "be more verbose (show symbol address, etc)"),
4b9c0c59 1992 OPT_BOOLEAN('L', "Latency", &latency_format,
cda48461 1993 "show latency attributes (irqs/preemption disabled, etc)"),
4b9c0c59
TZ
1994 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1995 list_available_scripts),
956ffd02
TZ
1996 OPT_CALLBACK('s', "script", NULL, "name",
1997 "script file name (lang:script name, script name, or *)",
1998 parse_scriptname),
1999 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
133dc4c3 2000 "generate perf-script.xx script in specified language"),
69b6470e 2001 OPT_STRING('i', "input", &input_name, "file", "input file name"),
ffabd99e
FW
2002 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
2003 "do various checks like samples ordering and lost events"),
e90debdd
JO
2004 OPT_BOOLEAN(0, "header", &header, "Show data header."),
2005 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
c0230b2b
DA
2006 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2007 "file", "vmlinux pathname"),
2008 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2009 "file", "kallsyms pathname"),
2010 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
2011 "When printing symbols do not display call chain"),
2012 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
2013 "Look for files with symbols relative to this directory"),
06af0f2c 2014 OPT_CALLBACK('F', "fields", NULL, "str",
a978f2ab
AN
2015 "comma separated output fields prepend with 'type:'. "
2016 "Valid types: hw,sw,trace,raw. "
2017 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
dc323ce8 2018 "addr,symoff,period,iregs,brstack,brstacksym,flags", parse_output_fields),
317df650 2019 OPT_BOOLEAN('a', "all-cpus", &system_wide,
69b6470e 2020 "system-wide collection from all CPUs"),
36385be5
FT
2021 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
2022 "only consider these symbols"),
c8e66720 2023 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
e7984b7b
DA
2024 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
2025 "only display events for these comms"),
e03eaa40
DA
2026 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
2027 "only consider symbols in these pids"),
2028 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
2029 "only consider symbols in these tids"),
fbe96f29
SE
2030 OPT_BOOLEAN('I', "show-info", &show_full_info,
2031 "display extended information from perf.data file"),
0bc8d205
AN
2032 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
2033 "Show the path of [kernel.kallsyms]"),
ad7ebb9a
NK
2034 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
2035 "Show the fork/comm/exit events"),
ba1ddf42
NK
2036 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
2037 "Show the mmap events"),
7c14898b
AH
2038 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
2039 "Show context switch events (if recorded)"),
06af0f2c 2040 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
83e19860
AH
2041 OPT_BOOLEAN(0, "ns", &nanosecs,
2042 "Use 9 decimal places when displaying time"),
7a680eb9
AH
2043 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
2044 "Instruction Tracing options",
2045 itrace_parse_synth_opts),
a9710ba0
AK
2046 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
2047 "Show full source file name path for source lines"),
77e0070d
MD
2048 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
2049 "Enable symbol demangling"),
2050 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
2051 "Enable kernel symbol demangling"),
2052
1909629f 2053 OPT_END()
69b6470e 2054 };
40cae2b7
YS
2055 const char * const script_subcommands[] = { "record", "report", NULL };
2056 const char *script_usage[] = {
69b6470e
ACM
2057 "perf script [<options>]",
2058 "perf script [<options>] record <script> [<record-options>] <command>",
2059 "perf script [<options>] report <script> [script-args]",
2060 "perf script [<options>] <script> [<record-options>] <command>",
2061 "perf script [<options>] <top-script> [script-args]",
2062 NULL
2063 };
3875294f 2064
b5b87312
TZ
2065 setup_scripting();
2066
40cae2b7 2067 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
b5b87312
TZ
2068 PARSE_OPT_STOP_AT_NON_OPTION);
2069
f5fc1412
JO
2070 file.path = input_name;
2071
b5b87312
TZ
2072 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
2073 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
2074 if (!rec_script_path)
2075 return cmd_record(argc, argv, NULL);
3875294f
TZ
2076 }
2077
b5b87312
TZ
2078 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
2079 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
2080 if (!rep_script_path) {
3875294f 2081 fprintf(stderr,
b5b87312 2082 "Please specify a valid report script"
133dc4c3 2083 "(see 'perf script -l' for listing)\n");
3875294f
TZ
2084 return -1;
2085 }
3875294f
TZ
2086 }
2087
3c5b645f
AH
2088 if (itrace_synth_opts.callchain &&
2089 itrace_synth_opts.callchain_sz > scripting_max_stack)
2090 scripting_max_stack = itrace_synth_opts.callchain_sz;
2091
44e668c6 2092 /* make sure PERF_EXEC_PATH is set for scripts */
46113a54 2093 set_argv_exec_path(get_argv_exec_path());
44e668c6 2094
b5b87312 2095 if (argc && !script_name && !rec_script_path && !rep_script_path) {
a0cccc2e 2096 int live_pipe[2];
b5b87312 2097 int rep_args;
a0cccc2e
TZ
2098 pid_t pid;
2099
b5b87312
TZ
2100 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
2101 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
2102
2103 if (!rec_script_path && !rep_script_path) {
c7118369
NK
2104 usage_with_options_msg(script_usage, options,
2105 "Couldn't find script `%s'\n\n See perf"
133dc4c3 2106 " script -l for available scripts.\n", argv[0]);
a0cccc2e
TZ
2107 }
2108
b5b87312
TZ
2109 if (is_top_script(argv[0])) {
2110 rep_args = argc - 1;
2111 } else {
2112 int rec_args;
2113
2114 rep_args = has_required_arg(rep_script_path);
2115 rec_args = (argc - 1) - rep_args;
2116 if (rec_args < 0) {
c7118369
NK
2117 usage_with_options_msg(script_usage, options,
2118 "`%s' script requires options."
133dc4c3 2119 "\n\n See perf script -l for available "
b5b87312 2120 "scripts and options.\n", argv[0]);
b5b87312 2121 }
a0cccc2e
TZ
2122 }
2123
2124 if (pipe(live_pipe) < 0) {
2125 perror("failed to create pipe");
d54b1a9e 2126 return -1;
a0cccc2e
TZ
2127 }
2128
2129 pid = fork();
2130 if (pid < 0) {
2131 perror("failed to fork");
d54b1a9e 2132 return -1;
a0cccc2e
TZ
2133 }
2134
2135 if (!pid) {
b5b87312
TZ
2136 j = 0;
2137
a0cccc2e
TZ
2138 dup2(live_pipe[1], 1);
2139 close(live_pipe[0]);
2140
317df650
RR
2141 if (is_top_script(argv[0])) {
2142 system_wide = true;
2143 } else if (!system_wide) {
d54b1a9e
DA
2144 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
2145 err = -1;
2146 goto out;
2147 }
317df650 2148 }
b5b87312
TZ
2149
2150 __argv = malloc((argc + 6) * sizeof(const char *));
d54b1a9e
DA
2151 if (!__argv) {
2152 pr_err("malloc failed\n");
2153 err = -ENOMEM;
2154 goto out;
2155 }
e8719adf 2156
b5b87312
TZ
2157 __argv[j++] = "/bin/sh";
2158 __argv[j++] = rec_script_path;
2159 if (system_wide)
2160 __argv[j++] = "-a";
2161 __argv[j++] = "-q";
2162 __argv[j++] = "-o";
2163 __argv[j++] = "-";
2164 for (i = rep_args + 1; i < argc; i++)
2165 __argv[j++] = argv[i];
2166 __argv[j++] = NULL;
a0cccc2e
TZ
2167
2168 execvp("/bin/sh", (char **)__argv);
e8719adf 2169 free(__argv);
a0cccc2e
TZ
2170 exit(-1);
2171 }
2172
2173 dup2(live_pipe[0], 0);
2174 close(live_pipe[1]);
2175
b5b87312 2176 __argv = malloc((argc + 4) * sizeof(const char *));
d54b1a9e
DA
2177 if (!__argv) {
2178 pr_err("malloc failed\n");
2179 err = -ENOMEM;
2180 goto out;
2181 }
2182
b5b87312
TZ
2183 j = 0;
2184 __argv[j++] = "/bin/sh";
2185 __argv[j++] = rep_script_path;
2186 for (i = 1; i < rep_args + 1; i++)
2187 __argv[j++] = argv[i];
2188 __argv[j++] = "-i";
2189 __argv[j++] = "-";
2190 __argv[j++] = NULL;
a0cccc2e
TZ
2191
2192 execvp("/bin/sh", (char **)__argv);
e8719adf 2193 free(__argv);
a0cccc2e
TZ
2194 exit(-1);
2195 }
2196
b5b87312
TZ
2197 if (rec_script_path)
2198 script_path = rec_script_path;
2199 if (rep_script_path)
2200 script_path = rep_script_path;
34c86ea9 2201
b5b87312 2202 if (script_path) {
b5b87312 2203 j = 0;
3875294f 2204
317df650
RR
2205 if (!rec_script_path)
2206 system_wide = false;
d54b1a9e
DA
2207 else if (!system_wide) {
2208 if (have_cmd(argc - 1, &argv[1]) != 0) {
2209 err = -1;
2210 goto out;
2211 }
2212 }
34c86ea9 2213
b5b87312 2214 __argv = malloc((argc + 2) * sizeof(const char *));
d54b1a9e
DA
2215 if (!__argv) {
2216 pr_err("malloc failed\n");
2217 err = -ENOMEM;
2218 goto out;
2219 }
2220
34c86ea9
TZ
2221 __argv[j++] = "/bin/sh";
2222 __argv[j++] = script_path;
2223 if (system_wide)
2224 __argv[j++] = "-a";
b5b87312 2225 for (i = 2; i < argc; i++)
34c86ea9
TZ
2226 __argv[j++] = argv[i];
2227 __argv[j++] = NULL;
3875294f
TZ
2228
2229 execvp("/bin/sh", (char **)__argv);
e8719adf 2230 free(__argv);
3875294f
TZ
2231 exit(-1);
2232 }
956ffd02 2233
cf4fee50
TZ
2234 if (!script_name)
2235 setup_pager();
5f9c39dc 2236
6f3e5eda 2237 session = perf_session__new(&file, false, &script.tool);
d8f66248 2238 if (session == NULL)
52e02834 2239 return -1;
d8f66248 2240
e90debdd
JO
2241 if (header || header_only) {
2242 perf_session__fprintf_info(session, stdout, show_full_info);
2243 if (header_only)
6cc870f0 2244 goto out_delete;
e90debdd
JO
2245 }
2246
0a7e6d1b 2247 if (symbol__init(&session->header.env) < 0)
38520dc3
NK
2248 goto out_delete;
2249
6f3e5eda 2250 script.session = session;
7322d6c9 2251 script__setup_sample_type(&script);
6f3e5eda 2252
7a680eb9
AH
2253 session->itrace_synth_opts = &itrace_synth_opts;
2254
5d67be97 2255 if (cpu_list) {
6cc870f0
NK
2256 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
2257 if (err < 0)
2258 goto out_delete;
5d67be97
AB
2259 }
2260
1424dc96 2261 if (!no_callchain)
c0230b2b
DA
2262 symbol_conf.use_callchain = true;
2263 else
2264 symbol_conf.use_callchain = false;
2265
9ee67421
ACM
2266 if (session->tevent.pevent &&
2267 pevent_set_function_resolver(session->tevent.pevent,
ccb3a829
ACM
2268 machine__resolve_kernel_addr,
2269 &session->machines.host) < 0) {
2270 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
2271 return -1;
2272 }
2273
956ffd02
TZ
2274 if (generate_script_lang) {
2275 struct stat perf_stat;
745f43e3
DA
2276 int input;
2277
2c9e45f7 2278 if (output_set_by_user()) {
745f43e3
DA
2279 fprintf(stderr,
2280 "custom fields not supported for generated scripts");
6cc870f0
NK
2281 err = -EINVAL;
2282 goto out_delete;
745f43e3 2283 }
956ffd02 2284
cc9784bd 2285 input = open(file.path, O_RDONLY); /* input_name */
956ffd02 2286 if (input < 0) {
6cc870f0 2287 err = -errno;
956ffd02 2288 perror("failed to open file");
6cc870f0 2289 goto out_delete;
956ffd02
TZ
2290 }
2291
2292 err = fstat(input, &perf_stat);
2293 if (err < 0) {
2294 perror("failed to stat file");
6cc870f0 2295 goto out_delete;
956ffd02
TZ
2296 }
2297
2298 if (!perf_stat.st_size) {
2299 fprintf(stderr, "zero-sized file, nothing to do!\n");
6cc870f0 2300 goto out_delete;
956ffd02
TZ
2301 }
2302
2303 scripting_ops = script_spec__lookup(generate_script_lang);
2304 if (!scripting_ops) {
2305 fprintf(stderr, "invalid language specifier");
6cc870f0
NK
2306 err = -ENOENT;
2307 goto out_delete;
956ffd02
TZ
2308 }
2309
29f5ffd3 2310 err = scripting_ops->generate_script(session->tevent.pevent,
da378962 2311 "perf-script");
6cc870f0 2312 goto out_delete;
956ffd02
TZ
2313 }
2314
2315 if (script_name) {
586bc5cc 2316 err = scripting_ops->start_script(script_name, argc, argv);
956ffd02 2317 if (err)
6cc870f0 2318 goto out_delete;
133dc4c3 2319 pr_debug("perf script started with script %s\n\n", script_name);
6cc870f0 2320 script_started = true;
956ffd02
TZ
2321 }
2322
9cbdb702
DA
2323
2324 err = perf_session__check_output_opt(session);
2325 if (err < 0)
6cc870f0 2326 goto out_delete;
9cbdb702 2327
6f3e5eda 2328 err = __cmd_script(&script);
956ffd02 2329
d445dd2a
AH
2330 flush_scripting();
2331
6cc870f0 2332out_delete:
cfc8874a 2333 perf_evlist__free_stats(session->evlist);
d8f66248 2334 perf_session__delete(session);
6cc870f0
NK
2335
2336 if (script_started)
2337 cleanup_scripting();
956ffd02
TZ
2338out:
2339 return err;
5f9c39dc 2340}