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