]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/builtin-help.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / perf / builtin-help.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
07800601
IM
2/*
3 * builtin-help.c
4 *
5 * Builtin help command
6 */
f37a291c 7#include "perf.h"
41840d21 8#include "util/config.h"
07800601 9#include "builtin.h"
4b6ab94e 10#include <subcmd/exec-cmd.h>
07800601 11#include "common-cmds.h"
4b6ab94e
JP
12#include <subcmd/parse-options.h>
13#include <subcmd/run-command.h>
14#include <subcmd/help.h>
84f5d36f 15#include "util/debug.h"
877a7a11 16#include <linux/kernel.h>
a43783ae 17#include <errno.h>
7a8ef4c4
ACM
18#include <stdio.h>
19#include <sys/types.h>
20#include <sys/stat.h>
21#include <unistd.h>
07800601
IM
22
23static struct man_viewer_list {
24 struct man_viewer_list *next;
7909675d 25 char name[0];
07800601
IM
26} *man_viewer_list;
27
28static struct man_viewer_info_list {
29 struct man_viewer_info_list *next;
30 const char *info;
7909675d 31 char name[0];
07800601
IM
32} *man_viewer_info_list;
33
34enum help_format {
cc584821 35 HELP_FORMAT_NONE,
07800601
IM
36 HELP_FORMAT_MAN,
37 HELP_FORMAT_INFO,
38 HELP_FORMAT_WEB,
39};
40
07800601
IM
41static enum help_format parse_help_format(const char *format)
42{
43 if (!strcmp(format, "man"))
44 return HELP_FORMAT_MAN;
45 if (!strcmp(format, "info"))
46 return HELP_FORMAT_INFO;
47 if (!strcmp(format, "web") || !strcmp(format, "html"))
48 return HELP_FORMAT_WEB;
cc584821
DA
49
50 pr_err("unrecognized help format '%s'", format);
51 return HELP_FORMAT_NONE;
07800601
IM
52}
53
54static const char *get_man_viewer_info(const char *name)
55{
56 struct man_viewer_info_list *viewer;
57
c1e53017 58 for (viewer = man_viewer_info_list; viewer; viewer = viewer->next) {
07800601
IM
59 if (!strcasecmp(name, viewer->name))
60 return viewer->info;
61 }
62 return NULL;
63}
64
65static int check_emacsclient_version(void)
66{
67 struct strbuf buffer = STRBUF_INIT;
68 struct child_process ec_process;
69 const char *argv_ec[] = { "emacsclient", "--version", NULL };
70 int version;
b72ca403 71 int ret = -1;
07800601
IM
72
73 /* emacsclient prints its version number on stderr */
74 memset(&ec_process, 0, sizeof(ec_process));
75 ec_process.argv = argv_ec;
76 ec_process.err = -1;
77 ec_process.stdout_to_stderr = 1;
78 if (start_command(&ec_process)) {
79 fprintf(stderr, "Failed to start emacsclient.\n");
80 return -1;
81 }
b72ca403
MH
82 if (strbuf_read(&buffer, ec_process.err, 20) < 0) {
83 fprintf(stderr, "Failed to read emacsclient version\n");
84 goto out;
85 }
07800601
IM
86 close(ec_process.err);
87
88 /*
89 * Don't bother checking return value, because "emacsclient --version"
90 * seems to always exits with code 1.
91 */
92 finish_command(&ec_process);
93
8e99b6d4 94 if (!strstarts(buffer.buf, "emacsclient")) {
07800601 95 fprintf(stderr, "Failed to parse emacsclient version.\n");
b72ca403 96 goto out;
07800601
IM
97 }
98
d1130686 99 version = atoi(buffer.buf + strlen("emacsclient"));
07800601
IM
100
101 if (version < 22) {
102 fprintf(stderr,
103 "emacsclient version '%d' too old (< 22).\n",
104 version);
b72ca403
MH
105 } else
106 ret = 0;
107out:
07800601 108 strbuf_release(&buffer);
b72ca403 109 return ret;
07800601
IM
110}
111
881c362d 112static void exec_failed(const char *cmd)
07800601 113{
ede395d2 114 char sbuf[STRERR_BUFSIZE];
881c362d
ACM
115 pr_warning("failed to exec '%s': %s", cmd, str_error_r(errno, sbuf, sizeof(sbuf)));
116}
ede395d2 117
881c362d
ACM
118static void exec_woman_emacs(const char *path, const char *page)
119{
07800601
IM
120 if (!check_emacsclient_version()) {
121 /* This works only with emacsclient version >= 22. */
a610f5cb 122 char *man_page;
07800601
IM
123
124 if (!path)
125 path = "emacsclient";
a610f5cb
ACM
126 if (asprintf(&man_page, "(woman \"%s\")", page) > 0) {
127 execlp(path, "emacsclient", "-e", man_page, NULL);
128 free(man_page);
129 }
881c362d 130 exec_failed(path);
07800601
IM
131 }
132}
133
c1e53017 134static void exec_man_konqueror(const char *path, const char *page)
07800601
IM
135{
136 const char *display = getenv("DISPLAY");
ede395d2 137
07800601 138 if (display && *display) {
a610f5cb 139 char *man_page;
07800601
IM
140 const char *filename = "kfmclient";
141
142 /* It's simpler to launch konqueror using kfmclient. */
143 if (path) {
144 const char *file = strrchr(path, '/');
145 if (file && !strcmp(file + 1, "konqueror")) {
146 char *new = strdup(path);
147 char *dest = strrchr(new, '/');
148
149 /* strlen("konqueror") == strlen("kfmclient") */
150 strcpy(dest + 1, "kfmclient");
151 path = new;
152 }
153 if (file)
154 filename = file;
155 } else
156 path = "kfmclient";
a610f5cb
ACM
157 if (asprintf(&man_page, "man:%s(1)", page) > 0) {
158 execlp(path, filename, "newTab", man_page, NULL);
159 free(man_page);
160 }
881c362d 161 exec_failed(path);
07800601
IM
162 }
163}
164
c1e53017 165static void exec_man_man(const char *path, const char *page)
07800601
IM
166{
167 if (!path)
168 path = "man";
169 execlp(path, "man", page, NULL);
881c362d 170 exec_failed(path);
07800601
IM
171}
172
173static void exec_man_cmd(const char *cmd, const char *page)
174{
a610f5cb 175 char *shell_cmd;
ede395d2 176
a610f5cb
ACM
177 if (asprintf(&shell_cmd, "%s %s", cmd, page) > 0) {
178 execl("/bin/sh", "sh", "-c", shell_cmd, NULL);
179 free(shell_cmd);
180 }
881c362d 181 exec_failed(cmd);
07800601
IM
182}
183
184static void add_man_viewer(const char *name)
185{
186 struct man_viewer_list **p = &man_viewer_list;
187 size_t len = strlen(name);
188
189 while (*p)
190 p = &((*p)->next);
36479484 191 *p = zalloc(sizeof(**p) + len + 1);
07800601
IM
192 strncpy((*p)->name, name, len);
193}
194
195static int supported_man_viewer(const char *name, size_t len)
196{
197 return (!strncasecmp("man", name, len) ||
198 !strncasecmp("woman", name, len) ||
199 !strncasecmp("konqueror", name, len));
200}
201
202static void do_add_man_viewer_info(const char *name,
203 size_t len,
204 const char *value)
205{
36479484 206 struct man_viewer_info_list *new = zalloc(sizeof(*new) + len + 1);
07800601
IM
207
208 strncpy(new->name, name, len);
209 new->info = strdup(value);
210 new->next = man_viewer_info_list;
211 man_viewer_info_list = new;
212}
213
86e474ff
ACM
214static void unsupported_man_viewer(const char *name, const char *var)
215{
216 pr_warning("'%s': path for unsupported man viewer.\n"
217 "Please consider using 'man.<tool>.%s' instead.", name, var);
218}
219
07800601
IM
220static int add_man_viewer_path(const char *name,
221 size_t len,
222 const char *value)
223{
224 if (supported_man_viewer(name, len))
225 do_add_man_viewer_info(name, len, value);
226 else
86e474ff 227 unsupported_man_viewer(name, "cmd");
07800601
IM
228
229 return 0;
230}
231
232static int add_man_viewer_cmd(const char *name,
233 size_t len,
234 const char *value)
235{
236 if (supported_man_viewer(name, len))
86e474ff 237 unsupported_man_viewer(name, "path");
07800601
IM
238 else
239 do_add_man_viewer_info(name, len, value);
240
241 return 0;
242}
243
244static int add_man_viewer_info(const char *var, const char *value)
245{
246 const char *name = var + 4;
247 const char *subkey = strrchr(name, '.');
248
62d94b00
ACM
249 if (!subkey) {
250 pr_err("Config with no key for man viewer: %s", name);
251 return -1;
252 }
07800601
IM
253
254 if (!strcmp(subkey, ".path")) {
255 if (!value)
256 return config_error_nonbool(var);
257 return add_man_viewer_path(name, subkey - name, value);
258 }
259 if (!strcmp(subkey, ".cmd")) {
260 if (!value)
261 return config_error_nonbool(var);
262 return add_man_viewer_cmd(name, subkey - name, value);
263 }
264
59913aab 265 pr_warning("'%s': unsupported man viewer sub key.", subkey);
07800601
IM
266 return 0;
267}
268
269static int perf_help_config(const char *var, const char *value, void *cb)
270{
2bae1d1b
ACM
271 enum help_format *help_formatp = cb;
272
07800601
IM
273 if (!strcmp(var, "help.format")) {
274 if (!value)
275 return config_error_nonbool(var);
2bae1d1b
ACM
276 *help_formatp = parse_help_format(value);
277 if (*help_formatp == HELP_FORMAT_NONE)
cc584821 278 return -1;
07800601
IM
279 return 0;
280 }
281 if (!strcmp(var, "man.viewer")) {
282 if (!value)
283 return config_error_nonbool(var);
284 add_man_viewer(value);
285 return 0;
286 }
8e99b6d4 287 if (!strstarts(var, "man."))
07800601
IM
288 return add_man_viewer_info(var, value);
289
b8cbb349 290 return 0;
07800601
IM
291}
292
293static struct cmdnames main_cmds, other_cmds;
294
295void list_common_cmds_help(void)
296{
f37a291c 297 unsigned int i, longest = 0;
07800601
IM
298
299 for (i = 0; i < ARRAY_SIZE(common_cmds); i++) {
300 if (longest < strlen(common_cmds[i].name))
301 longest = strlen(common_cmds[i].name);
302 }
303
502fc5c7 304 puts(" The most commonly used perf commands are:");
07800601 305 for (i = 0; i < ARRAY_SIZE(common_cmds); i++) {
3912f2ab 306 printf(" %-*s ", longest, common_cmds[i].name);
07800601
IM
307 puts(common_cmds[i].help);
308 }
309}
310
07800601
IM
311static const char *cmd_to_page(const char *perf_cmd)
312{
a610f5cb
ACM
313 char *s;
314
07800601
IM
315 if (!perf_cmd)
316 return "perf";
8e99b6d4 317 else if (!strstarts(perf_cmd, "perf"))
07800601 318 return perf_cmd;
a610f5cb
ACM
319
320 return asprintf(&s, "perf-%s", perf_cmd) < 0 ? NULL : s;
07800601
IM
321}
322
323static void setup_man_path(void)
324{
a610f5cb 325 char *new_path;
07800601
IM
326 const char *old_path = getenv("MANPATH");
327
328 /* We should always put ':' after our path. If there is no
329 * old_path, the ':' at the end will let 'man' to try
330 * system-wide paths after ours to find the manual page. If
331 * there is old_path, we need ':' as delimiter. */
a610f5cb
ACM
332 if (asprintf(&new_path, "%s:%s", system_path(PERF_MAN_PATH), old_path ?: "") > 0) {
333 setenv("MANPATH", new_path, 1);
334 free(new_path);
335 } else {
62d94b00 336 pr_err("Unable to setup man path");
a610f5cb 337 }
07800601
IM
338}
339
340static void exec_viewer(const char *name, const char *page)
341{
342 const char *info = get_man_viewer_info(name);
343
344 if (!strcasecmp(name, "man"))
345 exec_man_man(info, page);
346 else if (!strcasecmp(name, "woman"))
347 exec_woman_emacs(info, page);
348 else if (!strcasecmp(name, "konqueror"))
349 exec_man_konqueror(info, page);
350 else if (info)
351 exec_man_cmd(info, page);
352 else
59913aab 353 pr_warning("'%s': unknown man viewer.", name);
07800601
IM
354}
355
cc584821 356static int show_man_page(const char *perf_cmd)
07800601
IM
357{
358 struct man_viewer_list *viewer;
359 const char *page = cmd_to_page(perf_cmd);
360 const char *fallback = getenv("PERF_MAN_VIEWER");
361
362 setup_man_path();
363 for (viewer = man_viewer_list; viewer; viewer = viewer->next)
07800601 364 exec_viewer(viewer->name, page); /* will return when unable */
c1e53017 365
07800601
IM
366 if (fallback)
367 exec_viewer(fallback, page);
368 exec_viewer("man", page);
cc584821
DA
369
370 pr_err("no man viewer handled the request");
371 return -1;
07800601
IM
372}
373
cc584821 374static int show_info_page(const char *perf_cmd)
07800601
IM
375{
376 const char *page = cmd_to_page(perf_cmd);
377 setenv("INFOPATH", system_path(PERF_INFO_PATH), 1);
378 execlp("info", "info", "perfman", page, NULL);
cc584821 379 return -1;
07800601
IM
380}
381
a610f5cb 382static int get_html_page_path(char **page_path, const char *page)
07800601
IM
383{
384 struct stat st;
385 const char *html_path = system_path(PERF_HTML_PATH);
386
387 /* Check that we have a perf documentation directory. */
388 if (stat(mkpath("%s/perf.html", html_path), &st)
cc584821
DA
389 || !S_ISREG(st.st_mode)) {
390 pr_err("'%s': not a documentation directory.", html_path);
391 return -1;
392 }
07800601 393
a610f5cb 394 return asprintf(page_path, "%s/%s.html", html_path, page);
07800601
IM
395}
396
397/*
398 * If open_html is not defined in a platform-specific way (see for
399 * example compat/mingw.h), we use the script web--browse to display
400 * HTML.
401 */
402#ifndef open_html
16f762a2 403static void open_html(const char *path)
07800601 404{
46113a54 405 execl_cmd("web--browse", "-c", "help.browser", path, NULL);
07800601
IM
406}
407#endif
408
cc584821 409static int show_html_page(const char *perf_cmd)
07800601
IM
410{
411 const char *page = cmd_to_page(perf_cmd);
a610f5cb 412 char *page_path; /* it leaks but we exec bellow */
07800601 413
a610f5cb 414 if (get_html_page_path(&page_path, page) < 0)
cc584821 415 return -1;
07800601 416
a610f5cb 417 open_html(page_path);
cc584821
DA
418
419 return 0;
07800601
IM
420}
421
b0ad8ea6 422int cmd_help(int argc, const char **argv)
07800601 423{
2bae1d1b 424 bool show_all = false;
670ab5d2 425 enum help_format help_format = HELP_FORMAT_MAN;
2bae1d1b
ACM
426 struct option builtin_help_options[] = {
427 OPT_BOOLEAN('a', "all", &show_all, "print all available commands"),
428 OPT_SET_UINT('m', "man", &help_format, "show man page", HELP_FORMAT_MAN),
429 OPT_SET_UINT('w', "web", &help_format, "show manual in web browser",
430 HELP_FORMAT_WEB),
431 OPT_SET_UINT('i', "info", &help_format, "show info page",
432 HELP_FORMAT_INFO),
433 OPT_END(),
434 };
e24a1108
YS
435 const char * const builtin_help_subcommands[] = {
436 "buildid-cache", "buildid-list", "diff", "evlist", "help", "list",
437 "record", "report", "bench", "stat", "timechart", "top", "annotate",
35563771 438 "script", "sched", "kallsyms", "kmem", "lock", "kvm", "test", "inject", "mem", "data",
e24a1108
YS
439#ifdef HAVE_LIBELF_SUPPORT
440 "probe",
441#endif
442#ifdef HAVE_LIBAUDIT_SUPPORT
443 "trace",
444#endif
445 NULL };
446 const char *builtin_help_usage[] = {
2bae1d1b
ACM
447 "perf help [--all] [--man|--web|--info] [command]",
448 NULL
449 };
ecc4c561 450 int rc;
f37a291c 451
07800601
IM
452 load_command_list("perf-", &main_cmds, &other_cmds);
453
ecc4c561
ACM
454 rc = perf_config(perf_help_config, &help_format);
455 if (rc)
456 return rc;
07800601 457
e24a1108
YS
458 argc = parse_options_subcommand(argc, argv, builtin_help_options,
459 builtin_help_subcommands, builtin_help_usage, 0);
07800601
IM
460
461 if (show_all) {
3a134ae9 462 printf("\n Usage: %s\n\n", perf_usage_string);
07800601 463 list_commands("perf commands", &main_cmds, &other_cmds);
502fc5c7 464 printf(" %s\n\n", perf_more_info_string);
07800601
IM
465 return 0;
466 }
467
468 if (!argv[0]) {
502fc5c7 469 printf("\n usage: %s\n\n", perf_usage_string);
07800601 470 list_common_cmds_help();
502fc5c7 471 printf("\n %s\n\n", perf_more_info_string);
07800601
IM
472 return 0;
473 }
474
07800601
IM
475 switch (help_format) {
476 case HELP_FORMAT_MAN:
cc584821 477 rc = show_man_page(argv[0]);
07800601
IM
478 break;
479 case HELP_FORMAT_INFO:
cc584821 480 rc = show_info_page(argv[0]);
07800601
IM
481 break;
482 case HELP_FORMAT_WEB:
cc584821
DA
483 rc = show_html_page(argv[0]);
484 break;
485 case HELP_FORMAT_NONE:
486 /* fall-through */
83a0944f 487 default:
cc584821 488 rc = -1;
07800601
IM
489 break;
490 }
491
cc584821 492 return rc;
07800601 493}