]>
git.cameronkatri.com Git - mandoc.git/blob - mandocdb.c
1 /* $Id: mandocdb.c,v 1.204 2015/10/20 02:01:31 schwarze Exp $ */
3 * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011-2015 Ingo Schwarze <schwarze@openbsd.org>
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.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS 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.
20 #include <sys/types.h>
32 #include "compat_fts.h"
45 #include "mandoc_aux.h"
46 #include "mandoc_ohash.h"
52 #include "mansearch.h"
54 extern int mansearch_keymax
;
55 extern const char *const mansearch_keynames
[];
57 #define SQL_EXEC(_v) \
58 if (SQLITE_OK != sqlite3_exec(db, (_v), NULL, NULL, NULL)) \
59 say("", "%s: %s", (_v), sqlite3_errmsg(db))
60 #define SQL_BIND_TEXT(_s, _i, _v) \
61 if (SQLITE_OK != sqlite3_bind_text \
62 ((_s), (_i)++, (_v), -1, SQLITE_STATIC)) \
63 say(mlink->file, "%s", sqlite3_errmsg(db))
64 #define SQL_BIND_INT(_s, _i, _v) \
65 if (SQLITE_OK != sqlite3_bind_int \
66 ((_s), (_i)++, (_v))) \
67 say(mlink->file, "%s", sqlite3_errmsg(db))
68 #define SQL_BIND_INT64(_s, _i, _v) \
69 if (SQLITE_OK != sqlite3_bind_int64 \
70 ((_s), (_i)++, (_v))) \
71 say(mlink->file, "%s", sqlite3_errmsg(db))
72 #define SQL_STEP(_s) \
73 if (SQLITE_DONE != sqlite3_step((_s))) \
74 say(mlink->file, "%s", sqlite3_errmsg(db))
77 OP_DEFAULT
= 0, /* new dbs from dir list or default config */
78 OP_CONFFILE
, /* new databases from custom config file */
79 OP_UPDATE
, /* delete/add entries in existing database */
80 OP_DELETE
, /* delete entries from existing database */
81 OP_TEST
/* change no databases, report potential problems */
85 const struct mpage
*mpage
; /* if set, the owning parse */
86 uint64_t mask
; /* bitmask in sequence */
87 char key
[]; /* rendered text */
96 struct inodev inodev
; /* used for hashing routine */
97 int64_t pageid
; /* pageid in mpages SQL table */
98 char *sec
; /* section from file content */
99 char *arch
; /* architecture from file content */
100 char *title
; /* title from file content */
101 char *desc
; /* description from file content */
102 struct mlink
*mlinks
; /* singly linked list */
103 int form
; /* format from file content */
108 char file
[PATH_MAX
]; /* filename rel. to manpath */
109 char *dsec
; /* section from directory */
110 char *arch
; /* architecture from directory */
111 char *name
; /* name from file name (not empty) */
112 char *fsec
; /* section from file name suffix */
113 struct mlink
*next
; /* singly linked list */
114 struct mpage
*mpage
; /* parent */
115 int dform
; /* format from directory */
116 int fform
; /* format from file name suffix */
117 int gzip
; /* filename has a .gz suffix */
121 STMT_DELETE_PAGE
= 0, /* delete mpage */
122 STMT_INSERT_PAGE
, /* insert mpage */
123 STMT_INSERT_LINK
, /* insert mlink */
124 STMT_INSERT_NAME
, /* insert name */
125 STMT_SELECT_NAME
, /* retrieve existing name flags */
126 STMT_INSERT_KEY
, /* insert parsed key */
130 typedef int (*mdoc_fp
)(struct mpage
*, const struct roff_meta
*,
131 const struct roff_node
*);
133 struct mdoc_handler
{
134 mdoc_fp fp
; /* optional handler */
135 uint64_t mask
; /* set unless handler returns 0 */
138 static void dbclose(int);
139 static void dbadd(struct mpage
*);
140 static void dbadd_mlink(const struct mlink
*mlink
);
141 static void dbadd_mlink_name(const struct mlink
*mlink
);
142 static int dbopen(int);
143 static void dbprune(void);
144 static void filescan(const char *);
145 static void mlink_add(struct mlink
*, const struct stat
*);
146 static void mlink_check(struct mpage
*, struct mlink
*);
147 static void mlink_free(struct mlink
*);
148 static void mlinks_undupe(struct mpage
*);
149 static void mpages_free(void);
150 static void mpages_merge(struct mparse
*);
151 static void names_check(void);
152 static void parse_cat(struct mpage
*, int);
153 static void parse_man(struct mpage
*, const struct roff_meta
*,
154 const struct roff_node
*);
155 static void parse_mdoc(struct mpage
*, const struct roff_meta
*,
156 const struct roff_node
*);
157 static int parse_mdoc_body(struct mpage
*, const struct roff_meta
*,
158 const struct roff_node
*);
159 static int parse_mdoc_head(struct mpage
*, const struct roff_meta
*,
160 const struct roff_node
*);
161 static int parse_mdoc_Fd(struct mpage
*, const struct roff_meta
*,
162 const struct roff_node
*);
163 static void parse_mdoc_fname(struct mpage
*, const struct roff_node
*);
164 static int parse_mdoc_Fn(struct mpage
*, const struct roff_meta
*,
165 const struct roff_node
*);
166 static int parse_mdoc_Fo(struct mpage
*, const struct roff_meta
*,
167 const struct roff_node
*);
168 static int parse_mdoc_Nd(struct mpage
*, const struct roff_meta
*,
169 const struct roff_node
*);
170 static int parse_mdoc_Nm(struct mpage
*, const struct roff_meta
*,
171 const struct roff_node
*);
172 static int parse_mdoc_Sh(struct mpage
*, const struct roff_meta
*,
173 const struct roff_node
*);
174 static int parse_mdoc_Xr(struct mpage
*, const struct roff_meta
*,
175 const struct roff_node
*);
176 static void putkey(const struct mpage
*, char *, uint64_t);
177 static void putkeys(const struct mpage
*, char *, size_t, uint64_t);
178 static void putmdockey(const struct mpage
*,
179 const struct roff_node
*, uint64_t);
180 static int render_string(char **, size_t *);
181 static void say(const char *, const char *, ...);
182 static int set_basedir(const char *, int);
183 static int treescan(void);
184 static size_t utf8(unsigned int, char [7]);
186 extern char *__progname
;
188 static char tempfilename
[32];
189 static int nodb
; /* no database changes */
190 static int mparse_options
; /* abort the parse early */
191 static int use_all
; /* use all found files */
192 static int debug
; /* print what we're doing */
193 static int warnings
; /* warn about crap */
194 static int write_utf8
; /* write UTF-8 output; else ASCII */
195 static int exitcode
; /* to be returned by main */
196 static enum op op
; /* operational mode */
197 static char basedir
[PATH_MAX
]; /* current base directory */
198 static struct ohash mpages
; /* table of distinct manual pages */
199 static struct ohash mlinks
; /* table of directory entries */
200 static struct ohash names
; /* table of all names */
201 static struct ohash strings
; /* table of all strings */
202 static sqlite3
*db
= NULL
; /* current database */
203 static sqlite3_stmt
*stmts
[STMT__MAX
]; /* current statements */
204 static uint64_t name_mask
;
206 static const struct mdoc_handler mdocs
[MDOC_MAX
] = {
207 { NULL
, 0 }, /* Ap */
208 { NULL
, 0 }, /* Dd */
209 { NULL
, 0 }, /* Dt */
210 { NULL
, 0 }, /* Os */
211 { parse_mdoc_Sh
, TYPE_Sh
}, /* Sh */
212 { parse_mdoc_head
, TYPE_Ss
}, /* Ss */
213 { NULL
, 0 }, /* Pp */
214 { NULL
, 0 }, /* D1 */
215 { NULL
, 0 }, /* Dl */
216 { NULL
, 0 }, /* Bd */
217 { NULL
, 0 }, /* Ed */
218 { NULL
, 0 }, /* Bl */
219 { NULL
, 0 }, /* El */
220 { NULL
, 0 }, /* It */
221 { NULL
, 0 }, /* Ad */
222 { NULL
, TYPE_An
}, /* An */
223 { NULL
, TYPE_Ar
}, /* Ar */
224 { NULL
, TYPE_Cd
}, /* Cd */
225 { NULL
, TYPE_Cm
}, /* Cm */
226 { NULL
, TYPE_Dv
}, /* Dv */
227 { NULL
, TYPE_Er
}, /* Er */
228 { NULL
, TYPE_Ev
}, /* Ev */
229 { NULL
, 0 }, /* Ex */
230 { NULL
, TYPE_Fa
}, /* Fa */
231 { parse_mdoc_Fd
, 0 }, /* Fd */
232 { NULL
, TYPE_Fl
}, /* Fl */
233 { parse_mdoc_Fn
, 0 }, /* Fn */
234 { NULL
, TYPE_Ft
}, /* Ft */
235 { NULL
, TYPE_Ic
}, /* Ic */
236 { NULL
, TYPE_In
}, /* In */
237 { NULL
, TYPE_Li
}, /* Li */
238 { parse_mdoc_Nd
, 0 }, /* Nd */
239 { parse_mdoc_Nm
, 0 }, /* Nm */
240 { NULL
, 0 }, /* Op */
241 { NULL
, 0 }, /* Ot */
242 { NULL
, TYPE_Pa
}, /* Pa */
243 { NULL
, 0 }, /* Rv */
244 { NULL
, TYPE_St
}, /* St */
245 { NULL
, TYPE_Va
}, /* Va */
246 { parse_mdoc_body
, TYPE_Va
}, /* Vt */
247 { parse_mdoc_Xr
, 0 }, /* Xr */
248 { NULL
, 0 }, /* %A */
249 { NULL
, 0 }, /* %B */
250 { NULL
, 0 }, /* %D */
251 { NULL
, 0 }, /* %I */
252 { NULL
, 0 }, /* %J */
253 { NULL
, 0 }, /* %N */
254 { NULL
, 0 }, /* %O */
255 { NULL
, 0 }, /* %P */
256 { NULL
, 0 }, /* %R */
257 { NULL
, 0 }, /* %T */
258 { NULL
, 0 }, /* %V */
259 { NULL
, 0 }, /* Ac */
260 { NULL
, 0 }, /* Ao */
261 { NULL
, 0 }, /* Aq */
262 { NULL
, TYPE_At
}, /* At */
263 { NULL
, 0 }, /* Bc */
264 { NULL
, 0 }, /* Bf */
265 { NULL
, 0 }, /* Bo */
266 { NULL
, 0 }, /* Bq */
267 { NULL
, TYPE_Bsx
}, /* Bsx */
268 { NULL
, TYPE_Bx
}, /* Bx */
269 { NULL
, 0 }, /* Db */
270 { NULL
, 0 }, /* Dc */
271 { NULL
, 0 }, /* Do */
272 { NULL
, 0 }, /* Dq */
273 { NULL
, 0 }, /* Ec */
274 { NULL
, 0 }, /* Ef */
275 { NULL
, TYPE_Em
}, /* Em */
276 { NULL
, 0 }, /* Eo */
277 { NULL
, TYPE_Fx
}, /* Fx */
278 { NULL
, TYPE_Ms
}, /* Ms */
279 { NULL
, 0 }, /* No */
280 { NULL
, 0 }, /* Ns */
281 { NULL
, TYPE_Nx
}, /* Nx */
282 { NULL
, TYPE_Ox
}, /* Ox */
283 { NULL
, 0 }, /* Pc */
284 { NULL
, 0 }, /* Pf */
285 { NULL
, 0 }, /* Po */
286 { NULL
, 0 }, /* Pq */
287 { NULL
, 0 }, /* Qc */
288 { NULL
, 0 }, /* Ql */
289 { NULL
, 0 }, /* Qo */
290 { NULL
, 0 }, /* Qq */
291 { NULL
, 0 }, /* Re */
292 { NULL
, 0 }, /* Rs */
293 { NULL
, 0 }, /* Sc */
294 { NULL
, 0 }, /* So */
295 { NULL
, 0 }, /* Sq */
296 { NULL
, 0 }, /* Sm */
297 { NULL
, 0 }, /* Sx */
298 { NULL
, TYPE_Sy
}, /* Sy */
299 { NULL
, TYPE_Tn
}, /* Tn */
300 { NULL
, 0 }, /* Ux */
301 { NULL
, 0 }, /* Xc */
302 { NULL
, 0 }, /* Xo */
303 { parse_mdoc_Fo
, 0 }, /* Fo */
304 { NULL
, 0 }, /* Fc */
305 { NULL
, 0 }, /* Oo */
306 { NULL
, 0 }, /* Oc */
307 { NULL
, 0 }, /* Bk */
308 { NULL
, 0 }, /* Ek */
309 { NULL
, 0 }, /* Bt */
310 { NULL
, 0 }, /* Hf */
311 { NULL
, 0 }, /* Fr */
312 { NULL
, 0 }, /* Ud */
313 { NULL
, TYPE_Lb
}, /* Lb */
314 { NULL
, 0 }, /* Lp */
315 { NULL
, TYPE_Lk
}, /* Lk */
316 { NULL
, TYPE_Mt
}, /* Mt */
317 { NULL
, 0 }, /* Brq */
318 { NULL
, 0 }, /* Bro */
319 { NULL
, 0 }, /* Brc */
320 { NULL
, 0 }, /* %C */
321 { NULL
, 0 }, /* Es */
322 { NULL
, 0 }, /* En */
323 { NULL
, TYPE_Dx
}, /* Dx */
324 { NULL
, 0 }, /* %Q */
325 { NULL
, 0 }, /* br */
326 { NULL
, 0 }, /* sp */
327 { NULL
, 0 }, /* %U */
328 { NULL
, 0 }, /* Ta */
329 { NULL
, 0 }, /* ll */
334 mandocdb(int argc
, char *argv
[])
338 const char *path_arg
;
342 memset(&conf
, 0, sizeof(conf
));
343 memset(stmts
, 0, STMT__MAX
* sizeof(sqlite3_stmt
*));
346 * We accept a few different invocations.
347 * The CHECKOP macro makes sure that invocation styles don't
348 * clobber each other.
350 #define CHECKOP(_op, _ch) do \
351 if (OP_DEFAULT != (_op)) { \
352 warnx("-%c: Conflicting option", (_ch)); \
354 } while (/*CONSTCOND*/0)
359 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
384 mparse_options
|= MPARSE_QUICK
;
387 if (strcmp(optarg
, "utf8")) {
388 warnx("-T%s: Unsupported output format",
396 dup2(STDOUT_FILENO
, STDERR_FILENO
);
406 /* Compatibility with espie@'s makewhatis. */
415 if (OP_CONFFILE
== op
&& argc
> 0) {
416 warnx("-C: Too many arguments");
420 exitcode
= (int)MANDOCLEVEL_OK
;
422 mp
= mparse_alloc(mparse_options
, MANDOCLEVEL_BADARG
, NULL
, NULL
);
423 mandoc_ohash_init(&mpages
, 6, offsetof(struct mpage
, inodev
));
424 mandoc_ohash_init(&mlinks
, 6, offsetof(struct mlink
, file
));
426 if (OP_UPDATE
== op
|| OP_DELETE
== op
|| OP_TEST
== op
) {
429 * Most of these deal with a specific directory.
430 * Jump into that directory first.
432 if (OP_TEST
!= op
&& 0 == set_basedir(path_arg
, 1))
437 * The existing database is usable. Process
438 * all files specified on the command-line.
441 for (i
= 0; i
< argc
; i
++)
447 * Database missing or corrupt.
448 * Recreate from scratch.
450 exitcode
= (int)MANDOCLEVEL_OK
;
459 dbclose(OP_DEFAULT
== op
? 0 : 1);
462 * If we have arguments, use them as our manpaths.
463 * If we don't, grok from manpath(1) or however else
464 * manconf_parse() wants to do it.
467 conf
.manpath
.paths
= mandoc_reallocarray(NULL
,
468 argc
, sizeof(char *));
469 conf
.manpath
.sz
= (size_t)argc
;
470 for (i
= 0; i
< argc
; i
++)
471 conf
.manpath
.paths
[i
] = mandoc_strdup(argv
[i
]);
473 manconf_parse(&conf
, path_arg
, NULL
, NULL
);
475 if (conf
.manpath
.sz
== 0) {
476 exitcode
= (int)MANDOCLEVEL_BADARG
;
477 say("", "Empty manpath");
481 * First scan the tree rooted at a base directory, then
482 * build a new database and finally move it into place.
483 * Ignore zero-length directories and strip trailing
486 for (j
= 0; j
< conf
.manpath
.sz
; j
++) {
487 sz
= strlen(conf
.manpath
.paths
[j
]);
488 if (sz
&& conf
.manpath
.paths
[j
][sz
- 1] == '/')
489 conf
.manpath
.paths
[j
][--sz
] = '\0';
494 mandoc_ohash_init(&mpages
, 6,
495 offsetof(struct mpage
, inodev
));
496 mandoc_ohash_init(&mlinks
, 6,
497 offsetof(struct mlink
, file
));
500 if ( ! set_basedir(conf
.manpath
.paths
[j
], argc
> 0))
508 if (warnings
&& !nodb
&&
509 ! (MPARSE_QUICK
& mparse_options
))
513 if (j
+ 1 < conf
.manpath
.sz
) {
515 ohash_delete(&mpages
);
516 ohash_delete(&mlinks
);
525 ohash_delete(&mpages
);
526 ohash_delete(&mlinks
);
529 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
530 " %s [-aDnpQ] [-Tutf8] dir ...\n"
531 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
532 " %s [-Dnp] -u dir [file ...]\n"
533 " %s [-Q] -t file ...\n",
534 __progname
, __progname
, __progname
,
535 __progname
, __progname
);
537 return (int)MANDOCLEVEL_BADARG
;
541 * Scan a directory tree rooted at "basedir" for manpages.
542 * We use fts(), scanning directory parts along the way for clues to our
543 * section and architecture.
545 * If use_all has been specified, grok all files.
546 * If not, sanitise paths to the following:
548 * [./]man*[/<arch>]/<name>.<section>
550 * [./]cat<section>[/<arch>]/<name>.0
552 * TODO: accomodate for multi-language directories.
562 char *dsec
, *arch
, *fsec
, *cp
;
567 argv
[1] = (char *)NULL
;
569 f
= fts_open((char * const *)argv
,
570 FTS_PHYSICAL
| FTS_NOCHDIR
, NULL
);
572 exitcode
= (int)MANDOCLEVEL_SYSERR
;
573 say("", "&fts_open");
580 while ((ff
= fts_read(f
)) != NULL
) {
581 path
= ff
->fts_path
+ 2;
582 switch (ff
->fts_info
) {
585 * Symbolic links require various sanity checks,
586 * then get handled just like regular files.
589 if (realpath(path
, buf
) == NULL
) {
591 say(path
, "&realpath");
594 if (strstr(buf
, basedir
) != buf
596 && strstr(buf
, HOMEBREWDIR
) != buf
599 if (warnings
) say("",
600 "%s: outside base directory", buf
);
603 /* Use logical inode to avoid mpages dupe. */
604 if (stat(path
, ff
->fts_statp
) == -1) {
612 * If we're a regular file, add an mlink by using the
613 * stored directory data and handling the filename.
616 if ( ! strcmp(path
, MANDOC_DB
))
618 if ( ! use_all
&& ff
->fts_level
< 2) {
620 say(path
, "Extraneous file");
625 while (fsec
== NULL
) {
626 fsec
= strrchr(ff
->fts_name
, '.');
627 if (fsec
== NULL
|| strcmp(fsec
+1, "gz"))
637 "No filename suffix");
640 } else if ( ! strcmp(++fsec
, "html")) {
642 say(path
, "Skip html");
644 } else if ( ! strcmp(fsec
, "ps")) {
646 say(path
, "Skip ps");
648 } else if ( ! strcmp(fsec
, "pdf")) {
650 say(path
, "Skip pdf");
652 } else if ( ! use_all
&&
653 ((dform
== FORM_SRC
&&
654 strncmp(fsec
, dsec
, strlen(dsec
))) ||
655 (dform
== FORM_CAT
&& strcmp(fsec
, "0")))) {
657 say(path
, "Wrong filename suffix");
662 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
663 if (strlcpy(mlink
->file
, path
,
664 sizeof(mlink
->file
)) >=
665 sizeof(mlink
->file
)) {
666 say(path
, "Filename too long");
670 mlink
->dform
= dform
;
673 mlink
->name
= ff
->fts_name
;
676 mlink_add(mlink
, ff
->fts_statp
);
685 say(path
, "Not a regular file");
689 switch (ff
->fts_level
) {
691 /* Ignore the root directory. */
695 * This might contain manX/ or catX/.
696 * Try to infer this from the name.
697 * If we're not in use_all, enforce it.
700 if (ff
->fts_info
== FTS_DP
) {
706 if ( ! strncmp(cp
, "man", 3)) {
709 } else if ( ! strncmp(cp
, "cat", 3)) {
717 if (dsec
!= NULL
|| use_all
)
721 say(path
, "Unknown directory part");
722 fts_set(f
, ff
, FTS_SKIP
);
726 * Possibly our architecture.
727 * If we're descending, keep tabs on it.
729 if (ff
->fts_info
!= FTS_DP
&& dsec
!= NULL
)
735 if (ff
->fts_info
== FTS_DP
|| use_all
)
738 say(path
, "Extraneous directory part");
739 fts_set(f
, ff
, FTS_SKIP
);
749 * Add a file to the mlinks table.
750 * Do not verify that it's a "valid" looking manpage (we'll do that
753 * Try to infer the manual section, architecture, and page name from the
754 * path, assuming it looks like
756 * [./]man*[/<arch>]/<name>.<section>
758 * [./]cat<section>[/<arch>]/<name>.0
760 * See treescan() for the fts(3) version of this.
763 filescan(const char *file
)
772 if (0 == strncmp(file
, "./", 2))
776 * We have to do lstat(2) before realpath(3) loses
777 * the information whether this is a symbolic link.
778 * We need to know that because for symbolic links,
779 * we want to use the orginal file name, while for
780 * regular files, we want to use the real path.
782 if (-1 == lstat(file
, &st
)) {
783 exitcode
= (int)MANDOCLEVEL_BADARG
;
786 } else if (0 == ((S_IFREG
| S_IFLNK
) & st
.st_mode
)) {
787 exitcode
= (int)MANDOCLEVEL_BADARG
;
788 say(file
, "Not a regular file");
793 * We have to resolve the file name to the real path
794 * in any case for the base directory check.
796 if (NULL
== realpath(file
, buf
)) {
797 exitcode
= (int)MANDOCLEVEL_BADARG
;
798 say(file
, "&realpath");
804 else if (strstr(buf
, basedir
) == buf
)
805 start
= buf
+ strlen(basedir
);
807 else if (strstr(buf
, HOMEBREWDIR
) == buf
)
811 exitcode
= (int)MANDOCLEVEL_BADARG
;
812 say("", "%s: outside base directory", buf
);
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
825 if (S_IFLNK
& st
.st_mode
) {
826 if (-1 == stat(buf
, &st
)) {
827 exitcode
= (int)MANDOCLEVEL_BADARG
;
831 if (strlcpy(buf
, file
, sizeof(buf
)) >= sizeof(buf
)) {
832 say(file
, "Filename too long");
836 if (OP_TEST
!= op
&& strstr(buf
, basedir
) == buf
)
837 start
+= strlen(basedir
);
840 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
841 mlink
->dform
= FORM_NONE
;
842 if (strlcpy(mlink
->file
, start
, sizeof(mlink
->file
)) >=
843 sizeof(mlink
->file
)) {
844 say(start
, "Filename too long");
850 * First try to guess our directory structure.
851 * If we find a separator, try to look for man* or cat*.
852 * If we find one of these and what's underneath is a directory,
853 * assume it's an architecture.
855 if (NULL
!= (p
= strchr(start
, '/'))) {
857 if (0 == strncmp(start
, "man", 3)) {
858 mlink
->dform
= FORM_SRC
;
859 mlink
->dsec
= start
+ 3;
860 } else if (0 == strncmp(start
, "cat", 3)) {
861 mlink
->dform
= FORM_CAT
;
862 mlink
->dsec
= start
+ 3;
866 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
874 * Now check the file suffix.
875 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
877 p
= strrchr(start
, '\0');
878 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
887 * Now try to parse the name.
888 * Use the filename portion of the path.
891 if (NULL
!= (p
= strrchr(start
, '/'))) {
895 mlink_add(mlink
, &st
);
899 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
901 struct inodev inodev
;
905 assert(NULL
!= mlink
->file
);
907 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
908 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
909 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
910 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
912 if ('0' == *mlink
->fsec
) {
914 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
915 mlink
->fform
= FORM_CAT
;
916 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
917 mlink
->fform
= FORM_SRC
;
919 mlink
->fform
= FORM_NONE
;
921 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
922 assert(NULL
== ohash_find(&mlinks
, slot
));
923 ohash_insert(&mlinks
, slot
, mlink
);
925 memset(&inodev
, 0, sizeof(inodev
)); /* Clear padding. */
926 inodev
.st_ino
= st
->st_ino
;
927 inodev
.st_dev
= st
->st_dev
;
928 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
929 sizeof(struct inodev
), inodev
.st_ino
);
930 mpage
= ohash_find(&mpages
, slot
);
932 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
933 mpage
->inodev
.st_ino
= inodev
.st_ino
;
934 mpage
->inodev
.st_dev
= inodev
.st_dev
;
935 ohash_insert(&mpages
, slot
, mpage
);
937 mlink
->next
= mpage
->mlinks
;
938 mpage
->mlinks
= mlink
;
939 mlink
->mpage
= mpage
;
943 mlink_free(struct mlink
*mlink
)
960 mpage
= ohash_first(&mpages
, &slot
);
961 while (NULL
!= mpage
) {
962 while (NULL
!= (mlink
= mpage
->mlinks
)) {
963 mpage
->mlinks
= mlink
->next
;
971 mpage
= ohash_next(&mpages
, &slot
);
976 * For each mlink to the mpage, check whether the path looks like
977 * it is formatted, and if it does, check whether a source manual
978 * exists by the same name, ignoring the suffix.
979 * If both conditions hold, drop the mlink.
982 mlinks_undupe(struct mpage
*mpage
)
989 mpage
->form
= FORM_CAT
;
990 prev
= &mpage
->mlinks
;
991 while (NULL
!= (mlink
= *prev
)) {
992 if (FORM_CAT
!= mlink
->dform
) {
993 mpage
->form
= FORM_NONE
;
996 (void)strlcpy(buf
, mlink
->file
, sizeof(buf
));
997 bufp
= strstr(buf
, "cat");
998 assert(NULL
!= bufp
);
999 memcpy(bufp
, "man", 3);
1000 if (NULL
!= (bufp
= strrchr(buf
, '.')))
1002 (void)strlcat(buf
, mlink
->dsec
, sizeof(buf
));
1003 if (NULL
== ohash_find(&mlinks
,
1004 ohash_qlookup(&mlinks
, buf
)))
1007 say(mlink
->file
, "Man source exists: %s", buf
);
1010 *prev
= mlink
->next
;
1014 prev
= &(*prev
)->next
;
1019 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
1025 * Check whether the manual section given in a file
1026 * agrees with the directory where the file is located.
1027 * Some manuals have suffixes like (3p) on their
1028 * section number either inside the file or in the
1029 * directory name, some are linked into more than one
1030 * section, like encrypt(1) = makekey(8).
1033 if (FORM_SRC
== mpage
->form
&&
1034 strcasecmp(mpage
->sec
, mlink
->dsec
))
1035 say(mlink
->file
, "Section \"%s\" manual in %s directory",
1036 mpage
->sec
, mlink
->dsec
);
1039 * Manual page directories exist for each kernel
1040 * architecture as returned by machine(1).
1041 * However, many manuals only depend on the
1042 * application architecture as returned by arch(1).
1043 * For example, some (2/ARM) manuals are shared
1044 * across the "armish" and "zaurus" kernel
1046 * A few manuals are even shared across completely
1047 * different architectures, for example fdformat(1)
1048 * on amd64, i386, sparc, and sparc64.
1051 if (strcasecmp(mpage
->arch
, mlink
->arch
))
1052 say(mlink
->file
, "Architecture \"%s\" manual in "
1053 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
1057 * parse_cat() doesn't set NAME_TITLE yet.
1060 if (FORM_CAT
== mpage
->form
)
1064 * Check whether this mlink
1065 * appears as a name in the NAME section.
1068 slot
= ohash_qlookup(&names
, mlink
->name
);
1069 str
= ohash_find(&names
, slot
);
1070 assert(NULL
!= str
);
1071 if ( ! (NAME_TITLE
& str
->mask
))
1072 say(mlink
->file
, "Name missing in NAME section");
1076 * Run through the files in the global vector "mpages"
1077 * and add them to the database specified in "basedir".
1079 * This handles the parsing scheme itself, using the cues of directory
1080 * and filename to determine whether the file is parsable or not.
1083 mpages_merge(struct mparse
*mp
)
1086 struct mpage
*mpage
, *mpage_dest
;
1087 struct mlink
*mlink
, *mlink_dest
;
1088 struct roff_man
*man
;
1095 SQL_EXEC("BEGIN TRANSACTION");
1097 mpage
= ohash_first(&mpages
, &pslot
);
1098 while (mpage
!= NULL
) {
1099 mlinks_undupe(mpage
);
1100 if ((mlink
= mpage
->mlinks
) == NULL
) {
1101 mpage
= ohash_next(&mpages
, &pslot
);
1105 name_mask
= NAME_MASK
;
1106 mandoc_ohash_init(&names
, 4, offsetof(struct str
, key
));
1107 mandoc_ohash_init(&strings
, 6, offsetof(struct str
, key
));
1112 mparse_open(mp
, &fd
, mlink
->file
);
1114 say(mlink
->file
, "&open");
1119 * Interpret the file as mdoc(7) or man(7) source
1120 * code, unless it is known to be formatted.
1122 if (mlink
->dform
!= FORM_CAT
|| mlink
->fform
!= FORM_CAT
) {
1123 mparse_readfd(mp
, fd
, mlink
->file
);
1124 mparse_result(mp
, &man
, &sodest
);
1127 if (sodest
!= NULL
) {
1128 mlink_dest
= ohash_find(&mlinks
,
1129 ohash_qlookup(&mlinks
, sodest
));
1130 if (mlink_dest
== NULL
) {
1131 mandoc_asprintf(&cp
, "%s.gz", sodest
);
1132 mlink_dest
= ohash_find(&mlinks
,
1133 ohash_qlookup(&mlinks
, cp
));
1136 if (mlink_dest
!= NULL
) {
1138 /* The .so target exists. */
1140 mpage_dest
= mlink_dest
->mpage
;
1142 mlink
->mpage
= mpage_dest
;
1145 * If the target was already
1146 * processed, add the links
1147 * to the database now.
1148 * Otherwise, this will
1149 * happen when we come
1153 if (mpage_dest
->pageid
)
1154 dbadd_mlink_name(mlink
);
1156 if (mlink
->next
== NULL
)
1158 mlink
= mlink
->next
;
1161 /* Move all links to the target. */
1163 mlink
->next
= mlink_dest
->next
;
1164 mlink_dest
->next
= mpage
->mlinks
;
1165 mpage
->mlinks
= NULL
;
1168 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MDOC
) {
1170 mpage
->form
= FORM_SRC
;
1171 mpage
->sec
= man
->meta
.msec
;
1172 mpage
->sec
= mandoc_strdup(
1173 mpage
->sec
== NULL
? "" : mpage
->sec
);
1174 mpage
->arch
= man
->meta
.arch
;
1175 mpage
->arch
= mandoc_strdup(
1176 mpage
->arch
== NULL
? "" : mpage
->arch
);
1177 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1178 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MAN
) {
1179 mpage
->form
= FORM_SRC
;
1180 mpage
->sec
= mandoc_strdup(man
->meta
.msec
);
1181 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1182 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1184 mpage
->form
= FORM_CAT
;
1185 mpage
->sec
= mandoc_strdup(mlink
->dsec
);
1186 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1187 mpage
->title
= mandoc_strdup(mlink
->name
);
1189 putkey(mpage
, mpage
->sec
, TYPE_sec
);
1190 if (*mpage
->arch
!= '\0')
1191 putkey(mpage
, mpage
->arch
, TYPE_arch
);
1193 for ( ; mlink
!= NULL
; mlink
= mlink
->next
) {
1194 if ('\0' != *mlink
->dsec
)
1195 putkey(mpage
, mlink
->dsec
, TYPE_sec
);
1196 if ('\0' != *mlink
->fsec
)
1197 putkey(mpage
, mlink
->fsec
, TYPE_sec
);
1198 putkey(mpage
, '\0' == *mlink
->arch
?
1199 any
: mlink
->arch
, TYPE_arch
);
1200 putkey(mpage
, mlink
->name
, NAME_FILE
);
1203 assert(mpage
->desc
== NULL
);
1204 if (man
!= NULL
&& man
->macroset
== MACROSET_MDOC
)
1205 parse_mdoc(mpage
, &man
->meta
, man
->first
);
1206 else if (man
!= NULL
)
1207 parse_man(mpage
, &man
->meta
, man
->first
);
1209 parse_cat(mpage
, fd
);
1210 if (mpage
->desc
== NULL
)
1211 mpage
->desc
= mandoc_strdup(mpage
->mlinks
->name
);
1213 if (warnings
&& !use_all
)
1214 for (mlink
= mpage
->mlinks
; mlink
;
1215 mlink
= mlink
->next
)
1216 mlink_check(mpage
, mlink
);
1219 mlink
= mpage
->mlinks
;
1222 ohash_delete(&strings
);
1223 ohash_delete(&names
);
1224 mpage
= ohash_next(&mpages
, &pslot
);
1228 SQL_EXEC("END TRANSACTION");
1235 const char *name
, *sec
, *arch
, *key
;
1237 sqlite3_prepare_v2(db
,
1238 "SELECT name, sec, arch, key FROM ("
1239 "SELECT name AS key, pageid FROM names "
1240 "WHERE bits & ? AND NOT EXISTS ("
1241 "SELECT pageid FROM mlinks "
1242 "WHERE mlinks.pageid == names.pageid "
1243 "AND mlinks.name == names.name"
1246 "SELECT sec, arch, name, pageid FROM mlinks "
1248 ") USING (pageid);",
1251 if (sqlite3_bind_int64(stmt
, 1, NAME_TITLE
) != SQLITE_OK
)
1252 say("", "%s", sqlite3_errmsg(db
));
1254 while (sqlite3_step(stmt
) == SQLITE_ROW
) {
1255 name
= (const char *)sqlite3_column_text(stmt
, 0);
1256 sec
= (const char *)sqlite3_column_text(stmt
, 1);
1257 arch
= (const char *)sqlite3_column_text(stmt
, 2);
1258 key
= (const char *)sqlite3_column_text(stmt
, 3);
1259 say("", "%s(%s%s%s) lacks mlink \"%s\"", name
, sec
,
1260 '\0' == *arch
? "" : "/",
1261 '\0' == *arch
? "" : arch
, key
);
1263 sqlite3_finalize(stmt
);
1267 parse_cat(struct mpage
*mpage
, int fd
)
1270 char *line
, *p
, *title
;
1271 size_t len
, plen
, titlesz
;
1273 stream
= (-1 == fd
) ?
1274 fopen(mpage
->mlinks
->file
, "r") :
1276 if (NULL
== stream
) {
1280 say(mpage
->mlinks
->file
, "&fopen");
1284 /* Skip to first blank line. */
1286 while (NULL
!= (line
= fgetln(stream
, &len
)))
1291 * Assume the first line that is not indented
1292 * is the first section header. Skip to it.
1295 while (NULL
!= (line
= fgetln(stream
, &len
)))
1296 if ('\n' != *line
&& ' ' != *line
)
1300 * Read up until the next section into a buffer.
1301 * Strip the leading and trailing newline from each read line,
1302 * appending a trailing space.
1303 * Ignore empty (whitespace-only) lines.
1309 while (NULL
!= (line
= fgetln(stream
, &len
))) {
1310 if (' ' != *line
|| '\n' != line
[len
- 1])
1312 while (len
> 0 && isspace((unsigned char)*line
)) {
1318 title
= mandoc_realloc(title
, titlesz
+ len
);
1319 memcpy(title
+ titlesz
, line
, len
);
1321 title
[titlesz
- 1] = ' ';
1325 * If no page content can be found, or the input line
1326 * is already the next section header, or there is no
1327 * trailing newline, reuse the page title as the page
1331 if (NULL
== title
|| '\0' == *title
) {
1333 say(mpage
->mlinks
->file
,
1334 "Cannot find NAME section");
1340 title
= mandoc_realloc(title
, titlesz
+ 1);
1341 title
[titlesz
] = '\0';
1344 * Skip to the first dash.
1345 * Use the remaining line as the description (no more than 70
1349 if (NULL
!= (p
= strstr(title
, "- "))) {
1350 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1351 /* Skip to next word. */ ;
1354 say(mpage
->mlinks
->file
,
1355 "No dash in title line");
1361 /* Strip backspace-encoding from line. */
1363 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1366 memmove(line
, line
+ 1, plen
--);
1369 memmove(line
- 1, line
+ 1, plen
- len
);
1373 mpage
->desc
= mandoc_strdup(p
);
1379 * Put a type/word pair into the word database for this particular file.
1382 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1386 assert(NULL
!= value
);
1387 if (TYPE_arch
== type
)
1388 for (cp
= value
; *cp
; cp
++)
1389 if (isupper((unsigned char)*cp
))
1390 *cp
= _tolower((unsigned char)*cp
);
1391 putkeys(mpage
, value
, strlen(value
), type
);
1395 * Grok all nodes at or below a certain mdoc node into putkey().
1398 putmdockey(const struct mpage
*mpage
,
1399 const struct roff_node
*n
, uint64_t m
)
1402 for ( ; NULL
!= n
; n
= n
->next
) {
1403 if (NULL
!= n
->child
)
1404 putmdockey(mpage
, n
->child
, m
);
1405 if (n
->type
== ROFFT_TEXT
)
1406 putkey(mpage
, n
->string
, m
);
1411 parse_man(struct mpage
*mpage
, const struct roff_meta
*meta
,
1412 const struct roff_node
*n
)
1414 const struct roff_node
*head
, *body
;
1415 char *start
, *title
;
1423 * We're only searching for one thing: the first text child in
1424 * the BODY of a NAME section. Since we don't keep track of
1425 * sections in -man, run some hoops to find out whether we're in
1426 * the correct section or not.
1429 if (n
->type
== ROFFT_BODY
&& n
->tok
== MAN_SH
) {
1431 assert(body
->parent
);
1432 if (NULL
!= (head
= body
->parent
->head
) &&
1433 1 == head
->nchild
&&
1434 NULL
!= (head
= (head
->child
)) &&
1435 head
->type
== ROFFT_TEXT
&&
1436 0 == strcmp(head
->string
, "NAME") &&
1437 NULL
!= body
->child
) {
1440 * Suck the entire NAME section into memory.
1441 * Yes, we might run away.
1442 * But too many manuals have big, spread-out
1443 * NAME sections over many lines.
1447 deroff(&title
, body
);
1452 * Go through a special heuristic dance here.
1453 * Conventionally, one or more manual names are
1454 * comma-specified prior to a whitespace, then a
1455 * dash, then a description. Try to puzzle out
1456 * the name parts here.
1461 sz
= strcspn(start
, " ,");
1462 if ('\0' == start
[sz
])
1469 * Assume a stray trailing comma in the
1470 * name list if a name begins with a dash.
1473 if ('-' == start
[0] ||
1474 ('\\' == start
[0] && '-' == start
[1]))
1477 putkey(mpage
, start
, NAME_TITLE
);
1478 if ( ! (mpage
->name_head_done
||
1479 strcasecmp(start
, meta
->title
))) {
1480 putkey(mpage
, start
, NAME_HEAD
);
1481 mpage
->name_head_done
= 1;
1489 assert(',' == byte
);
1491 while (' ' == *start
)
1495 if (start
== title
) {
1496 putkey(mpage
, start
, NAME_TITLE
);
1497 if ( ! (mpage
->name_head_done
||
1498 strcasecmp(start
, meta
->title
))) {
1499 putkey(mpage
, start
, NAME_HEAD
);
1500 mpage
->name_head_done
= 1;
1506 while (isspace((unsigned char)*start
))
1509 if (0 == strncmp(start
, "-", 1))
1511 else if (0 == strncmp(start
, "\\-\\-", 4))
1513 else if (0 == strncmp(start
, "\\-", 2))
1515 else if (0 == strncmp(start
, "\\(en", 4))
1517 else if (0 == strncmp(start
, "\\(em", 4))
1520 while (' ' == *start
)
1523 mpage
->desc
= mandoc_strdup(start
);
1529 for (n
= n
->child
; n
; n
= n
->next
) {
1530 if (NULL
!= mpage
->desc
)
1532 parse_man(mpage
, meta
, n
);
1537 parse_mdoc(struct mpage
*mpage
, const struct roff_meta
*meta
,
1538 const struct roff_node
*n
)
1542 for (n
= n
->child
; NULL
!= n
; n
= n
->next
) {
1549 if (NULL
!= mdocs
[n
->tok
].fp
)
1550 if (0 == (*mdocs
[n
->tok
].fp
)(mpage
, meta
, n
))
1552 if (mdocs
[n
->tok
].mask
)
1553 putmdockey(mpage
, n
->child
,
1554 mdocs
[n
->tok
].mask
);
1557 assert(n
->type
!= ROFFT_ROOT
);
1560 if (NULL
!= n
->child
)
1561 parse_mdoc(mpage
, meta
, n
);
1566 parse_mdoc_Fd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1567 const struct roff_node
*n
)
1572 if (SEC_SYNOPSIS
!= n
->sec
||
1573 NULL
== (n
= n
->child
) ||
1574 n
->type
!= ROFFT_TEXT
)
1578 * Only consider those `Fd' macro fields that begin with an
1579 * "inclusion" token (versus, e.g., #define).
1582 if (strcmp("#include", n
->string
))
1585 if ((n
= n
->next
) == NULL
|| n
->type
!= ROFFT_TEXT
)
1589 * Strip away the enclosing angle brackets and make sure we're
1594 if ('<' == *start
|| '"' == *start
)
1597 if (0 == (sz
= strlen(start
)))
1600 end
= &start
[(int)sz
- 1];
1601 if ('>' == *end
|| '"' == *end
)
1605 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1610 parse_mdoc_fname(struct mpage
*mpage
, const struct roff_node
*n
)
1615 if (n
->type
!= ROFFT_TEXT
)
1618 /* Skip function pointer punctuation. */
1621 while (*cp
== '(' || *cp
== '*')
1623 sz
= strcspn(cp
, "()");
1625 putkeys(mpage
, cp
, sz
, TYPE_Fn
);
1626 if (n
->sec
== SEC_SYNOPSIS
)
1627 putkeys(mpage
, cp
, sz
, NAME_SYN
);
1631 parse_mdoc_Fn(struct mpage
*mpage
, const struct roff_meta
*meta
,
1632 const struct roff_node
*n
)
1635 if (n
->child
== NULL
)
1638 parse_mdoc_fname(mpage
, n
->child
);
1640 for (n
= n
->child
->next
; n
!= NULL
; n
= n
->next
)
1641 if (n
->type
== ROFFT_TEXT
)
1642 putkey(mpage
, n
->string
, TYPE_Fa
);
1648 parse_mdoc_Fo(struct mpage
*mpage
, const struct roff_meta
*meta
,
1649 const struct roff_node
*n
)
1652 if (n
->type
!= ROFFT_HEAD
)
1655 if (n
->child
!= NULL
)
1656 parse_mdoc_fname(mpage
, n
->child
);
1662 parse_mdoc_Xr(struct mpage
*mpage
, const struct roff_meta
*meta
,
1663 const struct roff_node
*n
)
1667 if (NULL
== (n
= n
->child
))
1670 if (NULL
== n
->next
) {
1671 putkey(mpage
, n
->string
, TYPE_Xr
);
1675 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1676 putkey(mpage
, cp
, TYPE_Xr
);
1682 parse_mdoc_Nd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1683 const struct roff_node
*n
)
1686 if (n
->type
== ROFFT_BODY
)
1687 deroff(&mpage
->desc
, n
);
1692 parse_mdoc_Nm(struct mpage
*mpage
, const struct roff_meta
*meta
,
1693 const struct roff_node
*n
)
1696 if (SEC_NAME
== n
->sec
)
1697 putmdockey(mpage
, n
->child
, NAME_TITLE
);
1698 else if (n
->sec
== SEC_SYNOPSIS
&& n
->type
== ROFFT_HEAD
) {
1699 if (n
->child
== NULL
)
1700 putkey(mpage
, meta
->name
, NAME_SYN
);
1702 putmdockey(mpage
, n
->child
, NAME_SYN
);
1704 if ( ! (mpage
->name_head_done
||
1705 n
->child
== NULL
|| n
->child
->string
== NULL
||
1706 strcasecmp(n
->child
->string
, meta
->title
))) {
1707 putkey(mpage
, n
->child
->string
, ROFFT_HEAD
);
1708 mpage
->name_head_done
= 1;
1714 parse_mdoc_Sh(struct mpage
*mpage
, const struct roff_meta
*meta
,
1715 const struct roff_node
*n
)
1718 return n
->sec
== SEC_CUSTOM
&& n
->type
== ROFFT_HEAD
;
1722 parse_mdoc_head(struct mpage
*mpage
, const struct roff_meta
*meta
,
1723 const struct roff_node
*n
)
1726 return n
->type
== ROFFT_HEAD
;
1730 parse_mdoc_body(struct mpage
*mpage
, const struct roff_meta
*meta
,
1731 const struct roff_node
*n
)
1734 return n
->type
== ROFFT_BODY
;
1738 * Add a string to the hash table for the current manual.
1739 * Each string has a bitmask telling which macros it belongs to.
1740 * When we finish the manual, we'll dump the table.
1743 putkeys(const struct mpage
*mpage
, char *cp
, size_t sz
, uint64_t v
)
1754 mustfree
= render_string(&cp
, &sz
);
1760 name_mask
&= ~NAME_FIRST
;
1762 say(mpage
->mlinks
->file
,
1763 "Adding name %*s, bits=%d", sz
, cp
, v
);
1767 for (i
= 0; i
< mansearch_keymax
; i
++)
1768 if ((uint64_t)1 << i
& v
)
1769 say(mpage
->mlinks
->file
,
1770 "Adding key %s=%*s",
1771 mansearch_keynames
[i
], sz
, cp
);
1775 slot
= ohash_qlookupi(htab
, cp
, &end
);
1776 s
= ohash_find(htab
, slot
);
1778 if (NULL
!= s
&& mpage
== s
->mpage
) {
1781 } else if (NULL
== s
) {
1782 s
= mandoc_calloc(1, sizeof(struct str
) + sz
+ 1);
1783 memcpy(s
->key
, cp
, sz
);
1784 ohash_insert(htab
, slot
, s
);
1794 * Take a Unicode codepoint and produce its UTF-8 encoding.
1795 * This isn't the best way to do this, but it works.
1796 * The magic numbers are from the UTF-8 packaging.
1797 * They're not as scary as they seem: read the UTF-8 spec for details.
1800 utf8(unsigned int cp
, char out
[7])
1805 if (cp
<= 0x0000007F) {
1808 } else if (cp
<= 0x000007FF) {
1810 out
[0] = (cp
>> 6 & 31) | 192;
1811 out
[1] = (cp
& 63) | 128;
1812 } else if (cp
<= 0x0000FFFF) {
1814 out
[0] = (cp
>> 12 & 15) | 224;
1815 out
[1] = (cp
>> 6 & 63) | 128;
1816 out
[2] = (cp
& 63) | 128;
1817 } else if (cp
<= 0x001FFFFF) {
1819 out
[0] = (cp
>> 18 & 7) | 240;
1820 out
[1] = (cp
>> 12 & 63) | 128;
1821 out
[2] = (cp
>> 6 & 63) | 128;
1822 out
[3] = (cp
& 63) | 128;
1823 } else if (cp
<= 0x03FFFFFF) {
1825 out
[0] = (cp
>> 24 & 3) | 248;
1826 out
[1] = (cp
>> 18 & 63) | 128;
1827 out
[2] = (cp
>> 12 & 63) | 128;
1828 out
[3] = (cp
>> 6 & 63) | 128;
1829 out
[4] = (cp
& 63) | 128;
1830 } else if (cp
<= 0x7FFFFFFF) {
1832 out
[0] = (cp
>> 30 & 1) | 252;
1833 out
[1] = (cp
>> 24 & 63) | 128;
1834 out
[2] = (cp
>> 18 & 63) | 128;
1835 out
[3] = (cp
>> 12 & 63) | 128;
1836 out
[4] = (cp
>> 6 & 63) | 128;
1837 out
[5] = (cp
& 63) | 128;
1846 * If the string contains escape sequences,
1847 * replace it with an allocated rendering and return 1,
1848 * such that the caller can free it after use.
1849 * Otherwise, do nothing and return 0.
1852 render_string(char **public, size_t *psz
)
1854 const char *src
, *scp
, *addcp
, *seq
;
1856 size_t ssz
, dsz
, addsz
;
1857 char utfbuf
[7], res
[6];
1858 int seqlen
, unicode
;
1862 res
[2] = ASCII_NBRSP
;
1863 res
[3] = ASCII_HYPH
;
1864 res
[4] = ASCII_BREAK
;
1867 src
= scp
= *public;
1872 while (scp
< src
+ *psz
) {
1874 /* Leave normal characters unchanged. */
1876 if (strchr(res
, *scp
) == NULL
) {
1884 * Found something that requires replacing,
1885 * make sure we have a destination buffer.
1889 dst
= mandoc_malloc(ssz
+ 1);
1891 memcpy(dst
, src
, dsz
);
1894 /* Handle single-char special characters. */
1915 * Found an escape sequence.
1916 * Read past the slash, then parse it.
1917 * Ignore everything except characters.
1921 if (mandoc_escape(&scp
, &seq
, &seqlen
) != ESCAPE_SPECIAL
)
1925 * Render the special character
1926 * as either UTF-8 or ASCII.
1930 unicode
= mchars_spec2cp(seq
, seqlen
);
1933 addsz
= utf8(unicode
, utfbuf
);
1938 addcp
= mchars_spec2str(seq
, seqlen
, &addsz
);
1941 if (*addcp
== ASCII_NBRSP
) {
1947 /* Copy the rendered glyph into the stream. */
1950 dst
= mandoc_realloc(dst
, ssz
+ 1);
1951 memcpy(dst
+ dsz
, addcp
, addsz
);
1959 /* Trim trailing whitespace and NUL-terminate. */
1961 while (*psz
> 0 && (*public)[*psz
- 1] == ' ')
1964 (*public)[*psz
] = '\0';
1971 dbadd_mlink(const struct mlink
*mlink
)
1976 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->dsec
);
1977 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->arch
);
1978 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->name
);
1979 SQL_BIND_INT64(stmts
[STMT_INSERT_LINK
], i
, mlink
->mpage
->pageid
);
1980 SQL_STEP(stmts
[STMT_INSERT_LINK
]);
1981 sqlite3_reset(stmts
[STMT_INSERT_LINK
]);
1985 dbadd_mlink_name(const struct mlink
*mlink
)
1993 SQL_BIND_INT64(stmts
[STMT_SELECT_NAME
], i
, mlink
->mpage
->pageid
);
1994 bits
= NAME_FILE
& NAME_MASK
;
1995 if (sqlite3_step(stmts
[STMT_SELECT_NAME
]) == SQLITE_ROW
) {
1996 bits
|= sqlite3_column_int64(stmts
[STMT_SELECT_NAME
], 0);
1997 sqlite3_reset(stmts
[STMT_SELECT_NAME
]);
2001 SQL_BIND_INT64(stmts
[STMT_INSERT_NAME
], i
, bits
);
2002 SQL_BIND_TEXT(stmts
[STMT_INSERT_NAME
], i
, mlink
->name
);
2003 SQL_BIND_INT64(stmts
[STMT_INSERT_NAME
], i
, mlink
->mpage
->pageid
);
2004 SQL_STEP(stmts
[STMT_INSERT_NAME
]);
2005 sqlite3_reset(stmts
[STMT_INSERT_NAME
]);
2009 * Flush the current page's terms (and their bits) into the database.
2010 * Wrap the entire set of additions in a transaction to make sqlite be a
2012 * Also, handle escape sequences at the last possible moment.
2015 dbadd(struct mpage
*mpage
)
2017 struct mlink
*mlink
;
2024 mlink
= mpage
->mlinks
;
2027 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2028 key
= ohash_next(&names
, &slot
))
2030 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2031 key
= ohash_next(&strings
, &slot
))
2035 while (NULL
!= mlink
) {
2036 fputs(mlink
->name
, stdout
);
2037 if (NULL
== mlink
->next
||
2038 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
2039 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
2040 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
2042 if ('\0' == *mlink
->dsec
)
2043 fputs(mlink
->fsec
, stdout
);
2045 fputs(mlink
->dsec
, stdout
);
2046 if ('\0' != *mlink
->arch
)
2047 printf("/%s", mlink
->arch
);
2050 mlink
= mlink
->next
;
2052 fputs(", ", stdout
);
2054 printf(" - %s\n", mpage
->desc
);
2059 say(mlink
->file
, "Adding to database");
2063 mustfree
= render_string(&cp
, &i
);
2065 SQL_BIND_TEXT(stmts
[STMT_INSERT_PAGE
], i
, cp
);
2066 SQL_BIND_INT(stmts
[STMT_INSERT_PAGE
], i
, mpage
->form
);
2067 SQL_STEP(stmts
[STMT_INSERT_PAGE
]);
2068 mpage
->pageid
= sqlite3_last_insert_rowid(db
);
2069 sqlite3_reset(stmts
[STMT_INSERT_PAGE
]);
2073 while (NULL
!= mlink
) {
2075 mlink
= mlink
->next
;
2077 mlink
= mpage
->mlinks
;
2079 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2080 key
= ohash_next(&names
, &slot
)) {
2081 assert(key
->mpage
== mpage
);
2083 SQL_BIND_INT64(stmts
[STMT_INSERT_NAME
], i
, key
->mask
);
2084 SQL_BIND_TEXT(stmts
[STMT_INSERT_NAME
], i
, key
->key
);
2085 SQL_BIND_INT64(stmts
[STMT_INSERT_NAME
], i
, mpage
->pageid
);
2086 SQL_STEP(stmts
[STMT_INSERT_NAME
]);
2087 sqlite3_reset(stmts
[STMT_INSERT_NAME
]);
2090 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2091 key
= ohash_next(&strings
, &slot
)) {
2092 assert(key
->mpage
== mpage
);
2094 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, key
->mask
);
2095 SQL_BIND_TEXT(stmts
[STMT_INSERT_KEY
], i
, key
->key
);
2096 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, mpage
->pageid
);
2097 SQL_STEP(stmts
[STMT_INSERT_KEY
]);
2098 sqlite3_reset(stmts
[STMT_INSERT_KEY
]);
2106 struct mpage
*mpage
;
2107 struct mlink
*mlink
;
2112 SQL_EXEC("BEGIN TRANSACTION");
2114 for (mpage
= ohash_first(&mpages
, &slot
); NULL
!= mpage
;
2115 mpage
= ohash_next(&mpages
, &slot
)) {
2116 mlink
= mpage
->mlinks
;
2118 say(mlink
->file
, "Deleting from database");
2121 for ( ; NULL
!= mlink
; mlink
= mlink
->next
) {
2123 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2125 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2127 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2129 SQL_STEP(stmts
[STMT_DELETE_PAGE
]);
2130 sqlite3_reset(stmts
[STMT_DELETE_PAGE
]);
2135 SQL_EXEC("END TRANSACTION");
2139 * Close an existing database and its prepared statements.
2140 * If "real" is not set, rename the temporary file into the real one.
2152 for (i
= 0; i
< STMT__MAX
; i
++) {
2153 sqlite3_finalize(stmts
[i
]);
2163 if ('\0' == *tempfilename
) {
2164 if (-1 == rename(MANDOC_DB
"~", MANDOC_DB
)) {
2165 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2166 say(MANDOC_DB
, "&rename");
2171 switch (child
= fork()) {
2173 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2174 say("", "&fork cmp");
2177 execlp("cmp", "cmp", "-s",
2178 tempfilename
, MANDOC_DB
, (char *)NULL
);
2179 say("", "&exec cmp");
2184 if (-1 == waitpid(child
, &status
, 0)) {
2185 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2186 say("", "&wait cmp");
2187 } else if (WIFSIGNALED(status
)) {
2188 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2189 say("", "cmp died from signal %d", WTERMSIG(status
));
2190 } else if (WEXITSTATUS(status
)) {
2191 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2193 "Data changed, but cannot replace database");
2196 *strrchr(tempfilename
, '/') = '\0';
2197 switch (child
= fork()) {
2199 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2200 say("", "&fork rm");
2203 execlp("rm", "rm", "-rf", tempfilename
, (char *)NULL
);
2204 say("", "&exec rm");
2205 exit((int)MANDOCLEVEL_SYSERR
);
2209 if (-1 == waitpid(child
, &status
, 0)) {
2210 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2211 say("", "&wait rm");
2212 } else if (WIFSIGNALED(status
) || WEXITSTATUS(status
)) {
2213 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2214 say("", "%s: Cannot remove temporary directory",
2220 * This is straightforward stuff.
2221 * Open a database connection to a "temporary" database, then open a set
2222 * of prepared statements we'll use over and over again.
2223 * If "real" is set, we use the existing database; if not, we truncate a
2225 * Must be matched by dbclose().
2236 *tempfilename
= '\0';
2237 ofl
= SQLITE_OPEN_READWRITE
;
2240 rc
= sqlite3_open_v2(MANDOC_DB
, &db
, ofl
, NULL
);
2241 if (SQLITE_OK
!= rc
) {
2242 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2243 if (SQLITE_CANTOPEN
!= rc
)
2244 say(MANDOC_DB
, "%s", sqlite3_errstr(rc
));
2247 goto prepare_statements
;
2250 ofl
|= SQLITE_OPEN_CREATE
| SQLITE_OPEN_EXCLUSIVE
;
2252 remove(MANDOC_DB
"~");
2253 rc
= sqlite3_open_v2(MANDOC_DB
"~", &db
, ofl
, NULL
);
2254 if (SQLITE_OK
== rc
)
2256 if (MPARSE_QUICK
& mparse_options
) {
2257 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2258 say(MANDOC_DB
"~", "%s", sqlite3_errstr(rc
));
2262 (void)strlcpy(tempfilename
, "/tmp/mandocdb.XXXXXX",
2263 sizeof(tempfilename
));
2264 if (NULL
== mkdtemp(tempfilename
)) {
2265 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2266 say("", "&%s", tempfilename
);
2269 (void)strlcat(tempfilename
, "/" MANDOC_DB
,
2270 sizeof(tempfilename
));
2271 rc
= sqlite3_open_v2(tempfilename
, &db
, ofl
, NULL
);
2272 if (SQLITE_OK
!= rc
) {
2273 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2274 say("", "%s: %s", tempfilename
, sqlite3_errstr(rc
));
2279 sql
= "CREATE TABLE \"mpages\" (\n"
2280 " \"desc\" TEXT NOT NULL,\n"
2281 " \"form\" INTEGER NOT NULL,\n"
2282 " \"pageid\" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL\n"
2285 "CREATE TABLE \"mlinks\" (\n"
2286 " \"sec\" TEXT NOT NULL,\n"
2287 " \"arch\" TEXT NOT NULL,\n"
2288 " \"name\" TEXT NOT NULL,\n"
2289 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2290 "ON DELETE CASCADE\n"
2292 "CREATE INDEX mlinks_pageid_idx ON mlinks (pageid);\n"
2294 "CREATE TABLE \"names\" (\n"
2295 " \"bits\" INTEGER NOT NULL,\n"
2296 " \"name\" TEXT NOT NULL,\n"
2297 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2298 "ON DELETE CASCADE,\n"
2299 " UNIQUE (\"name\", \"pageid\") ON CONFLICT REPLACE\n"
2302 "CREATE TABLE \"keys\" (\n"
2303 " \"bits\" INTEGER NOT NULL,\n"
2304 " \"key\" TEXT NOT NULL,\n"
2305 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2306 "ON DELETE CASCADE\n"
2308 "CREATE INDEX keys_pageid_idx ON keys (pageid);\n";
2310 if (SQLITE_OK
!= sqlite3_exec(db
, sql
, NULL
, NULL
, NULL
)) {
2311 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2312 say(MANDOC_DB
, "%s", sqlite3_errmsg(db
));
2318 if (SQLITE_OK
!= sqlite3_exec(db
,
2319 "PRAGMA foreign_keys = ON", NULL
, NULL
, NULL
)) {
2320 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2321 say(MANDOC_DB
, "PRAGMA foreign_keys: %s",
2322 sqlite3_errmsg(db
));
2327 sql
= "DELETE FROM mpages WHERE pageid IN "
2328 "(SELECT pageid FROM mlinks WHERE "
2329 "sec=? AND arch=? AND name=?)";
2330 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_DELETE_PAGE
], NULL
);
2331 sql
= "INSERT INTO mpages "
2332 "(desc,form) VALUES (?,?)";
2333 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_PAGE
], NULL
);
2334 sql
= "INSERT INTO mlinks "
2335 "(sec,arch,name,pageid) VALUES (?,?,?,?)";
2336 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_LINK
], NULL
);
2337 sql
= "SELECT bits FROM names where pageid = ?";
2338 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_SELECT_NAME
], NULL
);
2339 sql
= "INSERT INTO names "
2340 "(bits,name,pageid) VALUES (?,?,?)";
2341 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_NAME
], NULL
);
2342 sql
= "INSERT INTO keys "
2343 "(bits,key,pageid) VALUES (?,?,?)";
2344 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_KEY
], NULL
);
2348 * When opening a new database, we can turn off
2349 * synchronous mode for much better performance.
2352 if (real
&& SQLITE_OK
!= sqlite3_exec(db
,
2353 "PRAGMA synchronous = OFF", NULL
, NULL
, NULL
)) {
2354 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2355 say(MANDOC_DB
, "PRAGMA synchronous: %s",
2356 sqlite3_errmsg(db
));
2366 set_basedir(const char *targetdir
, int report_baddir
)
2368 static char startdir
[PATH_MAX
];
2369 static int getcwd_status
; /* 1 = ok, 2 = failure */
2370 static int chdir_status
; /* 1 = changed directory */
2374 * Remember the original working directory, if possible.
2375 * This will be needed if the second or a later directory
2376 * on the command line is given as a relative path.
2377 * Do not error out if the current directory is not
2378 * searchable: Maybe it won't be needed after all.
2380 if (0 == getcwd_status
) {
2381 if (NULL
== getcwd(startdir
, sizeof(startdir
))) {
2383 (void)strlcpy(startdir
, strerror(errno
),
2390 * We are leaving the old base directory.
2391 * Do not use it any longer, not even for messages.
2396 * If and only if the directory was changed earlier and
2397 * the next directory to process is given as a relative path,
2398 * first go back, or bail out if that is impossible.
2400 if (chdir_status
&& '/' != *targetdir
) {
2401 if (2 == getcwd_status
) {
2402 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2403 say("", "getcwd: %s", startdir
);
2406 if (-1 == chdir(startdir
)) {
2407 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2408 say("", "&chdir %s", startdir
);
2414 * Always resolve basedir to the canonicalized absolute
2415 * pathname and append a trailing slash, such that
2416 * we can reliably check whether files are inside.
2418 if (NULL
== realpath(targetdir
, basedir
)) {
2419 if (report_baddir
|| errno
!= ENOENT
) {
2420 exitcode
= (int)MANDOCLEVEL_BADARG
;
2421 say("", "&%s: realpath", targetdir
);
2424 } else if (-1 == chdir(basedir
)) {
2425 if (report_baddir
|| errno
!= ENOENT
) {
2426 exitcode
= (int)MANDOCLEVEL_BADARG
;
2432 cp
= strchr(basedir
, '\0');
2433 if ('/' != cp
[-1]) {
2434 if (cp
- basedir
>= PATH_MAX
- 1) {
2435 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2436 say("", "Filename too long");
2446 say(const char *file
, const char *format
, ...)
2451 if ('\0' != *basedir
)
2452 fprintf(stderr
, "%s", basedir
);
2453 if ('\0' != *basedir
&& '\0' != *file
)
2456 fprintf(stderr
, "%s", file
);
2459 if (NULL
!= format
) {
2472 if (NULL
!= format
) {
2473 if ('\0' != *basedir
|| '\0' != *file
)
2474 fputs(": ", stderr
);
2475 va_start(ap
, format
);
2476 vfprintf(stderr
, format
, ap
);
2480 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2481 fputs(": ", stderr
);
2484 fputc('\n', stderr
);