blob: 095b88207cd3e8f952b1b9676a0abf57f91dde50 [file] [log] [blame]
Ingo Molnarbf9e1872009-06-02 23:37:05 +02001/*
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 */
Ingo Molnar07800602009-04-20 15:00:56 +02009#include "builtin.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020010
Ingo Molnar148be2c2009-04-27 08:02:14 +020011#include "util/exec_cmd.h"
12#include "util/cache.h"
13#include "util/quote.h"
14#include "util/run-command.h"
Jason Baron5beeded2009-07-21 14:16:29 -040015#include "util/parse-events.h"
Clark Williams549104f2009-11-08 09:03:07 -060016#include "util/debugfs.h"
Irina Tirdea27683dc2012-09-08 03:43:19 +030017#include <pthread.h>
Ingo Molnar07800602009-04-20 15:00:56 +020018
19const char perf_usage_string[] =
Ingo Molnarcc13a592009-04-20 16:01:30 +020020 "perf [--version] [--help] COMMAND [ARGS]";
Ingo Molnar07800602009-04-20 15:00:56 +020021
22const char perf_more_info_string[] =
23 "See 'perf help COMMAND' for more information on a specific command.";
24
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -030025int use_browser = -1;
Ingo Molnar07800602009-04-20 15:00:56 +020026static int use_pager = -1;
Feng Tang70cb4e92012-10-30 11:56:02 +080027const char *input_name;
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -030028
Frederic Weisbecker98a41792012-08-09 16:31:51 +020029struct cmd_struct {
30 const char *cmd;
31 int (*fn)(int, const char **, const char *);
32 int option;
33};
34
35static struct cmd_struct commands[] = {
36 { "buildid-cache", cmd_buildid_cache, 0 },
37 { "buildid-list", cmd_buildid_list, 0 },
38 { "diff", cmd_diff, 0 },
39 { "evlist", cmd_evlist, 0 },
40 { "help", cmd_help, 0 },
41 { "list", cmd_list, 0 },
42 { "record", cmd_record, 0 },
43 { "report", cmd_report, 0 },
44 { "bench", cmd_bench, 0 },
45 { "stat", cmd_stat, 0 },
46 { "timechart", cmd_timechart, 0 },
47 { "top", cmd_top, 0 },
48 { "annotate", cmd_annotate, 0 },
49 { "version", cmd_version, 0 },
50 { "script", cmd_script, 0 },
51 { "sched", cmd_sched, 0 },
Namhyung Kim29a0fc92012-09-28 18:31:59 +090052#ifdef LIBELF_SUPPORT
Frederic Weisbecker98a41792012-08-09 16:31:51 +020053 { "probe", cmd_probe, 0 },
Namhyung Kim393be2e2012-08-06 13:41:21 +090054#endif
Frederic Weisbecker98a41792012-08-09 16:31:51 +020055 { "kmem", cmd_kmem, 0 },
56 { "lock", cmd_lock, 0 },
57 { "kvm", cmd_kvm, 0 },
58 { "test", cmd_test, 0 },
Namhyung Kimf315e162012-09-28 18:32:01 +090059#ifdef LIBAUDIT_SUPPORT
Arnaldo Carvalho de Melo514f1c62012-09-26 20:05:56 -030060 { "trace", cmd_trace, 0 },
Namhyung Kim4d290892012-09-27 20:23:38 +090061#endif
Frederic Weisbecker98a41792012-08-09 16:31:51 +020062 { "inject", cmd_inject, 0 },
63};
64
Ingo Molnar07800602009-04-20 15:00:56 +020065struct pager_config {
66 const char *cmd;
67 int val;
68};
69
70static int pager_command_config(const char *var, const char *value, void *data)
71{
72 struct pager_config *c = data;
73 if (!prefixcmp(var, "pager.") && !strcmp(var + 6, c->cmd))
74 c->val = perf_config_bool(var, value);
75 return 0;
76}
77
78/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
79int check_pager_config(const char *cmd)
80{
81 struct pager_config c;
82 c.cmd = cmd;
83 c.val = -1;
84 perf_config(pager_command_config, &c);
85 return c.val;
86}
87
Namhyung Kim0020ce22012-11-12 11:50:17 +090088static int browser_command_config(const char *var, const char *value, void *data)
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -030089{
90 struct pager_config *c = data;
91 if (!prefixcmp(var, "tui.") && !strcmp(var + 4, c->cmd))
92 c->val = perf_config_bool(var, value);
Namhyung Kim0020ce22012-11-12 11:50:17 +090093 if (!prefixcmp(var, "gtk.") && !strcmp(var + 4, c->cmd))
94 c->val = perf_config_bool(var, value) ? 2 : 0;
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -030095 return 0;
96}
97
Namhyung Kim0020ce22012-11-12 11:50:17 +090098/*
99 * returns 0 for "no tui", 1 for "use tui", 2 for "use gtk",
100 * and -1 for "not specified"
101 */
102static int check_browser_config(const char *cmd)
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300103{
104 struct pager_config c;
105 c.cmd = cmd;
106 c.val = -1;
Namhyung Kim0020ce22012-11-12 11:50:17 +0900107 perf_config(browser_command_config, &c);
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300108 return c.val;
109}
110
Thiago Farina4c574152010-01-27 21:05:55 -0200111static void commit_pager_choice(void)
112{
Ingo Molnar07800602009-04-20 15:00:56 +0200113 switch (use_pager) {
114 case 0:
115 setenv("PERF_PAGER", "cat", 1);
116 break;
117 case 1:
118 /* setup_pager(); */
119 break;
120 default:
121 break;
122 }
123}
124
Thiago Farina4c574152010-01-27 21:05:55 -0200125static int handle_options(const char ***argv, int *argc, int *envchanged)
Ingo Molnar07800602009-04-20 15:00:56 +0200126{
127 int handled = 0;
128
129 while (*argc > 0) {
130 const char *cmd = (*argv)[0];
131 if (cmd[0] != '-')
132 break;
133
134 /*
135 * For legacy reasons, the "version" and "help"
136 * commands can be written with "--" prepended
137 * to make them look like flags.
138 */
139 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
140 break;
141
142 /*
143 * Check remaining flags.
144 */
Vincent Legollcfed95a2009-10-13 10:18:16 +0200145 if (!prefixcmp(cmd, CMD_EXEC_PATH)) {
146 cmd += strlen(CMD_EXEC_PATH);
Ingo Molnar07800602009-04-20 15:00:56 +0200147 if (*cmd == '=')
148 perf_set_argv_exec_path(cmd + 1);
149 else {
150 puts(perf_exec_path());
151 exit(0);
152 }
153 } else if (!strcmp(cmd, "--html-path")) {
154 puts(system_path(PERF_HTML_PATH));
155 exit(0);
156 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
157 use_pager = 1;
158 } else if (!strcmp(cmd, "--no-pager")) {
159 use_pager = 0;
160 if (envchanged)
161 *envchanged = 1;
162 } else if (!strcmp(cmd, "--perf-dir")) {
163 if (*argc < 2) {
Thiago Farina4c574152010-01-27 21:05:55 -0200164 fprintf(stderr, "No directory given for --perf-dir.\n");
Ingo Molnar07800602009-04-20 15:00:56 +0200165 usage(perf_usage_string);
166 }
167 setenv(PERF_DIR_ENVIRONMENT, (*argv)[1], 1);
168 if (envchanged)
169 *envchanged = 1;
170 (*argv)++;
171 (*argc)--;
172 handled++;
Vincent Legollcfed95a2009-10-13 10:18:16 +0200173 } else if (!prefixcmp(cmd, CMD_PERF_DIR)) {
174 setenv(PERF_DIR_ENVIRONMENT, cmd + strlen(CMD_PERF_DIR), 1);
Ingo Molnar07800602009-04-20 15:00:56 +0200175 if (envchanged)
176 *envchanged = 1;
177 } else if (!strcmp(cmd, "--work-tree")) {
178 if (*argc < 2) {
Thiago Farina4c574152010-01-27 21:05:55 -0200179 fprintf(stderr, "No directory given for --work-tree.\n");
Ingo Molnar07800602009-04-20 15:00:56 +0200180 usage(perf_usage_string);
181 }
182 setenv(PERF_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
183 if (envchanged)
184 *envchanged = 1;
185 (*argv)++;
186 (*argc)--;
Vincent Legollcfed95a2009-10-13 10:18:16 +0200187 } else if (!prefixcmp(cmd, CMD_WORK_TREE)) {
188 setenv(PERF_WORK_TREE_ENVIRONMENT, cmd + strlen(CMD_WORK_TREE), 1);
Ingo Molnar07800602009-04-20 15:00:56 +0200189 if (envchanged)
190 *envchanged = 1;
Jason Baron5beeded2009-07-21 14:16:29 -0400191 } else if (!strcmp(cmd, "--debugfs-dir")) {
192 if (*argc < 2) {
193 fprintf(stderr, "No directory given for --debugfs-dir.\n");
194 usage(perf_usage_string);
195 }
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -0200196 debugfs_set_path((*argv)[1]);
Jason Baron5beeded2009-07-21 14:16:29 -0400197 if (envchanged)
198 *envchanged = 1;
199 (*argv)++;
200 (*argc)--;
Vincent Legollcfed95a2009-10-13 10:18:16 +0200201 } else if (!prefixcmp(cmd, CMD_DEBUGFS_DIR)) {
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -0200202 debugfs_set_path(cmd + strlen(CMD_DEBUGFS_DIR));
203 fprintf(stderr, "dir: %s\n", debugfs_mountpoint);
Jason Baron5beeded2009-07-21 14:16:29 -0400204 if (envchanged)
205 *envchanged = 1;
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200206 } else if (!strcmp(cmd, "--list-cmds")) {
207 unsigned int i;
208
209 for (i = 0; i < ARRAY_SIZE(commands); i++) {
210 struct cmd_struct *p = commands+i;
211 printf("%s ", p->cmd);
212 }
213 exit(0);
Ingo Molnar07800602009-04-20 15:00:56 +0200214 } else {
215 fprintf(stderr, "Unknown option: %s\n", cmd);
216 usage(perf_usage_string);
217 }
218
219 (*argv)++;
220 (*argc)--;
221 handled++;
222 }
223 return handled;
224}
225
226static int handle_alias(int *argcp, const char ***argv)
227{
228 int envchanged = 0, ret = 0, saved_errno = errno;
229 int count, option_count;
Thiago Farina4c574152010-01-27 21:05:55 -0200230 const char **new_argv;
Ingo Molnar07800602009-04-20 15:00:56 +0200231 const char *alias_command;
232 char *alias_string;
Ingo Molnar07800602009-04-20 15:00:56 +0200233
234 alias_command = (*argv)[0];
235 alias_string = alias_lookup(alias_command);
236 if (alias_string) {
237 if (alias_string[0] == '!') {
238 if (*argcp > 1) {
239 struct strbuf buf;
240
241 strbuf_init(&buf, PATH_MAX);
242 strbuf_addstr(&buf, alias_string);
243 sq_quote_argv(&buf, (*argv) + 1, PATH_MAX);
244 free(alias_string);
245 alias_string = buf.buf;
246 }
247 ret = system(alias_string + 1);
248 if (ret >= 0 && WIFEXITED(ret) &&
249 WEXITSTATUS(ret) != 127)
250 exit(WEXITSTATUS(ret));
251 die("Failed to run '%s' when expanding alias '%s'",
252 alias_string + 1, alias_command);
253 }
254 count = split_cmdline(alias_string, &new_argv);
255 if (count < 0)
256 die("Bad alias.%s string", alias_command);
257 option_count = handle_options(&new_argv, &count, &envchanged);
258 if (envchanged)
259 die("alias '%s' changes environment variables\n"
260 "You can use '!perf' in the alias to do this.",
261 alias_command);
262 memmove(new_argv - option_count, new_argv,
263 count * sizeof(char *));
264 new_argv -= option_count;
265
266 if (count < 1)
267 die("empty alias for %s", alias_command);
268
269 if (!strcmp(alias_command, new_argv[0]))
270 die("recursive alias: %s", alias_command);
271
Thiago Farina4c574152010-01-27 21:05:55 -0200272 new_argv = realloc(new_argv, sizeof(char *) *
Ingo Molnar07800602009-04-20 15:00:56 +0200273 (count + *argcp + 1));
274 /* insert after command name */
Thiago Farina4c574152010-01-27 21:05:55 -0200275 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
276 new_argv[count + *argcp] = NULL;
Ingo Molnar07800602009-04-20 15:00:56 +0200277
278 *argv = new_argv;
279 *argcp += count - 1;
280
281 ret = 1;
282 }
283
284 errno = saved_errno;
285
286 return ret;
287}
288
289const char perf_version_string[] = PERF_VERSION;
290
291#define RUN_SETUP (1<<0)
292#define USE_PAGER (1<<1)
293/*
294 * require working tree to be present -- anything uses this needs
295 * RUN_SETUP for reading from the configuration file.
296 */
297#define NEED_WORK_TREE (1<<2)
298
Ingo Molnar07800602009-04-20 15:00:56 +0200299static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
300{
301 int status;
302 struct stat st;
303 const char *prefix;
304
305 prefix = NULL;
306 if (p->option & RUN_SETUP)
307 prefix = NULL; /* setup_perf_directory(); */
308
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300309 if (use_browser == -1)
Namhyung Kim0020ce22012-11-12 11:50:17 +0900310 use_browser = check_browser_config(p->cmd);
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300311
Ingo Molnar07800602009-04-20 15:00:56 +0200312 if (use_pager == -1 && p->option & RUN_SETUP)
313 use_pager = check_pager_config(p->cmd);
314 if (use_pager == -1 && p->option & USE_PAGER)
315 use_pager = 1;
316 commit_pager_choice();
317
Ingo Molnar07800602009-04-20 15:00:56 +0200318 status = p->fn(argc, argv, prefix);
Arnaldo Carvalho de Melof3a1f0e2010-03-22 13:10:25 -0300319 exit_browser(status);
320
Ingo Molnar07800602009-04-20 15:00:56 +0200321 if (status)
322 return status & 0xff;
323
324 /* Somebody closed stdout? */
325 if (fstat(fileno(stdout), &st))
326 return 0;
327 /* Ignore write errors for pipes and sockets.. */
328 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
329 return 0;
330
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300331 status = 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200332 /* Check for ENOSPC and EIO errors.. */
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300333 if (fflush(stdout)) {
334 fprintf(stderr, "write failure on standard output: %s", strerror(errno));
335 goto out;
336 }
337 if (ferror(stdout)) {
338 fprintf(stderr, "unknown write failure on standard output");
339 goto out;
340 }
341 if (fclose(stdout)) {
342 fprintf(stderr, "close failed on standard output: %s", strerror(errno));
343 goto out;
344 }
345 status = 0;
346out:
347 return status;
Ingo Molnar07800602009-04-20 15:00:56 +0200348}
349
350static void handle_internal_command(int argc, const char **argv)
351{
352 const char *cmd = argv[0];
Ingo Molnarf37a2912009-07-01 12:37:06 +0200353 unsigned int i;
Ingo Molnar07800602009-04-20 15:00:56 +0200354 static const char ext[] = STRIP_EXTENSION;
355
356 if (sizeof(ext) > 1) {
357 i = strlen(argv[0]) - strlen(ext);
358 if (i > 0 && !strcmp(argv[0] + i, ext)) {
359 char *argv0 = strdup(argv[0]);
360 argv[0] = cmd = argv0;
361 argv0[i] = '\0';
362 }
363 }
364
365 /* Turn "perf cmd --help" into "perf help cmd" */
366 if (argc > 1 && !strcmp(argv[1], "--help")) {
367 argv[1] = argv[0];
368 argv[0] = cmd = "help";
369 }
370
371 for (i = 0; i < ARRAY_SIZE(commands); i++) {
372 struct cmd_struct *p = commands+i;
373 if (strcmp(p->cmd, cmd))
374 continue;
375 exit(run_builtin(p, argc, argv));
376 }
377}
378
379static void execv_dashed_external(const char **argv)
380{
381 struct strbuf cmd = STRBUF_INIT;
382 const char *tmp;
383 int status;
384
385 strbuf_addf(&cmd, "perf-%s", argv[0]);
386
387 /*
388 * argv[0] must be the perf command, but the argv array
389 * belongs to the caller, and may be reused in
390 * subsequent loop iterations. Save argv[0] and
391 * restore it on error.
392 */
393 tmp = argv[0];
394 argv[0] = cmd.buf;
395
396 /*
397 * if we fail because the command is not found, it is
398 * OK to return. Otherwise, we just pass along the status code.
399 */
400 status = run_command_v_opt(argv, 0);
401 if (status != -ERR_RUN_COMMAND_EXEC) {
402 if (IS_RUN_COMMAND_ERR(status))
403 die("unable to run '%s'", argv[0]);
404 exit(-status);
405 }
406 errno = ENOENT; /* as if we called execvp */
407
408 argv[0] = tmp;
409
410 strbuf_release(&cmd);
411}
412
413static int run_argv(int *argcp, const char ***argv)
414{
415 int done_alias = 0;
416
417 while (1) {
418 /* See if it's an internal command */
419 handle_internal_command(*argcp, *argv);
420
421 /* .. then try the external ones */
422 execv_dashed_external(*argv);
423
424 /* It could be an alias -- this works around the insanity
425 * of overriding "perf log" with "perf show" by having
426 * alias.log = show
427 */
428 if (done_alias || !handle_alias(argcp, argv))
429 break;
430 done_alias = 1;
431 }
432
433 return done_alias;
434}
435
Arnaldo Carvalho de Melo3af6e332011-10-13 08:52:46 -0300436static void pthread__block_sigwinch(void)
437{
438 sigset_t set;
439
440 sigemptyset(&set);
441 sigaddset(&set, SIGWINCH);
442 pthread_sigmask(SIG_BLOCK, &set, NULL);
443}
444
445void pthread__unblock_sigwinch(void)
446{
447 sigset_t set;
448
449 sigemptyset(&set);
450 sigaddset(&set, SIGWINCH);
451 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
452}
453
Ingo Molnar07800602009-04-20 15:00:56 +0200454int main(int argc, const char **argv)
455{
456 const char *cmd;
457
Arnaldo Carvalho de Melo0c1fe6b2012-10-06 14:57:10 -0300458 page_size = sysconf(_SC_PAGE_SIZE);
459
Ingo Molnar07800602009-04-20 15:00:56 +0200460 cmd = perf_extract_argv0_path(argv[0]);
461 if (!cmd)
462 cmd = "perf-help";
Jason Baron5beeded2009-07-21 14:16:29 -0400463 /* get debugfs mount point from /proc/mounts */
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -0200464 debugfs_mount(NULL);
Ingo Molnar07800602009-04-20 15:00:56 +0200465 /*
466 * "perf-xxxx" is the same as "perf xxxx", but we obviously:
467 *
468 * - cannot take flags in between the "perf" and the "xxxx".
469 * - cannot execute it externally (since it would just do
470 * the same thing over again)
471 *
472 * So we just directly call the internal command handler, and
473 * die if that one cannot handle it.
474 */
475 if (!prefixcmp(cmd, "perf-")) {
Peter Zijlstra266dfb02009-05-25 14:45:24 +0200476 cmd += 5;
Ingo Molnar07800602009-04-20 15:00:56 +0200477 argv[0] = cmd;
478 handle_internal_command(argc, argv);
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300479 fprintf(stderr, "cannot handle %s internally", cmd);
480 goto out;
Ingo Molnar07800602009-04-20 15:00:56 +0200481 }
482
483 /* Look for flags.. */
484 argv++;
485 argc--;
486 handle_options(&argv, &argc, NULL);
487 commit_pager_choice();
Stephane Eranian45de34b2010-06-01 21:25:01 +0200488 set_buildid_dir();
489
Ingo Molnar07800602009-04-20 15:00:56 +0200490 if (argc > 0) {
491 if (!prefixcmp(argv[0], "--"))
492 argv[0] += 2;
493 } else {
494 /* The user didn't specify a command; give them help */
Ingo Molnar502fc5c2009-03-13 03:20:49 +0100495 printf("\n usage: %s\n\n", perf_usage_string);
Ingo Molnar07800602009-04-20 15:00:56 +0200496 list_common_cmds_help();
Ingo Molnar502fc5c2009-03-13 03:20:49 +0100497 printf("\n %s\n\n", perf_more_info_string);
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300498 goto out;
Ingo Molnar07800602009-04-20 15:00:56 +0200499 }
500 cmd = argv[0];
501
Jiri Olsa52502bf2012-10-31 15:52:47 +0100502 test_attr__init();
503
Ingo Molnar07800602009-04-20 15:00:56 +0200504 /*
505 * We use PATH to find perf commands, but we prepend some higher
Uwe Kleine-König659431f2010-01-18 16:02:48 +0100506 * precedence paths: the "--exec-path" option, the PERF_EXEC_PATH
Ingo Molnar07800602009-04-20 15:00:56 +0200507 * environment, and the $(perfexecdir) from the Makefile at build
508 * time.
509 */
510 setup_path();
Arnaldo Carvalho de Melo3af6e332011-10-13 08:52:46 -0300511 /*
512 * Block SIGWINCH notifications so that the thread that wants it can
513 * unblock and get syscalls like select interrupted instead of waiting
514 * forever while the signal goes to some other non interested thread.
515 */
516 pthread__block_sigwinch();
Ingo Molnar07800602009-04-20 15:00:56 +0200517
518 while (1) {
Thiago Farina4c574152010-01-27 21:05:55 -0200519 static int done_help;
520 static int was_alias;
Ingo Molnar8035e422009-06-06 15:19:13 +0200521
Ingo Molnar07800602009-04-20 15:00:56 +0200522 was_alias = run_argv(&argc, &argv);
523 if (errno != ENOENT)
524 break;
Ingo Molnar8035e422009-06-06 15:19:13 +0200525
Ingo Molnar07800602009-04-20 15:00:56 +0200526 if (was_alias) {
527 fprintf(stderr, "Expansion of alias '%s' failed; "
528 "'%s' is not a perf-command\n",
529 cmd, argv[0]);
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300530 goto out;
Ingo Molnar07800602009-04-20 15:00:56 +0200531 }
532 if (!done_help) {
533 cmd = argv[0] = help_unknown_cmd(cmd);
534 done_help = 1;
535 } else
536 break;
537 }
538
539 fprintf(stderr, "Failed to run command '%s': %s\n",
540 cmd, strerror(errno));
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300541out:
Ingo Molnar07800602009-04-20 15:00:56 +0200542 return 1;
543}