perf script: Make printing of dso a separate field option
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / builtin-script.c
bloba8bd00f2e5573ff267c6512a59418588c0254f30
1 #include "builtin.h"
3 #include "perf.h"
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/symbol.h"
11 #include "util/thread.h"
12 #include "util/trace-event.h"
13 #include "util/util.h"
14 #include "util/evlist.h"
15 #include "util/evsel.h"
17 static char const *script_name;
18 static char const *generate_script_lang;
19 static bool debug_mode;
20 static u64 last_timestamp;
21 static u64 nr_unordered;
22 extern const struct option record_options[];
23 static bool no_callchain;
25 enum perf_output_field {
26 PERF_OUTPUT_COMM = 1U << 0,
27 PERF_OUTPUT_TID = 1U << 1,
28 PERF_OUTPUT_PID = 1U << 2,
29 PERF_OUTPUT_TIME = 1U << 3,
30 PERF_OUTPUT_CPU = 1U << 4,
31 PERF_OUTPUT_EVNAME = 1U << 5,
32 PERF_OUTPUT_TRACE = 1U << 6,
33 PERF_OUTPUT_IP = 1U << 7,
34 PERF_OUTPUT_SYM = 1U << 8,
35 PERF_OUTPUT_DSO = 1U << 9,
38 struct output_option {
39 const char *str;
40 enum perf_output_field field;
41 } all_output_options[] = {
42 {.str = "comm", .field = PERF_OUTPUT_COMM},
43 {.str = "tid", .field = PERF_OUTPUT_TID},
44 {.str = "pid", .field = PERF_OUTPUT_PID},
45 {.str = "time", .field = PERF_OUTPUT_TIME},
46 {.str = "cpu", .field = PERF_OUTPUT_CPU},
47 {.str = "event", .field = PERF_OUTPUT_EVNAME},
48 {.str = "trace", .field = PERF_OUTPUT_TRACE},
49 {.str = "ip", .field = PERF_OUTPUT_IP},
50 {.str = "sym", .field = PERF_OUTPUT_SYM},
51 {.str = "dso", .field = PERF_OUTPUT_DSO},
54 /* default set to maintain compatibility with current format */
55 static struct {
56 bool user_set;
57 bool wildcard_set;
58 u64 fields;
59 u64 invalid_fields;
60 } output[PERF_TYPE_MAX] = {
62 [PERF_TYPE_HARDWARE] = {
63 .user_set = false,
65 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
66 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
67 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
68 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
70 .invalid_fields = PERF_OUTPUT_TRACE,
73 [PERF_TYPE_SOFTWARE] = {
74 .user_set = false,
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_TRACEPOINT] = {
85 .user_set = false,
87 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
88 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
89 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
92 [PERF_TYPE_RAW] = {
93 .user_set = false,
95 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
96 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
97 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
98 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
100 .invalid_fields = PERF_OUTPUT_TRACE,
104 static bool output_set_by_user(void)
106 int j;
107 for (j = 0; j < PERF_TYPE_MAX; ++j) {
108 if (output[j].user_set)
109 return true;
111 return false;
114 static const char *output_field2str(enum perf_output_field field)
116 int i, imax = ARRAY_SIZE(all_output_options);
117 const char *str = "";
119 for (i = 0; i < imax; ++i) {
120 if (all_output_options[i].field == field) {
121 str = all_output_options[i].str;
122 break;
125 return str;
128 #define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
130 static int perf_event_attr__check_stype(struct perf_event_attr *attr,
131 u64 sample_type, const char *sample_msg,
132 enum perf_output_field field)
134 int type = attr->type;
135 const char *evname;
137 if (attr->sample_type & sample_type)
138 return 0;
140 if (output[type].user_set) {
141 evname = __event_name(attr->type, attr->config);
142 pr_err("Samples for '%s' event do not have %s attribute set. "
143 "Cannot print '%s' field.\n",
144 evname, sample_msg, output_field2str(field));
145 return -1;
148 /* user did not ask for it explicitly so remove from the default list */
149 output[type].fields &= ~field;
150 evname = __event_name(attr->type, attr->config);
151 pr_debug("Samples for '%s' event do not have %s attribute set. "
152 "Skipping '%s' field.\n",
153 evname, sample_msg, output_field2str(field));
155 return 0;
158 static int perf_evsel__check_attr(struct perf_evsel *evsel,
159 struct perf_session *session)
161 struct perf_event_attr *attr = &evsel->attr;
163 if (PRINT_FIELD(TRACE) &&
164 !perf_session__has_traces(session, "record -R"))
165 return -EINVAL;
167 if (PRINT_FIELD(IP)) {
168 if (perf_event_attr__check_stype(attr, PERF_SAMPLE_IP, "IP",
169 PERF_OUTPUT_IP))
170 return -EINVAL;
172 if (!no_callchain &&
173 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
174 symbol_conf.use_callchain = false;
176 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP)) {
177 pr_err("Display of symbols requested but IP is not selected.\n"
178 "No addresses to convert to symbols.\n");
179 return -EINVAL;
181 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP)) {
182 pr_err("Display of DSO requested but IP is not selected.\n"
183 "No addresses to convert to dso.\n");
184 return -EINVAL;
187 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
188 perf_event_attr__check_stype(attr, PERF_SAMPLE_TID, "TID",
189 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
190 return -EINVAL;
192 if (PRINT_FIELD(TIME) &&
193 perf_event_attr__check_stype(attr, PERF_SAMPLE_TIME, "TIME",
194 PERF_OUTPUT_TIME))
195 return -EINVAL;
197 if (PRINT_FIELD(CPU) &&
198 perf_event_attr__check_stype(attr, PERF_SAMPLE_CPU, "CPU",
199 PERF_OUTPUT_CPU))
200 return -EINVAL;
202 return 0;
206 * verify all user requested events exist and the samples
207 * have the expected data
209 static int perf_session__check_output_opt(struct perf_session *session)
211 int j;
212 struct perf_evsel *evsel;
214 for (j = 0; j < PERF_TYPE_MAX; ++j) {
215 evsel = perf_session__find_first_evtype(session, j);
218 * even if fields is set to 0 (ie., show nothing) event must
219 * exist if user explicitly includes it on the command line
221 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
222 pr_err("%s events do not exist. "
223 "Remove corresponding -f option to proceed.\n",
224 event_type(j));
225 return -1;
228 if (evsel && output[j].fields &&
229 perf_evsel__check_attr(evsel, session))
230 return -1;
233 return 0;
236 static void print_sample_start(struct perf_sample *sample,
237 struct thread *thread,
238 struct perf_event_attr *attr)
240 int type;
241 struct event *event;
242 const char *evname = NULL;
243 unsigned long secs;
244 unsigned long usecs;
245 unsigned long long nsecs;
247 if (PRINT_FIELD(COMM)) {
248 if (latency_format)
249 printf("%8.8s ", thread->comm);
250 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
251 printf("%s ", thread->comm);
252 else
253 printf("%16s ", thread->comm);
256 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
257 printf("%5d/%-5d ", sample->pid, sample->tid);
258 else if (PRINT_FIELD(PID))
259 printf("%5d ", sample->pid);
260 else if (PRINT_FIELD(TID))
261 printf("%5d ", sample->tid);
263 if (PRINT_FIELD(CPU)) {
264 if (latency_format)
265 printf("%3d ", sample->cpu);
266 else
267 printf("[%03d] ", sample->cpu);
270 if (PRINT_FIELD(TIME)) {
271 nsecs = sample->time;
272 secs = nsecs / NSECS_PER_SEC;
273 nsecs -= secs * NSECS_PER_SEC;
274 usecs = nsecs / NSECS_PER_USEC;
275 printf("%5lu.%06lu: ", secs, usecs);
278 if (PRINT_FIELD(EVNAME)) {
279 if (attr->type == PERF_TYPE_TRACEPOINT) {
280 type = trace_parse_common_type(sample->raw_data);
281 event = trace_find_event(type);
282 if (event)
283 evname = event->name;
284 } else
285 evname = __event_name(attr->type, attr->config);
287 printf("%s: ", evname ? evname : "(unknown)");
291 static void process_event(union perf_event *event __unused,
292 struct perf_sample *sample,
293 struct perf_evsel *evsel,
294 struct perf_session *session,
295 struct thread *thread)
297 struct perf_event_attr *attr = &evsel->attr;
299 if (output[attr->type].fields == 0)
300 return;
302 print_sample_start(sample, thread, attr);
304 if (PRINT_FIELD(TRACE))
305 print_trace_event(sample->cpu, sample->raw_data,
306 sample->raw_size);
308 if (PRINT_FIELD(IP)) {
309 if (!symbol_conf.use_callchain)
310 printf(" ");
311 else
312 printf("\n");
313 perf_session__print_ip(event, sample, session,
314 PRINT_FIELD(SYM), PRINT_FIELD(DSO));
317 printf("\n");
320 static int default_start_script(const char *script __unused,
321 int argc __unused,
322 const char **argv __unused)
324 return 0;
327 static int default_stop_script(void)
329 return 0;
332 static int default_generate_script(const char *outfile __unused)
334 return 0;
337 static struct scripting_ops default_scripting_ops = {
338 .start_script = default_start_script,
339 .stop_script = default_stop_script,
340 .process_event = process_event,
341 .generate_script = default_generate_script,
344 static struct scripting_ops *scripting_ops;
346 static void setup_scripting(void)
348 setup_perl_scripting();
349 setup_python_scripting();
351 scripting_ops = &default_scripting_ops;
354 static int cleanup_scripting(void)
356 pr_debug("\nperf script stopped\n");
358 return scripting_ops->stop_script();
361 static char const *input_name = "perf.data";
363 static int process_sample_event(union perf_event *event,
364 struct perf_sample *sample,
365 struct perf_evsel *evsel,
366 struct perf_session *session)
368 struct thread *thread = perf_session__findnew(session, event->ip.pid);
370 if (thread == NULL) {
371 pr_debug("problem processing %d event, skipping it.\n",
372 event->header.type);
373 return -1;
376 if (debug_mode) {
377 if (sample->time < last_timestamp) {
378 pr_err("Samples misordered, previous: %" PRIu64
379 " this: %" PRIu64 "\n", last_timestamp,
380 sample->time);
381 nr_unordered++;
383 last_timestamp = sample->time;
384 return 0;
386 scripting_ops->process_event(event, sample, evsel, session, thread);
388 session->hists.stats.total_period += sample->period;
389 return 0;
392 static struct perf_event_ops event_ops = {
393 .sample = process_sample_event,
394 .mmap = perf_event__process_mmap,
395 .comm = perf_event__process_comm,
396 .exit = perf_event__process_task,
397 .fork = perf_event__process_task,
398 .attr = perf_event__process_attr,
399 .event_type = perf_event__process_event_type,
400 .tracing_data = perf_event__process_tracing_data,
401 .build_id = perf_event__process_build_id,
402 .ordered_samples = true,
403 .ordering_requires_timestamps = true,
406 extern volatile int session_done;
408 static void sig_handler(int sig __unused)
410 session_done = 1;
413 static int __cmd_script(struct perf_session *session)
415 int ret;
417 signal(SIGINT, sig_handler);
419 ret = perf_session__process_events(session, &event_ops);
421 if (debug_mode)
422 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
424 return ret;
427 struct script_spec {
428 struct list_head node;
429 struct scripting_ops *ops;
430 char spec[0];
433 static LIST_HEAD(script_specs);
435 static struct script_spec *script_spec__new(const char *spec,
436 struct scripting_ops *ops)
438 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
440 if (s != NULL) {
441 strcpy(s->spec, spec);
442 s->ops = ops;
445 return s;
448 static void script_spec__delete(struct script_spec *s)
450 free(s->spec);
451 free(s);
454 static void script_spec__add(struct script_spec *s)
456 list_add_tail(&s->node, &script_specs);
459 static struct script_spec *script_spec__find(const char *spec)
461 struct script_spec *s;
463 list_for_each_entry(s, &script_specs, node)
464 if (strcasecmp(s->spec, spec) == 0)
465 return s;
466 return NULL;
469 static struct script_spec *script_spec__findnew(const char *spec,
470 struct scripting_ops *ops)
472 struct script_spec *s = script_spec__find(spec);
474 if (s)
475 return s;
477 s = script_spec__new(spec, ops);
478 if (!s)
479 goto out_delete_spec;
481 script_spec__add(s);
483 return s;
485 out_delete_spec:
486 script_spec__delete(s);
488 return NULL;
491 int script_spec_register(const char *spec, struct scripting_ops *ops)
493 struct script_spec *s;
495 s = script_spec__find(spec);
496 if (s)
497 return -1;
499 s = script_spec__findnew(spec, ops);
500 if (!s)
501 return -1;
503 return 0;
506 static struct scripting_ops *script_spec__lookup(const char *spec)
508 struct script_spec *s = script_spec__find(spec);
509 if (!s)
510 return NULL;
512 return s->ops;
515 static void list_available_languages(void)
517 struct script_spec *s;
519 fprintf(stderr, "\n");
520 fprintf(stderr, "Scripting language extensions (used in "
521 "perf script -s [spec:]script.[spec]):\n\n");
523 list_for_each_entry(s, &script_specs, node)
524 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
526 fprintf(stderr, "\n");
529 static int parse_scriptname(const struct option *opt __used,
530 const char *str, int unset __used)
532 char spec[PATH_MAX];
533 const char *script, *ext;
534 int len;
536 if (strcmp(str, "lang") == 0) {
537 list_available_languages();
538 exit(0);
541 script = strchr(str, ':');
542 if (script) {
543 len = script - str;
544 if (len >= PATH_MAX) {
545 fprintf(stderr, "invalid language specifier");
546 return -1;
548 strncpy(spec, str, len);
549 spec[len] = '\0';
550 scripting_ops = script_spec__lookup(spec);
551 if (!scripting_ops) {
552 fprintf(stderr, "invalid language specifier");
553 return -1;
555 script++;
556 } else {
557 script = str;
558 ext = strrchr(script, '.');
559 if (!ext) {
560 fprintf(stderr, "invalid script extension");
561 return -1;
563 scripting_ops = script_spec__lookup(++ext);
564 if (!scripting_ops) {
565 fprintf(stderr, "invalid script extension");
566 return -1;
570 script_name = strdup(script);
572 return 0;
575 static int parse_output_fields(const struct option *opt __used,
576 const char *arg, int unset __used)
578 char *tok;
579 int i, imax = sizeof(all_output_options) / sizeof(struct output_option);
580 int j;
581 int rc = 0;
582 char *str = strdup(arg);
583 int type = -1;
585 if (!str)
586 return -ENOMEM;
588 /* first word can state for which event type the user is specifying
589 * the fields. If no type exists, the specified fields apply to all
590 * event types found in the file minus the invalid fields for a type.
592 tok = strchr(str, ':');
593 if (tok) {
594 *tok = '\0';
595 tok++;
596 if (!strcmp(str, "hw"))
597 type = PERF_TYPE_HARDWARE;
598 else if (!strcmp(str, "sw"))
599 type = PERF_TYPE_SOFTWARE;
600 else if (!strcmp(str, "trace"))
601 type = PERF_TYPE_TRACEPOINT;
602 else if (!strcmp(str, "raw"))
603 type = PERF_TYPE_RAW;
604 else {
605 fprintf(stderr, "Invalid event type in field string.\n");
606 return -EINVAL;
609 if (output[type].user_set)
610 pr_warning("Overriding previous field request for %s events.\n",
611 event_type(type));
613 output[type].fields = 0;
614 output[type].user_set = true;
615 output[type].wildcard_set = false;
617 } else {
618 tok = str;
619 if (strlen(str) == 0) {
620 fprintf(stderr,
621 "Cannot set fields to 'none' for all event types.\n");
622 rc = -EINVAL;
623 goto out;
626 if (output_set_by_user())
627 pr_warning("Overriding previous field request for all events.\n");
629 for (j = 0; j < PERF_TYPE_MAX; ++j) {
630 output[j].fields = 0;
631 output[j].user_set = true;
632 output[j].wildcard_set = true;
636 tok = strtok(tok, ",");
637 while (tok) {
638 for (i = 0; i < imax; ++i) {
639 if (strcmp(tok, all_output_options[i].str) == 0)
640 break;
642 if (i == imax) {
643 fprintf(stderr, "Invalid field requested.\n");
644 rc = -EINVAL;
645 goto out;
648 if (type == -1) {
649 /* add user option to all events types for
650 * which it is valid
652 for (j = 0; j < PERF_TYPE_MAX; ++j) {
653 if (output[j].invalid_fields & all_output_options[i].field) {
654 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
655 all_output_options[i].str, event_type(j));
656 } else
657 output[j].fields |= all_output_options[i].field;
659 } else {
660 if (output[type].invalid_fields & all_output_options[i].field) {
661 fprintf(stderr, "\'%s\' not valid for %s events.\n",
662 all_output_options[i].str, event_type(type));
664 rc = -EINVAL;
665 goto out;
667 output[type].fields |= all_output_options[i].field;
670 tok = strtok(NULL, ",");
673 if (type >= 0) {
674 if (output[type].fields == 0) {
675 pr_debug("No fields requested for %s type. "
676 "Events will not be displayed.\n", event_type(type));
680 out:
681 free(str);
682 return rc;
685 /* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
686 static int is_directory(const char *base_path, const struct dirent *dent)
688 char path[PATH_MAX];
689 struct stat st;
691 sprintf(path, "%s/%s", base_path, dent->d_name);
692 if (stat(path, &st))
693 return 0;
695 return S_ISDIR(st.st_mode);
698 #define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
699 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
700 lang_next) \
701 if ((lang_dirent.d_type == DT_DIR || \
702 (lang_dirent.d_type == DT_UNKNOWN && \
703 is_directory(scripts_path, &lang_dirent))) && \
704 (strcmp(lang_dirent.d_name, ".")) && \
705 (strcmp(lang_dirent.d_name, "..")))
707 #define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
708 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
709 script_next) \
710 if (script_dirent.d_type != DT_DIR && \
711 (script_dirent.d_type != DT_UNKNOWN || \
712 !is_directory(lang_path, &script_dirent)))
715 #define RECORD_SUFFIX "-record"
716 #define REPORT_SUFFIX "-report"
718 struct script_desc {
719 struct list_head node;
720 char *name;
721 char *half_liner;
722 char *args;
725 static LIST_HEAD(script_descs);
727 static struct script_desc *script_desc__new(const char *name)
729 struct script_desc *s = zalloc(sizeof(*s));
731 if (s != NULL && name)
732 s->name = strdup(name);
734 return s;
737 static void script_desc__delete(struct script_desc *s)
739 free(s->name);
740 free(s->half_liner);
741 free(s->args);
742 free(s);
745 static void script_desc__add(struct script_desc *s)
747 list_add_tail(&s->node, &script_descs);
750 static struct script_desc *script_desc__find(const char *name)
752 struct script_desc *s;
754 list_for_each_entry(s, &script_descs, node)
755 if (strcasecmp(s->name, name) == 0)
756 return s;
757 return NULL;
760 static struct script_desc *script_desc__findnew(const char *name)
762 struct script_desc *s = script_desc__find(name);
764 if (s)
765 return s;
767 s = script_desc__new(name);
768 if (!s)
769 goto out_delete_desc;
771 script_desc__add(s);
773 return s;
775 out_delete_desc:
776 script_desc__delete(s);
778 return NULL;
781 static const char *ends_with(const char *str, const char *suffix)
783 size_t suffix_len = strlen(suffix);
784 const char *p = str;
786 if (strlen(str) > suffix_len) {
787 p = str + strlen(str) - suffix_len;
788 if (!strncmp(p, suffix, suffix_len))
789 return p;
792 return NULL;
795 static char *ltrim(char *str)
797 int len = strlen(str);
799 while (len && isspace(*str)) {
800 len--;
801 str++;
804 return str;
807 static int read_script_info(struct script_desc *desc, const char *filename)
809 char line[BUFSIZ], *p;
810 FILE *fp;
812 fp = fopen(filename, "r");
813 if (!fp)
814 return -1;
816 while (fgets(line, sizeof(line), fp)) {
817 p = ltrim(line);
818 if (strlen(p) == 0)
819 continue;
820 if (*p != '#')
821 continue;
822 p++;
823 if (strlen(p) && *p == '!')
824 continue;
826 p = ltrim(p);
827 if (strlen(p) && p[strlen(p) - 1] == '\n')
828 p[strlen(p) - 1] = '\0';
830 if (!strncmp(p, "description:", strlen("description:"))) {
831 p += strlen("description:");
832 desc->half_liner = strdup(ltrim(p));
833 continue;
836 if (!strncmp(p, "args:", strlen("args:"))) {
837 p += strlen("args:");
838 desc->args = strdup(ltrim(p));
839 continue;
843 fclose(fp);
845 return 0;
848 static int list_available_scripts(const struct option *opt __used,
849 const char *s __used, int unset __used)
851 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
852 char scripts_path[MAXPATHLEN];
853 DIR *scripts_dir, *lang_dir;
854 char script_path[MAXPATHLEN];
855 char lang_path[MAXPATHLEN];
856 struct script_desc *desc;
857 char first_half[BUFSIZ];
858 char *script_root;
859 char *str;
861 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
863 scripts_dir = opendir(scripts_path);
864 if (!scripts_dir)
865 return -1;
867 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
868 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
869 lang_dirent.d_name);
870 lang_dir = opendir(lang_path);
871 if (!lang_dir)
872 continue;
874 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
875 script_root = strdup(script_dirent.d_name);
876 str = (char *)ends_with(script_root, REPORT_SUFFIX);
877 if (str) {
878 *str = '\0';
879 desc = script_desc__findnew(script_root);
880 snprintf(script_path, MAXPATHLEN, "%s/%s",
881 lang_path, script_dirent.d_name);
882 read_script_info(desc, script_path);
884 free(script_root);
888 fprintf(stdout, "List of available trace scripts:\n");
889 list_for_each_entry(desc, &script_descs, node) {
890 sprintf(first_half, "%s %s", desc->name,
891 desc->args ? desc->args : "");
892 fprintf(stdout, " %-36s %s\n", first_half,
893 desc->half_liner ? desc->half_liner : "");
896 exit(0);
899 static char *get_script_path(const char *script_root, const char *suffix)
901 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
902 char scripts_path[MAXPATHLEN];
903 char script_path[MAXPATHLEN];
904 DIR *scripts_dir, *lang_dir;
905 char lang_path[MAXPATHLEN];
906 char *str, *__script_root;
907 char *path = NULL;
909 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
911 scripts_dir = opendir(scripts_path);
912 if (!scripts_dir)
913 return NULL;
915 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
916 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
917 lang_dirent.d_name);
918 lang_dir = opendir(lang_path);
919 if (!lang_dir)
920 continue;
922 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
923 __script_root = strdup(script_dirent.d_name);
924 str = (char *)ends_with(__script_root, suffix);
925 if (str) {
926 *str = '\0';
927 if (strcmp(__script_root, script_root))
928 continue;
929 snprintf(script_path, MAXPATHLEN, "%s/%s",
930 lang_path, script_dirent.d_name);
931 path = strdup(script_path);
932 free(__script_root);
933 break;
935 free(__script_root);
939 return path;
942 static bool is_top_script(const char *script_path)
944 return ends_with(script_path, "top") == NULL ? false : true;
947 static int has_required_arg(char *script_path)
949 struct script_desc *desc;
950 int n_args = 0;
951 char *p;
953 desc = script_desc__new(NULL);
955 if (read_script_info(desc, script_path))
956 goto out;
958 if (!desc->args)
959 goto out;
961 for (p = desc->args; *p; p++)
962 if (*p == '<')
963 n_args++;
964 out:
965 script_desc__delete(desc);
967 return n_args;
970 static const char * const script_usage[] = {
971 "perf script [<options>]",
972 "perf script [<options>] record <script> [<record-options>] <command>",
973 "perf script [<options>] report <script> [script-args]",
974 "perf script [<options>] <script> [<record-options>] <command>",
975 "perf script [<options>] <top-script> [script-args]",
976 NULL
979 static const struct option options[] = {
980 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
981 "dump raw trace in ASCII"),
982 OPT_INCR('v', "verbose", &verbose,
983 "be more verbose (show symbol address, etc)"),
984 OPT_BOOLEAN('L', "Latency", &latency_format,
985 "show latency attributes (irqs/preemption disabled, etc)"),
986 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
987 list_available_scripts),
988 OPT_CALLBACK('s', "script", NULL, "name",
989 "script file name (lang:script name, script name, or *)",
990 parse_scriptname),
991 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
992 "generate perf-script.xx script in specified language"),
993 OPT_STRING('i', "input", &input_name, "file",
994 "input file name"),
995 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
996 "do various checks like samples ordering and lost events"),
997 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
998 "file", "vmlinux pathname"),
999 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1000 "file", "kallsyms pathname"),
1001 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1002 "When printing symbols do not display call chain"),
1003 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1004 "Look for files with symbols relative to this directory"),
1005 OPT_CALLBACK('f', "fields", NULL, "str",
1006 "comma separated output fields prepend with 'type:'. Valid types: hw,sw,trace,raw. Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso",
1007 parse_output_fields),
1009 OPT_END()
1012 static bool have_cmd(int argc, const char **argv)
1014 char **__argv = malloc(sizeof(const char *) * argc);
1016 if (!__argv)
1017 die("malloc");
1018 memcpy(__argv, argv, sizeof(const char *) * argc);
1019 argc = parse_options(argc, (const char **)__argv, record_options,
1020 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1021 free(__argv);
1023 return argc != 0;
1026 int cmd_script(int argc, const char **argv, const char *prefix __used)
1028 char *rec_script_path = NULL;
1029 char *rep_script_path = NULL;
1030 struct perf_session *session;
1031 char *script_path = NULL;
1032 const char **__argv;
1033 bool system_wide;
1034 int i, j, err;
1036 setup_scripting();
1038 argc = parse_options(argc, argv, options, script_usage,
1039 PARSE_OPT_STOP_AT_NON_OPTION);
1041 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1042 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1043 if (!rec_script_path)
1044 return cmd_record(argc, argv, NULL);
1047 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1048 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1049 if (!rep_script_path) {
1050 fprintf(stderr,
1051 "Please specify a valid report script"
1052 "(see 'perf script -l' for listing)\n");
1053 return -1;
1057 /* make sure PERF_EXEC_PATH is set for scripts */
1058 perf_set_argv_exec_path(perf_exec_path());
1060 if (argc && !script_name && !rec_script_path && !rep_script_path) {
1061 int live_pipe[2];
1062 int rep_args;
1063 pid_t pid;
1065 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1066 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1068 if (!rec_script_path && !rep_script_path) {
1069 fprintf(stderr, " Couldn't find script %s\n\n See perf"
1070 " script -l for available scripts.\n", argv[0]);
1071 usage_with_options(script_usage, options);
1074 if (is_top_script(argv[0])) {
1075 rep_args = argc - 1;
1076 } else {
1077 int rec_args;
1079 rep_args = has_required_arg(rep_script_path);
1080 rec_args = (argc - 1) - rep_args;
1081 if (rec_args < 0) {
1082 fprintf(stderr, " %s script requires options."
1083 "\n\n See perf script -l for available "
1084 "scripts and options.\n", argv[0]);
1085 usage_with_options(script_usage, options);
1089 if (pipe(live_pipe) < 0) {
1090 perror("failed to create pipe");
1091 exit(-1);
1094 pid = fork();
1095 if (pid < 0) {
1096 perror("failed to fork");
1097 exit(-1);
1100 if (!pid) {
1101 system_wide = true;
1102 j = 0;
1104 dup2(live_pipe[1], 1);
1105 close(live_pipe[0]);
1107 if (!is_top_script(argv[0]))
1108 system_wide = !have_cmd(argc - rep_args,
1109 &argv[rep_args]);
1111 __argv = malloc((argc + 6) * sizeof(const char *));
1112 if (!__argv)
1113 die("malloc");
1115 __argv[j++] = "/bin/sh";
1116 __argv[j++] = rec_script_path;
1117 if (system_wide)
1118 __argv[j++] = "-a";
1119 __argv[j++] = "-q";
1120 __argv[j++] = "-o";
1121 __argv[j++] = "-";
1122 for (i = rep_args + 1; i < argc; i++)
1123 __argv[j++] = argv[i];
1124 __argv[j++] = NULL;
1126 execvp("/bin/sh", (char **)__argv);
1127 free(__argv);
1128 exit(-1);
1131 dup2(live_pipe[0], 0);
1132 close(live_pipe[1]);
1134 __argv = malloc((argc + 4) * sizeof(const char *));
1135 if (!__argv)
1136 die("malloc");
1137 j = 0;
1138 __argv[j++] = "/bin/sh";
1139 __argv[j++] = rep_script_path;
1140 for (i = 1; i < rep_args + 1; i++)
1141 __argv[j++] = argv[i];
1142 __argv[j++] = "-i";
1143 __argv[j++] = "-";
1144 __argv[j++] = NULL;
1146 execvp("/bin/sh", (char **)__argv);
1147 free(__argv);
1148 exit(-1);
1151 if (rec_script_path)
1152 script_path = rec_script_path;
1153 if (rep_script_path)
1154 script_path = rep_script_path;
1156 if (script_path) {
1157 system_wide = false;
1158 j = 0;
1160 if (rec_script_path)
1161 system_wide = !have_cmd(argc - 1, &argv[1]);
1163 __argv = malloc((argc + 2) * sizeof(const char *));
1164 if (!__argv)
1165 die("malloc");
1166 __argv[j++] = "/bin/sh";
1167 __argv[j++] = script_path;
1168 if (system_wide)
1169 __argv[j++] = "-a";
1170 for (i = 2; i < argc; i++)
1171 __argv[j++] = argv[i];
1172 __argv[j++] = NULL;
1174 execvp("/bin/sh", (char **)__argv);
1175 free(__argv);
1176 exit(-1);
1179 if (symbol__init() < 0)
1180 return -1;
1181 if (!script_name)
1182 setup_pager();
1184 session = perf_session__new(input_name, O_RDONLY, 0, false, &event_ops);
1185 if (session == NULL)
1186 return -ENOMEM;
1188 if (!no_callchain)
1189 symbol_conf.use_callchain = true;
1190 else
1191 symbol_conf.use_callchain = false;
1193 if (generate_script_lang) {
1194 struct stat perf_stat;
1195 int input;
1197 if (output_set_by_user()) {
1198 fprintf(stderr,
1199 "custom fields not supported for generated scripts");
1200 return -1;
1203 input = open(input_name, O_RDONLY);
1204 if (input < 0) {
1205 perror("failed to open file");
1206 exit(-1);
1209 err = fstat(input, &perf_stat);
1210 if (err < 0) {
1211 perror("failed to stat file");
1212 exit(-1);
1215 if (!perf_stat.st_size) {
1216 fprintf(stderr, "zero-sized file, nothing to do!\n");
1217 exit(0);
1220 scripting_ops = script_spec__lookup(generate_script_lang);
1221 if (!scripting_ops) {
1222 fprintf(stderr, "invalid language specifier");
1223 return -1;
1226 err = scripting_ops->generate_script("perf-script");
1227 goto out;
1230 if (script_name) {
1231 err = scripting_ops->start_script(script_name, argc, argv);
1232 if (err)
1233 goto out;
1234 pr_debug("perf script started with script %s\n\n", script_name);
1238 err = perf_session__check_output_opt(session);
1239 if (err < 0)
1240 goto out;
1242 err = __cmd_script(session);
1244 perf_session__delete(session);
1245 cleanup_scripting();
1246 out:
1247 return err;