]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/builtin-script.c
perf tools: Export setup_list
[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"
9#include "util/session.h"
45694aa7 10#include "util/tool.h"
5f9c39dc
FW
11#include "util/symbol.h"
12#include "util/thread.h"
cf72344d 13#include "util/trace-event.h"
b7eead86 14#include "util/util.h"
1424dc96
DA
15#include "util/evlist.h"
16#include "util/evsel.h"
36385be5 17#include "util/sort.h"
f5fc1412 18#include "util/data.h"
5d67be97 19#include <linux/bitmap.h>
5f9c39dc 20
956ffd02
TZ
21static char const *script_name;
22static char const *generate_script_lang;
ffabd99e 23static bool debug_mode;
e1889d75 24static u64 last_timestamp;
6fcf7ddb 25static u64 nr_unordered;
34c86ea9 26extern const struct option record_options[];
c0230b2b 27static bool no_callchain;
47390ae2 28static bool latency_format;
317df650 29static bool system_wide;
5d67be97
AB
30static const char *cpu_list;
31static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
956ffd02 32
745f43e3
DA
33enum perf_output_field {
34 PERF_OUTPUT_COMM = 1U << 0,
35 PERF_OUTPUT_TID = 1U << 1,
36 PERF_OUTPUT_PID = 1U << 2,
37 PERF_OUTPUT_TIME = 1U << 3,
38 PERF_OUTPUT_CPU = 1U << 4,
39 PERF_OUTPUT_EVNAME = 1U << 5,
40 PERF_OUTPUT_TRACE = 1U << 6,
787bef17
DA
41 PERF_OUTPUT_IP = 1U << 7,
42 PERF_OUTPUT_SYM = 1U << 8,
610723f2 43 PERF_OUTPUT_DSO = 1U << 9,
7cec0922 44 PERF_OUTPUT_ADDR = 1U << 10,
a978f2ab 45 PERF_OUTPUT_SYMOFFSET = 1U << 11,
745f43e3
DA
46};
47
48struct output_option {
49 const char *str;
50 enum perf_output_field field;
51} all_output_options[] = {
52 {.str = "comm", .field = PERF_OUTPUT_COMM},
53 {.str = "tid", .field = PERF_OUTPUT_TID},
54 {.str = "pid", .field = PERF_OUTPUT_PID},
55 {.str = "time", .field = PERF_OUTPUT_TIME},
56 {.str = "cpu", .field = PERF_OUTPUT_CPU},
57 {.str = "event", .field = PERF_OUTPUT_EVNAME},
58 {.str = "trace", .field = PERF_OUTPUT_TRACE},
787bef17 59 {.str = "ip", .field = PERF_OUTPUT_IP},
c0230b2b 60 {.str = "sym", .field = PERF_OUTPUT_SYM},
610723f2 61 {.str = "dso", .field = PERF_OUTPUT_DSO},
7cec0922 62 {.str = "addr", .field = PERF_OUTPUT_ADDR},
a978f2ab 63 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
745f43e3
DA
64};
65
66/* default set to maintain compatibility with current format */
2c9e45f7
DA
67static struct {
68 bool user_set;
9cbdb702 69 bool wildcard_set;
a6ffaf91 70 unsigned int print_ip_opts;
2c9e45f7
DA
71 u64 fields;
72 u64 invalid_fields;
73} output[PERF_TYPE_MAX] = {
74
75 [PERF_TYPE_HARDWARE] = {
76 .user_set = false,
77
78 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
79 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
787bef17 80 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
610723f2 81 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
2c9e45f7
DA
82
83 .invalid_fields = PERF_OUTPUT_TRACE,
84 },
85
86 [PERF_TYPE_SOFTWARE] = {
87 .user_set = false,
88
89 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
90 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
787bef17 91 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
610723f2 92 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
2c9e45f7
DA
93
94 .invalid_fields = PERF_OUTPUT_TRACE,
95 },
96
97 [PERF_TYPE_TRACEPOINT] = {
98 .user_set = false,
99
100 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
101 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
102 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
103 },
0817a6a3
AS
104
105 [PERF_TYPE_RAW] = {
106 .user_set = false,
107
108 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
109 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
787bef17 110 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
610723f2 111 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
0817a6a3
AS
112
113 .invalid_fields = PERF_OUTPUT_TRACE,
114 },
1424dc96 115};
745f43e3 116
2c9e45f7
DA
117static bool output_set_by_user(void)
118{
119 int j;
120 for (j = 0; j < PERF_TYPE_MAX; ++j) {
121 if (output[j].user_set)
122 return true;
123 }
124 return false;
125}
745f43e3 126
9cbdb702
DA
127static const char *output_field2str(enum perf_output_field field)
128{
129 int i, imax = ARRAY_SIZE(all_output_options);
130 const char *str = "";
131
132 for (i = 0; i < imax; ++i) {
133 if (all_output_options[i].field == field) {
134 str = all_output_options[i].str;
135 break;
136 }
137 }
138 return str;
139}
140
2c9e45f7 141#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
1424dc96 142
5bff01f6
ACM
143static int perf_evsel__check_stype(struct perf_evsel *evsel,
144 u64 sample_type, const char *sample_msg,
145 enum perf_output_field field)
1424dc96 146{
5bff01f6 147 struct perf_event_attr *attr = &evsel->attr;
9cbdb702
DA
148 int type = attr->type;
149 const char *evname;
150
151 if (attr->sample_type & sample_type)
152 return 0;
153
154 if (output[type].user_set) {
5bff01f6 155 evname = perf_evsel__name(evsel);
9cbdb702
DA
156 pr_err("Samples for '%s' event do not have %s attribute set. "
157 "Cannot print '%s' field.\n",
158 evname, sample_msg, output_field2str(field));
159 return -1;
160 }
161
162 /* user did not ask for it explicitly so remove from the default list */
163 output[type].fields &= ~field;
5bff01f6 164 evname = perf_evsel__name(evsel);
9cbdb702
DA
165 pr_debug("Samples for '%s' event do not have %s attribute set. "
166 "Skipping '%s' field.\n",
167 evname, sample_msg, output_field2str(field));
168
169 return 0;
170}
171
172static int perf_evsel__check_attr(struct perf_evsel *evsel,
173 struct perf_session *session)
174{
175 struct perf_event_attr *attr = &evsel->attr;
176
1424dc96
DA
177 if (PRINT_FIELD(TRACE) &&
178 !perf_session__has_traces(session, "record -R"))
179 return -EINVAL;
180
787bef17 181 if (PRINT_FIELD(IP)) {
5bff01f6
ACM
182 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
183 PERF_OUTPUT_IP))
1424dc96 184 return -EINVAL;
9cbdb702 185
1424dc96 186 if (!no_callchain &&
9cbdb702 187 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
1424dc96
DA
188 symbol_conf.use_callchain = false;
189 }
7cec0922
DA
190
191 if (PRINT_FIELD(ADDR) &&
5bff01f6
ACM
192 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
193 PERF_OUTPUT_ADDR))
7cec0922
DA
194 return -EINVAL;
195
196 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
197 pr_err("Display of symbols requested but neither sample IP nor "
198 "sample address\nis selected. Hence, no addresses to convert "
199 "to symbols.\n");
787bef17
DA
200 return -EINVAL;
201 }
a978f2ab
AN
202 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
203 pr_err("Display of offsets requested but symbol is not"
204 "selected.\n");
205 return -EINVAL;
206 }
7cec0922
DA
207 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
208 pr_err("Display of DSO requested but neither sample IP nor "
209 "sample address\nis selected. Hence, no addresses to convert "
210 "to DSO.\n");
610723f2
DA
211 return -EINVAL;
212 }
1424dc96
DA
213
214 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
5bff01f6
ACM
215 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
216 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
1424dc96 217 return -EINVAL;
1424dc96
DA
218
219 if (PRINT_FIELD(TIME) &&
5bff01f6
ACM
220 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
221 PERF_OUTPUT_TIME))
1424dc96 222 return -EINVAL;
1424dc96
DA
223
224 if (PRINT_FIELD(CPU) &&
5bff01f6
ACM
225 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
226 PERF_OUTPUT_CPU))
1424dc96 227 return -EINVAL;
9cbdb702
DA
228
229 return 0;
230}
231
7ea95727
AH
232static void set_print_ip_opts(struct perf_event_attr *attr)
233{
234 unsigned int type = attr->type;
235
236 output[type].print_ip_opts = 0;
237 if (PRINT_FIELD(IP))
238 output[type].print_ip_opts |= PRINT_IP_OPT_IP;
239
240 if (PRINT_FIELD(SYM))
241 output[type].print_ip_opts |= PRINT_IP_OPT_SYM;
242
243 if (PRINT_FIELD(DSO))
244 output[type].print_ip_opts |= PRINT_IP_OPT_DSO;
245
246 if (PRINT_FIELD(SYMOFFSET))
247 output[type].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET;
248}
249
9cbdb702
DA
250/*
251 * verify all user requested events exist and the samples
252 * have the expected data
253 */
254static int perf_session__check_output_opt(struct perf_session *session)
255{
256 int j;
257 struct perf_evsel *evsel;
258
259 for (j = 0; j < PERF_TYPE_MAX; ++j) {
260 evsel = perf_session__find_first_evtype(session, j);
261
262 /*
263 * even if fields is set to 0 (ie., show nothing) event must
264 * exist if user explicitly includes it on the command line
265 */
266 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
267 pr_err("%s events do not exist. "
268 "Remove corresponding -f option to proceed.\n",
269 event_type(j));
270 return -1;
271 }
272
273 if (evsel && output[j].fields &&
274 perf_evsel__check_attr(evsel, session))
275 return -1;
a6ffaf91
DA
276
277 if (evsel == NULL)
278 continue;
279
7ea95727 280 set_print_ip_opts(&evsel->attr);
1424dc96
DA
281 }
282
283 return 0;
284}
745f43e3 285
fcf65bf1 286static void print_sample_start(struct perf_sample *sample,
1424dc96 287 struct thread *thread,
5bff01f6 288 struct perf_evsel *evsel)
c70c94b4 289{
5bff01f6 290 struct perf_event_attr *attr = &evsel->attr;
c70c94b4
DA
291 unsigned long secs;
292 unsigned long usecs;
745f43e3
DA
293 unsigned long long nsecs;
294
295 if (PRINT_FIELD(COMM)) {
296 if (latency_format)
b9c5143a 297 printf("%8.8s ", thread__comm_str(thread));
787bef17 298 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
b9c5143a 299 printf("%s ", thread__comm_str(thread));
745f43e3 300 else
b9c5143a 301 printf("%16s ", thread__comm_str(thread));
745f43e3 302 }
c70c94b4 303
745f43e3
DA
304 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
305 printf("%5d/%-5d ", sample->pid, sample->tid);
306 else if (PRINT_FIELD(PID))
307 printf("%5d ", sample->pid);
308 else if (PRINT_FIELD(TID))
309 printf("%5d ", sample->tid);
310
311 if (PRINT_FIELD(CPU)) {
312 if (latency_format)
313 printf("%3d ", sample->cpu);
314 else
315 printf("[%03d] ", sample->cpu);
316 }
c70c94b4 317
745f43e3
DA
318 if (PRINT_FIELD(TIME)) {
319 nsecs = sample->time;
320 secs = nsecs / NSECS_PER_SEC;
321 nsecs -= secs * NSECS_PER_SEC;
322 usecs = nsecs / NSECS_PER_USEC;
323 printf("%5lu.%06lu: ", secs, usecs);
324 }
c70c94b4
DA
325}
326
95582596
AN
327static bool is_bts_event(struct perf_event_attr *attr)
328{
329 return ((attr->type == PERF_TYPE_HARDWARE) &&
330 (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
331 (attr->sample_period == 1));
332}
333
7cec0922
DA
334static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
335{
336 if ((attr->type == PERF_TYPE_SOFTWARE) &&
337 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
338 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
339 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
340 return true;
341
95582596
AN
342 if (is_bts_event(attr))
343 return true;
344
7cec0922
DA
345 return false;
346}
347
348static void print_sample_addr(union perf_event *event,
349 struct perf_sample *sample,
743eb868 350 struct machine *machine,
7cec0922
DA
351 struct thread *thread,
352 struct perf_event_attr *attr)
353{
354 struct addr_location al;
355 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
7cec0922
DA
356
357 printf("%16" PRIx64, sample->addr);
358
359 if (!sample_addr_correlates_sym(attr))
360 return;
361
743eb868 362 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
326f59bf 363 sample->addr, &al);
7cec0922 364 if (!al.map)
743eb868 365 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
326f59bf 366 sample->addr, &al);
7cec0922
DA
367
368 al.cpu = sample->cpu;
369 al.sym = NULL;
370
371 if (al.map)
372 al.sym = map__find_symbol(al.map, al.addr, NULL);
373
374 if (PRINT_FIELD(SYM)) {
547a92e0 375 printf(" ");
a978f2ab
AN
376 if (PRINT_FIELD(SYMOFFSET))
377 symbol__fprintf_symname_offs(al.sym, &al, stdout);
378 else
379 symbol__fprintf_symname(al.sym, stdout);
7cec0922
DA
380 }
381
382 if (PRINT_FIELD(DSO)) {
547a92e0
AN
383 printf(" (");
384 map__fprintf_dsoname(al.map, stdout);
385 printf(")");
7cec0922
DA
386 }
387}
388
95582596
AN
389static void print_sample_bts(union perf_event *event,
390 struct perf_sample *sample,
391 struct perf_evsel *evsel,
392 struct machine *machine,
393 struct thread *thread)
394{
395 struct perf_event_attr *attr = &evsel->attr;
396
397 /* print branch_from information */
398 if (PRINT_FIELD(IP)) {
399 if (!symbol_conf.use_callchain)
400 printf(" ");
401 else
402 printf("\n");
71ad0f5e 403 perf_evsel__print_ip(evsel, event, sample, machine,
307cbb92
DA
404 output[attr->type].print_ip_opts,
405 PERF_MAX_STACK_DEPTH);
95582596
AN
406 }
407
408 printf(" => ");
409
410 /* print branch_to information */
243be3dd
AH
411 if (PRINT_FIELD(ADDR) ||
412 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
413 !output[attr->type].user_set))
95582596
AN
414 print_sample_addr(event, sample, machine, thread, attr);
415
416 printf("\n");
417}
418
97822433
ACM
419static void process_event(union perf_event *event, struct perf_sample *sample,
420 struct perf_evsel *evsel, struct machine *machine,
2eaa1b40
DA
421 struct thread *thread,
422 struct addr_location *al __maybe_unused)
be6d842a 423{
9e69c210 424 struct perf_event_attr *attr = &evsel->attr;
1424dc96 425
2c9e45f7 426 if (output[attr->type].fields == 0)
1424dc96
DA
427 return;
428
fcf65bf1 429 print_sample_start(sample, thread, evsel);
745f43e3 430
e944d3d7
NK
431 if (PRINT_FIELD(EVNAME)) {
432 const char *evname = perf_evsel__name(evsel);
433 printf("%s: ", evname ? evname : "[unknown]");
434 }
435
95582596
AN
436 if (is_bts_event(attr)) {
437 print_sample_bts(event, sample, evsel, machine, thread);
438 return;
439 }
440
745f43e3 441 if (PRINT_FIELD(TRACE))
fcf65bf1
ACM
442 event_format__print(evsel->tp_format, sample->cpu,
443 sample->raw_data, sample->raw_size);
7cec0922 444 if (PRINT_FIELD(ADDR))
743eb868 445 print_sample_addr(event, sample, machine, thread, attr);
7cec0922 446
787bef17 447 if (PRINT_FIELD(IP)) {
c0230b2b
DA
448 if (!symbol_conf.use_callchain)
449 printf(" ");
450 else
451 printf("\n");
a6ffaf91 452
71ad0f5e 453 perf_evsel__print_ip(evsel, event, sample, machine,
307cbb92
DA
454 output[attr->type].print_ip_opts,
455 PERF_MAX_STACK_DEPTH);
c0230b2b
DA
456 }
457
c70c94b4 458 printf("\n");
be6d842a
DA
459}
460
1d037ca1
IT
461static int default_start_script(const char *script __maybe_unused,
462 int argc __maybe_unused,
463 const char **argv __maybe_unused)
956ffd02
TZ
464{
465 return 0;
466}
467
468static int default_stop_script(void)
469{
470 return 0;
471}
472
1d037ca1
IT
473static int default_generate_script(struct pevent *pevent __maybe_unused,
474 const char *outfile __maybe_unused)
956ffd02
TZ
475{
476 return 0;
477}
478
479static struct scripting_ops default_scripting_ops = {
480 .start_script = default_start_script,
481 .stop_script = default_stop_script,
be6d842a 482 .process_event = process_event,
956ffd02
TZ
483 .generate_script = default_generate_script,
484};
485
486static struct scripting_ops *scripting_ops;
487
488static void setup_scripting(void)
489{
16c632de 490 setup_perl_scripting();
7e4b21b8 491 setup_python_scripting();
16c632de 492
956ffd02
TZ
493 scripting_ops = &default_scripting_ops;
494}
495
496static int cleanup_scripting(void)
497{
133dc4c3 498 pr_debug("\nperf script stopped\n");
3824a4e8 499
956ffd02
TZ
500 return scripting_ops->stop_script();
501}
502
1d037ca1 503static int process_sample_event(struct perf_tool *tool __maybe_unused,
d20deb64 504 union perf_event *event,
8115d60c 505 struct perf_sample *sample,
9e69c210 506 struct perf_evsel *evsel,
743eb868 507 struct machine *machine)
5f9c39dc 508{
e7984b7b 509 struct addr_location al;
ef89325f
AH
510 struct thread *thread = machine__findnew_thread(machine, sample->pid,
511 sample->tid);
6ddf259d 512
5f9c39dc 513 if (thread == NULL) {
6beba7ad
ACM
514 pr_debug("problem processing %d event, skipping it.\n",
515 event->header.type);
5f9c39dc
FW
516 return -1;
517 }
518
1424dc96
DA
519 if (debug_mode) {
520 if (sample->time < last_timestamp) {
521 pr_err("Samples misordered, previous: %" PRIu64
522 " this: %" PRIu64 "\n", last_timestamp,
523 sample->time);
524 nr_unordered++;
e1889d75 525 }
1424dc96
DA
526 last_timestamp = sample->time;
527 return 0;
5f9c39dc 528 }
5d67be97 529
e44baa3e 530 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
e7984b7b
DA
531 pr_err("problem processing %d event, skipping it.\n",
532 event->header.type);
533 return -1;
534 }
535
536 if (al.filtered)
537 return 0;
538
5d67be97
AB
539 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
540 return 0;
541
2eaa1b40 542 scripting_ops->process_event(event, sample, evsel, machine, thread, &al);
5f9c39dc 543
743eb868 544 evsel->hists.stats.total_period += sample->period;
5f9c39dc
FW
545 return 0;
546}
547
6f3e5eda
AH
548struct perf_script {
549 struct perf_tool tool;
550 struct perf_session *session;
016e92fb
FW
551};
552
7ea95727
AH
553static int process_attr(struct perf_tool *tool, union perf_event *event,
554 struct perf_evlist **pevlist)
555{
556 struct perf_script *scr = container_of(tool, struct perf_script, tool);
557 struct perf_evlist *evlist;
558 struct perf_evsel *evsel, *pos;
559 int err;
560
561 err = perf_event__process_attr(tool, event, pevlist);
562 if (err)
563 return err;
564
565 evlist = *pevlist;
566 evsel = perf_evlist__last(*pevlist);
567
568 if (evsel->attr.type >= PERF_TYPE_MAX)
569 return 0;
570
571 list_for_each_entry(pos, &evlist->entries, node) {
572 if (pos->attr.type == evsel->attr.type && pos != evsel)
573 return 0;
574 }
575
576 set_print_ip_opts(&evsel->attr);
577
578 return perf_evsel__check_attr(evsel, scr->session);
579}
580
1d037ca1 581static void sig_handler(int sig __maybe_unused)
c239da3b
TZ
582{
583 session_done = 1;
584}
585
6f3e5eda 586static int __cmd_script(struct perf_script *script)
5f9c39dc 587{
6fcf7ddb
FW
588 int ret;
589
c239da3b
TZ
590 signal(SIGINT, sig_handler);
591
6f3e5eda 592 ret = perf_session__process_events(script->session, &script->tool);
6fcf7ddb 593
6d8afb56 594 if (debug_mode)
9486aa38 595 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
6fcf7ddb
FW
596
597 return ret;
5f9c39dc
FW
598}
599
956ffd02
TZ
600struct script_spec {
601 struct list_head node;
602 struct scripting_ops *ops;
603 char spec[0];
604};
605
eccdfe2d 606static LIST_HEAD(script_specs);
956ffd02
TZ
607
608static struct script_spec *script_spec__new(const char *spec,
609 struct scripting_ops *ops)
610{
611 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
612
613 if (s != NULL) {
614 strcpy(s->spec, spec);
615 s->ops = ops;
616 }
617
618 return s;
619}
620
956ffd02
TZ
621static void script_spec__add(struct script_spec *s)
622{
623 list_add_tail(&s->node, &script_specs);
624}
625
626static struct script_spec *script_spec__find(const char *spec)
627{
628 struct script_spec *s;
629
630 list_for_each_entry(s, &script_specs, node)
631 if (strcasecmp(s->spec, spec) == 0)
632 return s;
633 return NULL;
634}
635
636static struct script_spec *script_spec__findnew(const char *spec,
637 struct scripting_ops *ops)
638{
639 struct script_spec *s = script_spec__find(spec);
640
641 if (s)
642 return s;
643
644 s = script_spec__new(spec, ops);
645 if (!s)
466e2876 646 return NULL;
956ffd02
TZ
647
648 script_spec__add(s);
649
650 return s;
956ffd02
TZ
651}
652
653int script_spec_register(const char *spec, struct scripting_ops *ops)
654{
655 struct script_spec *s;
656
657 s = script_spec__find(spec);
658 if (s)
659 return -1;
660
661 s = script_spec__findnew(spec, ops);
662 if (!s)
663 return -1;
664
665 return 0;
666}
667
668static struct scripting_ops *script_spec__lookup(const char *spec)
669{
670 struct script_spec *s = script_spec__find(spec);
671 if (!s)
672 return NULL;
673
674 return s->ops;
675}
676
677static void list_available_languages(void)
678{
679 struct script_spec *s;
680
681 fprintf(stderr, "\n");
682 fprintf(stderr, "Scripting language extensions (used in "
133dc4c3 683 "perf script -s [spec:]script.[spec]):\n\n");
956ffd02
TZ
684
685 list_for_each_entry(s, &script_specs, node)
686 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
687
688 fprintf(stderr, "\n");
689}
690
1d037ca1
IT
691static int parse_scriptname(const struct option *opt __maybe_unused,
692 const char *str, int unset __maybe_unused)
956ffd02
TZ
693{
694 char spec[PATH_MAX];
695 const char *script, *ext;
696 int len;
697
f526d68b 698 if (strcmp(str, "lang") == 0) {
956ffd02 699 list_available_languages();
f526d68b 700 exit(0);
956ffd02
TZ
701 }
702
703 script = strchr(str, ':');
704 if (script) {
705 len = script - str;
706 if (len >= PATH_MAX) {
707 fprintf(stderr, "invalid language specifier");
708 return -1;
709 }
710 strncpy(spec, str, len);
711 spec[len] = '\0';
712 scripting_ops = script_spec__lookup(spec);
713 if (!scripting_ops) {
714 fprintf(stderr, "invalid language specifier");
715 return -1;
716 }
717 script++;
718 } else {
719 script = str;
d1e95bb5 720 ext = strrchr(script, '.');
956ffd02
TZ
721 if (!ext) {
722 fprintf(stderr, "invalid script extension");
723 return -1;
724 }
725 scripting_ops = script_spec__lookup(++ext);
726 if (!scripting_ops) {
727 fprintf(stderr, "invalid script extension");
728 return -1;
729 }
730 }
731
732 script_name = strdup(script);
733
734 return 0;
735}
736
1d037ca1
IT
737static int parse_output_fields(const struct option *opt __maybe_unused,
738 const char *arg, int unset __maybe_unused)
745f43e3
DA
739{
740 char *tok;
50ca19ae 741 int i, imax = ARRAY_SIZE(all_output_options);
2c9e45f7 742 int j;
745f43e3
DA
743 int rc = 0;
744 char *str = strdup(arg);
1424dc96 745 int type = -1;
745f43e3
DA
746
747 if (!str)
748 return -ENOMEM;
749
2c9e45f7
DA
750 /* first word can state for which event type the user is specifying
751 * the fields. If no type exists, the specified fields apply to all
752 * event types found in the file minus the invalid fields for a type.
1424dc96 753 */
2c9e45f7
DA
754 tok = strchr(str, ':');
755 if (tok) {
756 *tok = '\0';
757 tok++;
758 if (!strcmp(str, "hw"))
759 type = PERF_TYPE_HARDWARE;
760 else if (!strcmp(str, "sw"))
761 type = PERF_TYPE_SOFTWARE;
762 else if (!strcmp(str, "trace"))
763 type = PERF_TYPE_TRACEPOINT;
0817a6a3
AS
764 else if (!strcmp(str, "raw"))
765 type = PERF_TYPE_RAW;
2c9e45f7
DA
766 else {
767 fprintf(stderr, "Invalid event type in field string.\n");
38efb539
RR
768 rc = -EINVAL;
769 goto out;
2c9e45f7
DA
770 }
771
772 if (output[type].user_set)
773 pr_warning("Overriding previous field request for %s events.\n",
774 event_type(type));
775
776 output[type].fields = 0;
777 output[type].user_set = true;
9cbdb702 778 output[type].wildcard_set = false;
2c9e45f7
DA
779
780 } else {
781 tok = str;
782 if (strlen(str) == 0) {
783 fprintf(stderr,
784 "Cannot set fields to 'none' for all event types.\n");
785 rc = -EINVAL;
786 goto out;
787 }
788
789 if (output_set_by_user())
790 pr_warning("Overriding previous field request for all events.\n");
791
792 for (j = 0; j < PERF_TYPE_MAX; ++j) {
793 output[j].fields = 0;
794 output[j].user_set = true;
9cbdb702 795 output[j].wildcard_set = true;
2c9e45f7 796 }
745f43e3
DA
797 }
798
2c9e45f7
DA
799 tok = strtok(tok, ",");
800 while (tok) {
745f43e3 801 for (i = 0; i < imax; ++i) {
2c9e45f7 802 if (strcmp(tok, all_output_options[i].str) == 0)
745f43e3 803 break;
745f43e3
DA
804 }
805 if (i == imax) {
2c9e45f7 806 fprintf(stderr, "Invalid field requested.\n");
745f43e3 807 rc = -EINVAL;
2c9e45f7 808 goto out;
745f43e3
DA
809 }
810
2c9e45f7
DA
811 if (type == -1) {
812 /* add user option to all events types for
813 * which it is valid
814 */
815 for (j = 0; j < PERF_TYPE_MAX; ++j) {
816 if (output[j].invalid_fields & all_output_options[i].field) {
817 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
818 all_output_options[i].str, event_type(j));
819 } else
820 output[j].fields |= all_output_options[i].field;
821 }
822 } else {
823 if (output[type].invalid_fields & all_output_options[i].field) {
824 fprintf(stderr, "\'%s\' not valid for %s events.\n",
825 all_output_options[i].str, event_type(type));
826
827 rc = -EINVAL;
828 goto out;
829 }
830 output[type].fields |= all_output_options[i].field;
831 }
832
833 tok = strtok(NULL, ",");
745f43e3
DA
834 }
835
2c9e45f7
DA
836 if (type >= 0) {
837 if (output[type].fields == 0) {
838 pr_debug("No fields requested for %s type. "
839 "Events will not be displayed.\n", event_type(type));
840 }
841 }
745f43e3 842
2c9e45f7 843out:
745f43e3
DA
844 free(str);
845 return rc;
846}
847
008f29d3
SB
848/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
849static int is_directory(const char *base_path, const struct dirent *dent)
850{
851 char path[PATH_MAX];
852 struct stat st;
853
854 sprintf(path, "%s/%s", base_path, dent->d_name);
855 if (stat(path, &st))
856 return 0;
857
858 return S_ISDIR(st.st_mode);
859}
860
861#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
4b9c0c59
TZ
862 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
863 lang_next) \
008f29d3
SB
864 if ((lang_dirent.d_type == DT_DIR || \
865 (lang_dirent.d_type == DT_UNKNOWN && \
866 is_directory(scripts_path, &lang_dirent))) && \
4b9c0c59
TZ
867 (strcmp(lang_dirent.d_name, ".")) && \
868 (strcmp(lang_dirent.d_name, "..")))
869
008f29d3 870#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
4b9c0c59
TZ
871 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
872 script_next) \
008f29d3
SB
873 if (script_dirent.d_type != DT_DIR && \
874 (script_dirent.d_type != DT_UNKNOWN || \
875 !is_directory(lang_path, &script_dirent)))
4b9c0c59
TZ
876
877
878#define RECORD_SUFFIX "-record"
879#define REPORT_SUFFIX "-report"
880
881struct script_desc {
882 struct list_head node;
883 char *name;
884 char *half_liner;
885 char *args;
886};
887
eccdfe2d 888static LIST_HEAD(script_descs);
4b9c0c59
TZ
889
890static struct script_desc *script_desc__new(const char *name)
891{
892 struct script_desc *s = zalloc(sizeof(*s));
893
b5b87312 894 if (s != NULL && name)
4b9c0c59
TZ
895 s->name = strdup(name);
896
897 return s;
898}
899
900static void script_desc__delete(struct script_desc *s)
901{
902 free(s->name);
e8719adf
TZ
903 free(s->half_liner);
904 free(s->args);
4b9c0c59
TZ
905 free(s);
906}
907
908static void script_desc__add(struct script_desc *s)
909{
910 list_add_tail(&s->node, &script_descs);
911}
912
913static struct script_desc *script_desc__find(const char *name)
914{
915 struct script_desc *s;
916
917 list_for_each_entry(s, &script_descs, node)
918 if (strcasecmp(s->name, name) == 0)
919 return s;
920 return NULL;
921}
922
923static struct script_desc *script_desc__findnew(const char *name)
924{
925 struct script_desc *s = script_desc__find(name);
926
927 if (s)
928 return s;
929
930 s = script_desc__new(name);
931 if (!s)
932 goto out_delete_desc;
933
934 script_desc__add(s);
935
936 return s;
937
938out_delete_desc:
939 script_desc__delete(s);
940
941 return NULL;
942}
943
965bb6be 944static const char *ends_with(const char *str, const char *suffix)
4b9c0c59
TZ
945{
946 size_t suffix_len = strlen(suffix);
965bb6be 947 const char *p = str;
4b9c0c59
TZ
948
949 if (strlen(str) > suffix_len) {
950 p = str + strlen(str) - suffix_len;
951 if (!strncmp(p, suffix, suffix_len))
952 return p;
953 }
954
955 return NULL;
956}
957
4b9c0c59
TZ
958static int read_script_info(struct script_desc *desc, const char *filename)
959{
960 char line[BUFSIZ], *p;
961 FILE *fp;
962
963 fp = fopen(filename, "r");
964 if (!fp)
965 return -1;
966
967 while (fgets(line, sizeof(line), fp)) {
968 p = ltrim(line);
969 if (strlen(p) == 0)
970 continue;
971 if (*p != '#')
972 continue;
973 p++;
974 if (strlen(p) && *p == '!')
975 continue;
976
977 p = ltrim(p);
978 if (strlen(p) && p[strlen(p) - 1] == '\n')
979 p[strlen(p) - 1] = '\0';
980
981 if (!strncmp(p, "description:", strlen("description:"))) {
982 p += strlen("description:");
983 desc->half_liner = strdup(ltrim(p));
984 continue;
985 }
986
987 if (!strncmp(p, "args:", strlen("args:"))) {
988 p += strlen("args:");
989 desc->args = strdup(ltrim(p));
990 continue;
991 }
992 }
993
994 fclose(fp);
995
996 return 0;
997}
998
38efb539
RR
999static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1000{
1001 char *script_root, *str;
1002
1003 script_root = strdup(script_dirent->d_name);
1004 if (!script_root)
1005 return NULL;
1006
1007 str = (char *)ends_with(script_root, suffix);
1008 if (!str) {
1009 free(script_root);
1010 return NULL;
1011 }
1012
1013 *str = '\0';
1014 return script_root;
1015}
1016
1d037ca1
IT
1017static int list_available_scripts(const struct option *opt __maybe_unused,
1018 const char *s __maybe_unused,
1019 int unset __maybe_unused)
4b9c0c59
TZ
1020{
1021 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1022 char scripts_path[MAXPATHLEN];
1023 DIR *scripts_dir, *lang_dir;
1024 char script_path[MAXPATHLEN];
1025 char lang_path[MAXPATHLEN];
1026 struct script_desc *desc;
1027 char first_half[BUFSIZ];
1028 char *script_root;
4b9c0c59
TZ
1029
1030 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1031
1032 scripts_dir = opendir(scripts_path);
1033 if (!scripts_dir)
1034 return -1;
1035
008f29d3 1036 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
4b9c0c59
TZ
1037 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1038 lang_dirent.d_name);
1039 lang_dir = opendir(lang_path);
1040 if (!lang_dir)
1041 continue;
1042
008f29d3 1043 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
38efb539
RR
1044 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1045 if (script_root) {
4b9c0c59
TZ
1046 desc = script_desc__findnew(script_root);
1047 snprintf(script_path, MAXPATHLEN, "%s/%s",
1048 lang_path, script_dirent.d_name);
1049 read_script_info(desc, script_path);
38efb539 1050 free(script_root);
4b9c0c59 1051 }
4b9c0c59
TZ
1052 }
1053 }
1054
1055 fprintf(stdout, "List of available trace scripts:\n");
1056 list_for_each_entry(desc, &script_descs, node) {
1057 sprintf(first_half, "%s %s", desc->name,
1058 desc->args ? desc->args : "");
1059 fprintf(stdout, " %-36s %s\n", first_half,
1060 desc->half_liner ? desc->half_liner : "");
1061 }
1062
1063 exit(0);
1064}
1065
49e639e2
FT
1066/*
1067 * Some scripts specify the required events in their "xxx-record" file,
1068 * this function will check if the events in perf.data match those
1069 * mentioned in the "xxx-record".
1070 *
1071 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1072 * which is covered well now. And new parsing code should be added to
1073 * cover the future complexing formats like event groups etc.
1074 */
1075static int check_ev_match(char *dir_name, char *scriptname,
1076 struct perf_session *session)
1077{
1078 char filename[MAXPATHLEN], evname[128];
1079 char line[BUFSIZ], *p;
1080 struct perf_evsel *pos;
1081 int match, len;
1082 FILE *fp;
1083
1084 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1085
1086 fp = fopen(filename, "r");
1087 if (!fp)
1088 return -1;
1089
1090 while (fgets(line, sizeof(line), fp)) {
1091 p = ltrim(line);
1092 if (*p == '#')
1093 continue;
1094
1095 while (strlen(p)) {
1096 p = strstr(p, "-e");
1097 if (!p)
1098 break;
1099
1100 p += 2;
1101 p = ltrim(p);
1102 len = strcspn(p, " \t");
1103 if (!len)
1104 break;
1105
1106 snprintf(evname, len + 1, "%s", p);
1107
1108 match = 0;
1109 list_for_each_entry(pos,
1110 &session->evlist->entries, node) {
1111 if (!strcmp(perf_evsel__name(pos), evname)) {
1112 match = 1;
1113 break;
1114 }
1115 }
1116
1117 if (!match) {
1118 fclose(fp);
1119 return -1;
1120 }
1121 }
1122 }
1123
1124 fclose(fp);
1125 return 0;
1126}
1127
e5f3705e
FT
1128/*
1129 * Return -1 if none is found, otherwise the actual scripts number.
1130 *
1131 * Currently the only user of this function is the script browser, which
1132 * will list all statically runnable scripts, select one, execute it and
1133 * show the output in a perf browser.
1134 */
1135int find_scripts(char **scripts_array, char **scripts_path_array)
1136{
1137 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
49e639e2 1138 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
e5f3705e 1139 DIR *scripts_dir, *lang_dir;
49e639e2 1140 struct perf_session *session;
f5fc1412
JO
1141 struct perf_data_file file = {
1142 .path = input_name,
1143 .mode = PERF_DATA_MODE_READ,
1144 };
e5f3705e
FT
1145 char *temp;
1146 int i = 0;
1147
f5fc1412 1148 session = perf_session__new(&file, false, NULL);
49e639e2
FT
1149 if (!session)
1150 return -1;
1151
e5f3705e
FT
1152 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1153
1154 scripts_dir = opendir(scripts_path);
49e639e2
FT
1155 if (!scripts_dir) {
1156 perf_session__delete(session);
e5f3705e 1157 return -1;
49e639e2 1158 }
e5f3705e
FT
1159
1160 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1161 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1162 lang_dirent.d_name);
1163#ifdef NO_LIBPERL
1164 if (strstr(lang_path, "perl"))
1165 continue;
1166#endif
1167#ifdef NO_LIBPYTHON
1168 if (strstr(lang_path, "python"))
1169 continue;
1170#endif
1171
1172 lang_dir = opendir(lang_path);
1173 if (!lang_dir)
1174 continue;
1175
1176 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1177 /* Skip those real time scripts: xxxtop.p[yl] */
1178 if (strstr(script_dirent.d_name, "top."))
1179 continue;
1180 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1181 script_dirent.d_name);
1182 temp = strchr(script_dirent.d_name, '.');
1183 snprintf(scripts_array[i],
1184 (temp - script_dirent.d_name) + 1,
1185 "%s", script_dirent.d_name);
49e639e2
FT
1186
1187 if (check_ev_match(lang_path,
1188 scripts_array[i], session))
1189 continue;
1190
e5f3705e
FT
1191 i++;
1192 }
49e639e2 1193 closedir(lang_dir);
e5f3705e
FT
1194 }
1195
49e639e2
FT
1196 closedir(scripts_dir);
1197 perf_session__delete(session);
e5f3705e
FT
1198 return i;
1199}
1200
3875294f
TZ
1201static char *get_script_path(const char *script_root, const char *suffix)
1202{
1203 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1204 char scripts_path[MAXPATHLEN];
1205 char script_path[MAXPATHLEN];
1206 DIR *scripts_dir, *lang_dir;
1207 char lang_path[MAXPATHLEN];
38efb539 1208 char *__script_root;
3875294f
TZ
1209
1210 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1211
1212 scripts_dir = opendir(scripts_path);
1213 if (!scripts_dir)
1214 return NULL;
1215
008f29d3 1216 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
3875294f
TZ
1217 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1218 lang_dirent.d_name);
1219 lang_dir = opendir(lang_path);
1220 if (!lang_dir)
1221 continue;
1222
008f29d3 1223 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
38efb539
RR
1224 __script_root = get_script_root(&script_dirent, suffix);
1225 if (__script_root && !strcmp(script_root, __script_root)) {
1226 free(__script_root);
946ef2a2
NK
1227 closedir(lang_dir);
1228 closedir(scripts_dir);
3875294f
TZ
1229 snprintf(script_path, MAXPATHLEN, "%s/%s",
1230 lang_path, script_dirent.d_name);
38efb539 1231 return strdup(script_path);
3875294f
TZ
1232 }
1233 free(__script_root);
1234 }
946ef2a2 1235 closedir(lang_dir);
3875294f 1236 }
946ef2a2 1237 closedir(scripts_dir);
3875294f 1238
38efb539 1239 return NULL;
3875294f
TZ
1240}
1241
b5b87312
TZ
1242static bool is_top_script(const char *script_path)
1243{
965bb6be 1244 return ends_with(script_path, "top") == NULL ? false : true;
b5b87312
TZ
1245}
1246
1247static int has_required_arg(char *script_path)
1248{
1249 struct script_desc *desc;
1250 int n_args = 0;
1251 char *p;
1252
1253 desc = script_desc__new(NULL);
1254
1255 if (read_script_info(desc, script_path))
1256 goto out;
1257
1258 if (!desc->args)
1259 goto out;
1260
1261 for (p = desc->args; *p; p++)
1262 if (*p == '<')
1263 n_args++;
1264out:
1265 script_desc__delete(desc);
1266
1267 return n_args;
1268}
1269
69b6470e
ACM
1270static int have_cmd(int argc, const char **argv)
1271{
1272 char **__argv = malloc(sizeof(const char *) * argc);
1273
1274 if (!__argv) {
1275 pr_err("malloc failed\n");
1276 return -1;
1277 }
1278
1279 memcpy(__argv, argv, sizeof(const char *) * argc);
1280 argc = parse_options(argc, (const char **)__argv, record_options,
1281 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1282 free(__argv);
5f9c39dc 1283
69b6470e
ACM
1284 system_wide = (argc == 0);
1285
1286 return 0;
1287}
1288
1289int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
1290{
1291 bool show_full_info = false;
69b6470e
ACM
1292 char *rec_script_path = NULL;
1293 char *rep_script_path = NULL;
1294 struct perf_session *session;
1295 char *script_path = NULL;
1296 const char **__argv;
1297 int i, j, err;
6f3e5eda
AH
1298 struct perf_script script = {
1299 .tool = {
1300 .sample = process_sample_event,
1301 .mmap = perf_event__process_mmap,
1302 .mmap2 = perf_event__process_mmap2,
1303 .comm = perf_event__process_comm,
1304 .exit = perf_event__process_exit,
1305 .fork = perf_event__process_fork,
7ea95727 1306 .attr = process_attr,
6f3e5eda
AH
1307 .tracing_data = perf_event__process_tracing_data,
1308 .build_id = perf_event__process_build_id,
1309 .ordered_samples = true,
1310 .ordering_requires_timestamps = true,
1311 },
1312 };
69b6470e 1313 const struct option options[] = {
5f9c39dc
FW
1314 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1315 "dump raw trace in ASCII"),
c0555642 1316 OPT_INCR('v', "verbose", &verbose,
69b6470e 1317 "be more verbose (show symbol address, etc)"),
4b9c0c59 1318 OPT_BOOLEAN('L', "Latency", &latency_format,
cda48461 1319 "show latency attributes (irqs/preemption disabled, etc)"),
4b9c0c59
TZ
1320 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1321 list_available_scripts),
956ffd02
TZ
1322 OPT_CALLBACK('s', "script", NULL, "name",
1323 "script file name (lang:script name, script name, or *)",
1324 parse_scriptname),
1325 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
133dc4c3 1326 "generate perf-script.xx script in specified language"),
69b6470e 1327 OPT_STRING('i', "input", &input_name, "file", "input file name"),
ffabd99e
FW
1328 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1329 "do various checks like samples ordering and lost events"),
c0230b2b
DA
1330 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1331 "file", "vmlinux pathname"),
1332 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1333 "file", "kallsyms pathname"),
1334 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1335 "When printing symbols do not display call chain"),
1336 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1337 "Look for files with symbols relative to this directory"),
745f43e3 1338 OPT_CALLBACK('f', "fields", NULL, "str",
a978f2ab
AN
1339 "comma separated output fields prepend with 'type:'. "
1340 "Valid types: hw,sw,trace,raw. "
1341 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
69b6470e 1342 "addr,symoff", parse_output_fields),
317df650 1343 OPT_BOOLEAN('a', "all-cpus", &system_wide,
69b6470e 1344 "system-wide collection from all CPUs"),
36385be5
FT
1345 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1346 "only consider these symbols"),
c8e66720 1347 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
e7984b7b
DA
1348 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1349 "only display events for these comms"),
fbe96f29
SE
1350 OPT_BOOLEAN('I', "show-info", &show_full_info,
1351 "display extended information from perf.data file"),
0bc8d205
AN
1352 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1353 "Show the path of [kernel.kallsyms]"),
1909629f 1354 OPT_END()
69b6470e
ACM
1355 };
1356 const char * const script_usage[] = {
1357 "perf script [<options>]",
1358 "perf script [<options>] record <script> [<record-options>] <command>",
1359 "perf script [<options>] report <script> [script-args]",
1360 "perf script [<options>] <script> [<record-options>] <command>",
1361 "perf script [<options>] <top-script> [script-args]",
1362 NULL
1363 };
f5fc1412
JO
1364 struct perf_data_file file = {
1365 .mode = PERF_DATA_MODE_READ,
1366 };
3875294f 1367
b5b87312
TZ
1368 setup_scripting();
1369
133dc4c3 1370 argc = parse_options(argc, argv, options, script_usage,
b5b87312
TZ
1371 PARSE_OPT_STOP_AT_NON_OPTION);
1372
f5fc1412
JO
1373 file.path = input_name;
1374
b5b87312
TZ
1375 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1376 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1377 if (!rec_script_path)
1378 return cmd_record(argc, argv, NULL);
3875294f
TZ
1379 }
1380
b5b87312
TZ
1381 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1382 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1383 if (!rep_script_path) {
3875294f 1384 fprintf(stderr,
b5b87312 1385 "Please specify a valid report script"
133dc4c3 1386 "(see 'perf script -l' for listing)\n");
3875294f
TZ
1387 return -1;
1388 }
3875294f
TZ
1389 }
1390
44e668c6
BH
1391 /* make sure PERF_EXEC_PATH is set for scripts */
1392 perf_set_argv_exec_path(perf_exec_path());
1393
b5b87312 1394 if (argc && !script_name && !rec_script_path && !rep_script_path) {
a0cccc2e 1395 int live_pipe[2];
b5b87312 1396 int rep_args;
a0cccc2e
TZ
1397 pid_t pid;
1398
b5b87312
TZ
1399 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1400 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1401
1402 if (!rec_script_path && !rep_script_path) {
1403 fprintf(stderr, " Couldn't find script %s\n\n See perf"
133dc4c3
IM
1404 " script -l for available scripts.\n", argv[0]);
1405 usage_with_options(script_usage, options);
a0cccc2e
TZ
1406 }
1407
b5b87312
TZ
1408 if (is_top_script(argv[0])) {
1409 rep_args = argc - 1;
1410 } else {
1411 int rec_args;
1412
1413 rep_args = has_required_arg(rep_script_path);
1414 rec_args = (argc - 1) - rep_args;
1415 if (rec_args < 0) {
1416 fprintf(stderr, " %s script requires options."
133dc4c3 1417 "\n\n See perf script -l for available "
b5b87312 1418 "scripts and options.\n", argv[0]);
133dc4c3 1419 usage_with_options(script_usage, options);
b5b87312 1420 }
a0cccc2e
TZ
1421 }
1422
1423 if (pipe(live_pipe) < 0) {
1424 perror("failed to create pipe");
d54b1a9e 1425 return -1;
a0cccc2e
TZ
1426 }
1427
1428 pid = fork();
1429 if (pid < 0) {
1430 perror("failed to fork");
d54b1a9e 1431 return -1;
a0cccc2e
TZ
1432 }
1433
1434 if (!pid) {
b5b87312
TZ
1435 j = 0;
1436
a0cccc2e
TZ
1437 dup2(live_pipe[1], 1);
1438 close(live_pipe[0]);
1439
317df650
RR
1440 if (is_top_script(argv[0])) {
1441 system_wide = true;
1442 } else if (!system_wide) {
d54b1a9e
DA
1443 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1444 err = -1;
1445 goto out;
1446 }
317df650 1447 }
b5b87312
TZ
1448
1449 __argv = malloc((argc + 6) * sizeof(const char *));
d54b1a9e
DA
1450 if (!__argv) {
1451 pr_err("malloc failed\n");
1452 err = -ENOMEM;
1453 goto out;
1454 }
e8719adf 1455
b5b87312
TZ
1456 __argv[j++] = "/bin/sh";
1457 __argv[j++] = rec_script_path;
1458 if (system_wide)
1459 __argv[j++] = "-a";
1460 __argv[j++] = "-q";
1461 __argv[j++] = "-o";
1462 __argv[j++] = "-";
1463 for (i = rep_args + 1; i < argc; i++)
1464 __argv[j++] = argv[i];
1465 __argv[j++] = NULL;
a0cccc2e
TZ
1466
1467 execvp("/bin/sh", (char **)__argv);
e8719adf 1468 free(__argv);
a0cccc2e
TZ
1469 exit(-1);
1470 }
1471
1472 dup2(live_pipe[0], 0);
1473 close(live_pipe[1]);
1474
b5b87312 1475 __argv = malloc((argc + 4) * sizeof(const char *));
d54b1a9e
DA
1476 if (!__argv) {
1477 pr_err("malloc failed\n");
1478 err = -ENOMEM;
1479 goto out;
1480 }
1481
b5b87312
TZ
1482 j = 0;
1483 __argv[j++] = "/bin/sh";
1484 __argv[j++] = rep_script_path;
1485 for (i = 1; i < rep_args + 1; i++)
1486 __argv[j++] = argv[i];
1487 __argv[j++] = "-i";
1488 __argv[j++] = "-";
1489 __argv[j++] = NULL;
a0cccc2e
TZ
1490
1491 execvp("/bin/sh", (char **)__argv);
e8719adf 1492 free(__argv);
a0cccc2e
TZ
1493 exit(-1);
1494 }
1495
b5b87312
TZ
1496 if (rec_script_path)
1497 script_path = rec_script_path;
1498 if (rep_script_path)
1499 script_path = rep_script_path;
34c86ea9 1500
b5b87312 1501 if (script_path) {
b5b87312 1502 j = 0;
3875294f 1503
317df650
RR
1504 if (!rec_script_path)
1505 system_wide = false;
d54b1a9e
DA
1506 else if (!system_wide) {
1507 if (have_cmd(argc - 1, &argv[1]) != 0) {
1508 err = -1;
1509 goto out;
1510 }
1511 }
34c86ea9 1512
b5b87312 1513 __argv = malloc((argc + 2) * sizeof(const char *));
d54b1a9e
DA
1514 if (!__argv) {
1515 pr_err("malloc failed\n");
1516 err = -ENOMEM;
1517 goto out;
1518 }
1519
34c86ea9
TZ
1520 __argv[j++] = "/bin/sh";
1521 __argv[j++] = script_path;
1522 if (system_wide)
1523 __argv[j++] = "-a";
b5b87312 1524 for (i = 2; i < argc; i++)
34c86ea9
TZ
1525 __argv[j++] = argv[i];
1526 __argv[j++] = NULL;
3875294f
TZ
1527
1528 execvp("/bin/sh", (char **)__argv);
e8719adf 1529 free(__argv);
3875294f
TZ
1530 exit(-1);
1531 }
956ffd02 1532
655000e7
ACM
1533 if (symbol__init() < 0)
1534 return -1;
cf4fee50
TZ
1535 if (!script_name)
1536 setup_pager();
5f9c39dc 1537
6f3e5eda 1538 session = perf_session__new(&file, false, &script.tool);
d8f66248
ACM
1539 if (session == NULL)
1540 return -ENOMEM;
1541
6f3e5eda
AH
1542 script.session = session;
1543
5d67be97
AB
1544 if (cpu_list) {
1545 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1546 return -1;
1547 }
1548
bdb71db2
TZ
1549 if (!script_name && !generate_script_lang)
1550 perf_session__fprintf_info(session, stdout, show_full_info);
fbe96f29 1551
1424dc96 1552 if (!no_callchain)
c0230b2b
DA
1553 symbol_conf.use_callchain = true;
1554 else
1555 symbol_conf.use_callchain = false;
1556
956ffd02
TZ
1557 if (generate_script_lang) {
1558 struct stat perf_stat;
745f43e3
DA
1559 int input;
1560
2c9e45f7 1561 if (output_set_by_user()) {
745f43e3
DA
1562 fprintf(stderr,
1563 "custom fields not supported for generated scripts");
1564 return -1;
1565 }
956ffd02 1566
cc9784bd 1567 input = open(file.path, O_RDONLY); /* input_name */
956ffd02
TZ
1568 if (input < 0) {
1569 perror("failed to open file");
d54b1a9e 1570 return -1;
956ffd02
TZ
1571 }
1572
1573 err = fstat(input, &perf_stat);
1574 if (err < 0) {
1575 perror("failed to stat file");
d54b1a9e 1576 return -1;
956ffd02
TZ
1577 }
1578
1579 if (!perf_stat.st_size) {
1580 fprintf(stderr, "zero-sized file, nothing to do!\n");
d54b1a9e 1581 return 0;
956ffd02
TZ
1582 }
1583
1584 scripting_ops = script_spec__lookup(generate_script_lang);
1585 if (!scripting_ops) {
1586 fprintf(stderr, "invalid language specifier");
1587 return -1;
1588 }
1589
da378962
ACM
1590 err = scripting_ops->generate_script(session->pevent,
1591 "perf-script");
956ffd02
TZ
1592 goto out;
1593 }
1594
1595 if (script_name) {
586bc5cc 1596 err = scripting_ops->start_script(script_name, argc, argv);
956ffd02
TZ
1597 if (err)
1598 goto out;
133dc4c3 1599 pr_debug("perf script started with script %s\n\n", script_name);
956ffd02
TZ
1600 }
1601
9cbdb702
DA
1602
1603 err = perf_session__check_output_opt(session);
1604 if (err < 0)
1605 goto out;
1606
6f3e5eda 1607 err = __cmd_script(&script);
956ffd02 1608
d8f66248 1609 perf_session__delete(session);
956ffd02
TZ
1610 cleanup_scripting();
1611out:
1612 return err;
5f9c39dc 1613}