blob: 34bcf90f887102cdfa2f0a1a12b7ef2a8eba4c03 [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
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -030011#include "util/env.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060012#include <subcmd/exec-cmd.h>
Taeung Song41840d22016-06-23 17:55:17 +090013#include "util/config.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020014#include "util/quote.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060015#include <subcmd/run-command.h>
Jason Baron5beeded2009-07-21 14:16:29 -040016#include "util/parse-events.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060017#include <subcmd/parse-options.h>
Wang Nan84c86ca2015-10-14 12:41:14 +000018#include "util/bpf-loader.h"
Jiri Olsabbb2cea2014-07-17 12:55:00 +020019#include "util/debug.h"
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -030020#include <api/fs/fs.h>
Jiri Olsa592d5a62015-09-02 09:56:34 +020021#include <api/fs/tracing_path.h>
Irina Tirdea27683dc2012-09-08 03:43:19 +030022#include <pthread.h>
Namhyung Kim14cbfbe2016-01-07 20:41:53 +090023#include <stdlib.h>
24#include <time.h>
Ingo Molnar07800602009-04-20 15:00:56 +020025
26const char perf_usage_string[] =
Jiri Olsa78a1b502014-07-18 09:11:30 +020027 "perf [--version] [--help] [OPTIONS] COMMAND [ARGS]";
Ingo Molnar07800602009-04-20 15:00:56 +020028
29const char perf_more_info_string[] =
30 "See 'perf help COMMAND' for more information on a specific command.";
31
32static int use_pager = -1;
Feng Tang70cb4e92012-10-30 11:56:02 +080033const char *input_name;
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -030034
Frederic Weisbecker98a41792012-08-09 16:31:51 +020035struct cmd_struct {
36 const char *cmd;
37 int (*fn)(int, const char **, const char *);
38 int option;
39};
40
41static struct cmd_struct commands[] = {
42 { "buildid-cache", cmd_buildid_cache, 0 },
43 { "buildid-list", cmd_buildid_list, 0 },
Taeung Song30862f22015-11-17 22:53:21 +090044 { "config", cmd_config, 0 },
Jiri Olsa7aef3bf2016-09-22 17:36:38 +020045 { "c2c", cmd_c2c, 0 },
Frederic Weisbecker98a41792012-08-09 16:31:51 +020046 { "diff", cmd_diff, 0 },
47 { "evlist", cmd_evlist, 0 },
48 { "help", cmd_help, 0 },
Arnaldo Carvalho de Melo35563772017-01-05 15:33:32 -030049 { "kallsyms", cmd_kallsyms, 0 },
Frederic Weisbecker98a41792012-08-09 16:31:51 +020050 { "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 },
Ingo Molnar89fe8082013-09-30 12:07:11 +020061#ifdef HAVE_LIBELF_SUPPORT
Frederic Weisbecker98a41792012-08-09 16:31:51 +020062 { "probe", cmd_probe, 0 },
Namhyung Kim393be2e2012-08-06 13:41:21 +090063#endif
Frederic Weisbecker98a41792012-08-09 16:31:51 +020064 { "kmem", cmd_kmem, 0 },
65 { "lock", cmd_lock, 0 },
66 { "kvm", cmd_kvm, 0 },
67 { "test", cmd_test, 0 },
Ingo Molnar89fe8082013-09-30 12:07:11 +020068#ifdef HAVE_LIBAUDIT_SUPPORT
Arnaldo Carvalho de Melo514f1c62012-09-26 20:05:56 -030069 { "trace", cmd_trace, 0 },
Namhyung Kim4d290892012-09-27 20:23:38 +090070#endif
Frederic Weisbecker98a41792012-08-09 16:31:51 +020071 { "inject", cmd_inject, 0 },
Stephane Eranian028f12e2013-01-24 16:10:38 +010072 { "mem", cmd_mem, 0 },
Jiri Olsa2245bf12015-02-20 23:16:59 +010073 { "data", cmd_data, 0 },
Namhyung Kimd01f4e82013-03-07 21:45:20 +090074 { "ftrace", cmd_ftrace, 0 },
Frederic Weisbecker98a41792012-08-09 16:31:51 +020075};
76
Ingo Molnar07800602009-04-20 15:00:56 +020077struct 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{
93 struct pager_config c;
94 c.cmd = cmd;
95 c.val = -1;
96 perf_config(pager_command_config, &c);
97 return c.val;
98}
99
Namhyung Kim0020ce22012-11-12 11:50:17 +0900100static int browser_command_config(const char *var, const char *value, void *data)
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300101{
102 struct pager_config *c = data;
103 if (!prefixcmp(var, "tui.") && !strcmp(var + 4, c->cmd))
104 c->val = perf_config_bool(var, value);
Namhyung Kim0020ce22012-11-12 11:50:17 +0900105 if (!prefixcmp(var, "gtk.") && !strcmp(var + 4, c->cmd))
106 c->val = perf_config_bool(var, value) ? 2 : 0;
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300107 return 0;
108}
109
Namhyung Kim0020ce22012-11-12 11:50:17 +0900110/*
111 * returns 0 for "no tui", 1 for "use tui", 2 for "use gtk",
112 * and -1 for "not specified"
113 */
114static int check_browser_config(const char *cmd)
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300115{
116 struct pager_config c;
117 c.cmd = cmd;
118 c.val = -1;
Namhyung Kim0020ce22012-11-12 11:50:17 +0900119 perf_config(browser_command_config, &c);
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300120 return c.val;
121}
122
Thiago Farina4c574152010-01-27 21:05:55 -0200123static void commit_pager_choice(void)
124{
Ingo Molnar07800602009-04-20 15:00:56 +0200125 switch (use_pager) {
126 case 0:
Josh Poimboeuf096d3552015-12-15 09:39:35 -0600127 setenv(PERF_PAGER_ENVIRONMENT, "cat", 1);
Ingo Molnar07800602009-04-20 15:00:56 +0200128 break;
129 case 1:
130 /* setup_pager(); */
131 break;
132 default:
133 break;
134 }
135}
136
Yunlong Song73353992015-02-27 18:21:31 +0800137struct option options[] = {
138 OPT_ARGUMENT("help", "help"),
139 OPT_ARGUMENT("version", "version"),
140 OPT_ARGUMENT("exec-path", "exec-path"),
141 OPT_ARGUMENT("html-path", "html-path"),
142 OPT_ARGUMENT("paginate", "paginate"),
143 OPT_ARGUMENT("no-pager", "no-pager"),
Yunlong Song73353992015-02-27 18:21:31 +0800144 OPT_ARGUMENT("debugfs-dir", "debugfs-dir"),
145 OPT_ARGUMENT("buildid-dir", "buildid-dir"),
146 OPT_ARGUMENT("list-cmds", "list-cmds"),
147 OPT_ARGUMENT("list-opts", "list-opts"),
148 OPT_ARGUMENT("debug", "debug"),
149 OPT_END()
150};
151
Thiago Farina4c574152010-01-27 21:05:55 -0200152static int handle_options(const char ***argv, int *argc, int *envchanged)
Ingo Molnar07800602009-04-20 15:00:56 +0200153{
154 int handled = 0;
155
156 while (*argc > 0) {
157 const char *cmd = (*argv)[0];
158 if (cmd[0] != '-')
159 break;
160
161 /*
162 * For legacy reasons, the "version" and "help"
163 * commands can be written with "--" prepended
164 * to make them look like flags.
165 */
166 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
167 break;
168
169 /*
Jiri Olsaa1853e22015-10-05 20:06:09 +0200170 * Shortcut for '-h' and '-v' options to invoke help
171 * and version command.
172 */
173 if (!strcmp(cmd, "-h")) {
174 (*argv)[0] = "--help";
175 break;
176 }
177
178 if (!strcmp(cmd, "-v")) {
179 (*argv)[0] = "--version";
180 break;
181 }
182
183 /*
Ingo Molnar07800602009-04-20 15:00:56 +0200184 * Check remaining flags.
185 */
Vincent Legollcfed95a2009-10-13 10:18:16 +0200186 if (!prefixcmp(cmd, CMD_EXEC_PATH)) {
187 cmd += strlen(CMD_EXEC_PATH);
Ingo Molnar07800602009-04-20 15:00:56 +0200188 if (*cmd == '=')
Josh Poimboeuf46113a52015-12-15 09:39:37 -0600189 set_argv_exec_path(cmd + 1);
Ingo Molnar07800602009-04-20 15:00:56 +0200190 else {
Josh Poimboeuf46113a52015-12-15 09:39:37 -0600191 puts(get_argv_exec_path());
Ingo Molnar07800602009-04-20 15:00:56 +0200192 exit(0);
193 }
194 } else if (!strcmp(cmd, "--html-path")) {
195 puts(system_path(PERF_HTML_PATH));
196 exit(0);
197 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
198 use_pager = 1;
199 } else if (!strcmp(cmd, "--no-pager")) {
200 use_pager = 0;
201 if (envchanged)
202 *envchanged = 1;
Jason Baron5beeded2009-07-21 14:16:29 -0400203 } else if (!strcmp(cmd, "--debugfs-dir")) {
204 if (*argc < 2) {
205 fprintf(stderr, "No directory given for --debugfs-dir.\n");
206 usage(perf_usage_string);
207 }
Jiri Olsa65d4b262015-09-02 09:56:33 +0200208 tracing_path_set((*argv)[1]);
Jason Baron5beeded2009-07-21 14:16:29 -0400209 if (envchanged)
210 *envchanged = 1;
211 (*argv)++;
212 (*argc)--;
Jiri Olsa99ce8e92014-12-01 20:06:24 +0100213 } else if (!strcmp(cmd, "--buildid-dir")) {
214 if (*argc < 2) {
215 fprintf(stderr, "No directory given for --buildid-dir.\n");
216 usage(perf_usage_string);
217 }
218 set_buildid_dir((*argv)[1]);
219 if (envchanged)
220 *envchanged = 1;
221 (*argv)++;
222 (*argc)--;
Vincent Legollcfed95a2009-10-13 10:18:16 +0200223 } else if (!prefixcmp(cmd, CMD_DEBUGFS_DIR)) {
Jiri Olsa65d4b262015-09-02 09:56:33 +0200224 tracing_path_set(cmd + strlen(CMD_DEBUGFS_DIR));
Jiri Olsa9f30fff2015-08-26 15:46:45 +0200225 fprintf(stderr, "dir: %s\n", tracing_path);
Jason Baron5beeded2009-07-21 14:16:29 -0400226 if (envchanged)
227 *envchanged = 1;
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200228 } else if (!strcmp(cmd, "--list-cmds")) {
229 unsigned int i;
230
231 for (i = 0; i < ARRAY_SIZE(commands); i++) {
232 struct cmd_struct *p = commands+i;
233 printf("%s ", p->cmd);
234 }
Yunlong Songed457522015-02-27 18:21:29 +0800235 putchar('\n');
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200236 exit(0);
Yunlong Song73353992015-02-27 18:21:31 +0800237 } else if (!strcmp(cmd, "--list-opts")) {
238 unsigned int i;
239
240 for (i = 0; i < ARRAY_SIZE(options)-1; i++) {
241 struct option *p = options+i;
242 printf("--%s ", p->long_name);
243 }
244 putchar('\n');
245 exit(0);
Jiri Olsabbb2cea2014-07-17 12:55:00 +0200246 } else if (!strcmp(cmd, "--debug")) {
247 if (*argc < 2) {
248 fprintf(stderr, "No variable specified for --debug.\n");
249 usage(perf_usage_string);
250 }
251 if (perf_debug_option((*argv)[1]))
252 usage(perf_usage_string);
253
254 (*argv)++;
255 (*argc)--;
Ingo Molnar07800602009-04-20 15:00:56 +0200256 } else {
257 fprintf(stderr, "Unknown option: %s\n", cmd);
258 usage(perf_usage_string);
259 }
260
261 (*argv)++;
262 (*argc)--;
263 handled++;
264 }
265 return handled;
266}
267
268static int handle_alias(int *argcp, const char ***argv)
269{
270 int envchanged = 0, ret = 0, saved_errno = errno;
271 int count, option_count;
Thiago Farina4c574152010-01-27 21:05:55 -0200272 const char **new_argv;
Ingo Molnar07800602009-04-20 15:00:56 +0200273 const char *alias_command;
274 char *alias_string;
Ingo Molnar07800602009-04-20 15:00:56 +0200275
276 alias_command = (*argv)[0];
277 alias_string = alias_lookup(alias_command);
278 if (alias_string) {
279 if (alias_string[0] == '!') {
280 if (*argcp > 1) {
281 struct strbuf buf;
282
Masami Hiramatsu70a68982016-05-10 14:47:26 +0900283 if (strbuf_init(&buf, PATH_MAX) < 0 ||
284 strbuf_addstr(&buf, alias_string) < 0 ||
285 sq_quote_argv(&buf, (*argv) + 1,
286 PATH_MAX) < 0)
287 die("Failed to allocate memory.");
Ingo Molnar07800602009-04-20 15:00:56 +0200288 free(alias_string);
289 alias_string = buf.buf;
290 }
291 ret = system(alias_string + 1);
292 if (ret >= 0 && WIFEXITED(ret) &&
293 WEXITSTATUS(ret) != 127)
294 exit(WEXITSTATUS(ret));
295 die("Failed to run '%s' when expanding alias '%s'",
296 alias_string + 1, alias_command);
297 }
298 count = split_cmdline(alias_string, &new_argv);
299 if (count < 0)
300 die("Bad alias.%s string", alias_command);
301 option_count = handle_options(&new_argv, &count, &envchanged);
302 if (envchanged)
303 die("alias '%s' changes environment variables\n"
304 "You can use '!perf' in the alias to do this.",
305 alias_command);
306 memmove(new_argv - option_count, new_argv,
307 count * sizeof(char *));
308 new_argv -= option_count;
309
310 if (count < 1)
311 die("empty alias for %s", alias_command);
312
313 if (!strcmp(alias_command, new_argv[0]))
314 die("recursive alias: %s", alias_command);
315
Thiago Farina4c574152010-01-27 21:05:55 -0200316 new_argv = realloc(new_argv, sizeof(char *) *
Ingo Molnar07800602009-04-20 15:00:56 +0200317 (count + *argcp + 1));
318 /* insert after command name */
Thiago Farina4c574152010-01-27 21:05:55 -0200319 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
320 new_argv[count + *argcp] = NULL;
Ingo Molnar07800602009-04-20 15:00:56 +0200321
322 *argv = new_argv;
323 *argcp += count - 1;
324
325 ret = 1;
326 }
327
328 errno = saved_errno;
329
330 return ret;
331}
332
Ingo Molnar07800602009-04-20 15:00:56 +0200333#define RUN_SETUP (1<<0)
334#define USE_PAGER (1<<1)
Ingo Molnar07800602009-04-20 15:00:56 +0200335
Ingo Molnar07800602009-04-20 15:00:56 +0200336static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
337{
338 int status;
339 struct stat st;
340 const char *prefix;
Masami Hiramatsub2348e12014-08-14 02:22:32 +0000341 char sbuf[STRERR_BUFSIZE];
Ingo Molnar07800602009-04-20 15:00:56 +0200342
343 prefix = NULL;
344 if (p->option & RUN_SETUP)
345 prefix = NULL; /* setup_perf_directory(); */
346
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300347 if (use_browser == -1)
Namhyung Kim0020ce22012-11-12 11:50:17 +0900348 use_browser = check_browser_config(p->cmd);
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -0300349
Ingo Molnar07800602009-04-20 15:00:56 +0200350 if (use_pager == -1 && p->option & RUN_SETUP)
351 use_pager = check_pager_config(p->cmd);
352 if (use_pager == -1 && p->option & USE_PAGER)
353 use_pager = 1;
354 commit_pager_choice();
355
Josh Poimboeuf2bdb2c22015-12-07 22:21:46 -0600356 perf_env__set_cmdline(&perf_env, argc, argv);
Ingo Molnar07800602009-04-20 15:00:56 +0200357 status = p->fn(argc, argv, prefix);
Taeung Song8a0a9c72016-06-23 23:14:31 +0900358 perf_config__exit();
Arnaldo Carvalho de Melof3a1f0e2010-03-22 13:10:25 -0300359 exit_browser(status);
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300360 perf_env__exit(&perf_env);
Wang Nan84c86ca2015-10-14 12:41:14 +0000361 bpf__clear();
Arnaldo Carvalho de Melof3a1f0e2010-03-22 13:10:25 -0300362
Ingo Molnar07800602009-04-20 15:00:56 +0200363 if (status)
364 return status & 0xff;
365
366 /* Somebody closed stdout? */
367 if (fstat(fileno(stdout), &st))
368 return 0;
369 /* Ignore write errors for pipes and sockets.. */
370 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
371 return 0;
372
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300373 status = 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200374 /* Check for ENOSPC and EIO errors.. */
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300375 if (fflush(stdout)) {
Masami Hiramatsub2348e12014-08-14 02:22:32 +0000376 fprintf(stderr, "write failure on standard output: %s",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300377 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300378 goto out;
379 }
380 if (ferror(stdout)) {
381 fprintf(stderr, "unknown write failure on standard output");
382 goto out;
383 }
384 if (fclose(stdout)) {
Masami Hiramatsub2348e12014-08-14 02:22:32 +0000385 fprintf(stderr, "close failed on standard output: %s",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300386 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300387 goto out;
388 }
389 status = 0;
390out:
391 return status;
Ingo Molnar07800602009-04-20 15:00:56 +0200392}
393
394static void handle_internal_command(int argc, const char **argv)
395{
396 const char *cmd = argv[0];
Ingo Molnarf37a2912009-07-01 12:37:06 +0200397 unsigned int i;
Ingo Molnar07800602009-04-20 15:00:56 +0200398 static const char ext[] = STRIP_EXTENSION;
399
400 if (sizeof(ext) > 1) {
401 i = strlen(argv[0]) - strlen(ext);
402 if (i > 0 && !strcmp(argv[0] + i, ext)) {
403 char *argv0 = strdup(argv[0]);
404 argv[0] = cmd = argv0;
405 argv0[i] = '\0';
406 }
407 }
408
409 /* Turn "perf cmd --help" into "perf help cmd" */
410 if (argc > 1 && !strcmp(argv[1], "--help")) {
411 argv[1] = argv[0];
412 argv[0] = cmd = "help";
413 }
414
415 for (i = 0; i < ARRAY_SIZE(commands); i++) {
416 struct cmd_struct *p = commands+i;
417 if (strcmp(p->cmd, cmd))
418 continue;
419 exit(run_builtin(p, argc, argv));
420 }
421}
422
423static void execv_dashed_external(const char **argv)
424{
Arnaldo Carvalho de Melo5104ffb2016-02-25 10:14:50 -0300425 char *cmd;
Ingo Molnar07800602009-04-20 15:00:56 +0200426 const char *tmp;
427 int status;
428
Arnaldo Carvalho de Melo5104ffb2016-02-25 10:14:50 -0300429 if (asprintf(&cmd, "perf-%s", argv[0]) < 0)
430 goto do_die;
Ingo Molnar07800602009-04-20 15:00:56 +0200431
432 /*
433 * argv[0] must be the perf command, but the argv array
434 * belongs to the caller, and may be reused in
435 * subsequent loop iterations. Save argv[0] and
436 * restore it on error.
437 */
438 tmp = argv[0];
Arnaldo Carvalho de Melo5104ffb2016-02-25 10:14:50 -0300439 argv[0] = cmd;
Ingo Molnar07800602009-04-20 15:00:56 +0200440
441 /*
442 * if we fail because the command is not found, it is
443 * OK to return. Otherwise, we just pass along the status code.
444 */
445 status = run_command_v_opt(argv, 0);
446 if (status != -ERR_RUN_COMMAND_EXEC) {
Arnaldo Carvalho de Melo5104ffb2016-02-25 10:14:50 -0300447 if (IS_RUN_COMMAND_ERR(status)) {
448do_die:
Ingo Molnar07800602009-04-20 15:00:56 +0200449 die("unable to run '%s'", argv[0]);
Arnaldo Carvalho de Melo5104ffb2016-02-25 10:14:50 -0300450 }
Ingo Molnar07800602009-04-20 15:00:56 +0200451 exit(-status);
452 }
453 errno = ENOENT; /* as if we called execvp */
454
455 argv[0] = tmp;
Arnaldo Carvalho de Melo5104ffb2016-02-25 10:14:50 -0300456 zfree(&cmd);
Ingo Molnar07800602009-04-20 15:00:56 +0200457}
458
459static int run_argv(int *argcp, const char ***argv)
460{
461 int done_alias = 0;
462
463 while (1) {
464 /* See if it's an internal command */
465 handle_internal_command(*argcp, *argv);
466
467 /* .. then try the external ones */
468 execv_dashed_external(*argv);
469
470 /* It could be an alias -- this works around the insanity
471 * of overriding "perf log" with "perf show" by having
472 * alias.log = show
473 */
474 if (done_alias || !handle_alias(argcp, argv))
475 break;
476 done_alias = 1;
477 }
478
479 return done_alias;
480}
481
Arnaldo Carvalho de Melo3af6e332011-10-13 08:52:46 -0300482static void pthread__block_sigwinch(void)
483{
484 sigset_t set;
485
486 sigemptyset(&set);
487 sigaddset(&set, SIGWINCH);
488 pthread_sigmask(SIG_BLOCK, &set, NULL);
489}
490
491void pthread__unblock_sigwinch(void)
492{
493 sigset_t set;
494
495 sigemptyset(&set);
496 sigaddset(&set, SIGWINCH);
497 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
498}
499
Arnaldo Carvalho de Melo9a3dc282016-07-12 11:01:17 -0300500#ifdef _SC_LEVEL1_DCACHE_LINESIZE
501#define cache_line_size(cacheline_sizep) *cacheline_sizep = sysconf(_SC_LEVEL1_DCACHE_LINESIZE)
502#else
503static void cache_line_size(int *cacheline_sizep)
504{
505 if (sysfs__read_int("devices/system/cpu/cpu0/cache/index0/coherency_line_size", cacheline_sizep))
Arnaldo Carvalho de Melo8811e8e2016-07-15 10:05:19 -0300506 pr_debug("cannot determine cache line size");
Arnaldo Carvalho de Melo9a3dc282016-07-12 11:01:17 -0300507}
508#endif
509
Ingo Molnar07800602009-04-20 15:00:56 +0200510int main(int argc, const char **argv)
511{
512 const char *cmd;
Masami Hiramatsub2348e12014-08-14 02:22:32 +0000513 char sbuf[STRERR_BUFSIZE];
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -0300514 int value;
Ingo Molnar07800602009-04-20 15:00:56 +0200515
Josh Poimboeuf096d3552015-12-15 09:39:35 -0600516 /* libsubcmd init */
517 exec_cmd_init("perf", PREFIX, PERF_EXEC_PATH, EXEC_PATH_ENVIRONMENT);
518 pager_init(PERF_PAGER_ENVIRONMENT);
519
Jiri Olsa918512b2013-09-12 18:39:35 +0200520 /* The page_size is placed in util object. */
Arnaldo Carvalho de Melo0c1fe6b2012-10-06 14:57:10 -0300521 page_size = sysconf(_SC_PAGE_SIZE);
Arnaldo Carvalho de Melo9a3dc282016-07-12 11:01:17 -0300522 cache_line_size(&cacheline_size);
Arnaldo Carvalho de Melo0c1fe6b2012-10-06 14:57:10 -0300523
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -0300524 if (sysctl__read_int("kernel/perf_event_max_stack", &value) == 0)
525 sysctl_perf_event_max_stack = value;
526
Arnaldo Carvalho de Meloa29d5c92016-05-16 21:16:54 -0300527 if (sysctl__read_int("kernel/perf_event_max_contexts_per_stack", &value) == 0)
528 sysctl_perf_event_max_contexts_per_stack = value;
529
Josh Poimboeuf46113a52015-12-15 09:39:37 -0600530 cmd = extract_argv0_path(argv[0]);
Ingo Molnar07800602009-04-20 15:00:56 +0200531 if (!cmd)
532 cmd = "perf-help";
Jiri Olsa65d4b262015-09-02 09:56:33 +0200533
Namhyung Kim14cbfbe2016-01-07 20:41:53 +0900534 srandom(time(NULL));
535
Taeung Song8a0a9c72016-06-23 23:14:31 +0900536 perf_config__init();
Wang Nanb8cbb342016-02-26 09:31:51 +0000537 perf_config(perf_default_config, NULL);
Taeung Song58cb9d62016-03-28 02:22:18 +0900538 set_buildid_dir(NULL);
Wang Nanb8cbb342016-02-26 09:31:51 +0000539
Jiri Olsa65d4b262015-09-02 09:56:33 +0200540 /* get debugfs/tracefs mount point from /proc/mounts */
541 tracing_path_mount();
542
Ingo Molnar07800602009-04-20 15:00:56 +0200543 /*
544 * "perf-xxxx" is the same as "perf xxxx", but we obviously:
545 *
546 * - cannot take flags in between the "perf" and the "xxxx".
547 * - cannot execute it externally (since it would just do
548 * the same thing over again)
549 *
550 * So we just directly call the internal command handler, and
551 * die if that one cannot handle it.
552 */
553 if (!prefixcmp(cmd, "perf-")) {
Peter Zijlstra266dfb02009-05-25 14:45:24 +0200554 cmd += 5;
Ingo Molnar07800602009-04-20 15:00:56 +0200555 argv[0] = cmd;
556 handle_internal_command(argc, argv);
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300557 fprintf(stderr, "cannot handle %s internally", cmd);
558 goto out;
Ingo Molnar07800602009-04-20 15:00:56 +0200559 }
Arnaldo Carvalho de Melob52bc232013-09-24 11:56:36 -0300560 if (!prefixcmp(cmd, "trace")) {
Arnaldo Carvalho de Melo1b5726222014-05-26 16:02:29 -0300561#ifdef HAVE_LIBAUDIT_SUPPORT
Arnaldo Carvalho de Melob52bc232013-09-24 11:56:36 -0300562 setup_path();
563 argv[0] = "trace";
564 return cmd_trace(argc, argv, NULL);
Arnaldo Carvalho de Melo1b5726222014-05-26 16:02:29 -0300565#else
566 fprintf(stderr,
567 "trace command not available: missing audit-libs devel package at build time.\n");
568 goto out;
Arnaldo Carvalho de Melob52bc232013-09-24 11:56:36 -0300569#endif
Arnaldo Carvalho de Melo1b5726222014-05-26 16:02:29 -0300570 }
Ingo Molnar07800602009-04-20 15:00:56 +0200571 /* Look for flags.. */
572 argv++;
573 argc--;
574 handle_options(&argv, &argc, NULL);
575 commit_pager_choice();
Stephane Eranian45de34b2010-06-01 21:25:01 +0200576
Ingo Molnar07800602009-04-20 15:00:56 +0200577 if (argc > 0) {
578 if (!prefixcmp(argv[0], "--"))
579 argv[0] += 2;
580 } else {
581 /* The user didn't specify a command; give them help */
Ingo Molnar502fc5c2009-03-13 03:20:49 +0100582 printf("\n usage: %s\n\n", perf_usage_string);
Ingo Molnar07800602009-04-20 15:00:56 +0200583 list_common_cmds_help();
Ingo Molnar502fc5c2009-03-13 03:20:49 +0100584 printf("\n %s\n\n", perf_more_info_string);
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300585 goto out;
Ingo Molnar07800602009-04-20 15:00:56 +0200586 }
587 cmd = argv[0];
588
Jiri Olsa52502bf2012-10-31 15:52:47 +0100589 test_attr__init();
590
Ingo Molnar07800602009-04-20 15:00:56 +0200591 /*
592 * We use PATH to find perf commands, but we prepend some higher
Uwe Kleine-König659431f2010-01-18 16:02:48 +0100593 * precedence paths: the "--exec-path" option, the PERF_EXEC_PATH
Ingo Molnar07800602009-04-20 15:00:56 +0200594 * environment, and the $(perfexecdir) from the Makefile at build
595 * time.
596 */
597 setup_path();
Arnaldo Carvalho de Melo3af6e332011-10-13 08:52:46 -0300598 /*
599 * Block SIGWINCH notifications so that the thread that wants it can
600 * unblock and get syscalls like select interrupted instead of waiting
601 * forever while the signal goes to some other non interested thread.
602 */
603 pthread__block_sigwinch();
Ingo Molnar07800602009-04-20 15:00:56 +0200604
Jiri Olsadd629cc2016-02-14 17:03:45 +0100605 perf_debug_setup();
606
Ingo Molnar07800602009-04-20 15:00:56 +0200607 while (1) {
Thiago Farina4c574152010-01-27 21:05:55 -0200608 static int done_help;
Arnaldo Carvalho de Melob5ded712013-03-27 11:00:07 -0300609 int was_alias = run_argv(&argc, &argv);
Ingo Molnar8035e422009-06-06 15:19:13 +0200610
Ingo Molnar07800602009-04-20 15:00:56 +0200611 if (errno != ENOENT)
612 break;
Ingo Molnar8035e422009-06-06 15:19:13 +0200613
Ingo Molnar07800602009-04-20 15:00:56 +0200614 if (was_alias) {
615 fprintf(stderr, "Expansion of alias '%s' failed; "
616 "'%s' is not a perf-command\n",
617 cmd, argv[0]);
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300618 goto out;
Ingo Molnar07800602009-04-20 15:00:56 +0200619 }
620 if (!done_help) {
621 cmd = argv[0] = help_unknown_cmd(cmd);
622 done_help = 1;
623 } else
624 break;
625 }
626
627 fprintf(stderr, "Failed to run command '%s': %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300628 cmd, str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melo2a16bf82013-01-24 15:18:54 -0300629out:
Ingo Molnar07800602009-04-20 15:00:56 +0200630 return 1;
631}