4 * Performance analysis utility.
6 * This is the main hub from which the sub-commands (perf stat,
7 * perf top, perf record, perf report, etc.) are started.
12 #include <subcmd/exec-cmd.h>
13 #include "util/config.h"
14 #include "util/quote.h"
15 #include <subcmd/run-command.h>
16 #include "util/parse-events.h"
17 #include <subcmd/parse-options.h>
18 #include "util/bpf-loader.h"
19 #include "util/debug.h"
20 #include <api/fs/fs.h>
21 #include <api/fs/tracing_path.h>
26 const char perf_usage_string
[] =
27 "perf [--version] [--help] [OPTIONS] COMMAND [ARGS]";
29 const char perf_more_info_string
[] =
30 "See 'perf help COMMAND' for more information on a specific command.";
33 static int use_pager
= -1;
34 const char *input_name
;
38 int (*fn
)(int, const char **, const char *);
42 static struct cmd_struct commands
[] = {
43 { "buildid-cache", cmd_buildid_cache
, 0 },
44 { "buildid-list", cmd_buildid_list
, 0 },
45 { "config", cmd_config
, 0 },
46 { "c2c", cmd_c2c
, 0 },
47 { "diff", cmd_diff
, 0 },
48 { "evlist", cmd_evlist
, 0 },
49 { "help", cmd_help
, 0 },
50 { "list", cmd_list
, 0 },
51 { "record", cmd_record
, 0 },
52 { "report", cmd_report
, 0 },
53 { "bench", cmd_bench
, 0 },
54 { "stat", cmd_stat
, 0 },
55 { "timechart", cmd_timechart
, 0 },
56 { "top", cmd_top
, 0 },
57 { "annotate", cmd_annotate
, 0 },
58 { "version", cmd_version
, 0 },
59 { "script", cmd_script
, 0 },
60 { "sched", cmd_sched
, 0 },
61 #ifdef HAVE_LIBELF_SUPPORT
62 { "probe", cmd_probe
, 0 },
64 { "kmem", cmd_kmem
, 0 },
65 { "lock", cmd_lock
, 0 },
66 { "kvm", cmd_kvm
, 0 },
67 { "test", cmd_test
, 0 },
68 #ifdef HAVE_LIBAUDIT_SUPPORT
69 { "trace", cmd_trace
, 0 },
71 { "inject", cmd_inject
, 0 },
72 { "mem", cmd_mem
, 0 },
73 { "data", cmd_data
, 0 },
81 static int pager_command_config(const char *var
, const char *value
, void *data
)
83 struct pager_config
*c
= data
;
84 if (!prefixcmp(var
, "pager.") && !strcmp(var
+ 6, c
->cmd
))
85 c
->val
= perf_config_bool(var
, value
);
89 /* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
90 int check_pager_config(const char *cmd
)
92 struct pager_config c
;
95 perf_config(pager_command_config
, &c
);
99 static int browser_command_config(const char *var
, const char *value
, void *data
)
101 struct pager_config
*c
= data
;
102 if (!prefixcmp(var
, "tui.") && !strcmp(var
+ 4, c
->cmd
))
103 c
->val
= perf_config_bool(var
, value
);
104 if (!prefixcmp(var
, "gtk.") && !strcmp(var
+ 4, c
->cmd
))
105 c
->val
= perf_config_bool(var
, value
) ? 2 : 0;
110 * returns 0 for "no tui", 1 for "use tui", 2 for "use gtk",
111 * and -1 for "not specified"
113 static int check_browser_config(const char *cmd
)
115 struct pager_config c
;
118 perf_config(browser_command_config
, &c
);
122 static void commit_pager_choice(void)
126 setenv(PERF_PAGER_ENVIRONMENT
, "cat", 1);
136 struct option options
[] = {
137 OPT_ARGUMENT("help", "help"),
138 OPT_ARGUMENT("version", "version"),
139 OPT_ARGUMENT("exec-path", "exec-path"),
140 OPT_ARGUMENT("html-path", "html-path"),
141 OPT_ARGUMENT("paginate", "paginate"),
142 OPT_ARGUMENT("no-pager", "no-pager"),
143 OPT_ARGUMENT("debugfs-dir", "debugfs-dir"),
144 OPT_ARGUMENT("buildid-dir", "buildid-dir"),
145 OPT_ARGUMENT("list-cmds", "list-cmds"),
146 OPT_ARGUMENT("list-opts", "list-opts"),
147 OPT_ARGUMENT("debug", "debug"),
151 static int handle_options(const char ***argv
, int *argc
, int *envchanged
)
156 const char *cmd
= (*argv
)[0];
161 * For legacy reasons, the "version" and "help"
162 * commands can be written with "--" prepended
163 * to make them look like flags.
165 if (!strcmp(cmd
, "--help") || !strcmp(cmd
, "--version"))
169 * Shortcut for '-h' and '-v' options to invoke help
170 * and version command.
172 if (!strcmp(cmd
, "-h")) {
173 (*argv
)[0] = "--help";
177 if (!strcmp(cmd
, "-v")) {
178 (*argv
)[0] = "--version";
183 * Check remaining flags.
185 if (!prefixcmp(cmd
, CMD_EXEC_PATH
)) {
186 cmd
+= strlen(CMD_EXEC_PATH
);
188 set_argv_exec_path(cmd
+ 1);
190 puts(get_argv_exec_path());
193 } else if (!strcmp(cmd
, "--html-path")) {
194 puts(system_path(PERF_HTML_PATH
));
196 } else if (!strcmp(cmd
, "-p") || !strcmp(cmd
, "--paginate")) {
198 } else if (!strcmp(cmd
, "--no-pager")) {
202 } else if (!strcmp(cmd
, "--debugfs-dir")) {
204 fprintf(stderr
, "No directory given for --debugfs-dir.\n");
205 usage(perf_usage_string
);
207 tracing_path_set((*argv
)[1]);
212 } else if (!strcmp(cmd
, "--buildid-dir")) {
214 fprintf(stderr
, "No directory given for --buildid-dir.\n");
215 usage(perf_usage_string
);
217 set_buildid_dir((*argv
)[1]);
222 } else if (!prefixcmp(cmd
, CMD_DEBUGFS_DIR
)) {
223 tracing_path_set(cmd
+ strlen(CMD_DEBUGFS_DIR
));
224 fprintf(stderr
, "dir: %s\n", tracing_path
);
227 } else if (!strcmp(cmd
, "--list-cmds")) {
230 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
231 struct cmd_struct
*p
= commands
+i
;
232 printf("%s ", p
->cmd
);
236 } else if (!strcmp(cmd
, "--list-opts")) {
239 for (i
= 0; i
< ARRAY_SIZE(options
)-1; i
++) {
240 struct option
*p
= options
+i
;
241 printf("--%s ", p
->long_name
);
245 } else if (!strcmp(cmd
, "--debug")) {
247 fprintf(stderr
, "No variable specified for --debug.\n");
248 usage(perf_usage_string
);
250 if (perf_debug_option((*argv
)[1]))
251 usage(perf_usage_string
);
256 fprintf(stderr
, "Unknown option: %s\n", cmd
);
257 usage(perf_usage_string
);
267 static int handle_alias(int *argcp
, const char ***argv
)
269 int envchanged
= 0, ret
= 0, saved_errno
= errno
;
270 int count
, option_count
;
271 const char **new_argv
;
272 const char *alias_command
;
275 alias_command
= (*argv
)[0];
276 alias_string
= alias_lookup(alias_command
);
278 if (alias_string
[0] == '!') {
282 if (strbuf_init(&buf
, PATH_MAX
) < 0 ||
283 strbuf_addstr(&buf
, alias_string
) < 0 ||
284 sq_quote_argv(&buf
, (*argv
) + 1,
286 die("Failed to allocate memory.");
288 alias_string
= buf
.buf
;
290 ret
= system(alias_string
+ 1);
291 if (ret
>= 0 && WIFEXITED(ret
) &&
292 WEXITSTATUS(ret
) != 127)
293 exit(WEXITSTATUS(ret
));
294 die("Failed to run '%s' when expanding alias '%s'",
295 alias_string
+ 1, alias_command
);
297 count
= split_cmdline(alias_string
, &new_argv
);
299 die("Bad alias.%s string", alias_command
);
300 option_count
= handle_options(&new_argv
, &count
, &envchanged
);
302 die("alias '%s' changes environment variables\n"
303 "You can use '!perf' in the alias to do this.",
305 memmove(new_argv
- option_count
, new_argv
,
306 count
* sizeof(char *));
307 new_argv
-= option_count
;
310 die("empty alias for %s", alias_command
);
312 if (!strcmp(alias_command
, new_argv
[0]))
313 die("recursive alias: %s", alias_command
);
315 new_argv
= realloc(new_argv
, sizeof(char *) *
316 (count
+ *argcp
+ 1));
317 /* insert after command name */
318 memcpy(new_argv
+ count
, *argv
+ 1, sizeof(char *) * *argcp
);
319 new_argv
[count
+ *argcp
] = NULL
;
332 const char perf_version_string
[] = PERF_VERSION
;
334 #define RUN_SETUP (1<<0)
335 #define USE_PAGER (1<<1)
337 static int run_builtin(struct cmd_struct
*p
, int argc
, const char **argv
)
342 char sbuf
[STRERR_BUFSIZE
];
345 if (p
->option
& RUN_SETUP
)
346 prefix
= NULL
; /* setup_perf_directory(); */
348 if (use_browser
== -1)
349 use_browser
= check_browser_config(p
->cmd
);
351 if (use_pager
== -1 && p
->option
& RUN_SETUP
)
352 use_pager
= check_pager_config(p
->cmd
);
353 if (use_pager
== -1 && p
->option
& USE_PAGER
)
355 commit_pager_choice();
357 perf_env__set_cmdline(&perf_env
, argc
, argv
);
358 status
= p
->fn(argc
, argv
, prefix
);
360 exit_browser(status
);
361 perf_env__exit(&perf_env
);
365 return status
& 0xff;
367 /* Somebody closed stdout? */
368 if (fstat(fileno(stdout
), &st
))
370 /* Ignore write errors for pipes and sockets.. */
371 if (S_ISFIFO(st
.st_mode
) || S_ISSOCK(st
.st_mode
))
375 /* Check for ENOSPC and EIO errors.. */
376 if (fflush(stdout
)) {
377 fprintf(stderr
, "write failure on standard output: %s",
378 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
381 if (ferror(stdout
)) {
382 fprintf(stderr
, "unknown write failure on standard output");
385 if (fclose(stdout
)) {
386 fprintf(stderr
, "close failed on standard output: %s",
387 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
395 static void handle_internal_command(int argc
, const char **argv
)
397 const char *cmd
= argv
[0];
399 static const char ext
[] = STRIP_EXTENSION
;
401 if (sizeof(ext
) > 1) {
402 i
= strlen(argv
[0]) - strlen(ext
);
403 if (i
> 0 && !strcmp(argv
[0] + i
, ext
)) {
404 char *argv0
= strdup(argv
[0]);
405 argv
[0] = cmd
= argv0
;
410 /* Turn "perf cmd --help" into "perf help cmd" */
411 if (argc
> 1 && !strcmp(argv
[1], "--help")) {
413 argv
[0] = cmd
= "help";
416 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
417 struct cmd_struct
*p
= commands
+i
;
418 if (strcmp(p
->cmd
, cmd
))
420 exit(run_builtin(p
, argc
, argv
));
424 static void execv_dashed_external(const char **argv
)
430 if (asprintf(&cmd
, "perf-%s", argv
[0]) < 0)
434 * argv[0] must be the perf command, but the argv array
435 * belongs to the caller, and may be reused in
436 * subsequent loop iterations. Save argv[0] and
437 * restore it on error.
443 * if we fail because the command is not found, it is
444 * OK to return. Otherwise, we just pass along the status code.
446 status
= run_command_v_opt(argv
, 0);
447 if (status
!= -ERR_RUN_COMMAND_EXEC
) {
448 if (IS_RUN_COMMAND_ERR(status
)) {
450 die("unable to run '%s'", argv
[0]);
454 errno
= ENOENT
; /* as if we called execvp */
460 static int run_argv(int *argcp
, const char ***argv
)
465 /* See if it's an internal command */
466 handle_internal_command(*argcp
, *argv
);
468 /* .. then try the external ones */
469 execv_dashed_external(*argv
);
471 /* It could be an alias -- this works around the insanity
472 * of overriding "perf log" with "perf show" by having
475 if (done_alias
|| !handle_alias(argcp
, argv
))
483 static void pthread__block_sigwinch(void)
488 sigaddset(&set
, SIGWINCH
);
489 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
492 void pthread__unblock_sigwinch(void)
497 sigaddset(&set
, SIGWINCH
);
498 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
501 #ifdef _SC_LEVEL1_DCACHE_LINESIZE
502 #define cache_line_size(cacheline_sizep) *cacheline_sizep = sysconf(_SC_LEVEL1_DCACHE_LINESIZE)
504 static void cache_line_size(int *cacheline_sizep
)
506 if (sysfs__read_int("devices/system/cpu/cpu0/cache/index0/coherency_line_size", cacheline_sizep
))
507 pr_debug("cannot determine cache line size");
511 int main(int argc
, const char **argv
)
514 char sbuf
[STRERR_BUFSIZE
];
518 exec_cmd_init("perf", PREFIX
, PERF_EXEC_PATH
, EXEC_PATH_ENVIRONMENT
);
519 pager_init(PERF_PAGER_ENVIRONMENT
);
521 /* The page_size is placed in util object. */
522 page_size
= sysconf(_SC_PAGE_SIZE
);
523 cache_line_size(&cacheline_size
);
525 if (sysctl__read_int("kernel/perf_event_max_stack", &value
) == 0)
526 sysctl_perf_event_max_stack
= value
;
528 if (sysctl__read_int("kernel/perf_event_max_contexts_per_stack", &value
) == 0)
529 sysctl_perf_event_max_contexts_per_stack
= value
;
531 cmd
= extract_argv0_path(argv
[0]);
538 perf_config(perf_default_config
, NULL
);
539 set_buildid_dir(NULL
);
541 /* get debugfs/tracefs mount point from /proc/mounts */
542 tracing_path_mount();
545 * "perf-xxxx" is the same as "perf xxxx", but we obviously:
547 * - cannot take flags in between the "perf" and the "xxxx".
548 * - cannot execute it externally (since it would just do
549 * the same thing over again)
551 * So we just directly call the internal command handler, and
552 * die if that one cannot handle it.
554 if (!prefixcmp(cmd
, "perf-")) {
557 handle_internal_command(argc
, argv
);
558 fprintf(stderr
, "cannot handle %s internally", cmd
);
561 if (!prefixcmp(cmd
, "trace")) {
562 #ifdef HAVE_LIBAUDIT_SUPPORT
565 return cmd_trace(argc
, argv
, NULL
);
568 "trace command not available: missing audit-libs devel package at build time.\n");
572 /* Look for flags.. */
575 handle_options(&argv
, &argc
, NULL
);
576 commit_pager_choice();
579 if (!prefixcmp(argv
[0], "--"))
582 /* The user didn't specify a command; give them help */
583 printf("\n usage: %s\n\n", perf_usage_string
);
584 list_common_cmds_help();
585 printf("\n %s\n\n", perf_more_info_string
);
593 * We use PATH to find perf commands, but we prepend some higher
594 * precedence paths: the "--exec-path" option, the PERF_EXEC_PATH
595 * environment, and the $(perfexecdir) from the Makefile at build
600 * Block SIGWINCH notifications so that the thread that wants it can
601 * unblock and get syscalls like select interrupted instead of waiting
602 * forever while the signal goes to some other non interested thread.
604 pthread__block_sigwinch();
609 static int done_help
;
610 int was_alias
= run_argv(&argc
, &argv
);
616 fprintf(stderr
, "Expansion of alias '%s' failed; "
617 "'%s' is not a perf-command\n",
622 cmd
= argv
[0] = help_unknown_cmd(cmd
);
628 fprintf(stderr
, "Failed to run command '%s': %s\n",
629 cmd
, str_error_r(errno
, sbuf
, sizeof(sbuf
)));