]> git.cameronkatri.com Git - mandoc.git/blob - mandocdb.c
Improve build system and autodetection.
[mandoc.git] / mandocdb.c
1 /* $Id: mandocdb.c,v 1.158 2014/08/16 19:00:01 schwarze Exp $ */
2 /*
3 * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18 #include "config.h"
19
20 #include <sys/stat.h>
21 #include <sys/types.h>
22 #include <sys/wait.h>
23
24 #include <assert.h>
25 #include <ctype.h>
26 #include <errno.h>
27 #include <fcntl.h>
28 #if HAVE_FTS
29 #include <fts.h>
30 #else
31 #include "compat_fts.h"
32 #endif
33 #include <getopt.h>
34 #include <limits.h>
35 #include <stddef.h>
36 #include <stdio.h>
37 #include <stdint.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <unistd.h>
41
42 #if HAVE_OHASH
43 #include <ohash.h>
44 #else
45 #include "compat_ohash.h"
46 #endif
47 #include <sqlite3.h>
48
49 #include "mdoc.h"
50 #include "man.h"
51 #include "mandoc.h"
52 #include "mandoc_aux.h"
53 #include "manpath.h"
54 #include "mansearch.h"
55
56 extern int mansearch_keymax;
57 extern const char *const mansearch_keynames[];
58
59 #define SQL_EXEC(_v) \
60 if (SQLITE_OK != sqlite3_exec(db, (_v), NULL, NULL, NULL)) \
61 say("", "%s: %s", (_v), sqlite3_errmsg(db))
62 #define SQL_BIND_TEXT(_s, _i, _v) \
63 if (SQLITE_OK != sqlite3_bind_text \
64 ((_s), (_i)++, (_v), -1, SQLITE_STATIC)) \
65 say(mlink->file, "%s", sqlite3_errmsg(db))
66 #define SQL_BIND_INT(_s, _i, _v) \
67 if (SQLITE_OK != sqlite3_bind_int \
68 ((_s), (_i)++, (_v))) \
69 say(mlink->file, "%s", sqlite3_errmsg(db))
70 #define SQL_BIND_INT64(_s, _i, _v) \
71 if (SQLITE_OK != sqlite3_bind_int64 \
72 ((_s), (_i)++, (_v))) \
73 say(mlink->file, "%s", sqlite3_errmsg(db))
74 #define SQL_STEP(_s) \
75 if (SQLITE_DONE != sqlite3_step((_s))) \
76 say(mlink->file, "%s", sqlite3_errmsg(db))
77
78 enum op {
79 OP_DEFAULT = 0, /* new dbs from dir list or default config */
80 OP_CONFFILE, /* new databases from custom config file */
81 OP_UPDATE, /* delete/add entries in existing database */
82 OP_DELETE, /* delete entries from existing database */
83 OP_TEST /* change no databases, report potential problems */
84 };
85
86 enum form {
87 FORM_NONE, /* format is unknown */
88 FORM_SRC, /* format is -man or -mdoc */
89 FORM_CAT /* format is cat */
90 };
91
92 struct str {
93 char *rendered; /* key in UTF-8 or ASCII form */
94 const struct mpage *mpage; /* if set, the owning parse */
95 uint64_t mask; /* bitmask in sequence */
96 char key[]; /* may contain escape sequences */
97 };
98
99 struct inodev {
100 ino_t st_ino;
101 dev_t st_dev;
102 };
103
104 struct mpage {
105 struct inodev inodev; /* used for hashing routine */
106 int64_t pageid; /* pageid in mpages SQL table */
107 enum form form; /* format from file content */
108 char *sec; /* section from file content */
109 char *arch; /* architecture from file content */
110 char *title; /* title from file content */
111 char *desc; /* description from file content */
112 struct mlink *mlinks; /* singly linked list */
113 };
114
115 struct mlink {
116 char file[PATH_MAX]; /* filename rel. to manpath */
117 enum form dform; /* format from directory */
118 enum form fform; /* format from file name suffix */
119 char *dsec; /* section from directory */
120 char *arch; /* architecture from directory */
121 char *name; /* name from file name (not empty) */
122 char *fsec; /* section from file name suffix */
123 struct mlink *next; /* singly linked list */
124 struct mpage *mpage; /* parent */
125 int gzip; /* filename has a .gz suffix */
126 };
127
128 enum stmt {
129 STMT_DELETE_PAGE = 0, /* delete mpage */
130 STMT_INSERT_PAGE, /* insert mpage */
131 STMT_INSERT_LINK, /* insert mlink */
132 STMT_INSERT_NAME, /* insert name */
133 STMT_INSERT_KEY, /* insert parsed key */
134 STMT__MAX
135 };
136
137 typedef int (*mdoc_fp)(struct mpage *, const struct mdoc_node *);
138
139 struct mdoc_handler {
140 mdoc_fp fp; /* optional handler */
141 uint64_t mask; /* set unless handler returns 0 */
142 };
143
144 static void dbclose(int);
145 static void dbadd(struct mpage *, struct mchars *);
146 static void dbadd_mlink(const struct mlink *mlink);
147 static int dbopen(int);
148 static void dbprune(void);
149 static void filescan(const char *);
150 static void *hash_alloc(size_t, void *);
151 static void hash_free(void *, void *);
152 static void *hash_calloc(size_t, size_t, void *);
153 static void mlink_add(struct mlink *, const struct stat *);
154 static void mlink_check(struct mpage *, struct mlink *);
155 static void mlink_free(struct mlink *);
156 static void mlinks_undupe(struct mpage *);
157 static void mpages_free(void);
158 static void mpages_merge(struct mchars *, struct mparse *);
159 static void names_check(void);
160 static void parse_cat(struct mpage *, int);
161 static void parse_man(struct mpage *, const struct man_node *);
162 static void parse_mdoc(struct mpage *, const struct mdoc_node *);
163 static int parse_mdoc_body(struct mpage *, const struct mdoc_node *);
164 static int parse_mdoc_head(struct mpage *, const struct mdoc_node *);
165 static int parse_mdoc_Fd(struct mpage *, const struct mdoc_node *);
166 static int parse_mdoc_Fn(struct mpage *, const struct mdoc_node *);
167 static int parse_mdoc_Nd(struct mpage *, const struct mdoc_node *);
168 static int parse_mdoc_Nm(struct mpage *, const struct mdoc_node *);
169 static int parse_mdoc_Sh(struct mpage *, const struct mdoc_node *);
170 static int parse_mdoc_Xr(struct mpage *, const struct mdoc_node *);
171 static void putkey(const struct mpage *, char *, uint64_t);
172 static void putkeys(const struct mpage *,
173 const char *, size_t, uint64_t);
174 static void putmdockey(const struct mpage *,
175 const struct mdoc_node *, uint64_t);
176 static void render_key(struct mchars *, struct str *);
177 static void say(const char *, const char *, ...);
178 static int set_basedir(const char *);
179 static int treescan(void);
180 static size_t utf8(unsigned int, char [7]);
181
182 static char tempfilename[32];
183 static char *progname;
184 static int nodb; /* no database changes */
185 static int mparse_options; /* abort the parse early */
186 static int use_all; /* use all found files */
187 static int debug; /* print what we're doing */
188 static int warnings; /* warn about crap */
189 static int write_utf8; /* write UTF-8 output; else ASCII */
190 static int exitcode; /* to be returned by main */
191 static enum op op; /* operational mode */
192 static char basedir[PATH_MAX]; /* current base directory */
193 static struct ohash mpages; /* table of distinct manual pages */
194 static struct ohash mlinks; /* table of directory entries */
195 static struct ohash names; /* table of all names */
196 static struct ohash strings; /* table of all strings */
197 static sqlite3 *db = NULL; /* current database */
198 static sqlite3_stmt *stmts[STMT__MAX]; /* current statements */
199 static uint64_t name_mask;
200
201 static const struct mdoc_handler mdocs[MDOC_MAX] = {
202 { NULL, 0 }, /* Ap */
203 { NULL, 0 }, /* Dd */
204 { NULL, 0 }, /* Dt */
205 { NULL, 0 }, /* Os */
206 { parse_mdoc_Sh, TYPE_Sh }, /* Sh */
207 { parse_mdoc_head, TYPE_Ss }, /* Ss */
208 { NULL, 0 }, /* Pp */
209 { NULL, 0 }, /* D1 */
210 { NULL, 0 }, /* Dl */
211 { NULL, 0 }, /* Bd */
212 { NULL, 0 }, /* Ed */
213 { NULL, 0 }, /* Bl */
214 { NULL, 0 }, /* El */
215 { NULL, 0 }, /* It */
216 { NULL, 0 }, /* Ad */
217 { NULL, TYPE_An }, /* An */
218 { NULL, TYPE_Ar }, /* Ar */
219 { NULL, TYPE_Cd }, /* Cd */
220 { NULL, TYPE_Cm }, /* Cm */
221 { NULL, TYPE_Dv }, /* Dv */
222 { NULL, TYPE_Er }, /* Er */
223 { NULL, TYPE_Ev }, /* Ev */
224 { NULL, 0 }, /* Ex */
225 { NULL, TYPE_Fa }, /* Fa */
226 { parse_mdoc_Fd, 0 }, /* Fd */
227 { NULL, TYPE_Fl }, /* Fl */
228 { parse_mdoc_Fn, 0 }, /* Fn */
229 { NULL, TYPE_Ft }, /* Ft */
230 { NULL, TYPE_Ic }, /* Ic */
231 { NULL, TYPE_In }, /* In */
232 { NULL, TYPE_Li }, /* Li */
233 { parse_mdoc_Nd, 0 }, /* Nd */
234 { parse_mdoc_Nm, 0 }, /* Nm */
235 { NULL, 0 }, /* Op */
236 { NULL, 0 }, /* Ot */
237 { NULL, TYPE_Pa }, /* Pa */
238 { NULL, 0 }, /* Rv */
239 { NULL, TYPE_St }, /* St */
240 { NULL, TYPE_Va }, /* Va */
241 { parse_mdoc_body, TYPE_Va }, /* Vt */
242 { parse_mdoc_Xr, 0 }, /* Xr */
243 { NULL, 0 }, /* %A */
244 { NULL, 0 }, /* %B */
245 { NULL, 0 }, /* %D */
246 { NULL, 0 }, /* %I */
247 { NULL, 0 }, /* %J */
248 { NULL, 0 }, /* %N */
249 { NULL, 0 }, /* %O */
250 { NULL, 0 }, /* %P */
251 { NULL, 0 }, /* %R */
252 { NULL, 0 }, /* %T */
253 { NULL, 0 }, /* %V */
254 { NULL, 0 }, /* Ac */
255 { NULL, 0 }, /* Ao */
256 { NULL, 0 }, /* Aq */
257 { NULL, TYPE_At }, /* At */
258 { NULL, 0 }, /* Bc */
259 { NULL, 0 }, /* Bf */
260 { NULL, 0 }, /* Bo */
261 { NULL, 0 }, /* Bq */
262 { NULL, TYPE_Bsx }, /* Bsx */
263 { NULL, TYPE_Bx }, /* Bx */
264 { NULL, 0 }, /* Db */
265 { NULL, 0 }, /* Dc */
266 { NULL, 0 }, /* Do */
267 { NULL, 0 }, /* Dq */
268 { NULL, 0 }, /* Ec */
269 { NULL, 0 }, /* Ef */
270 { NULL, TYPE_Em }, /* Em */
271 { NULL, 0 }, /* Eo */
272 { NULL, TYPE_Fx }, /* Fx */
273 { NULL, TYPE_Ms }, /* Ms */
274 { NULL, 0 }, /* No */
275 { NULL, 0 }, /* Ns */
276 { NULL, TYPE_Nx }, /* Nx */
277 { NULL, TYPE_Ox }, /* Ox */
278 { NULL, 0 }, /* Pc */
279 { NULL, 0 }, /* Pf */
280 { NULL, 0 }, /* Po */
281 { NULL, 0 }, /* Pq */
282 { NULL, 0 }, /* Qc */
283 { NULL, 0 }, /* Ql */
284 { NULL, 0 }, /* Qo */
285 { NULL, 0 }, /* Qq */
286 { NULL, 0 }, /* Re */
287 { NULL, 0 }, /* Rs */
288 { NULL, 0 }, /* Sc */
289 { NULL, 0 }, /* So */
290 { NULL, 0 }, /* Sq */
291 { NULL, 0 }, /* Sm */
292 { NULL, 0 }, /* Sx */
293 { NULL, TYPE_Sy }, /* Sy */
294 { NULL, TYPE_Tn }, /* Tn */
295 { NULL, 0 }, /* Ux */
296 { NULL, 0 }, /* Xc */
297 { NULL, 0 }, /* Xo */
298 { parse_mdoc_head, 0 }, /* Fo */
299 { NULL, 0 }, /* Fc */
300 { NULL, 0 }, /* Oo */
301 { NULL, 0 }, /* Oc */
302 { NULL, 0 }, /* Bk */
303 { NULL, 0 }, /* Ek */
304 { NULL, 0 }, /* Bt */
305 { NULL, 0 }, /* Hf */
306 { NULL, 0 }, /* Fr */
307 { NULL, 0 }, /* Ud */
308 { NULL, TYPE_Lb }, /* Lb */
309 { NULL, 0 }, /* Lp */
310 { NULL, TYPE_Lk }, /* Lk */
311 { NULL, TYPE_Mt }, /* Mt */
312 { NULL, 0 }, /* Brq */
313 { NULL, 0 }, /* Bro */
314 { NULL, 0 }, /* Brc */
315 { NULL, 0 }, /* %C */
316 { NULL, 0 }, /* Es */
317 { NULL, 0 }, /* En */
318 { NULL, TYPE_Dx }, /* Dx */
319 { NULL, 0 }, /* %Q */
320 { NULL, 0 }, /* br */
321 { NULL, 0 }, /* sp */
322 { NULL, 0 }, /* %U */
323 { NULL, 0 }, /* Ta */
324 };
325
326
327 int
328 main(int argc, char *argv[])
329 {
330 int ch, i;
331 size_t j, sz;
332 const char *path_arg;
333 struct mchars *mc;
334 struct manpaths dirs;
335 struct mparse *mp;
336 struct ohash_info mpages_info, mlinks_info;
337
338 memset(stmts, 0, STMT__MAX * sizeof(sqlite3_stmt *));
339 memset(&dirs, 0, sizeof(struct manpaths));
340
341 mpages_info.alloc = mlinks_info.alloc = hash_alloc;
342 mpages_info.calloc = mlinks_info.calloc = hash_calloc;
343 mpages_info.free = mlinks_info.free = hash_free;
344
345 mpages_info.key_offset = offsetof(struct mpage, inodev);
346 mlinks_info.key_offset = offsetof(struct mlink, file);
347
348 progname = strrchr(argv[0], '/');
349 if (progname == NULL)
350 progname = argv[0];
351 else
352 ++progname;
353
354 /*
355 * We accept a few different invocations.
356 * The CHECKOP macro makes sure that invocation styles don't
357 * clobber each other.
358 */
359 #define CHECKOP(_op, _ch) do \
360 if (OP_DEFAULT != (_op)) { \
361 fprintf(stderr, "%s: -%c: Conflicting option\n", \
362 progname, (_ch)); \
363 goto usage; \
364 } while (/*CONSTCOND*/0)
365
366 path_arg = NULL;
367 op = OP_DEFAULT;
368
369 while (-1 != (ch = getopt(argc, argv, "aC:Dd:npQT:tu:v")))
370 switch (ch) {
371 case 'a':
372 use_all = 1;
373 break;
374 case 'C':
375 CHECKOP(op, ch);
376 path_arg = optarg;
377 op = OP_CONFFILE;
378 break;
379 case 'D':
380 debug++;
381 break;
382 case 'd':
383 CHECKOP(op, ch);
384 path_arg = optarg;
385 op = OP_UPDATE;
386 break;
387 case 'n':
388 nodb = 1;
389 break;
390 case 'p':
391 warnings = 1;
392 break;
393 case 'Q':
394 mparse_options |= MPARSE_QUICK;
395 break;
396 case 'T':
397 if (strcmp(optarg, "utf8")) {
398 fprintf(stderr, "%s: -T%s: "
399 "Unsupported output format\n",
400 progname, optarg);
401 goto usage;
402 }
403 write_utf8 = 1;
404 break;
405 case 't':
406 CHECKOP(op, ch);
407 dup2(STDOUT_FILENO, STDERR_FILENO);
408 op = OP_TEST;
409 nodb = warnings = 1;
410 break;
411 case 'u':
412 CHECKOP(op, ch);
413 path_arg = optarg;
414 op = OP_DELETE;
415 break;
416 case 'v':
417 /* Compatibility with espie@'s makewhatis. */
418 break;
419 default:
420 goto usage;
421 }
422
423 argc -= optind;
424 argv += optind;
425
426 if (OP_CONFFILE == op && argc > 0) {
427 fprintf(stderr, "%s: -C: Too many arguments\n",
428 progname);
429 goto usage;
430 }
431
432 exitcode = (int)MANDOCLEVEL_OK;
433 mp = mparse_alloc(mparse_options, MANDOCLEVEL_FATAL, NULL, NULL);
434 mc = mchars_alloc();
435
436 ohash_init(&mpages, 6, &mpages_info);
437 ohash_init(&mlinks, 6, &mlinks_info);
438
439 if (OP_UPDATE == op || OP_DELETE == op || OP_TEST == op) {
440
441 /*
442 * Most of these deal with a specific directory.
443 * Jump into that directory first.
444 */
445 if (OP_TEST != op && 0 == set_basedir(path_arg))
446 goto out;
447
448 if (dbopen(1)) {
449 /*
450 * The existing database is usable. Process
451 * all files specified on the command-line.
452 */
453 use_all = 1;
454 for (i = 0; i < argc; i++)
455 filescan(argv[i]);
456 if (OP_TEST != op)
457 dbprune();
458 } else {
459 /*
460 * Database missing or corrupt.
461 * Recreate from scratch.
462 */
463 exitcode = (int)MANDOCLEVEL_OK;
464 op = OP_DEFAULT;
465 if (0 == treescan())
466 goto out;
467 if (0 == dbopen(0))
468 goto out;
469 }
470 if (OP_DELETE != op)
471 mpages_merge(mc, mp);
472 dbclose(OP_DEFAULT == op ? 0 : 1);
473 } else {
474 /*
475 * If we have arguments, use them as our manpaths.
476 * If we don't, grok from manpath(1) or however else
477 * manpath_parse() wants to do it.
478 */
479 if (argc > 0) {
480 dirs.paths = mandoc_reallocarray(NULL,
481 argc, sizeof(char *));
482 dirs.sz = (size_t)argc;
483 for (i = 0; i < argc; i++)
484 dirs.paths[i] = mandoc_strdup(argv[i]);
485 } else
486 manpath_parse(&dirs, path_arg, NULL, NULL);
487
488 if (0 == dirs.sz) {
489 exitcode = (int)MANDOCLEVEL_BADARG;
490 say("", "Empty manpath");
491 }
492
493 /*
494 * First scan the tree rooted at a base directory, then
495 * build a new database and finally move it into place.
496 * Ignore zero-length directories and strip trailing
497 * slashes.
498 */
499 for (j = 0; j < dirs.sz; j++) {
500 sz = strlen(dirs.paths[j]);
501 if (sz && '/' == dirs.paths[j][sz - 1])
502 dirs.paths[j][--sz] = '\0';
503 if (0 == sz)
504 continue;
505
506 if (j) {
507 ohash_init(&mpages, 6, &mpages_info);
508 ohash_init(&mlinks, 6, &mlinks_info);
509 }
510
511 if (0 == set_basedir(dirs.paths[j]))
512 goto out;
513 if (0 == treescan())
514 goto out;
515 if (0 == dbopen(0))
516 goto out;
517
518 mpages_merge(mc, mp);
519 if (warnings && !nodb &&
520 ! (MPARSE_QUICK & mparse_options))
521 names_check();
522 dbclose(0);
523
524 if (j + 1 < dirs.sz) {
525 mpages_free();
526 ohash_delete(&mpages);
527 ohash_delete(&mlinks);
528 }
529 }
530 }
531 out:
532 manpath_free(&dirs);
533 mchars_free(mc);
534 mparse_free(mp);
535 mpages_free();
536 ohash_delete(&mpages);
537 ohash_delete(&mlinks);
538 return(exitcode);
539 usage:
540 fprintf(stderr, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
541 " %s [-aDnpQ] [-Tutf8] dir ...\n"
542 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
543 " %s [-Dnp] -u dir [file ...]\n"
544 " %s [-Q] -t file ...\n",
545 progname, progname, progname,
546 progname, progname);
547
548 return((int)MANDOCLEVEL_BADARG);
549 }
550
551 /*
552 * Scan a directory tree rooted at "basedir" for manpages.
553 * We use fts(), scanning directory parts along the way for clues to our
554 * section and architecture.
555 *
556 * If use_all has been specified, grok all files.
557 * If not, sanitise paths to the following:
558 *
559 * [./]man*[/<arch>]/<name>.<section>
560 * or
561 * [./]cat<section>[/<arch>]/<name>.0
562 *
563 * TODO: accomodate for multi-language directories.
564 */
565 static int
566 treescan(void)
567 {
568 char buf[PATH_MAX];
569 FTS *f;
570 FTSENT *ff;
571 struct mlink *mlink;
572 int dform, gzip;
573 char *dsec, *arch, *fsec, *cp;
574 const char *path;
575 const char *argv[2];
576
577 argv[0] = ".";
578 argv[1] = (char *)NULL;
579
580 f = fts_open((char * const *)argv,
581 FTS_PHYSICAL | FTS_NOCHDIR, NULL);
582 if (NULL == f) {
583 exitcode = (int)MANDOCLEVEL_SYSERR;
584 say("", "&fts_open");
585 return(0);
586 }
587
588 dsec = arch = NULL;
589 dform = FORM_NONE;
590
591 while (NULL != (ff = fts_read(f))) {
592 path = ff->fts_path + 2;
593 switch (ff->fts_info) {
594
595 /*
596 * Symbolic links require various sanity checks,
597 * then get handled just like regular files.
598 */
599 case FTS_SL:
600 if (NULL == realpath(path, buf)) {
601 if (warnings)
602 say(path, "&realpath");
603 continue;
604 }
605 if (strstr(buf, basedir) != buf) {
606 if (warnings) say("",
607 "%s: outside base directory", buf);
608 continue;
609 }
610 /* Use logical inode to avoid mpages dupe. */
611 if (-1 == stat(path, ff->fts_statp)) {
612 if (warnings)
613 say(path, "&stat");
614 continue;
615 }
616 /* FALLTHROUGH */
617
618 /*
619 * If we're a regular file, add an mlink by using the
620 * stored directory data and handling the filename.
621 */
622 case FTS_F:
623 if (0 == strcmp(path, MANDOC_DB))
624 continue;
625 if ( ! use_all && ff->fts_level < 2) {
626 if (warnings)
627 say(path, "Extraneous file");
628 continue;
629 }
630 gzip = 0;
631 fsec = NULL;
632 while (NULL == fsec) {
633 fsec = strrchr(ff->fts_name, '.');
634 if (NULL == fsec || strcmp(fsec+1, "gz"))
635 break;
636 gzip = 1;
637 *fsec = '\0';
638 fsec = NULL;
639 }
640 if (NULL == fsec) {
641 if ( ! use_all) {
642 if (warnings)
643 say(path,
644 "No filename suffix");
645 continue;
646 }
647 } else if (0 == strcmp(++fsec, "html")) {
648 if (warnings)
649 say(path, "Skip html");
650 continue;
651 } else if (0 == strcmp(fsec, "ps")) {
652 if (warnings)
653 say(path, "Skip ps");
654 continue;
655 } else if (0 == strcmp(fsec, "pdf")) {
656 if (warnings)
657 say(path, "Skip pdf");
658 continue;
659 } else if ( ! use_all &&
660 ((FORM_SRC == dform && strcmp(fsec, dsec)) ||
661 (FORM_CAT == dform && strcmp(fsec, "0")))) {
662 if (warnings)
663 say(path, "Wrong filename suffix");
664 continue;
665 } else
666 fsec[-1] = '\0';
667
668 mlink = mandoc_calloc(1, sizeof(struct mlink));
669 if (strlcpy(mlink->file, path,
670 sizeof(mlink->file)) >=
671 sizeof(mlink->file)) {
672 say(path, "Filename too long");
673 free(mlink);
674 continue;
675 }
676 mlink->dform = dform;
677 mlink->dsec = dsec;
678 mlink->arch = arch;
679 mlink->name = ff->fts_name;
680 mlink->fsec = fsec;
681 mlink->gzip = gzip;
682 mlink_add(mlink, ff->fts_statp);
683 continue;
684
685 case FTS_D:
686 /* FALLTHROUGH */
687 case FTS_DP:
688 break;
689
690 default:
691 if (warnings)
692 say(path, "Not a regular file");
693 continue;
694 }
695
696 switch (ff->fts_level) {
697 case 0:
698 /* Ignore the root directory. */
699 break;
700 case 1:
701 /*
702 * This might contain manX/ or catX/.
703 * Try to infer this from the name.
704 * If we're not in use_all, enforce it.
705 */
706 cp = ff->fts_name;
707 if (FTS_DP == ff->fts_info)
708 break;
709
710 if (0 == strncmp(cp, "man", 3)) {
711 dform = FORM_SRC;
712 dsec = cp + 3;
713 } else if (0 == strncmp(cp, "cat", 3)) {
714 dform = FORM_CAT;
715 dsec = cp + 3;
716 } else {
717 dform = FORM_NONE;
718 dsec = NULL;
719 }
720
721 if (NULL != dsec || use_all)
722 break;
723
724 if (warnings)
725 say(path, "Unknown directory part");
726 fts_set(f, ff, FTS_SKIP);
727 break;
728 case 2:
729 /*
730 * Possibly our architecture.
731 * If we're descending, keep tabs on it.
732 */
733 if (FTS_DP != ff->fts_info && NULL != dsec)
734 arch = ff->fts_name;
735 else
736 arch = NULL;
737 break;
738 default:
739 if (FTS_DP == ff->fts_info || use_all)
740 break;
741 if (warnings)
742 say(path, "Extraneous directory part");
743 fts_set(f, ff, FTS_SKIP);
744 break;
745 }
746 }
747
748 fts_close(f);
749 return(1);
750 }
751
752 /*
753 * Add a file to the mlinks table.
754 * Do not verify that it's a "valid" looking manpage (we'll do that
755 * later).
756 *
757 * Try to infer the manual section, architecture, and page name from the
758 * path, assuming it looks like
759 *
760 * [./]man*[/<arch>]/<name>.<section>
761 * or
762 * [./]cat<section>[/<arch>]/<name>.0
763 *
764 * See treescan() for the fts(3) version of this.
765 */
766 static void
767 filescan(const char *file)
768 {
769 char buf[PATH_MAX];
770 struct stat st;
771 struct mlink *mlink;
772 char *p, *start;
773
774 assert(use_all);
775
776 if (0 == strncmp(file, "./", 2))
777 file += 2;
778
779 /*
780 * We have to do lstat(2) before realpath(3) loses
781 * the information whether this is a symbolic link.
782 * We need to know that because for symbolic links,
783 * we want to use the orginal file name, while for
784 * regular files, we want to use the real path.
785 */
786 if (-1 == lstat(file, &st)) {
787 exitcode = (int)MANDOCLEVEL_BADARG;
788 say(file, "&lstat");
789 return;
790 } else if (0 == ((S_IFREG | S_IFLNK) & st.st_mode)) {
791 exitcode = (int)MANDOCLEVEL_BADARG;
792 say(file, "Not a regular file");
793 return;
794 }
795
796 /*
797 * We have to resolve the file name to the real path
798 * in any case for the base directory check.
799 */
800 if (NULL == realpath(file, buf)) {
801 exitcode = (int)MANDOCLEVEL_BADARG;
802 say(file, "&realpath");
803 return;
804 }
805
806 if (OP_TEST == op)
807 start = buf;
808 else if (strstr(buf, basedir) == buf)
809 start = buf + strlen(basedir);
810 else {
811 exitcode = (int)MANDOCLEVEL_BADARG;
812 say("", "%s: outside base directory", buf);
813 return;
814 }
815
816 /*
817 * Now we are sure the file is inside our tree.
818 * If it is a symbolic link, ignore the real path
819 * and use the original name.
820 * This implies passing stuff like "cat1/../man1/foo.1"
821 * on the command line won't work. So don't do that.
822 * Note the stat(2) can still fail if the link target
823 * doesn't exist.
824 */
825 if (S_IFLNK & st.st_mode) {
826 if (-1 == stat(buf, &st)) {
827 exitcode = (int)MANDOCLEVEL_BADARG;
828 say(file, "&stat");
829 return;
830 }
831 if (strlcpy(buf, file, sizeof(buf)) >= sizeof(buf)) {
832 say(file, "Filename too long");
833 return;
834 }
835 start = buf;
836 if (OP_TEST != op && strstr(buf, basedir) == buf)
837 start += strlen(basedir);
838 }
839
840 mlink = mandoc_calloc(1, sizeof(struct mlink));
841 if (strlcpy(mlink->file, start, sizeof(mlink->file)) >=
842 sizeof(mlink->file)) {
843 say(start, "Filename too long");
844 return;
845 }
846
847 /*
848 * First try to guess our directory structure.
849 * If we find a separator, try to look for man* or cat*.
850 * If we find one of these and what's underneath is a directory,
851 * assume it's an architecture.
852 */
853 if (NULL != (p = strchr(start, '/'))) {
854 *p++ = '\0';
855 if (0 == strncmp(start, "man", 3)) {
856 mlink->dform = FORM_SRC;
857 mlink->dsec = start + 3;
858 } else if (0 == strncmp(start, "cat", 3)) {
859 mlink->dform = FORM_CAT;
860 mlink->dsec = start + 3;
861 }
862
863 start = p;
864 if (NULL != mlink->dsec && NULL != (p = strchr(start, '/'))) {
865 *p++ = '\0';
866 mlink->arch = start;
867 start = p;
868 }
869 }
870
871 /*
872 * Now check the file suffix.
873 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
874 */
875 p = strrchr(start, '\0');
876 while (p-- > start && '/' != *p && '.' != *p)
877 /* Loop. */ ;
878
879 if ('.' == *p) {
880 *p++ = '\0';
881 mlink->fsec = p;
882 }
883
884 /*
885 * Now try to parse the name.
886 * Use the filename portion of the path.
887 */
888 mlink->name = start;
889 if (NULL != (p = strrchr(start, '/'))) {
890 mlink->name = p + 1;
891 *p = '\0';
892 }
893 mlink_add(mlink, &st);
894 }
895
896 static void
897 mlink_add(struct mlink *mlink, const struct stat *st)
898 {
899 struct inodev inodev;
900 struct mpage *mpage;
901 unsigned int slot;
902
903 assert(NULL != mlink->file);
904
905 mlink->dsec = mandoc_strdup(mlink->dsec ? mlink->dsec : "");
906 mlink->arch = mandoc_strdup(mlink->arch ? mlink->arch : "");
907 mlink->name = mandoc_strdup(mlink->name ? mlink->name : "");
908 mlink->fsec = mandoc_strdup(mlink->fsec ? mlink->fsec : "");
909
910 if ('0' == *mlink->fsec) {
911 free(mlink->fsec);
912 mlink->fsec = mandoc_strdup(mlink->dsec);
913 mlink->fform = FORM_CAT;
914 } else if ('1' <= *mlink->fsec && '9' >= *mlink->fsec)
915 mlink->fform = FORM_SRC;
916 else
917 mlink->fform = FORM_NONE;
918
919 slot = ohash_qlookup(&mlinks, mlink->file);
920 assert(NULL == ohash_find(&mlinks, slot));
921 ohash_insert(&mlinks, slot, mlink);
922
923 inodev.st_ino = st->st_ino;
924 inodev.st_dev = st->st_dev;
925 slot = ohash_lookup_memory(&mpages, (char *)&inodev,
926 sizeof(struct inodev), inodev.st_ino);
927 mpage = ohash_find(&mpages, slot);
928 if (NULL == mpage) {
929 mpage = mandoc_calloc(1, sizeof(struct mpage));
930 mpage->inodev.st_ino = inodev.st_ino;
931 mpage->inodev.st_dev = inodev.st_dev;
932 ohash_insert(&mpages, slot, mpage);
933 } else
934 mlink->next = mpage->mlinks;
935 mpage->mlinks = mlink;
936 mlink->mpage = mpage;
937 }
938
939 static void
940 mlink_free(struct mlink *mlink)
941 {
942
943 free(mlink->dsec);
944 free(mlink->arch);
945 free(mlink->name);
946 free(mlink->fsec);
947 free(mlink);
948 }
949
950 static void
951 mpages_free(void)
952 {
953 struct mpage *mpage;
954 struct mlink *mlink;
955 unsigned int slot;
956
957 mpage = ohash_first(&mpages, &slot);
958 while (NULL != mpage) {
959 while (NULL != (mlink = mpage->mlinks)) {
960 mpage->mlinks = mlink->next;
961 mlink_free(mlink);
962 }
963 free(mpage->sec);
964 free(mpage->arch);
965 free(mpage->title);
966 free(mpage->desc);
967 free(mpage);
968 mpage = ohash_next(&mpages, &slot);
969 }
970 }
971
972 /*
973 * For each mlink to the mpage, check whether the path looks like
974 * it is formatted, and if it does, check whether a source manual
975 * exists by the same name, ignoring the suffix.
976 * If both conditions hold, drop the mlink.
977 */
978 static void
979 mlinks_undupe(struct mpage *mpage)
980 {
981 char buf[PATH_MAX];
982 struct mlink **prev;
983 struct mlink *mlink;
984 char *bufp;
985
986 mpage->form = FORM_CAT;
987 prev = &mpage->mlinks;
988 while (NULL != (mlink = *prev)) {
989 if (FORM_CAT != mlink->dform) {
990 mpage->form = FORM_NONE;
991 goto nextlink;
992 }
993 (void)strlcpy(buf, mlink->file, sizeof(buf));
994 bufp = strstr(buf, "cat");
995 assert(NULL != bufp);
996 memcpy(bufp, "man", 3);
997 if (NULL != (bufp = strrchr(buf, '.')))
998 *++bufp = '\0';
999 (void)strlcat(buf, mlink->dsec, sizeof(buf));
1000 if (NULL == ohash_find(&mlinks,
1001 ohash_qlookup(&mlinks, buf)))
1002 goto nextlink;
1003 if (warnings)
1004 say(mlink->file, "Man source exists: %s", buf);
1005 if (use_all)
1006 goto nextlink;
1007 *prev = mlink->next;
1008 mlink_free(mlink);
1009 continue;
1010 nextlink:
1011 prev = &(*prev)->next;
1012 }
1013 }
1014
1015 static void
1016 mlink_check(struct mpage *mpage, struct mlink *mlink)
1017 {
1018 struct str *str;
1019 unsigned int slot;
1020
1021 /*
1022 * Check whether the manual section given in a file
1023 * agrees with the directory where the file is located.
1024 * Some manuals have suffixes like (3p) on their
1025 * section number either inside the file or in the
1026 * directory name, some are linked into more than one
1027 * section, like encrypt(1) = makekey(8).
1028 */
1029
1030 if (FORM_SRC == mpage->form &&
1031 strcasecmp(mpage->sec, mlink->dsec))
1032 say(mlink->file, "Section \"%s\" manual in %s directory",
1033 mpage->sec, mlink->dsec);
1034
1035 /*
1036 * Manual page directories exist for each kernel
1037 * architecture as returned by machine(1).
1038 * However, many manuals only depend on the
1039 * application architecture as returned by arch(1).
1040 * For example, some (2/ARM) manuals are shared
1041 * across the "armish" and "zaurus" kernel
1042 * architectures.
1043 * A few manuals are even shared across completely
1044 * different architectures, for example fdformat(1)
1045 * on amd64, i386, sparc, and sparc64.
1046 */
1047
1048 if (strcasecmp(mpage->arch, mlink->arch))
1049 say(mlink->file, "Architecture \"%s\" manual in "
1050 "\"%s\" directory", mpage->arch, mlink->arch);
1051
1052 /*
1053 * XXX
1054 * parse_cat() doesn't set NAME_TITLE yet.
1055 */
1056
1057 if (FORM_CAT == mpage->form)
1058 return;
1059
1060 /*
1061 * Check whether this mlink
1062 * appears as a name in the NAME section.
1063 */
1064
1065 slot = ohash_qlookup(&names, mlink->name);
1066 str = ohash_find(&names, slot);
1067 assert(NULL != str);
1068 if ( ! (NAME_TITLE & str->mask))
1069 say(mlink->file, "Name missing in NAME section");
1070 }
1071
1072 /*
1073 * Run through the files in the global vector "mpages"
1074 * and add them to the database specified in "basedir".
1075 *
1076 * This handles the parsing scheme itself, using the cues of directory
1077 * and filename to determine whether the file is parsable or not.
1078 */
1079 static void
1080 mpages_merge(struct mchars *mc, struct mparse *mp)
1081 {
1082 char any[] = "any";
1083 struct ohash_info str_info;
1084 int fd[2];
1085 struct mpage *mpage, *mpage_dest;
1086 struct mlink *mlink, *mlink_dest;
1087 struct mdoc *mdoc;
1088 struct man *man;
1089 char *sodest;
1090 char *cp;
1091 pid_t child_pid;
1092 int status;
1093 unsigned int pslot;
1094 enum mandoclevel lvl;
1095
1096 str_info.alloc = hash_alloc;
1097 str_info.calloc = hash_calloc;
1098 str_info.free = hash_free;
1099 str_info.key_offset = offsetof(struct str, key);
1100
1101 if (0 == nodb)
1102 SQL_EXEC("BEGIN TRANSACTION");
1103
1104 mpage = ohash_first(&mpages, &pslot);
1105 while (NULL != mpage) {
1106 mlinks_undupe(mpage);
1107 if (NULL == mpage->mlinks) {
1108 mpage = ohash_next(&mpages, &pslot);
1109 continue;
1110 }
1111
1112 name_mask = NAME_MASK;
1113 ohash_init(&names, 4, &str_info);
1114 ohash_init(&strings, 6, &str_info);
1115 mparse_reset(mp);
1116 mdoc = NULL;
1117 man = NULL;
1118 sodest = NULL;
1119 child_pid = 0;
1120 fd[0] = -1;
1121 fd[1] = -1;
1122
1123 if (mpage->mlinks->gzip) {
1124 if (-1 == pipe(fd)) {
1125 exitcode = (int)MANDOCLEVEL_SYSERR;
1126 say(mpage->mlinks->file, "&pipe gunzip");
1127 goto nextpage;
1128 }
1129 switch (child_pid = fork()) {
1130 case -1:
1131 exitcode = (int)MANDOCLEVEL_SYSERR;
1132 say(mpage->mlinks->file, "&fork gunzip");
1133 child_pid = 0;
1134 close(fd[1]);
1135 close(fd[0]);
1136 goto nextpage;
1137 case 0:
1138 close(fd[0]);
1139 if (-1 == dup2(fd[1], STDOUT_FILENO)) {
1140 say(mpage->mlinks->file,
1141 "&dup gunzip");
1142 exit(1);
1143 }
1144 execlp("gunzip", "gunzip", "-c",
1145 mpage->mlinks->file, NULL);
1146 say(mpage->mlinks->file, "&exec gunzip");
1147 exit(1);
1148 default:
1149 close(fd[1]);
1150 break;
1151 }
1152 }
1153
1154 /*
1155 * Try interpreting the file as mdoc(7) or man(7)
1156 * source code, unless it is already known to be
1157 * formatted. Fall back to formatted mode.
1158 */
1159 if (FORM_CAT != mpage->mlinks->dform ||
1160 FORM_CAT != mpage->mlinks->fform) {
1161 lvl = mparse_readfd(mp, fd[0], mpage->mlinks->file);
1162 if (lvl < MANDOCLEVEL_FATAL)
1163 mparse_result(mp, &mdoc, &man, &sodest);
1164 }
1165
1166 if (NULL != sodest) {
1167 mlink_dest = ohash_find(&mlinks,
1168 ohash_qlookup(&mlinks, sodest));
1169 if (NULL != mlink_dest) {
1170
1171 /* The .so target exists. */
1172
1173 mpage_dest = mlink_dest->mpage;
1174 mlink = mpage->mlinks;
1175 while (1) {
1176 mlink->mpage = mpage_dest;
1177
1178 /*
1179 * If the target was already
1180 * processed, add the links
1181 * to the database now.
1182 * Otherwise, this will
1183 * happen when we come
1184 * to the target.
1185 */
1186
1187 if (mpage_dest->pageid)
1188 dbadd_mlink(mlink);
1189
1190 if (NULL == mlink->next)
1191 break;
1192 mlink = mlink->next;
1193 }
1194
1195 /* Move all links to the target. */
1196
1197 mlink->next = mlink_dest->next;
1198 mlink_dest->next = mpage->mlinks;
1199 mpage->mlinks = NULL;
1200 }
1201 goto nextpage;
1202 } else if (NULL != mdoc) {
1203 mpage->form = FORM_SRC;
1204 mpage->sec = mdoc_meta(mdoc)->msec;
1205 mpage->sec = mandoc_strdup(
1206 NULL == mpage->sec ? "" : mpage->sec);
1207 mpage->arch = mdoc_meta(mdoc)->arch;
1208 mpage->arch = mandoc_strdup(
1209 NULL == mpage->arch ? "" : mpage->arch);
1210 mpage->title =
1211 mandoc_strdup(mdoc_meta(mdoc)->title);
1212 } else if (NULL != man) {
1213 mpage->form = FORM_SRC;
1214 mpage->sec =
1215 mandoc_strdup(man_meta(man)->msec);
1216 mpage->arch =
1217 mandoc_strdup(mpage->mlinks->arch);
1218 mpage->title =
1219 mandoc_strdup(man_meta(man)->title);
1220 } else {
1221 mpage->form = FORM_CAT;
1222 mpage->sec =
1223 mandoc_strdup(mpage->mlinks->dsec);
1224 mpage->arch =
1225 mandoc_strdup(mpage->mlinks->arch);
1226 mpage->title =
1227 mandoc_strdup(mpage->mlinks->name);
1228 }
1229 putkey(mpage, mpage->sec, TYPE_sec);
1230 putkey(mpage, '\0' == *mpage->arch ?
1231 any : mpage->arch, TYPE_arch);
1232
1233 for (mlink = mpage->mlinks; mlink; mlink = mlink->next) {
1234 if ('\0' != *mlink->dsec)
1235 putkey(mpage, mlink->dsec, TYPE_sec);
1236 if ('\0' != *mlink->fsec)
1237 putkey(mpage, mlink->fsec, TYPE_sec);
1238 putkey(mpage, '\0' == *mlink->arch ?
1239 any : mlink->arch, TYPE_arch);
1240 putkey(mpage, mlink->name, NAME_FILE);
1241 }
1242
1243 assert(NULL == mpage->desc);
1244 if (NULL != mdoc) {
1245 if (NULL != (cp = mdoc_meta(mdoc)->name))
1246 putkey(mpage, cp, NAME_HEAD);
1247 parse_mdoc(mpage, mdoc_node(mdoc));
1248 } else if (NULL != man)
1249 parse_man(mpage, man_node(man));
1250 else
1251 parse_cat(mpage, fd[0]);
1252 if (NULL == mpage->desc)
1253 mpage->desc = mandoc_strdup(mpage->mlinks->name);
1254
1255 if (warnings && !use_all)
1256 for (mlink = mpage->mlinks; mlink;
1257 mlink = mlink->next)
1258 mlink_check(mpage, mlink);
1259
1260 dbadd(mpage, mc);
1261
1262 nextpage:
1263 if (child_pid) {
1264 if (-1 == waitpid(child_pid, &status, 0)) {
1265 exitcode = (int)MANDOCLEVEL_SYSERR;
1266 say(mpage->mlinks->file, "&wait gunzip");
1267 } else if (WIFSIGNALED(status)) {
1268 exitcode = (int)MANDOCLEVEL_SYSERR;
1269 say(mpage->mlinks->file,
1270 "gunzip died from signal %d",
1271 WTERMSIG(status));
1272 } else if (WEXITSTATUS(status)) {
1273 exitcode = (int)MANDOCLEVEL_SYSERR;
1274 say(mpage->mlinks->file,
1275 "gunzip failed with code %d",
1276 WEXITSTATUS(status));
1277 }
1278 }
1279 ohash_delete(&strings);
1280 ohash_delete(&names);
1281 mpage = ohash_next(&mpages, &pslot);
1282 }
1283
1284 if (0 == nodb)
1285 SQL_EXEC("END TRANSACTION");
1286 }
1287
1288 static void
1289 names_check(void)
1290 {
1291 sqlite3_stmt *stmt;
1292 const char *name, *sec, *arch, *key;
1293 int irc;
1294
1295 sqlite3_prepare_v2(db,
1296 "SELECT name, sec, arch, key FROM ("
1297 "SELECT name AS key, pageid FROM names "
1298 "WHERE bits & ? AND NOT EXISTS ("
1299 "SELECT pageid FROM mlinks "
1300 "WHERE mlinks.pageid == names.pageid "
1301 "AND mlinks.name == names.name"
1302 ")"
1303 ") JOIN ("
1304 "SELECT sec, arch, name, pageid FROM mlinks "
1305 "GROUP BY pageid"
1306 ") USING (pageid);",
1307 -1, &stmt, NULL);
1308
1309 if (SQLITE_OK != sqlite3_bind_int64(stmt, 1, NAME_TITLE))
1310 say("", "%s", sqlite3_errmsg(db));
1311
1312 while (SQLITE_ROW == (irc = sqlite3_step(stmt))) {
1313 name = (const char *)sqlite3_column_text(stmt, 0);
1314 sec = (const char *)sqlite3_column_text(stmt, 1);
1315 arch = (const char *)sqlite3_column_text(stmt, 2);
1316 key = (const char *)sqlite3_column_text(stmt, 3);
1317 say("", "%s(%s%s%s) lacks mlink \"%s\"", name, sec,
1318 '\0' == *arch ? "" : "/",
1319 '\0' == *arch ? "" : arch, key);
1320 }
1321 sqlite3_finalize(stmt);
1322 }
1323
1324 static void
1325 parse_cat(struct mpage *mpage, int fd)
1326 {
1327 FILE *stream;
1328 char *line, *p, *title;
1329 size_t len, plen, titlesz;
1330
1331 stream = (-1 == fd) ?
1332 fopen(mpage->mlinks->file, "r") :
1333 fdopen(fd, "r");
1334 if (NULL == stream) {
1335 if (warnings)
1336 say(mpage->mlinks->file, "&fopen");
1337 return;
1338 }
1339
1340 /* Skip to first blank line. */
1341
1342 while (NULL != (line = fgetln(stream, &len)))
1343 if ('\n' == *line)
1344 break;
1345
1346 /*
1347 * Assume the first line that is not indented
1348 * is the first section header. Skip to it.
1349 */
1350
1351 while (NULL != (line = fgetln(stream, &len)))
1352 if ('\n' != *line && ' ' != *line)
1353 break;
1354
1355 /*
1356 * Read up until the next section into a buffer.
1357 * Strip the leading and trailing newline from each read line,
1358 * appending a trailing space.
1359 * Ignore empty (whitespace-only) lines.
1360 */
1361
1362 titlesz = 0;
1363 title = NULL;
1364
1365 while (NULL != (line = fgetln(stream, &len))) {
1366 if (' ' != *line || '\n' != line[len - 1])
1367 break;
1368 while (len > 0 && isspace((unsigned char)*line)) {
1369 line++;
1370 len--;
1371 }
1372 if (1 == len)
1373 continue;
1374 title = mandoc_realloc(title, titlesz + len);
1375 memcpy(title + titlesz, line, len);
1376 titlesz += len;
1377 title[titlesz - 1] = ' ';
1378 }
1379
1380 /*
1381 * If no page content can be found, or the input line
1382 * is already the next section header, or there is no
1383 * trailing newline, reuse the page title as the page
1384 * description.
1385 */
1386
1387 if (NULL == title || '\0' == *title) {
1388 if (warnings)
1389 say(mpage->mlinks->file,
1390 "Cannot find NAME section");
1391 fclose(stream);
1392 free(title);
1393 return;
1394 }
1395
1396 title = mandoc_realloc(title, titlesz + 1);
1397 title[titlesz] = '\0';
1398
1399 /*
1400 * Skip to the first dash.
1401 * Use the remaining line as the description (no more than 70
1402 * bytes).
1403 */
1404
1405 if (NULL != (p = strstr(title, "- "))) {
1406 for (p += 2; ' ' == *p || '\b' == *p; p++)
1407 /* Skip to next word. */ ;
1408 } else {
1409 if (warnings)
1410 say(mpage->mlinks->file,
1411 "No dash in title line");
1412 p = title;
1413 }
1414
1415 plen = strlen(p);
1416
1417 /* Strip backspace-encoding from line. */
1418
1419 while (NULL != (line = memchr(p, '\b', plen))) {
1420 len = line - p;
1421 if (0 == len) {
1422 memmove(line, line + 1, plen--);
1423 continue;
1424 }
1425 memmove(line - 1, line + 1, plen - len);
1426 plen -= 2;
1427 }
1428
1429 mpage->desc = mandoc_strdup(p);
1430 fclose(stream);
1431 free(title);
1432 }
1433
1434 /*
1435 * Put a type/word pair into the word database for this particular file.
1436 */
1437 static void
1438 putkey(const struct mpage *mpage, char *value, uint64_t type)
1439 {
1440 char *cp;
1441
1442 assert(NULL != value);
1443 if (TYPE_arch == type)
1444 for (cp = value; *cp; cp++)
1445 if (isupper((unsigned char)*cp))
1446 *cp = _tolower((unsigned char)*cp);
1447 putkeys(mpage, value, strlen(value), type);
1448 }
1449
1450 /*
1451 * Grok all nodes at or below a certain mdoc node into putkey().
1452 */
1453 static void
1454 putmdockey(const struct mpage *mpage,
1455 const struct mdoc_node *n, uint64_t m)
1456 {
1457
1458 for ( ; NULL != n; n = n->next) {
1459 if (NULL != n->child)
1460 putmdockey(mpage, n->child, m);
1461 if (MDOC_TEXT == n->type)
1462 putkey(mpage, n->string, m);
1463 }
1464 }
1465
1466 static void
1467 parse_man(struct mpage *mpage, const struct man_node *n)
1468 {
1469 const struct man_node *head, *body;
1470 char *start, *title;
1471 char byte;
1472 size_t sz;
1473
1474 if (NULL == n)
1475 return;
1476
1477 /*
1478 * We're only searching for one thing: the first text child in
1479 * the BODY of a NAME section. Since we don't keep track of
1480 * sections in -man, run some hoops to find out whether we're in
1481 * the correct section or not.
1482 */
1483
1484 if (MAN_BODY == n->type && MAN_SH == n->tok) {
1485 body = n;
1486 assert(body->parent);
1487 if (NULL != (head = body->parent->head) &&
1488 1 == head->nchild &&
1489 NULL != (head = (head->child)) &&
1490 MAN_TEXT == head->type &&
1491 0 == strcmp(head->string, "NAME") &&
1492 NULL != body->child) {
1493
1494 /*
1495 * Suck the entire NAME section into memory.
1496 * Yes, we might run away.
1497 * But too many manuals have big, spread-out
1498 * NAME sections over many lines.
1499 */
1500
1501 title = NULL;
1502 man_deroff(&title, body);
1503 if (NULL == title)
1504 return;
1505
1506 /*
1507 * Go through a special heuristic dance here.
1508 * Conventionally, one or more manual names are
1509 * comma-specified prior to a whitespace, then a
1510 * dash, then a description. Try to puzzle out
1511 * the name parts here.
1512 */
1513
1514 start = title;
1515 for ( ;; ) {
1516 sz = strcspn(start, " ,");
1517 if ('\0' == start[sz])
1518 break;
1519
1520 byte = start[sz];
1521 start[sz] = '\0';
1522
1523 /*
1524 * Assume a stray trailing comma in the
1525 * name list if a name begins with a dash.
1526 */
1527
1528 if ('-' == start[0] ||
1529 ('\\' == start[0] && '-' == start[1]))
1530 break;
1531
1532 putkey(mpage, start, NAME_TITLE);
1533
1534 if (' ' == byte) {
1535 start += sz + 1;
1536 break;
1537 }
1538
1539 assert(',' == byte);
1540 start += sz + 1;
1541 while (' ' == *start)
1542 start++;
1543 }
1544
1545 if (start == title) {
1546 putkey(mpage, start, NAME_TITLE);
1547 free(title);
1548 return;
1549 }
1550
1551 while (isspace((unsigned char)*start))
1552 start++;
1553
1554 if (0 == strncmp(start, "-", 1))
1555 start += 1;
1556 else if (0 == strncmp(start, "\\-\\-", 4))
1557 start += 4;
1558 else if (0 == strncmp(start, "\\-", 2))
1559 start += 2;
1560 else if (0 == strncmp(start, "\\(en", 4))
1561 start += 4;
1562 else if (0 == strncmp(start, "\\(em", 4))
1563 start += 4;
1564
1565 while (' ' == *start)
1566 start++;
1567
1568 mpage->desc = mandoc_strdup(start);
1569 free(title);
1570 return;
1571 }
1572 }
1573
1574 for (n = n->child; n; n = n->next) {
1575 if (NULL != mpage->desc)
1576 break;
1577 parse_man(mpage, n);
1578 }
1579 }
1580
1581 static void
1582 parse_mdoc(struct mpage *mpage, const struct mdoc_node *n)
1583 {
1584
1585 assert(NULL != n);
1586 for (n = n->child; NULL != n; n = n->next) {
1587 switch (n->type) {
1588 case MDOC_ELEM:
1589 /* FALLTHROUGH */
1590 case MDOC_BLOCK:
1591 /* FALLTHROUGH */
1592 case MDOC_HEAD:
1593 /* FALLTHROUGH */
1594 case MDOC_BODY:
1595 /* FALLTHROUGH */
1596 case MDOC_TAIL:
1597 if (NULL != mdocs[n->tok].fp)
1598 if (0 == (*mdocs[n->tok].fp)(mpage, n))
1599 break;
1600 if (mdocs[n->tok].mask)
1601 putmdockey(mpage, n->child,
1602 mdocs[n->tok].mask);
1603 break;
1604 default:
1605 assert(MDOC_ROOT != n->type);
1606 continue;
1607 }
1608 if (NULL != n->child)
1609 parse_mdoc(mpage, n);
1610 }
1611 }
1612
1613 static int
1614 parse_mdoc_Fd(struct mpage *mpage, const struct mdoc_node *n)
1615 {
1616 const char *start, *end;
1617 size_t sz;
1618
1619 if (SEC_SYNOPSIS != n->sec ||
1620 NULL == (n = n->child) ||
1621 MDOC_TEXT != n->type)
1622 return(0);
1623
1624 /*
1625 * Only consider those `Fd' macro fields that begin with an
1626 * "inclusion" token (versus, e.g., #define).
1627 */
1628
1629 if (strcmp("#include", n->string))
1630 return(0);
1631
1632 if (NULL == (n = n->next) || MDOC_TEXT != n->type)
1633 return(0);
1634
1635 /*
1636 * Strip away the enclosing angle brackets and make sure we're
1637 * not zero-length.
1638 */
1639
1640 start = n->string;
1641 if ('<' == *start || '"' == *start)
1642 start++;
1643
1644 if (0 == (sz = strlen(start)))
1645 return(0);
1646
1647 end = &start[(int)sz - 1];
1648 if ('>' == *end || '"' == *end)
1649 end--;
1650
1651 if (end > start)
1652 putkeys(mpage, start, end - start + 1, TYPE_In);
1653 return(0);
1654 }
1655
1656 static int
1657 parse_mdoc_Fn(struct mpage *mpage, const struct mdoc_node *n)
1658 {
1659 char *cp;
1660
1661 if (NULL == (n = n->child) || MDOC_TEXT != n->type)
1662 return(0);
1663
1664 /*
1665 * Parse: .Fn "struct type *name" "char *arg".
1666 * First strip away pointer symbol.
1667 * Then store the function name, then type.
1668 * Finally, store the arguments.
1669 */
1670
1671 if (NULL == (cp = strrchr(n->string, ' ')))
1672 cp = n->string;
1673
1674 while ('*' == *cp)
1675 cp++;
1676
1677 putkey(mpage, cp, TYPE_Fn);
1678
1679 if (n->string < cp)
1680 putkeys(mpage, n->string, cp - n->string, TYPE_Ft);
1681
1682 for (n = n->next; NULL != n; n = n->next)
1683 if (MDOC_TEXT == n->type)
1684 putkey(mpage, n->string, TYPE_Fa);
1685
1686 return(0);
1687 }
1688
1689 static int
1690 parse_mdoc_Xr(struct mpage *mpage, const struct mdoc_node *n)
1691 {
1692 char *cp;
1693
1694 if (NULL == (n = n->child))
1695 return(0);
1696
1697 if (NULL == n->next) {
1698 putkey(mpage, n->string, TYPE_Xr);
1699 return(0);
1700 }
1701
1702 mandoc_asprintf(&cp, "%s(%s)", n->string, n->next->string);
1703 putkey(mpage, cp, TYPE_Xr);
1704 free(cp);
1705 return(0);
1706 }
1707
1708 static int
1709 parse_mdoc_Nd(struct mpage *mpage, const struct mdoc_node *n)
1710 {
1711
1712 if (MDOC_BODY == n->type)
1713 mdoc_deroff(&mpage->desc, n);
1714 return(0);
1715 }
1716
1717 static int
1718 parse_mdoc_Nm(struct mpage *mpage, const struct mdoc_node *n)
1719 {
1720
1721 if (SEC_NAME == n->sec)
1722 putmdockey(mpage, n->child, NAME_TITLE);
1723 else if (SEC_SYNOPSIS == n->sec && MDOC_HEAD == n->type)
1724 putmdockey(mpage, n->child, NAME_SYN);
1725 return(0);
1726 }
1727
1728 static int
1729 parse_mdoc_Sh(struct mpage *mpage, const struct mdoc_node *n)
1730 {
1731
1732 return(SEC_CUSTOM == n->sec && MDOC_HEAD == n->type);
1733 }
1734
1735 static int
1736 parse_mdoc_head(struct mpage *mpage, const struct mdoc_node *n)
1737 {
1738
1739 return(MDOC_HEAD == n->type);
1740 }
1741
1742 static int
1743 parse_mdoc_body(struct mpage *mpage, const struct mdoc_node *n)
1744 {
1745
1746 return(MDOC_BODY == n->type);
1747 }
1748
1749 /*
1750 * Add a string to the hash table for the current manual.
1751 * Each string has a bitmask telling which macros it belongs to.
1752 * When we finish the manual, we'll dump the table.
1753 */
1754 static void
1755 putkeys(const struct mpage *mpage,
1756 const char *cp, size_t sz, uint64_t v)
1757 {
1758 struct ohash *htab;
1759 struct str *s;
1760 const char *end;
1761 unsigned int slot;
1762 int i;
1763
1764 if (0 == sz)
1765 return;
1766
1767 if (TYPE_Nm & v) {
1768 htab = &names;
1769 v &= name_mask;
1770 name_mask &= ~NAME_FIRST;
1771 if (debug > 1)
1772 say(mpage->mlinks->file,
1773 "Adding name %*s", sz, cp);
1774 } else {
1775 htab = &strings;
1776 if (debug > 1)
1777 for (i = 0; i < mansearch_keymax; i++)
1778 if (1 << i & v)
1779 say(mpage->mlinks->file,
1780 "Adding key %s=%*s",
1781 mansearch_keynames[i], sz, cp);
1782 }
1783
1784 end = cp + sz;
1785 slot = ohash_qlookupi(htab, cp, &end);
1786 s = ohash_find(htab, slot);
1787
1788 if (NULL != s && mpage == s->mpage) {
1789 s->mask |= v;
1790 return;
1791 } else if (NULL == s) {
1792 s = mandoc_calloc(1, sizeof(struct str) + sz + 1);
1793 memcpy(s->key, cp, sz);
1794 ohash_insert(htab, slot, s);
1795 }
1796 s->mpage = mpage;
1797 s->mask = v;
1798 }
1799
1800 /*
1801 * Take a Unicode codepoint and produce its UTF-8 encoding.
1802 * This isn't the best way to do this, but it works.
1803 * The magic numbers are from the UTF-8 packaging.
1804 * They're not as scary as they seem: read the UTF-8 spec for details.
1805 */
1806 static size_t
1807 utf8(unsigned int cp, char out[7])
1808 {
1809 size_t rc;
1810
1811 rc = 0;
1812 if (cp <= 0x0000007F) {
1813 rc = 1;
1814 out[0] = (char)cp;
1815 } else if (cp <= 0x000007FF) {
1816 rc = 2;
1817 out[0] = (cp >> 6 & 31) | 192;
1818 out[1] = (cp & 63) | 128;
1819 } else if (cp <= 0x0000FFFF) {
1820 rc = 3;
1821 out[0] = (cp >> 12 & 15) | 224;
1822 out[1] = (cp >> 6 & 63) | 128;
1823 out[2] = (cp & 63) | 128;
1824 } else if (cp <= 0x001FFFFF) {
1825 rc = 4;
1826 out[0] = (cp >> 18 & 7) | 240;
1827 out[1] = (cp >> 12 & 63) | 128;
1828 out[2] = (cp >> 6 & 63) | 128;
1829 out[3] = (cp & 63) | 128;
1830 } else if (cp <= 0x03FFFFFF) {
1831 rc = 5;
1832 out[0] = (cp >> 24 & 3) | 248;
1833 out[1] = (cp >> 18 & 63) | 128;
1834 out[2] = (cp >> 12 & 63) | 128;
1835 out[3] = (cp >> 6 & 63) | 128;
1836 out[4] = (cp & 63) | 128;
1837 } else if (cp <= 0x7FFFFFFF) {
1838 rc = 6;
1839 out[0] = (cp >> 30 & 1) | 252;
1840 out[1] = (cp >> 24 & 63) | 128;
1841 out[2] = (cp >> 18 & 63) | 128;
1842 out[3] = (cp >> 12 & 63) | 128;
1843 out[4] = (cp >> 6 & 63) | 128;
1844 out[5] = (cp & 63) | 128;
1845 } else
1846 return(0);
1847
1848 out[rc] = '\0';
1849 return(rc);
1850 }
1851
1852 /*
1853 * Store the rendered version of a key, or alias the pointer
1854 * if the key contains no escape sequences.
1855 */
1856 static void
1857 render_key(struct mchars *mc, struct str *key)
1858 {
1859 size_t sz, bsz, pos;
1860 char utfbuf[7], res[6];
1861 char *buf;
1862 const char *seq, *cpp, *val;
1863 int len, u;
1864 enum mandoc_esc esc;
1865
1866 assert(NULL == key->rendered);
1867
1868 res[0] = '\\';
1869 res[1] = '\t';
1870 res[2] = ASCII_NBRSP;
1871 res[3] = ASCII_HYPH;
1872 res[4] = ASCII_BREAK;
1873 res[5] = '\0';
1874
1875 val = key->key;
1876 bsz = strlen(val);
1877
1878 /*
1879 * Pre-check: if we have no stop-characters, then set the
1880 * pointer as ourselvse and get out of here.
1881 */
1882 if (strcspn(val, res) == bsz) {
1883 key->rendered = key->key;
1884 return;
1885 }
1886
1887 /* Pre-allocate by the length of the input */
1888
1889 buf = mandoc_malloc(++bsz);
1890 pos = 0;
1891
1892 while ('\0' != *val) {
1893 /*
1894 * Halt on the first escape sequence.
1895 * This also halts on the end of string, in which case
1896 * we just copy, fallthrough, and exit the loop.
1897 */
1898 if ((sz = strcspn(val, res)) > 0) {
1899 memcpy(&buf[pos], val, sz);
1900 pos += sz;
1901 val += sz;
1902 }
1903
1904 switch (*val) {
1905 case ASCII_HYPH:
1906 buf[pos++] = '-';
1907 val++;
1908 continue;
1909 case '\t':
1910 /* FALLTHROUGH */
1911 case ASCII_NBRSP:
1912 buf[pos++] = ' ';
1913 val++;
1914 /* FALLTHROUGH */
1915 case ASCII_BREAK:
1916 continue;
1917 default:
1918 break;
1919 }
1920 if ('\\' != *val)
1921 break;
1922
1923 /* Read past the slash. */
1924
1925 val++;
1926
1927 /*
1928 * Parse the escape sequence and see if it's a
1929 * predefined character or special character.
1930 */
1931
1932 esc = mandoc_escape((const char **)&val,
1933 &seq, &len);
1934 if (ESCAPE_ERROR == esc)
1935 break;
1936 if (ESCAPE_SPECIAL != esc)
1937 continue;
1938
1939 /*
1940 * Render the special character
1941 * as either UTF-8 or ASCII.
1942 */
1943
1944 if (write_utf8) {
1945 if (0 == (u = mchars_spec2cp(mc, seq, len)))
1946 continue;
1947 cpp = utfbuf;
1948 if (0 == (sz = utf8(u, utfbuf)))
1949 continue;
1950 sz = strlen(cpp);
1951 } else {
1952 cpp = mchars_spec2str(mc, seq, len, &sz);
1953 if (NULL == cpp)
1954 continue;
1955 if (ASCII_NBRSP == *cpp) {
1956 cpp = " ";
1957 sz = 1;
1958 }
1959 }
1960
1961 /* Copy the rendered glyph into the stream. */
1962
1963 bsz += sz;
1964 buf = mandoc_realloc(buf, bsz);
1965 memcpy(&buf[pos], cpp, sz);
1966 pos += sz;
1967 }
1968
1969 buf[pos] = '\0';
1970 key->rendered = buf;
1971 }
1972
1973 static void
1974 dbadd_mlink(const struct mlink *mlink)
1975 {
1976 size_t i;
1977
1978 i = 1;
1979 SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->dsec);
1980 SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->arch);
1981 SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->name);
1982 SQL_BIND_INT64(stmts[STMT_INSERT_LINK], i, mlink->mpage->pageid);
1983 SQL_STEP(stmts[STMT_INSERT_LINK]);
1984 sqlite3_reset(stmts[STMT_INSERT_LINK]);
1985 }
1986
1987 /*
1988 * Flush the current page's terms (and their bits) into the database.
1989 * Wrap the entire set of additions in a transaction to make sqlite be a
1990 * little faster.
1991 * Also, handle escape sequences at the last possible moment.
1992 */
1993 static void
1994 dbadd(struct mpage *mpage, struct mchars *mc)
1995 {
1996 struct mlink *mlink;
1997 struct str *key;
1998 size_t i;
1999 unsigned int slot;
2000
2001 mlink = mpage->mlinks;
2002
2003 if (nodb) {
2004 for (key = ohash_first(&names, &slot); NULL != key;
2005 key = ohash_next(&names, &slot)) {
2006 if (key->rendered != key->key)
2007 free(key->rendered);
2008 free(key);
2009 }
2010 for (key = ohash_first(&strings, &slot); NULL != key;
2011 key = ohash_next(&strings, &slot)) {
2012 if (key->rendered != key->key)
2013 free(key->rendered);
2014 free(key);
2015 }
2016 if (0 == debug)
2017 return;
2018 while (NULL != mlink) {
2019 fputs(mlink->name, stdout);
2020 if (NULL == mlink->next ||
2021 strcmp(mlink->dsec, mlink->next->dsec) ||
2022 strcmp(mlink->fsec, mlink->next->fsec) ||
2023 strcmp(mlink->arch, mlink->next->arch)) {
2024 putchar('(');
2025 if ('\0' == *mlink->dsec)
2026 fputs(mlink->fsec, stdout);
2027 else
2028 fputs(mlink->dsec, stdout);
2029 if ('\0' != *mlink->arch)
2030 printf("/%s", mlink->arch);
2031 putchar(')');
2032 }
2033 mlink = mlink->next;
2034 if (NULL != mlink)
2035 fputs(", ", stdout);
2036 }
2037 printf(" - %s\n", mpage->desc);
2038 return;
2039 }
2040
2041 if (debug)
2042 say(mlink->file, "Adding to database");
2043
2044 i = strlen(mpage->desc) + 1;
2045 key = mandoc_calloc(1, sizeof(struct str) + i);
2046 memcpy(key->key, mpage->desc, i);
2047 render_key(mc, key);
2048
2049 i = 1;
2050 SQL_BIND_TEXT(stmts[STMT_INSERT_PAGE], i, key->rendered);
2051 SQL_BIND_INT(stmts[STMT_INSERT_PAGE], i, FORM_SRC == mpage->form);
2052 SQL_STEP(stmts[STMT_INSERT_PAGE]);
2053 mpage->pageid = sqlite3_last_insert_rowid(db);
2054 sqlite3_reset(stmts[STMT_INSERT_PAGE]);
2055
2056 if (key->rendered != key->key)
2057 free(key->rendered);
2058 free(key);
2059
2060 while (NULL != mlink) {
2061 dbadd_mlink(mlink);
2062 mlink = mlink->next;
2063 }
2064 mlink = mpage->mlinks;
2065
2066 for (key = ohash_first(&names, &slot); NULL != key;
2067 key = ohash_next(&names, &slot)) {
2068 assert(key->mpage == mpage);
2069 if (NULL == key->rendered)
2070 render_key(mc, key);
2071 i = 1;
2072 SQL_BIND_INT64(stmts[STMT_INSERT_NAME], i, key->mask);
2073 SQL_BIND_TEXT(stmts[STMT_INSERT_NAME], i, key->rendered);
2074 SQL_BIND_INT64(stmts[STMT_INSERT_NAME], i, mpage->pageid);
2075 SQL_STEP(stmts[STMT_INSERT_NAME]);
2076 sqlite3_reset(stmts[STMT_INSERT_NAME]);
2077 if (key->rendered != key->key)
2078 free(key->rendered);
2079 free(key);
2080 }
2081 for (key = ohash_first(&strings, &slot); NULL != key;
2082 key = ohash_next(&strings, &slot)) {
2083 assert(key->mpage == mpage);
2084 if (NULL == key->rendered)
2085 render_key(mc, key);
2086 i = 1;
2087 SQL_BIND_INT64(stmts[STMT_INSERT_KEY], i, key->mask);
2088 SQL_BIND_TEXT(stmts[STMT_INSERT_KEY], i, key->rendered);
2089 SQL_BIND_INT64(stmts[STMT_INSERT_KEY], i, mpage->pageid);
2090 SQL_STEP(stmts[STMT_INSERT_KEY]);
2091 sqlite3_reset(stmts[STMT_INSERT_KEY]);
2092 if (key->rendered != key->key)
2093 free(key->rendered);
2094 free(key);
2095 }
2096 }
2097
2098 static void
2099 dbprune(void)
2100 {
2101 struct mpage *mpage;
2102 struct mlink *mlink;
2103 size_t i;
2104 unsigned int slot;
2105
2106 if (0 == nodb)
2107 SQL_EXEC("BEGIN TRANSACTION");
2108
2109 for (mpage = ohash_first(&mpages, &slot); NULL != mpage;
2110 mpage = ohash_next(&mpages, &slot)) {
2111 mlink = mpage->mlinks;
2112 if (debug)
2113 say(mlink->file, "Deleting from database");
2114 if (nodb)
2115 continue;
2116 for ( ; NULL != mlink; mlink = mlink->next) {
2117 i = 1;
2118 SQL_BIND_TEXT(stmts[STMT_DELETE_PAGE],
2119 i, mlink->dsec);
2120 SQL_BIND_TEXT(stmts[STMT_DELETE_PAGE],
2121 i, mlink->arch);
2122 SQL_BIND_TEXT(stmts[STMT_DELETE_PAGE],
2123 i, mlink->name);
2124 SQL_STEP(stmts[STMT_DELETE_PAGE]);
2125 sqlite3_reset(stmts[STMT_DELETE_PAGE]);
2126 }
2127 }
2128
2129 if (0 == nodb)
2130 SQL_EXEC("END TRANSACTION");
2131 }
2132
2133 /*
2134 * Close an existing database and its prepared statements.
2135 * If "real" is not set, rename the temporary file into the real one.
2136 */
2137 static void
2138 dbclose(int real)
2139 {
2140 size_t i;
2141 int status;
2142 pid_t child;
2143
2144 if (nodb)
2145 return;
2146
2147 for (i = 0; i < STMT__MAX; i++) {
2148 sqlite3_finalize(stmts[i]);
2149 stmts[i] = NULL;
2150 }
2151
2152 sqlite3_close(db);
2153 db = NULL;
2154
2155 if (real)
2156 return;
2157
2158 if ('\0' == *tempfilename) {
2159 if (-1 == rename(MANDOC_DB "~", MANDOC_DB)) {
2160 exitcode = (int)MANDOCLEVEL_SYSERR;
2161 say(MANDOC_DB, "&rename");
2162 }
2163 return;
2164 }
2165
2166 switch (child = fork()) {
2167 case -1:
2168 exitcode = (int)MANDOCLEVEL_SYSERR;
2169 say("", "&fork cmp");
2170 return;
2171 case 0:
2172 execlp("cmp", "cmp", "-s",
2173 tempfilename, MANDOC_DB, NULL);
2174 say("", "&exec cmp");
2175 exit(0);
2176 default:
2177 break;
2178 }
2179 if (-1 == waitpid(child, &status, 0)) {
2180 exitcode = (int)MANDOCLEVEL_SYSERR;
2181 say("", "&wait cmp");
2182 } else if (WIFSIGNALED(status)) {
2183 exitcode = (int)MANDOCLEVEL_SYSERR;
2184 say("", "cmp died from signal %d", WTERMSIG(status));
2185 } else if (WEXITSTATUS(status)) {
2186 exitcode = (int)MANDOCLEVEL_SYSERR;
2187 say(MANDOC_DB,
2188 "Data changed, but cannot replace database");
2189 }
2190
2191 *strrchr(tempfilename, '/') = '\0';
2192 switch (child = fork()) {
2193 case -1:
2194 exitcode = (int)MANDOCLEVEL_SYSERR;
2195 say("", "&fork rm");
2196 return;
2197 case 0:
2198 execlp("rm", "rm", "-rf", tempfilename, NULL);
2199 say("", "&exec rm");
2200 exit((int)MANDOCLEVEL_SYSERR);
2201 default:
2202 break;
2203 }
2204 if (-1 == waitpid(child, &status, 0)) {
2205 exitcode = (int)MANDOCLEVEL_SYSERR;
2206 say("", "&wait rm");
2207 } else if (WIFSIGNALED(status) || WEXITSTATUS(status)) {
2208 exitcode = (int)MANDOCLEVEL_SYSERR;
2209 say("", "%s: Cannot remove temporary directory",
2210 tempfilename);
2211 }
2212 }
2213
2214 /*
2215 * This is straightforward stuff.
2216 * Open a database connection to a "temporary" database, then open a set
2217 * of prepared statements we'll use over and over again.
2218 * If "real" is set, we use the existing database; if not, we truncate a
2219 * temporary one.
2220 * Must be matched by dbclose().
2221 */
2222 static int
2223 dbopen(int real)
2224 {
2225 const char *sql;
2226 int rc, ofl;
2227
2228 if (nodb)
2229 return(1);
2230
2231 *tempfilename = '\0';
2232 ofl = SQLITE_OPEN_READWRITE;
2233
2234 if (real) {
2235 rc = sqlite3_open_v2(MANDOC_DB, &db, ofl, NULL);
2236 if (SQLITE_OK != rc) {
2237 exitcode = (int)MANDOCLEVEL_SYSERR;
2238 if (SQLITE_CANTOPEN != rc)
2239 say(MANDOC_DB, "%s", sqlite3_errstr(rc));
2240 return(0);
2241 }
2242 goto prepare_statements;
2243 }
2244
2245 ofl |= SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE;
2246
2247 remove(MANDOC_DB "~");
2248 rc = sqlite3_open_v2(MANDOC_DB "~", &db, ofl, NULL);
2249 if (SQLITE_OK == rc)
2250 goto create_tables;
2251 if (MPARSE_QUICK & mparse_options) {
2252 exitcode = (int)MANDOCLEVEL_SYSERR;
2253 say(MANDOC_DB "~", "%s", sqlite3_errstr(rc));
2254 return(0);
2255 }
2256
2257 (void)strlcpy(tempfilename, "/tmp/mandocdb.XXXXXX",
2258 sizeof(tempfilename));
2259 if (NULL == mkdtemp(tempfilename)) {
2260 exitcode = (int)MANDOCLEVEL_SYSERR;
2261 say("", "&%s", tempfilename);
2262 return(0);
2263 }
2264 (void)strlcat(tempfilename, "/" MANDOC_DB,
2265 sizeof(tempfilename));
2266 rc = sqlite3_open_v2(tempfilename, &db, ofl, NULL);
2267 if (SQLITE_OK != rc) {
2268 exitcode = (int)MANDOCLEVEL_SYSERR;
2269 say("", "%s: %s", tempfilename, sqlite3_errstr(rc));
2270 return(0);
2271 }
2272
2273 create_tables:
2274 sql = "CREATE TABLE \"mpages\" (\n"
2275 " \"desc\" TEXT NOT NULL,\n"
2276 " \"form\" INTEGER NOT NULL,\n"
2277 " \"pageid\" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL\n"
2278 ");\n"
2279 "\n"
2280 "CREATE TABLE \"mlinks\" (\n"
2281 " \"sec\" TEXT NOT NULL,\n"
2282 " \"arch\" TEXT NOT NULL,\n"
2283 " \"name\" TEXT NOT NULL,\n"
2284 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2285 "ON DELETE CASCADE\n"
2286 ");\n"
2287 "CREATE INDEX mlinks_pageid_idx ON mlinks (pageid);\n"
2288 "\n"
2289 "CREATE TABLE \"names\" (\n"
2290 " \"bits\" INTEGER NOT NULL,\n"
2291 " \"name\" TEXT NOT NULL,\n"
2292 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2293 "ON DELETE CASCADE\n"
2294 ");\n"
2295 "\n"
2296 "CREATE TABLE \"keys\" (\n"
2297 " \"bits\" INTEGER NOT NULL,\n"
2298 " \"key\" TEXT NOT NULL,\n"
2299 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2300 "ON DELETE CASCADE\n"
2301 ");\n"
2302 "CREATE INDEX keys_pageid_idx ON keys (pageid);\n";
2303
2304 if (SQLITE_OK != sqlite3_exec(db, sql, NULL, NULL, NULL)) {
2305 exitcode = (int)MANDOCLEVEL_SYSERR;
2306 say(MANDOC_DB, "%s", sqlite3_errmsg(db));
2307 sqlite3_close(db);
2308 return(0);
2309 }
2310
2311 prepare_statements:
2312 if (SQLITE_OK != sqlite3_exec(db,
2313 "PRAGMA foreign_keys = ON", NULL, NULL, NULL)) {
2314 exitcode = (int)MANDOCLEVEL_SYSERR;
2315 say(MANDOC_DB, "PRAGMA foreign_keys: %s",
2316 sqlite3_errmsg(db));
2317 sqlite3_close(db);
2318 return(0);
2319 }
2320
2321 sql = "DELETE FROM mpages WHERE pageid IN "
2322 "(SELECT pageid FROM mlinks WHERE "
2323 "sec=? AND arch=? AND name=?)";
2324 sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_DELETE_PAGE], NULL);
2325 sql = "INSERT INTO mpages "
2326 "(desc,form) VALUES (?,?)";
2327 sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_PAGE], NULL);
2328 sql = "INSERT INTO mlinks "
2329 "(sec,arch,name,pageid) VALUES (?,?,?,?)";
2330 sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_LINK], NULL);
2331 sql = "INSERT INTO names "
2332 "(bits,name,pageid) VALUES (?,?,?)";
2333 sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_NAME], NULL);
2334 sql = "INSERT INTO keys "
2335 "(bits,key,pageid) VALUES (?,?,?)";
2336 sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_KEY], NULL);
2337
2338 #ifndef __APPLE__
2339 /*
2340 * When opening a new database, we can turn off
2341 * synchronous mode for much better performance.
2342 */
2343
2344 if (real && SQLITE_OK != sqlite3_exec(db,
2345 "PRAGMA synchronous = OFF", NULL, NULL, NULL)) {
2346 exitcode = (int)MANDOCLEVEL_SYSERR;
2347 say(MANDOC_DB, "PRAGMA synchronous: %s",
2348 sqlite3_errmsg(db));
2349 sqlite3_close(db);
2350 return(0);
2351 }
2352 #endif
2353
2354 return(1);
2355 }
2356
2357 static void *
2358 hash_calloc(size_t n, size_t sz, void *arg)
2359 {
2360
2361 return(mandoc_calloc(n, sz));
2362 }
2363
2364 static void *
2365 hash_alloc(size_t sz, void *arg)
2366 {
2367
2368 return(mandoc_malloc(sz));
2369 }
2370
2371 static void
2372 hash_free(void *p, void *arg)
2373 {
2374
2375 free(p);
2376 }
2377
2378 static int
2379 set_basedir(const char *targetdir)
2380 {
2381 static char startdir[PATH_MAX];
2382 static int getcwd_status; /* 1 = ok, 2 = failure */
2383 static int chdir_status; /* 1 = changed directory */
2384 char *cp;
2385
2386 /*
2387 * Remember the original working directory, if possible.
2388 * This will be needed if the second or a later directory
2389 * on the command line is given as a relative path.
2390 * Do not error out if the current directory is not
2391 * searchable: Maybe it won't be needed after all.
2392 */
2393 if (0 == getcwd_status) {
2394 if (NULL == getcwd(startdir, sizeof(startdir))) {
2395 getcwd_status = 2;
2396 (void)strlcpy(startdir, strerror(errno),
2397 sizeof(startdir));
2398 } else
2399 getcwd_status = 1;
2400 }
2401
2402 /*
2403 * We are leaving the old base directory.
2404 * Do not use it any longer, not even for messages.
2405 */
2406 *basedir = '\0';
2407
2408 /*
2409 * If and only if the directory was changed earlier and
2410 * the next directory to process is given as a relative path,
2411 * first go back, or bail out if that is impossible.
2412 */
2413 if (chdir_status && '/' != *targetdir) {
2414 if (2 == getcwd_status) {
2415 exitcode = (int)MANDOCLEVEL_SYSERR;
2416 say("", "getcwd: %s", startdir);
2417 return(0);
2418 }
2419 if (-1 == chdir(startdir)) {
2420 exitcode = (int)MANDOCLEVEL_SYSERR;
2421 say("", "&chdir %s", startdir);
2422 return(0);
2423 }
2424 }
2425
2426 /*
2427 * Always resolve basedir to the canonicalized absolute
2428 * pathname and append a trailing slash, such that
2429 * we can reliably check whether files are inside.
2430 */
2431 if (NULL == realpath(targetdir, basedir)) {
2432 exitcode = (int)MANDOCLEVEL_BADARG;
2433 say("", "&%s: realpath", targetdir);
2434 return(0);
2435 } else if (-1 == chdir(basedir)) {
2436 exitcode = (int)MANDOCLEVEL_BADARG;
2437 say("", "&chdir");
2438 return(0);
2439 }
2440 chdir_status = 1;
2441 cp = strchr(basedir, '\0');
2442 if ('/' != cp[-1]) {
2443 if (cp - basedir >= PATH_MAX - 1) {
2444 exitcode = (int)MANDOCLEVEL_SYSERR;
2445 say("", "Filename too long");
2446 return(0);
2447 }
2448 *cp++ = '/';
2449 *cp = '\0';
2450 }
2451 return(1);
2452 }
2453
2454 static void
2455 say(const char *file, const char *format, ...)
2456 {
2457 va_list ap;
2458 int use_errno;
2459
2460 if ('\0' != *basedir)
2461 fprintf(stderr, "%s", basedir);
2462 if ('\0' != *basedir && '\0' != *file)
2463 fputc('/', stderr);
2464 if ('\0' != *file)
2465 fprintf(stderr, "%s", file);
2466
2467 use_errno = 1;
2468 if (NULL != format) {
2469 switch (*format) {
2470 case '&':
2471 format++;
2472 break;
2473 case '\0':
2474 format = NULL;
2475 break;
2476 default:
2477 use_errno = 0;
2478 break;
2479 }
2480 }
2481 if (NULL != format) {
2482 if ('\0' != *basedir || '\0' != *file)
2483 fputs(": ", stderr);
2484 va_start(ap, format);
2485 vfprintf(stderr, format, ap);
2486 va_end(ap);
2487 }
2488 if (use_errno) {
2489 if ('\0' != *basedir || '\0' != *file || NULL != format)
2490 fputs(": ", stderr);
2491 perror(NULL);
2492 } else
2493 fputc('\n', stderr);
2494 }