]>
git.cameronkatri.com Git - mandoc.git/blob - main.c
6f15e38fb1b83d7a4dca3be5d2558b1fed0e4bbc
1 /* $Id: main.c,v 1.231 2015/04/02 21:36:49 schwarze Exp $ */
3 * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010-2012, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
5 * Copyright (c) 2010 Joerg Sonnenberger <joerg@netbsd.org>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #include <sys/types.h>
22 #include <sys/param.h> /* MACHINE */
37 #include "mandoc_aux.h"
44 #include "mansearch.h"
46 #if !defined(__GNUC__) || (__GNUC__ < 2)
48 # define __attribute__(x)
50 #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
61 typedef void (*out_mdoc
)(void *, const struct mdoc
*);
62 typedef void (*out_man
)(void *, const struct man
*);
63 typedef void (*out_free
)(void *);
66 OUTT_ASCII
= 0, /* -Tascii */
67 OUTT_LOCALE
, /* -Tlocale */
68 OUTT_UTF8
, /* -Tutf8 */
69 OUTT_TREE
, /* -Ttree */
71 OUTT_HTML
, /* -Thtml */
72 OUTT_LINT
, /* -Tlint */
79 struct mchars
*mchars
; /* character table */
80 enum mandoclevel wlevel
; /* ignore messages below this */
81 int wstop
; /* stop after a file with a warning */
82 enum outt outtype
; /* which output to use */
83 out_mdoc outmdoc
; /* mdoc output ptr */
84 out_man outman
; /* man output ptr */
85 out_free outfree
; /* free output ptr */
86 void *outdata
; /* data for output */
87 struct manoutput
*outopts
; /* output options */
90 static int fs_lookup(const struct manpaths
*,
91 size_t ipath
, const char *,
92 const char *, const char *,
93 struct manpage
**, size_t *);
94 static void fs_search(const struct mansearch
*,
95 const struct manpaths
*, int, char**,
96 struct manpage
**, size_t *);
97 static void handle_sigpipe(int);
98 static int koptions(int *, char *);
100 int mandocdb(int, char**);
102 static int moptions(int *, char *);
103 static void mmsg(enum mandocerr
, enum mandoclevel
,
104 const char *, int, int, const char *);
105 static void parse(struct curparse
*, int, const char *);
106 static void passthrough(const char *, int, int);
107 static pid_t
spawn_pager(void);
108 static int toptions(struct curparse
*, char *);
109 static void usage(enum argmode
) __attribute__((noreturn
));
110 static int woptions(struct curparse
*, char *);
112 static const int sec_prios
[] = {1, 4, 5, 8, 6, 3, 7, 2, 9};
113 static char help_arg
[] = "help";
114 static char *help_argv
[] = {help_arg
, NULL
};
115 static const char *progname
;
116 static enum mandoclevel rc
;
120 main(int argc
, char *argv
[])
123 struct curparse curp
;
124 struct mansearch search
;
128 struct manpage
*res
, *resp
;
129 char *conf_file
, *defpaths
;
133 enum mandoclevel rctmp
;
134 enum outmode outmode
;
139 pid_t pager_pid
; /* 0: don't use; 1: not yet spawned. */
143 else if ((progname
= strrchr(argv
[0], '/')) == NULL
)
149 if (strcmp(progname
, BINM_MAKEWHATIS
) == 0)
150 return(mandocdb(argc
, argv
));
153 /* Search options. */
155 memset(&conf
, 0, sizeof(conf
));
156 conf_file
= defpaths
= NULL
;
159 memset(&search
, 0, sizeof(struct mansearch
));
160 search
.outkey
= "Nd";
162 if (strcmp(progname
, BINM_MAN
) == 0)
163 search
.argmode
= ARG_NAME
;
164 else if (strcmp(progname
, BINM_APROPOS
) == 0)
165 search
.argmode
= ARG_EXPR
;
166 else if (strcmp(progname
, BINM_WHATIS
) == 0)
167 search
.argmode
= ARG_WORD
;
168 else if (strncmp(progname
, "help", 4) == 0)
169 search
.argmode
= ARG_NAME
;
171 search
.argmode
= ARG_FILE
;
173 /* Parser and formatter options. */
175 memset(&curp
, 0, sizeof(struct curparse
));
176 curp
.outtype
= OUTT_LOCALE
;
177 curp
.wlevel
= MANDOCLEVEL_BADARG
;
178 curp
.outopts
= &conf
.output
;
179 options
= MPARSE_SO
| MPARSE_UTF8
| MPARSE_LATIN1
;
184 outmode
= OUTMODE_DEF
;
186 while (-1 != (c
= getopt(argc
, argv
,
187 "aC:cfhI:iK:klM:m:O:S:s:T:VW:w"))) {
190 outmode
= OUTMODE_ALL
;
199 search
.argmode
= ARG_WORD
;
202 conf
.output
.synopsisonly
= 1;
204 outmode
= OUTMODE_ALL
;
207 if (strncmp(optarg
, "os=", 3)) {
209 "%s: -I %s: Bad argument\n",
211 return((int)MANDOCLEVEL_BADARG
);
215 "%s: -I %s: Duplicate argument\n",
217 return((int)MANDOCLEVEL_BADARG
);
219 defos
= mandoc_strdup(optarg
+ 3);
222 outmode
= OUTMODE_INT
;
225 if ( ! koptions(&options
, optarg
))
226 return((int)MANDOCLEVEL_BADARG
);
229 search
.argmode
= ARG_EXPR
;
232 search
.argmode
= ARG_FILE
;
233 outmode
= OUTMODE_ALL
;
242 search
.outkey
= optarg
;
243 while (optarg
!= NULL
)
244 manconf_output(&conf
.output
,
245 strsep(&optarg
, ","));
248 search
.arch
= optarg
;
254 if ( ! toptions(&curp
, optarg
))
255 return((int)MANDOCLEVEL_BADARG
);
258 if ( ! woptions(&curp
, optarg
))
259 return((int)MANDOCLEVEL_BADARG
);
262 outmode
= OUTMODE_FLN
;
271 usage(search
.argmode
);
273 /* Postprocess options. */
275 if (outmode
== OUTMODE_DEF
) {
276 switch (search
.argmode
) {
278 outmode
= OUTMODE_ALL
;
282 outmode
= OUTMODE_ONE
;
285 outmode
= OUTMODE_LST
;
290 /* Parse arguments. */
300 * and for a man(1) section argument without -s.
303 if (search
.argmode
== ARG_NAME
) {
304 if (*progname
== 'h') {
309 } else if (argc
> 1 &&
310 ((uc
= (unsigned char *)argv
[0]) != NULL
) &&
311 ((isdigit(uc
[0]) && (uc
[1] == '\0' ||
312 (isalpha(uc
[1]) && uc
[2] == '\0'))) ||
313 (uc
[0] == 'n' && uc
[1] == '\0'))) {
314 search
.sec
= (char *)uc
;
318 if (search
.arch
== NULL
)
319 search
.arch
= getenv("MACHINE");
321 if (search
.arch
== NULL
)
322 search
.arch
= MACHINE
;
328 /* man(1), whatis(1), apropos(1) */
330 if (search
.argmode
!= ARG_FILE
) {
332 usage(search
.argmode
);
334 if (search
.argmode
== ARG_NAME
&&
335 outmode
== OUTMODE_ONE
)
336 search
.firstmatch
= 1;
338 /* Access the mandoc database. */
340 manconf_parse(&conf
, conf_file
, defpaths
, auxpaths
);
343 if ( ! mansearch(&search
, &conf
.manpath
,
344 argc
, argv
, &res
, &sz
))
345 usage(search
.argmode
);
347 if (search
.argmode
!= ARG_NAME
) {
348 fputs("mandoc: database support not compiled in\n",
350 return((int)MANDOCLEVEL_BADARG
);
355 if (sz
== 0 && search
.argmode
== ARG_NAME
)
356 fs_search(&search
, &conf
.manpath
,
357 argc
, argv
, &res
, &sz
);
360 rc
= MANDOCLEVEL_BADARG
;
365 * For standard man(1) and -a output mode,
366 * prepare for copying filename pointers
367 * into the program parameter array.
370 if (outmode
== OUTMODE_ONE
) {
373 } else if (outmode
== OUTMODE_ALL
)
376 /* Iterate all matching manuals. */
379 for (i
= 0; i
< sz
; i
++) {
380 if (outmode
== OUTMODE_FLN
)
382 else if (outmode
== OUTMODE_LST
)
383 printf("%s - %s\n", res
[i
].names
,
384 res
[i
].output
== NULL
? "" :
386 else if (outmode
== OUTMODE_ONE
) {
387 /* Search for the best section. */
388 isec
= strcspn(res
[i
].file
, "123456789");
389 sec
= res
[i
].file
[isec
];
392 prio
= sec_prios
[sec
- '1'];
393 if (prio
>= best_prio
)
401 * For man(1), -a and -i output mode, fall through
402 * to the main mandoc(1) code iterating files
403 * and running the parsers on each of them.
406 if (outmode
== OUTMODE_FLN
|| outmode
== OUTMODE_LST
)
412 if (search
.argmode
== ARG_FILE
&& ! moptions(&options
, auxpaths
))
413 return((int)MANDOCLEVEL_BADARG
);
415 curp
.mchars
= mchars_alloc();
416 curp
.mp
= mparse_alloc(options
, curp
.wlevel
, mmsg
,
420 * Conditionally start up the lookaside buffer before parsing.
422 if (OUTT_MAN
== curp
.outtype
)
423 mparse_keep(curp
.mp
);
426 if (pager_pid
== 1 && isatty(STDOUT_FILENO
))
427 pager_pid
= spawn_pager();
428 parse(&curp
, STDIN_FILENO
, "<stdin>");
432 rctmp
= mparse_open(curp
.mp
, &fd
,
433 resp
!= NULL
? resp
->file
: *argv
);
438 if (pager_pid
== 1 && isatty(STDOUT_FILENO
))
439 pager_pid
= spawn_pager();
442 parse(&curp
, fd
, *argv
);
443 else if (resp
->form
& FORM_SRC
) {
444 /* For .so only; ignore failure. */
445 chdir(conf
.manpath
.paths
[resp
->ipath
]);
446 parse(&curp
, fd
, resp
->file
);
448 passthrough(resp
->file
, fd
,
449 conf
.output
.synopsisonly
);
451 rctmp
= mparse_wait(curp
.mp
);
455 if (argc
> 1 && curp
.outtype
<= OUTT_UTF8
)
456 ascii_sepline(curp
.outdata
);
459 if (MANDOCLEVEL_OK
!= rc
&& curp
.wstop
)
467 mparse_reset(curp
.mp
);
471 (*curp
.outfree
)(curp
.outdata
);
472 mparse_free(curp
.mp
);
473 mchars_free(curp
.mchars
);
476 if (search
.argmode
!= ARG_FILE
) {
479 mansearch_free(res
, sz
);
487 * If a pager is attached, flush the pipe leading to it
488 * and signal end of file such that the user can browse
489 * to the end. Then wait for the user to close the pager.
492 if (pager_pid
!= 0 && pager_pid
!= 1) {
494 waitpid(pager_pid
, NULL
, 0);
501 usage(enum argmode argmode
)
506 fputs("usage: mandoc [-acfhkl] [-I os=name] "
507 "[-K encoding] [-mformat] [-O option]\n"
508 "\t [-T output] [-W level] [file ...]\n", stderr
);
511 fputs("usage: man [-acfhklw] [-C file] [-I os=name] "
512 "[-K encoding] [-M path] [-m path]\n"
513 "\t [-O option=value] [-S subsection] [-s section] "
514 "[-T output] [-W level]\n"
515 "\t [section] name ...\n", stderr
);
518 fputs("usage: whatis [-acfhklw] [-C file] "
519 "[-M path] [-m path] [-O outkey] [-S arch]\n"
520 "\t [-s section] name ...\n", stderr
);
523 fputs("usage: apropos [-acfhklw] [-C file] "
524 "[-M path] [-m path] [-O outkey] [-S arch]\n"
525 "\t [-s section] expression ...\n", stderr
);
528 exit((int)MANDOCLEVEL_BADARG
);
532 fs_lookup(const struct manpaths
*paths
, size_t ipath
,
533 const char *sec
, const char *arch
, const char *name
,
534 struct manpage
**res
, size_t *ressz
)
537 struct manpage
*page
;
542 mandoc_asprintf(&file
, "%s/man%s/%s.%s",
543 paths
->paths
[ipath
], sec
, name
, sec
);
544 if (access(file
, R_OK
) != -1)
548 mandoc_asprintf(&file
, "%s/cat%s/%s.0",
549 paths
->paths
[ipath
], sec
, name
);
550 if (access(file
, R_OK
) != -1) {
557 mandoc_asprintf(&file
, "%s/man%s/%s/%s.%s",
558 paths
->paths
[ipath
], sec
, arch
, name
, sec
);
559 if (access(file
, R_OK
) != -1)
564 mandoc_asprintf(&file
, "%s/man%s/%s.*",
565 paths
->paths
[ipath
], sec
, name
);
566 globres
= glob(file
, 0, NULL
, &globinfo
);
567 if (globres
!= 0 && globres
!= GLOB_NOMATCH
)
568 fprintf(stderr
, "%s: %s: glob: %s\n",
569 progname
, file
, strerror(errno
));
572 file
= mandoc_strdup(*globinfo
.gl_pathv
);
579 fprintf(stderr
, "%s: outdated mandoc.db lacks %s(%s) entry,\n"
580 " consider running # makewhatis %s\n",
581 progname
, name
, sec
, paths
->paths
[ipath
]);
584 *res
= mandoc_reallocarray(*res
, ++*ressz
, sizeof(struct manpage
));
585 page
= *res
+ (*ressz
- 1);
590 page
->bits
= NAME_FILE
& NAME_MASK
;
591 page
->sec
= (*sec
>= '1' && *sec
<= '9') ? *sec
- '1' + 1 : 10;
597 fs_search(const struct mansearch
*cfg
, const struct manpaths
*paths
,
598 int argc
, char **argv
, struct manpage
**res
, size_t *ressz
)
600 const char *const sections
[] =
601 {"1", "8", "6", "2", "3", "3p", "5", "7", "4", "9"};
602 const size_t nsec
= sizeof(sections
)/sizeof(sections
[0]);
604 size_t ipath
, isec
, lastsz
;
606 assert(cfg
->argmode
== ARG_NAME
);
611 for (ipath
= 0; ipath
< paths
->sz
; ipath
++) {
612 if (cfg
->sec
!= NULL
) {
613 if (fs_lookup(paths
, ipath
, cfg
->sec
,
614 cfg
->arch
, *argv
, res
, ressz
) &&
617 } else for (isec
= 0; isec
< nsec
; isec
++)
618 if (fs_lookup(paths
, ipath
, sections
[isec
],
619 cfg
->arch
, *argv
, res
, ressz
) &&
623 if (*ressz
== lastsz
)
625 "%s: No entry for %s in the manual.\n",
634 parse(struct curparse
*curp
, int fd
, const char *file
)
636 enum mandoclevel rctmp
;
640 /* Begin by parsing the file itself. */
645 rctmp
= mparse_readfd(curp
->mp
, fd
, file
);
650 * With -Wstop and warnings or errors of at least the requested
651 * level, do not produce output.
654 if (rctmp
!= MANDOCLEVEL_OK
&& curp
->wstop
)
657 /* If unset, allocate output dev now (if applicable). */
659 if ( ! (curp
->outman
&& curp
->outmdoc
)) {
660 switch (curp
->outtype
) {
662 curp
->outdata
= html_alloc(curp
->mchars
,
664 curp
->outfree
= html_free
;
667 curp
->outdata
= utf8_alloc(curp
->mchars
,
669 curp
->outfree
= ascii_free
;
672 curp
->outdata
= locale_alloc(curp
->mchars
,
674 curp
->outfree
= ascii_free
;
677 curp
->outdata
= ascii_alloc(curp
->mchars
,
679 curp
->outfree
= ascii_free
;
682 curp
->outdata
= pdf_alloc(curp
->mchars
,
684 curp
->outfree
= pspdf_free
;
687 curp
->outdata
= ps_alloc(curp
->mchars
,
689 curp
->outfree
= pspdf_free
;
695 switch (curp
->outtype
) {
697 curp
->outman
= html_man
;
698 curp
->outmdoc
= html_mdoc
;
701 curp
->outman
= tree_man
;
702 curp
->outmdoc
= tree_mdoc
;
705 curp
->outmdoc
= man_mdoc
;
706 curp
->outman
= man_man
;
717 curp
->outman
= terminal_man
;
718 curp
->outmdoc
= terminal_mdoc
;
725 mparse_result(curp
->mp
, &mdoc
, &man
, NULL
);
727 /* Execute the out device, if it exists. */
729 if (man
&& curp
->outman
)
730 (*curp
->outman
)(curp
->outdata
, man
);
731 if (mdoc
&& curp
->outmdoc
)
732 (*curp
->outmdoc
)(curp
->outdata
, mdoc
);
736 passthrough(const char *file
, int fd
, int synopsis_only
)
738 const char synb
[] = "S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS";
739 const char synr
[] = "SYNOPSIS";
750 if ((stream
= fdopen(fd
, "r")) == NULL
) {
757 while ((line
= fgetln(stream
, &len
)) != NULL
) {
760 if ( ! isspace((unsigned char)*line
))
763 isspace((unsigned char)*line
)) {
768 if ((len
== sizeof(synb
) &&
769 ! strncmp(line
, synb
, len
- 1)) ||
770 (len
== sizeof(synr
) &&
771 ! strncmp(line
, synr
, len
- 1)))
776 for (off
= 0; off
< len
; off
+= nw
)
777 if ((nw
= write(STDOUT_FILENO
, line
+ off
,
778 len
- off
)) == -1 || nw
== 0) {
785 if (ferror(stream
)) {
796 fprintf(stderr
, "%s: %s: SYSERR: %s: %s",
797 progname
, file
, syscall
, strerror(errno
));
798 if (rc
< MANDOCLEVEL_SYSERR
)
799 rc
= MANDOCLEVEL_SYSERR
;
803 koptions(int *options
, char *arg
)
806 if ( ! strcmp(arg
, "utf-8")) {
807 *options
|= MPARSE_UTF8
;
808 *options
&= ~MPARSE_LATIN1
;
809 } else if ( ! strcmp(arg
, "iso-8859-1")) {
810 *options
|= MPARSE_LATIN1
;
811 *options
&= ~MPARSE_UTF8
;
812 } else if ( ! strcmp(arg
, "us-ascii")) {
813 *options
&= ~(MPARSE_UTF8
| MPARSE_LATIN1
);
815 fprintf(stderr
, "%s: -K %s: Bad argument\n",
823 moptions(int *options
, char *arg
)
828 else if (0 == strcmp(arg
, "doc"))
829 *options
|= MPARSE_MDOC
;
830 else if (0 == strcmp(arg
, "andoc"))
832 else if (0 == strcmp(arg
, "an"))
833 *options
|= MPARSE_MAN
;
835 fprintf(stderr
, "%s: -m %s: Bad argument\n",
844 toptions(struct curparse
*curp
, char *arg
)
847 if (0 == strcmp(arg
, "ascii"))
848 curp
->outtype
= OUTT_ASCII
;
849 else if (0 == strcmp(arg
, "lint")) {
850 curp
->outtype
= OUTT_LINT
;
851 curp
->wlevel
= MANDOCLEVEL_WARNING
;
852 } else if (0 == strcmp(arg
, "tree"))
853 curp
->outtype
= OUTT_TREE
;
854 else if (0 == strcmp(arg
, "man"))
855 curp
->outtype
= OUTT_MAN
;
856 else if (0 == strcmp(arg
, "html"))
857 curp
->outtype
= OUTT_HTML
;
858 else if (0 == strcmp(arg
, "utf8"))
859 curp
->outtype
= OUTT_UTF8
;
860 else if (0 == strcmp(arg
, "locale"))
861 curp
->outtype
= OUTT_LOCALE
;
862 else if (0 == strcmp(arg
, "xhtml"))
863 curp
->outtype
= OUTT_HTML
;
864 else if (0 == strcmp(arg
, "ps"))
865 curp
->outtype
= OUTT_PS
;
866 else if (0 == strcmp(arg
, "pdf"))
867 curp
->outtype
= OUTT_PDF
;
869 fprintf(stderr
, "%s: -T %s: Bad argument\n",
878 woptions(struct curparse
*curp
, char *arg
)
893 switch (getsubopt(&arg
, UNCONST(toks
), &v
)) {
900 curp
->wlevel
= MANDOCLEVEL_WARNING
;
903 curp
->wlevel
= MANDOCLEVEL_ERROR
;
906 curp
->wlevel
= MANDOCLEVEL_UNSUPP
;
909 curp
->wlevel
= MANDOCLEVEL_BADARG
;
912 fprintf(stderr
, "%s: -W %s: Bad argument\n",
922 mmsg(enum mandocerr t
, enum mandoclevel lvl
,
923 const char *file
, int line
, int col
, const char *msg
)
925 const char *mparse_msg
;
927 fprintf(stderr
, "%s: %s:", progname
, file
);
930 fprintf(stderr
, "%d:%d:", line
, col
+ 1);
932 fprintf(stderr
, " %s", mparse_strlevel(lvl
));
934 if (NULL
!= (mparse_msg
= mparse_strerror(t
)))
935 fprintf(stderr
, ": %s", mparse_msg
);
938 fprintf(stderr
, ": %s", msg
);
944 handle_sigpipe(int signum
)
953 #define MAX_PAGER_ARGS 16
954 char *argv
[MAX_PAGER_ARGS
];
961 if (pipe(fildes
) == -1) {
962 fprintf(stderr
, "%s: pipe: %s\n",
963 progname
, strerror(errno
));
967 switch (pager_pid
= fork()) {
969 fprintf(stderr
, "%s: fork: %s\n",
970 progname
, strerror(errno
));
971 exit((int)MANDOCLEVEL_SYSERR
);
976 if (dup2(fildes
[1], STDOUT_FILENO
) == -1) {
977 fprintf(stderr
, "%s: dup output: %s\n",
978 progname
, strerror(errno
));
979 exit((int)MANDOCLEVEL_SYSERR
);
982 signal(SIGPIPE
, handle_sigpipe
);
986 /* The child process becomes the pager. */
989 if (dup2(fildes
[0], STDIN_FILENO
) == -1) {
990 fprintf(stderr
, "%s: dup input: %s\n",
991 progname
, strerror(errno
));
992 exit((int)MANDOCLEVEL_SYSERR
);
996 pager
= getenv("MANPAGER");
997 if (pager
== NULL
|| *pager
== '\0')
998 pager
= getenv("PAGER");
999 if (pager
== NULL
|| *pager
== '\0')
1000 pager
= "/usr/bin/more -s";
1001 cp
= mandoc_strdup(pager
);
1004 * Parse the pager command into words.
1005 * Intentionally do not do anything fancy here.
1009 while (argc
+ 1 < MAX_PAGER_ARGS
) {
1011 cp
= strchr(cp
, ' ');
1022 /* Hand over to the pager. */
1024 execvp(argv
[0], argv
);
1025 fprintf(stderr
, "%s: exec: %s\n",
1026 progname
, strerror(errno
));
1027 exit((int)MANDOCLEVEL_SYSERR
);