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