Home | History | Annotate | Line # | Download | only in man
man.c revision 1.9
      1  1.9    mikel /*	$NetBSD: man.c,v 1.9 1997/10/17 06:42:11 mikel Exp $	*/
      2  1.7      tls 
      3  1.1      cgd /*
      4  1.7      tls  * Copyright (c) 1987, 1993, 1994, 1995
      5  1.1      cgd  *	The Regents of the University of California.  All rights reserved.
      6  1.1      cgd  *
      7  1.1      cgd  * Redistribution and use in source and binary forms, with or without
      8  1.1      cgd  * modification, are permitted provided that the following conditions
      9  1.1      cgd  * are met:
     10  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     11  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     12  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     14  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     15  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     16  1.1      cgd  *    must display the following acknowledgement:
     17  1.1      cgd  *	This product includes software developed by the University of
     18  1.1      cgd  *	California, Berkeley and its contributors.
     19  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     20  1.1      cgd  *    may be used to endorse or promote products derived from this software
     21  1.1      cgd  *    without specific prior written permission.
     22  1.1      cgd  *
     23  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1      cgd  * SUCH DAMAGE.
     34  1.1      cgd  */
     35  1.1      cgd 
     36  1.9    mikel #include <sys/cdefs.h>
     37  1.9    mikel 
     38  1.1      cgd #ifndef lint
     39  1.9    mikel __COPYRIGHT("@(#) Copyright (c) 1987, 1993, 1994, 1995\n\
     40  1.9    mikel 	The Regents of the University of California.  All rights reserved.\n");
     41  1.1      cgd #endif /* not lint */
     42  1.1      cgd 
     43  1.1      cgd #ifndef lint
     44  1.7      tls #if 0
     45  1.7      tls static char sccsid[] = "@(#)man.c	8.17 (Berkeley) 1/31/95";
     46  1.7      tls #else
     47  1.9    mikel __RCSID("$NetBSD: man.c,v 1.9 1997/10/17 06:42:11 mikel Exp $");
     48  1.7      tls #endif
     49  1.1      cgd #endif /* not lint */
     50  1.1      cgd 
     51  1.1      cgd #include <sys/param.h>
     52  1.1      cgd #include <sys/queue.h>
     53  1.1      cgd 
     54  1.1      cgd #include <ctype.h>
     55  1.1      cgd #include <err.h>
     56  1.1      cgd #include <errno.h>
     57  1.1      cgd #include <fcntl.h>
     58  1.1      cgd #include <fnmatch.h>
     59  1.1      cgd #include <glob.h>
     60  1.1      cgd #include <signal.h>
     61  1.1      cgd #include <stdio.h>
     62  1.1      cgd #include <stdlib.h>
     63  1.1      cgd #include <string.h>
     64  1.1      cgd #include <unistd.h>
     65  1.1      cgd 
     66  1.1      cgd #include "config.h"
     67  1.1      cgd #include "pathnames.h"
     68  1.1      cgd 
     69  1.1      cgd int f_all, f_where;
     70  1.1      cgd 
     71  1.9    mikel int		 main __P((int, char **));
     72  1.1      cgd static void	 build_page __P((char *, char **));
     73  1.1      cgd static void	 cat __P((char *));
     74  1.1      cgd static char	*check_pager __P((char *));
     75  1.1      cgd static int	 cleanup __P((void));
     76  1.1      cgd static void	 how __P((char *));
     77  1.1      cgd static void	 jump __P((char **, char *, char *));
     78  1.1      cgd static int	 manual __P((char *, TAG *, glob_t *));
     79  1.1      cgd static void	 onsig __P((int));
     80  1.1      cgd static void	 usage __P((void));
     81  1.1      cgd 
     82  1.1      cgd int
     83  1.1      cgd main(argc, argv)
     84  1.1      cgd 	int argc;
     85  1.1      cgd 	char *argv[];
     86  1.1      cgd {
     87  1.1      cgd 	TAG *defp, *defnewp, *section, *sectnewp, *subp;
     88  1.1      cgd 	ENTRY *e_defp, *e_sectp, *e_subp, *ep;
     89  1.1      cgd 	glob_t pg;
     90  1.1      cgd 	size_t len;
     91  1.1      cgd 	int ch, f_cat, f_how, found;
     92  1.1      cgd 	char **ap, *cmd, *machine, *p, *p_add, *p_path, *pager, *slashp;
     93  1.1      cgd 	char *conffile, buf[MAXPATHLEN * 2];
     94  1.1      cgd 
     95  1.9    mikel #ifdef __GNUC__
     96  1.9    mikel 	pager = NULL;		/* XXX gcc -Wuninitialized */
     97  1.9    mikel #endif
     98  1.9    mikel 
     99  1.1      cgd 	f_cat = f_how = 0;
    100  1.1      cgd 	conffile = p_add = p_path = NULL;
    101  1.9    mikel 	while ((ch = getopt(argc, argv, "-aC:cfhkM:m:P:w")) != -1)
    102  1.1      cgd 		switch (ch) {
    103  1.1      cgd 		case 'a':
    104  1.1      cgd 			f_all = 1;
    105  1.1      cgd 			break;
    106  1.1      cgd 		case 'C':
    107  1.1      cgd 			conffile = optarg;
    108  1.1      cgd 			break;
    109  1.1      cgd 		case 'c':
    110  1.1      cgd 		case '-':		/* Deprecated. */
    111  1.1      cgd 			f_cat = 1;
    112  1.1      cgd 			break;
    113  1.1      cgd 		case 'h':
    114  1.1      cgd 			f_how = 1;
    115  1.1      cgd 			break;
    116  1.1      cgd 		case 'm':
    117  1.1      cgd 			p_add = optarg;
    118  1.1      cgd 			break;
    119  1.1      cgd 		case 'M':
    120  1.1      cgd 		case 'P':		/* Backward compatibility. */
    121  1.1      cgd 			p_path = optarg;
    122  1.1      cgd 			break;
    123  1.1      cgd 		/*
    124  1.1      cgd 		 * The -f and -k options are backward compatible,
    125  1.1      cgd 		 * undocumented ways of calling whatis(1) and apropos(1).
    126  1.1      cgd 		 */
    127  1.1      cgd 		case 'f':
    128  1.1      cgd 			jump(argv, "-f", "whatis");
    129  1.1      cgd 			/* NOTREACHED */
    130  1.1      cgd 		case 'k':
    131  1.1      cgd 			jump(argv, "-k", "apropos");
    132  1.1      cgd 			/* NOTREACHED */
    133  1.1      cgd 		case 'w':
    134  1.1      cgd 			f_all = f_where = 1;
    135  1.1      cgd 			break;
    136  1.1      cgd 		case '?':
    137  1.1      cgd 		default:
    138  1.1      cgd 			usage();
    139  1.1      cgd 		}
    140  1.1      cgd 	argc -= optind;
    141  1.1      cgd 	argv += optind;
    142  1.1      cgd 
    143  1.1      cgd 	if (!*argv)
    144  1.1      cgd 		usage();
    145  1.1      cgd 
    146  1.2      cgd 	if (!f_cat && !f_how && !f_where)
    147  1.1      cgd 		if (!isatty(1))
    148  1.1      cgd 			f_cat = 1;
    149  1.1      cgd 		else if ((pager = getenv("PAGER")) != NULL)
    150  1.1      cgd 			pager = check_pager(pager);
    151  1.1      cgd 		else
    152  1.1      cgd 			pager = _PATH_PAGER;
    153  1.1      cgd 
    154  1.1      cgd 	/* Read the configuration file. */
    155  1.1      cgd 	config(conffile);
    156  1.1      cgd 
    157  1.1      cgd 	/* Get the machine type. */
    158  1.1      cgd 	if ((machine = getenv("MACHINE")) == NULL)
    159  1.1      cgd 		machine = MACHINE;
    160  1.1      cgd 
    161  1.1      cgd 	/* If there's no _default list, create an empty one. */
    162  1.1      cgd 	if ((defp = getlist("_default")) == NULL)
    163  1.1      cgd 		defp = addlist("_default");
    164  1.1      cgd 
    165  1.1      cgd 	/*
    166  1.1      cgd 	 * 1: If the user specified a MANPATH variable, or set the -M
    167  1.1      cgd 	 *    option, we replace the _default list with the user's list,
    168  1.1      cgd 	 *    appending the entries in the _subdir list and the machine.
    169  1.1      cgd 	 */
    170  1.1      cgd 	if (p_path == NULL)
    171  1.1      cgd 		p_path = getenv("MANPATH");
    172  1.1      cgd 	if (p_path != NULL) {
    173  1.1      cgd 		while ((e_defp = defp->list.tqh_first) != NULL) {
    174  1.1      cgd 			free(e_defp->s);
    175  1.1      cgd 			TAILQ_REMOVE(&defp->list, e_defp, q);
    176  1.1      cgd 		}
    177  1.1      cgd 		for (p = strtok(p_path, ":");
    178  1.1      cgd 		    p != NULL; p = strtok(NULL, ":")) {
    179  1.1      cgd 			slashp = p[strlen(p) - 1] == '/' ? "" : "/";
    180  1.1      cgd 			e_subp = (subp = getlist("_subdir")) == NULL ?
    181  1.1      cgd 			    NULL : subp->list.tqh_first;
    182  1.1      cgd 			for (; e_subp != NULL; e_subp = e_subp->q.tqe_next) {
    183  1.1      cgd 				(void)snprintf(buf, sizeof(buf), "%s%s%s{/%s,}",
    184  1.1      cgd 				    p, slashp, e_subp->s, machine);
    185  1.1      cgd 				if ((ep = malloc(sizeof(ENTRY))) == NULL ||
    186  1.1      cgd 				    (ep->s = strdup(buf)) == NULL)
    187  1.9    mikel 					err(1, "malloc");
    188  1.1      cgd 				TAILQ_INSERT_TAIL(&defp->list, ep, q);
    189  1.1      cgd 			}
    190  1.1      cgd 		}
    191  1.1      cgd 	}
    192  1.1      cgd 
    193  1.1      cgd 	/*
    194  1.1      cgd 	 * 2: If the user did not specify MANPATH, -M or a section, rewrite
    195  1.1      cgd 	 *    the _default list to include the _subdir list and the machine.
    196  1.1      cgd 	 */
    197  1.1      cgd 	if (argv[1] == NULL)
    198  1.1      cgd 		section = NULL;
    199  1.1      cgd 	else if ((section = getlist(*argv)) != NULL)
    200  1.1      cgd 		++argv;
    201  1.1      cgd 	if (p_path == NULL && section == NULL) {
    202  1.1      cgd 		defnewp = addlist("_default_new");
    203  1.1      cgd 		e_defp =
    204  1.1      cgd 		    defp->list.tqh_first == NULL ? NULL : defp->list.tqh_first;
    205  1.1      cgd 		for (; e_defp != NULL; e_defp = e_defp->q.tqe_next) {
    206  1.1      cgd 			slashp =
    207  1.1      cgd 			    e_defp->s[strlen(e_defp->s) - 1] == '/' ? "" : "/";
    208  1.1      cgd 			e_subp = (subp = getlist("_subdir")) == NULL ?
    209  1.1      cgd 			    NULL : subp->list.tqh_first;
    210  1.1      cgd 			for (; e_subp != NULL; e_subp = e_subp->q.tqe_next) {
    211  1.1      cgd 				(void)snprintf(buf, sizeof(buf), "%s%s%s{/%s,}",
    212  1.1      cgd 				e_defp->s, slashp, e_subp->s, machine);
    213  1.1      cgd 				if ((ep = malloc(sizeof(ENTRY))) == NULL ||
    214  1.1      cgd 				    (ep->s = strdup(buf)) == NULL)
    215  1.9    mikel 					err(1, "malloc");
    216  1.1      cgd 				TAILQ_INSERT_TAIL(&defnewp->list, ep, q);
    217  1.1      cgd 			}
    218  1.1      cgd 		}
    219  1.1      cgd 		defp = getlist("_default");
    220  1.1      cgd 		while ((e_defp = defp->list.tqh_first) != NULL) {
    221  1.1      cgd 			free(e_defp->s);
    222  1.1      cgd 			TAILQ_REMOVE(&defp->list, e_defp, q);
    223  1.1      cgd 		}
    224  1.1      cgd 		free(defp->s);
    225  1.1      cgd 		TAILQ_REMOVE(&head, defp, q);
    226  1.1      cgd 		defnewp = getlist("_default_new");
    227  1.1      cgd 		free(defnewp->s);
    228  1.1      cgd 		defnewp->s = "_default";
    229  1.1      cgd 		defp = defnewp;
    230  1.1      cgd 	}
    231  1.1      cgd 
    232  1.1      cgd 	/*
    233  1.1      cgd 	 * 3: If the user set the -m option, insert the user's list before
    234  1.1      cgd 	 *    whatever list we have, again appending the _subdir list and
    235  1.1      cgd 	 *    the machine.
    236  1.1      cgd 	 */
    237  1.1      cgd 	if (p_add != NULL)
    238  1.1      cgd 		for (p = strtok(p_add, ":"); p != NULL; p = strtok(NULL, ":")) {
    239  1.1      cgd 			slashp = p[strlen(p) - 1] == '/' ? "" : "/";
    240  1.1      cgd 			e_subp = (subp = getlist("_subdir")) == NULL ?
    241  1.1      cgd 			    NULL : subp->list.tqh_first;
    242  1.1      cgd 			for (; e_subp != NULL; e_subp = e_subp->q.tqe_next) {
    243  1.1      cgd 				(void)snprintf(buf, sizeof(buf), "%s%s%s{/%s,}",
    244  1.1      cgd 				    p, slashp, e_subp->s, machine);
    245  1.1      cgd 				if ((ep = malloc(sizeof(ENTRY))) == NULL ||
    246  1.1      cgd 				    (ep->s = strdup(buf)) == NULL)
    247  1.9    mikel 					err(1, "malloc");
    248  1.1      cgd 				TAILQ_INSERT_HEAD(&defp->list, ep, q);
    249  1.1      cgd 			}
    250  1.1      cgd 		}
    251  1.1      cgd 
    252  1.1      cgd 	/*
    253  1.6  mycroft 	 * 4: If no -m was specified, and a section was, rewrite the section's
    254  1.6  mycroft 	 *    paths (if they have a trailing slash) to append the _subdir list
    255  1.6  mycroft 	 *    and the machine.  This then becomes the _default list.
    256  1.1      cgd 	 */
    257  1.6  mycroft 	if (p_add == NULL && section != NULL) {
    258  1.1      cgd 		sectnewp = addlist("_section_new");
    259  1.1      cgd 		for (e_sectp = section->list.tqh_first;
    260  1.1      cgd 		    e_sectp != NULL; e_sectp = e_sectp->q.tqe_next) {
    261  1.1      cgd 			if (e_sectp->s[strlen(e_sectp->s) - 1] != '/') {
    262  1.1      cgd 				(void)snprintf(buf, sizeof(buf),
    263  1.1      cgd 				    "%s{/%s,}", e_sectp->s, machine);
    264  1.1      cgd 				if ((ep = malloc(sizeof(ENTRY))) == NULL ||
    265  1.1      cgd 				    (ep->s = strdup(buf)) == NULL)
    266  1.9    mikel 					err(1, "malloc");
    267  1.1      cgd 				TAILQ_INSERT_TAIL(&sectnewp->list, ep, q);
    268  1.1      cgd 				continue;
    269  1.1      cgd 			}
    270  1.1      cgd 			e_subp = (subp = getlist("_subdir")) == NULL ?
    271  1.1      cgd 			    NULL : subp->list.tqh_first;
    272  1.1      cgd 			for (; e_subp != NULL; e_subp = e_subp->q.tqe_next) {
    273  1.1      cgd 				(void)snprintf(buf, sizeof(buf), "%s%s{/%s,}",
    274  1.1      cgd 				    e_sectp->s, e_subp->s, machine);
    275  1.1      cgd 				if ((ep = malloc(sizeof(ENTRY))) == NULL ||
    276  1.1      cgd 				    (ep->s = strdup(buf)) == NULL)
    277  1.9    mikel 					err(1, "malloc");
    278  1.1      cgd 				TAILQ_INSERT_TAIL(&sectnewp->list, ep, q);
    279  1.1      cgd 			}
    280  1.1      cgd 		}
    281  1.1      cgd 		sectnewp->s = section->s;
    282  1.1      cgd 		defp = sectnewp;
    283  1.1      cgd 		TAILQ_REMOVE(&head, section, q);
    284  1.1      cgd 	}
    285  1.1      cgd 
    286  1.1      cgd 	/*
    287  1.1      cgd 	 * 5: Search for the files.  Set up an interrupt handler, so the
    288  1.1      cgd 	 *    temporary files go away.
    289  1.1      cgd 	 */
    290  1.1      cgd 	(void)signal(SIGINT, onsig);
    291  1.1      cgd 	(void)signal(SIGHUP, onsig);
    292  1.1      cgd 
    293  1.1      cgd 	memset(&pg, 0, sizeof(pg));
    294  1.1      cgd 	for (found = 0; *argv; ++argv)
    295  1.1      cgd 		if (manual(*argv, defp, &pg))
    296  1.1      cgd 			found = 1;
    297  1.1      cgd 
    298  1.1      cgd 	/* 6: If nothing found, we're done. */
    299  1.1      cgd 	if (!found) {
    300  1.1      cgd 		(void)cleanup();
    301  1.1      cgd 		exit (1);
    302  1.1      cgd 	}
    303  1.1      cgd 
    304  1.1      cgd 	/* 7: If it's simple, display it fast. */
    305  1.1      cgd 	if (f_cat) {
    306  1.1      cgd 		for (ap = pg.gl_pathv; *ap != NULL; ++ap) {
    307  1.1      cgd 			if (**ap == '\0')
    308  1.1      cgd 				continue;
    309  1.1      cgd 			cat(*ap);
    310  1.1      cgd 		}
    311  1.1      cgd 		exit (cleanup());
    312  1.1      cgd 	}
    313  1.1      cgd 	if (f_how) {
    314  1.1      cgd 		for (ap = pg.gl_pathv; *ap != NULL; ++ap) {
    315  1.1      cgd 			if (**ap == '\0')
    316  1.1      cgd 				continue;
    317  1.1      cgd 			how(*ap);
    318  1.1      cgd 		}
    319  1.1      cgd 		exit(cleanup());
    320  1.1      cgd 	}
    321  1.1      cgd 	if (f_where) {
    322  1.1      cgd 		for (ap = pg.gl_pathv; *ap != NULL; ++ap) {
    323  1.1      cgd 			if (**ap == '\0')
    324  1.1      cgd 				continue;
    325  1.1      cgd 			(void)printf("%s\n", *ap);
    326  1.1      cgd 		}
    327  1.1      cgd 		exit(cleanup());
    328  1.1      cgd 	}
    329  1.1      cgd 
    330  1.1      cgd 	/*
    331  1.1      cgd 	 * 8: We display things in a single command; build a list of things
    332  1.1      cgd 	 *    to display.
    333  1.1      cgd 	 */
    334  1.1      cgd 	for (ap = pg.gl_pathv, len = strlen(pager) + 1; *ap != NULL; ++ap) {
    335  1.1      cgd 		if (**ap == '\0')
    336  1.1      cgd 			continue;
    337  1.1      cgd 		len += strlen(*ap) + 1;
    338  1.1      cgd 	}
    339  1.1      cgd 	if ((cmd = malloc(len)) == NULL) {
    340  1.9    mikel 		warn("malloc");
    341  1.1      cgd 		(void)cleanup();
    342  1.1      cgd 		exit(1);
    343  1.1      cgd 	}
    344  1.1      cgd 	p = cmd;
    345  1.1      cgd 	len = strlen(pager);
    346  1.1      cgd 	memmove(p, pager, len);
    347  1.1      cgd 	p += len;
    348  1.1      cgd 	*p++ = ' ';
    349  1.1      cgd 	for (ap = pg.gl_pathv; *ap != NULL; ++ap) {
    350  1.1      cgd 		if (**ap == '\0')
    351  1.1      cgd 			continue;
    352  1.1      cgd 		len = strlen(*ap);
    353  1.1      cgd 		memmove(p, *ap, len);
    354  1.1      cgd 		p += len;
    355  1.1      cgd 		*p++ = ' ';
    356  1.1      cgd 	}
    357  1.1      cgd 	*p = '\0';
    358  1.1      cgd 
    359  1.1      cgd 	/* Use system(3) in case someone's pager is "pager arg1 arg2". */
    360  1.1      cgd 	(void)system(cmd);
    361  1.1      cgd 
    362  1.1      cgd 	exit(cleanup());
    363  1.1      cgd }
    364  1.1      cgd 
    365  1.1      cgd /*
    366  1.1      cgd  * manual --
    367  1.1      cgd  *	Search the manuals for the pages.
    368  1.1      cgd  */
    369  1.1      cgd static int
    370  1.1      cgd manual(page, tag, pg)
    371  1.1      cgd 	char *page;
    372  1.1      cgd 	TAG *tag;
    373  1.1      cgd 	glob_t *pg;
    374  1.1      cgd {
    375  1.1      cgd 	ENTRY *ep, *e_sufp, *e_tag;
    376  1.1      cgd 	TAG *missp, *sufp;
    377  1.1      cgd 	int anyfound, cnt, found;
    378  1.8    mikel 	char *p, buf[MAXPATHLEN];
    379  1.1      cgd 
    380  1.1      cgd 	anyfound = 0;
    381  1.1      cgd 	buf[0] = '*';
    382  1.1      cgd 
    383  1.1      cgd 	/* For each element in the list... */
    384  1.1      cgd 	e_tag = tag == NULL ? NULL : tag->list.tqh_first;
    385  1.1      cgd 	for (; e_tag != NULL; e_tag = e_tag->q.tqe_next) {
    386  1.1      cgd 		(void)snprintf(buf, sizeof(buf), "%s/%s.*", e_tag->s, page);
    387  1.1      cgd 		if (glob(buf,
    388  1.1      cgd 		    GLOB_APPEND | GLOB_BRACE | GLOB_NOSORT | GLOB_QUOTE,
    389  1.1      cgd 		    NULL, pg)) {
    390  1.1      cgd 			warn("globbing");
    391  1.1      cgd 			(void)cleanup();
    392  1.1      cgd 			exit(1);
    393  1.1      cgd 		}
    394  1.1      cgd 		if (pg->gl_matchc == 0)
    395  1.1      cgd 			continue;
    396  1.1      cgd 
    397  1.1      cgd 		/* Find out if it's really a man page. */
    398  1.1      cgd 		for (cnt = pg->gl_pathc - pg->gl_matchc;
    399  1.1      cgd 		    cnt < pg->gl_pathc; ++cnt) {
    400  1.1      cgd 
    401  1.1      cgd 			/*
    402  1.1      cgd 			 * Try the _suffix key words first.
    403  1.1      cgd 			 *
    404  1.1      cgd 			 * XXX
    405  1.1      cgd 			 * Older versions of man.conf didn't have the suffix
    406  1.1      cgd 			 * key words, it was assumed that everything was a .0.
    407  1.1      cgd 			 * We just test for .0 first, it's fast and probably
    408  1.1      cgd 			 * going to hit.
    409  1.1      cgd 			 */
    410  1.1      cgd 			(void)snprintf(buf, sizeof(buf), "*/%s.0", page);
    411  1.1      cgd 			if (!fnmatch(buf, pg->gl_pathv[cnt], 0))
    412  1.3      cgd 				goto next;
    413  1.1      cgd 
    414  1.1      cgd 			e_sufp = (sufp = getlist("_suffix")) == NULL ?
    415  1.1      cgd 			    NULL : sufp->list.tqh_first;
    416  1.1      cgd 			for (found = 0;
    417  1.1      cgd 			    e_sufp != NULL; e_sufp = e_sufp->q.tqe_next) {
    418  1.1      cgd 				(void)snprintf(buf,
    419  1.1      cgd 				     sizeof(buf), "*/%s%s", page, e_sufp->s);
    420  1.1      cgd 				if (!fnmatch(buf, pg->gl_pathv[cnt], 0)) {
    421  1.1      cgd 					found = 1;
    422  1.1      cgd 					break;
    423  1.1      cgd 				}
    424  1.1      cgd 			}
    425  1.3      cgd 			if (found)
    426  1.3      cgd 				goto next;
    427  1.1      cgd 
    428  1.1      cgd 			/* Try the _build key words next. */
    429  1.1      cgd 			e_sufp = (sufp = getlist("_build")) == NULL ?
    430  1.1      cgd 			    NULL : sufp->list.tqh_first;
    431  1.1      cgd 			for (found = 0;
    432  1.1      cgd 			    e_sufp != NULL; e_sufp = e_sufp->q.tqe_next) {
    433  1.1      cgd 				for (p = e_sufp->s;
    434  1.1      cgd 				    *p != '\0' && !isspace(*p); ++p);
    435  1.1      cgd 				if (*p == '\0')
    436  1.1      cgd 					continue;
    437  1.1      cgd 				*p = '\0';
    438  1.1      cgd 				(void)snprintf(buf,
    439  1.1      cgd 				     sizeof(buf), "*/%s%s", page, e_sufp->s);
    440  1.1      cgd 				if (!fnmatch(buf, pg->gl_pathv[cnt], 0)) {
    441  1.1      cgd 					if (!f_where)
    442  1.1      cgd 						build_page(p + 1,
    443  1.1      cgd 						    &pg->gl_pathv[cnt]);
    444  1.1      cgd 					*p = ' ';
    445  1.1      cgd 					found = 1;
    446  1.1      cgd 					break;
    447  1.1      cgd 				}
    448  1.1      cgd 				*p = ' ';
    449  1.1      cgd 			}
    450  1.1      cgd 			if (found) {
    451  1.3      cgd next:				anyfound = 1;
    452  1.3      cgd 				if (!f_all) {
    453  1.3      cgd 					/* Delete any other matches. */
    454  1.3      cgd 					while (++cnt< pg->gl_pathc)
    455  1.3      cgd 						pg->gl_pathv[cnt] = "";
    456  1.1      cgd 					break;
    457  1.3      cgd 				}
    458  1.1      cgd 				continue;
    459  1.1      cgd 			}
    460  1.1      cgd 
    461  1.1      cgd 			/* It's not a man page, forget about it. */
    462  1.1      cgd 			pg->gl_pathv[cnt] = "";
    463  1.1      cgd 		}
    464  1.1      cgd 
    465  1.1      cgd 		if (anyfound && !f_all)
    466  1.1      cgd 			break;
    467  1.1      cgd 	}
    468  1.1      cgd 
    469  1.1      cgd 	/* If not found, enter onto the missing list. */
    470  1.1      cgd 	if (!anyfound) {
    471  1.1      cgd 		if ((missp = getlist("_missing")) == NULL)
    472  1.1      cgd 			missp = addlist("_missing");
    473  1.1      cgd 		if ((ep = malloc(sizeof(ENTRY))) == NULL ||
    474  1.1      cgd 		    (ep->s = strdup(page)) == NULL) {
    475  1.9    mikel 			warn("malloc");
    476  1.1      cgd 			(void)cleanup();
    477  1.1      cgd 			exit(1);
    478  1.1      cgd 		}
    479  1.1      cgd 		TAILQ_INSERT_TAIL(&missp->list, ep, q);
    480  1.1      cgd 	}
    481  1.1      cgd 	return (anyfound);
    482  1.1      cgd }
    483  1.1      cgd 
    484  1.1      cgd /*
    485  1.1      cgd  * build_page --
    486  1.1      cgd  *	Build a man page for display.
    487  1.1      cgd  */
    488  1.1      cgd static void
    489  1.1      cgd build_page(fmt, pathp)
    490  1.1      cgd 	char *fmt, **pathp;
    491  1.1      cgd {
    492  1.1      cgd 	static int warned;
    493  1.1      cgd 	ENTRY *ep;
    494  1.1      cgd 	TAG *intmpp;
    495  1.4      jtc 	int fd, n;
    496  1.4      jtc 	char *p, *b;
    497  1.1      cgd 	char buf[MAXPATHLEN], cmd[MAXPATHLEN], tpath[sizeof(_PATH_TMP)];
    498  1.1      cgd 
    499  1.1      cgd 	/* Let the user know this may take awhile. */
    500  1.1      cgd 	if (!warned) {
    501  1.1      cgd 		warned = 1;
    502  1.1      cgd 		warnx("Formatting manual page...");
    503  1.1      cgd 	}
    504  1.1      cgd 
    505  1.7      tls        /*
    506  1.7      tls         * Historically man chdir'd to the root of the man tree.
    507  1.7      tls         * This was used in man pages that contained relative ".so"
    508  1.7      tls         * directives (including other man pages for command aliases etc.)
    509  1.7      tls         * It even went one step farther, by examining the first line
    510  1.7      tls         * of the man page and parsing the .so filename so it would
    511  1.7      tls         * make hard(?) links to the cat'ted man pages for space savings.
    512  1.7      tls         * (We don't do that here, but we could).
    513  1.7      tls         */
    514  1.7      tls 
    515  1.7      tls        /* copy and find the end */
    516  1.7      tls        for (b = buf, p = *pathp; (*b++ = *p++) != '\0';)
    517  1.7      tls                continue;
    518  1.7      tls 
    519  1.7      tls        /* skip the last two path components, page name and man[n] */
    520  1.7      tls        for (--b, n = 2; b != buf; b--)
    521  1.7      tls                if (*b == '/')
    522  1.7      tls                        if (--n == 0) {
    523  1.7      tls                                *b = '\0';
    524  1.7      tls                                (void) chdir(buf);
    525  1.7      tls                        }
    526  1.4      jtc 
    527  1.4      jtc 
    528  1.1      cgd 	/* Add a remove-when-done list. */
    529  1.1      cgd 	if ((intmpp = getlist("_intmp")) == NULL)
    530  1.1      cgd 		intmpp = addlist("_intmp");
    531  1.1      cgd 
    532  1.1      cgd 	/* Move to the printf(3) format string. */
    533  1.7      tls 	for (; *fmt && isspace(*fmt); ++fmt);
    534  1.1      cgd 
    535  1.1      cgd 	/*
    536  1.1      cgd 	 * Get a temporary file and build a version of the file
    537  1.1      cgd 	 * to display.  Replace the old file name with the new one.
    538  1.1      cgd 	 */
    539  1.1      cgd 	(void)strcpy(tpath, _PATH_TMP);
    540  1.1      cgd 	if ((fd = mkstemp(tpath)) == -1) {
    541  1.1      cgd 		warn("%s", tpath);
    542  1.1      cgd 		(void)cleanup();
    543  1.1      cgd 		exit(1);
    544  1.1      cgd 	}
    545  1.1      cgd 	(void)snprintf(buf, sizeof(buf), "%s > %s", fmt, tpath);
    546  1.1      cgd 	(void)snprintf(cmd, sizeof(cmd), buf, *pathp);
    547  1.1      cgd 	(void)system(cmd);
    548  1.1      cgd 	(void)close(fd);
    549  1.1      cgd 	if ((*pathp = strdup(tpath)) == NULL) {
    550  1.9    mikel 		warn("malloc");
    551  1.1      cgd 		(void)cleanup();
    552  1.1      cgd 		exit(1);
    553  1.1      cgd 	}
    554  1.1      cgd 
    555  1.1      cgd 	/* Link the built file into the remove-when-done list. */
    556  1.1      cgd 	if ((ep = malloc(sizeof(ENTRY))) == NULL) {
    557  1.9    mikel 		warn("malloc");
    558  1.1      cgd 		(void)cleanup();
    559  1.1      cgd 		exit(1);
    560  1.1      cgd 	}
    561  1.1      cgd 	ep->s = *pathp;
    562  1.1      cgd 	TAILQ_INSERT_TAIL(&intmpp->list, ep, q);
    563  1.1      cgd }
    564  1.1      cgd 
    565  1.1      cgd /*
    566  1.1      cgd  * how --
    567  1.1      cgd  *	display how information
    568  1.1      cgd  */
    569  1.1      cgd static void
    570  1.1      cgd how(fname)
    571  1.1      cgd 	char *fname;
    572  1.1      cgd {
    573  1.1      cgd 	FILE *fp;
    574  1.1      cgd 
    575  1.1      cgd 	int lcnt, print;
    576  1.1      cgd 	char *p, buf[256];
    577  1.1      cgd 
    578  1.1      cgd 	if (!(fp = fopen(fname, "r"))) {
    579  1.1      cgd 		warn("%s", fname);
    580  1.1      cgd 		(void)cleanup();
    581  1.1      cgd 		exit (1);
    582  1.1      cgd 	}
    583  1.1      cgd #define	S1	"SYNOPSIS"
    584  1.1      cgd #define	S2	"S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS"
    585  1.1      cgd #define	D1	"DESCRIPTION"
    586  1.1      cgd #define	D2	"D\bDE\bES\bSC\bCR\bRI\bIP\bPT\bTI\bIO\bON\bN"
    587  1.1      cgd 	for (lcnt = print = 0; fgets(buf, sizeof(buf), fp);) {
    588  1.1      cgd 		if (!strncmp(buf, S1, sizeof(S1) - 1) ||
    589  1.1      cgd 		    !strncmp(buf, S2, sizeof(S2) - 1)) {
    590  1.1      cgd 			print = 1;
    591  1.1      cgd 			continue;
    592  1.1      cgd 		} else if (!strncmp(buf, D1, sizeof(D1) - 1) ||
    593  1.1      cgd 		    !strncmp(buf, D2, sizeof(D2) - 1))
    594  1.1      cgd 			return;
    595  1.1      cgd 		if (!print)
    596  1.1      cgd 			continue;
    597  1.1      cgd 		if (*buf == '\n')
    598  1.1      cgd 			++lcnt;
    599  1.1      cgd 		else {
    600  1.1      cgd 			for(; lcnt; --lcnt)
    601  1.1      cgd 				(void)putchar('\n');
    602  1.1      cgd 			for (p = buf; isspace(*p); ++p);
    603  1.1      cgd 			(void)fputs(p, stdout);
    604  1.1      cgd 		}
    605  1.1      cgd 	}
    606  1.1      cgd 	(void)fclose(fp);
    607  1.1      cgd }
    608  1.1      cgd 
    609  1.1      cgd /*
    610  1.1      cgd  * cat --
    611  1.1      cgd  *	cat out the file
    612  1.1      cgd  */
    613  1.1      cgd static void
    614  1.1      cgd cat(fname)
    615  1.1      cgd 	char *fname;
    616  1.1      cgd {
    617  1.1      cgd 	int fd, n;
    618  1.1      cgd 	char buf[2048];
    619  1.1      cgd 
    620  1.1      cgd 	if ((fd = open(fname, O_RDONLY, 0)) < 0) {
    621  1.1      cgd 		warn("%s", fname);
    622  1.1      cgd 		(void)cleanup();
    623  1.1      cgd 		exit(1);
    624  1.1      cgd 	}
    625  1.1      cgd 	while ((n = read(fd, buf, sizeof(buf))) > 0)
    626  1.1      cgd 		if (write(STDOUT_FILENO, buf, n) != n) {
    627  1.1      cgd 			warn("write");
    628  1.1      cgd 			(void)cleanup();
    629  1.1      cgd 			exit (1);
    630  1.1      cgd 		}
    631  1.1      cgd 	if (n == -1) {
    632  1.1      cgd 		warn("read");
    633  1.1      cgd 		(void)cleanup();
    634  1.1      cgd 		exit(1);
    635  1.1      cgd 	}
    636  1.1      cgd 	(void)close(fd);
    637  1.1      cgd }
    638  1.1      cgd 
    639  1.1      cgd /*
    640  1.1      cgd  * check_pager --
    641  1.1      cgd  *	check the user supplied page information
    642  1.1      cgd  */
    643  1.1      cgd static char *
    644  1.1      cgd check_pager(name)
    645  1.1      cgd 	char *name;
    646  1.1      cgd {
    647  1.1      cgd 	char *p, *save;
    648  1.1      cgd 
    649  1.1      cgd 	/*
    650  1.1      cgd 	 * if the user uses "more", we make it "more -s"; watch out for
    651  1.1      cgd 	 * PAGER = "mypager /usr/ucb/more"
    652  1.1      cgd 	 */
    653  1.1      cgd 	for (p = name; *p && !isspace(*p); ++p);
    654  1.1      cgd 	for (; p > name && *p != '/'; --p);
    655  1.1      cgd 	if (p != name)
    656  1.1      cgd 		++p;
    657  1.1      cgd 
    658  1.1      cgd 	/* make sure it's "more", not "morex" */
    659  1.1      cgd 	if (!strncmp(p, "more", 4) && (!p[4] || isspace(p[4]))){
    660  1.1      cgd 		save = name;
    661  1.1      cgd 		/* allocate space to add the "-s" */
    662  1.1      cgd 		if (!(name =
    663  1.1      cgd 		    malloc((u_int)(strlen(save) + sizeof("-s") + 1))))
    664  1.9    mikel 			err(1, "malloc");
    665  1.1      cgd 		(void)sprintf(name, "%s %s", save, "-s");
    666  1.1      cgd 	}
    667  1.1      cgd 	return(name);
    668  1.1      cgd }
    669  1.1      cgd 
    670  1.1      cgd /*
    671  1.1      cgd  * jump --
    672  1.1      cgd  *	strip out flag argument and jump
    673  1.1      cgd  */
    674  1.1      cgd static void
    675  1.1      cgd jump(argv, flag, name)
    676  1.1      cgd 	char **argv, *flag, *name;
    677  1.1      cgd {
    678  1.1      cgd 	char **arg;
    679  1.1      cgd 
    680  1.1      cgd 	argv[0] = name;
    681  1.1      cgd 	for (arg = argv + 1; *arg; ++arg)
    682  1.1      cgd 		if (!strcmp(*arg, flag))
    683  1.1      cgd 			break;
    684  1.1      cgd 	for (; *arg; ++arg)
    685  1.1      cgd 		arg[0] = arg[1];
    686  1.1      cgd 	execvp(name, argv);
    687  1.1      cgd 	(void)fprintf(stderr, "%s: Command not found.\n", name);
    688  1.1      cgd 	exit(1);
    689  1.1      cgd }
    690  1.1      cgd 
    691  1.1      cgd /*
    692  1.1      cgd  * onsig --
    693  1.1      cgd  *	If signaled, delete the temporary files.
    694  1.1      cgd  */
    695  1.1      cgd static void
    696  1.1      cgd onsig(signo)
    697  1.1      cgd 	int signo;
    698  1.1      cgd {
    699  1.1      cgd 	(void)cleanup();
    700  1.1      cgd 
    701  1.1      cgd 	(void)signal(signo, SIG_DFL);
    702  1.1      cgd 	(void)kill(getpid(), signo);
    703  1.1      cgd 
    704  1.1      cgd 	/* NOTREACHED */
    705  1.1      cgd 	exit (1);
    706  1.1      cgd }
    707  1.1      cgd 
    708  1.1      cgd /*
    709  1.1      cgd  * cleanup --
    710  1.1      cgd  *	Clean up temporary files, show any error messages.
    711  1.1      cgd  */
    712  1.1      cgd static int
    713  1.1      cgd cleanup()
    714  1.1      cgd {
    715  1.1      cgd 	TAG *intmpp, *missp;
    716  1.1      cgd 	ENTRY *ep;
    717  1.1      cgd 	int rval;
    718  1.1      cgd 
    719  1.1      cgd 	rval = 0;
    720  1.1      cgd 	ep = (missp = getlist("_missing")) == NULL ?
    721  1.1      cgd 	    NULL : missp->list.tqh_first;
    722  1.1      cgd 	if (ep != NULL)
    723  1.1      cgd 		for (; ep != NULL; ep = ep->q.tqe_next) {
    724  1.1      cgd 			warnx("no entry for %s in the manual.", ep->s);
    725  1.1      cgd 			rval = 1;
    726  1.1      cgd 		}
    727  1.1      cgd 
    728  1.1      cgd 	ep = (intmpp = getlist("_intmp")) == NULL ?
    729  1.1      cgd 	    NULL : intmpp->list.tqh_first;
    730  1.1      cgd 	for (; ep != NULL; ep = ep->q.tqe_next)
    731  1.1      cgd 		(void)unlink(ep->s);
    732  1.1      cgd 	return (rval);
    733  1.1      cgd }
    734  1.1      cgd 
    735  1.1      cgd /*
    736  1.1      cgd  * usage --
    737  1.1      cgd  *	print usage message and die
    738  1.1      cgd  */
    739  1.1      cgd static void
    740  1.1      cgd usage()
    741  1.1      cgd {
    742  1.1      cgd 	(void)fprintf(stderr,
    743  1.5  mycroft     "usage: man [-achw] [-C file] [-M path] [-m path] [section] title ...\n");
    744  1.1      cgd 	exit(1);
    745  1.1      cgd }
    746