4 #include "util/cache.h"
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"
10 #include "util/tool.h"
11 #include "util/symbol.h"
12 #include "util/thread.h"
13 #include "util/trace-event.h"
14 #include "util/util.h"
15 #include "util/evlist.h"
16 #include "util/evsel.h"
17 #include "util/sort.h"
18 #include <linux/bitmap.h>
20 static char const *script_name;
21 static char const *generate_script_lang;
22 static bool debug_mode;
23 static u64 last_timestamp;
24 static u64 nr_unordered;
25 extern const struct option record_options[];
26 static bool no_callchain;
27 static bool show_full_info;
28 static bool system_wide;
29 static const char *cpu_list;
30 static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
32 enum perf_output_field {
33 PERF_OUTPUT_COMM = 1U << 0,
34 PERF_OUTPUT_TID = 1U << 1,
35 PERF_OUTPUT_PID = 1U << 2,
36 PERF_OUTPUT_TIME = 1U << 3,
37 PERF_OUTPUT_CPU = 1U << 4,
38 PERF_OUTPUT_EVNAME = 1U << 5,
39 PERF_OUTPUT_TRACE = 1U << 6,
40 PERF_OUTPUT_IP = 1U << 7,
41 PERF_OUTPUT_SYM = 1U << 8,
42 PERF_OUTPUT_DSO = 1U << 9,
43 PERF_OUTPUT_ADDR = 1U << 10,
44 PERF_OUTPUT_SYMOFFSET = 1U << 11,
47 struct output_option {
49 enum perf_output_field field;
50 } all_output_options[] = {
51 {.str = "comm", .field = PERF_OUTPUT_COMM},
52 {.str = "tid", .field = PERF_OUTPUT_TID},
53 {.str = "pid", .field = PERF_OUTPUT_PID},
54 {.str = "time", .field = PERF_OUTPUT_TIME},
55 {.str = "cpu", .field = PERF_OUTPUT_CPU},
56 {.str = "event", .field = PERF_OUTPUT_EVNAME},
57 {.str = "trace", .field = PERF_OUTPUT_TRACE},
58 {.str = "ip", .field = PERF_OUTPUT_IP},
59 {.str = "sym", .field = PERF_OUTPUT_SYM},
60 {.str = "dso", .field = PERF_OUTPUT_DSO},
61 {.str = "addr", .field = PERF_OUTPUT_ADDR},
62 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
65 /* default set to maintain compatibility with current format */
71 } output[PERF_TYPE_MAX] = {
73 [PERF_TYPE_HARDWARE] = {
76 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
77 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
78 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
79 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
81 .invalid_fields = PERF_OUTPUT_TRACE,
84 [PERF_TYPE_SOFTWARE] = {
87 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
88 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
89 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
90 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
92 .invalid_fields = PERF_OUTPUT_TRACE,
95 [PERF_TYPE_TRACEPOINT] = {
98 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
99 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
100 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
106 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
107 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
108 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
109 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
111 .invalid_fields = PERF_OUTPUT_TRACE,
115 static bool output_set_by_user(void)
118 for (j = 0; j < PERF_TYPE_MAX; ++j) {
119 if (output[j].user_set)
125 static const char *output_field2str(enum perf_output_field field)
127 int i, imax = ARRAY_SIZE(all_output_options);
128 const char *str = "";
130 for (i = 0; i < imax; ++i) {
131 if (all_output_options[i].field == field) {
132 str = all_output_options[i].str;
139 #define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
141 static int perf_evsel__check_stype(struct perf_evsel *evsel,
142 u64 sample_type, const char *sample_msg,
143 enum perf_output_field field)
145 struct perf_event_attr *attr = &evsel->attr;
146 int type = attr->type;
149 if (attr->sample_type & sample_type)
152 if (output[type].user_set) {
153 evname = perf_evsel__name(evsel);
154 pr_err("Samples for '%s' event do not have %s attribute set. "
155 "Cannot print '%s' field.\n",
156 evname, sample_msg, output_field2str(field));
160 /* user did not ask for it explicitly so remove from the default list */
161 output[type].fields &= ~field;
162 evname = perf_evsel__name(evsel);
163 pr_debug("Samples for '%s' event do not have %s attribute set. "
164 "Skipping '%s' field.\n",
165 evname, sample_msg, output_field2str(field));
170 static int perf_evsel__check_attr(struct perf_evsel *evsel,
171 struct perf_session *session)
173 struct perf_event_attr *attr = &evsel->attr;
175 if (PRINT_FIELD(TRACE) &&
176 !perf_session__has_traces(session, "record -R"))
179 if (PRINT_FIELD(IP)) {
180 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
185 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
186 symbol_conf.use_callchain = false;
189 if (PRINT_FIELD(ADDR) &&
190 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
194 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
195 pr_err("Display of symbols requested but neither sample IP nor "
196 "sample address\nis selected. Hence, no addresses to convert "
200 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
201 pr_err("Display of offsets requested but symbol is not"
205 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
206 pr_err("Display of DSO requested but neither sample IP nor "
207 "sample address\nis selected. Hence, no addresses to convert "
212 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
213 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
214 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
217 if (PRINT_FIELD(TIME) &&
218 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
222 if (PRINT_FIELD(CPU) &&
223 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
231 * verify all user requested events exist and the samples
232 * have the expected data
234 static int perf_session__check_output_opt(struct perf_session *session)
237 struct perf_evsel *evsel;
239 for (j = 0; j < PERF_TYPE_MAX; ++j) {
240 evsel = perf_session__find_first_evtype(session, j);
243 * even if fields is set to 0 (ie., show nothing) event must
244 * exist if user explicitly includes it on the command line
246 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
247 pr_err("%s events do not exist. "
248 "Remove corresponding -f option to proceed.\n",
253 if (evsel && output[j].fields &&
254 perf_evsel__check_attr(evsel, session))
261 static void print_sample_start(struct perf_sample *sample,
262 struct thread *thread,
263 struct perf_evsel *evsel)
265 struct perf_event_attr *attr = &evsel->attr;
266 const char *evname = NULL;
269 unsigned long long nsecs;
271 if (PRINT_FIELD(COMM)) {
273 printf("%8.8s ", thread->comm);
274 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
275 printf("%s ", thread->comm);
277 printf("%16s ", thread->comm);
280 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
281 printf("%5d/%-5d ", sample->pid, sample->tid);
282 else if (PRINT_FIELD(PID))
283 printf("%5d ", sample->pid);
284 else if (PRINT_FIELD(TID))
285 printf("%5d ", sample->tid);
287 if (PRINT_FIELD(CPU)) {
289 printf("%3d ", sample->cpu);
291 printf("[%03d] ", sample->cpu);
294 if (PRINT_FIELD(TIME)) {
295 nsecs = sample->time;
296 secs = nsecs / NSECS_PER_SEC;
297 nsecs -= secs * NSECS_PER_SEC;
298 usecs = nsecs / NSECS_PER_USEC;
299 printf("%5lu.%06lu: ", secs, usecs);
302 if (PRINT_FIELD(EVNAME)) {
303 evname = perf_evsel__name(evsel);
304 printf("%s: ", evname ? evname : "[unknown]");
308 static bool is_bts_event(struct perf_event_attr *attr)
310 return ((attr->type == PERF_TYPE_HARDWARE) &&
311 (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
312 (attr->sample_period == 1));
315 static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
317 if ((attr->type == PERF_TYPE_SOFTWARE) &&
318 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
319 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
320 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
323 if (is_bts_event(attr))
329 static void print_sample_addr(union perf_event *event,
330 struct perf_sample *sample,
331 struct machine *machine,
332 struct thread *thread,
333 struct perf_event_attr *attr)
335 struct addr_location al;
336 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
338 printf("%16" PRIx64, sample->addr);
340 if (!sample_addr_correlates_sym(attr))
343 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
346 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
349 al.cpu = sample->cpu;
353 al.sym = map__find_symbol(al.map, al.addr, NULL);
355 if (PRINT_FIELD(SYM)) {
357 if (PRINT_FIELD(SYMOFFSET))
358 symbol__fprintf_symname_offs(al.sym, &al, stdout);
360 symbol__fprintf_symname(al.sym, stdout);
363 if (PRINT_FIELD(DSO)) {
365 map__fprintf_dsoname(al.map, stdout);
370 static void print_sample_bts(union perf_event *event,
371 struct perf_sample *sample,
372 struct perf_evsel *evsel,
373 struct machine *machine,
374 struct thread *thread)
376 struct perf_event_attr *attr = &evsel->attr;
378 /* print branch_from information */
379 if (PRINT_FIELD(IP)) {
380 if (!symbol_conf.use_callchain)
384 perf_evsel__print_ip(evsel, event, sample, machine,
385 PRINT_FIELD(SYM), PRINT_FIELD(DSO),
386 PRINT_FIELD(SYMOFFSET));
391 /* print branch_to information */
392 if (PRINT_FIELD(ADDR))
393 print_sample_addr(event, sample, machine, thread, attr);
398 static void process_event(union perf_event *event, struct perf_sample *sample,
399 struct perf_evsel *evsel, struct machine *machine,
400 struct addr_location *al)
402 struct perf_event_attr *attr = &evsel->attr;
403 struct thread *thread = al->thread;
405 if (output[attr->type].fields == 0)
408 print_sample_start(sample, thread, evsel);
410 if (is_bts_event(attr)) {
411 print_sample_bts(event, sample, evsel, machine, thread);
415 if (PRINT_FIELD(TRACE))
416 event_format__print(evsel->tp_format, sample->cpu,
417 sample->raw_data, sample->raw_size);
418 if (PRINT_FIELD(ADDR))
419 print_sample_addr(event, sample, machine, thread, attr);
421 if (PRINT_FIELD(IP)) {
422 if (!symbol_conf.use_callchain)
426 perf_evsel__print_ip(evsel, event, sample, machine,
427 PRINT_FIELD(SYM), PRINT_FIELD(DSO),
428 PRINT_FIELD(SYMOFFSET));
434 static int default_start_script(const char *script __maybe_unused,
435 int argc __maybe_unused,
436 const char **argv __maybe_unused)
441 static int default_stop_script(void)
446 static int default_generate_script(struct pevent *pevent __maybe_unused,
447 const char *outfile __maybe_unused)
452 static struct scripting_ops default_scripting_ops = {
453 .start_script = default_start_script,
454 .stop_script = default_stop_script,
455 .process_event = process_event,
456 .generate_script = default_generate_script,
459 static struct scripting_ops *scripting_ops;
461 static void setup_scripting(void)
463 setup_perl_scripting();
464 setup_python_scripting();
466 scripting_ops = &default_scripting_ops;
469 static int cleanup_scripting(void)
471 pr_debug("\nperf script stopped\n");
473 return scripting_ops->stop_script();
476 static const char *input_name;
478 static int process_sample_event(struct perf_tool *tool __maybe_unused,
479 union perf_event *event,
480 struct perf_sample *sample,
481 struct perf_evsel *evsel,
482 struct machine *machine)
484 struct addr_location al;
485 struct thread *thread = machine__findnew_thread(machine, event->ip.tid);
487 if (thread == NULL) {
488 pr_debug("problem processing %d event, skipping it.\n",
494 if (sample->time < last_timestamp) {
495 pr_err("Samples misordered, previous: %" PRIu64
496 " this: %" PRIu64 "\n", last_timestamp,
500 last_timestamp = sample->time;
504 if (perf_event__preprocess_sample(event, machine, &al, sample, 0) < 0) {
505 pr_err("problem processing %d event, skipping it.\n",
513 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
516 scripting_ops->process_event(event, sample, evsel, machine, &al);
518 evsel->hists.stats.total_period += sample->period;
522 static struct perf_tool perf_script = {
523 .sample = process_sample_event,
524 .mmap = perf_event__process_mmap,
525 .comm = perf_event__process_comm,
526 .exit = perf_event__process_task,
527 .fork = perf_event__process_task,
528 .attr = perf_event__process_attr,
529 .event_type = perf_event__process_event_type,
530 .tracing_data = perf_event__process_tracing_data,
531 .build_id = perf_event__process_build_id,
532 .ordered_samples = true,
533 .ordering_requires_timestamps = true,
536 extern volatile int session_done;
538 static void sig_handler(int sig __maybe_unused)
543 static int __cmd_script(struct perf_session *session)
547 signal(SIGINT, sig_handler);
549 ret = perf_session__process_events(session, &perf_script);
552 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
558 struct list_head node;
559 struct scripting_ops *ops;
563 static LIST_HEAD(script_specs);
565 static struct script_spec *script_spec__new(const char *spec,
566 struct scripting_ops *ops)
568 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
571 strcpy(s->spec, spec);
578 static void script_spec__add(struct script_spec *s)
580 list_add_tail(&s->node, &script_specs);
583 static struct script_spec *script_spec__find(const char *spec)
585 struct script_spec *s;
587 list_for_each_entry(s, &script_specs, node)
588 if (strcasecmp(s->spec, spec) == 0)
593 static struct script_spec *script_spec__findnew(const char *spec,
594 struct scripting_ops *ops)
596 struct script_spec *s = script_spec__find(spec);
601 s = script_spec__new(spec, ops);
610 int script_spec_register(const char *spec, struct scripting_ops *ops)
612 struct script_spec *s;
614 s = script_spec__find(spec);
618 s = script_spec__findnew(spec, ops);
625 static struct scripting_ops *script_spec__lookup(const char *spec)
627 struct script_spec *s = script_spec__find(spec);
634 static void list_available_languages(void)
636 struct script_spec *s;
638 fprintf(stderr, "\n");
639 fprintf(stderr, "Scripting language extensions (used in "
640 "perf script -s [spec:]script.[spec]):\n\n");
642 list_for_each_entry(s, &script_specs, node)
643 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
645 fprintf(stderr, "\n");
648 static int parse_scriptname(const struct option *opt __maybe_unused,
649 const char *str, int unset __maybe_unused)
652 const char *script, *ext;
655 if (strcmp(str, "lang") == 0) {
656 list_available_languages();
660 script = strchr(str, ':');
663 if (len >= PATH_MAX) {
664 fprintf(stderr, "invalid language specifier");
667 strncpy(spec, str, len);
669 scripting_ops = script_spec__lookup(spec);
670 if (!scripting_ops) {
671 fprintf(stderr, "invalid language specifier");
677 ext = strrchr(script, '.');
679 fprintf(stderr, "invalid script extension");
682 scripting_ops = script_spec__lookup(++ext);
683 if (!scripting_ops) {
684 fprintf(stderr, "invalid script extension");
689 script_name = strdup(script);
694 static int parse_output_fields(const struct option *opt __maybe_unused,
695 const char *arg, int unset __maybe_unused)
698 int i, imax = sizeof(all_output_options) / sizeof(struct output_option);
701 char *str = strdup(arg);
707 /* first word can state for which event type the user is specifying
708 * the fields. If no type exists, the specified fields apply to all
709 * event types found in the file minus the invalid fields for a type.
711 tok = strchr(str, ':');
715 if (!strcmp(str, "hw"))
716 type = PERF_TYPE_HARDWARE;
717 else if (!strcmp(str, "sw"))
718 type = PERF_TYPE_SOFTWARE;
719 else if (!strcmp(str, "trace"))
720 type = PERF_TYPE_TRACEPOINT;
721 else if (!strcmp(str, "raw"))
722 type = PERF_TYPE_RAW;
724 fprintf(stderr, "Invalid event type in field string.\n");
729 if (output[type].user_set)
730 pr_warning("Overriding previous field request for %s events.\n",
733 output[type].fields = 0;
734 output[type].user_set = true;
735 output[type].wildcard_set = false;
739 if (strlen(str) == 0) {
741 "Cannot set fields to 'none' for all event types.\n");
746 if (output_set_by_user())
747 pr_warning("Overriding previous field request for all events.\n");
749 for (j = 0; j < PERF_TYPE_MAX; ++j) {
750 output[j].fields = 0;
751 output[j].user_set = true;
752 output[j].wildcard_set = true;
756 tok = strtok(tok, ",");
758 for (i = 0; i < imax; ++i) {
759 if (strcmp(tok, all_output_options[i].str) == 0)
763 fprintf(stderr, "Invalid field requested.\n");
769 /* add user option to all events types for
772 for (j = 0; j < PERF_TYPE_MAX; ++j) {
773 if (output[j].invalid_fields & all_output_options[i].field) {
774 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
775 all_output_options[i].str, event_type(j));
777 output[j].fields |= all_output_options[i].field;
780 if (output[type].invalid_fields & all_output_options[i].field) {
781 fprintf(stderr, "\'%s\' not valid for %s events.\n",
782 all_output_options[i].str, event_type(type));
787 output[type].fields |= all_output_options[i].field;
790 tok = strtok(NULL, ",");
794 if (output[type].fields == 0) {
795 pr_debug("No fields requested for %s type. "
796 "Events will not be displayed.\n", event_type(type));
805 /* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
806 static int is_directory(const char *base_path, const struct dirent *dent)
811 sprintf(path, "%s/%s", base_path, dent->d_name);
815 return S_ISDIR(st.st_mode);
818 #define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
819 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
821 if ((lang_dirent.d_type == DT_DIR || \
822 (lang_dirent.d_type == DT_UNKNOWN && \
823 is_directory(scripts_path, &lang_dirent))) && \
824 (strcmp(lang_dirent.d_name, ".")) && \
825 (strcmp(lang_dirent.d_name, "..")))
827 #define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
828 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
830 if (script_dirent.d_type != DT_DIR && \
831 (script_dirent.d_type != DT_UNKNOWN || \
832 !is_directory(lang_path, &script_dirent)))
835 #define RECORD_SUFFIX "-record"
836 #define REPORT_SUFFIX "-report"
839 struct list_head node;
845 static LIST_HEAD(script_descs);
847 static struct script_desc *script_desc__new(const char *name)
849 struct script_desc *s = zalloc(sizeof(*s));
851 if (s != NULL && name)
852 s->name = strdup(name);
857 static void script_desc__delete(struct script_desc *s)
865 static void script_desc__add(struct script_desc *s)
867 list_add_tail(&s->node, &script_descs);
870 static struct script_desc *script_desc__find(const char *name)
872 struct script_desc *s;
874 list_for_each_entry(s, &script_descs, node)
875 if (strcasecmp(s->name, name) == 0)
880 static struct script_desc *script_desc__findnew(const char *name)
882 struct script_desc *s = script_desc__find(name);
887 s = script_desc__new(name);
889 goto out_delete_desc;
896 script_desc__delete(s);
901 static const char *ends_with(const char *str, const char *suffix)
903 size_t suffix_len = strlen(suffix);
906 if (strlen(str) > suffix_len) {
907 p = str + strlen(str) - suffix_len;
908 if (!strncmp(p, suffix, suffix_len))
915 static char *ltrim(char *str)
917 int len = strlen(str);
919 while (len && isspace(*str)) {
927 static int read_script_info(struct script_desc *desc, const char *filename)
929 char line[BUFSIZ], *p;
932 fp = fopen(filename, "r");
936 while (fgets(line, sizeof(line), fp)) {
943 if (strlen(p) && *p == '!')
947 if (strlen(p) && p[strlen(p) - 1] == '\n')
948 p[strlen(p) - 1] = '\0';
950 if (!strncmp(p, "description:", strlen("description:"))) {
951 p += strlen("description:");
952 desc->half_liner = strdup(ltrim(p));
956 if (!strncmp(p, "args:", strlen("args:"))) {
957 p += strlen("args:");
958 desc->args = strdup(ltrim(p));
968 static char *get_script_root(struct dirent *script_dirent, const char *suffix)
970 char *script_root, *str;
972 script_root = strdup(script_dirent->d_name);
976 str = (char *)ends_with(script_root, suffix);
986 static int list_available_scripts(const struct option *opt __maybe_unused,
987 const char *s __maybe_unused,
988 int unset __maybe_unused)
990 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
991 char scripts_path[MAXPATHLEN];
992 DIR *scripts_dir, *lang_dir;
993 char script_path[MAXPATHLEN];
994 char lang_path[MAXPATHLEN];
995 struct script_desc *desc;
996 char first_half[BUFSIZ];
999 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1001 scripts_dir = opendir(scripts_path);
1005 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1006 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1007 lang_dirent.d_name);
1008 lang_dir = opendir(lang_path);
1012 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1013 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1015 desc = script_desc__findnew(script_root);
1016 snprintf(script_path, MAXPATHLEN, "%s/%s",
1017 lang_path, script_dirent.d_name);
1018 read_script_info(desc, script_path);
1024 fprintf(stdout, "List of available trace scripts:\n");
1025 list_for_each_entry(desc, &script_descs, node) {
1026 sprintf(first_half, "%s %s", desc->name,
1027 desc->args ? desc->args : "");
1028 fprintf(stdout, " %-36s %s\n", first_half,
1029 desc->half_liner ? desc->half_liner : "");
1036 * Return -1 if none is found, otherwise the actual scripts number.
1038 * Currently the only user of this function is the script browser, which
1039 * will list all statically runnable scripts, select one, execute it and
1040 * show the output in a perf browser.
1042 int find_scripts(char **scripts_array, char **scripts_path_array)
1044 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1045 char scripts_path[MAXPATHLEN];
1046 DIR *scripts_dir, *lang_dir;
1047 char lang_path[MAXPATHLEN];
1051 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1053 scripts_dir = opendir(scripts_path);
1057 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1058 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1059 lang_dirent.d_name);
1061 if (strstr(lang_path, "perl"))
1065 if (strstr(lang_path, "python"))
1069 lang_dir = opendir(lang_path);
1073 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1074 /* Skip those real time scripts: xxxtop.p[yl] */
1075 if (strstr(script_dirent.d_name, "top."))
1077 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1078 script_dirent.d_name);
1079 temp = strchr(script_dirent.d_name, '.');
1080 snprintf(scripts_array[i],
1081 (temp - script_dirent.d_name) + 1,
1082 "%s", script_dirent.d_name);
1090 static char *get_script_path(const char *script_root, const char *suffix)
1092 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1093 char scripts_path[MAXPATHLEN];
1094 char script_path[MAXPATHLEN];
1095 DIR *scripts_dir, *lang_dir;
1096 char lang_path[MAXPATHLEN];
1097 char *__script_root;
1099 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1101 scripts_dir = opendir(scripts_path);
1105 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1106 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1107 lang_dirent.d_name);
1108 lang_dir = opendir(lang_path);
1112 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1113 __script_root = get_script_root(&script_dirent, suffix);
1114 if (__script_root && !strcmp(script_root, __script_root)) {
1115 free(__script_root);
1117 closedir(scripts_dir);
1118 snprintf(script_path, MAXPATHLEN, "%s/%s",
1119 lang_path, script_dirent.d_name);
1120 return strdup(script_path);
1122 free(__script_root);
1126 closedir(scripts_dir);
1131 static bool is_top_script(const char *script_path)
1133 return ends_with(script_path, "top") == NULL ? false : true;
1136 static int has_required_arg(char *script_path)
1138 struct script_desc *desc;
1142 desc = script_desc__new(NULL);
1144 if (read_script_info(desc, script_path))
1150 for (p = desc->args; *p; p++)
1154 script_desc__delete(desc);
1159 static const char * const script_usage[] = {
1160 "perf script [<options>]",
1161 "perf script [<options>] record <script> [<record-options>] <command>",
1162 "perf script [<options>] report <script> [script-args]",
1163 "perf script [<options>] <script> [<record-options>] <command>",
1164 "perf script [<options>] <top-script> [script-args]",
1168 static const struct option options[] = {
1169 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1170 "dump raw trace in ASCII"),
1171 OPT_INCR('v', "verbose", &verbose,
1172 "be more verbose (show symbol address, etc)"),
1173 OPT_BOOLEAN('L', "Latency", &latency_format,
1174 "show latency attributes (irqs/preemption disabled, etc)"),
1175 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1176 list_available_scripts),
1177 OPT_CALLBACK('s', "script", NULL, "name",
1178 "script file name (lang:script name, script name, or *)",
1180 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
1181 "generate perf-script.xx script in specified language"),
1182 OPT_STRING('i', "input", &input_name, "file",
1184 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1185 "do various checks like samples ordering and lost events"),
1186 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1187 "file", "vmlinux pathname"),
1188 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1189 "file", "kallsyms pathname"),
1190 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1191 "When printing symbols do not display call chain"),
1192 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1193 "Look for files with symbols relative to this directory"),
1194 OPT_CALLBACK('f', "fields", NULL, "str",
1195 "comma separated output fields prepend with 'type:'. "
1196 "Valid types: hw,sw,trace,raw. "
1197 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1199 parse_output_fields),
1200 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1201 "system-wide collection from all CPUs"),
1202 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1203 "only consider these symbols"),
1204 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
1205 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1206 "only display events for these comms"),
1207 OPT_BOOLEAN('I', "show-info", &show_full_info,
1208 "display extended information from perf.data file"),
1209 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1210 "Show the path of [kernel.kallsyms]"),
1215 static int have_cmd(int argc, const char **argv)
1217 char **__argv = malloc(sizeof(const char *) * argc);
1220 pr_err("malloc failed\n");
1224 memcpy(__argv, argv, sizeof(const char *) * argc);
1225 argc = parse_options(argc, (const char **)__argv, record_options,
1226 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1229 system_wide = (argc == 0);
1234 int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
1236 char *rec_script_path = NULL;
1237 char *rep_script_path = NULL;
1238 struct perf_session *session;
1239 char *script_path = NULL;
1240 const char **__argv;
1245 argc = parse_options(argc, argv, options, script_usage,
1246 PARSE_OPT_STOP_AT_NON_OPTION);
1248 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1249 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1250 if (!rec_script_path)
1251 return cmd_record(argc, argv, NULL);
1254 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1255 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1256 if (!rep_script_path) {
1258 "Please specify a valid report script"
1259 "(see 'perf script -l' for listing)\n");
1264 /* make sure PERF_EXEC_PATH is set for scripts */
1265 perf_set_argv_exec_path(perf_exec_path());
1267 if (argc && !script_name && !rec_script_path && !rep_script_path) {
1272 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1273 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1275 if (!rec_script_path && !rep_script_path) {
1276 fprintf(stderr, " Couldn't find script %s\n\n See perf"
1277 " script -l for available scripts.\n", argv[0]);
1278 usage_with_options(script_usage, options);
1281 if (is_top_script(argv[0])) {
1282 rep_args = argc - 1;
1286 rep_args = has_required_arg(rep_script_path);
1287 rec_args = (argc - 1) - rep_args;
1289 fprintf(stderr, " %s script requires options."
1290 "\n\n See perf script -l for available "
1291 "scripts and options.\n", argv[0]);
1292 usage_with_options(script_usage, options);
1296 if (pipe(live_pipe) < 0) {
1297 perror("failed to create pipe");
1303 perror("failed to fork");
1310 dup2(live_pipe[1], 1);
1311 close(live_pipe[0]);
1313 if (is_top_script(argv[0])) {
1315 } else if (!system_wide) {
1316 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1322 __argv = malloc((argc + 6) * sizeof(const char *));
1324 pr_err("malloc failed\n");
1329 __argv[j++] = "/bin/sh";
1330 __argv[j++] = rec_script_path;
1336 for (i = rep_args + 1; i < argc; i++)
1337 __argv[j++] = argv[i];
1340 execvp("/bin/sh", (char **)__argv);
1345 dup2(live_pipe[0], 0);
1346 close(live_pipe[1]);
1348 __argv = malloc((argc + 4) * sizeof(const char *));
1350 pr_err("malloc failed\n");
1356 __argv[j++] = "/bin/sh";
1357 __argv[j++] = rep_script_path;
1358 for (i = 1; i < rep_args + 1; i++)
1359 __argv[j++] = argv[i];
1364 execvp("/bin/sh", (char **)__argv);
1369 if (rec_script_path)
1370 script_path = rec_script_path;
1371 if (rep_script_path)
1372 script_path = rep_script_path;
1377 if (!rec_script_path)
1378 system_wide = false;
1379 else if (!system_wide) {
1380 if (have_cmd(argc - 1, &argv[1]) != 0) {
1386 __argv = malloc((argc + 2) * sizeof(const char *));
1388 pr_err("malloc failed\n");
1393 __argv[j++] = "/bin/sh";
1394 __argv[j++] = script_path;
1397 for (i = 2; i < argc; i++)
1398 __argv[j++] = argv[i];
1401 execvp("/bin/sh", (char **)__argv);
1406 if (symbol__init() < 0)
1411 session = perf_session__new(input_name, O_RDONLY, 0, false,
1413 if (session == NULL)
1417 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1421 perf_session__fprintf_info(session, stdout, show_full_info);
1424 symbol_conf.use_callchain = true;
1426 symbol_conf.use_callchain = false;
1428 if (generate_script_lang) {
1429 struct stat perf_stat;
1432 if (output_set_by_user()) {
1434 "custom fields not supported for generated scripts");
1438 input = open(session->filename, O_RDONLY); /* input_name */
1440 perror("failed to open file");
1444 err = fstat(input, &perf_stat);
1446 perror("failed to stat file");
1450 if (!perf_stat.st_size) {
1451 fprintf(stderr, "zero-sized file, nothing to do!\n");
1455 scripting_ops = script_spec__lookup(generate_script_lang);
1456 if (!scripting_ops) {
1457 fprintf(stderr, "invalid language specifier");
1461 err = scripting_ops->generate_script(session->pevent,
1467 err = scripting_ops->start_script(script_name, argc, argv);
1470 pr_debug("perf script started with script %s\n\n", script_name);
1474 err = perf_session__check_output_opt(session);
1478 err = __cmd_script(session);
1480 perf_session__delete(session);
1481 cleanup_scripting();