]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/perf.c
Merge tag 'v4.11-rc6' into perf/core, to pick up fixes
[mirror_ubuntu-bionic-kernel.git] / tools / perf / perf.c
CommitLineData
bf9e1876
IM
1/*
2 * perf.c
3 *
4 * Performance analysis utility.
5 *
6 * This is the main hub from which the sub-commands (perf stat,
7 * perf top, perf record, perf report, etc.) are started.
8 */
07800601 9#include "builtin.h"
bf9e1876 10
aa36ddd7 11#include "util/env.h"
4b6ab94e 12#include <subcmd/exec-cmd.h>
41840d21 13#include "util/config.h"
148be2c1 14#include "util/quote.h"
4b6ab94e 15#include <subcmd/run-command.h>
5beeded1 16#include "util/parse-events.h"
4b6ab94e 17#include <subcmd/parse-options.h>
84c86ca1 18#include "util/bpf-loader.h"
bbb2cea7 19#include "util/debug.h"
4cb93446 20#include <api/fs/fs.h>
592d5a6b 21#include <api/fs/tracing_path.h>
27683dc5 22#include <pthread.h>
14cbfbeb
NK
23#include <stdlib.h>
24#include <time.h>
07800601
IM
25
26const char perf_usage_string[] =
78a1b503 27 "perf [--version] [--help] [OPTIONS] COMMAND [ARGS]";
07800601
IM
28
29const char perf_more_info_string[] =
30 "See 'perf help COMMAND' for more information on a specific command.";
31
32static int use_pager = -1;
70cb4e96 33const char *input_name;
5d06e691 34
98a4179c
FW
35struct cmd_struct {
36 const char *cmd;
b0ad8ea6 37 int (*fn)(int, const char **);
98a4179c
FW
38 int option;
39};
40
41static struct cmd_struct commands[] = {
42 { "buildid-cache", cmd_buildid_cache, 0 },
43 { "buildid-list", cmd_buildid_list, 0 },
30862f2c 44 { "config", cmd_config, 0 },
7aef3bf3 45 { "c2c", cmd_c2c, 0 },
98a4179c
FW
46 { "diff", cmd_diff, 0 },
47 { "evlist", cmd_evlist, 0 },
48 { "help", cmd_help, 0 },
35563771 49 { "kallsyms", cmd_kallsyms, 0 },
98a4179c
FW
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 },
89fe808a 61#ifdef HAVE_LIBELF_SUPPORT
98a4179c 62 { "probe", cmd_probe, 0 },
393be2e3 63#endif
98a4179c
FW
64 { "kmem", cmd_kmem, 0 },
65 { "lock", cmd_lock, 0 },
66 { "kvm", cmd_kvm, 0 },
67 { "test", cmd_test, 0 },
89fe808a 68#ifdef HAVE_LIBAUDIT_SUPPORT
514f1c67 69 { "trace", cmd_trace, 0 },
4d29089c 70#endif
98a4179c 71 { "inject", cmd_inject, 0 },
028f12ee 72 { "mem", cmd_mem, 0 },
2245bf14 73 { "data", cmd_data, 0 },
d01f4e8d 74 { "ftrace", cmd_ftrace, 0 },
98a4179c
FW
75};
76
07800601
IM
77struct pager_config {
78 const char *cmd;
79 int val;
80};
81
82static int pager_command_config(const char *var, const char *value, void *data)
83{
84 struct pager_config *c = data;
85 if (!prefixcmp(var, "pager.") && !strcmp(var + 6, c->cmd))
86 c->val = perf_config_bool(var, value);
87 return 0;
88}
89
90/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
91int check_pager_config(const char *cmd)
92{
ecc4c561 93 int err;
07800601
IM
94 struct pager_config c;
95 c.cmd = cmd;
96 c.val = -1;
ecc4c561
ACM
97 err = perf_config(pager_command_config, &c);
98 return err ?: c.val;
07800601
IM
99}
100
0020ce23 101static int browser_command_config(const char *var, const char *value, void *data)
5d06e691
ACM
102{
103 struct pager_config *c = data;
104 if (!prefixcmp(var, "tui.") && !strcmp(var + 4, c->cmd))
105 c->val = perf_config_bool(var, value);
0020ce23
NK
106 if (!prefixcmp(var, "gtk.") && !strcmp(var + 4, c->cmd))
107 c->val = perf_config_bool(var, value) ? 2 : 0;
5d06e691
ACM
108 return 0;
109}
110
0020ce23
NK
111/*
112 * returns 0 for "no tui", 1 for "use tui", 2 for "use gtk",
113 * and -1 for "not specified"
114 */
115static int check_browser_config(const char *cmd)
5d06e691 116{
ecc4c561 117 int err;
5d06e691
ACM
118 struct pager_config c;
119 c.cmd = cmd;
120 c.val = -1;
ecc4c561
ACM
121 err = perf_config(browser_command_config, &c);
122 return err ?: c.val;
5d06e691
ACM
123}
124
4c574159
TF
125static void commit_pager_choice(void)
126{
07800601
IM
127 switch (use_pager) {
128 case 0:
096d3558 129 setenv(PERF_PAGER_ENVIRONMENT, "cat", 1);
07800601
IM
130 break;
131 case 1:
132 /* setup_pager(); */
133 break;
134 default:
135 break;
136 }
137}
138
7335399a
YS
139struct option options[] = {
140 OPT_ARGUMENT("help", "help"),
141 OPT_ARGUMENT("version", "version"),
142 OPT_ARGUMENT("exec-path", "exec-path"),
143 OPT_ARGUMENT("html-path", "html-path"),
144 OPT_ARGUMENT("paginate", "paginate"),
145 OPT_ARGUMENT("no-pager", "no-pager"),
7335399a
YS
146 OPT_ARGUMENT("debugfs-dir", "debugfs-dir"),
147 OPT_ARGUMENT("buildid-dir", "buildid-dir"),
148 OPT_ARGUMENT("list-cmds", "list-cmds"),
149 OPT_ARGUMENT("list-opts", "list-opts"),
150 OPT_ARGUMENT("debug", "debug"),
151 OPT_END()
152};
153
4c574159 154static int handle_options(const char ***argv, int *argc, int *envchanged)
07800601
IM
155{
156 int handled = 0;
157
158 while (*argc > 0) {
159 const char *cmd = (*argv)[0];
160 if (cmd[0] != '-')
161 break;
162
163 /*
164 * For legacy reasons, the "version" and "help"
165 * commands can be written with "--" prepended
166 * to make them look like flags.
167 */
168 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
169 break;
170
a1853e2c
JO
171 /*
172 * Shortcut for '-h' and '-v' options to invoke help
173 * and version command.
174 */
175 if (!strcmp(cmd, "-h")) {
176 (*argv)[0] = "--help";
177 break;
178 }
179
180 if (!strcmp(cmd, "-v")) {
181 (*argv)[0] = "--version";
182 break;
183 }
184
07800601
IM
185 /*
186 * Check remaining flags.
187 */
cfed95a6
VL
188 if (!prefixcmp(cmd, CMD_EXEC_PATH)) {
189 cmd += strlen(CMD_EXEC_PATH);
07800601 190 if (*cmd == '=')
46113a54 191 set_argv_exec_path(cmd + 1);
07800601 192 else {
46113a54 193 puts(get_argv_exec_path());
07800601
IM
194 exit(0);
195 }
196 } else if (!strcmp(cmd, "--html-path")) {
197 puts(system_path(PERF_HTML_PATH));
198 exit(0);
199 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
200 use_pager = 1;
201 } else if (!strcmp(cmd, "--no-pager")) {
202 use_pager = 0;
203 if (envchanged)
204 *envchanged = 1;
5beeded1
JB
205 } else if (!strcmp(cmd, "--debugfs-dir")) {
206 if (*argc < 2) {
207 fprintf(stderr, "No directory given for --debugfs-dir.\n");
208 usage(perf_usage_string);
209 }
65d4b265 210 tracing_path_set((*argv)[1]);
5beeded1
JB
211 if (envchanged)
212 *envchanged = 1;
213 (*argv)++;
214 (*argc)--;
99ce8e9f
JO
215 } else if (!strcmp(cmd, "--buildid-dir")) {
216 if (*argc < 2) {
217 fprintf(stderr, "No directory given for --buildid-dir.\n");
218 usage(perf_usage_string);
219 }
220 set_buildid_dir((*argv)[1]);
221 if (envchanged)
222 *envchanged = 1;
223 (*argv)++;
224 (*argc)--;
cfed95a6 225 } else if (!prefixcmp(cmd, CMD_DEBUGFS_DIR)) {
65d4b265 226 tracing_path_set(cmd + strlen(CMD_DEBUGFS_DIR));
9f30fffc 227 fprintf(stderr, "dir: %s\n", tracing_path);
5beeded1
JB
228 if (envchanged)
229 *envchanged = 1;
98a4179c
FW
230 } else if (!strcmp(cmd, "--list-cmds")) {
231 unsigned int i;
232
233 for (i = 0; i < ARRAY_SIZE(commands); i++) {
234 struct cmd_struct *p = commands+i;
235 printf("%s ", p->cmd);
236 }
ed457520 237 putchar('\n');
98a4179c 238 exit(0);
7335399a
YS
239 } else if (!strcmp(cmd, "--list-opts")) {
240 unsigned int i;
241
242 for (i = 0; i < ARRAY_SIZE(options)-1; i++) {
243 struct option *p = options+i;
244 printf("--%s ", p->long_name);
245 }
246 putchar('\n');
247 exit(0);
bbb2cea7
JO
248 } else if (!strcmp(cmd, "--debug")) {
249 if (*argc < 2) {
250 fprintf(stderr, "No variable specified for --debug.\n");
251 usage(perf_usage_string);
252 }
253 if (perf_debug_option((*argv)[1]))
254 usage(perf_usage_string);
255
256 (*argv)++;
257 (*argc)--;
07800601
IM
258 } else {
259 fprintf(stderr, "Unknown option: %s\n", cmd);
260 usage(perf_usage_string);
261 }
262
263 (*argv)++;
264 (*argc)--;
265 handled++;
266 }
267 return handled;
268}
269
07800601
IM
270#define RUN_SETUP (1<<0)
271#define USE_PAGER (1<<1)
07800601 272
07800601
IM
273static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
274{
275 int status;
276 struct stat st;
b2348e1d 277 char sbuf[STRERR_BUFSIZE];
07800601 278
5d06e691 279 if (use_browser == -1)
0020ce23 280 use_browser = check_browser_config(p->cmd);
5d06e691 281
07800601
IM
282 if (use_pager == -1 && p->option & RUN_SETUP)
283 use_pager = check_pager_config(p->cmd);
284 if (use_pager == -1 && p->option & USE_PAGER)
285 use_pager = 1;
286 commit_pager_choice();
287
2bdb2c27 288 perf_env__set_cmdline(&perf_env, argc, argv);
b0ad8ea6 289 status = p->fn(argc, argv);
8a0a9c7e 290 perf_config__exit();
f3a1f0ea 291 exit_browser(status);
aa36ddd7 292 perf_env__exit(&perf_env);
84c86ca1 293 bpf__clear();
f3a1f0ea 294
07800601
IM
295 if (status)
296 return status & 0xff;
297
298 /* Somebody closed stdout? */
299 if (fstat(fileno(stdout), &st))
300 return 0;
301 /* Ignore write errors for pipes and sockets.. */
302 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
303 return 0;
304
2a16bf8c 305 status = 1;
07800601 306 /* Check for ENOSPC and EIO errors.. */
2a16bf8c 307 if (fflush(stdout)) {
b2348e1d 308 fprintf(stderr, "write failure on standard output: %s",
c8b5f2c9 309 str_error_r(errno, sbuf, sizeof(sbuf)));
2a16bf8c
ACM
310 goto out;
311 }
312 if (ferror(stdout)) {
313 fprintf(stderr, "unknown write failure on standard output");
314 goto out;
315 }
316 if (fclose(stdout)) {
b2348e1d 317 fprintf(stderr, "close failed on standard output: %s",
c8b5f2c9 318 str_error_r(errno, sbuf, sizeof(sbuf)));
2a16bf8c
ACM
319 goto out;
320 }
321 status = 0;
322out:
323 return status;
07800601
IM
324}
325
326static void handle_internal_command(int argc, const char **argv)
327{
328 const char *cmd = argv[0];
f37a291c 329 unsigned int i;
07800601
IM
330 static const char ext[] = STRIP_EXTENSION;
331
332 if (sizeof(ext) > 1) {
333 i = strlen(argv[0]) - strlen(ext);
334 if (i > 0 && !strcmp(argv[0] + i, ext)) {
335 char *argv0 = strdup(argv[0]);
336 argv[0] = cmd = argv0;
337 argv0[i] = '\0';
338 }
339 }
340
341 /* Turn "perf cmd --help" into "perf help cmd" */
342 if (argc > 1 && !strcmp(argv[1], "--help")) {
343 argv[1] = argv[0];
344 argv[0] = cmd = "help";
345 }
346
347 for (i = 0; i < ARRAY_SIZE(commands); i++) {
348 struct cmd_struct *p = commands+i;
349 if (strcmp(p->cmd, cmd))
350 continue;
351 exit(run_builtin(p, argc, argv));
352 }
353}
354
355static void execv_dashed_external(const char **argv)
356{
5104ffb2 357 char *cmd;
07800601
IM
358 const char *tmp;
359 int status;
360
5104ffb2
ACM
361 if (asprintf(&cmd, "perf-%s", argv[0]) < 0)
362 goto do_die;
07800601
IM
363
364 /*
365 * argv[0] must be the perf command, but the argv array
366 * belongs to the caller, and may be reused in
367 * subsequent loop iterations. Save argv[0] and
368 * restore it on error.
369 */
370 tmp = argv[0];
5104ffb2 371 argv[0] = cmd;
07800601
IM
372
373 /*
374 * if we fail because the command is not found, it is
375 * OK to return. Otherwise, we just pass along the status code.
376 */
377 status = run_command_v_opt(argv, 0);
378 if (status != -ERR_RUN_COMMAND_EXEC) {
5104ffb2
ACM
379 if (IS_RUN_COMMAND_ERR(status)) {
380do_die:
42774806
ACM
381 pr_err("FATAL: unable to run '%s'", argv[0]);
382 status = -128;
5104ffb2 383 }
07800601
IM
384 exit(-status);
385 }
386 errno = ENOENT; /* as if we called execvp */
387
388 argv[0] = tmp;
5104ffb2 389 zfree(&cmd);
07800601
IM
390}
391
392static int run_argv(int *argcp, const char ***argv)
393{
c6867701
ACM
394 /* See if it's an internal command */
395 handle_internal_command(*argcp, *argv);
07800601 396
c6867701
ACM
397 /* .. then try the external ones */
398 execv_dashed_external(*argv);
399 return 0;
07800601
IM
400}
401
3af6e338
ACM
402static void pthread__block_sigwinch(void)
403{
404 sigset_t set;
405
406 sigemptyset(&set);
407 sigaddset(&set, SIGWINCH);
408 pthread_sigmask(SIG_BLOCK, &set, NULL);
409}
410
411void pthread__unblock_sigwinch(void)
412{
413 sigset_t set;
414
415 sigemptyset(&set);
416 sigaddset(&set, SIGWINCH);
417 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
418}
419
9a3dc28b
ACM
420#ifdef _SC_LEVEL1_DCACHE_LINESIZE
421#define cache_line_size(cacheline_sizep) *cacheline_sizep = sysconf(_SC_LEVEL1_DCACHE_LINESIZE)
422#else
423static void cache_line_size(int *cacheline_sizep)
424{
425 if (sysfs__read_int("devices/system/cpu/cpu0/cache/index0/coherency_line_size", cacheline_sizep))
8811e8ea 426 pr_debug("cannot determine cache line size");
9a3dc28b
ACM
427}
428#endif
429
07800601
IM
430int main(int argc, const char **argv)
431{
ecc4c561 432 int err;
07800601 433 const char *cmd;
b2348e1d 434 char sbuf[STRERR_BUFSIZE];
4cb93446 435 int value;
07800601 436
096d3558
JP
437 /* libsubcmd init */
438 exec_cmd_init("perf", PREFIX, PERF_EXEC_PATH, EXEC_PATH_ENVIRONMENT);
439 pager_init(PERF_PAGER_ENVIRONMENT);
440
918512b4 441 /* The page_size is placed in util object. */
0c1fe6b2 442 page_size = sysconf(_SC_PAGE_SIZE);
9a3dc28b 443 cache_line_size(&cacheline_size);
0c1fe6b2 444
4cb93446
ACM
445 if (sysctl__read_int("kernel/perf_event_max_stack", &value) == 0)
446 sysctl_perf_event_max_stack = value;
447
a29d5c9b
ACM
448 if (sysctl__read_int("kernel/perf_event_max_contexts_per_stack", &value) == 0)
449 sysctl_perf_event_max_contexts_per_stack = value;
450
46113a54 451 cmd = extract_argv0_path(argv[0]);
07800601
IM
452 if (!cmd)
453 cmd = "perf-help";
65d4b265 454
14cbfbeb
NK
455 srandom(time(NULL));
456
8a0a9c7e 457 perf_config__init();
ecc4c561
ACM
458 err = perf_config(perf_default_config, NULL);
459 if (err)
460 return err;
58cb9d65 461 set_buildid_dir(NULL);
b8cbb349 462
65d4b265
JO
463 /* get debugfs/tracefs mount point from /proc/mounts */
464 tracing_path_mount();
465
07800601
IM
466 /*
467 * "perf-xxxx" is the same as "perf xxxx", but we obviously:
468 *
469 * - cannot take flags in between the "perf" and the "xxxx".
470 * - cannot execute it externally (since it would just do
471 * the same thing over again)
472 *
473 * So we just directly call the internal command handler, and
474 * die if that one cannot handle it.
475 */
476 if (!prefixcmp(cmd, "perf-")) {
266dfb0b 477 cmd += 5;
07800601
IM
478 argv[0] = cmd;
479 handle_internal_command(argc, argv);
2a16bf8c
ACM
480 fprintf(stderr, "cannot handle %s internally", cmd);
481 goto out;
07800601 482 }
b52bc234 483 if (!prefixcmp(cmd, "trace")) {
1b572622 484#ifdef HAVE_LIBAUDIT_SUPPORT
b52bc234
ACM
485 setup_path();
486 argv[0] = "trace";
b0ad8ea6 487 return cmd_trace(argc, argv);
1b572622
ACM
488#else
489 fprintf(stderr,
490 "trace command not available: missing audit-libs devel package at build time.\n");
491 goto out;
b52bc234 492#endif
1b572622 493 }
07800601
IM
494 /* Look for flags.. */
495 argv++;
496 argc--;
497 handle_options(&argv, &argc, NULL);
498 commit_pager_choice();
45de34bb 499
07800601
IM
500 if (argc > 0) {
501 if (!prefixcmp(argv[0], "--"))
502 argv[0] += 2;
503 } else {
504 /* The user didn't specify a command; give them help */
502fc5c7 505 printf("\n usage: %s\n\n", perf_usage_string);
07800601 506 list_common_cmds_help();
502fc5c7 507 printf("\n %s\n\n", perf_more_info_string);
2a16bf8c 508 goto out;
07800601
IM
509 }
510 cmd = argv[0];
511
52502bf2
JO
512 test_attr__init();
513
07800601
IM
514 /*
515 * We use PATH to find perf commands, but we prepend some higher
659431fc 516 * precedence paths: the "--exec-path" option, the PERF_EXEC_PATH
07800601
IM
517 * environment, and the $(perfexecdir) from the Makefile at build
518 * time.
519 */
520 setup_path();
3af6e338
ACM
521 /*
522 * Block SIGWINCH notifications so that the thread that wants it can
523 * unblock and get syscalls like select interrupted instead of waiting
524 * forever while the signal goes to some other non interested thread.
525 */
526 pthread__block_sigwinch();
07800601 527
dd629cc0
JO
528 perf_debug_setup();
529
07800601 530 while (1) {
4c574159 531 static int done_help;
c6867701
ACM
532
533 run_argv(&argc, &argv);
8035e428 534
07800601
IM
535 if (errno != ENOENT)
536 break;
8035e428 537
07800601
IM
538 if (!done_help) {
539 cmd = argv[0] = help_unknown_cmd(cmd);
540 done_help = 1;
541 } else
542 break;
543 }
544
545 fprintf(stderr, "Failed to run command '%s': %s\n",
c8b5f2c9 546 cmd, str_error_r(errno, sbuf, sizeof(sbuf)));
2a16bf8c 547out:
07800601
IM
548 return 1;
549}