Home | History | Annotate | Line # | Download | only in makewhatis
makewhatis.c revision 1.7.4.4
      1  1.7.4.4    he /*	$NetBSD: makewhatis.c,v 1.7.4.4 2002/01/23 19:01:34 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.7.4.4    he  * 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.1  tron #ifndef 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.1  tron #ifndef lint
     46  1.7.4.4    he __RCSID("$NetBSD: makewhatis.c,v 1.7.4.4 2002/01/23 19:01:34 he Exp $");
     47      1.1  tron #endif /* not lint */
     48      1.1  tron 
     49      1.1  tron #include <sys/types.h>
     50  1.7.4.1  tron #include <sys/param.h>
     51      1.1  tron #include <sys/stat.h>
     52  1.7.4.1  tron #include <sys/wait.h>
     53      1.1  tron 
     54      1.1  tron #include <ctype.h>
     55      1.1  tron #include <err.h>
     56      1.1  tron #include <errno.h>
     57  1.7.4.2  tron #include <fcntl.h>
     58      1.1  tron #include <fts.h>
     59      1.1  tron #include <locale.h>
     60  1.7.4.1  tron #include <paths.h>
     61  1.7.4.2  tron #include <signal.h>
     62      1.1  tron #include <stdio.h>
     63      1.1  tron #include <stdlib.h>
     64      1.1  tron #include <string.h>
     65      1.1  tron #include <unistd.h>
     66      1.1  tron #include <zlib.h>
     67      1.1  tron 
     68      1.1  tron typedef struct manpagestruct manpage;
     69      1.1  tron struct manpagestruct {
     70      1.1  tron 	manpage *mp_left,*mp_right;
     71      1.1  tron 	ino_t	 mp_inode;
     72  1.7.4.4    he 	char	 mp_name[1];
     73      1.1  tron };
     74      1.1  tron 
     75      1.1  tron typedef struct whatisstruct whatis;
     76      1.1  tron struct whatisstruct {
     77      1.1  tron 	whatis	*wi_left,*wi_right;
     78      1.1  tron 	char	*wi_data;
     79      1.1  tron };
     80      1.1  tron 
     81  1.7.4.4    he int	 main(int, char **);
     82  1.7.4.4    he char	*findwhitespace(char *);
     83  1.7.4.4    he char	*strmove(char *,char *);
     84  1.7.4.4    he char	*GetS(gzFile, char *, size_t);
     85  1.7.4.4    he int	 manpagesection(char *);
     86  1.7.4.4    he char	*createsectionstring(char *);
     87  1.7.4.4    he void	 addmanpage(manpage **, ino_t, char *);
     88  1.7.4.4    he void	 addwhatis(whatis **, char *);
     89  1.7.4.4    he char	*replacestring(char *, char *, char *);
     90  1.7.4.4    he void	 catpreprocess(char *);
     91  1.7.4.4    he char	*parsecatpage(gzFile *);
     92  1.7.4.4    he int	 manpreprocess(char *);
     93  1.7.4.4    he char	*nroff(gzFile *);
     94  1.7.4.4    he char	*parsemanpage(gzFile *, int);
     95  1.7.4.4    he char	*getwhatisdata(char *);
     96  1.7.4.4    he void	 processmanpages(manpage **,whatis **);
     97  1.7.4.4    he void	 dumpwhatis(FILE *, whatis *);
     98  1.7.4.4    he void	*emalloc(size_t);
     99  1.7.4.4    he char	*estrdup(const char *);
    100      1.1  tron 
    101      1.1  tron char *default_manpath[] = {
    102      1.1  tron 	"/usr/share/man",
    103      1.1  tron 	NULL
    104      1.1  tron };
    105      1.1  tron 
    106      1.4  tron char sectionext[] = "0123456789ln";
    107  1.7.4.4    he char whatisdb[]	  = "whatis.db";
    108      1.1  tron 
    109      1.1  tron int
    110  1.7.4.4    he main(int argc, char **argv)
    111      1.1  tron {
    112      1.1  tron 	char	**manpath;
    113      1.1  tron 	FTS	*fts;
    114      1.1  tron 	FTSENT	*fe;
    115  1.7.4.4    he 	manpage *source;
    116      1.1  tron 	whatis	*dest;
    117      1.1  tron 	FILE	*out;
    118      1.1  tron 
    119      1.1  tron 	(void)setlocale(LC_ALL, "");
    120      1.1  tron 
    121      1.1  tron 	manpath = (argc < 2) ? default_manpath : &argv[1];
    122      1.1  tron 
    123  1.7.4.4    he 	if ((fts = fts_open(manpath, FTS_LOGICAL, NULL)) == NULL)
    124  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot open `%s'", *manpath);
    125      1.1  tron 
    126      1.1  tron 	source = NULL;
    127      1.1  tron 	while ((fe = fts_read(fts)) != NULL) {
    128      1.1  tron 		switch (fe->fts_info) {
    129      1.1  tron 		case FTS_F:
    130      1.1  tron 			if (manpagesection(fe->fts_path) >= 0)
    131  1.7.4.4    he 				addmanpage(&source, fe->fts_statp->st_ino,
    132  1.7.4.4    he 				    fe->fts_path);
    133  1.7.4.4    he 			/*FALLTHROUGH*/
    134      1.1  tron 		case FTS_D:
    135      1.4  tron 		case FTS_DC:
    136      1.4  tron 		case FTS_DEFAULT:
    137      1.1  tron 		case FTS_DP:
    138      1.4  tron 		case FTS_SLNONE:
    139      1.1  tron 			break;
    140      1.1  tron 		default:
    141  1.7.4.4    he 			errno = fe->fts_errno;
    142  1.7.4.4    he 			err(EXIT_FAILURE, "Error reading `%s'", fe->fts_path);
    143      1.1  tron 		}
    144      1.1  tron 	}
    145      1.1  tron 
    146      1.1  tron 	(void)fts_close(fts);
    147      1.1  tron 
    148      1.1  tron 	dest = NULL;
    149      1.1  tron 	processmanpages(&source, &dest);
    150      1.1  tron 
    151  1.7.4.4    he 	if (chdir(manpath[0]) == -1)
    152  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot change dir to `%s'", manpath[0]);
    153      1.1  tron 
    154  1.7.4.4    he 	(void)unlink(whatisdb);
    155      1.1  tron 	if ((out = fopen(whatisdb, "w")) == NULL)
    156  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot open `%s'", whatisdb);
    157      1.1  tron 
    158  1.7.4.4    he 	dumpwhatis(out, dest);
    159  1.7.4.4    he 	if (fchmod(fileno(out), S_IRUSR|S_IRGRP|S_IROTH) == -1)
    160  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot chmod `%s'", whatisdb);
    161  1.7.4.4    he 	if (fclose(out) != 0)
    162  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot close `%s'", whatisdb);
    163      1.1  tron 
    164      1.1  tron 	return EXIT_SUCCESS;
    165      1.1  tron }
    166      1.1  tron 
    167  1.7.4.4    he char *
    168  1.7.4.4    he findwhitespace(char *str)
    169      1.6  tron {
    170  1.7.4.4    he 	while (!isspace((unsigned char)*str))
    171      1.6  tron 		if (*str++ == '\0') {
    172      1.6  tron 			str = NULL;
    173      1.6  tron 			break;
    174      1.6  tron 		}
    175      1.6  tron 
    176      1.6  tron 	return str;
    177      1.6  tron }
    178      1.6  tron 
    179      1.6  tron char
    180  1.7.4.3    he *strmove(char *dest,char *src)
    181  1.7.4.3    he {
    182  1.7.4.3    he 	return memmove(dest, src, strlen(src) + 1);
    183  1.7.4.3    he }
    184  1.7.4.3    he 
    185  1.7.4.4    he char *
    186  1.7.4.4    he GetS(gzFile in, char *buffer, size_t length)
    187      1.5  tron {
    188      1.5  tron 	char	*ptr;
    189      1.5  tron 
    190  1.7.4.4    he 	if (((ptr = gzgets(in, buffer, (int)length)) != NULL) && (*ptr == '\0'))
    191      1.5  tron 		ptr = NULL;
    192      1.5  tron 
    193      1.5  tron 	return ptr;
    194      1.5  tron }
    195      1.5  tron 
    196      1.1  tron int
    197      1.1  tron manpagesection(char *name)
    198      1.1  tron {
    199      1.1  tron 	char	*ptr;
    200      1.1  tron 
    201      1.1  tron 	if ((ptr = strrchr(name, '/')) != NULL)
    202      1.1  tron 		ptr++;
    203      1.1  tron 	else
    204      1.1  tron 		ptr = name;
    205      1.1  tron 
    206      1.4  tron 	while ((ptr = strchr(ptr, '.')) != NULL) {
    207      1.4  tron 		int section;
    208      1.4  tron 
    209      1.4  tron 		ptr++;
    210      1.4  tron 		section=0;
    211      1.4  tron 		while (sectionext[section] != '\0')
    212      1.4  tron 			if (sectionext[section] == *ptr)
    213      1.4  tron 				return section;
    214      1.4  tron 			else
    215      1.4  tron 				section++;
    216      1.4  tron 	}
    217      1.1  tron 
    218      1.1  tron 	return -1;
    219      1.1  tron }
    220      1.1  tron 
    221  1.7.4.4    he char *
    222  1.7.4.4    he createsectionstring(char *section_id)
    223  1.7.4.3    he {
    224  1.7.4.4    he 	char *section = emalloc(strlen(section_id) + 7);
    225  1.7.4.4    he 	section[0] = ' ';
    226  1.7.4.4    he 	section[1] = '(';
    227  1.7.4.4    he 	(void)strcat(strcpy(&section[2], section_id), ") - ");
    228  1.7.4.3    he 	return section;
    229  1.7.4.3    he }
    230  1.7.4.3    he 
    231  1.7.4.4    he void
    232      1.1  tron addmanpage(manpage **tree,ino_t inode,char *name)
    233      1.1  tron {
    234  1.7.4.4    he 	manpage *mp;
    235      1.1  tron 
    236      1.1  tron 	while ((mp = *tree) != NULL) {
    237      1.1  tron 		if (mp->mp_inode == inode)
    238  1.7.4.4    he 			return;
    239  1.7.4.4    he 		tree = inode < mp->mp_inode ? &mp->mp_left : &mp->mp_right;
    240      1.1  tron 	}
    241      1.1  tron 
    242  1.7.4.4    he 	mp = emalloc(sizeof(manpage) + strlen(name));
    243      1.1  tron 	mp->mp_left = NULL;
    244      1.1  tron 	mp->mp_right = NULL;
    245      1.1  tron 	mp->mp_inode = inode;
    246  1.7.4.4    he 	(void)strcpy(mp->mp_name, name);
    247      1.1  tron 	*tree = mp;
    248      1.1  tron }
    249      1.1  tron 
    250  1.7.4.4    he void
    251      1.1  tron addwhatis(whatis **tree, char *data)
    252      1.1  tron {
    253      1.1  tron 	whatis *wi;
    254      1.1  tron 	int result;
    255      1.1  tron 
    256  1.7.4.4    he 	while (isspace((unsigned char)*data))
    257      1.7  tron 		data++;
    258      1.7  tron 
    259      1.7  tron 	if (*data == '/') {
    260      1.7  tron 		char *ptr;
    261      1.7  tron 
    262      1.7  tron 		ptr = ++data;
    263  1.7.4.4    he 		while ((*ptr != '\0') && !isspace((unsigned char)*ptr))
    264      1.7  tron 			if (*ptr++ == '/')
    265      1.7  tron 				data = ptr;
    266      1.7  tron 	}
    267      1.7  tron 
    268      1.1  tron 	while ((wi = *tree) != NULL) {
    269  1.7.4.4    he 		result = strcmp(data, wi->wi_data);
    270  1.7.4.4    he 		if (result == 0) return;
    271  1.7.4.4    he 		tree = result < 0 ? &wi->wi_left : &wi->wi_right;
    272      1.1  tron 	}
    273      1.1  tron 
    274  1.7.4.4    he 	wi = emalloc(sizeof(whatis) + strlen(data));
    275      1.1  tron 
    276      1.1  tron 	wi->wi_left = NULL;
    277      1.1  tron 	wi->wi_right = NULL;
    278      1.1  tron 	wi->wi_data = data;
    279      1.1  tron 	*tree = wi;
    280      1.1  tron }
    281      1.1  tron 
    282      1.1  tron void
    283      1.1  tron catpreprocess(char *from)
    284      1.1  tron {
    285      1.1  tron 	char	*to;
    286      1.1  tron 
    287      1.1  tron 	to = from;
    288  1.7.4.4    he 	while (isspace((unsigned char)*from)) from++;
    289      1.1  tron 
    290      1.1  tron 	while (*from != '\0')
    291  1.7.4.4    he 		if (isspace((unsigned char)*from)) {
    292  1.7.4.4    he 			while (isspace((unsigned char)*++from));
    293      1.1  tron 			if (*from != '\0')
    294      1.1  tron 				*to++ = ' ';
    295      1.1  tron 		}
    296      1.1  tron 		else if (*(from + 1) == '\10')
    297      1.1  tron 			from += 2;
    298      1.1  tron 		else
    299      1.1  tron 			*to++ = *from++;
    300      1.1  tron 
    301      1.1  tron 	*to = '\0';
    302      1.1  tron }
    303      1.1  tron 
    304      1.1  tron char *
    305      1.1  tron replacestring(char *string, char *old, char *new)
    306      1.1  tron 
    307      1.1  tron {
    308      1.1  tron 	char	*ptr, *result;
    309  1.7.4.4    he 	size_t	 slength, olength, nlength, pos;
    310      1.1  tron 
    311      1.1  tron 	if (new == NULL)
    312  1.7.4.4    he 		return estrdup(string);
    313      1.1  tron 
    314      1.1  tron 	ptr = strstr(string, old);
    315      1.1  tron 	if (ptr == NULL)
    316  1.7.4.4    he 		return estrdup(string);
    317      1.1  tron 
    318      1.1  tron 	slength = strlen(string);
    319      1.1  tron 	olength = strlen(old);
    320      1.1  tron 	nlength = strlen(new);
    321  1.7.4.4    he 	result = emalloc(slength - olength + nlength + 1);
    322      1.1  tron 
    323      1.1  tron 	pos = ptr - string;
    324  1.7.4.4    he 	(void)memcpy(result, string, pos);
    325  1.7.4.4    he 	(void)memcpy(&result[pos], new, nlength);
    326  1.7.4.4    he 	(void)strcpy(&result[pos + nlength], &string[pos + olength]);
    327      1.1  tron 
    328      1.1  tron 	return result;
    329      1.1  tron }
    330      1.1  tron 
    331      1.1  tron char *
    332      1.1  tron parsecatpage(gzFile *in)
    333      1.1  tron {
    334  1.7.4.4    he 	char	 buffer[8192];
    335      1.1  tron 	char	*section, *ptr, *last;
    336  1.7.4.4    he 	size_t	 size;
    337      1.1  tron 
    338      1.1  tron 	do {
    339      1.5  tron 		if (GetS(in, buffer, sizeof(buffer)) == NULL)
    340      1.1  tron 			return NULL;
    341      1.1  tron 	}
    342      1.1  tron 	while (buffer[0] == '\n');
    343      1.1  tron 
    344      1.1  tron 	section = NULL;
    345      1.1  tron 	if ((ptr = strchr(buffer, '(')) != NULL) {
    346      1.1  tron 		if ((last = strchr(ptr + 1, ')')) !=NULL) {
    347  1.7.4.4    he 			size_t	length;
    348      1.1  tron 
    349      1.1  tron 			length = last - ptr + 1;
    350  1.7.4.4    he 			section = emalloc(length + 5);
    351      1.1  tron 			*section = ' ';
    352      1.1  tron 			(void) memcpy(section + 1, ptr, length);
    353      1.1  tron 			(void) strcpy(section + 1 + length, " - ");
    354      1.1  tron 		}
    355      1.1  tron 	}
    356      1.1  tron 
    357      1.1  tron 	for (;;) {
    358      1.5  tron 		if (GetS(in, buffer, sizeof(buffer)) == NULL) {
    359      1.1  tron 			free(section);
    360      1.1  tron 			return NULL;
    361      1.1  tron 		}
    362  1.7.4.3    he 		catpreprocess(buffer);
    363  1.7.4.3    he 		if (strncmp(buffer, "NAME", 4) == 0)
    364      1.1  tron 			break;
    365      1.1  tron 	}
    366      1.1  tron 
    367      1.1  tron 	ptr = last = buffer;
    368      1.1  tron 	size = sizeof(buffer) - 1;
    369      1.5  tron 	while ((size > 0) && (GetS(in, ptr, size) != NULL)) {
    370      1.1  tron 		int	 length;
    371      1.1  tron 
    372      1.1  tron 		catpreprocess(ptr);
    373      1.1  tron 
    374      1.1  tron 		length = strlen(ptr);
    375      1.1  tron 		if (length == 0) {
    376      1.1  tron 			*last = '\0';
    377      1.1  tron 
    378      1.1  tron 			ptr = replacestring(buffer, " - ", section);
    379      1.1  tron 			free(section);
    380      1.1  tron 			return ptr;
    381      1.1  tron 		}
    382      1.1  tron 		if ((length > 1) && (ptr[length - 1] == '-') &&
    383      1.1  tron 		    isalpha(ptr[length - 2]))
    384      1.1  tron 			last = &ptr[--length];
    385      1.1  tron 		else {
    386      1.1  tron 			last = &ptr[length++];
    387      1.1  tron 			*last = ' ';
    388      1.1  tron 		}
    389      1.1  tron 
    390      1.1  tron 		ptr += length;
    391      1.1  tron 		size -= length;
    392      1.1  tron 	}
    393      1.1  tron 
    394      1.1  tron 	free(section);
    395      1.1  tron 
    396      1.1  tron 	return NULL;
    397      1.1  tron }
    398      1.1  tron 
    399      1.1  tron int
    400      1.1  tron manpreprocess(char *line)
    401      1.1  tron {
    402      1.1  tron 	char	*from, *to;
    403      1.1  tron 
    404      1.1  tron 	to = from = line;
    405  1.7.4.4    he 	while (isspace((unsigned char)*from)) from++;
    406      1.1  tron 	if (strncmp(from, ".\\\"", 3) == 0)
    407      1.1  tron 		return 1;
    408      1.1  tron 
    409      1.1  tron 	while (*from != '\0')
    410  1.7.4.4    he 		if (isspace((unsigned char)*from)) {
    411  1.7.4.4    he 			while (isspace((unsigned char)*++from));
    412      1.1  tron 			if ((*from != '\0') && (*from != ','))
    413      1.1  tron 				*to++ = ' ';
    414      1.1  tron 		}
    415      1.1  tron 		else if (*from == '\\')
    416      1.1  tron 			switch (*++from) {
    417      1.1  tron 			case '\0':
    418      1.1  tron 			case '-':
    419      1.1  tron 				break;
    420  1.7.4.3    he 			case 'f':
    421      1.7  tron 			case 's':
    422  1.7.4.3    he 				from++;
    423      1.7  tron 				if ((*from=='+') || (*from=='-'))
    424      1.7  tron 					from++;
    425      1.7  tron 				while (isdigit(*from))
    426      1.7  tron 					from++;
    427      1.7  tron 				break;
    428      1.1  tron 			default:
    429      1.1  tron 				from++;
    430      1.1  tron 			}
    431      1.1  tron 		else
    432      1.1  tron 			if (*from == '"')
    433      1.1  tron 				from++;
    434      1.1  tron 			else
    435      1.1  tron 				*to++ = *from++;
    436      1.1  tron 
    437      1.1  tron 	*to = '\0';
    438      1.1  tron 
    439      1.1  tron 	if (strncasecmp(line, ".Xr", 3) == 0) {
    440      1.1  tron 		char	*sect;
    441      1.1  tron 
    442      1.1  tron 		from = line + 3;
    443  1.7.4.4    he 		if (isspace((unsigned char)*from))
    444      1.1  tron 			from++;
    445      1.1  tron 
    446      1.6  tron 		if ((sect = findwhitespace(from)) != NULL) {
    447  1.7.4.4    he 			size_t	length;
    448  1.7.4.4    he 			char	*trail;
    449      1.1  tron 
    450      1.1  tron 			*sect++ = '\0';
    451  1.7.4.4    he 			if ((trail = findwhitespace(sect)) != NULL)
    452  1.7.4.4    he 				*trail++ = '\0';
    453      1.1  tron 			length = strlen(from);
    454      1.1  tron 			(void) memmove(line, from, length);
    455      1.1  tron 			line[length++] = '(';
    456      1.1  tron 			to = &line[length];
    457      1.1  tron 			length = strlen(sect);
    458      1.1  tron 			(void) memmove(to, sect, length);
    459  1.7.4.4    he 			if (trail == NULL) {
    460  1.7.4.4    he 				(void) strcpy(&to[length], ")");
    461  1.7.4.4    he 			} else {
    462  1.7.4.4    he 				to += length;
    463  1.7.4.4    he 				*to++ = ')';
    464  1.7.4.4    he 				length = strlen(trail);
    465  1.7.4.4    he 				(void) memmove(to, trail, length + 1);
    466  1.7.4.4    he 			}
    467      1.1  tron 		}
    468      1.1  tron 	}
    469      1.1  tron 
    470      1.1  tron 	return 0;
    471      1.1  tron }
    472      1.1  tron 
    473      1.1  tron char *
    474  1.7.4.1  tron nroff(gzFile *in)
    475  1.7.4.1  tron {
    476  1.7.4.1  tron 	char tempname[MAXPATHLEN], buffer[65536], *data;
    477  1.7.4.1  tron 	int tempfd, bytes, pipefd[2], status;
    478  1.7.4.2  tron 	static int devnull = -1;
    479  1.7.4.1  tron 	pid_t child;
    480  1.7.4.1  tron 
    481  1.7.4.4    he 	if (gzrewind(in) < 0)
    482  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot rewind pipe");
    483  1.7.4.1  tron 
    484  1.7.4.2  tron 	if ((devnull < 0) &&
    485  1.7.4.4    he 	    ((devnull = open(_PATH_DEVNULL, O_WRONLY, 0)) < 0))
    486  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot open `/dev/null'");
    487  1.7.4.2  tron 
    488  1.7.4.1  tron 	(void)strcpy(tempname, _PATH_TMP "makewhatis.XXXXXX");
    489  1.7.4.4    he 	if ((tempfd = mkstemp(tempname)) == -1)
    490  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot create temp file");
    491  1.7.4.1  tron 
    492  1.7.4.1  tron 	while ((bytes = gzread(in, buffer, sizeof(buffer))) > 0)
    493  1.7.4.4    he 		if (write(tempfd, buffer, (size_t)bytes) != bytes) {
    494  1.7.4.1  tron 			bytes = -1;
    495  1.7.4.1  tron 			break;
    496  1.7.4.1  tron 		}
    497  1.7.4.1  tron 
    498  1.7.4.4    he 	if (bytes < 0) {
    499  1.7.4.4    he 		(void)close(tempfd);
    500  1.7.4.4    he 		(void)unlink(tempname);
    501  1.7.4.4    he 		err(EXIT_FAILURE, "Read from pipe failed");
    502  1.7.4.4    he 	}
    503  1.7.4.4    he 	if (lseek(tempfd, (off_t)0, SEEK_SET) == (off_t)-1) {
    504  1.7.4.4    he 		(void)close(tempfd);
    505  1.7.4.4    he 		(void)unlink(tempname);
    506  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot rewind temp file");
    507  1.7.4.4    he 	}
    508  1.7.4.4    he 	if (pipe(pipefd) == -1) {
    509  1.7.4.1  tron 		(void)close(tempfd);
    510  1.7.4.1  tron 		(void)unlink(tempname);
    511  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot create pipe");
    512  1.7.4.1  tron 	}
    513  1.7.4.1  tron 
    514  1.7.4.1  tron 	switch (child = vfork()) {
    515  1.7.4.1  tron 	case -1:
    516  1.7.4.1  tron 		(void)close(pipefd[1]);
    517  1.7.4.1  tron 		(void)close(pipefd[0]);
    518  1.7.4.1  tron 		(void)close(tempfd);
    519  1.7.4.1  tron 		(void)unlink(tempname);
    520  1.7.4.4    he 		err(EXIT_FAILURE, "Fork failed");
    521  1.7.4.1  tron 		/* NOTREACHED */
    522  1.7.4.1  tron 	case 0:
    523  1.7.4.1  tron 		(void)close(pipefd[0]);
    524  1.7.4.2  tron 		if (tempfd != STDIN_FILENO) {
    525  1.7.4.2  tron 			(void)dup2(tempfd, STDIN_FILENO);
    526  1.7.4.2  tron 			(void)close(tempfd);
    527  1.7.4.2  tron 		}
    528  1.7.4.1  tron 		if (pipefd[1] != STDOUT_FILENO) {
    529  1.7.4.1  tron 			(void)dup2(pipefd[1], STDOUT_FILENO);
    530  1.7.4.1  tron 			(void)close(pipefd[1]);
    531  1.7.4.1  tron 		}
    532  1.7.4.2  tron 		if (devnull != STDERR_FILENO) {
    533  1.7.4.2  tron 			(void)dup2(devnull, STDERR_FILENO);
    534  1.7.4.2  tron 			(void)close(devnull);
    535  1.7.4.2  tron 		}
    536  1.7.4.2  tron 		(void)execlp("nroff", "nroff", "-S", "-man", NULL);
    537  1.7.4.1  tron 		_exit(EXIT_FAILURE);
    538  1.7.4.4    he 		/*NOTREACHED*/
    539  1.7.4.1  tron 	default:
    540  1.7.4.1  tron 		(void)close(pipefd[1]);
    541  1.7.4.1  tron 		(void)close(tempfd);
    542  1.7.4.4    he 		break;
    543  1.7.4.1  tron 	}
    544  1.7.4.1  tron 
    545  1.7.4.1  tron 	if ((in = gzdopen(pipefd[0], "r")) == NULL) {
    546  1.7.4.1  tron 		if (errno == 0)
    547  1.7.4.1  tron 			errno = ENOMEM;
    548  1.7.4.2  tron 		(void)close(pipefd[0]);
    549  1.7.4.2  tron 		(void)kill(child, SIGTERM);
    550  1.7.4.2  tron 		while (waitpid(child, NULL, 0) != child);
    551  1.7.4.1  tron 		(void)unlink(tempname);
    552  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot read from pipe");
    553  1.7.4.1  tron 	}
    554  1.7.4.1  tron 
    555  1.7.4.1  tron 	data = parsecatpage(in);
    556  1.7.4.1  tron 	while (gzread(in, buffer, sizeof(buffer)) > 0);
    557  1.7.4.1  tron 	(void)gzclose(in);
    558  1.7.4.1  tron 
    559  1.7.4.1  tron 	while (waitpid(child, &status, 0) != child);
    560  1.7.4.1  tron 	if ((data != NULL) &&
    561  1.7.4.1  tron 	    !(WIFEXITED(status) && (WEXITSTATUS(status) == 0))) {
    562  1.7.4.1  tron 		free(data);
    563  1.7.4.4    he 		errx(EXIT_FAILURE, "nroff exited with %d status",
    564  1.7.4.4    he 		    WEXITSTATUS(status));
    565  1.7.4.1  tron 	}
    566  1.7.4.1  tron 
    567  1.7.4.1  tron 	(void)unlink(tempname);
    568  1.7.4.1  tron 	return data;
    569  1.7.4.1  tron }
    570  1.7.4.1  tron 
    571  1.7.4.1  tron char *
    572      1.1  tron parsemanpage(gzFile *in, int defaultsection)
    573      1.1  tron {
    574      1.1  tron 	char	*section, buffer[8192], *ptr;
    575      1.1  tron 
    576      1.1  tron 	section = NULL;
    577      1.1  tron 	do {
    578      1.5  tron 		if (GetS(in, buffer, sizeof(buffer) - 1) == NULL) {
    579      1.1  tron 			free(section);
    580      1.1  tron 			return NULL;
    581      1.1  tron 		}
    582      1.1  tron 		if (manpreprocess(buffer))
    583      1.1  tron 			continue;
    584      1.1  tron 		if (strncasecmp(buffer, ".Dt", 3) == 0) {
    585      1.1  tron 			char	*end;
    586      1.1  tron 
    587      1.1  tron 			ptr = &buffer[3];
    588  1.7.4.4    he 			if (isspace((unsigned char)*ptr))
    589      1.1  tron 				ptr++;
    590      1.6  tron 			if ((ptr = findwhitespace(ptr)) == NULL)
    591      1.1  tron 				continue;
    592      1.1  tron 
    593      1.6  tron 			if ((end = findwhitespace(++ptr)) != NULL)
    594      1.1  tron 				*end = '\0';
    595      1.1  tron 
    596      1.1  tron 			free(section);
    597  1.7.4.3    he 			section = createsectionstring(ptr);
    598  1.7.4.3    he 		}
    599  1.7.4.3    he 		else if (strncasecmp(buffer, ".TH", 3) == 0) {
    600  1.7.4.3    he 			ptr = &buffer[3];
    601  1.7.4.4    he 			while (isspace((unsigned char)*ptr))
    602  1.7.4.3    he 				ptr++;
    603  1.7.4.3    he 			if ((ptr = findwhitespace(ptr)) != NULL) {
    604  1.7.4.3    he 				char *next;
    605  1.7.4.3    he 
    606  1.7.4.4    he 				while (isspace((unsigned char)*ptr))
    607  1.7.4.3    he 					ptr++;
    608  1.7.4.3    he 				if ((next = findwhitespace(ptr)) != NULL)
    609  1.7.4.3    he 					*next = '\0';
    610  1.7.4.3    he 				free(section);
    611  1.7.4.3    he 				section = createsectionstring(ptr);
    612      1.1  tron 			}
    613      1.1  tron 		}
    614  1.7.4.3    he 		else if (strncasecmp(buffer, ".Ds", 3) == 0) {
    615  1.7.4.3    he 			free(section);
    616  1.7.4.3    he 			return NULL;
    617  1.7.4.3    he 		}
    618  1.7.4.3    he 	} while (strncasecmp(buffer, ".Sh NAME", 8) != 0);
    619      1.1  tron 
    620      1.1  tron 	do {
    621      1.5  tron 		if (GetS(in, buffer, sizeof(buffer) - 1) == NULL) {
    622      1.1  tron 			free(section);
    623      1.1  tron 			return NULL;
    624      1.1  tron 		}
    625      1.1  tron 	} while (manpreprocess(buffer));
    626      1.1  tron 
    627      1.1  tron 	if (strncasecmp(buffer, ".Nm", 3) == 0) {
    628  1.7.4.4    he 		size_t	length, offset;
    629      1.1  tron 
    630      1.1  tron 		ptr = &buffer[3];
    631  1.7.4.4    he 		while (isspace((unsigned char)*ptr))
    632      1.1  tron 			ptr++;
    633      1.1  tron 
    634      1.1  tron 		length = strlen(ptr);
    635      1.1  tron 		if ((length > 1) && (ptr[length - 1] == ',') &&
    636  1.7.4.4    he 		    isspace((unsigned char)ptr[length - 2])) {
    637      1.1  tron 			ptr[--length] = '\0';
    638      1.1  tron 			ptr[length - 1] = ',';
    639      1.1  tron 		}
    640      1.1  tron 		(void) memmove(buffer, ptr, length + 1);
    641      1.1  tron 
    642      1.1  tron 		offset = length + 3;
    643      1.1  tron 		ptr = &buffer[offset];
    644      1.1  tron 		for (;;) {
    645  1.7.4.4    he 			size_t	 more;
    646      1.1  tron 
    647      1.1  tron 			if ((sizeof(buffer) == offset) ||
    648  1.7.4.4    he 			    (GetS(in, ptr, sizeof(buffer) - offset)
    649      1.1  tron 			       == NULL)) {
    650      1.1  tron 				free(section);
    651      1.1  tron 				return NULL;
    652      1.1  tron 			}
    653      1.1  tron 			if (manpreprocess(ptr))
    654      1.1  tron 				continue;
    655      1.1  tron 
    656      1.1  tron 			if (strncasecmp(ptr, ".Nm", 3) != 0) break;
    657      1.1  tron 
    658      1.1  tron 			ptr += 3;
    659  1.7.4.4    he 			if (isspace((unsigned char)*ptr))
    660      1.1  tron 				ptr++;
    661      1.1  tron 
    662      1.1  tron 			buffer[length++] = ' ';
    663      1.1  tron 			more = strlen(ptr);
    664      1.1  tron 			if ((more > 1) && (ptr[more - 1] == ',') &&
    665  1.7.4.4    he 			    isspace((unsigned char)ptr[more - 2])) {
    666      1.1  tron 				ptr[--more] = '\0';
    667      1.1  tron 				ptr[more - 1] = ',';
    668      1.1  tron 			}
    669      1.1  tron 
    670      1.1  tron 			(void) memmove(&buffer[length], ptr, more + 1);
    671      1.1  tron 			length += more;
    672      1.1  tron 			offset = length + 3;
    673      1.1  tron 
    674      1.1  tron 			ptr = &buffer[offset];
    675      1.1  tron 		}
    676      1.1  tron 
    677      1.1  tron 		if (strncasecmp(ptr, ".Nd", 3) == 0) {
    678      1.1  tron 			(void) strcpy(&buffer[length], " -");
    679      1.1  tron 
    680      1.1  tron 			while (strncasecmp(ptr, ".Sh", 3) != 0) {
    681      1.1  tron 				int	 more;
    682      1.1  tron 
    683      1.1  tron 				if (*ptr == '.') {
    684      1.1  tron 					char	*space;
    685      1.1  tron 
    686  1.7.4.3    he 					if (strncasecmp(ptr, ".Nd", 3) != 0) {
    687  1.7.4.3    he 						free(section);
    688  1.7.4.3    he 						return NULL;
    689  1.7.4.3    he 					}
    690  1.7.4.3    he 					space = findwhitespace(ptr);
    691  1.7.4.3    he 					if (space == NULL)
    692      1.1  tron 						ptr = "";
    693      1.1  tron 					else {
    694      1.1  tron 						space++;
    695  1.7.4.3    he 						(void) strmove(ptr, space);
    696      1.1  tron 					}
    697      1.1  tron 				}
    698      1.1  tron 
    699      1.1  tron 				if (*ptr != '\0') {
    700      1.1  tron 					buffer[offset - 1] = ' ';
    701      1.1  tron 					more = strlen(ptr) + 1;
    702      1.1  tron 					offset += more;
    703      1.1  tron 				}
    704      1.1  tron 				ptr = &buffer[offset];
    705      1.1  tron 				if ((sizeof(buffer) == offset) ||
    706  1.7.4.4    he 				    (GetS(in, ptr, sizeof(buffer) - offset)
    707      1.1  tron 					== NULL)) {
    708      1.1  tron 					free(section);
    709      1.1  tron 					return NULL;
    710      1.1  tron 				}
    711      1.1  tron 				if (manpreprocess(ptr))
    712      1.1  tron 					*ptr = '\0';
    713      1.1  tron 			}
    714      1.1  tron 		}
    715      1.1  tron 	}
    716      1.1  tron 	else {
    717      1.1  tron 		int	 offset;
    718      1.1  tron 
    719      1.1  tron 		if (*buffer == '.') {
    720      1.1  tron 			char	*space;
    721      1.1  tron 
    722  1.7.4.3    he 			if ((space = findwhitespace(&buffer[1])) == NULL) {
    723      1.1  tron 				free(section);
    724      1.1  tron 				return NULL;
    725      1.1  tron 			}
    726      1.1  tron 			space++;
    727  1.7.4.3    he 			(void) strmove(buffer, space);
    728      1.1  tron 		}
    729      1.1  tron 
    730      1.1  tron 		offset = strlen(buffer) + 1;
    731      1.1  tron 		for (;;) {
    732      1.1  tron 			int	 more;
    733      1.1  tron 
    734      1.1  tron 			ptr = &buffer[offset];
    735      1.1  tron 			if ((sizeof(buffer) == offset) ||
    736  1.7.4.4    he 			    (GetS(in, ptr, sizeof(buffer) - offset)
    737      1.1  tron 				== NULL)) {
    738      1.1  tron 				free(section);
    739      1.1  tron 				return NULL;
    740      1.1  tron 			}
    741      1.1  tron 			if (manpreprocess(ptr) || (*ptr == '\0'))
    742      1.1  tron 				continue;
    743      1.1  tron 
    744      1.5  tron 			if ((strncasecmp(ptr, ".Sh", 3) == 0) ||
    745      1.5  tron 			    (strncasecmp(ptr, ".Ss", 3) == 0))
    746      1.1  tron 				break;
    747      1.1  tron 
    748      1.1  tron 			if (*ptr == '.') {
    749      1.1  tron 				char	*space;
    750      1.1  tron 
    751      1.6  tron 				if ((space = findwhitespace(ptr)) == NULL) {
    752      1.1  tron 					continue;
    753      1.5  tron 				}
    754      1.5  tron 
    755      1.1  tron 				space++;
    756      1.5  tron 				(void) memmove(ptr, space, strlen(space) + 1);
    757      1.1  tron 			}
    758      1.1  tron 
    759      1.1  tron 			buffer[offset - 1] = ' ';
    760      1.1  tron 			more = strlen(ptr);
    761      1.1  tron 			if ((more > 1) && (ptr[more - 1] == ',') &&
    762  1.7.4.4    he 			    isspace((unsigned char)ptr[more - 2])) {
    763      1.1  tron 				ptr[more - 1] = '\0';
    764      1.1  tron 				ptr[more - 2] = ',';
    765      1.1  tron 			}
    766      1.1  tron 			else more++;
    767      1.1  tron 			offset += more;
    768      1.1  tron 		}
    769      1.1  tron 	}
    770      1.1  tron 
    771      1.1  tron 	if (section == NULL) {
    772      1.1  tron 		char sectionbuffer[24];
    773      1.1  tron 
    774      1.4  tron 		(void) sprintf(sectionbuffer, " (%c) - ",
    775      1.4  tron 			sectionext[defaultsection]);
    776      1.1  tron 		ptr = replacestring(buffer, " - ", sectionbuffer);
    777      1.1  tron 	}
    778      1.1  tron 	else {
    779      1.1  tron 		ptr = replacestring(buffer, " - ", section);
    780      1.1  tron 		free(section);
    781      1.1  tron 	}
    782      1.1  tron 	return ptr;
    783      1.1  tron }
    784      1.1  tron 
    785      1.1  tron char *
    786      1.1  tron getwhatisdata(char *name)
    787      1.1  tron {
    788      1.1  tron 	gzFile	*in;
    789      1.1  tron 	char	*data;
    790      1.1  tron 	int	 section;
    791      1.1  tron 
    792      1.1  tron 	if ((in = gzopen(name, "r")) == NULL) {
    793  1.7.4.4    he 		if (errno == 0)
    794  1.7.4.4    he 			errno = ENOMEM;
    795  1.7.4.4    he 		err(EXIT_FAILURE, "Cannot open `%s'", name);
    796      1.1  tron 		/* NOTREACHED */
    797      1.1  tron 	}
    798      1.1  tron 
    799      1.1  tron 	section = manpagesection(name);
    800  1.7.4.3    he 	if (section == 0)
    801  1.7.4.3    he 		data = parsecatpage(in);
    802  1.7.4.3    he 	else {
    803  1.7.4.3    he 		data = parsemanpage(in, section);
    804  1.7.4.3    he 		if (data == NULL)
    805  1.7.4.3    he 			data = nroff(in);
    806  1.7.4.3    he 	}
    807      1.1  tron 
    808      1.1  tron 	(void) gzclose(in);
    809      1.1  tron 	return data;
    810      1.1  tron }
    811      1.1  tron 
    812      1.1  tron void
    813      1.1  tron processmanpages(manpage **source, whatis **dest)
    814      1.1  tron {
    815  1.7.4.4    he 	manpage *mp;
    816      1.1  tron 
    817      1.1  tron 	mp = *source;
    818      1.1  tron 	*source = NULL;
    819      1.1  tron 
    820      1.1  tron 	while (mp != NULL) {
    821      1.1  tron 		manpage *obsolete;
    822      1.1  tron 		char *data;
    823      1.1  tron 
    824      1.1  tron 		if (mp->mp_left != NULL)
    825      1.1  tron 			processmanpages(&mp->mp_left,dest);
    826      1.1  tron 
    827  1.7.4.4    he 		if ((data = getwhatisdata(mp->mp_name)) != NULL)
    828  1.7.4.4    he 			addwhatis(dest,data);
    829      1.1  tron 
    830      1.1  tron 		obsolete = mp;
    831      1.1  tron 		mp = mp->mp_right;
    832      1.1  tron 		free(obsolete);
    833      1.1  tron 	}
    834      1.1  tron }
    835      1.1  tron 
    836  1.7.4.4    he void
    837  1.7.4.4    he dumpwhatis(FILE *out, whatis *tree)
    838      1.1  tron {
    839      1.1  tron 	while (tree != NULL) {
    840      1.1  tron 		if (tree->wi_left)
    841  1.7.4.4    he 			dumpwhatis(out, tree->wi_left);
    842      1.1  tron 
    843      1.1  tron 		if ((fputs(tree->wi_data, out) == EOF) ||
    844      1.1  tron 		    (fputc('\n', out) == EOF))
    845  1.7.4.4    he 			err(EXIT_FAILURE, "Write failed");
    846      1.1  tron 
    847      1.1  tron 		tree = tree->wi_right;
    848      1.1  tron 	}
    849  1.7.4.4    he }
    850  1.7.4.4    he 
    851  1.7.4.4    he void *
    852  1.7.4.4    he emalloc(size_t len)
    853  1.7.4.4    he {
    854  1.7.4.4    he 	void *ptr;
    855  1.7.4.4    he 	if ((ptr = malloc(len)) == NULL)
    856  1.7.4.4    he 		err(EXIT_FAILURE, "malloc %lu failed", (unsigned long)len);
    857  1.7.4.4    he 	return ptr;
    858  1.7.4.4    he }
    859      1.1  tron 
    860  1.7.4.4    he char *
    861  1.7.4.4    he estrdup(const char *str)
    862  1.7.4.4    he {
    863  1.7.4.4    he 	char *ptr;
    864  1.7.4.4    he 	if ((ptr = strdup(str)) == NULL)
    865  1.7.4.4    he 		err(EXIT_FAILURE, "strdup failed");
    866  1.7.4.4    he 	return ptr;
    867      1.1  tron }
    868