1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include "libbb.h"
25#include "common_bufsiz.h"
26
27enum {
28 OPT_a = 1,
29 OPT_w = 2,
30};
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58struct globals {
59 const char *col;
60 const char *tbl;
61 const char *nroff;
62 const char *pager;
63} FIX_ALIASING;
64#define G (*(struct globals*)bb_common_bufsiz1)
65#define INIT_G() do { \
66 setup_common_bufsiz(); \
67 G.col = "col"; \
68 G.tbl = "tbl"; \
69 \
70 G.nroff = "nroff -mandoc"; \
71 G.pager = ENABLE_LESS ? "less" : "more"; \
72} while (0)
73
74static int show_manpage(char *man_filename, int man, int level);
75
76static int run_pipe(char *man_filename, int man, int level)
77{
78 char *cmd;
79
80
81 if (level > 10)
82 return 0;
83
84 if (access(man_filename, R_OK) != 0)
85 return 0;
86
87 if (option_mask32 & OPT_w) {
88 puts(man_filename);
89 return 1;
90 }
91
92 if (man) {
93
94
95
96
97 struct stat sb;
98 char *line;
99 char *linkname, *p;
100
101
102
103
104
105 xstat(man_filename, &sb);
106 if (sb.st_size > 300)
107 goto ordinary_manpage;
108
109 line = xmalloc_open_zipped_read_close(man_filename, NULL);
110 if (!line || !is_prefixed_with(line, ".so ")) {
111 free(line);
112 goto ordinary_manpage;
113 }
114
115
116
117 *strchrnul(line, '\n') = '\0';
118 linkname = skip_whitespace(&line[4]);
119
120
121
122
123 p = strrchr(man_filename, '/');
124 if (!p)
125 goto ordinary_manpage;
126 *p = '\0';
127 if (strchr(linkname, '/')) {
128 p = strrchr(man_filename, '/');
129 if (!p)
130 goto ordinary_manpage;
131 *p = '\0';
132 }
133
134
135
136 man_filename = xasprintf("%s/%s", man_filename, linkname);
137 free(line);
138
139 if (show_manpage(man_filename, man, level + 1))
140 return 1;
141
142 }
143
144 ordinary_manpage:
145 close(STDIN_FILENO);
146 open_zipped(man_filename, 0);
147 if (man) {
148 int w = get_terminal_width(-1);
149 if (w > 10)
150 w -= 2;
151
152
153
154 cmd = xasprintf("%s | %s -rLL=%un -rLT=%un 2>&1 | %s",
155 G.tbl, G.nroff, w, w,
156 G.pager);
157 } else {
158 cmd = xstrdup(G.pager);
159 }
160 system(cmd);
161 free(cmd);
162 return 1;
163}
164
165
166static int show_manpage(char *man_filename, int man, int level)
167{
168#if SEAMLESS_COMPRESSION
169
170 char *filename_with_zext = xasprintf("%s.lzma", man_filename);
171 char *ext = strrchr(filename_with_zext, '.') + 1;
172#endif
173
174#if ENABLE_FEATURE_SEAMLESS_LZMA
175 if (run_pipe(filename_with_zext, man, level))
176 return 1;
177#endif
178#if ENABLE_FEATURE_SEAMLESS_XZ
179 strcpy(ext, "xz");
180 if (run_pipe(filename_with_zext, man, level))
181 return 1;
182#endif
183#if ENABLE_FEATURE_SEAMLESS_BZ2
184 strcpy(ext, "bz2");
185 if (run_pipe(filename_with_zext, man, level))
186 return 1;
187#endif
188#if ENABLE_FEATURE_SEAMLESS_GZ
189 strcpy(ext, "gz");
190 if (run_pipe(filename_with_zext, man, level))
191 return 1;
192#endif
193
194 return run_pipe(man_filename, man, level);
195}
196
197static char **add_MANPATH(char **man_path_list, int *count_mp, char *path)
198{
199 if (path) while (*path) {
200 char *next_path;
201 char **path_element;
202
203 next_path = strchr(path, ':');
204 if (next_path) {
205 if (next_path == path)
206 goto next;
207 *next_path = '\0';
208 }
209
210 path_element = man_path_list;
211 if (path_element) while (*path_element) {
212 if (strcmp(*path_element, path) == 0) {
213 goto skip;
214 }
215 path_element++;
216 }
217 man_path_list = xrealloc_vector(man_path_list, 4, *count_mp);
218 man_path_list[*count_mp] = xstrdup(path);
219 (*count_mp)++;
220
221
222 skip:
223 if (!next_path)
224 break;
225
226 *next_path = ':';
227 next:
228 path = next_path + 1;
229 }
230 return man_path_list;
231}
232
233static const char *if_redefined(const char *var, const char *key, const char *line)
234{
235 if (!is_prefixed_with(line, key))
236 return var;
237 line += strlen(key);
238 if (!isspace(line[0]))
239 return var;
240 return xstrdup(skip_whitespace(line));
241}
242
243static int is_section_name(const char *sections, const char *str)
244{
245 const char *s = strstr(sections, str);
246 if (s) {
247 int l = strlen(str);
248 return (s[l] == ':' || s[l] == '\0');
249 }
250 return 0;
251}
252
253int man_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
254int man_main(int argc UNUSED_PARAM, char **argv)
255{
256 parser_t *parser;
257 char *conf_sec_list;
258 char *sec_list;
259 char **man_path_list;
260 int count_mp;
261 int opt, not_found;
262 char *token[2];
263
264 INIT_G();
265
266 opt = getopt32(argv, "^+" "aw" "\0" "-1");
267 argv += optind;
268
269 conf_sec_list = xstrdup("0p:1:1p:2:3:3p:4:5:6:7:8:9");
270
271 count_mp = 0;
272 man_path_list = add_MANPATH(NULL, &count_mp,
273 getenv("MANDATORY_MANPATH"+10)
274 );
275
276
277
278 parser = config_open2("/etc/man.config", fopen_for_read);
279 if (!parser)
280 parser = config_open2("/etc/man.conf", fopen_for_read);
281 if (!parser)
282 parser = config_open2("/etc/man_db.conf", fopen_for_read);
283
284 while (config_read(parser, token, 2, 0, "# \t", PARSE_NORMAL)) {
285 if (!token[1])
286 continue;
287 if (strcmp("DEFINE", token[0]) == 0) {
288 G.col = if_redefined(G.col , "col", token[1]);
289 G.tbl = if_redefined(G.tbl , "tbl", token[1]);
290 G.nroff = if_redefined(G.nroff, "nroff", token[1]);
291 G.pager = if_redefined(G.pager, "pager", token[1]);
292 } else
293 if (strcmp("MANDATORY_MANPATH"+10, token[0]) == 0
294 || strcmp("MANDATORY_MANPATH", token[0]) == 0
295 ) {
296 man_path_list = add_MANPATH(man_path_list, &count_mp, token[1]);
297 }
298 if (strcmp("MANSECT", token[0]) == 0) {
299 free(conf_sec_list);
300 conf_sec_list = xstrdup(token[1]);
301 }
302 }
303 config_close(parser);
304
305 if (!man_path_list) {
306 static const char *const mpl[] = { "/usr/man", "/usr/share/man", NULL };
307 man_path_list = (char**)mpl;
308
309 }
310
311 {
312
313 char *env_pager = getenv("MANPAGER");
314 if (!env_pager)
315 env_pager = getenv("PAGER");
316 if (env_pager)
317 G.pager = env_pager;
318 }
319
320 if (!isatty(STDOUT_FILENO)) {
321 putenv((char*)"GROFF_NO_SGR=1");
322 G.pager = xasprintf("%s -b -p -x", G.col);
323 }
324
325
326 sec_list = conf_sec_list;
327 if (is_section_name(conf_sec_list, *argv) && argv[1]) {
328
329 sec_list = *argv++;
330 }
331
332 not_found = 0;
333 do {
334 const char *cur_path;
335 int cur_mp;
336 int found = 0;
337
338 if (strchr(*argv, '/')) {
339 found = show_manpage(*argv, 1, 0);
340 goto check_found;
341 }
342
343
344 cur_mp = 0;
345 while ((cur_path = man_path_list[cur_mp++]) != NULL) {
346 const char *cur_sect = sec_list;
347
348
349 char *sect_ext = strrchr(*argv, '.');
350 if (sect_ext && is_section_name(conf_sec_list, sect_ext + 1)) {
351 *sect_ext = '\0';
352 cur_sect = sect_ext + 1;
353 }
354
355 do {
356 char *next_sect = strchrnul(cur_sect, ':');
357 int sect_len = next_sect - cur_sect;
358 char *man_filename;
359 int cat0man1 = 0;
360
361
362 while (cat0man1 < 2) {
363 int found_here;
364 man_filename = xasprintf("%s/%s%.*s/%s.%.*s",
365 cur_path,
366 "cat\0man" + (cat0man1 * 4),
367 sect_len, cur_sect,
368 *argv,
369 sect_len, cur_sect);
370 found_here = show_manpage(man_filename, cat0man1, 0);
371 found |= found_here;
372 cat0man1 += found_here + 1;
373 free(man_filename);
374 }
375
376 if (found && !(opt & OPT_a))
377 goto next_arg;
378 cur_sect = next_sect;
379 while (*cur_sect == ':')
380 cur_sect++;
381 } while (*cur_sect);
382
383 if (sect_ext) *sect_ext = '.';
384 }
385 check_found:
386 if (!found) {
387 bb_error_msg("no manual entry for '%s'", *argv);
388 not_found = 1;
389 }
390 next_arg:
391 argv++;
392 } while (*argv);
393
394 return not_found;
395}
396