1 /* $Id: mandocdb.c,v 1.155 2014/08/06 15:09:05 schwarze Exp $ */
3 * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011, 2012, 2013, 2014 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 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.
42 #include "compat_ohash.h"
49 #include "mandoc_aux.h"
51 #include "mansearch.h"
53 extern int mansearch_keymax
;
54 extern const char *const mansearch_keynames
[];
56 #define SQL_EXEC(_v) \
57 if (SQLITE_OK != sqlite3_exec(db, (_v), NULL, NULL, NULL)) \
58 say("", "%s: %s", (_v), sqlite3_errmsg(db))
59 #define SQL_BIND_TEXT(_s, _i, _v) \
60 if (SQLITE_OK != sqlite3_bind_text \
61 ((_s), (_i)++, (_v), -1, SQLITE_STATIC)) \
62 say(mlink->file, "%s", sqlite3_errmsg(db))
63 #define SQL_BIND_INT(_s, _i, _v) \
64 if (SQLITE_OK != sqlite3_bind_int \
65 ((_s), (_i)++, (_v))) \
66 say(mlink->file, "%s", sqlite3_errmsg(db))
67 #define SQL_BIND_INT64(_s, _i, _v) \
68 if (SQLITE_OK != sqlite3_bind_int64 \
69 ((_s), (_i)++, (_v))) \
70 say(mlink->file, "%s", sqlite3_errmsg(db))
71 #define SQL_STEP(_s) \
72 if (SQLITE_DONE != sqlite3_step((_s))) \
73 say(mlink->file, "%s", sqlite3_errmsg(db))
76 OP_DEFAULT
= 0, /* new dbs from dir list or default config */
77 OP_CONFFILE
, /* new databases from custom config file */
78 OP_UPDATE
, /* delete/add entries in existing database */
79 OP_DELETE
, /* delete entries from existing database */
80 OP_TEST
/* change no databases, report potential problems */
84 FORM_NONE
, /* format is unknown */
85 FORM_SRC
, /* format is -man or -mdoc */
86 FORM_CAT
/* format is cat */
90 char *rendered
; /* key in UTF-8 or ASCII form */
91 const struct mpage
*mpage
; /* if set, the owning parse */
92 uint64_t mask
; /* bitmask in sequence */
93 char key
[]; /* may contain escape sequences */
102 struct inodev inodev
; /* used for hashing routine */
103 int64_t pageid
; /* pageid in mpages SQL table */
104 enum form form
; /* format from file content */
105 char *sec
; /* section from file content */
106 char *arch
; /* architecture from file content */
107 char *title
; /* title from file content */
108 char *desc
; /* description from file content */
109 struct mlink
*mlinks
; /* singly linked list */
113 char file
[PATH_MAX
]; /* filename rel. to manpath */
114 enum form dform
; /* format from directory */
115 enum form fform
; /* format from file name suffix */
116 char *dsec
; /* section from directory */
117 char *arch
; /* architecture from directory */
118 char *name
; /* name from file name (not empty) */
119 char *fsec
; /* section from file name suffix */
120 struct mlink
*next
; /* singly linked list */
121 struct mpage
*mpage
; /* parent */
122 int gzip
; /* filename has a .gz suffix */
126 STMT_DELETE_PAGE
= 0, /* delete mpage */
127 STMT_INSERT_PAGE
, /* insert mpage */
128 STMT_INSERT_LINK
, /* insert mlink */
129 STMT_INSERT_NAME
, /* insert name */
130 STMT_INSERT_KEY
, /* insert parsed key */
134 typedef int (*mdoc_fp
)(struct mpage
*, const struct mdoc_node
*);
136 struct mdoc_handler
{
137 mdoc_fp fp
; /* optional handler */
138 uint64_t mask
; /* set unless handler returns 0 */
141 static void dbclose(int);
142 static void dbadd(struct mpage
*, struct mchars
*);
143 static void dbadd_mlink(const struct mlink
*mlink
);
144 static int dbopen(int);
145 static void dbprune(void);
146 static void filescan(const char *);
147 static void *hash_alloc(size_t, void *);
148 static void hash_free(void *, void *);
149 static void *hash_calloc(size_t, size_t, void *);
150 static void mlink_add(struct mlink
*, const struct stat
*);
151 static void mlink_check(struct mpage
*, struct mlink
*);
152 static void mlink_free(struct mlink
*);
153 static void mlinks_undupe(struct mpage
*);
154 static void mpages_free(void);
155 static void mpages_merge(struct mchars
*, struct mparse
*);
156 static void names_check(void);
157 static void parse_cat(struct mpage
*, int);
158 static void parse_man(struct mpage
*, const struct man_node
*);
159 static void parse_mdoc(struct mpage
*, const struct mdoc_node
*);
160 static int parse_mdoc_body(struct mpage
*, const struct mdoc_node
*);
161 static int parse_mdoc_head(struct mpage
*, const struct mdoc_node
*);
162 static int parse_mdoc_Fd(struct mpage
*, const struct mdoc_node
*);
163 static int parse_mdoc_Fn(struct mpage
*, const struct mdoc_node
*);
164 static int parse_mdoc_Nd(struct mpage
*, const struct mdoc_node
*);
165 static int parse_mdoc_Nm(struct mpage
*, const struct mdoc_node
*);
166 static int parse_mdoc_Sh(struct mpage
*, const struct mdoc_node
*);
167 static int parse_mdoc_Xr(struct mpage
*, const struct mdoc_node
*);
168 static void putkey(const struct mpage
*, char *, uint64_t);
169 static void putkeys(const struct mpage
*,
170 const char *, size_t, uint64_t);
171 static void putmdockey(const struct mpage
*,
172 const struct mdoc_node
*, uint64_t);
173 static void render_key(struct mchars
*, struct str
*);
174 static void say(const char *, const char *, ...);
175 static int set_basedir(const char *);
176 static int treescan(void);
177 static size_t utf8(unsigned int, char [7]);
179 static char tempfilename
[32];
180 static char *progname
;
181 static int nodb
; /* no database changes */
182 static int mparse_options
; /* abort the parse early */
183 static int use_all
; /* use all found files */
184 static int debug
; /* print what we're doing */
185 static int warnings
; /* warn about crap */
186 static int write_utf8
; /* write UTF-8 output; else ASCII */
187 static int exitcode
; /* to be returned by main */
188 static enum op op
; /* operational mode */
189 static char basedir
[PATH_MAX
]; /* current base directory */
190 static struct ohash mpages
; /* table of distinct manual pages */
191 static struct ohash mlinks
; /* table of directory entries */
192 static struct ohash names
; /* table of all names */
193 static struct ohash strings
; /* table of all strings */
194 static sqlite3
*db
= NULL
; /* current database */
195 static sqlite3_stmt
*stmts
[STMT__MAX
]; /* current statements */
196 static uint64_t name_mask
;
198 static const struct mdoc_handler mdocs
[MDOC_MAX
] = {
199 { NULL
, 0 }, /* Ap */
200 { NULL
, 0 }, /* Dd */
201 { NULL
, 0 }, /* Dt */
202 { NULL
, 0 }, /* Os */
203 { parse_mdoc_Sh
, TYPE_Sh
}, /* Sh */
204 { parse_mdoc_head
, TYPE_Ss
}, /* Ss */
205 { NULL
, 0 }, /* Pp */
206 { NULL
, 0 }, /* D1 */
207 { NULL
, 0 }, /* Dl */
208 { NULL
, 0 }, /* Bd */
209 { NULL
, 0 }, /* Ed */
210 { NULL
, 0 }, /* Bl */
211 { NULL
, 0 }, /* El */
212 { NULL
, 0 }, /* It */
213 { NULL
, 0 }, /* Ad */
214 { NULL
, TYPE_An
}, /* An */
215 { NULL
, TYPE_Ar
}, /* Ar */
216 { NULL
, TYPE_Cd
}, /* Cd */
217 { NULL
, TYPE_Cm
}, /* Cm */
218 { NULL
, TYPE_Dv
}, /* Dv */
219 { NULL
, TYPE_Er
}, /* Er */
220 { NULL
, TYPE_Ev
}, /* Ev */
221 { NULL
, 0 }, /* Ex */
222 { NULL
, TYPE_Fa
}, /* Fa */
223 { parse_mdoc_Fd
, 0 }, /* Fd */
224 { NULL
, TYPE_Fl
}, /* Fl */
225 { parse_mdoc_Fn
, 0 }, /* Fn */
226 { NULL
, TYPE_Ft
}, /* Ft */
227 { NULL
, TYPE_Ic
}, /* Ic */
228 { NULL
, TYPE_In
}, /* In */
229 { NULL
, TYPE_Li
}, /* Li */
230 { parse_mdoc_Nd
, 0 }, /* Nd */
231 { parse_mdoc_Nm
, 0 }, /* Nm */
232 { NULL
, 0 }, /* Op */
233 { NULL
, 0 }, /* Ot */
234 { NULL
, TYPE_Pa
}, /* Pa */
235 { NULL
, 0 }, /* Rv */
236 { NULL
, TYPE_St
}, /* St */
237 { NULL
, TYPE_Va
}, /* Va */
238 { parse_mdoc_body
, TYPE_Va
}, /* Vt */
239 { parse_mdoc_Xr
, 0 }, /* Xr */
240 { NULL
, 0 }, /* %A */
241 { NULL
, 0 }, /* %B */
242 { NULL
, 0 }, /* %D */
243 { NULL
, 0 }, /* %I */
244 { NULL
, 0 }, /* %J */
245 { NULL
, 0 }, /* %N */
246 { NULL
, 0 }, /* %O */
247 { NULL
, 0 }, /* %P */
248 { NULL
, 0 }, /* %R */
249 { NULL
, 0 }, /* %T */
250 { NULL
, 0 }, /* %V */
251 { NULL
, 0 }, /* Ac */
252 { NULL
, 0 }, /* Ao */
253 { NULL
, 0 }, /* Aq */
254 { NULL
, TYPE_At
}, /* At */
255 { NULL
, 0 }, /* Bc */
256 { NULL
, 0 }, /* Bf */
257 { NULL
, 0 }, /* Bo */
258 { NULL
, 0 }, /* Bq */
259 { NULL
, TYPE_Bsx
}, /* Bsx */
260 { NULL
, TYPE_Bx
}, /* Bx */
261 { NULL
, 0 }, /* Db */
262 { NULL
, 0 }, /* Dc */
263 { NULL
, 0 }, /* Do */
264 { NULL
, 0 }, /* Dq */
265 { NULL
, 0 }, /* Ec */
266 { NULL
, 0 }, /* Ef */
267 { NULL
, TYPE_Em
}, /* Em */
268 { NULL
, 0 }, /* Eo */
269 { NULL
, TYPE_Fx
}, /* Fx */
270 { NULL
, TYPE_Ms
}, /* Ms */
271 { NULL
, 0 }, /* No */
272 { NULL
, 0 }, /* Ns */
273 { NULL
, TYPE_Nx
}, /* Nx */
274 { NULL
, TYPE_Ox
}, /* Ox */
275 { NULL
, 0 }, /* Pc */
276 { NULL
, 0 }, /* Pf */
277 { NULL
, 0 }, /* Po */
278 { NULL
, 0 }, /* Pq */
279 { NULL
, 0 }, /* Qc */
280 { NULL
, 0 }, /* Ql */
281 { NULL
, 0 }, /* Qo */
282 { NULL
, 0 }, /* Qq */
283 { NULL
, 0 }, /* Re */
284 { NULL
, 0 }, /* Rs */
285 { NULL
, 0 }, /* Sc */
286 { NULL
, 0 }, /* So */
287 { NULL
, 0 }, /* Sq */
288 { NULL
, 0 }, /* Sm */
289 { NULL
, 0 }, /* Sx */
290 { NULL
, TYPE_Sy
}, /* Sy */
291 { NULL
, TYPE_Tn
}, /* Tn */
292 { NULL
, 0 }, /* Ux */
293 { NULL
, 0 }, /* Xc */
294 { NULL
, 0 }, /* Xo */
295 { parse_mdoc_head
, 0 }, /* Fo */
296 { NULL
, 0 }, /* Fc */
297 { NULL
, 0 }, /* Oo */
298 { NULL
, 0 }, /* Oc */
299 { NULL
, 0 }, /* Bk */
300 { NULL
, 0 }, /* Ek */
301 { NULL
, 0 }, /* Bt */
302 { NULL
, 0 }, /* Hf */
303 { NULL
, 0 }, /* Fr */
304 { NULL
, 0 }, /* Ud */
305 { NULL
, TYPE_Lb
}, /* Lb */
306 { NULL
, 0 }, /* Lp */
307 { NULL
, TYPE_Lk
}, /* Lk */
308 { NULL
, TYPE_Mt
}, /* Mt */
309 { NULL
, 0 }, /* Brq */
310 { NULL
, 0 }, /* Bro */
311 { NULL
, 0 }, /* Brc */
312 { NULL
, 0 }, /* %C */
313 { NULL
, 0 }, /* Es */
314 { NULL
, 0 }, /* En */
315 { NULL
, TYPE_Dx
}, /* Dx */
316 { NULL
, 0 }, /* %Q */
317 { NULL
, 0 }, /* br */
318 { NULL
, 0 }, /* sp */
319 { NULL
, 0 }, /* %U */
320 { NULL
, 0 }, /* Ta */
325 main(int argc
, char *argv
[])
329 const char *path_arg
;
331 struct manpaths dirs
;
333 struct ohash_info mpages_info
, mlinks_info
;
335 memset(stmts
, 0, STMT__MAX
* sizeof(sqlite3_stmt
*));
336 memset(&dirs
, 0, sizeof(struct manpaths
));
338 mpages_info
.alloc
= mlinks_info
.alloc
= hash_alloc
;
339 mpages_info
.calloc
= mlinks_info
.calloc
= hash_calloc
;
340 mpages_info
.free
= mlinks_info
.free
= hash_free
;
342 mpages_info
.key_offset
= offsetof(struct mpage
, inodev
);
343 mlinks_info
.key_offset
= offsetof(struct mlink
, file
);
345 progname
= strrchr(argv
[0], '/');
346 if (progname
== NULL
)
352 * We accept a few different invocations.
353 * The CHECKOP macro makes sure that invocation styles don't
354 * clobber each other.
356 #define CHECKOP(_op, _ch) do \
357 if (OP_DEFAULT != (_op)) { \
358 fprintf(stderr, "%s: -%c: Conflicting option\n", \
361 } while (/*CONSTCOND*/0)
366 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
391 mparse_options
|= MPARSE_QUICK
;
394 if (strcmp(optarg
, "utf8")) {
395 fprintf(stderr
, "%s: -T%s: "
396 "Unsupported output format\n",
404 dup2(STDOUT_FILENO
, STDERR_FILENO
);
414 /* Compatibility with espie@'s makewhatis. */
423 if (OP_CONFFILE
== op
&& argc
> 0) {
424 fprintf(stderr
, "%s: -C: Too many arguments\n",
429 exitcode
= (int)MANDOCLEVEL_OK
;
430 mp
= mparse_alloc(mparse_options
, MANDOCLEVEL_FATAL
, NULL
, NULL
);
433 ohash_init(&mpages
, 6, &mpages_info
);
434 ohash_init(&mlinks
, 6, &mlinks_info
);
436 if (OP_UPDATE
== op
|| OP_DELETE
== op
|| OP_TEST
== op
) {
439 * Most of these deal with a specific directory.
440 * Jump into that directory first.
442 if (OP_TEST
!= op
&& 0 == set_basedir(path_arg
))
447 * The existing database is usable. Process
448 * all files specified on the command-line.
451 for (i
= 0; i
< argc
; i
++)
457 * Database missing or corrupt.
458 * Recreate from scratch.
460 exitcode
= (int)MANDOCLEVEL_OK
;
468 mpages_merge(mc
, mp
);
469 dbclose(OP_DEFAULT
== op
? 0 : 1);
472 * If we have arguments, use them as our manpaths.
473 * If we don't, grok from manpath(1) or however else
474 * manpath_parse() wants to do it.
477 dirs
.paths
= mandoc_reallocarray(NULL
,
478 argc
, sizeof(char *));
479 dirs
.sz
= (size_t)argc
;
480 for (i
= 0; i
< argc
; i
++)
481 dirs
.paths
[i
] = mandoc_strdup(argv
[i
]);
483 manpath_parse(&dirs
, path_arg
, NULL
, NULL
);
486 exitcode
= (int)MANDOCLEVEL_BADARG
;
487 say("", "Empty manpath");
491 * First scan the tree rooted at a base directory, then
492 * build a new database and finally move it into place.
493 * Ignore zero-length directories and strip trailing
496 for (j
= 0; j
< dirs
.sz
; j
++) {
497 sz
= strlen(dirs
.paths
[j
]);
498 if (sz
&& '/' == dirs
.paths
[j
][sz
- 1])
499 dirs
.paths
[j
][--sz
] = '\0';
504 ohash_init(&mpages
, 6, &mpages_info
);
505 ohash_init(&mlinks
, 6, &mlinks_info
);
508 if (0 == set_basedir(dirs
.paths
[j
]))
515 mpages_merge(mc
, mp
);
516 if (warnings
&& !nodb
&&
517 ! (MPARSE_QUICK
& mparse_options
))
521 if (j
+ 1 < dirs
.sz
) {
523 ohash_delete(&mpages
);
524 ohash_delete(&mlinks
);
533 ohash_delete(&mpages
);
534 ohash_delete(&mlinks
);
537 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
538 " %s [-aDnpQ] [-Tutf8] dir ...\n"
539 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
540 " %s [-Dnp] -u dir [file ...]\n"
541 " %s [-Q] -t file ...\n",
542 progname
, progname
, progname
,
545 return((int)MANDOCLEVEL_BADARG
);
549 * Scan a directory tree rooted at "basedir" for manpages.
550 * We use fts(), scanning directory parts along the way for clues to our
551 * section and architecture.
553 * If use_all has been specified, grok all files.
554 * If not, sanitise paths to the following:
556 * [./]man*[/<arch>]/<name>.<section>
558 * [./]cat<section>[/<arch>]/<name>.0
560 * TODO: accomodate for multi-language directories.
570 char *dsec
, *arch
, *fsec
, *cp
;
575 argv
[1] = (char *)NULL
;
577 f
= fts_open((char * const *)argv
,
578 FTS_PHYSICAL
| FTS_NOCHDIR
, NULL
);
580 exitcode
= (int)MANDOCLEVEL_SYSERR
;
581 say("", "&fts_open");
588 while (NULL
!= (ff
= fts_read(f
))) {
589 path
= ff
->fts_path
+ 2;
590 switch (ff
->fts_info
) {
593 * Symbolic links require various sanity checks,
594 * then get handled just like regular files.
597 if (NULL
== realpath(path
, buf
)) {
599 say(path
, "&realpath");
602 if (strstr(buf
, basedir
) != buf
) {
603 if (warnings
) say("",
604 "%s: outside base directory", buf
);
607 /* Use logical inode to avoid mpages dupe. */
608 if (-1 == stat(path
, ff
->fts_statp
)) {
616 * If we're a regular file, add an mlink by using the
617 * stored directory data and handling the filename.
620 if (0 == strcmp(path
, MANDOC_DB
))
622 if ( ! use_all
&& ff
->fts_level
< 2) {
624 say(path
, "Extraneous file");
629 while (NULL
== fsec
) {
630 fsec
= strrchr(ff
->fts_name
, '.');
631 if (NULL
== fsec
|| strcmp(fsec
+1, "gz"))
641 "No filename suffix");
644 } else if (0 == strcmp(++fsec
, "html")) {
646 say(path
, "Skip html");
648 } else if (0 == strcmp(fsec
, "ps")) {
650 say(path
, "Skip ps");
652 } else if (0 == strcmp(fsec
, "pdf")) {
654 say(path
, "Skip pdf");
656 } else if ( ! use_all
&&
657 ((FORM_SRC
== dform
&& strcmp(fsec
, dsec
)) ||
658 (FORM_CAT
== dform
&& strcmp(fsec
, "0")))) {
660 say(path
, "Wrong filename suffix");
665 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
666 if (strlcpy(mlink
->file
, path
,
667 sizeof(mlink
->file
)) >=
668 sizeof(mlink
->file
)) {
669 say(path
, "Filename too long");
673 mlink
->dform
= dform
;
676 mlink
->name
= ff
->fts_name
;
679 mlink_add(mlink
, ff
->fts_statp
);
689 say(path
, "Not a regular file");
693 switch (ff
->fts_level
) {
695 /* Ignore the root directory. */
699 * This might contain manX/ or catX/.
700 * Try to infer this from the name.
701 * If we're not in use_all, enforce it.
704 if (FTS_DP
== ff
->fts_info
)
707 if (0 == strncmp(cp
, "man", 3)) {
710 } else if (0 == strncmp(cp
, "cat", 3)) {
718 if (NULL
!= dsec
|| use_all
)
722 say(path
, "Unknown directory part");
723 fts_set(f
, ff
, FTS_SKIP
);
727 * Possibly our architecture.
728 * If we're descending, keep tabs on it.
730 if (FTS_DP
!= ff
->fts_info
&& NULL
!= dsec
)
736 if (FTS_DP
== ff
->fts_info
|| use_all
)
739 say(path
, "Extraneous directory part");
740 fts_set(f
, ff
, FTS_SKIP
);
750 * Add a file to the mlinks table.
751 * Do not verify that it's a "valid" looking manpage (we'll do that
754 * Try to infer the manual section, architecture, and page name from the
755 * path, assuming it looks like
757 * [./]man*[/<arch>]/<name>.<section>
759 * [./]cat<section>[/<arch>]/<name>.0
761 * See treescan() for the fts(3) version of this.
764 filescan(const char *file
)
773 if (0 == strncmp(file
, "./", 2))
777 * We have to do lstat(2) before realpath(3) loses
778 * the information whether this is a symbolic link.
779 * We need to know that because for symbolic links,
780 * we want to use the orginal file name, while for
781 * regular files, we want to use the real path.
783 if (-1 == lstat(file
, &st
)) {
784 exitcode
= (int)MANDOCLEVEL_BADARG
;
787 } else if (0 == ((S_IFREG
| S_IFLNK
) & st
.st_mode
)) {
788 exitcode
= (int)MANDOCLEVEL_BADARG
;
789 say(file
, "Not a regular file");
794 * We have to resolve the file name to the real path
795 * in any case for the base directory check.
797 if (NULL
== realpath(file
, buf
)) {
798 exitcode
= (int)MANDOCLEVEL_BADARG
;
799 say(file
, "&realpath");
805 else if (strstr(buf
, basedir
) == buf
)
806 start
= buf
+ strlen(basedir
);
808 exitcode
= (int)MANDOCLEVEL_BADARG
;
809 say("", "%s: outside base directory", buf
);
814 * Now we are sure the file is inside our tree.
815 * If it is a symbolic link, ignore the real path
816 * and use the original name.
817 * This implies passing stuff like "cat1/../man1/foo.1"
818 * on the command line won't work. So don't do that.
819 * Note the stat(2) can still fail if the link target
822 if (S_IFLNK
& st
.st_mode
) {
823 if (-1 == stat(buf
, &st
)) {
824 exitcode
= (int)MANDOCLEVEL_BADARG
;
828 if (strlcpy(buf
, file
, sizeof(buf
)) >= sizeof(buf
)) {
829 say(file
, "Filename too long");
833 if (OP_TEST
!= op
&& strstr(buf
, basedir
) == buf
)
834 start
+= strlen(basedir
);
837 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
838 if (strlcpy(mlink
->file
, start
, sizeof(mlink
->file
)) >=
839 sizeof(mlink
->file
)) {
840 say(start
, "Filename too long");
845 * First try to guess our directory structure.
846 * If we find a separator, try to look for man* or cat*.
847 * If we find one of these and what's underneath is a directory,
848 * assume it's an architecture.
850 if (NULL
!= (p
= strchr(start
, '/'))) {
852 if (0 == strncmp(start
, "man", 3)) {
853 mlink
->dform
= FORM_SRC
;
854 mlink
->dsec
= start
+ 3;
855 } else if (0 == strncmp(start
, "cat", 3)) {
856 mlink
->dform
= FORM_CAT
;
857 mlink
->dsec
= start
+ 3;
861 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
869 * Now check the file suffix.
870 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
872 p
= strrchr(start
, '\0');
873 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
882 * Now try to parse the name.
883 * Use the filename portion of the path.
886 if (NULL
!= (p
= strrchr(start
, '/'))) {
890 mlink_add(mlink
, &st
);
894 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
896 struct inodev inodev
;
900 assert(NULL
!= mlink
->file
);
902 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
903 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
904 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
905 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
907 if ('0' == *mlink
->fsec
) {
909 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
910 mlink
->fform
= FORM_CAT
;
911 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
912 mlink
->fform
= FORM_SRC
;
914 mlink
->fform
= FORM_NONE
;
916 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
917 assert(NULL
== ohash_find(&mlinks
, slot
));
918 ohash_insert(&mlinks
, slot
, mlink
);
920 inodev
.st_ino
= st
->st_ino
;
921 inodev
.st_dev
= st
->st_dev
;
922 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
923 sizeof(struct inodev
), inodev
.st_ino
);
924 mpage
= ohash_find(&mpages
, slot
);
926 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
927 mpage
->inodev
.st_ino
= inodev
.st_ino
;
928 mpage
->inodev
.st_dev
= inodev
.st_dev
;
929 ohash_insert(&mpages
, slot
, mpage
);
931 mlink
->next
= mpage
->mlinks
;
932 mpage
->mlinks
= mlink
;
933 mlink
->mpage
= mpage
;
937 mlink_free(struct mlink
*mlink
)
954 mpage
= ohash_first(&mpages
, &slot
);
955 while (NULL
!= mpage
) {
956 while (NULL
!= (mlink
= mpage
->mlinks
)) {
957 mpage
->mlinks
= mlink
->next
;
965 mpage
= ohash_next(&mpages
, &slot
);
970 * For each mlink to the mpage, check whether the path looks like
971 * it is formatted, and if it does, check whether a source manual
972 * exists by the same name, ignoring the suffix.
973 * If both conditions hold, drop the mlink.
976 mlinks_undupe(struct mpage
*mpage
)
983 mpage
->form
= FORM_CAT
;
984 prev
= &mpage
->mlinks
;
985 while (NULL
!= (mlink
= *prev
)) {
986 if (FORM_CAT
!= mlink
->dform
) {
987 mpage
->form
= FORM_NONE
;
990 (void)strlcpy(buf
, mlink
->file
, sizeof(buf
));
991 bufp
= strstr(buf
, "cat");
992 assert(NULL
!= bufp
);
993 memcpy(bufp
, "man", 3);
994 if (NULL
!= (bufp
= strrchr(buf
, '.')))
996 (void)strlcat(buf
, mlink
->dsec
, sizeof(buf
));
997 if (NULL
== ohash_find(&mlinks
,
998 ohash_qlookup(&mlinks
, buf
)))
1001 say(mlink
->file
, "Man source exists: %s", buf
);
1004 *prev
= mlink
->next
;
1008 prev
= &(*prev
)->next
;
1013 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
1019 * Check whether the manual section given in a file
1020 * agrees with the directory where the file is located.
1021 * Some manuals have suffixes like (3p) on their
1022 * section number either inside the file or in the
1023 * directory name, some are linked into more than one
1024 * section, like encrypt(1) = makekey(8).
1027 if (FORM_SRC
== mpage
->form
&&
1028 strcasecmp(mpage
->sec
, mlink
->dsec
))
1029 say(mlink
->file
, "Section \"%s\" manual in %s directory",
1030 mpage
->sec
, mlink
->dsec
);
1033 * Manual page directories exist for each kernel
1034 * architecture as returned by machine(1).
1035 * However, many manuals only depend on the
1036 * application architecture as returned by arch(1).
1037 * For example, some (2/ARM) manuals are shared
1038 * across the "armish" and "zaurus" kernel
1040 * A few manuals are even shared across completely
1041 * different architectures, for example fdformat(1)
1042 * on amd64, i386, sparc, and sparc64.
1045 if (strcasecmp(mpage
->arch
, mlink
->arch
))
1046 say(mlink
->file
, "Architecture \"%s\" manual in "
1047 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
1051 * parse_cat() doesn't set NAME_TITLE yet.
1054 if (FORM_CAT
== mpage
->form
)
1058 * Check whether this mlink
1059 * appears as a name in the NAME section.
1062 slot
= ohash_qlookup(&names
, mlink
->name
);
1063 str
= ohash_find(&names
, slot
);
1064 assert(NULL
!= str
);
1065 if ( ! (NAME_TITLE
& str
->mask
))
1066 say(mlink
->file
, "Name missing in NAME section");
1070 * Run through the files in the global vector "mpages"
1071 * and add them to the database specified in "basedir".
1073 * This handles the parsing scheme itself, using the cues of directory
1074 * and filename to determine whether the file is parsable or not.
1077 mpages_merge(struct mchars
*mc
, struct mparse
*mp
)
1080 struct ohash_info str_info
;
1082 struct mpage
*mpage
, *mpage_dest
;
1083 struct mlink
*mlink
, *mlink_dest
;
1091 enum mandoclevel lvl
;
1093 str_info
.alloc
= hash_alloc
;
1094 str_info
.calloc
= hash_calloc
;
1095 str_info
.free
= hash_free
;
1096 str_info
.key_offset
= offsetof(struct str
, key
);
1099 SQL_EXEC("BEGIN TRANSACTION");
1101 mpage
= ohash_first(&mpages
, &pslot
);
1102 while (NULL
!= mpage
) {
1103 mlinks_undupe(mpage
);
1104 if (NULL
== mpage
->mlinks
) {
1105 mpage
= ohash_next(&mpages
, &pslot
);
1109 name_mask
= NAME_MASK
;
1110 ohash_init(&names
, 4, &str_info
);
1111 ohash_init(&strings
, 6, &str_info
);
1120 if (mpage
->mlinks
->gzip
) {
1121 if (-1 == pipe(fd
)) {
1122 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1123 say(mpage
->mlinks
->file
, "&pipe gunzip");
1126 switch (child_pid
= fork()) {
1128 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1129 say(mpage
->mlinks
->file
, "&fork gunzip");
1136 if (-1 == dup2(fd
[1], STDOUT_FILENO
)) {
1137 say(mpage
->mlinks
->file
,
1141 execlp("gunzip", "gunzip", "-c",
1142 mpage
->mlinks
->file
, NULL
);
1143 say(mpage
->mlinks
->file
, "&exec gunzip");
1152 * Try interpreting the file as mdoc(7) or man(7)
1153 * source code, unless it is already known to be
1154 * formatted. Fall back to formatted mode.
1156 if (FORM_CAT
!= mpage
->mlinks
->dform
||
1157 FORM_CAT
!= mpage
->mlinks
->fform
) {
1158 lvl
= mparse_readfd(mp
, fd
[0], mpage
->mlinks
->file
);
1159 if (lvl
< MANDOCLEVEL_FATAL
)
1160 mparse_result(mp
, &mdoc
, &man
, &sodest
);
1163 if (NULL
!= sodest
) {
1164 mlink_dest
= ohash_find(&mlinks
,
1165 ohash_qlookup(&mlinks
, sodest
));
1166 if (NULL
!= mlink_dest
) {
1168 /* The .so target exists. */
1170 mpage_dest
= mlink_dest
->mpage
;
1171 mlink
= mpage
->mlinks
;
1173 mlink
->mpage
= mpage_dest
;
1176 * If the target was already
1177 * processed, add the links
1178 * to the database now.
1179 * Otherwise, this will
1180 * happen when we come
1184 if (mpage_dest
->pageid
)
1187 if (NULL
== mlink
->next
)
1189 mlink
= mlink
->next
;
1192 /* Move all links to the target. */
1194 mlink
->next
= mlink_dest
->next
;
1195 mlink_dest
->next
= mpage
->mlinks
;
1196 mpage
->mlinks
= NULL
;
1199 } else if (NULL
!= mdoc
) {
1200 mpage
->form
= FORM_SRC
;
1201 mpage
->sec
= mdoc_meta(mdoc
)->msec
;
1202 mpage
->sec
= mandoc_strdup(
1203 NULL
== mpage
->sec
? "" : mpage
->sec
);
1204 mpage
->arch
= mdoc_meta(mdoc
)->arch
;
1205 mpage
->arch
= mandoc_strdup(
1206 NULL
== mpage
->arch
? "" : mpage
->arch
);
1208 mandoc_strdup(mdoc_meta(mdoc
)->title
);
1209 } else if (NULL
!= man
) {
1210 mpage
->form
= FORM_SRC
;
1212 mandoc_strdup(man_meta(man
)->msec
);
1214 mandoc_strdup(mpage
->mlinks
->arch
);
1216 mandoc_strdup(man_meta(man
)->title
);
1218 mpage
->form
= FORM_CAT
;
1220 mandoc_strdup(mpage
->mlinks
->dsec
);
1222 mandoc_strdup(mpage
->mlinks
->arch
);
1224 mandoc_strdup(mpage
->mlinks
->name
);
1226 putkey(mpage
, mpage
->sec
, TYPE_sec
);
1227 putkey(mpage
, '\0' == *mpage
->arch
?
1228 any
: mpage
->arch
, TYPE_arch
);
1230 for (mlink
= mpage
->mlinks
; mlink
; mlink
= mlink
->next
) {
1231 if ('\0' != *mlink
->dsec
)
1232 putkey(mpage
, mlink
->dsec
, TYPE_sec
);
1233 if ('\0' != *mlink
->fsec
)
1234 putkey(mpage
, mlink
->fsec
, TYPE_sec
);
1235 putkey(mpage
, '\0' == *mlink
->arch
?
1236 any
: mlink
->arch
, TYPE_arch
);
1237 putkey(mpage
, mlink
->name
, NAME_FILE
);
1240 assert(NULL
== mpage
->desc
);
1242 if (NULL
!= (cp
= mdoc_meta(mdoc
)->name
))
1243 putkey(mpage
, cp
, NAME_HEAD
);
1244 parse_mdoc(mpage
, mdoc_node(mdoc
));
1245 } else if (NULL
!= man
)
1246 parse_man(mpage
, man_node(man
));
1248 parse_cat(mpage
, fd
[0]);
1249 if (NULL
== mpage
->desc
)
1250 mpage
->desc
= mandoc_strdup(mpage
->mlinks
->name
);
1252 if (warnings
&& !use_all
)
1253 for (mlink
= mpage
->mlinks
; mlink
;
1254 mlink
= mlink
->next
)
1255 mlink_check(mpage
, mlink
);
1261 if (-1 == waitpid(child_pid
, &status
, 0)) {
1262 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1263 say(mpage
->mlinks
->file
, "&wait gunzip");
1264 } else if (WIFSIGNALED(status
)) {
1265 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1266 say(mpage
->mlinks
->file
,
1267 "gunzip died from signal %d",
1269 } else if (WEXITSTATUS(status
)) {
1270 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1271 say(mpage
->mlinks
->file
,
1272 "gunzip failed with code %d",
1273 WEXITSTATUS(status
));
1276 ohash_delete(&strings
);
1277 ohash_delete(&names
);
1278 mpage
= ohash_next(&mpages
, &pslot
);
1282 SQL_EXEC("END TRANSACTION");
1289 const char *name
, *sec
, *arch
, *key
;
1292 sqlite3_prepare_v2(db
,
1293 "SELECT name, sec, arch, key FROM ("
1294 "SELECT name AS key, pageid FROM names "
1295 "WHERE bits & ? AND NOT EXISTS ("
1296 "SELECT pageid FROM mlinks "
1297 "WHERE mlinks.pageid == names.pageid "
1298 "AND mlinks.name == names.name"
1301 "SELECT sec, arch, name, pageid FROM mlinks "
1303 ") USING (pageid);",
1306 if (SQLITE_OK
!= sqlite3_bind_int64(stmt
, 1, NAME_TITLE
))
1307 say("", "%s", sqlite3_errmsg(db
));
1309 while (SQLITE_ROW
== (irc
= sqlite3_step(stmt
))) {
1310 name
= (const char *)sqlite3_column_text(stmt
, 0);
1311 sec
= (const char *)sqlite3_column_text(stmt
, 1);
1312 arch
= (const char *)sqlite3_column_text(stmt
, 2);
1313 key
= (const char *)sqlite3_column_text(stmt
, 3);
1314 say("", "%s(%s%s%s) lacks mlink \"%s\"", name
, sec
,
1315 '\0' == *arch
? "" : "/",
1316 '\0' == *arch
? "" : arch
, key
);
1318 sqlite3_finalize(stmt
);
1322 parse_cat(struct mpage
*mpage
, int fd
)
1325 char *line
, *p
, *title
;
1326 size_t len
, plen
, titlesz
;
1328 stream
= (-1 == fd
) ?
1329 fopen(mpage
->mlinks
->file
, "r") :
1331 if (NULL
== stream
) {
1333 say(mpage
->mlinks
->file
, "&fopen");
1337 /* Skip to first blank line. */
1339 while (NULL
!= (line
= fgetln(stream
, &len
)))
1344 * Assume the first line that is not indented
1345 * is the first section header. Skip to it.
1348 while (NULL
!= (line
= fgetln(stream
, &len
)))
1349 if ('\n' != *line
&& ' ' != *line
)
1353 * Read up until the next section into a buffer.
1354 * Strip the leading and trailing newline from each read line,
1355 * appending a trailing space.
1356 * Ignore empty (whitespace-only) lines.
1362 while (NULL
!= (line
= fgetln(stream
, &len
))) {
1363 if (' ' != *line
|| '\n' != line
[len
- 1])
1365 while (len
> 0 && isspace((unsigned char)*line
)) {
1371 title
= mandoc_realloc(title
, titlesz
+ len
);
1372 memcpy(title
+ titlesz
, line
, len
);
1374 title
[titlesz
- 1] = ' ';
1378 * If no page content can be found, or the input line
1379 * is already the next section header, or there is no
1380 * trailing newline, reuse the page title as the page
1384 if (NULL
== title
|| '\0' == *title
) {
1386 say(mpage
->mlinks
->file
,
1387 "Cannot find NAME section");
1393 title
= mandoc_realloc(title
, titlesz
+ 1);
1394 title
[titlesz
] = '\0';
1397 * Skip to the first dash.
1398 * Use the remaining line as the description (no more than 70
1402 if (NULL
!= (p
= strstr(title
, "- "))) {
1403 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1404 /* Skip to next word. */ ;
1407 say(mpage
->mlinks
->file
,
1408 "No dash in title line");
1414 /* Strip backspace-encoding from line. */
1416 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1419 memmove(line
, line
+ 1, plen
--);
1422 memmove(line
- 1, line
+ 1, plen
- len
);
1426 mpage
->desc
= mandoc_strdup(p
);
1432 * Put a type/word pair into the word database for this particular file.
1435 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1439 assert(NULL
!= value
);
1440 if (TYPE_arch
== type
)
1441 for (cp
= value
; *cp
; cp
++)
1442 if (isupper((unsigned char)*cp
))
1443 *cp
= _tolower((unsigned char)*cp
);
1444 putkeys(mpage
, value
, strlen(value
), type
);
1448 * Grok all nodes at or below a certain mdoc node into putkey().
1451 putmdockey(const struct mpage
*mpage
,
1452 const struct mdoc_node
*n
, uint64_t m
)
1455 for ( ; NULL
!= n
; n
= n
->next
) {
1456 if (NULL
!= n
->child
)
1457 putmdockey(mpage
, n
->child
, m
);
1458 if (MDOC_TEXT
== n
->type
)
1459 putkey(mpage
, n
->string
, m
);
1464 parse_man(struct mpage
*mpage
, const struct man_node
*n
)
1466 const struct man_node
*head
, *body
;
1467 char *start
, *title
;
1475 * We're only searching for one thing: the first text child in
1476 * the BODY of a NAME section. Since we don't keep track of
1477 * sections in -man, run some hoops to find out whether we're in
1478 * the correct section or not.
1481 if (MAN_BODY
== n
->type
&& MAN_SH
== n
->tok
) {
1483 assert(body
->parent
);
1484 if (NULL
!= (head
= body
->parent
->head
) &&
1485 1 == head
->nchild
&&
1486 NULL
!= (head
= (head
->child
)) &&
1487 MAN_TEXT
== head
->type
&&
1488 0 == strcmp(head
->string
, "NAME") &&
1489 NULL
!= body
->child
) {
1492 * Suck the entire NAME section into memory.
1493 * Yes, we might run away.
1494 * But too many manuals have big, spread-out
1495 * NAME sections over many lines.
1499 man_deroff(&title
, body
);
1504 * Go through a special heuristic dance here.
1505 * Conventionally, one or more manual names are
1506 * comma-specified prior to a whitespace, then a
1507 * dash, then a description. Try to puzzle out
1508 * the name parts here.
1513 sz
= strcspn(start
, " ,");
1514 if ('\0' == start
[sz
])
1521 * Assume a stray trailing comma in the
1522 * name list if a name begins with a dash.
1525 if ('-' == start
[0] ||
1526 ('\\' == start
[0] && '-' == start
[1]))
1529 putkey(mpage
, start
, NAME_TITLE
);
1536 assert(',' == byte
);
1538 while (' ' == *start
)
1542 if (start
== title
) {
1543 putkey(mpage
, start
, NAME_TITLE
);
1548 while (isspace((unsigned char)*start
))
1551 if (0 == strncmp(start
, "-", 1))
1553 else if (0 == strncmp(start
, "\\-\\-", 4))
1555 else if (0 == strncmp(start
, "\\-", 2))
1557 else if (0 == strncmp(start
, "\\(en", 4))
1559 else if (0 == strncmp(start
, "\\(em", 4))
1562 while (' ' == *start
)
1565 mpage
->desc
= mandoc_strdup(start
);
1571 for (n
= n
->child
; n
; n
= n
->next
) {
1572 if (NULL
!= mpage
->desc
)
1574 parse_man(mpage
, n
);
1579 parse_mdoc(struct mpage
*mpage
, const struct mdoc_node
*n
)
1583 for (n
= n
->child
; NULL
!= n
; n
= n
->next
) {
1594 if (NULL
!= mdocs
[n
->tok
].fp
)
1595 if (0 == (*mdocs
[n
->tok
].fp
)(mpage
, n
))
1597 if (mdocs
[n
->tok
].mask
)
1598 putmdockey(mpage
, n
->child
,
1599 mdocs
[n
->tok
].mask
);
1602 assert(MDOC_ROOT
!= n
->type
);
1605 if (NULL
!= n
->child
)
1606 parse_mdoc(mpage
, n
);
1611 parse_mdoc_Fd(struct mpage
*mpage
, const struct mdoc_node
*n
)
1613 const char *start
, *end
;
1616 if (SEC_SYNOPSIS
!= n
->sec
||
1617 NULL
== (n
= n
->child
) ||
1618 MDOC_TEXT
!= n
->type
)
1622 * Only consider those `Fd' macro fields that begin with an
1623 * "inclusion" token (versus, e.g., #define).
1626 if (strcmp("#include", n
->string
))
1629 if (NULL
== (n
= n
->next
) || MDOC_TEXT
!= n
->type
)
1633 * Strip away the enclosing angle brackets and make sure we're
1638 if ('<' == *start
|| '"' == *start
)
1641 if (0 == (sz
= strlen(start
)))
1644 end
= &start
[(int)sz
- 1];
1645 if ('>' == *end
|| '"' == *end
)
1649 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1654 parse_mdoc_Fn(struct mpage
*mpage
, const struct mdoc_node
*n
)
1658 if (NULL
== (n
= n
->child
) || MDOC_TEXT
!= n
->type
)
1662 * Parse: .Fn "struct type *name" "char *arg".
1663 * First strip away pointer symbol.
1664 * Then store the function name, then type.
1665 * Finally, store the arguments.
1668 if (NULL
== (cp
= strrchr(n
->string
, ' ')))
1674 putkey(mpage
, cp
, TYPE_Fn
);
1677 putkeys(mpage
, n
->string
, cp
- n
->string
, TYPE_Ft
);
1679 for (n
= n
->next
; NULL
!= n
; n
= n
->next
)
1680 if (MDOC_TEXT
== n
->type
)
1681 putkey(mpage
, n
->string
, TYPE_Fa
);
1687 parse_mdoc_Xr(struct mpage
*mpage
, const struct mdoc_node
*n
)
1691 if (NULL
== (n
= n
->child
))
1694 if (NULL
== n
->next
) {
1695 putkey(mpage
, n
->string
, TYPE_Xr
);
1699 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1700 putkey(mpage
, cp
, TYPE_Xr
);
1706 parse_mdoc_Nd(struct mpage
*mpage
, const struct mdoc_node
*n
)
1709 if (MDOC_BODY
== n
->type
)
1710 mdoc_deroff(&mpage
->desc
, n
);
1715 parse_mdoc_Nm(struct mpage
*mpage
, const struct mdoc_node
*n
)
1718 if (SEC_NAME
== n
->sec
)
1719 putmdockey(mpage
, n
->child
, NAME_TITLE
);
1720 else if (SEC_SYNOPSIS
== n
->sec
&& MDOC_HEAD
== n
->type
)
1721 putmdockey(mpage
, n
->child
, NAME_SYN
);
1726 parse_mdoc_Sh(struct mpage
*mpage
, const struct mdoc_node
*n
)
1729 return(SEC_CUSTOM
== n
->sec
&& MDOC_HEAD
== n
->type
);
1733 parse_mdoc_head(struct mpage
*mpage
, const struct mdoc_node
*n
)
1736 return(MDOC_HEAD
== n
->type
);
1740 parse_mdoc_body(struct mpage
*mpage
, const struct mdoc_node
*n
)
1743 return(MDOC_BODY
== n
->type
);
1747 * Add a string to the hash table for the current manual.
1748 * Each string has a bitmask telling which macros it belongs to.
1749 * When we finish the manual, we'll dump the table.
1752 putkeys(const struct mpage
*mpage
,
1753 const char *cp
, size_t sz
, uint64_t v
)
1767 name_mask
&= ~NAME_FIRST
;
1769 say(mpage
->mlinks
->file
,
1770 "Adding name %*s", sz
, cp
);
1774 for (i
= 0; i
< mansearch_keymax
; i
++)
1776 say(mpage
->mlinks
->file
,
1777 "Adding key %s=%*s",
1778 mansearch_keynames
[i
], sz
, cp
);
1782 slot
= ohash_qlookupi(htab
, cp
, &end
);
1783 s
= ohash_find(htab
, slot
);
1785 if (NULL
!= s
&& mpage
== s
->mpage
) {
1788 } else if (NULL
== s
) {
1789 s
= mandoc_calloc(1, sizeof(struct str
) + sz
+ 1);
1790 memcpy(s
->key
, cp
, sz
);
1791 ohash_insert(htab
, slot
, s
);
1798 * Take a Unicode codepoint and produce its UTF-8 encoding.
1799 * This isn't the best way to do this, but it works.
1800 * The magic numbers are from the UTF-8 packaging.
1801 * They're not as scary as they seem: read the UTF-8 spec for details.
1804 utf8(unsigned int cp
, char out
[7])
1809 if (cp
<= 0x0000007F) {
1812 } else if (cp
<= 0x000007FF) {
1814 out
[0] = (cp
>> 6 & 31) | 192;
1815 out
[1] = (cp
& 63) | 128;
1816 } else if (cp
<= 0x0000FFFF) {
1818 out
[0] = (cp
>> 12 & 15) | 224;
1819 out
[1] = (cp
>> 6 & 63) | 128;
1820 out
[2] = (cp
& 63) | 128;
1821 } else if (cp
<= 0x001FFFFF) {
1823 out
[0] = (cp
>> 18 & 7) | 240;
1824 out
[1] = (cp
>> 12 & 63) | 128;
1825 out
[2] = (cp
>> 6 & 63) | 128;
1826 out
[3] = (cp
& 63) | 128;
1827 } else if (cp
<= 0x03FFFFFF) {
1829 out
[0] = (cp
>> 24 & 3) | 248;
1830 out
[1] = (cp
>> 18 & 63) | 128;
1831 out
[2] = (cp
>> 12 & 63) | 128;
1832 out
[3] = (cp
>> 6 & 63) | 128;
1833 out
[4] = (cp
& 63) | 128;
1834 } else if (cp
<= 0x7FFFFFFF) {
1836 out
[0] = (cp
>> 30 & 1) | 252;
1837 out
[1] = (cp
>> 24 & 63) | 128;
1838 out
[2] = (cp
>> 18 & 63) | 128;
1839 out
[3] = (cp
>> 12 & 63) | 128;
1840 out
[4] = (cp
>> 6 & 63) | 128;
1841 out
[5] = (cp
& 63) | 128;
1850 * Store the rendered version of a key, or alias the pointer
1851 * if the key contains no escape sequences.
1854 render_key(struct mchars
*mc
, struct str
*key
)
1856 size_t sz
, bsz
, pos
;
1857 char utfbuf
[7], res
[6];
1859 const char *seq
, *cpp
, *val
;
1861 enum mandoc_esc esc
;
1863 assert(NULL
== key
->rendered
);
1867 res
[2] = ASCII_NBRSP
;
1868 res
[3] = ASCII_HYPH
;
1869 res
[4] = ASCII_BREAK
;
1876 * Pre-check: if we have no stop-characters, then set the
1877 * pointer as ourselvse and get out of here.
1879 if (strcspn(val
, res
) == bsz
) {
1880 key
->rendered
= key
->key
;
1884 /* Pre-allocate by the length of the input */
1886 buf
= mandoc_malloc(++bsz
);
1889 while ('\0' != *val
) {
1891 * Halt on the first escape sequence.
1892 * This also halts on the end of string, in which case
1893 * we just copy, fallthrough, and exit the loop.
1895 if ((sz
= strcspn(val
, res
)) > 0) {
1896 memcpy(&buf
[pos
], val
, sz
);
1920 /* Read past the slash. */
1925 * Parse the escape sequence and see if it's a
1926 * predefined character or special character.
1929 esc
= mandoc_escape((const char **)&val
,
1931 if (ESCAPE_ERROR
== esc
)
1933 if (ESCAPE_SPECIAL
!= esc
)
1937 * Render the special character
1938 * as either UTF-8 or ASCII.
1942 if (0 == (u
= mchars_spec2cp(mc
, seq
, len
)))
1945 if (0 == (sz
= utf8(u
, utfbuf
)))
1949 cpp
= mchars_spec2str(mc
, seq
, len
, &sz
);
1952 if (ASCII_NBRSP
== *cpp
) {
1958 /* Copy the rendered glyph into the stream. */
1961 buf
= mandoc_realloc(buf
, bsz
);
1962 memcpy(&buf
[pos
], cpp
, sz
);
1967 key
->rendered
= buf
;
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 * Flush the current page's terms (and their bits) into the database.
1986 * Wrap the entire set of additions in a transaction to make sqlite be a
1988 * Also, handle escape sequences at the last possible moment.
1991 dbadd(struct mpage
*mpage
, struct mchars
*mc
)
1993 struct mlink
*mlink
;
1998 mlink
= mpage
->mlinks
;
2001 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2002 key
= ohash_next(&names
, &slot
)) {
2003 if (key
->rendered
!= key
->key
)
2004 free(key
->rendered
);
2007 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2008 key
= ohash_next(&strings
, &slot
)) {
2009 if (key
->rendered
!= key
->key
)
2010 free(key
->rendered
);
2015 while (NULL
!= mlink
) {
2016 fputs(mlink
->name
, stdout
);
2017 if (NULL
== mlink
->next
||
2018 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
2019 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
2020 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
2022 if ('\0' == *mlink
->dsec
)
2023 fputs(mlink
->fsec
, stdout
);
2025 fputs(mlink
->dsec
, stdout
);
2026 if ('\0' != *mlink
->arch
)
2027 printf("/%s", mlink
->arch
);
2030 mlink
= mlink
->next
;
2032 fputs(", ", stdout
);
2034 printf(" - %s\n", mpage
->desc
);
2039 say(mlink
->file
, "Adding to database");
2041 i
= strlen(mpage
->desc
) + 1;
2042 key
= mandoc_calloc(1, sizeof(struct str
) + i
);
2043 memcpy(key
->key
, mpage
->desc
, i
);
2044 render_key(mc
, key
);
2047 SQL_BIND_TEXT(stmts
[STMT_INSERT_PAGE
], i
, key
->rendered
);
2048 SQL_BIND_INT(stmts
[STMT_INSERT_PAGE
], i
, FORM_SRC
== mpage
->form
);
2049 SQL_STEP(stmts
[STMT_INSERT_PAGE
]);
2050 mpage
->pageid
= sqlite3_last_insert_rowid(db
);
2051 sqlite3_reset(stmts
[STMT_INSERT_PAGE
]);
2053 if (key
->rendered
!= key
->key
)
2054 free(key
->rendered
);
2057 while (NULL
!= mlink
) {
2059 mlink
= mlink
->next
;
2061 mlink
= mpage
->mlinks
;
2063 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2064 key
= ohash_next(&names
, &slot
)) {
2065 assert(key
->mpage
== mpage
);
2066 if (NULL
== key
->rendered
)
2067 render_key(mc
, key
);
2069 SQL_BIND_INT64(stmts
[STMT_INSERT_NAME
], i
, key
->mask
);
2070 SQL_BIND_TEXT(stmts
[STMT_INSERT_NAME
], i
, key
->rendered
);
2071 SQL_BIND_INT64(stmts
[STMT_INSERT_NAME
], i
, mpage
->pageid
);
2072 SQL_STEP(stmts
[STMT_INSERT_NAME
]);
2073 sqlite3_reset(stmts
[STMT_INSERT_NAME
]);
2074 if (key
->rendered
!= key
->key
)
2075 free(key
->rendered
);
2078 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2079 key
= ohash_next(&strings
, &slot
)) {
2080 assert(key
->mpage
== mpage
);
2081 if (NULL
== key
->rendered
)
2082 render_key(mc
, key
);
2084 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, key
->mask
);
2085 SQL_BIND_TEXT(stmts
[STMT_INSERT_KEY
], i
, key
->rendered
);
2086 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, mpage
->pageid
);
2087 SQL_STEP(stmts
[STMT_INSERT_KEY
]);
2088 sqlite3_reset(stmts
[STMT_INSERT_KEY
]);
2089 if (key
->rendered
!= key
->key
)
2090 free(key
->rendered
);
2098 struct mpage
*mpage
;
2099 struct mlink
*mlink
;
2104 SQL_EXEC("BEGIN TRANSACTION");
2106 for (mpage
= ohash_first(&mpages
, &slot
); NULL
!= mpage
;
2107 mpage
= ohash_next(&mpages
, &slot
)) {
2108 mlink
= mpage
->mlinks
;
2110 say(mlink
->file
, "Deleting from database");
2113 for ( ; NULL
!= mlink
; mlink
= mlink
->next
) {
2115 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2117 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2119 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2121 SQL_STEP(stmts
[STMT_DELETE_PAGE
]);
2122 sqlite3_reset(stmts
[STMT_DELETE_PAGE
]);
2127 SQL_EXEC("END TRANSACTION");
2131 * Close an existing database and its prepared statements.
2132 * If "real" is not set, rename the temporary file into the real one.
2144 for (i
= 0; i
< STMT__MAX
; i
++) {
2145 sqlite3_finalize(stmts
[i
]);
2155 if ('\0' == *tempfilename
) {
2156 if (-1 == rename(MANDOC_DB
"~", MANDOC_DB
)) {
2157 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2158 say(MANDOC_DB
, "&rename");
2163 switch (child
= fork()) {
2165 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2166 say("", "&fork cmp");
2169 execlp("cmp", "cmp", "-s",
2170 tempfilename
, MANDOC_DB
, NULL
);
2171 say("", "&exec cmp");
2176 if (-1 == waitpid(child
, &status
, 0)) {
2177 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2178 say("", "&wait cmp");
2179 } else if (WIFSIGNALED(status
)) {
2180 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2181 say("", "cmp died from signal %d", WTERMSIG(status
));
2182 } else if (WEXITSTATUS(status
)) {
2183 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2185 "Data changed, but cannot replace database");
2188 *strrchr(tempfilename
, '/') = '\0';
2189 switch (child
= fork()) {
2191 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2192 say("", "&fork rm");
2195 execlp("rm", "rm", "-rf", tempfilename
, NULL
);
2196 say("", "&exec rm");
2197 exit((int)MANDOCLEVEL_SYSERR
);
2201 if (-1 == waitpid(child
, &status
, 0)) {
2202 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2203 say("", "&wait rm");
2204 } else if (WIFSIGNALED(status
) || WEXITSTATUS(status
)) {
2205 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2206 say("", "%s: Cannot remove temporary directory",
2212 * This is straightforward stuff.
2213 * Open a database connection to a "temporary" database, then open a set
2214 * of prepared statements we'll use over and over again.
2215 * If "real" is set, we use the existing database; if not, we truncate a
2217 * Must be matched by dbclose().
2228 *tempfilename
= '\0';
2229 ofl
= SQLITE_OPEN_READWRITE
;
2232 rc
= sqlite3_open_v2(MANDOC_DB
, &db
, ofl
, NULL
);
2233 if (SQLITE_OK
!= rc
) {
2234 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2235 if (SQLITE_CANTOPEN
!= rc
)
2236 say(MANDOC_DB
, "%s", sqlite3_errstr(rc
));
2239 goto prepare_statements
;
2242 ofl
|= SQLITE_OPEN_CREATE
| SQLITE_OPEN_EXCLUSIVE
;
2244 remove(MANDOC_DB
"~");
2245 rc
= sqlite3_open_v2(MANDOC_DB
"~", &db
, ofl
, NULL
);
2246 if (SQLITE_OK
== rc
)
2248 if (MPARSE_QUICK
& mparse_options
) {
2249 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2250 say(MANDOC_DB
"~", "%s", sqlite3_errstr(rc
));
2254 (void)strlcpy(tempfilename
, "/tmp/mandocdb.XXXXXX",
2255 sizeof(tempfilename
));
2256 if (NULL
== mkdtemp(tempfilename
)) {
2257 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2258 say("", "&%s", tempfilename
);
2261 (void)strlcat(tempfilename
, "/" MANDOC_DB
,
2262 sizeof(tempfilename
));
2263 rc
= sqlite3_open_v2(tempfilename
, &db
, ofl
, NULL
);
2264 if (SQLITE_OK
!= rc
) {
2265 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2266 say("", "%s: %s", tempfilename
, sqlite3_errstr(rc
));
2271 sql
= "CREATE TABLE \"mpages\" (\n"
2272 " \"desc\" TEXT NOT NULL,\n"
2273 " \"form\" INTEGER NOT NULL,\n"
2274 " \"pageid\" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL\n"
2277 "CREATE TABLE \"mlinks\" (\n"
2278 " \"sec\" TEXT NOT NULL,\n"
2279 " \"arch\" TEXT NOT NULL,\n"
2280 " \"name\" TEXT NOT NULL,\n"
2281 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2282 "ON DELETE CASCADE\n"
2284 "CREATE INDEX mlinks_pageid_idx ON mlinks (pageid);\n"
2286 "CREATE TABLE \"names\" (\n"
2287 " \"bits\" INTEGER NOT NULL,\n"
2288 " \"name\" TEXT NOT NULL,\n"
2289 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2290 "ON DELETE CASCADE\n"
2293 "CREATE TABLE \"keys\" (\n"
2294 " \"bits\" INTEGER NOT NULL,\n"
2295 " \"key\" TEXT NOT NULL,\n"
2296 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(pageid) "
2297 "ON DELETE CASCADE\n"
2299 "CREATE INDEX keys_pageid_idx ON keys (pageid);\n";
2301 if (SQLITE_OK
!= sqlite3_exec(db
, sql
, NULL
, NULL
, NULL
)) {
2302 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2303 say(MANDOC_DB
, "%s", sqlite3_errmsg(db
));
2309 if (SQLITE_OK
!= sqlite3_exec(db
,
2310 "PRAGMA foreign_keys = ON", NULL
, NULL
, NULL
)) {
2311 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2312 say(MANDOC_DB
, "PRAGMA foreign_keys: %s",
2313 sqlite3_errmsg(db
));
2318 sql
= "DELETE FROM mpages WHERE pageid IN "
2319 "(SELECT pageid FROM mlinks WHERE "
2320 "sec=? AND arch=? AND name=?)";
2321 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_DELETE_PAGE
], NULL
);
2322 sql
= "INSERT INTO mpages "
2323 "(desc,form) VALUES (?,?)";
2324 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_PAGE
], NULL
);
2325 sql
= "INSERT INTO mlinks "
2326 "(sec,arch,name,pageid) VALUES (?,?,?,?)";
2327 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_LINK
], NULL
);
2328 sql
= "INSERT INTO names "
2329 "(bits,name,pageid) VALUES (?,?,?)";
2330 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_NAME
], NULL
);
2331 sql
= "INSERT INTO keys "
2332 "(bits,key,pageid) VALUES (?,?,?)";
2333 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_KEY
], NULL
);
2337 * When opening a new database, we can turn off
2338 * synchronous mode for much better performance.
2341 if (real
&& SQLITE_OK
!= sqlite3_exec(db
,
2342 "PRAGMA synchronous = OFF", NULL
, NULL
, NULL
)) {
2343 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2344 say(MANDOC_DB
, "PRAGMA synchronous: %s",
2345 sqlite3_errmsg(db
));
2355 hash_calloc(size_t n
, size_t sz
, void *arg
)
2358 return(mandoc_calloc(n
, sz
));
2362 hash_alloc(size_t sz
, void *arg
)
2365 return(mandoc_malloc(sz
));
2369 hash_free(void *p
, void *arg
)
2376 set_basedir(const char *targetdir
)
2378 static char startdir
[PATH_MAX
];
2379 static int getcwd_status
; /* 1 = ok, 2 = failure */
2380 static int chdir_status
; /* 1 = changed directory */
2384 * Remember the original working directory, if possible.
2385 * This will be needed if the second or a later directory
2386 * on the command line is given as a relative path.
2387 * Do not error out if the current directory is not
2388 * searchable: Maybe it won't be needed after all.
2390 if (0 == getcwd_status
) {
2391 if (NULL
== getcwd(startdir
, sizeof(startdir
))) {
2393 (void)strlcpy(startdir
, strerror(errno
),
2400 * We are leaving the old base directory.
2401 * Do not use it any longer, not even for messages.
2406 * If and only if the directory was changed earlier and
2407 * the next directory to process is given as a relative path,
2408 * first go back, or bail out if that is impossible.
2410 if (chdir_status
&& '/' != *targetdir
) {
2411 if (2 == getcwd_status
) {
2412 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2413 say("", "getcwd: %s", startdir
);
2416 if (-1 == chdir(startdir
)) {
2417 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2418 say("", "&chdir %s", startdir
);
2424 * Always resolve basedir to the canonicalized absolute
2425 * pathname and append a trailing slash, such that
2426 * we can reliably check whether files are inside.
2428 if (NULL
== realpath(targetdir
, basedir
)) {
2429 exitcode
= (int)MANDOCLEVEL_BADARG
;
2430 say("", "&%s: realpath", targetdir
);
2432 } else if (-1 == chdir(basedir
)) {
2433 exitcode
= (int)MANDOCLEVEL_BADARG
;
2438 cp
= strchr(basedir
, '\0');
2439 if ('/' != cp
[-1]) {
2440 if (cp
- basedir
>= PATH_MAX
- 1) {
2441 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2442 say("", "Filename too long");
2452 say(const char *file
, const char *format
, ...)
2457 if ('\0' != *basedir
)
2458 fprintf(stderr
, "%s", basedir
);
2459 if ('\0' != *basedir
&& '\0' != *file
)
2462 fprintf(stderr
, "%s", file
);
2465 if (NULL
!= format
) {
2478 if (NULL
!= format
) {
2479 if ('\0' != *basedir
|| '\0' != *file
)
2480 fputs(": ", stderr
);
2481 va_start(ap
, format
);
2482 vfprintf(stderr
, format
, ap
);
2486 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2487 fputs(": ", stderr
);
2490 fputc('\n', stderr
);