Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 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 | */ |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 9 | #include "builtin.h" |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 10 | |
Ingo Molnar | 148be2c | 2009-04-27 08:02:14 +0200 | [diff] [blame] | 11 | #include "util/exec_cmd.h" |
| 12 | #include "util/cache.h" |
| 13 | #include "util/quote.h" |
| 14 | #include "util/run-command.h" |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 15 | #include "util/parse-events.h" |
Clark Williams | 549104f | 2009-11-08 09:03:07 -0600 | [diff] [blame] | 16 | #include "util/debugfs.h" |
Irina Tirdea | 27683dc | 2012-09-08 03:43:19 +0300 | [diff] [blame] | 17 | #include <pthread.h> |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 18 | |
| 19 | const char perf_usage_string[] = |
Ingo Molnar | cc13a59 | 2009-04-20 16:01:30 +0200 | [diff] [blame] | 20 | "perf [--version] [--help] COMMAND [ARGS]"; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 21 | |
| 22 | const char perf_more_info_string[] = |
| 23 | "See 'perf help COMMAND' for more information on a specific command."; |
| 24 | |
Arnaldo Carvalho de Melo | 5d06e69 | 2010-05-20 22:01:10 -0300 | [diff] [blame] | 25 | int use_browser = -1; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 26 | static int use_pager = -1; |
Feng Tang | 70cb4e9 | 2012-10-30 11:56:02 +0800 | [diff] [blame^] | 27 | const char *input_name; |
Arnaldo Carvalho de Melo | 5d06e69 | 2010-05-20 22:01:10 -0300 | [diff] [blame] | 28 | |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 29 | struct cmd_struct { |
| 30 | const char *cmd; |
| 31 | int (*fn)(int, const char **, const char *); |
| 32 | int option; |
| 33 | }; |
| 34 | |
| 35 | static 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 Kim | 29a0fc9 | 2012-09-28 18:31:59 +0900 | [diff] [blame] | 52 | #ifdef LIBELF_SUPPORT |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 53 | { "probe", cmd_probe, 0 }, |
Namhyung Kim | 393be2e | 2012-08-06 13:41:21 +0900 | [diff] [blame] | 54 | #endif |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 55 | { "kmem", cmd_kmem, 0 }, |
| 56 | { "lock", cmd_lock, 0 }, |
| 57 | { "kvm", cmd_kvm, 0 }, |
| 58 | { "test", cmd_test, 0 }, |
Namhyung Kim | f315e16 | 2012-09-28 18:32:01 +0900 | [diff] [blame] | 59 | #ifdef LIBAUDIT_SUPPORT |
Arnaldo Carvalho de Melo | 514f1c6 | 2012-09-26 20:05:56 -0300 | [diff] [blame] | 60 | { "trace", cmd_trace, 0 }, |
Namhyung Kim | 4d29089 | 2012-09-27 20:23:38 +0900 | [diff] [blame] | 61 | #endif |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 62 | { "inject", cmd_inject, 0 }, |
| 63 | }; |
| 64 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 65 | struct pager_config { |
| 66 | const char *cmd; |
| 67 | int val; |
| 68 | }; |
| 69 | |
| 70 | static 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" */ |
| 79 | int 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 | |
Arnaldo Carvalho de Melo | 5d06e69 | 2010-05-20 22:01:10 -0300 | [diff] [blame] | 88 | static int tui_command_config(const char *var, const char *value, void *data) |
| 89 | { |
| 90 | struct pager_config *c = data; |
| 91 | if (!prefixcmp(var, "tui.") && !strcmp(var + 4, c->cmd)) |
| 92 | c->val = perf_config_bool(var, value); |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | /* returns 0 for "no tui", 1 for "use tui", and -1 for "not specified" */ |
| 97 | static int check_tui_config(const char *cmd) |
| 98 | { |
| 99 | struct pager_config c; |
| 100 | c.cmd = cmd; |
| 101 | c.val = -1; |
| 102 | perf_config(tui_command_config, &c); |
| 103 | return c.val; |
| 104 | } |
| 105 | |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 106 | static void commit_pager_choice(void) |
| 107 | { |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 108 | switch (use_pager) { |
| 109 | case 0: |
| 110 | setenv("PERF_PAGER", "cat", 1); |
| 111 | break; |
| 112 | case 1: |
| 113 | /* setup_pager(); */ |
| 114 | break; |
| 115 | default: |
| 116 | break; |
| 117 | } |
| 118 | } |
| 119 | |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 120 | static int handle_options(const char ***argv, int *argc, int *envchanged) |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 121 | { |
| 122 | int handled = 0; |
| 123 | |
| 124 | while (*argc > 0) { |
| 125 | const char *cmd = (*argv)[0]; |
| 126 | if (cmd[0] != '-') |
| 127 | break; |
| 128 | |
| 129 | /* |
| 130 | * For legacy reasons, the "version" and "help" |
| 131 | * commands can be written with "--" prepended |
| 132 | * to make them look like flags. |
| 133 | */ |
| 134 | if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version")) |
| 135 | break; |
| 136 | |
| 137 | /* |
| 138 | * Check remaining flags. |
| 139 | */ |
Vincent Legoll | cfed95a | 2009-10-13 10:18:16 +0200 | [diff] [blame] | 140 | if (!prefixcmp(cmd, CMD_EXEC_PATH)) { |
| 141 | cmd += strlen(CMD_EXEC_PATH); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 142 | if (*cmd == '=') |
| 143 | perf_set_argv_exec_path(cmd + 1); |
| 144 | else { |
| 145 | puts(perf_exec_path()); |
| 146 | exit(0); |
| 147 | } |
| 148 | } else if (!strcmp(cmd, "--html-path")) { |
| 149 | puts(system_path(PERF_HTML_PATH)); |
| 150 | exit(0); |
| 151 | } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) { |
| 152 | use_pager = 1; |
| 153 | } else if (!strcmp(cmd, "--no-pager")) { |
| 154 | use_pager = 0; |
| 155 | if (envchanged) |
| 156 | *envchanged = 1; |
| 157 | } else if (!strcmp(cmd, "--perf-dir")) { |
| 158 | if (*argc < 2) { |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 159 | fprintf(stderr, "No directory given for --perf-dir.\n"); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 160 | usage(perf_usage_string); |
| 161 | } |
| 162 | setenv(PERF_DIR_ENVIRONMENT, (*argv)[1], 1); |
| 163 | if (envchanged) |
| 164 | *envchanged = 1; |
| 165 | (*argv)++; |
| 166 | (*argc)--; |
| 167 | handled++; |
Vincent Legoll | cfed95a | 2009-10-13 10:18:16 +0200 | [diff] [blame] | 168 | } else if (!prefixcmp(cmd, CMD_PERF_DIR)) { |
| 169 | setenv(PERF_DIR_ENVIRONMENT, cmd + strlen(CMD_PERF_DIR), 1); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 170 | if (envchanged) |
| 171 | *envchanged = 1; |
| 172 | } else if (!strcmp(cmd, "--work-tree")) { |
| 173 | if (*argc < 2) { |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 174 | fprintf(stderr, "No directory given for --work-tree.\n"); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 175 | usage(perf_usage_string); |
| 176 | } |
| 177 | setenv(PERF_WORK_TREE_ENVIRONMENT, (*argv)[1], 1); |
| 178 | if (envchanged) |
| 179 | *envchanged = 1; |
| 180 | (*argv)++; |
| 181 | (*argc)--; |
Vincent Legoll | cfed95a | 2009-10-13 10:18:16 +0200 | [diff] [blame] | 182 | } else if (!prefixcmp(cmd, CMD_WORK_TREE)) { |
| 183 | setenv(PERF_WORK_TREE_ENVIRONMENT, cmd + strlen(CMD_WORK_TREE), 1); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 184 | if (envchanged) |
| 185 | *envchanged = 1; |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 186 | } else if (!strcmp(cmd, "--debugfs-dir")) { |
| 187 | if (*argc < 2) { |
| 188 | fprintf(stderr, "No directory given for --debugfs-dir.\n"); |
| 189 | usage(perf_usage_string); |
| 190 | } |
Arnaldo Carvalho de Melo | ebf294b | 2011-11-16 14:03:07 -0200 | [diff] [blame] | 191 | debugfs_set_path((*argv)[1]); |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 192 | if (envchanged) |
| 193 | *envchanged = 1; |
| 194 | (*argv)++; |
| 195 | (*argc)--; |
Vincent Legoll | cfed95a | 2009-10-13 10:18:16 +0200 | [diff] [blame] | 196 | } else if (!prefixcmp(cmd, CMD_DEBUGFS_DIR)) { |
Arnaldo Carvalho de Melo | ebf294b | 2011-11-16 14:03:07 -0200 | [diff] [blame] | 197 | debugfs_set_path(cmd + strlen(CMD_DEBUGFS_DIR)); |
| 198 | fprintf(stderr, "dir: %s\n", debugfs_mountpoint); |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 199 | if (envchanged) |
| 200 | *envchanged = 1; |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 201 | } else if (!strcmp(cmd, "--list-cmds")) { |
| 202 | unsigned int i; |
| 203 | |
| 204 | for (i = 0; i < ARRAY_SIZE(commands); i++) { |
| 205 | struct cmd_struct *p = commands+i; |
| 206 | printf("%s ", p->cmd); |
| 207 | } |
| 208 | exit(0); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 209 | } else { |
| 210 | fprintf(stderr, "Unknown option: %s\n", cmd); |
| 211 | usage(perf_usage_string); |
| 212 | } |
| 213 | |
| 214 | (*argv)++; |
| 215 | (*argc)--; |
| 216 | handled++; |
| 217 | } |
| 218 | return handled; |
| 219 | } |
| 220 | |
| 221 | static int handle_alias(int *argcp, const char ***argv) |
| 222 | { |
| 223 | int envchanged = 0, ret = 0, saved_errno = errno; |
| 224 | int count, option_count; |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 225 | const char **new_argv; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 226 | const char *alias_command; |
| 227 | char *alias_string; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 228 | |
| 229 | alias_command = (*argv)[0]; |
| 230 | alias_string = alias_lookup(alias_command); |
| 231 | if (alias_string) { |
| 232 | if (alias_string[0] == '!') { |
| 233 | if (*argcp > 1) { |
| 234 | struct strbuf buf; |
| 235 | |
| 236 | strbuf_init(&buf, PATH_MAX); |
| 237 | strbuf_addstr(&buf, alias_string); |
| 238 | sq_quote_argv(&buf, (*argv) + 1, PATH_MAX); |
| 239 | free(alias_string); |
| 240 | alias_string = buf.buf; |
| 241 | } |
| 242 | ret = system(alias_string + 1); |
| 243 | if (ret >= 0 && WIFEXITED(ret) && |
| 244 | WEXITSTATUS(ret) != 127) |
| 245 | exit(WEXITSTATUS(ret)); |
| 246 | die("Failed to run '%s' when expanding alias '%s'", |
| 247 | alias_string + 1, alias_command); |
| 248 | } |
| 249 | count = split_cmdline(alias_string, &new_argv); |
| 250 | if (count < 0) |
| 251 | die("Bad alias.%s string", alias_command); |
| 252 | option_count = handle_options(&new_argv, &count, &envchanged); |
| 253 | if (envchanged) |
| 254 | die("alias '%s' changes environment variables\n" |
| 255 | "You can use '!perf' in the alias to do this.", |
| 256 | alias_command); |
| 257 | memmove(new_argv - option_count, new_argv, |
| 258 | count * sizeof(char *)); |
| 259 | new_argv -= option_count; |
| 260 | |
| 261 | if (count < 1) |
| 262 | die("empty alias for %s", alias_command); |
| 263 | |
| 264 | if (!strcmp(alias_command, new_argv[0])) |
| 265 | die("recursive alias: %s", alias_command); |
| 266 | |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 267 | new_argv = realloc(new_argv, sizeof(char *) * |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 268 | (count + *argcp + 1)); |
| 269 | /* insert after command name */ |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 270 | memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp); |
| 271 | new_argv[count + *argcp] = NULL; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 272 | |
| 273 | *argv = new_argv; |
| 274 | *argcp += count - 1; |
| 275 | |
| 276 | ret = 1; |
| 277 | } |
| 278 | |
| 279 | errno = saved_errno; |
| 280 | |
| 281 | return ret; |
| 282 | } |
| 283 | |
| 284 | const char perf_version_string[] = PERF_VERSION; |
| 285 | |
| 286 | #define RUN_SETUP (1<<0) |
| 287 | #define USE_PAGER (1<<1) |
| 288 | /* |
| 289 | * require working tree to be present -- anything uses this needs |
| 290 | * RUN_SETUP for reading from the configuration file. |
| 291 | */ |
| 292 | #define NEED_WORK_TREE (1<<2) |
| 293 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 294 | static int run_builtin(struct cmd_struct *p, int argc, const char **argv) |
| 295 | { |
| 296 | int status; |
| 297 | struct stat st; |
| 298 | const char *prefix; |
| 299 | |
| 300 | prefix = NULL; |
| 301 | if (p->option & RUN_SETUP) |
| 302 | prefix = NULL; /* setup_perf_directory(); */ |
| 303 | |
Arnaldo Carvalho de Melo | 5d06e69 | 2010-05-20 22:01:10 -0300 | [diff] [blame] | 304 | if (use_browser == -1) |
| 305 | use_browser = check_tui_config(p->cmd); |
| 306 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 307 | if (use_pager == -1 && p->option & RUN_SETUP) |
| 308 | use_pager = check_pager_config(p->cmd); |
| 309 | if (use_pager == -1 && p->option & USE_PAGER) |
| 310 | use_pager = 1; |
| 311 | commit_pager_choice(); |
| 312 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 313 | status = p->fn(argc, argv, prefix); |
Arnaldo Carvalho de Melo | f3a1f0e | 2010-03-22 13:10:25 -0300 | [diff] [blame] | 314 | exit_browser(status); |
| 315 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 316 | if (status) |
| 317 | return status & 0xff; |
| 318 | |
| 319 | /* Somebody closed stdout? */ |
| 320 | if (fstat(fileno(stdout), &st)) |
| 321 | return 0; |
| 322 | /* Ignore write errors for pipes and sockets.. */ |
| 323 | if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode)) |
| 324 | return 0; |
| 325 | |
| 326 | /* Check for ENOSPC and EIO errors.. */ |
| 327 | if (fflush(stdout)) |
| 328 | die("write failure on standard output: %s", strerror(errno)); |
| 329 | if (ferror(stdout)) |
| 330 | die("unknown write failure on standard output"); |
| 331 | if (fclose(stdout)) |
| 332 | die("close failed on standard output: %s", strerror(errno)); |
| 333 | return 0; |
| 334 | } |
| 335 | |
| 336 | static void handle_internal_command(int argc, const char **argv) |
| 337 | { |
| 338 | const char *cmd = argv[0]; |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 339 | unsigned int i; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 340 | static const char ext[] = STRIP_EXTENSION; |
| 341 | |
| 342 | if (sizeof(ext) > 1) { |
| 343 | i = strlen(argv[0]) - strlen(ext); |
| 344 | if (i > 0 && !strcmp(argv[0] + i, ext)) { |
| 345 | char *argv0 = strdup(argv[0]); |
| 346 | argv[0] = cmd = argv0; |
| 347 | argv0[i] = '\0'; |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | /* Turn "perf cmd --help" into "perf help cmd" */ |
| 352 | if (argc > 1 && !strcmp(argv[1], "--help")) { |
| 353 | argv[1] = argv[0]; |
| 354 | argv[0] = cmd = "help"; |
| 355 | } |
| 356 | |
| 357 | for (i = 0; i < ARRAY_SIZE(commands); i++) { |
| 358 | struct cmd_struct *p = commands+i; |
| 359 | if (strcmp(p->cmd, cmd)) |
| 360 | continue; |
| 361 | exit(run_builtin(p, argc, argv)); |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | static void execv_dashed_external(const char **argv) |
| 366 | { |
| 367 | struct strbuf cmd = STRBUF_INIT; |
| 368 | const char *tmp; |
| 369 | int status; |
| 370 | |
| 371 | strbuf_addf(&cmd, "perf-%s", argv[0]); |
| 372 | |
| 373 | /* |
| 374 | * argv[0] must be the perf command, but the argv array |
| 375 | * belongs to the caller, and may be reused in |
| 376 | * subsequent loop iterations. Save argv[0] and |
| 377 | * restore it on error. |
| 378 | */ |
| 379 | tmp = argv[0]; |
| 380 | argv[0] = cmd.buf; |
| 381 | |
| 382 | /* |
| 383 | * if we fail because the command is not found, it is |
| 384 | * OK to return. Otherwise, we just pass along the status code. |
| 385 | */ |
| 386 | status = run_command_v_opt(argv, 0); |
| 387 | if (status != -ERR_RUN_COMMAND_EXEC) { |
| 388 | if (IS_RUN_COMMAND_ERR(status)) |
| 389 | die("unable to run '%s'", argv[0]); |
| 390 | exit(-status); |
| 391 | } |
| 392 | errno = ENOENT; /* as if we called execvp */ |
| 393 | |
| 394 | argv[0] = tmp; |
| 395 | |
| 396 | strbuf_release(&cmd); |
| 397 | } |
| 398 | |
| 399 | static int run_argv(int *argcp, const char ***argv) |
| 400 | { |
| 401 | int done_alias = 0; |
| 402 | |
| 403 | while (1) { |
| 404 | /* See if it's an internal command */ |
| 405 | handle_internal_command(*argcp, *argv); |
| 406 | |
| 407 | /* .. then try the external ones */ |
| 408 | execv_dashed_external(*argv); |
| 409 | |
| 410 | /* It could be an alias -- this works around the insanity |
| 411 | * of overriding "perf log" with "perf show" by having |
| 412 | * alias.log = show |
| 413 | */ |
| 414 | if (done_alias || !handle_alias(argcp, argv)) |
| 415 | break; |
| 416 | done_alias = 1; |
| 417 | } |
| 418 | |
| 419 | return done_alias; |
| 420 | } |
| 421 | |
Arnaldo Carvalho de Melo | 3af6e33 | 2011-10-13 08:52:46 -0300 | [diff] [blame] | 422 | static void pthread__block_sigwinch(void) |
| 423 | { |
| 424 | sigset_t set; |
| 425 | |
| 426 | sigemptyset(&set); |
| 427 | sigaddset(&set, SIGWINCH); |
| 428 | pthread_sigmask(SIG_BLOCK, &set, NULL); |
| 429 | } |
| 430 | |
| 431 | void pthread__unblock_sigwinch(void) |
| 432 | { |
| 433 | sigset_t set; |
| 434 | |
| 435 | sigemptyset(&set); |
| 436 | sigaddset(&set, SIGWINCH); |
| 437 | pthread_sigmask(SIG_UNBLOCK, &set, NULL); |
| 438 | } |
| 439 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 440 | int main(int argc, const char **argv) |
| 441 | { |
| 442 | const char *cmd; |
| 443 | |
Arnaldo Carvalho de Melo | 0c1fe6b | 2012-10-06 14:57:10 -0300 | [diff] [blame] | 444 | page_size = sysconf(_SC_PAGE_SIZE); |
| 445 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 446 | cmd = perf_extract_argv0_path(argv[0]); |
| 447 | if (!cmd) |
| 448 | cmd = "perf-help"; |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 449 | /* get debugfs mount point from /proc/mounts */ |
Arnaldo Carvalho de Melo | ebf294b | 2011-11-16 14:03:07 -0200 | [diff] [blame] | 450 | debugfs_mount(NULL); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 451 | /* |
| 452 | * "perf-xxxx" is the same as "perf xxxx", but we obviously: |
| 453 | * |
| 454 | * - cannot take flags in between the "perf" and the "xxxx". |
| 455 | * - cannot execute it externally (since it would just do |
| 456 | * the same thing over again) |
| 457 | * |
| 458 | * So we just directly call the internal command handler, and |
| 459 | * die if that one cannot handle it. |
| 460 | */ |
| 461 | if (!prefixcmp(cmd, "perf-")) { |
Peter Zijlstra | 266dfb0 | 2009-05-25 14:45:24 +0200 | [diff] [blame] | 462 | cmd += 5; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 463 | argv[0] = cmd; |
| 464 | handle_internal_command(argc, argv); |
| 465 | die("cannot handle %s internally", cmd); |
| 466 | } |
| 467 | |
| 468 | /* Look for flags.. */ |
| 469 | argv++; |
| 470 | argc--; |
| 471 | handle_options(&argv, &argc, NULL); |
| 472 | commit_pager_choice(); |
Stephane Eranian | 45de34b | 2010-06-01 21:25:01 +0200 | [diff] [blame] | 473 | set_buildid_dir(); |
| 474 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 475 | if (argc > 0) { |
| 476 | if (!prefixcmp(argv[0], "--")) |
| 477 | argv[0] += 2; |
| 478 | } else { |
| 479 | /* The user didn't specify a command; give them help */ |
Ingo Molnar | 502fc5c | 2009-03-13 03:20:49 +0100 | [diff] [blame] | 480 | printf("\n usage: %s\n\n", perf_usage_string); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 481 | list_common_cmds_help(); |
Ingo Molnar | 502fc5c | 2009-03-13 03:20:49 +0100 | [diff] [blame] | 482 | printf("\n %s\n\n", perf_more_info_string); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 483 | exit(1); |
| 484 | } |
| 485 | cmd = argv[0]; |
| 486 | |
| 487 | /* |
| 488 | * We use PATH to find perf commands, but we prepend some higher |
Uwe Kleine-König | 659431f | 2010-01-18 16:02:48 +0100 | [diff] [blame] | 489 | * precedence paths: the "--exec-path" option, the PERF_EXEC_PATH |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 490 | * environment, and the $(perfexecdir) from the Makefile at build |
| 491 | * time. |
| 492 | */ |
| 493 | setup_path(); |
Arnaldo Carvalho de Melo | 3af6e33 | 2011-10-13 08:52:46 -0300 | [diff] [blame] | 494 | /* |
| 495 | * Block SIGWINCH notifications so that the thread that wants it can |
| 496 | * unblock and get syscalls like select interrupted instead of waiting |
| 497 | * forever while the signal goes to some other non interested thread. |
| 498 | */ |
| 499 | pthread__block_sigwinch(); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 500 | |
| 501 | while (1) { |
Thiago Farina | 4c57415 | 2010-01-27 21:05:55 -0200 | [diff] [blame] | 502 | static int done_help; |
| 503 | static int was_alias; |
Ingo Molnar | 8035e42 | 2009-06-06 15:19:13 +0200 | [diff] [blame] | 504 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 505 | was_alias = run_argv(&argc, &argv); |
| 506 | if (errno != ENOENT) |
| 507 | break; |
Ingo Molnar | 8035e42 | 2009-06-06 15:19:13 +0200 | [diff] [blame] | 508 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 509 | if (was_alias) { |
| 510 | fprintf(stderr, "Expansion of alias '%s' failed; " |
| 511 | "'%s' is not a perf-command\n", |
| 512 | cmd, argv[0]); |
| 513 | exit(1); |
| 514 | } |
| 515 | if (!done_help) { |
| 516 | cmd = argv[0] = help_unknown_cmd(cmd); |
| 517 | done_help = 1; |
| 518 | } else |
| 519 | break; |
| 520 | } |
| 521 | |
| 522 | fprintf(stderr, "Failed to run command '%s': %s\n", |
| 523 | cmd, strerror(errno)); |
| 524 | |
| 525 | return 1; |
| 526 | } |