blob: 58ed81955bd2318f8dba9d635b709c3b9dea1b10 [file] [log] [blame]
Denis Vlasenkoffa44992008-04-13 08:20:00 +00001/* mini man implementation for busybox
2 * Copyright (C) 2008 Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenkoffa44992008-04-13 08:20:00 +00004 */
5
Pere Orga5bc8c002011-04-11 03:29:49 +02006//usage:#define man_trivial_usage
7//usage: "[-aw] [MANPAGE]..."
8//usage:#define man_full_usage "\n\n"
9//usage: "Format and display manual page\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020010//usage: "\n -a Display all pages"
Pere Orga5bc8c002011-04-11 03:29:49 +020011//usage: "\n -w Show page locations"
12
Denis Vlasenkoffa44992008-04-13 08:20:00 +000013#include "libbb.h"
14
15enum {
16 OPT_a = 1, /* all */
17 OPT_w = 2, /* print path */
18};
19
Denis Vlasenkoce02b152008-06-27 22:05:21 +000020/* This is what I see on my desktop system being executed:
Denis Vlasenkoffa44992008-04-13 08:20:00 +000021
22(
23echo ".ll 12.4i"
24echo ".nr LL 12.4i"
25echo ".pl 1100i"
26gunzip -c '/usr/man/man1/bzip2.1.gz'
27echo ".\\\""
28echo ".pl \n(nlu+10"
29) | gtbl | nroff -Tlatin1 -mandoc | less
30
31*/
32
Denis Vlasenko540baf62008-08-05 13:16:18 +000033static int show_manpage(const char *pager, char *man_filename, int man, int level);
34
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +000035static int run_pipe(const char *pager, char *man_filename, int man, int level)
Denis Vlasenkoffa44992008-04-13 08:20:00 +000036{
37 char *cmd;
38
Denis Vlasenko540baf62008-08-05 13:16:18 +000039 /* Prevent man page link loops */
40 if (level > 10)
41 return 0;
42
Denis Vlasenkoffa44992008-04-13 08:20:00 +000043 if (access(man_filename, R_OK) != 0)
44 return 0;
45
46 if (option_mask32 & OPT_w) {
47 puts(man_filename);
48 return 1;
49 }
50
Denis Vlasenko540baf62008-08-05 13:16:18 +000051 if (man) { /* man page, not cat page */
Denis Vlasenkoe2a09de2008-08-05 14:15:19 +000052 /* Is this a link to another manpage? */
Denis Vlasenko540baf62008-08-05 13:16:18 +000053 /* The link has the following on the first line: */
54 /* ".so another_man_page" */
Denis Vlasenkoe2a09de2008-08-05 14:15:19 +000055
Denis Vlasenko540baf62008-08-05 13:16:18 +000056 struct stat sb;
57 char *line;
58 char *linkname, *p;
59
60 /* On my system:
61 * man1/genhostid.1.gz: 203 bytes - smallest real manpage
62 * man2/path_resolution.2.gz: 114 bytes - largest link
63 */
64 xstat(man_filename, &sb);
65 if (sb.st_size > 300) /* err on the safe side */
66 goto ordinary_manpage;
67
68 line = xmalloc_open_zipped_read_close(man_filename, NULL);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +010069 if (!line || !is_prefixed_with(line, ".so ")) {
Denis Vlasenko540baf62008-08-05 13:16:18 +000070 free(line);
71 goto ordinary_manpage;
72 }
73 /* Example: man2/path_resolution.2.gz contains
74 * ".so man7/path_resolution.7\n<junk>"
75 */
76 *strchrnul(line, '\n') = '\0';
Denis Vlasenkoe2a09de2008-08-05 14:15:19 +000077 linkname = skip_whitespace(&line[4]);
Denis Vlasenko540baf62008-08-05 13:16:18 +000078
Denis Vlasenko22b0bd82008-08-05 13:45:22 +000079 /* If link has no slashes, we just replace man page name.
80 * If link has slashes (however many), we go back *once*.
81 * ".so zzz/ggg/page.3" does NOT go back two levels. */
82 p = strrchr(man_filename, '/');
83 if (!p)
84 goto ordinary_manpage;
85 *p = '\0';
86 if (strchr(linkname, '/')) {
87 p = strrchr(man_filename, '/');
88 if (!p)
Denis Vlasenko540baf62008-08-05 13:16:18 +000089 goto ordinary_manpage;
Denis Vlasenko22b0bd82008-08-05 13:45:22 +000090 *p = '\0';
Denis Vlasenko540baf62008-08-05 13:16:18 +000091 }
Denis Vlasenko22b0bd82008-08-05 13:45:22 +000092
93 /* Links do not have .gz extensions, even if manpage
94 * is compressed */
Denys Vlasenko59655072012-03-06 16:23:50 +010095 man_filename = xasprintf("%s/%s", man_filename, linkname);
Denis Vlasenko540baf62008-08-05 13:16:18 +000096 free(line);
97 /* Note: we leak "new" man_filename string as well... */
98 if (show_manpage(pager, man_filename, man, level + 1))
99 return 1;
Denis Vlasenko22b0bd82008-08-05 13:45:22 +0000100 /* else: show the link, it's better than nothing */
Denis Vlasenko540baf62008-08-05 13:16:18 +0000101 }
102
103 ordinary_manpage:
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000104 close(STDIN_FILENO);
Denys Vlasenko640ce3d2014-02-02 02:06:38 +0100105 open_zipped(man_filename, /*fail_if_not_compressed:*/ 0); /* guaranteed to use fd 0 (STDIN_FILENO) */
Denis Vlasenko4cbffc02008-07-04 21:58:00 +0000106 /* "2>&1" is added so that nroff errors are shown in pager too.
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000107 * Otherwise it may show just empty screen */
Denis Vlasenkof6efccc2008-07-05 08:50:08 +0000108 cmd = xasprintf(
Denys Vlasenko30f17e92014-03-03 15:13:37 +0100109 /* replaced -Tlatin1 with -Tascii for non-UTF8 displays */
110 man ? "gtbl | nroff -Tascii -mandoc 2>&1 | %s"
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000111 : "%s",
112 pager);
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000113 system(cmd);
114 free(cmd);
115 return 1;
116}
117
Denys Vlasenko59655072012-03-06 16:23:50 +0100118/* man_filename is of the form "/dir/dir/dir/name.s" */
Denis Vlasenko540baf62008-08-05 13:16:18 +0000119static int show_manpage(const char *pager, char *man_filename, int man, int level)
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000120{
Denys Vlasenko59655072012-03-06 16:23:50 +0100121#if SEAMLESS_COMPRESSION
122 /* We leak this allocation... */
123 char *filename_with_zext = xasprintf("%s.lzma", man_filename);
124 char *ext = strrchr(filename_with_zext, '.') + 1;
125#endif
126
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000127#if ENABLE_FEATURE_SEAMLESS_LZMA
Denys Vlasenko59655072012-03-06 16:23:50 +0100128 if (run_pipe(pager, filename_with_zext, man, level))
129 return 1;
130#endif
131#if ENABLE_FEATURE_SEAMLESS_XZ
132 strcpy(ext, "xz");
Denys Vlasenkoba1d5612012-06-08 10:22:05 +0200133 if (run_pipe(pager, filename_with_zext, man, level))
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000134 return 1;
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000135#endif
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000136#if ENABLE_FEATURE_SEAMLESS_BZ2
Denys Vlasenko59655072012-03-06 16:23:50 +0100137 strcpy(ext, "bz2");
Denys Vlasenkoba1d5612012-06-08 10:22:05 +0200138 if (run_pipe(pager, filename_with_zext, man, level))
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000139 return 1;
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000140#endif
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000141#if ENABLE_FEATURE_SEAMLESS_GZ
Denys Vlasenko59655072012-03-06 16:23:50 +0100142 strcpy(ext, "gz");
Denys Vlasenkoba1d5612012-06-08 10:22:05 +0200143 if (run_pipe(pager, filename_with_zext, man, level))
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000144 return 1;
145#endif
146
Denys Vlasenkoba1d5612012-06-08 10:22:05 +0200147 return run_pipe(pager, man_filename, man, level);
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000148}
149
Denys Vlasenkoee410942014-11-27 00:40:08 +0100150static char **add_MANPATH(char **man_path_list, int *count_mp, char *path)
151{
152 if (path) while (*path) {
153 char *next_path;
154 char **path_element;
155
156 next_path = strchr(path, ':');
157 if (next_path) {
Denys Vlasenko476654c2014-11-30 19:39:58 +0100158 if (next_path == path) /* "::"? */
Denys Vlasenkoee410942014-11-27 00:40:08 +0100159 goto next;
Denys Vlasenko476654c2014-11-30 19:39:58 +0100160 *next_path = '\0';
Denys Vlasenkoee410942014-11-27 00:40:08 +0100161 }
162 /* Do we already have path? */
163 path_element = man_path_list;
164 if (path_element) while (*path_element) {
165 if (strcmp(*path_element, path) == 0)
166 goto skip;
167 path_element++;
168 }
169 man_path_list = xrealloc_vector(man_path_list, 4, *count_mp);
170 man_path_list[*count_mp] = xstrdup(path);
171 (*count_mp)++;
172 /* man_path_list is NULL terminated */
173 /* man_path_list[*count_mp] = NULL; - xrealloc_vector did it */
174 skip:
175 if (!next_path)
176 break;
Denys Vlasenko476654c2014-11-30 19:39:58 +0100177 /* "path" may be a result of getenv(), be nice and don't mangle it */
178 *next_path = ':';
Denys Vlasenkoee410942014-11-27 00:40:08 +0100179 next:
Denys Vlasenko476654c2014-11-30 19:39:58 +0100180 path = next_path + 1;
Denys Vlasenkoee410942014-11-27 00:40:08 +0100181 }
182 return man_path_list;
183}
184
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000185int man_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000186int man_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000187{
Denis Vlasenko09aaf782008-07-20 17:41:30 +0000188 parser_t *parser;
John Spencerff650612014-01-22 15:31:10 +0100189 const char *pager = ENABLE_LESS ? "less" : "more";
Denis Vlasenko50d068c2008-04-19 03:42:47 +0000190 char *sec_list;
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000191 char *cur_path, *cur_sect;
Denys Vlasenkoee410942014-11-27 00:40:08 +0100192 char **man_path_list;
193 int count_mp;
194 int cur_mp;
Denis Vlasenkoce02b152008-06-27 22:05:21 +0000195 int opt, not_found;
Denis Vlasenko084266e2008-07-26 23:08:31 +0000196 char *token[2];
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000197
198 opt_complementary = "-1"; /* at least one argument */
199 opt = getopt32(argv, "+aw");
200 argv += optind;
201
John Spencerd6ae4fb2013-08-25 17:38:25 -0400202 sec_list = xstrdup("0p:1:1p:2:3:3p:4:5:6:7:8:9");
Denys Vlasenkoee410942014-11-27 00:40:08 +0100203
Denis Vlasenkoa1e16c92008-09-14 21:30:35 +0000204 count_mp = 0;
Denys Vlasenkoee410942014-11-27 00:40:08 +0100205 man_path_list = add_MANPATH(NULL, &count_mp,
206 getenv("MANDATORY_MANPATH"+10) /* "MANPATH" */
207 );
208 if (!man_path_list) {
209 /* default, may be overridden by /etc/man.conf */
210 man_path_list = xzalloc(2 * sizeof(man_path_list[0]));
Denis Vlasenkoe357d2a2008-09-14 21:26:55 +0000211 man_path_list[0] = (char*)"/usr/man";
Denys Vlasenkoee410942014-11-27 00:40:08 +0100212 /* count_mp stays 0.
213 * Thus, man.conf will overwrite man_path_list[0]
214 * if a path is defined there.
215 */
216 }
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000217
Denys Vlasenko9a1b2602010-10-04 14:19:59 +0200218 /* Parse man.conf[ig] or man_db.conf */
Denys Vlasenko0e1b6262009-07-24 02:28:12 +0200219 /* man version 1.6f uses man.config */
Denys Vlasenko9a1b2602010-10-04 14:19:59 +0200220 /* man-db implementation of man uses man_db.conf */
Denys Vlasenko0e1b6262009-07-24 02:28:12 +0200221 parser = config_open2("/etc/man.config", fopen_for_read);
222 if (!parser)
223 parser = config_open2("/etc/man.conf", fopen_for_read);
Denys Vlasenko9a1b2602010-10-04 14:19:59 +0200224 if (!parser)
225 parser = config_open2("/etc/man_db.conf", fopen_for_read);
Denys Vlasenko0e1b6262009-07-24 02:28:12 +0200226
Denis Vlasenko94d03f02008-07-26 23:16:33 +0000227 while (config_read(parser, token, 2, 0, "# \t", PARSE_NORMAL)) {
228 if (!token[1])
229 continue;
John Spencerff650612014-01-22 15:31:10 +0100230 if (strcmp("DEFINE", token[0]) == 0) {
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100231 if (is_prefixed_with("pager", token[1])) {
John Spencerff650612014-01-22 15:31:10 +0100232 pager = xstrdup(skip_whitespace(token[1]) + 5);
233 }
234 } else
Denys Vlasenko9a1b2602010-10-04 14:19:59 +0200235 if (strcmp("MANDATORY_MANPATH"+10, token[0]) == 0 /* "MANPATH"? */
236 || strcmp("MANDATORY_MANPATH", token[0]) == 0
237 ) {
Denys Vlasenkoee410942014-11-27 00:40:08 +0100238 man_path_list = add_MANPATH(man_path_list, &count_mp, token[1]);
Denis Vlasenko94d03f02008-07-26 23:16:33 +0000239 }
240 if (strcmp("MANSECT", token[0]) == 0) {
241 free(sec_list);
242 sec_list = xstrdup(token[1]);
243 }
244 }
245 config_close(parser);
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000246
John Spencerff650612014-01-22 15:31:10 +0100247 {
248 /* environment overrides setting from man.config */
249 char *env_pager = getenv("MANPAGER");
250 if (!env_pager)
251 env_pager = getenv("PAGER");
252 if (env_pager)
253 pager = env_pager;
254 }
255
Denis Vlasenkoce02b152008-06-27 22:05:21 +0000256 not_found = 0;
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000257 do { /* for each argv[] */
Denis Vlasenkoce02b152008-06-27 22:05:21 +0000258 int found = 0;
Denis Vlasenko50d068c2008-04-19 03:42:47 +0000259 cur_mp = 0;
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000260
261 if (strchr(*argv, '/')) {
262 found = show_manpage(pager, *argv, /*man:*/ 1, 0);
263 goto check_found;
264 }
Denis Vlasenko50d068c2008-04-19 03:42:47 +0000265 while ((cur_path = man_path_list[cur_mp++]) != NULL) {
266 /* for each MANPATH */
Denis Vlasenkoe88bd2d2008-11-16 04:05:13 +0000267 cur_sect = sec_list;
268 do { /* for each section */
269 char *next_sect = strchrnul(cur_sect, ':');
270 int sect_len = next_sect - cur_sect;
271 char *man_filename;
272 int cat0man1 = 0;
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000273
Denis Vlasenkoe88bd2d2008-11-16 04:05:13 +0000274 /* Search for cat, then man page */
275 while (cat0man1 < 2) {
276 int found_here;
Denys Vlasenko59655072012-03-06 16:23:50 +0100277 man_filename = xasprintf("%s/%s%.*s/%s.%.*s",
Denis Vlasenkoe88bd2d2008-11-16 04:05:13 +0000278 cur_path,
279 "cat\0man" + (cat0man1 * 4),
280 sect_len, cur_sect,
281 *argv,
282 sect_len, cur_sect);
283 found_here = show_manpage(pager, man_filename, cat0man1, 0);
284 found |= found_here;
285 cat0man1 += found_here + 1;
286 free(man_filename);
287 }
Denis Vlasenko4cbffc02008-07-04 21:58:00 +0000288
Denis Vlasenkoe88bd2d2008-11-16 04:05:13 +0000289 if (found && !(opt & OPT_a))
290 goto next_arg;
291 cur_sect = next_sect;
292 while (*cur_sect == ':')
293 cur_sect++;
294 } while (*cur_sect);
Denis Vlasenko50d068c2008-04-19 03:42:47 +0000295 }
Denis Vlasenko0e7f28d2008-08-05 15:28:05 +0000296 check_found:
Denis Vlasenkoce02b152008-06-27 22:05:21 +0000297 if (!found) {
298 bb_error_msg("no manual entry for '%s'", *argv);
299 not_found = 1;
300 }
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000301 next_arg:
302 argv++;
303 } while (*argv);
304
Denis Vlasenkoce02b152008-06-27 22:05:21 +0000305 return not_found;
Denis Vlasenkoffa44992008-04-13 08:20:00 +0000306}