1 // SPDX-License-Identifier: GPL-2.0
5 * Performance analysis utility.
7 * This is the main hub from which the sub-commands (perf stat,
8 * perf top, perf record, perf report, etc.) are started.
13 #include <subcmd/exec-cmd.h>
14 #include "util/config.h"
15 #include "util/quote.h"
16 #include <subcmd/run-command.h>
17 #include "util/parse-events.h"
18 #include <subcmd/parse-options.h>
19 #include "util/bpf-loader.h"
20 #include "util/debug.h"
21 #include "util/event.h"
22 #include <api/fs/fs.h>
23 #include <api/fs/tracing_path.h>
29 #include <sys/types.h>
32 #include <linux/kernel.h>
34 const char perf_usage_string
[] =
35 "perf [--version] [--help] [OPTIONS] COMMAND [ARGS]";
37 const char perf_more_info_string
[] =
38 "See 'perf help COMMAND' for more information on a specific command.";
40 static int use_pager
= -1;
41 const char *input_name
;
45 int (*fn
)(int, const char **);
49 static struct cmd_struct commands
[] = {
50 { "buildid-cache", cmd_buildid_cache
, 0 },
51 { "buildid-list", cmd_buildid_list
, 0 },
52 { "config", cmd_config
, 0 },
53 { "c2c", cmd_c2c
, 0 },
54 { "diff", cmd_diff
, 0 },
55 { "evlist", cmd_evlist
, 0 },
56 { "help", cmd_help
, 0 },
57 { "kallsyms", cmd_kallsyms
, 0 },
58 { "list", cmd_list
, 0 },
59 { "record", cmd_record
, 0 },
60 { "report", cmd_report
, 0 },
61 { "bench", cmd_bench
, 0 },
62 { "stat", cmd_stat
, 0 },
63 { "timechart", cmd_timechart
, 0 },
64 { "top", cmd_top
, 0 },
65 { "annotate", cmd_annotate
, 0 },
66 { "version", cmd_version
, 0 },
67 { "script", cmd_script
, 0 },
68 { "sched", cmd_sched
, 0 },
69 #ifdef HAVE_LIBELF_SUPPORT
70 { "probe", cmd_probe
, 0 },
72 { "kmem", cmd_kmem
, 0 },
73 { "lock", cmd_lock
, 0 },
74 { "kvm", cmd_kvm
, 0 },
75 { "test", cmd_test
, 0 },
76 #if defined(HAVE_LIBAUDIT_SUPPORT) || defined(HAVE_SYSCALL_TABLE)
77 { "trace", cmd_trace
, 0 },
79 { "inject", cmd_inject
, 0 },
80 { "mem", cmd_mem
, 0 },
81 { "data", cmd_data
, 0 },
82 { "ftrace", cmd_ftrace
, 0 },
90 static int pager_command_config(const char *var
, const char *value
, void *data
)
92 struct pager_config
*c
= data
;
93 if (strstarts(var
, "pager.") && !strcmp(var
+ 6, c
->cmd
))
94 c
->val
= perf_config_bool(var
, value
);
98 /* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
99 static int check_pager_config(const char *cmd
)
102 struct pager_config c
;
105 err
= perf_config(pager_command_config
, &c
);
109 static int browser_command_config(const char *var
, const char *value
, void *data
)
111 struct pager_config
*c
= data
;
112 if (strstarts(var
, "tui.") && !strcmp(var
+ 4, c
->cmd
))
113 c
->val
= perf_config_bool(var
, value
);
114 if (strstarts(var
, "gtk.") && !strcmp(var
+ 4, c
->cmd
))
115 c
->val
= perf_config_bool(var
, value
) ? 2 : 0;
120 * returns 0 for "no tui", 1 for "use tui", 2 for "use gtk",
121 * and -1 for "not specified"
123 static int check_browser_config(const char *cmd
)
126 struct pager_config c
;
129 err
= perf_config(browser_command_config
, &c
);
133 static void commit_pager_choice(void)
137 setenv(PERF_PAGER_ENVIRONMENT
, "cat", 1);
147 struct option options
[] = {
148 OPT_ARGUMENT("help", "help"),
149 OPT_ARGUMENT("version", "version"),
150 OPT_ARGUMENT("exec-path", "exec-path"),
151 OPT_ARGUMENT("html-path", "html-path"),
152 OPT_ARGUMENT("paginate", "paginate"),
153 OPT_ARGUMENT("no-pager", "no-pager"),
154 OPT_ARGUMENT("debugfs-dir", "debugfs-dir"),
155 OPT_ARGUMENT("buildid-dir", "buildid-dir"),
156 OPT_ARGUMENT("list-cmds", "list-cmds"),
157 OPT_ARGUMENT("list-opts", "list-opts"),
158 OPT_ARGUMENT("debug", "debug"),
162 static int handle_options(const char ***argv
, int *argc
, int *envchanged
)
167 const char *cmd
= (*argv
)[0];
172 * For legacy reasons, the "version" and "help"
173 * commands can be written with "--" prepended
174 * to make them look like flags.
176 if (!strcmp(cmd
, "--help") || !strcmp(cmd
, "--version"))
180 * Shortcut for '-h' and '-v' options to invoke help
181 * and version command.
183 if (!strcmp(cmd
, "-h")) {
184 (*argv
)[0] = "--help";
188 if (!strcmp(cmd
, "-v")) {
189 (*argv
)[0] = "--version";
194 * Check remaining flags.
196 if (strstarts(cmd
, CMD_EXEC_PATH
)) {
197 cmd
+= strlen(CMD_EXEC_PATH
);
199 set_argv_exec_path(cmd
+ 1);
201 puts(get_argv_exec_path());
204 } else if (!strcmp(cmd
, "--html-path")) {
205 puts(system_path(PERF_HTML_PATH
));
207 } else if (!strcmp(cmd
, "-p") || !strcmp(cmd
, "--paginate")) {
209 } else if (!strcmp(cmd
, "--no-pager")) {
213 } else if (!strcmp(cmd
, "--debugfs-dir")) {
215 fprintf(stderr
, "No directory given for --debugfs-dir.\n");
216 usage(perf_usage_string
);
218 tracing_path_set((*argv
)[1]);
223 } else if (!strcmp(cmd
, "--buildid-dir")) {
225 fprintf(stderr
, "No directory given for --buildid-dir.\n");
226 usage(perf_usage_string
);
228 set_buildid_dir((*argv
)[1]);
233 } else if (strstarts(cmd
, CMD_DEBUGFS_DIR
)) {
234 tracing_path_set(cmd
+ strlen(CMD_DEBUGFS_DIR
));
235 fprintf(stderr
, "dir: %s\n", tracing_path
);
238 } else if (!strcmp(cmd
, "--list-cmds")) {
241 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
242 struct cmd_struct
*p
= commands
+i
;
243 printf("%s ", p
->cmd
);
247 } else if (!strcmp(cmd
, "--list-opts")) {
250 for (i
= 0; i
< ARRAY_SIZE(options
)-1; i
++) {
251 struct option
*p
= options
+i
;
252 printf("--%s ", p
->long_name
);
256 } else if (!strcmp(cmd
, "--debug")) {
258 fprintf(stderr
, "No variable specified for --debug.\n");
259 usage(perf_usage_string
);
261 if (perf_debug_option((*argv
)[1]))
262 usage(perf_usage_string
);
267 fprintf(stderr
, "Unknown option: %s\n", cmd
);
268 usage(perf_usage_string
);
278 #define RUN_SETUP (1<<0)
279 #define USE_PAGER (1<<1)
281 static int run_builtin(struct cmd_struct
*p
, int argc
, const char **argv
)
285 char sbuf
[STRERR_BUFSIZE
];
287 if (use_browser
== -1)
288 use_browser
= check_browser_config(p
->cmd
);
290 if (use_pager
== -1 && p
->option
& RUN_SETUP
)
291 use_pager
= check_pager_config(p
->cmd
);
292 if (use_pager
== -1 && p
->option
& USE_PAGER
)
294 commit_pager_choice();
296 perf_env__set_cmdline(&perf_env
, argc
, argv
);
297 status
= p
->fn(argc
, argv
);
299 exit_browser(status
);
300 perf_env__exit(&perf_env
);
304 return status
& 0xff;
306 /* Somebody closed stdout? */
307 if (fstat(fileno(stdout
), &st
))
309 /* Ignore write errors for pipes and sockets.. */
310 if (S_ISFIFO(st
.st_mode
) || S_ISSOCK(st
.st_mode
))
314 /* Check for ENOSPC and EIO errors.. */
315 if (fflush(stdout
)) {
316 fprintf(stderr
, "write failure on standard output: %s",
317 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
320 if (ferror(stdout
)) {
321 fprintf(stderr
, "unknown write failure on standard output");
324 if (fclose(stdout
)) {
325 fprintf(stderr
, "close failed on standard output: %s",
326 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
334 static void handle_internal_command(int argc
, const char **argv
)
336 const char *cmd
= argv
[0];
339 /* Turn "perf cmd --help" into "perf help cmd" */
340 if (argc
> 1 && !strcmp(argv
[1], "--help")) {
342 argv
[0] = cmd
= "help";
345 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
346 struct cmd_struct
*p
= commands
+i
;
347 if (strcmp(p
->cmd
, cmd
))
349 exit(run_builtin(p
, argc
, argv
));
353 static void execv_dashed_external(const char **argv
)
359 if (asprintf(&cmd
, "perf-%s", argv
[0]) < 0)
363 * argv[0] must be the perf command, but the argv array
364 * belongs to the caller, and may be reused in
365 * subsequent loop iterations. Save argv[0] and
366 * restore it on error.
372 * if we fail because the command is not found, it is
373 * OK to return. Otherwise, we just pass along the status code.
375 status
= run_command_v_opt(argv
, 0);
376 if (status
!= -ERR_RUN_COMMAND_EXEC
) {
377 if (IS_RUN_COMMAND_ERR(status
)) {
379 pr_err("FATAL: unable to run '%s'", argv
[0]);
384 errno
= ENOENT
; /* as if we called execvp */
390 static int run_argv(int *argcp
, const char ***argv
)
392 /* See if it's an internal command */
393 handle_internal_command(*argcp
, *argv
);
395 /* .. then try the external ones */
396 execv_dashed_external(*argv
);
400 static void pthread__block_sigwinch(void)
405 sigaddset(&set
, SIGWINCH
);
406 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
409 void pthread__unblock_sigwinch(void)
414 sigaddset(&set
, SIGWINCH
);
415 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
418 #ifdef _SC_LEVEL1_DCACHE_LINESIZE
419 #define cache_line_size(cacheline_sizep) *cacheline_sizep = sysconf(_SC_LEVEL1_DCACHE_LINESIZE)
421 static void cache_line_size(int *cacheline_sizep
)
423 if (sysfs__read_int("devices/system/cpu/cpu0/cache/index0/coherency_line_size", cacheline_sizep
))
424 pr_debug("cannot determine cache line size");
428 int main(int argc
, const char **argv
)
432 char sbuf
[STRERR_BUFSIZE
];
436 exec_cmd_init("perf", PREFIX
, PERF_EXEC_PATH
, EXEC_PATH_ENVIRONMENT
);
437 pager_init(PERF_PAGER_ENVIRONMENT
);
439 /* The page_size is placed in util object. */
440 page_size
= sysconf(_SC_PAGE_SIZE
);
441 cache_line_size(&cacheline_size
);
443 if (sysctl__read_int("kernel/perf_event_max_stack", &value
) == 0)
444 sysctl_perf_event_max_stack
= value
;
446 if (sysctl__read_int("kernel/perf_event_max_contexts_per_stack", &value
) == 0)
447 sysctl_perf_event_max_contexts_per_stack
= value
;
449 cmd
= extract_argv0_path(argv
[0]);
456 err
= perf_config(perf_default_config
, NULL
);
459 set_buildid_dir(NULL
);
461 /* get debugfs/tracefs mount point from /proc/mounts */
462 tracing_path_mount();
465 * "perf-xxxx" is the same as "perf xxxx", but we obviously:
467 * - cannot take flags in between the "perf" and the "xxxx".
468 * - cannot execute it externally (since it would just do
469 * the same thing over again)
471 * So we just directly call the internal command handler. If that one
472 * fails to handle this, then maybe we just run a renamed perf binary
473 * that contains a dash in its name. To handle this scenario, we just
474 * fall through and ignore the "xxxx" part of the command string.
476 if (strstarts(cmd
, "perf-")) {
479 handle_internal_command(argc
, argv
);
481 * If the command is handled, the above function does not
482 * return undo changes and fall through in such a case.
487 if (strstarts(cmd
, "trace")) {
488 #if defined(HAVE_LIBAUDIT_SUPPORT) || defined(HAVE_SYSCALL_TABLE)
491 return cmd_trace(argc
, argv
);
494 "trace command not available: missing audit-libs devel package at build time.\n");
498 /* Look for flags.. */
501 handle_options(&argv
, &argc
, NULL
);
502 commit_pager_choice();
505 if (strstarts(argv
[0], "--"))
508 /* The user didn't specify a command; give them help */
509 printf("\n usage: %s\n\n", perf_usage_string
);
510 list_common_cmds_help();
511 printf("\n %s\n\n", perf_more_info_string
);
519 * We use PATH to find perf commands, but we prepend some higher
520 * precedence paths: the "--exec-path" option, the PERF_EXEC_PATH
521 * environment, and the $(perfexecdir) from the Makefile at build
526 * Block SIGWINCH notifications so that the thread that wants it can
527 * unblock and get syscalls like select interrupted instead of waiting
528 * forever while the signal goes to some other non interested thread.
530 pthread__block_sigwinch();
535 static int done_help
;
537 run_argv(&argc
, &argv
);
543 cmd
= argv
[0] = help_unknown_cmd(cmd
);
549 fprintf(stderr
, "Failed to run command '%s': %s\n",
550 cmd
, str_error_r(errno
, sbuf
, sizeof(sbuf
)));