Home | History | Annotate | Line # | Download | only in makewhatis
makewhatis.c revision 1.24.2.2
      1  1.24.2.2        he /*	$NetBSD: makewhatis.c,v 1.24.2.2 2002/11/03 19:47:19 he Exp $	*/
      2       1.1      tron 
      3       1.1      tron /*-
      4       1.1      tron  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5       1.1      tron  * All rights reserved.
      6       1.1      tron  *
      7       1.1      tron  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1      tron  * by Matthias Scheler.
      9       1.1      tron  *
     10       1.1      tron  * Redistribution and use in source and binary forms, with or without
     11       1.1      tron  * modification, are permitted provided that the following conditions
     12       1.1      tron  * are met:
     13       1.1      tron  * 1. Redistributions of source code must retain the above copyright
     14       1.1      tron  *    notice, this list of conditions and the following disclaimer.
     15       1.1      tron  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1      tron  *    notice, this list of conditions and the following disclaimer in the
     17       1.1      tron  *    documentation and/or other materials provided with the distribution.
     18       1.1      tron  * 3. All advertising materials mentioning features or use of this software
     19       1.1      tron  *    must display the following acknowledgement:
     20       1.1      tron  *	This product includes software developed by the NetBSD
     21       1.1      tron  *	Foundation, Inc. and its contributors.
     22       1.1      tron  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1      tron  *    contributors may be used to endorse or promote products derived
     24       1.1      tron  *    from this software without specific prior written permission.
     25       1.1      tron  *
     26       1.1      tron  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1      tron  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1      tron  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.18  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1      tron  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1      tron  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1      tron  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1      tron  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1      tron  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1      tron  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1      tron  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1      tron  */
     38       1.1      tron 
     39       1.1      tron #include <sys/cdefs.h>
     40      1.21        tv #if defined(__COPYRIGHT) && !defined(lint)
     41       1.1      tron __COPYRIGHT("@(#) Copyright (c) 1999 The NetBSD Foundation, Inc.\n\
     42       1.1      tron 	All rights reserved.\n");
     43       1.1      tron #endif /* not lint */
     44       1.1      tron 
     45      1.21        tv #if defined(__RCSID) && !defined(lint)
     46  1.24.2.2        he __RCSID("$NetBSD: makewhatis.c,v 1.24.2.2 2002/11/03 19:47:19 he Exp $");
     47       1.1      tron #endif /* not lint */
     48       1.1      tron 
     49      1.21        tv #if HAVE_CONFIG_H
     50      1.21        tv #include "config.h"
     51      1.21        tv #endif
     52      1.21        tv 
     53       1.1      tron #include <sys/types.h>
     54       1.8      tron #include <sys/param.h>
     55      1.23  jdolecek #include <sys/queue.h>
     56       1.1      tron #include <sys/stat.h>
     57       1.8      tron #include <sys/wait.h>
     58       1.1      tron 
     59       1.1      tron #include <ctype.h>
     60      1.21        tv #include <err.h>
     61       1.1      tron #include <errno.h>
     62      1.10      tron #include <fcntl.h>
     63      1.21        tv #include <fts.h>
     64      1.23  jdolecek #include <glob.h>
     65       1.1      tron #include <locale.h>
     66       1.8      tron #include <paths.h>
     67      1.11      tron #include <signal.h>
     68       1.1      tron #include <stdio.h>
     69       1.1      tron #include <stdlib.h>
     70       1.1      tron #include <string.h>
     71       1.1      tron #include <unistd.h>
     72       1.1      tron #include <zlib.h>
     73       1.1      tron 
     74  1.24.2.1        he #include <man/manconf.h>
     75      1.23  jdolecek #include <man/pathnames.h>
     76      1.23  jdolecek 
     77       1.1      tron typedef struct manpagestruct manpage;
     78       1.1      tron struct manpagestruct {
     79       1.1      tron 	manpage *mp_left,*mp_right;
     80       1.1      tron 	ino_t	 mp_inode;
     81      1.22  jdolecek 	size_t	 mp_sdoff;
     82      1.22  jdolecek 	size_t	 mp_sdlen;
     83      1.18  christos 	char	 mp_name[1];
     84       1.1      tron };
     85       1.1      tron 
     86       1.1      tron typedef struct whatisstruct whatis;
     87       1.1      tron struct whatisstruct {
     88       1.1      tron 	whatis	*wi_left,*wi_right;
     89       1.1      tron 	char	*wi_data;
     90      1.22  jdolecek 	char	wi_prefix[1];
     91       1.1      tron };
     92       1.1      tron 
     93      1.22  jdolecek int	 main(int, char * const *);
     94      1.18  christos char	*findwhitespace(char *);
     95      1.18  christos char	*strmove(char *,char *);
     96      1.18  christos char	*GetS(gzFile, char *, size_t);
     97      1.18  christos int	 manpagesection(char *);
     98      1.18  christos char	*createsectionstring(char *);
     99      1.22  jdolecek void	 addmanpage(manpage **, ino_t, char *, size_t, size_t);
    100      1.22  jdolecek void	 addwhatis(whatis **, char *, char *);
    101      1.18  christos char	*replacestring(char *, char *, char *);
    102      1.18  christos void	 catpreprocess(char *);
    103      1.18  christos char	*parsecatpage(gzFile *);
    104      1.18  christos int	 manpreprocess(char *);
    105      1.18  christos char	*nroff(gzFile *);
    106      1.18  christos char	*parsemanpage(gzFile *, int);
    107      1.18  christos char	*getwhatisdata(char *);
    108      1.18  christos void	 processmanpages(manpage **,whatis **);
    109      1.18  christos void	 dumpwhatis(FILE *, whatis *);
    110      1.18  christos void	*emalloc(size_t);
    111      1.18  christos char	*estrdup(const char *);
    112      1.23  jdolecek static int makewhatis(char * const *manpath);
    113       1.1      tron 
    114      1.22  jdolecek char * const default_manpath[] = {
    115       1.1      tron 	"/usr/share/man",
    116       1.1      tron 	NULL
    117       1.1      tron };
    118       1.1      tron 
    119      1.22  jdolecek const char *sectionext	= "0123456789ln";
    120      1.23  jdolecek const char *whatisdb	= _PATH_WHATIS;
    121       1.1      tron 
    122       1.1      tron int
    123      1.22  jdolecek main(int argc, char *const *argv)
    124       1.1      tron {
    125      1.22  jdolecek 	char	* const *manpath;
    126      1.23  jdolecek 	int c, dofork=1;
    127      1.23  jdolecek 	const char *conffile = NULL;
    128      1.23  jdolecek 	ENTRY *ep;
    129      1.23  jdolecek 	TAG *tp;
    130      1.23  jdolecek 	int rv, jobs = 0, status;
    131      1.23  jdolecek 	glob_t pg;
    132      1.23  jdolecek 	char *paths[2], **p, *sl;
    133      1.23  jdolecek 	int retval = EXIT_SUCCESS;
    134      1.23  jdolecek 
    135      1.23  jdolecek 	(void)setlocale(LC_ALL, "");
    136      1.23  jdolecek 
    137      1.23  jdolecek 	while((c = getopt(argc, argv, "C:f")) != -1) {
    138      1.23  jdolecek 		switch(c) {
    139      1.23  jdolecek 		case 'C':
    140      1.23  jdolecek 			conffile = optarg;
    141      1.23  jdolecek 			break;
    142      1.23  jdolecek 		case 'f':
    143      1.23  jdolecek 			/* run all processing on foreground */
    144      1.23  jdolecek 			dofork = 0;
    145      1.23  jdolecek 			break;
    146      1.23  jdolecek 		default:
    147      1.23  jdolecek 			fprintf(stderr, "Usage: %s [-C file] [-f] [path ...]\n",
    148      1.23  jdolecek 				getprogname());
    149      1.23  jdolecek 			exit(EXIT_FAILURE);
    150      1.23  jdolecek 		}
    151      1.23  jdolecek 	}
    152      1.23  jdolecek 	argc -= optind;
    153      1.23  jdolecek 	argv += optind;
    154      1.23  jdolecek 
    155      1.24  jdolecek 	if (argc >= 1) {
    156      1.23  jdolecek 		manpath = &argv[0];
    157      1.23  jdolecek 
    158      1.23  jdolecek 	    mkwhatis:
    159      1.23  jdolecek 		return (makewhatis(manpath));
    160      1.23  jdolecek 	}
    161      1.23  jdolecek 
    162      1.23  jdolecek 	/*
    163      1.23  jdolecek 	 * Try read config file, fallback to default_manpath[]
    164      1.23  jdolecek 	 * if man.conf not available.
    165      1.23  jdolecek 	 */
    166      1.23  jdolecek 	config(conffile);
    167  1.24.2.2        he 	if ((tp = getlist("_whatdb", 0)) == NULL) {
    168      1.23  jdolecek 		manpath = default_manpath;
    169      1.23  jdolecek 		goto mkwhatis;
    170      1.23  jdolecek 	}
    171      1.23  jdolecek 
    172      1.23  jdolecek 	/* Build individual databases */
    173      1.23  jdolecek 	paths[1] = NULL;
    174      1.23  jdolecek 	TAILQ_FOREACH(ep, &tp->list, q) {
    175      1.23  jdolecek 		if ((rv = glob(ep->s,
    176      1.23  jdolecek 		    GLOB_BRACE | GLOB_NOSORT | GLOB_ERR | GLOB_NOCHECK,
    177      1.23  jdolecek 		    NULL, &pg)) != 0)
    178      1.23  jdolecek 			err(EXIT_FAILURE, "glob('%s')", ep->s);
    179      1.23  jdolecek 
    180      1.23  jdolecek 		/* We always have something to work with here */
    181      1.23  jdolecek 		for (p = pg.gl_pathv; *p; p++) {
    182      1.23  jdolecek 			sl = strrchr(*p, '/');
    183      1.23  jdolecek 			if (!sl)
    184      1.23  jdolecek 				err(EXIT_FAILURE, "glob: _whatdb entry '%s' doesn't contain slash", ep->s);
    185      1.23  jdolecek 
    186      1.23  jdolecek 			/*
    187      1.23  jdolecek 			 * Cut the last component of path, leaving just
    188      1.23  jdolecek 			 * the directory. We will use the result as root
    189      1.23  jdolecek 			 * for manpage search.
    190      1.23  jdolecek 			 * glob malloc()s space for the paths, so it's
    191      1.23  jdolecek 			 * okay to change it in-place.
    192      1.23  jdolecek 			 */
    193      1.23  jdolecek 			*sl = '\0';
    194      1.23  jdolecek 			paths[0] = *p;
    195      1.23  jdolecek 
    196      1.23  jdolecek 			if (!dofork) {
    197      1.23  jdolecek 				/* Do not fork child */
    198      1.23  jdolecek 				makewhatis(paths);
    199      1.23  jdolecek 				continue;
    200      1.23  jdolecek 			}
    201      1.23  jdolecek 
    202      1.23  jdolecek 			switch (fork()) {
    203      1.23  jdolecek 			case 0:
    204      1.23  jdolecek 				exit(makewhatis(paths));
    205      1.23  jdolecek 				break;
    206      1.23  jdolecek 			case -1:
    207      1.23  jdolecek 				warn("fork");
    208      1.23  jdolecek 				makewhatis(paths);
    209      1.23  jdolecek 				break;
    210      1.23  jdolecek 			default:
    211      1.23  jdolecek 				jobs++;
    212      1.23  jdolecek 				break;
    213      1.23  jdolecek 			}
    214      1.23  jdolecek 
    215      1.23  jdolecek 		}
    216      1.23  jdolecek 
    217      1.23  jdolecek 		globfree(&pg);
    218      1.23  jdolecek 	}
    219      1.23  jdolecek 
    220      1.23  jdolecek 	/* Wait for the childern to finish */
    221      1.23  jdolecek 	while(jobs > 0) {
    222      1.23  jdolecek 		wait(&status);
    223      1.23  jdolecek 		if (!WIFEXITED(status) || WEXITSTATUS(status) != EXIT_SUCCESS)
    224      1.23  jdolecek 			retval = EXIT_FAILURE;
    225      1.23  jdolecek 		jobs--;
    226      1.23  jdolecek 	}
    227      1.23  jdolecek 
    228      1.23  jdolecek 	return (retval);
    229      1.23  jdolecek }
    230      1.23  jdolecek 
    231      1.23  jdolecek static int
    232      1.23  jdolecek makewhatis(char * const * manpath)
    233      1.23  jdolecek {
    234       1.1      tron 	FTS	*fts;
    235       1.1      tron 	FTSENT	*fe;
    236      1.18  christos 	manpage *source;
    237       1.1      tron 	whatis	*dest;
    238       1.1      tron 	FILE	*out;
    239      1.22  jdolecek 	size_t	sdoff, sdlen;
    240       1.1      tron 
    241      1.18  christos 	if ((fts = fts_open(manpath, FTS_LOGICAL, NULL)) == NULL)
    242      1.18  christos 		err(EXIT_FAILURE, "Cannot open `%s'", *manpath);
    243       1.1      tron 
    244       1.1      tron 	source = NULL;
    245       1.1      tron 	while ((fe = fts_read(fts)) != NULL) {
    246       1.1      tron 		switch (fe->fts_info) {
    247       1.1      tron 		case FTS_F:
    248      1.22  jdolecek 			if (manpagesection(fe->fts_path) >= 0) {
    249      1.22  jdolecek 				/*
    250      1.22  jdolecek 				 * Get manpage subdirectory prefix. Most
    251      1.22  jdolecek 				 * commonly, this is arch-specific subdirectory.
    252      1.22  jdolecek 				 */
    253      1.22  jdolecek 				if (fe->fts_level >= 3) {
    254      1.22  jdolecek 					int sl = fe->fts_level - 1;
    255      1.22  jdolecek 					const char *s, *lsl=NULL;
    256      1.22  jdolecek 
    257      1.22  jdolecek 					s = &fe->fts_path[fe->fts_pathlen-1];
    258      1.22  jdolecek 					for(; sl > 0; sl--) {
    259      1.22  jdolecek 						s--;
    260      1.22  jdolecek 						while(s[0] != '/') s--;
    261      1.22  jdolecek 						if (!lsl)
    262      1.22  jdolecek 							lsl = s;
    263      1.22  jdolecek 					}
    264      1.22  jdolecek 
    265      1.22  jdolecek 					/* Include trailing '/', so we get
    266      1.22  jdolecek 					 * 'arch/'. */
    267      1.22  jdolecek 					sdoff = s + 1 - fe->fts_path;
    268      1.22  jdolecek 					sdlen = lsl - s + 1;
    269      1.22  jdolecek 				} else {
    270      1.22  jdolecek 					sdoff = 0;
    271      1.22  jdolecek 					sdlen = 0;
    272      1.22  jdolecek 				}
    273      1.22  jdolecek 
    274      1.18  christos 				addmanpage(&source, fe->fts_statp->st_ino,
    275      1.22  jdolecek 				    fe->fts_path, sdoff, sdlen);
    276      1.22  jdolecek 			}
    277      1.18  christos 			/*FALLTHROUGH*/
    278       1.1      tron 		case FTS_D:
    279       1.4      tron 		case FTS_DC:
    280       1.4      tron 		case FTS_DEFAULT:
    281       1.1      tron 		case FTS_DP:
    282       1.4      tron 		case FTS_SLNONE:
    283       1.1      tron 			break;
    284       1.1      tron 		default:
    285      1.18  christos 			errno = fe->fts_errno;
    286      1.18  christos 			err(EXIT_FAILURE, "Error reading `%s'", fe->fts_path);
    287       1.1      tron 		}
    288       1.1      tron 	}
    289       1.1      tron 
    290       1.1      tron 	(void)fts_close(fts);
    291       1.1      tron 
    292       1.1      tron 	dest = NULL;
    293       1.1      tron 	processmanpages(&source, &dest);
    294       1.1      tron 
    295      1.18  christos 	if (chdir(manpath[0]) == -1)
    296      1.18  christos 		err(EXIT_FAILURE, "Cannot change dir to `%s'", manpath[0]);
    297       1.1      tron 
    298      1.18  christos 	(void)unlink(whatisdb);
    299       1.1      tron 	if ((out = fopen(whatisdb, "w")) == NULL)
    300      1.18  christos 		err(EXIT_FAILURE, "Cannot open `%s'", whatisdb);
    301       1.1      tron 
    302      1.18  christos 	dumpwhatis(out, dest);
    303      1.18  christos 	if (fchmod(fileno(out), S_IRUSR|S_IRGRP|S_IROTH) == -1)
    304      1.18  christos 		err(EXIT_FAILURE, "Cannot chmod `%s'", whatisdb);
    305      1.18  christos 	if (fclose(out) != 0)
    306      1.18  christos 		err(EXIT_FAILURE, "Cannot close `%s'", whatisdb);
    307       1.1      tron 
    308       1.1      tron 	return EXIT_SUCCESS;
    309       1.1      tron }
    310       1.1      tron 
    311      1.18  christos char *
    312      1.18  christos findwhitespace(char *str)
    313       1.6      tron {
    314      1.18  christos 	while (!isspace((unsigned char)*str))
    315       1.6      tron 		if (*str++ == '\0') {
    316       1.6      tron 			str = NULL;
    317       1.6      tron 			break;
    318       1.6      tron 		}
    319       1.6      tron 
    320       1.6      tron 	return str;
    321       1.6      tron }
    322       1.6      tron 
    323       1.6      tron char
    324      1.14      tron *strmove(char *dest,char *src)
    325      1.14      tron {
    326      1.14      tron 	return memmove(dest, src, strlen(src) + 1);
    327      1.14      tron }
    328      1.14      tron 
    329      1.18  christos char *
    330      1.18  christos GetS(gzFile in, char *buffer, size_t length)
    331       1.5      tron {
    332       1.5      tron 	char	*ptr;
    333       1.5      tron 
    334      1.18  christos 	if (((ptr = gzgets(in, buffer, (int)length)) != NULL) && (*ptr == '\0'))
    335       1.5      tron 		ptr = NULL;
    336       1.5      tron 
    337       1.5      tron 	return ptr;
    338       1.5      tron }
    339       1.5      tron 
    340       1.1      tron int
    341       1.1      tron manpagesection(char *name)
    342       1.1      tron {
    343       1.1      tron 	char	*ptr;
    344       1.1      tron 
    345       1.1      tron 	if ((ptr = strrchr(name, '/')) != NULL)
    346       1.1      tron 		ptr++;
    347       1.1      tron 	else
    348       1.1      tron 		ptr = name;
    349       1.1      tron 
    350       1.4      tron 	while ((ptr = strchr(ptr, '.')) != NULL) {
    351       1.4      tron 		int section;
    352       1.4      tron 
    353       1.4      tron 		ptr++;
    354       1.4      tron 		section=0;
    355       1.4      tron 		while (sectionext[section] != '\0')
    356       1.4      tron 			if (sectionext[section] == *ptr)
    357       1.4      tron 				return section;
    358       1.4      tron 			else
    359       1.4      tron 				section++;
    360       1.4      tron 	}
    361       1.1      tron 
    362       1.1      tron 	return -1;
    363       1.1      tron }
    364       1.1      tron 
    365      1.18  christos char *
    366      1.18  christos createsectionstring(char *section_id)
    367      1.14      tron {
    368      1.18  christos 	char *section = emalloc(strlen(section_id) + 7);
    369      1.18  christos 	section[0] = ' ';
    370      1.18  christos 	section[1] = '(';
    371      1.18  christos 	(void)strcat(strcpy(&section[2], section_id), ") - ");
    372      1.14      tron 	return section;
    373      1.14      tron }
    374      1.14      tron 
    375      1.18  christos void
    376      1.22  jdolecek addmanpage(manpage **tree,ino_t inode,char *name, size_t sdoff, size_t sdlen)
    377       1.1      tron {
    378      1.18  christos 	manpage *mp;
    379       1.1      tron 
    380       1.1      tron 	while ((mp = *tree) != NULL) {
    381       1.1      tron 		if (mp->mp_inode == inode)
    382      1.18  christos 			return;
    383      1.18  christos 		tree = inode < mp->mp_inode ? &mp->mp_left : &mp->mp_right;
    384       1.1      tron 	}
    385       1.1      tron 
    386      1.18  christos 	mp = emalloc(sizeof(manpage) + strlen(name));
    387       1.1      tron 	mp->mp_left = NULL;
    388       1.1      tron 	mp->mp_right = NULL;
    389       1.1      tron 	mp->mp_inode = inode;
    390      1.22  jdolecek 	mp->mp_sdoff = sdoff;
    391      1.22  jdolecek 	mp->mp_sdlen = sdlen;
    392      1.18  christos 	(void)strcpy(mp->mp_name, name);
    393       1.1      tron 	*tree = mp;
    394       1.1      tron }
    395       1.1      tron 
    396      1.18  christos void
    397      1.22  jdolecek addwhatis(whatis **tree, char *data, char *prefix)
    398       1.1      tron {
    399       1.1      tron 	whatis *wi;
    400       1.1      tron 	int result;
    401       1.1      tron 
    402      1.18  christos 	while (isspace((unsigned char)*data))
    403       1.7      tron 		data++;
    404       1.7      tron 
    405       1.7      tron 	if (*data == '/') {
    406       1.7      tron 		char *ptr;
    407       1.7      tron 
    408       1.7      tron 		ptr = ++data;
    409      1.18  christos 		while ((*ptr != '\0') && !isspace((unsigned char)*ptr))
    410       1.7      tron 			if (*ptr++ == '/')
    411       1.7      tron 				data = ptr;
    412       1.7      tron 	}
    413       1.7      tron 
    414       1.1      tron 	while ((wi = *tree) != NULL) {
    415      1.18  christos 		result = strcmp(data, wi->wi_data);
    416      1.18  christos 		if (result == 0) return;
    417      1.18  christos 		tree = result < 0 ? &wi->wi_left : &wi->wi_right;
    418       1.1      tron 	}
    419       1.1      tron 
    420      1.22  jdolecek 	wi = emalloc(sizeof(whatis) + strlen(prefix));
    421       1.1      tron 
    422       1.1      tron 	wi->wi_left = NULL;
    423       1.1      tron 	wi->wi_right = NULL;
    424       1.1      tron 	wi->wi_data = data;
    425      1.22  jdolecek 	if (prefix[0] != '\0')
    426      1.22  jdolecek 		(void) strcpy(wi->wi_prefix, prefix);
    427      1.22  jdolecek 	else
    428      1.22  jdolecek 		wi->wi_prefix[0] = '\0';
    429       1.1      tron 	*tree = wi;
    430       1.1      tron }
    431       1.1      tron 
    432       1.1      tron void
    433       1.1      tron catpreprocess(char *from)
    434       1.1      tron {
    435       1.1      tron 	char	*to;
    436       1.1      tron 
    437       1.1      tron 	to = from;
    438      1.18  christos 	while (isspace((unsigned char)*from)) from++;
    439       1.1      tron 
    440       1.1      tron 	while (*from != '\0')
    441      1.18  christos 		if (isspace((unsigned char)*from)) {
    442      1.18  christos 			while (isspace((unsigned char)*++from));
    443       1.1      tron 			if (*from != '\0')
    444       1.1      tron 				*to++ = ' ';
    445       1.1      tron 		}
    446       1.1      tron 		else if (*(from + 1) == '\10')
    447       1.1      tron 			from += 2;
    448       1.1      tron 		else
    449       1.1      tron 			*to++ = *from++;
    450       1.1      tron 
    451       1.1      tron 	*to = '\0';
    452       1.1      tron }
    453       1.1      tron 
    454       1.1      tron char *
    455       1.1      tron replacestring(char *string, char *old, char *new)
    456       1.1      tron 
    457       1.1      tron {
    458       1.1      tron 	char	*ptr, *result;
    459      1.18  christos 	size_t	 slength, olength, nlength, pos;
    460       1.1      tron 
    461       1.1      tron 	if (new == NULL)
    462      1.18  christos 		return estrdup(string);
    463       1.1      tron 
    464       1.1      tron 	ptr = strstr(string, old);
    465       1.1      tron 	if (ptr == NULL)
    466      1.18  christos 		return estrdup(string);
    467       1.1      tron 
    468       1.1      tron 	slength = strlen(string);
    469       1.1      tron 	olength = strlen(old);
    470       1.1      tron 	nlength = strlen(new);
    471      1.18  christos 	result = emalloc(slength - olength + nlength + 1);
    472       1.1      tron 
    473       1.1      tron 	pos = ptr - string;
    474      1.18  christos 	(void)memcpy(result, string, pos);
    475      1.18  christos 	(void)memcpy(&result[pos], new, nlength);
    476      1.18  christos 	(void)strcpy(&result[pos + nlength], &string[pos + olength]);
    477       1.1      tron 
    478       1.1      tron 	return result;
    479       1.1      tron }
    480       1.1      tron 
    481       1.1      tron char *
    482       1.1      tron parsecatpage(gzFile *in)
    483       1.1      tron {
    484      1.18  christos 	char	 buffer[8192];
    485       1.1      tron 	char	*section, *ptr, *last;
    486      1.18  christos 	size_t	 size;
    487       1.1      tron 
    488       1.1      tron 	do {
    489       1.5      tron 		if (GetS(in, buffer, sizeof(buffer)) == NULL)
    490       1.1      tron 			return NULL;
    491       1.1      tron 	}
    492       1.1      tron 	while (buffer[0] == '\n');
    493       1.1      tron 
    494       1.1      tron 	section = NULL;
    495       1.1      tron 	if ((ptr = strchr(buffer, '(')) != NULL) {
    496       1.1      tron 		if ((last = strchr(ptr + 1, ')')) !=NULL) {
    497      1.18  christos 			size_t	length;
    498       1.1      tron 
    499       1.1      tron 			length = last - ptr + 1;
    500      1.18  christos 			section = emalloc(length + 5);
    501       1.1      tron 			*section = ' ';
    502       1.1      tron 			(void) memcpy(section + 1, ptr, length);
    503       1.1      tron 			(void) strcpy(section + 1 + length, " - ");
    504       1.1      tron 		}
    505       1.1      tron 	}
    506       1.1      tron 
    507       1.1      tron 	for (;;) {
    508       1.5      tron 		if (GetS(in, buffer, sizeof(buffer)) == NULL) {
    509       1.1      tron 			free(section);
    510       1.1      tron 			return NULL;
    511       1.1      tron 		}
    512      1.16      tron 		catpreprocess(buffer);
    513      1.16      tron 		if (strncmp(buffer, "NAME", 4) == 0)
    514       1.1      tron 			break;
    515       1.1      tron 	}
    516       1.1      tron 
    517       1.1      tron 	ptr = last = buffer;
    518       1.1      tron 	size = sizeof(buffer) - 1;
    519       1.5      tron 	while ((size > 0) && (GetS(in, ptr, size) != NULL)) {
    520       1.1      tron 		int	 length;
    521       1.1      tron 
    522       1.1      tron 		catpreprocess(ptr);
    523       1.1      tron 
    524       1.1      tron 		length = strlen(ptr);
    525       1.1      tron 		if (length == 0) {
    526       1.1      tron 			*last = '\0';
    527       1.1      tron 
    528       1.1      tron 			ptr = replacestring(buffer, " - ", section);
    529       1.1      tron 			free(section);
    530       1.1      tron 			return ptr;
    531       1.1      tron 		}
    532       1.1      tron 		if ((length > 1) && (ptr[length - 1] == '-') &&
    533       1.1      tron 		    isalpha(ptr[length - 2]))
    534       1.1      tron 			last = &ptr[--length];
    535       1.1      tron 		else {
    536       1.1      tron 			last = &ptr[length++];
    537       1.1      tron 			*last = ' ';
    538       1.1      tron 		}
    539       1.1      tron 
    540       1.1      tron 		ptr += length;
    541       1.1      tron 		size -= length;
    542       1.1      tron 	}
    543       1.1      tron 
    544       1.1      tron 	free(section);
    545       1.1      tron 
    546       1.1      tron 	return NULL;
    547       1.1      tron }
    548       1.1      tron 
    549       1.1      tron int
    550       1.1      tron manpreprocess(char *line)
    551       1.1      tron {
    552       1.1      tron 	char	*from, *to;
    553       1.1      tron 
    554       1.1      tron 	to = from = line;
    555      1.18  christos 	while (isspace((unsigned char)*from)) from++;
    556       1.1      tron 	if (strncmp(from, ".\\\"", 3) == 0)
    557       1.1      tron 		return 1;
    558       1.1      tron 
    559       1.1      tron 	while (*from != '\0')
    560      1.18  christos 		if (isspace((unsigned char)*from)) {
    561      1.18  christos 			while (isspace((unsigned char)*++from));
    562       1.1      tron 			if ((*from != '\0') && (*from != ','))
    563       1.1      tron 				*to++ = ' ';
    564       1.1      tron 		}
    565       1.1      tron 		else if (*from == '\\')
    566       1.1      tron 			switch (*++from) {
    567       1.1      tron 			case '\0':
    568       1.1      tron 			case '-':
    569       1.1      tron 				break;
    570      1.14      tron 			case 'f':
    571       1.7      tron 			case 's':
    572      1.14      tron 				from++;
    573       1.7      tron 				if ((*from=='+') || (*from=='-'))
    574       1.7      tron 					from++;
    575       1.7      tron 				while (isdigit(*from))
    576       1.7      tron 					from++;
    577       1.7      tron 				break;
    578       1.1      tron 			default:
    579       1.1      tron 				from++;
    580       1.1      tron 			}
    581       1.1      tron 		else
    582       1.1      tron 			if (*from == '"')
    583       1.1      tron 				from++;
    584       1.1      tron 			else
    585       1.1      tron 				*to++ = *from++;
    586       1.1      tron 
    587       1.1      tron 	*to = '\0';
    588       1.1      tron 
    589       1.1      tron 	if (strncasecmp(line, ".Xr", 3) == 0) {
    590       1.1      tron 		char	*sect;
    591       1.1      tron 
    592       1.1      tron 		from = line + 3;
    593      1.18  christos 		if (isspace((unsigned char)*from))
    594       1.1      tron 			from++;
    595       1.1      tron 
    596       1.6      tron 		if ((sect = findwhitespace(from)) != NULL) {
    597      1.19      tron 			size_t	length;
    598      1.19      tron 			char	*trail;
    599       1.1      tron 
    600       1.1      tron 			*sect++ = '\0';
    601      1.19      tron 			if ((trail = findwhitespace(sect)) != NULL)
    602      1.19      tron 				*trail++ = '\0';
    603       1.1      tron 			length = strlen(from);
    604       1.1      tron 			(void) memmove(line, from, length);
    605       1.1      tron 			line[length++] = '(';
    606       1.1      tron 			to = &line[length];
    607       1.1      tron 			length = strlen(sect);
    608       1.1      tron 			(void) memmove(to, sect, length);
    609      1.19      tron 			if (trail == NULL) {
    610      1.19      tron 				(void) strcpy(&to[length], ")");
    611      1.19      tron 			} else {
    612      1.19      tron 				to += length;
    613      1.19      tron 				*to++ = ')';
    614      1.19      tron 				length = strlen(trail);
    615      1.19      tron 				(void) memmove(to, trail, length + 1);
    616      1.19      tron 			}
    617       1.1      tron 		}
    618       1.1      tron 	}
    619       1.1      tron 
    620       1.1      tron 	return 0;
    621       1.1      tron }
    622       1.1      tron 
    623       1.1      tron char *
    624       1.8      tron nroff(gzFile *in)
    625       1.8      tron {
    626       1.9      tron 	char tempname[MAXPATHLEN], buffer[65536], *data;
    627       1.9      tron 	int tempfd, bytes, pipefd[2], status;
    628      1.10      tron 	static int devnull = -1;
    629       1.8      tron 	pid_t child;
    630       1.8      tron 
    631      1.18  christos 	if (gzrewind(in) < 0)
    632      1.18  christos 		err(EXIT_FAILURE, "Cannot rewind pipe");
    633       1.8      tron 
    634      1.10      tron 	if ((devnull < 0) &&
    635      1.18  christos 	    ((devnull = open(_PATH_DEVNULL, O_WRONLY, 0)) < 0))
    636      1.18  christos 		err(EXIT_FAILURE, "Cannot open `/dev/null'");
    637      1.10      tron 
    638       1.8      tron 	(void)strcpy(tempname, _PATH_TMP "makewhatis.XXXXXX");
    639      1.18  christos 	if ((tempfd = mkstemp(tempname)) == -1)
    640      1.18  christos 		err(EXIT_FAILURE, "Cannot create temp file");
    641       1.8      tron 
    642       1.8      tron 	while ((bytes = gzread(in, buffer, sizeof(buffer))) > 0)
    643      1.18  christos 		if (write(tempfd, buffer, (size_t)bytes) != bytes) {
    644       1.8      tron 			bytes = -1;
    645       1.8      tron 			break;
    646       1.8      tron 		}
    647       1.8      tron 
    648      1.18  christos 	if (bytes < 0) {
    649      1.18  christos 		(void)close(tempfd);
    650      1.18  christos 		(void)unlink(tempname);
    651      1.18  christos 		err(EXIT_FAILURE, "Read from pipe failed");
    652      1.18  christos 	}
    653      1.18  christos 	if (lseek(tempfd, (off_t)0, SEEK_SET) == (off_t)-1) {
    654      1.18  christos 		(void)close(tempfd);
    655      1.18  christos 		(void)unlink(tempname);
    656      1.18  christos 		err(EXIT_FAILURE, "Cannot rewind temp file");
    657      1.18  christos 	}
    658      1.18  christos 	if (pipe(pipefd) == -1) {
    659       1.8      tron 		(void)close(tempfd);
    660       1.8      tron 		(void)unlink(tempname);
    661      1.18  christos 		err(EXIT_FAILURE, "Cannot create pipe");
    662       1.8      tron 	}
    663       1.8      tron 
    664       1.8      tron 	switch (child = vfork()) {
    665       1.8      tron 	case -1:
    666       1.8      tron 		(void)close(pipefd[1]);
    667       1.8      tron 		(void)close(pipefd[0]);
    668       1.8      tron 		(void)close(tempfd);
    669       1.8      tron 		(void)unlink(tempname);
    670      1.18  christos 		err(EXIT_FAILURE, "Fork failed");
    671       1.8      tron 		/* NOTREACHED */
    672       1.8      tron 	case 0:
    673       1.8      tron 		(void)close(pipefd[0]);
    674      1.10      tron 		if (tempfd != STDIN_FILENO) {
    675      1.10      tron 			(void)dup2(tempfd, STDIN_FILENO);
    676      1.10      tron 			(void)close(tempfd);
    677      1.10      tron 		}
    678       1.8      tron 		if (pipefd[1] != STDOUT_FILENO) {
    679       1.8      tron 			(void)dup2(pipefd[1], STDOUT_FILENO);
    680       1.8      tron 			(void)close(pipefd[1]);
    681       1.8      tron 		}
    682      1.10      tron 		if (devnull != STDERR_FILENO) {
    683      1.10      tron 			(void)dup2(devnull, STDERR_FILENO);
    684      1.10      tron 			(void)close(devnull);
    685      1.10      tron 		}
    686      1.12      tron 		(void)execlp("nroff", "nroff", "-S", "-man", NULL);
    687       1.8      tron 		_exit(EXIT_FAILURE);
    688      1.18  christos 		/*NOTREACHED*/
    689       1.8      tron 	default:
    690       1.8      tron 		(void)close(pipefd[1]);
    691       1.8      tron 		(void)close(tempfd);
    692      1.18  christos 		break;
    693       1.8      tron 	}
    694       1.8      tron 
    695       1.8      tron 	if ((in = gzdopen(pipefd[0], "r")) == NULL) {
    696       1.8      tron 		if (errno == 0)
    697       1.8      tron 			errno = ENOMEM;
    698      1.11      tron 		(void)close(pipefd[0]);
    699      1.11      tron 		(void)kill(child, SIGTERM);
    700      1.11      tron 		while (waitpid(child, NULL, 0) != child);
    701       1.8      tron 		(void)unlink(tempname);
    702      1.18  christos 		err(EXIT_FAILURE, "Cannot read from pipe");
    703       1.8      tron 	}
    704       1.8      tron 
    705       1.8      tron 	data = parsecatpage(in);
    706       1.9      tron 	while (gzread(in, buffer, sizeof(buffer)) > 0);
    707       1.9      tron 	(void)gzclose(in);
    708       1.9      tron 
    709       1.9      tron 	while (waitpid(child, &status, 0) != child);
    710       1.9      tron 	if ((data != NULL) &&
    711       1.9      tron 	    !(WIFEXITED(status) && (WEXITSTATUS(status) == 0))) {
    712       1.9      tron 		free(data);
    713      1.18  christos 		errx(EXIT_FAILURE, "nroff exited with %d status",
    714      1.18  christos 		    WEXITSTATUS(status));
    715       1.9      tron 	}
    716       1.8      tron 
    717       1.8      tron 	(void)unlink(tempname);
    718       1.8      tron 	return data;
    719       1.8      tron }
    720       1.8      tron 
    721       1.8      tron char *
    722       1.1      tron parsemanpage(gzFile *in, int defaultsection)
    723       1.1      tron {
    724       1.1      tron 	char	*section, buffer[8192], *ptr;
    725       1.1      tron 
    726       1.1      tron 	section = NULL;
    727       1.1      tron 	do {
    728       1.5      tron 		if (GetS(in, buffer, sizeof(buffer) - 1) == NULL) {
    729       1.1      tron 			free(section);
    730       1.1      tron 			return NULL;
    731       1.1      tron 		}
    732       1.1      tron 		if (manpreprocess(buffer))
    733       1.1      tron 			continue;
    734       1.1      tron 		if (strncasecmp(buffer, ".Dt", 3) == 0) {
    735       1.1      tron 			char	*end;
    736       1.1      tron 
    737       1.1      tron 			ptr = &buffer[3];
    738      1.18  christos 			if (isspace((unsigned char)*ptr))
    739       1.1      tron 				ptr++;
    740       1.6      tron 			if ((ptr = findwhitespace(ptr)) == NULL)
    741       1.1      tron 				continue;
    742       1.1      tron 
    743       1.6      tron 			if ((end = findwhitespace(++ptr)) != NULL)
    744       1.1      tron 				*end = '\0';
    745       1.1      tron 
    746       1.1      tron 			free(section);
    747      1.14      tron 			section = createsectionstring(ptr);
    748      1.14      tron 		}
    749      1.14      tron 		else if (strncasecmp(buffer, ".TH", 3) == 0) {
    750      1.14      tron 			ptr = &buffer[3];
    751      1.18  christos 			while (isspace((unsigned char)*ptr))
    752      1.14      tron 				ptr++;
    753      1.14      tron 			if ((ptr = findwhitespace(ptr)) != NULL) {
    754      1.14      tron 				char *next;
    755      1.14      tron 
    756      1.18  christos 				while (isspace((unsigned char)*ptr))
    757      1.14      tron 					ptr++;
    758      1.14      tron 				if ((next = findwhitespace(ptr)) != NULL)
    759      1.14      tron 					*next = '\0';
    760      1.14      tron 				free(section);
    761      1.14      tron 				section = createsectionstring(ptr);
    762       1.1      tron 			}
    763       1.1      tron 		}
    764      1.14      tron 		else if (strncasecmp(buffer, ".Ds", 3) == 0) {
    765      1.14      tron 			free(section);
    766      1.14      tron 			return NULL;
    767      1.14      tron 		}
    768      1.14      tron 	} while (strncasecmp(buffer, ".Sh NAME", 8) != 0);
    769       1.1      tron 
    770       1.1      tron 	do {
    771       1.5      tron 		if (GetS(in, buffer, sizeof(buffer) - 1) == NULL) {
    772       1.1      tron 			free(section);
    773       1.1      tron 			return NULL;
    774       1.1      tron 		}
    775       1.1      tron 	} while (manpreprocess(buffer));
    776       1.1      tron 
    777       1.1      tron 	if (strncasecmp(buffer, ".Nm", 3) == 0) {
    778      1.18  christos 		size_t	length, offset;
    779       1.1      tron 
    780       1.1      tron 		ptr = &buffer[3];
    781      1.18  christos 		while (isspace((unsigned char)*ptr))
    782       1.1      tron 			ptr++;
    783       1.1      tron 
    784       1.1      tron 		length = strlen(ptr);
    785       1.1      tron 		if ((length > 1) && (ptr[length - 1] == ',') &&
    786      1.18  christos 		    isspace((unsigned char)ptr[length - 2])) {
    787       1.1      tron 			ptr[--length] = '\0';
    788       1.1      tron 			ptr[length - 1] = ',';
    789       1.1      tron 		}
    790       1.1      tron 		(void) memmove(buffer, ptr, length + 1);
    791       1.1      tron 
    792       1.1      tron 		offset = length + 3;
    793       1.1      tron 		ptr = &buffer[offset];
    794       1.1      tron 		for (;;) {
    795      1.18  christos 			size_t	 more;
    796       1.1      tron 
    797       1.1      tron 			if ((sizeof(buffer) == offset) ||
    798      1.18  christos 			    (GetS(in, ptr, sizeof(buffer) - offset)
    799       1.1      tron 			       == NULL)) {
    800       1.1      tron 				free(section);
    801       1.1      tron 				return NULL;
    802       1.1      tron 			}
    803       1.1      tron 			if (manpreprocess(ptr))
    804       1.1      tron 				continue;
    805       1.1      tron 
    806       1.1      tron 			if (strncasecmp(ptr, ".Nm", 3) != 0) break;
    807       1.1      tron 
    808       1.1      tron 			ptr += 3;
    809      1.18  christos 			if (isspace((unsigned char)*ptr))
    810       1.1      tron 				ptr++;
    811       1.1      tron 
    812       1.1      tron 			buffer[length++] = ' ';
    813       1.1      tron 			more = strlen(ptr);
    814       1.1      tron 			if ((more > 1) && (ptr[more - 1] == ',') &&
    815      1.18  christos 			    isspace((unsigned char)ptr[more - 2])) {
    816       1.1      tron 				ptr[--more] = '\0';
    817       1.1      tron 				ptr[more - 1] = ',';
    818       1.1      tron 			}
    819       1.1      tron 
    820       1.1      tron 			(void) memmove(&buffer[length], ptr, more + 1);
    821       1.1      tron 			length += more;
    822       1.1      tron 			offset = length + 3;
    823       1.1      tron 
    824       1.1      tron 			ptr = &buffer[offset];
    825       1.1      tron 		}
    826       1.1      tron 
    827       1.1      tron 		if (strncasecmp(ptr, ".Nd", 3) == 0) {
    828       1.1      tron 			(void) strcpy(&buffer[length], " -");
    829       1.1      tron 
    830       1.1      tron 			while (strncasecmp(ptr, ".Sh", 3) != 0) {
    831       1.1      tron 				int	 more;
    832       1.1      tron 
    833       1.1      tron 				if (*ptr == '.') {
    834       1.1      tron 					char	*space;
    835       1.1      tron 
    836      1.15      tron 					if (strncasecmp(ptr, ".Nd", 3) != 0) {
    837      1.15      tron 						free(section);
    838      1.15      tron 						return NULL;
    839      1.15      tron 					}
    840      1.14      tron 					space = findwhitespace(ptr);
    841      1.14      tron 					if (space == NULL)
    842       1.1      tron 						ptr = "";
    843       1.1      tron 					else {
    844       1.1      tron 						space++;
    845      1.14      tron 						(void) strmove(ptr, space);
    846       1.1      tron 					}
    847       1.1      tron 				}
    848       1.1      tron 
    849       1.1      tron 				if (*ptr != '\0') {
    850       1.1      tron 					buffer[offset - 1] = ' ';
    851       1.1      tron 					more = strlen(ptr) + 1;
    852       1.1      tron 					offset += more;
    853       1.1      tron 				}
    854       1.1      tron 				ptr = &buffer[offset];
    855       1.1      tron 				if ((sizeof(buffer) == offset) ||
    856      1.18  christos 				    (GetS(in, ptr, sizeof(buffer) - offset)
    857       1.1      tron 					== NULL)) {
    858       1.1      tron 					free(section);
    859       1.1      tron 					return NULL;
    860       1.1      tron 				}
    861       1.1      tron 				if (manpreprocess(ptr))
    862       1.1      tron 					*ptr = '\0';
    863       1.1      tron 			}
    864       1.1      tron 		}
    865       1.1      tron 	}
    866       1.1      tron 	else {
    867       1.1      tron 		int	 offset;
    868       1.1      tron 
    869       1.1      tron 		if (*buffer == '.') {
    870       1.1      tron 			char	*space;
    871       1.1      tron 
    872      1.14      tron 			if ((space = findwhitespace(&buffer[1])) == NULL) {
    873       1.1      tron 				free(section);
    874       1.1      tron 				return NULL;
    875       1.1      tron 			}
    876       1.1      tron 			space++;
    877      1.14      tron 			(void) strmove(buffer, space);
    878       1.1      tron 		}
    879       1.1      tron 
    880       1.1      tron 		offset = strlen(buffer) + 1;
    881       1.1      tron 		for (;;) {
    882       1.1      tron 			int	 more;
    883       1.1      tron 
    884       1.1      tron 			ptr = &buffer[offset];
    885       1.1      tron 			if ((sizeof(buffer) == offset) ||
    886      1.18  christos 			    (GetS(in, ptr, sizeof(buffer) - offset)
    887       1.1      tron 				== NULL)) {
    888       1.1      tron 				free(section);
    889       1.1      tron 				return NULL;
    890       1.1      tron 			}
    891       1.1      tron 			if (manpreprocess(ptr) || (*ptr == '\0'))
    892       1.1      tron 				continue;
    893       1.1      tron 
    894       1.5      tron 			if ((strncasecmp(ptr, ".Sh", 3) == 0) ||
    895       1.5      tron 			    (strncasecmp(ptr, ".Ss", 3) == 0))
    896       1.1      tron 				break;
    897       1.1      tron 
    898       1.1      tron 			if (*ptr == '.') {
    899       1.1      tron 				char	*space;
    900       1.1      tron 
    901       1.6      tron 				if ((space = findwhitespace(ptr)) == NULL) {
    902       1.1      tron 					continue;
    903       1.5      tron 				}
    904       1.5      tron 
    905       1.1      tron 				space++;
    906       1.5      tron 				(void) memmove(ptr, space, strlen(space) + 1);
    907       1.1      tron 			}
    908       1.1      tron 
    909       1.1      tron 			buffer[offset - 1] = ' ';
    910       1.1      tron 			more = strlen(ptr);
    911       1.1      tron 			if ((more > 1) && (ptr[more - 1] == ',') &&
    912      1.18  christos 			    isspace((unsigned char)ptr[more - 2])) {
    913       1.1      tron 				ptr[more - 1] = '\0';
    914       1.1      tron 				ptr[more - 2] = ',';
    915       1.1      tron 			}
    916       1.1      tron 			else more++;
    917       1.1      tron 			offset += more;
    918       1.1      tron 		}
    919       1.1      tron 	}
    920       1.1      tron 
    921       1.1      tron 	if (section == NULL) {
    922       1.1      tron 		char sectionbuffer[24];
    923       1.1      tron 
    924       1.4      tron 		(void) sprintf(sectionbuffer, " (%c) - ",
    925       1.4      tron 			sectionext[defaultsection]);
    926       1.1      tron 		ptr = replacestring(buffer, " - ", sectionbuffer);
    927       1.1      tron 	}
    928       1.1      tron 	else {
    929       1.1      tron 		ptr = replacestring(buffer, " - ", section);
    930       1.1      tron 		free(section);
    931       1.1      tron 	}
    932       1.1      tron 	return ptr;
    933       1.1      tron }
    934       1.1      tron 
    935       1.1      tron char *
    936       1.1      tron getwhatisdata(char *name)
    937       1.1      tron {
    938       1.1      tron 	gzFile	*in;
    939       1.1      tron 	char	*data;
    940       1.1      tron 	int	 section;
    941       1.1      tron 
    942       1.1      tron 	if ((in = gzopen(name, "r")) == NULL) {
    943      1.18  christos 		if (errno == 0)
    944      1.18  christos 			errno = ENOMEM;
    945      1.18  christos 		err(EXIT_FAILURE, "Cannot open `%s'", name);
    946       1.1      tron 		/* NOTREACHED */
    947       1.1      tron 	}
    948       1.1      tron 
    949       1.1      tron 	section = manpagesection(name);
    950      1.14      tron 	if (section == 0)
    951      1.14      tron 		data = parsecatpage(in);
    952      1.14      tron 	else {
    953      1.14      tron 		data = parsemanpage(in, section);
    954      1.14      tron 		if (data == NULL)
    955      1.14      tron 			data = nroff(in);
    956      1.14      tron 	}
    957       1.1      tron 
    958       1.1      tron 	(void) gzclose(in);
    959       1.1      tron 	return data;
    960       1.1      tron }
    961       1.1      tron 
    962       1.1      tron void
    963       1.1      tron processmanpages(manpage **source, whatis **dest)
    964       1.1      tron {
    965      1.18  christos 	manpage *mp;
    966      1.22  jdolecek 	char sd[128];
    967       1.1      tron 
    968       1.1      tron 	mp = *source;
    969       1.1      tron 	*source = NULL;
    970       1.1      tron 
    971       1.1      tron 	while (mp != NULL) {
    972       1.1      tron 		manpage *obsolete;
    973       1.1      tron 		char *data;
    974       1.1      tron 
    975       1.1      tron 		if (mp->mp_left != NULL)
    976       1.1      tron 			processmanpages(&mp->mp_left,dest);
    977       1.1      tron 
    978      1.22  jdolecek 		if ((data = getwhatisdata(mp->mp_name)) != NULL) {
    979      1.22  jdolecek 			/* Pass eventual directory prefix to addwhatis() */
    980      1.22  jdolecek 			if (mp->mp_sdlen > 0 && mp->mp_sdlen < sizeof(sd)-1)
    981      1.22  jdolecek 				strlcpy(sd, &mp->mp_name[mp->mp_sdoff],
    982      1.22  jdolecek 					mp->mp_sdlen);
    983      1.22  jdolecek 			else
    984      1.22  jdolecek 				sd[0] = '\0';
    985      1.22  jdolecek 
    986      1.22  jdolecek 			addwhatis(dest, data, sd);
    987      1.22  jdolecek 		}
    988       1.1      tron 
    989       1.1      tron 		obsolete = mp;
    990       1.1      tron 		mp = mp->mp_right;
    991       1.1      tron 		free(obsolete);
    992       1.1      tron 	}
    993       1.1      tron }
    994       1.1      tron 
    995      1.18  christos void
    996      1.18  christos dumpwhatis(FILE *out, whatis *tree)
    997       1.1      tron {
    998       1.1      tron 	while (tree != NULL) {
    999       1.1      tron 		if (tree->wi_left)
   1000      1.18  christos 			dumpwhatis(out, tree->wi_left);
   1001       1.1      tron 
   1002      1.22  jdolecek 		if ((tree->wi_data[0] && fputs(tree->wi_prefix, out) == EOF) ||
   1003      1.22  jdolecek 		    (fputs(tree->wi_data, out) == EOF) ||
   1004       1.1      tron 		    (fputc('\n', out) == EOF))
   1005      1.18  christos 			err(EXIT_FAILURE, "Write failed");
   1006       1.1      tron 
   1007       1.1      tron 		tree = tree->wi_right;
   1008       1.1      tron 	}
   1009      1.18  christos }
   1010       1.1      tron 
   1011      1.18  christos void *
   1012      1.18  christos emalloc(size_t len)
   1013      1.18  christos {
   1014      1.18  christos 	void *ptr;
   1015      1.18  christos 	if ((ptr = malloc(len)) == NULL)
   1016      1.18  christos 		err(EXIT_FAILURE, "malloc %lu failed", (unsigned long)len);
   1017      1.18  christos 	return ptr;
   1018      1.18  christos }
   1019      1.18  christos 
   1020      1.18  christos char *
   1021      1.18  christos estrdup(const char *str)
   1022      1.18  christos {
   1023      1.18  christos 	char *ptr;
   1024      1.18  christos 	if ((ptr = strdup(str)) == NULL)
   1025      1.18  christos 		err(EXIT_FAILURE, "strdup failed");
   1026      1.18  christos 	return ptr;
   1027       1.1      tron }
   1028