4 #include "util/cache.h"
5 #include "util/symbol.h"
6 #include "util/thread.h"
7 #include "util/header.h"
8 #include "util/exec_cmd.h"
9 #include "util/trace-event.h"
10 #include "util/session.h"
12 static char const *script_name
;
13 static char const *generate_script_lang
;
15 static int default_start_script(const char *script __unused
,
17 const char **argv __unused
)
22 static int default_stop_script(void)
27 static int default_generate_script(const char *outfile __unused
)
32 static struct scripting_ops default_scripting_ops
= {
33 .start_script
= default_start_script
,
34 .stop_script
= default_stop_script
,
35 .process_event
= print_event
,
36 .generate_script
= default_generate_script
,
39 static struct scripting_ops
*scripting_ops
;
41 static void setup_scripting(void)
43 /* make sure PERF_EXEC_PATH is set for scripts */
44 perf_set_argv_exec_path(perf_exec_path());
46 setup_perl_scripting();
48 scripting_ops
= &default_scripting_ops
;
51 static int cleanup_scripting(void)
53 return scripting_ops
->stop_script();
56 #include "util/parse-options.h"
59 #include "util/debug.h"
61 #include "util/trace-event.h"
62 #include "util/exec_cmd.h"
64 static char const *input_name
= "perf.data";
66 static int process_sample_event(event_t
*event
, struct perf_session
*session
)
68 struct sample_data data
;
69 struct thread
*thread
;
71 memset(&data
, 0, sizeof(data
));
76 event__parse_sample(event
, session
->sample_type
, &data
);
78 dump_printf("(IP, %d): %d/%d: %p period: %Ld\n",
81 (void *)(long)data
.ip
,
82 (long long)data
.period
);
84 thread
= perf_session__findnew(session
, event
->ip
.pid
);
86 pr_debug("problem processing %d event, skipping it.\n",
91 if (session
->sample_type
& PERF_SAMPLE_RAW
) {
93 * FIXME: better resolve from pid from the struct trace_entry
94 * field, although it should be the same than this perf
97 scripting_ops
->process_event(data
.cpu
, data
.raw_data
,
99 data
.time
, thread
->comm
);
102 session
->events_stats
.total
+= data
.period
;
106 static int sample_type_check(struct perf_session
*session
)
108 if (!(session
->sample_type
& PERF_SAMPLE_RAW
)) {
110 "No trace sample to read. Did you call perf record "
118 static struct perf_event_ops event_ops
= {
119 .process_sample_event
= process_sample_event
,
120 .process_comm_event
= event__process_comm
,
121 .sample_type_check
= sample_type_check
,
124 static int __cmd_trace(struct perf_session
*session
)
126 return perf_session__process_events(session
, &event_ops
);
130 struct list_head node
;
131 struct scripting_ops
*ops
;
135 LIST_HEAD(script_specs
);
137 static struct script_spec
*script_spec__new(const char *spec
,
138 struct scripting_ops
*ops
)
140 struct script_spec
*s
= malloc(sizeof(*s
) + strlen(spec
) + 1);
143 strcpy(s
->spec
, spec
);
150 static void script_spec__delete(struct script_spec
*s
)
156 static void script_spec__add(struct script_spec
*s
)
158 list_add_tail(&s
->node
, &script_specs
);
161 static struct script_spec
*script_spec__find(const char *spec
)
163 struct script_spec
*s
;
165 list_for_each_entry(s
, &script_specs
, node
)
166 if (strcasecmp(s
->spec
, spec
) == 0)
171 static struct script_spec
*script_spec__findnew(const char *spec
,
172 struct scripting_ops
*ops
)
174 struct script_spec
*s
= script_spec__find(spec
);
179 s
= script_spec__new(spec
, ops
);
181 goto out_delete_spec
;
188 script_spec__delete(s
);
193 int script_spec_register(const char *spec
, struct scripting_ops
*ops
)
195 struct script_spec
*s
;
197 s
= script_spec__find(spec
);
201 s
= script_spec__findnew(spec
, ops
);
208 static struct scripting_ops
*script_spec__lookup(const char *spec
)
210 struct script_spec
*s
= script_spec__find(spec
);
217 static void list_available_languages(void)
219 struct script_spec
*s
;
221 fprintf(stderr
, "\n");
222 fprintf(stderr
, "Scripting language extensions (used in "
223 "perf trace -s [spec:]script.[spec]):\n\n");
225 list_for_each_entry(s
, &script_specs
, node
)
226 fprintf(stderr
, " %-42s [%s]\n", s
->spec
, s
->ops
->name
);
228 fprintf(stderr
, "\n");
231 static int parse_scriptname(const struct option
*opt __used
,
232 const char *str
, int unset __used
)
235 const char *script
, *ext
;
238 if (strcmp(str
, "list") == 0) {
239 list_available_languages();
243 script
= strchr(str
, ':');
246 if (len
>= PATH_MAX
) {
247 fprintf(stderr
, "invalid language specifier");
250 strncpy(spec
, str
, len
);
252 scripting_ops
= script_spec__lookup(spec
);
253 if (!scripting_ops
) {
254 fprintf(stderr
, "invalid language specifier");
260 ext
= strchr(script
, '.');
262 fprintf(stderr
, "invalid script extension");
265 scripting_ops
= script_spec__lookup(++ext
);
266 if (!scripting_ops
) {
267 fprintf(stderr
, "invalid script extension");
272 script_name
= strdup(script
);
277 #define for_each_lang(scripts_dir, lang_dirent, lang_next) \
278 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
280 if (lang_dirent.d_type == DT_DIR && \
281 (strcmp(lang_dirent.d_name, ".")) && \
282 (strcmp(lang_dirent.d_name, "..")))
284 #define for_each_script(lang_dir, script_dirent, script_next) \
285 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
287 if (script_dirent.d_type != DT_DIR)
290 #define RECORD_SUFFIX "-record"
291 #define REPORT_SUFFIX "-report"
294 struct list_head node
;
300 LIST_HEAD(script_descs
);
302 static struct script_desc
*script_desc__new(const char *name
)
304 struct script_desc
*s
= zalloc(sizeof(*s
));
307 s
->name
= strdup(name
);
312 static void script_desc__delete(struct script_desc
*s
)
318 static void script_desc__add(struct script_desc
*s
)
320 list_add_tail(&s
->node
, &script_descs
);
323 static struct script_desc
*script_desc__find(const char *name
)
325 struct script_desc
*s
;
327 list_for_each_entry(s
, &script_descs
, node
)
328 if (strcasecmp(s
->name
, name
) == 0)
333 static struct script_desc
*script_desc__findnew(const char *name
)
335 struct script_desc
*s
= script_desc__find(name
);
340 s
= script_desc__new(name
);
342 goto out_delete_desc
;
349 script_desc__delete(s
);
354 static char *ends_with(char *str
, const char *suffix
)
356 size_t suffix_len
= strlen(suffix
);
359 if (strlen(str
) > suffix_len
) {
360 p
= str
+ strlen(str
) - suffix_len
;
361 if (!strncmp(p
, suffix
, suffix_len
))
368 static char *ltrim(char *str
)
370 int len
= strlen(str
);
372 while (len
&& isspace(*str
)) {
380 static int read_script_info(struct script_desc
*desc
, const char *filename
)
382 char line
[BUFSIZ
], *p
;
385 fp
= fopen(filename
, "r");
389 while (fgets(line
, sizeof(line
), fp
)) {
396 if (strlen(p
) && *p
== '!')
400 if (strlen(p
) && p
[strlen(p
) - 1] == '\n')
401 p
[strlen(p
) - 1] = '\0';
403 if (!strncmp(p
, "description:", strlen("description:"))) {
404 p
+= strlen("description:");
405 desc
->half_liner
= strdup(ltrim(p
));
409 if (!strncmp(p
, "args:", strlen("args:"))) {
410 p
+= strlen("args:");
411 desc
->args
= strdup(ltrim(p
));
421 static int list_available_scripts(const struct option
*opt __used
,
422 const char *s __used
, int unset __used
)
424 struct dirent
*script_next
, *lang_next
, script_dirent
, lang_dirent
;
425 char scripts_path
[MAXPATHLEN
];
426 DIR *scripts_dir
, *lang_dir
;
427 char script_path
[MAXPATHLEN
];
428 char lang_path
[MAXPATHLEN
];
429 struct script_desc
*desc
;
430 char first_half
[BUFSIZ
];
434 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", perf_exec_path());
436 scripts_dir
= opendir(scripts_path
);
440 for_each_lang(scripts_dir
, lang_dirent
, lang_next
) {
441 snprintf(lang_path
, MAXPATHLEN
, "%s/%s/bin", scripts_path
,
443 lang_dir
= opendir(lang_path
);
447 for_each_script(lang_dir
, script_dirent
, script_next
) {
448 script_root
= strdup(script_dirent
.d_name
);
449 str
= ends_with(script_root
, REPORT_SUFFIX
);
452 desc
= script_desc__findnew(script_root
);
453 snprintf(script_path
, MAXPATHLEN
, "%s/%s",
454 lang_path
, script_dirent
.d_name
);
455 read_script_info(desc
, script_path
);
461 fprintf(stdout
, "List of available trace scripts:\n");
462 list_for_each_entry(desc
, &script_descs
, node
) {
463 sprintf(first_half
, "%s %s", desc
->name
,
464 desc
->args
? desc
->args
: "");
465 fprintf(stdout
, " %-36s %s\n", first_half
,
466 desc
->half_liner
? desc
->half_liner
: "");
472 static char *get_script_path(const char *script_root
, const char *suffix
)
474 struct dirent
*script_next
, *lang_next
, script_dirent
, lang_dirent
;
475 char scripts_path
[MAXPATHLEN
];
476 char script_path
[MAXPATHLEN
];
477 DIR *scripts_dir
, *lang_dir
;
478 char lang_path
[MAXPATHLEN
];
479 char *str
, *__script_root
;
482 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", perf_exec_path());
484 scripts_dir
= opendir(scripts_path
);
488 for_each_lang(scripts_dir
, lang_dirent
, lang_next
) {
489 snprintf(lang_path
, MAXPATHLEN
, "%s/%s/bin", scripts_path
,
491 lang_dir
= opendir(lang_path
);
495 for_each_script(lang_dir
, script_dirent
, script_next
) {
496 __script_root
= strdup(script_dirent
.d_name
);
497 str
= ends_with(__script_root
, suffix
);
500 if (strcmp(__script_root
, script_root
))
502 snprintf(script_path
, MAXPATHLEN
, "%s/%s",
503 lang_path
, script_dirent
.d_name
);
504 path
= strdup(script_path
);
515 static const char * const annotate_usage
[] = {
516 "perf trace [<options>] <command>",
520 static const struct option options
[] = {
521 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace
,
522 "dump raw trace in ASCII"),
523 OPT_BOOLEAN('v', "verbose", &verbose
,
524 "be more verbose (show symbol address, etc)"),
525 OPT_BOOLEAN('L', "Latency", &latency_format
,
526 "show latency attributes (irqs/preemption disabled, etc)"),
527 OPT_CALLBACK_NOOPT('l', "list", NULL
, NULL
, "list available scripts",
528 list_available_scripts
),
529 OPT_CALLBACK('s', "script", NULL
, "name",
530 "script file name (lang:script name, script name, or *)",
532 OPT_STRING('g', "gen-script", &generate_script_lang
, "lang",
533 "generate perf-trace.xx script in specified language"),
538 int cmd_trace(int argc
, const char **argv
, const char *prefix __used
)
540 struct perf_session
*session
;
541 const char *suffix
= NULL
;
546 if (argc
>= 2 && strncmp(argv
[1], "rec", strlen("rec")) == 0) {
549 "Please specify a record script\n");
552 suffix
= RECORD_SUFFIX
;
555 if (argc
>= 2 && strncmp(argv
[1], "rep", strlen("rep")) == 0) {
558 "Please specify a report script\n");
561 suffix
= REPORT_SUFFIX
;
565 script_path
= get_script_path(argv
[2], suffix
);
567 fprintf(stderr
, "script not found\n");
571 __argv
= malloc((argc
+ 1) * sizeof(const char *));
572 __argv
[0] = "/bin/sh";
573 __argv
[1] = script_path
;
574 for (i
= 3; i
< argc
; i
++)
575 __argv
[i
- 1] = argv
[i
];
576 __argv
[argc
- 1] = NULL
;
578 execvp("/bin/sh", (char **)__argv
);
584 argc
= parse_options(argc
, argv
, options
, annotate_usage
,
585 PARSE_OPT_STOP_AT_NON_OPTION
);
587 if (symbol__init() < 0)
591 session
= perf_session__new(input_name
, O_RDONLY
, 0);
595 if (generate_script_lang
) {
596 struct stat perf_stat
;
598 int input
= open(input_name
, O_RDONLY
);
600 perror("failed to open file");
604 err
= fstat(input
, &perf_stat
);
606 perror("failed to stat file");
610 if (!perf_stat
.st_size
) {
611 fprintf(stderr
, "zero-sized file, nothing to do!\n");
615 scripting_ops
= script_spec__lookup(generate_script_lang
);
616 if (!scripting_ops
) {
617 fprintf(stderr
, "invalid language specifier");
621 perf_header__read(&session
->header
, input
);
622 err
= scripting_ops
->generate_script("perf-trace");
627 err
= scripting_ops
->start_script(script_name
, argc
, argv
);
632 err
= __cmd_trace(session
);
634 perf_session__delete(session
);