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