Tomato 1.24
[tomato.git] / release / src / router / busybox / miscutils / man.c
blob672ddb1c8e421c88694fec56f1249dd981f8c436
1 /* mini man implementation for busybox
2 * Copyright (C) 2008 Denys Vlasenko <vda.linux@googlemail.com>
3 * Licensed under GPLv2, see file LICENSE in this tarball for details.
4 */
6 #include "libbb.h"
8 enum {
9 OPT_a = 1, /* all */
10 OPT_w = 2, /* print path */
13 /* This is what I see on my desktop system being executed:
16 echo ".ll 12.4i"
17 echo ".nr LL 12.4i"
18 echo ".pl 1100i"
19 gunzip -c '/usr/man/man1/bzip2.1.gz'
20 echo ".\\\""
21 echo ".pl \n(nlu+10"
22 ) | gtbl | nroff -Tlatin1 -mandoc | less
26 #if ENABLE_FEATURE_SEAMLESS_LZMA
27 #define Z_SUFFIX ".lzma"
28 #elif ENABLE_FEATURE_SEAMLESS_BZ2
29 #define Z_SUFFIX ".bz2"
30 #elif ENABLE_FEATURE_SEAMLESS_GZ
31 #define Z_SUFFIX ".gz"
32 #else
33 #define Z_SUFFIX ""
34 #endif
36 static int show_manpage(const char *pager, char *man_filename, int man, int level);
38 static int run_pipe(const char *pager, char *man_filename, int man, int level)
40 char *cmd;
42 /* Prevent man page link loops */
43 if (level > 10)
44 return 0;
46 if (access(man_filename, R_OK) != 0)
47 return 0;
49 if (option_mask32 & OPT_w) {
50 puts(man_filename);
51 return 1;
54 if (man) { /* man page, not cat page */
55 /* Is this a link to another manpage? */
56 /* The link has the following on the first line: */
57 /* ".so another_man_page" */
59 struct stat sb;
60 char *line;
61 char *linkname, *p;
63 /* On my system:
64 * man1/genhostid.1.gz: 203 bytes - smallest real manpage
65 * man2/path_resolution.2.gz: 114 bytes - largest link
67 xstat(man_filename, &sb);
68 if (sb.st_size > 300) /* err on the safe side */
69 goto ordinary_manpage;
71 line = xmalloc_open_zipped_read_close(man_filename, NULL);
72 if (!line || strncmp(line, ".so ", 4) != 0) {
73 free(line);
74 goto ordinary_manpage;
76 /* Example: man2/path_resolution.2.gz contains
77 * ".so man7/path_resolution.7\n<junk>"
79 *strchrnul(line, '\n') = '\0';
80 linkname = skip_whitespace(&line[4]);
82 /* If link has no slashes, we just replace man page name.
83 * If link has slashes (however many), we go back *once*.
84 * ".so zzz/ggg/page.3" does NOT go back two levels. */
85 p = strrchr(man_filename, '/');
86 if (!p)
87 goto ordinary_manpage;
88 *p = '\0';
89 if (strchr(linkname, '/')) {
90 p = strrchr(man_filename, '/');
91 if (!p)
92 goto ordinary_manpage;
93 *p = '\0';
96 /* Links do not have .gz extensions, even if manpage
97 * is compressed */
98 man_filename = xasprintf("%s/%s" Z_SUFFIX, man_filename, linkname);
99 free(line);
100 /* Note: we leak "new" man_filename string as well... */
101 if (show_manpage(pager, man_filename, man, level + 1))
102 return 1;
103 /* else: show the link, it's better than nothing */
106 ordinary_manpage:
107 close(STDIN_FILENO);
108 open_zipped(man_filename); /* guaranteed to use fd 0 (STDIN_FILENO) */
109 /* "2>&1" is added so that nroff errors are shown in pager too.
110 * Otherwise it may show just empty screen */
111 cmd = xasprintf(
112 man ? "gtbl | nroff -Tlatin1 -mandoc 2>&1 | %s"
113 : "%s",
114 pager);
115 system(cmd);
116 free(cmd);
117 return 1;
120 /* man_filename is of the form "/dir/dir/dir/name.s" Z_SUFFIX */
121 static int show_manpage(const char *pager, char *man_filename, int man, int level)
123 #if ENABLE_FEATURE_SEAMLESS_LZMA
124 if (run_pipe(pager, man_filename, man, level))
125 return 1;
126 #endif
128 #if ENABLE_FEATURE_SEAMLESS_BZ2
129 #if ENABLE_FEATURE_SEAMLESS_LZMA
130 strcpy(strrchr(man_filename, '.') + 1, "bz2");
131 #endif
132 if (run_pipe(pager, man_filename, man, level))
133 return 1;
134 #endif
136 #if ENABLE_FEATURE_SEAMLESS_GZ
137 #if ENABLE_FEATURE_SEAMLESS_LZMA || ENABLE_FEATURE_SEAMLESS_BZ2
138 strcpy(strrchr(man_filename, '.') + 1, "gz");
139 #endif
140 if (run_pipe(pager, man_filename, man, level))
141 return 1;
142 #endif
144 #if ENABLE_FEATURE_SEAMLESS_LZMA || ENABLE_FEATURE_SEAMLESS_BZ2 || ENABLE_FEATURE_SEAMLESS_GZ
145 *strrchr(man_filename, '.') = '\0';
146 #endif
147 if (run_pipe(pager, man_filename, man, level))
148 return 1;
150 return 0;
153 int man_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
154 int man_main(int argc UNUSED_PARAM, char **argv)
156 parser_t *parser;
157 const char *pager;
158 char **man_path_list;
159 char *sec_list;
160 char *cur_path, *cur_sect;
161 int count_mp, cur_mp;
162 int opt, not_found;
163 char *token[2];
165 opt_complementary = "-1"; /* at least one argument */
166 opt = getopt32(argv, "+aw");
167 argv += optind;
169 sec_list = xstrdup("1:2:3:4:5:6:7:8:9");
170 /* Last valid man_path_list[] is [0x10] */
171 count_mp = 0;
172 man_path_list = xzalloc(0x11 * sizeof(man_path_list[0]));
173 man_path_list[0] = getenv("MANPATH");
174 if (!man_path_list[0]) /* default, may be overridden by /etc/man.conf */
175 man_path_list[0] = (char*)"/usr/man";
176 else
177 count_mp++;
178 pager = getenv("MANPAGER");
179 if (!pager) {
180 pager = getenv("PAGER");
181 if (!pager)
182 pager = "more";
185 /* Parse man.conf */
186 parser = config_open2("/etc/man.conf", fopen_for_read);
187 while (config_read(parser, token, 2, 0, "# \t", PARSE_NORMAL)) {
188 if (!token[1])
189 continue;
190 if (strcmp("MANPATH", token[0]) == 0) {
191 char *path = token[1];
192 while (*path) {
193 char *next_path;
194 char **path_element;
196 next_path = strchr(path, ':');
197 if (next_path) {
198 *next_path = '\0';
199 if (next_path++ == path) /* "::"? */
200 goto next;
202 /* Do we already have path? */
203 path_element = man_path_list;
204 while (*path_element) {
205 if (strcmp(*path_element, path) == 0)
206 goto skip;
207 path_element++;
209 man_path_list = xrealloc_vector(man_path_list, 4, count_mp);
210 man_path_list[count_mp] = xstrdup(path);
211 count_mp++;
212 /* man_path_list is NULL terminated */
213 /*man_path_list[count_mp] = NULL; - xrealloc_vector did it */
214 skip:
215 if (!next_path)
216 break;
217 next:
218 path = next_path;
221 if (strcmp("MANSECT", token[0]) == 0) {
222 free(sec_list);
223 sec_list = xstrdup(token[1]);
226 config_close(parser);
228 not_found = 0;
229 do { /* for each argv[] */
230 int found = 0;
231 cur_mp = 0;
233 if (strchr(*argv, '/')) {
234 found = show_manpage(pager, *argv, /*man:*/ 1, 0);
235 goto check_found;
237 while ((cur_path = man_path_list[cur_mp++]) != NULL) {
238 /* for each MANPATH */
239 cur_sect = sec_list;
240 do { /* for each section */
241 char *next_sect = strchrnul(cur_sect, ':');
242 int sect_len = next_sect - cur_sect;
243 char *man_filename;
244 int cat0man1 = 0;
246 /* Search for cat, then man page */
247 while (cat0man1 < 2) {
248 int found_here;
249 man_filename = xasprintf("%s/%s%.*s/%s.%.*s" Z_SUFFIX,
250 cur_path,
251 "cat\0man" + (cat0man1 * 4),
252 sect_len, cur_sect,
253 *argv,
254 sect_len, cur_sect);
255 found_here = show_manpage(pager, man_filename, cat0man1, 0);
256 found |= found_here;
257 cat0man1 += found_here + 1;
258 free(man_filename);
261 if (found && !(opt & OPT_a))
262 goto next_arg;
263 cur_sect = next_sect;
264 while (*cur_sect == ':')
265 cur_sect++;
266 } while (*cur_sect);
268 check_found:
269 if (!found) {
270 bb_error_msg("no manual entry for '%s'", *argv);
271 not_found = 1;
273 next_arg:
274 argv++;
275 } while (*argv);
277 return not_found;