]>
git.cameronkatri.com Git - mandoc.git/blob - mandocdb.c
1 /* $Id: mandocdb.c,v 1.131 2014/04/04 18:23:30 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 fprintf(stderr, "%s\n", 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 fprintf(stderr, "%s\n", sqlite3_errmsg(db))
63 #define SQL_BIND_INT(_s, _i, _v) \
64 if (SQLITE_OK != sqlite3_bind_int \
65 ((_s), (_i)++, (_v))) \
66 fprintf(stderr, "%s\n", sqlite3_errmsg(db))
67 #define SQL_BIND_INT64(_s, _i, _v) \
68 if (SQLITE_OK != sqlite3_bind_int64 \
69 ((_s), (_i)++, (_v))) \
70 fprintf(stderr, "%s\n", sqlite3_errmsg(db))
71 #define SQL_STEP(_s) \
72 if (SQLITE_DONE != sqlite3_step((_s))) \
73 fprintf(stderr, "%s\n", 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 recno
; /* id 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_KEY
, /* insert parsed key */
133 typedef int (*mdoc_fp
)(struct mpage
*, const struct mdoc_node
*);
135 struct mdoc_handler
{
136 mdoc_fp fp
; /* optional handler */
137 uint64_t mask
; /* set unless handler returns 0 */
140 static void dbclose(int);
141 static void dbadd(struct mpage
*, struct mchars
*);
142 static void dbadd_mlink(const struct mlink
*mlink
);
143 static int dbopen(int);
144 static void dbprune(void);
145 static void filescan(const char *);
146 static void *hash_alloc(size_t, void *);
147 static void hash_free(void *, size_t, void *);
148 static void *hash_halloc(size_t, void *);
149 static void mlink_add(struct mlink
*, const struct stat
*);
150 static void mlink_check(struct mpage
*, struct mlink
*);
151 static void mlink_free(struct mlink
*);
152 static void mlinks_undupe(struct mpage
*);
153 static void mpages_free(void);
154 static void mpages_merge(struct mchars
*, struct mparse
*);
155 static void names_check(void);
156 static void parse_cat(struct mpage
*, int);
157 static void parse_man(struct mpage
*, const struct man_node
*);
158 static void parse_mdoc(struct mpage
*, const struct mdoc_node
*);
159 static int parse_mdoc_body(struct mpage
*, const struct mdoc_node
*);
160 static int parse_mdoc_head(struct mpage
*, const struct mdoc_node
*);
161 static int parse_mdoc_Fd(struct mpage
*, const struct mdoc_node
*);
162 static int parse_mdoc_Fn(struct mpage
*, const struct mdoc_node
*);
163 static int parse_mdoc_Nd(struct mpage
*, const struct mdoc_node
*);
164 static int parse_mdoc_Nm(struct mpage
*, const struct mdoc_node
*);
165 static int parse_mdoc_Sh(struct mpage
*, const struct mdoc_node
*);
166 static int parse_mdoc_Xr(struct mpage
*, const struct mdoc_node
*);
167 static void putkey(const struct mpage
*, char *, uint64_t);
168 static void putkeys(const struct mpage
*,
169 const char *, size_t, uint64_t);
170 static void putmdockey(const struct mpage
*,
171 const struct mdoc_node
*, uint64_t);
172 static void render_key(struct mchars
*, struct str
*);
173 static void say(const char *, const char *, ...);
174 static int set_basedir(const char *);
175 static int treescan(void);
176 static size_t utf8(unsigned int, char [7]);
178 static char tempfilename
[32];
179 static char *progname
;
180 static int nodb
; /* no database changes */
181 static int mparse_options
; /* abort the parse early */
182 static int use_all
; /* use all found files */
183 static int debug
; /* print what we're doing */
184 static int warnings
; /* warn about crap */
185 static int write_utf8
; /* write UTF-8 output; else ASCII */
186 static int exitcode
; /* to be returned by main */
187 static enum op op
; /* operational mode */
188 static char basedir
[PATH_MAX
]; /* current base directory */
189 static struct ohash mpages
; /* table of distinct manual pages */
190 static struct ohash mlinks
; /* table of directory entries */
191 static struct ohash strings
; /* table of all strings */
192 static sqlite3
*db
= NULL
; /* current database */
193 static sqlite3_stmt
*stmts
[STMT__MAX
]; /* current statements */
195 static const struct mdoc_handler mdocs
[MDOC_MAX
] = {
196 { NULL
, 0 }, /* Ap */
197 { NULL
, 0 }, /* Dd */
198 { NULL
, 0 }, /* Dt */
199 { NULL
, 0 }, /* Os */
200 { parse_mdoc_Sh
, TYPE_Sh
}, /* Sh */
201 { parse_mdoc_head
, TYPE_Ss
}, /* Ss */
202 { NULL
, 0 }, /* Pp */
203 { NULL
, 0 }, /* D1 */
204 { NULL
, 0 }, /* Dl */
205 { NULL
, 0 }, /* Bd */
206 { NULL
, 0 }, /* Ed */
207 { NULL
, 0 }, /* Bl */
208 { NULL
, 0 }, /* El */
209 { NULL
, 0 }, /* It */
210 { NULL
, 0 }, /* Ad */
211 { NULL
, TYPE_An
}, /* An */
212 { NULL
, TYPE_Ar
}, /* Ar */
213 { NULL
, TYPE_Cd
}, /* Cd */
214 { NULL
, TYPE_Cm
}, /* Cm */
215 { NULL
, TYPE_Dv
}, /* Dv */
216 { NULL
, TYPE_Er
}, /* Er */
217 { NULL
, TYPE_Ev
}, /* Ev */
218 { NULL
, 0 }, /* Ex */
219 { NULL
, TYPE_Fa
}, /* Fa */
220 { parse_mdoc_Fd
, 0 }, /* Fd */
221 { NULL
, TYPE_Fl
}, /* Fl */
222 { parse_mdoc_Fn
, 0 }, /* Fn */
223 { NULL
, TYPE_Ft
}, /* Ft */
224 { NULL
, TYPE_Ic
}, /* Ic */
225 { NULL
, TYPE_In
}, /* In */
226 { NULL
, TYPE_Li
}, /* Li */
227 { parse_mdoc_Nd
, TYPE_Nd
}, /* Nd */
228 { parse_mdoc_Nm
, 0 }, /* Nm */
229 { NULL
, 0 }, /* Op */
230 { NULL
, 0 }, /* Ot */
231 { NULL
, TYPE_Pa
}, /* Pa */
232 { NULL
, 0 }, /* Rv */
233 { NULL
, TYPE_St
}, /* St */
234 { NULL
, TYPE_Va
}, /* Va */
235 { parse_mdoc_body
, TYPE_Va
}, /* Vt */
236 { parse_mdoc_Xr
, 0 }, /* Xr */
237 { NULL
, 0 }, /* %A */
238 { NULL
, 0 }, /* %B */
239 { NULL
, 0 }, /* %D */
240 { NULL
, 0 }, /* %I */
241 { NULL
, 0 }, /* %J */
242 { NULL
, 0 }, /* %N */
243 { NULL
, 0 }, /* %O */
244 { NULL
, 0 }, /* %P */
245 { NULL
, 0 }, /* %R */
246 { NULL
, 0 }, /* %T */
247 { NULL
, 0 }, /* %V */
248 { NULL
, 0 }, /* Ac */
249 { NULL
, 0 }, /* Ao */
250 { NULL
, 0 }, /* Aq */
251 { NULL
, TYPE_At
}, /* At */
252 { NULL
, 0 }, /* Bc */
253 { NULL
, 0 }, /* Bf */
254 { NULL
, 0 }, /* Bo */
255 { NULL
, 0 }, /* Bq */
256 { NULL
, TYPE_Bsx
}, /* Bsx */
257 { NULL
, TYPE_Bx
}, /* Bx */
258 { NULL
, 0 }, /* Db */
259 { NULL
, 0 }, /* Dc */
260 { NULL
, 0 }, /* Do */
261 { NULL
, 0 }, /* Dq */
262 { NULL
, 0 }, /* Ec */
263 { NULL
, 0 }, /* Ef */
264 { NULL
, TYPE_Em
}, /* Em */
265 { NULL
, 0 }, /* Eo */
266 { NULL
, TYPE_Fx
}, /* Fx */
267 { NULL
, TYPE_Ms
}, /* Ms */
268 { NULL
, 0 }, /* No */
269 { NULL
, 0 }, /* Ns */
270 { NULL
, TYPE_Nx
}, /* Nx */
271 { NULL
, TYPE_Ox
}, /* Ox */
272 { NULL
, 0 }, /* Pc */
273 { NULL
, 0 }, /* Pf */
274 { NULL
, 0 }, /* Po */
275 { NULL
, 0 }, /* Pq */
276 { NULL
, 0 }, /* Qc */
277 { NULL
, 0 }, /* Ql */
278 { NULL
, 0 }, /* Qo */
279 { NULL
, 0 }, /* Qq */
280 { NULL
, 0 }, /* Re */
281 { NULL
, 0 }, /* Rs */
282 { NULL
, 0 }, /* Sc */
283 { NULL
, 0 }, /* So */
284 { NULL
, 0 }, /* Sq */
285 { NULL
, 0 }, /* Sm */
286 { NULL
, 0 }, /* Sx */
287 { NULL
, TYPE_Sy
}, /* Sy */
288 { NULL
, TYPE_Tn
}, /* Tn */
289 { NULL
, 0 }, /* Ux */
290 { NULL
, 0 }, /* Xc */
291 { NULL
, 0 }, /* Xo */
292 { parse_mdoc_head
, 0 }, /* Fo */
293 { NULL
, 0 }, /* Fc */
294 { NULL
, 0 }, /* Oo */
295 { NULL
, 0 }, /* Oc */
296 { NULL
, 0 }, /* Bk */
297 { NULL
, 0 }, /* Ek */
298 { NULL
, 0 }, /* Bt */
299 { NULL
, 0 }, /* Hf */
300 { NULL
, 0 }, /* Fr */
301 { NULL
, 0 }, /* Ud */
302 { NULL
, TYPE_Lb
}, /* Lb */
303 { NULL
, 0 }, /* Lp */
304 { NULL
, TYPE_Lk
}, /* Lk */
305 { NULL
, TYPE_Mt
}, /* Mt */
306 { NULL
, 0 }, /* Brq */
307 { NULL
, 0 }, /* Bro */
308 { NULL
, 0 }, /* Brc */
309 { NULL
, 0 }, /* %C */
310 { NULL
, 0 }, /* Es */
311 { NULL
, 0 }, /* En */
312 { NULL
, TYPE_Dx
}, /* Dx */
313 { NULL
, 0 }, /* %Q */
314 { NULL
, 0 }, /* br */
315 { NULL
, 0 }, /* sp */
316 { NULL
, 0 }, /* %U */
317 { NULL
, 0 }, /* Ta */
321 main(int argc
, char *argv
[])
325 const char *path_arg
;
327 struct manpaths dirs
;
329 struct ohash_info mpages_info
, mlinks_info
;
331 memset(stmts
, 0, STMT__MAX
* sizeof(sqlite3_stmt
*));
332 memset(&dirs
, 0, sizeof(struct manpaths
));
334 mpages_info
.alloc
= mlinks_info
.alloc
= hash_alloc
;
335 mpages_info
.halloc
= mlinks_info
.halloc
= hash_halloc
;
336 mpages_info
.hfree
= mlinks_info
.hfree
= hash_free
;
338 mpages_info
.key_offset
= offsetof(struct mpage
, inodev
);
339 mlinks_info
.key_offset
= offsetof(struct mlink
, file
);
341 progname
= strrchr(argv
[0], '/');
342 if (progname
== NULL
)
348 * We accept a few different invocations.
349 * The CHECKOP macro makes sure that invocation styles don't
350 * clobber each other.
352 #define CHECKOP(_op, _ch) do \
353 if (OP_DEFAULT != (_op)) { \
354 fprintf(stderr, "-%c: Conflicting option\n", (_ch)); \
356 } while (/*CONSTCOND*/0)
361 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
386 mparse_options
|= MPARSE_QUICK
;
389 if (strcmp(optarg
, "utf8")) {
390 fprintf(stderr
, "-T%s: Unsupported "
391 "output format\n", optarg
);
398 dup2(STDOUT_FILENO
, STDERR_FILENO
);
408 /* Compatibility with espie@'s makewhatis. */
417 if (OP_CONFFILE
== op
&& argc
> 0) {
418 fprintf(stderr
, "-C: Too many arguments\n");
422 exitcode
= (int)MANDOCLEVEL_OK
;
423 mp
= mparse_alloc(mparse_options
, MANDOCLEVEL_FATAL
, NULL
, NULL
);
426 ohash_init(&mpages
, 6, &mpages_info
);
427 ohash_init(&mlinks
, 6, &mlinks_info
);
429 if (OP_UPDATE
== op
|| OP_DELETE
== op
|| OP_TEST
== op
) {
431 * Force processing all files.
436 * All of these deal with a specific directory.
437 * Jump into that directory then collect files specified
438 * on the command-line.
440 if (0 == set_basedir(path_arg
))
442 for (i
= 0; i
< argc
; i
++)
449 mpages_merge(mc
, mp
);
453 * If we have arguments, use them as our manpaths.
454 * If we don't, grok from manpath(1) or however else
455 * manpath_parse() wants to do it.
458 dirs
.paths
= mandoc_calloc
459 (argc
, sizeof(char *));
460 dirs
.sz
= (size_t)argc
;
461 for (i
= 0; i
< argc
; i
++)
462 dirs
.paths
[i
] = mandoc_strdup(argv
[i
]);
464 manpath_parse(&dirs
, path_arg
, NULL
, NULL
);
467 exitcode
= (int)MANDOCLEVEL_BADARG
;
468 say("", "Empty manpath");
472 * First scan the tree rooted at a base directory, then
473 * build a new database and finally move it into place.
474 * Ignore zero-length directories and strip trailing
477 for (j
= 0; j
< dirs
.sz
; j
++) {
478 sz
= strlen(dirs
.paths
[j
]);
479 if (sz
&& '/' == dirs
.paths
[j
][sz
- 1])
480 dirs
.paths
[j
][--sz
] = '\0';
485 ohash_init(&mpages
, 6, &mpages_info
);
486 ohash_init(&mlinks
, 6, &mlinks_info
);
489 if (0 == set_basedir(dirs
.paths
[j
]))
493 if (0 == set_basedir(dirs
.paths
[j
]))
498 mpages_merge(mc
, mp
);
500 ! (MPARSE_QUICK
& mparse_options
))
504 if (j
+ 1 < dirs
.sz
) {
506 ohash_delete(&mpages
);
507 ohash_delete(&mlinks
);
517 ohash_delete(&mpages
);
518 ohash_delete(&mlinks
);
521 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
522 " %s [-aDnpQ] [-Tutf8] dir ...\n"
523 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
524 " %s [-Dnp] -u dir [file ...]\n"
525 " %s [-Q] -t file ...\n",
526 progname
, progname
, progname
,
529 return((int)MANDOCLEVEL_BADARG
);
533 * Scan a directory tree rooted at "basedir" for manpages.
534 * We use fts(), scanning directory parts along the way for clues to our
535 * section and architecture.
537 * If use_all has been specified, grok all files.
538 * If not, sanitise paths to the following:
540 * [./]man*[/<arch>]/<name>.<section>
542 * [./]cat<section>[/<arch>]/<name>.0
544 * TODO: accomodate for multi-language directories.
553 char *dsec
, *arch
, *fsec
, *cp
;
558 argv
[1] = (char *)NULL
;
561 * Walk through all components under the directory, using the
562 * logical descent of files.
564 f
= fts_open((char * const *)argv
, FTS_LOGICAL
, NULL
);
566 exitcode
= (int)MANDOCLEVEL_SYSERR
;
567 say("", "&fts_open");
574 while (NULL
!= (ff
= fts_read(f
))) {
575 path
= ff
->fts_path
+ 2;
577 * If we're a regular file, add an mlink by using the
578 * stored directory data and handling the filename.
580 if (FTS_F
== ff
->fts_info
) {
581 if (0 == strcmp(path
, MANDOC_DB
))
583 if ( ! use_all
&& ff
->fts_level
< 2) {
585 say(path
, "Extraneous file");
590 while (NULL
== fsec
) {
591 fsec
= strrchr(ff
->fts_name
, '.');
592 if (NULL
== fsec
|| strcmp(fsec
+1, "gz"))
602 "No filename suffix");
605 } else if (0 == strcmp(++fsec
, "html")) {
607 say(path
, "Skip html");
609 } else if (0 == strcmp(fsec
, "ps")) {
611 say(path
, "Skip ps");
613 } else if (0 == strcmp(fsec
, "pdf")) {
615 say(path
, "Skip pdf");
617 } else if ( ! use_all
&&
618 ((FORM_SRC
== dform
&& strcmp(fsec
, dsec
)) ||
619 (FORM_CAT
== dform
&& strcmp(fsec
, "0")))) {
621 say(path
, "Wrong filename suffix");
626 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
627 strlcpy(mlink
->file
, path
, sizeof(mlink
->file
));
628 mlink
->dform
= dform
;
631 mlink
->name
= ff
->fts_name
;
634 mlink_add(mlink
, ff
->fts_statp
);
636 } else if (FTS_D
!= ff
->fts_info
&&
637 FTS_DP
!= ff
->fts_info
) {
639 say(path
, "Not a regular file");
643 switch (ff
->fts_level
) {
645 /* Ignore the root directory. */
649 * This might contain manX/ or catX/.
650 * Try to infer this from the name.
651 * If we're not in use_all, enforce it.
654 if (FTS_DP
== ff
->fts_info
)
657 if (0 == strncmp(cp
, "man", 3)) {
660 } else if (0 == strncmp(cp
, "cat", 3)) {
668 if (NULL
!= dsec
|| use_all
)
672 say(path
, "Unknown directory part");
673 fts_set(f
, ff
, FTS_SKIP
);
677 * Possibly our architecture.
678 * If we're descending, keep tabs on it.
680 if (FTS_DP
!= ff
->fts_info
&& NULL
!= dsec
)
686 if (FTS_DP
== ff
->fts_info
|| use_all
)
689 say(path
, "Extraneous directory part");
690 fts_set(f
, ff
, FTS_SKIP
);
700 * Add a file to the mlinks table.
701 * Do not verify that it's a "valid" looking manpage (we'll do that
704 * Try to infer the manual section, architecture, and page name from the
705 * path, assuming it looks like
707 * [./]man*[/<arch>]/<name>.<section>
709 * [./]cat<section>[/<arch>]/<name>.0
711 * See treescan() for the fts(3) version of this.
714 filescan(const char *file
)
723 if (0 == strncmp(file
, "./", 2))
726 if (NULL
== realpath(file
, buf
)) {
727 exitcode
= (int)MANDOCLEVEL_BADARG
;
728 say(file
, "&realpath");
732 if (strstr(buf
, basedir
) == buf
)
733 start
= buf
+ strlen(basedir
) + 1;
734 else if (OP_TEST
== op
)
737 exitcode
= (int)MANDOCLEVEL_BADARG
;
738 say("", "%s: outside base directory", buf
);
742 if (-1 == stat(buf
, &st
)) {
743 exitcode
= (int)MANDOCLEVEL_BADARG
;
746 } else if ( ! (S_IFREG
& st
.st_mode
)) {
747 exitcode
= (int)MANDOCLEVEL_BADARG
;
748 say(file
, "Not a regular file");
752 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
753 strlcpy(mlink
->file
, start
, sizeof(mlink
->file
));
756 * First try to guess our directory structure.
757 * If we find a separator, try to look for man* or cat*.
758 * If we find one of these and what's underneath is a directory,
759 * assume it's an architecture.
761 if (NULL
!= (p
= strchr(start
, '/'))) {
763 if (0 == strncmp(start
, "man", 3)) {
764 mlink
->dform
= FORM_SRC
;
765 mlink
->dsec
= start
+ 3;
766 } else if (0 == strncmp(start
, "cat", 3)) {
767 mlink
->dform
= FORM_CAT
;
768 mlink
->dsec
= start
+ 3;
772 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
780 * Now check the file suffix.
781 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
783 p
= strrchr(start
, '\0');
784 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
793 * Now try to parse the name.
794 * Use the filename portion of the path.
797 if (NULL
!= (p
= strrchr(start
, '/'))) {
801 mlink_add(mlink
, &st
);
805 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
807 struct inodev inodev
;
811 assert(NULL
!= mlink
->file
);
813 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
814 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
815 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
816 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
818 if ('0' == *mlink
->fsec
) {
820 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
821 mlink
->fform
= FORM_CAT
;
822 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
823 mlink
->fform
= FORM_SRC
;
825 mlink
->fform
= FORM_NONE
;
827 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
828 assert(NULL
== ohash_find(&mlinks
, slot
));
829 ohash_insert(&mlinks
, slot
, mlink
);
831 inodev
.st_ino
= st
->st_ino
;
832 inodev
.st_dev
= st
->st_dev
;
833 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
834 sizeof(struct inodev
), inodev
.st_ino
);
835 mpage
= ohash_find(&mpages
, slot
);
837 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
838 mpage
->inodev
.st_ino
= inodev
.st_ino
;
839 mpage
->inodev
.st_dev
= inodev
.st_dev
;
840 ohash_insert(&mpages
, slot
, mpage
);
842 mlink
->next
= mpage
->mlinks
;
843 mpage
->mlinks
= mlink
;
844 mlink
->mpage
= mpage
;
848 mlink_free(struct mlink
*mlink
)
865 mpage
= ohash_first(&mpages
, &slot
);
866 while (NULL
!= mpage
) {
867 while (NULL
!= (mlink
= mpage
->mlinks
)) {
868 mpage
->mlinks
= mlink
->next
;
876 mpage
= ohash_next(&mpages
, &slot
);
881 * For each mlink to the mpage, check whether the path looks like
882 * it is formatted, and if it does, check whether a source manual
883 * exists by the same name, ignoring the suffix.
884 * If both conditions hold, drop the mlink.
887 mlinks_undupe(struct mpage
*mpage
)
894 mpage
->form
= FORM_CAT
;
895 prev
= &mpage
->mlinks
;
896 while (NULL
!= (mlink
= *prev
)) {
897 if (FORM_CAT
!= mlink
->dform
) {
898 mpage
->form
= FORM_NONE
;
901 if (strlcpy(buf
, mlink
->file
, PATH_MAX
) >= PATH_MAX
) {
903 say(mlink
->file
, "Filename too long");
906 bufp
= strstr(buf
, "cat");
907 assert(NULL
!= bufp
);
908 memcpy(bufp
, "man", 3);
909 if (NULL
!= (bufp
= strrchr(buf
, '.')))
911 strlcat(buf
, mlink
->dsec
, PATH_MAX
);
912 if (NULL
== ohash_find(&mlinks
,
913 ohash_qlookup(&mlinks
, buf
)))
916 say(mlink
->file
, "Man source exists: %s", buf
);
923 prev
= &(*prev
)->next
;
928 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
934 * Check whether the manual section given in a file
935 * agrees with the directory where the file is located.
936 * Some manuals have suffixes like (3p) on their
937 * section number either inside the file or in the
938 * directory name, some are linked into more than one
939 * section, like encrypt(1) = makekey(8).
942 if (FORM_SRC
== mpage
->form
&&
943 strcasecmp(mpage
->sec
, mlink
->dsec
))
944 say(mlink
->file
, "Section \"%s\" manual in %s directory",
945 mpage
->sec
, mlink
->dsec
);
948 * Manual page directories exist for each kernel
949 * architecture as returned by machine(1).
950 * However, many manuals only depend on the
951 * application architecture as returned by arch(1).
952 * For example, some (2/ARM) manuals are shared
953 * across the "armish" and "zaurus" kernel
955 * A few manuals are even shared across completely
956 * different architectures, for example fdformat(1)
957 * on amd64, i386, sparc, and sparc64.
960 if (strcasecmp(mpage
->arch
, mlink
->arch
))
961 say(mlink
->file
, "Architecture \"%s\" manual in "
962 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
966 * parse_cat() doesn't set TYPE_Nm and TYPE_NAME yet.
969 if (FORM_CAT
== mpage
->form
)
973 * Check whether this mlink
974 * appears as a name in the NAME section.
977 slot
= ohash_qlookup(&strings
, mlink
->name
);
978 str
= ohash_find(&strings
, slot
);
980 if ( ! (TYPE_NAME
& str
->mask
))
981 say(mlink
->file
, "Name missing in NAME section");
985 * Run through the files in the global vector "mpages"
986 * and add them to the database specified in "basedir".
988 * This handles the parsing scheme itself, using the cues of directory
989 * and filename to determine whether the file is parsable or not.
992 mpages_merge(struct mchars
*mc
, struct mparse
*mp
)
995 struct ohash_info str_info
;
997 struct mpage
*mpage
, *mpage_dest
;
998 struct mlink
*mlink
, *mlink_dest
;
1006 enum mandoclevel lvl
;
1008 str_info
.alloc
= hash_alloc
;
1009 str_info
.halloc
= hash_halloc
;
1010 str_info
.hfree
= hash_free
;
1011 str_info
.key_offset
= offsetof(struct str
, key
);
1014 SQL_EXEC("BEGIN TRANSACTION");
1016 mpage
= ohash_first(&mpages
, &pslot
);
1017 while (NULL
!= mpage
) {
1018 mlinks_undupe(mpage
);
1019 if (NULL
== mpage
->mlinks
) {
1020 mpage
= ohash_next(&mpages
, &pslot
);
1024 ohash_init(&strings
, 6, &str_info
);
1033 if (mpage
->mlinks
->gzip
) {
1034 if (-1 == pipe(fd
)) {
1035 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1036 say(mpage
->mlinks
->file
, "&pipe gunzip");
1039 switch (child_pid
= fork()) {
1041 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1042 say(mpage
->mlinks
->file
, "&fork gunzip");
1049 if (-1 == dup2(fd
[1], STDOUT_FILENO
)) {
1050 say(mpage
->mlinks
->file
,
1054 execlp("gunzip", "gunzip", "-c",
1055 mpage
->mlinks
->file
, NULL
);
1056 say(mpage
->mlinks
->file
, "&exec gunzip");
1065 * Try interpreting the file as mdoc(7) or man(7)
1066 * source code, unless it is already known to be
1067 * formatted. Fall back to formatted mode.
1069 if (FORM_CAT
!= mpage
->mlinks
->dform
||
1070 FORM_CAT
!= mpage
->mlinks
->fform
) {
1071 lvl
= mparse_readfd(mp
, fd
[0], mpage
->mlinks
->file
);
1072 if (lvl
< MANDOCLEVEL_FATAL
)
1073 mparse_result(mp
, &mdoc
, &man
, &sodest
);
1076 if (NULL
!= sodest
) {
1077 mlink_dest
= ohash_find(&mlinks
,
1078 ohash_qlookup(&mlinks
, sodest
));
1079 if (NULL
!= mlink_dest
) {
1081 /* The .so target exists. */
1083 mpage_dest
= mlink_dest
->mpage
;
1084 mlink
= mpage
->mlinks
;
1086 mlink
->mpage
= mpage_dest
;
1089 * If the target was already
1090 * processed, add the links
1091 * to the database now.
1092 * Otherwise, this will
1093 * happen when we come
1097 if (mpage_dest
->recno
)
1100 if (NULL
== mlink
->next
)
1102 mlink
= mlink
->next
;
1105 /* Move all links to the target. */
1107 mlink
->next
= mlink_dest
->next
;
1108 mlink_dest
->next
= mpage
->mlinks
;
1109 mpage
->mlinks
= NULL
;
1112 } else if (NULL
!= mdoc
) {
1113 mpage
->form
= FORM_SRC
;
1115 mandoc_strdup(mdoc_meta(mdoc
)->msec
);
1116 mpage
->arch
= mdoc_meta(mdoc
)->arch
;
1117 mpage
->arch
= mandoc_strdup(
1118 NULL
== mpage
->arch
? "" : mpage
->arch
);
1120 mandoc_strdup(mdoc_meta(mdoc
)->title
);
1121 } else if (NULL
!= man
) {
1122 mpage
->form
= FORM_SRC
;
1124 mandoc_strdup(man_meta(man
)->msec
);
1126 mandoc_strdup(mpage
->mlinks
->arch
);
1128 mandoc_strdup(man_meta(man
)->title
);
1130 mpage
->form
= FORM_CAT
;
1132 mandoc_strdup(mpage
->mlinks
->dsec
);
1134 mandoc_strdup(mpage
->mlinks
->arch
);
1136 mandoc_strdup(mpage
->mlinks
->name
);
1138 putkey(mpage
, mpage
->sec
, TYPE_sec
);
1139 putkey(mpage
, '\0' == *mpage
->arch
?
1140 any
: mpage
->arch
, TYPE_arch
);
1142 for (mlink
= mpage
->mlinks
; mlink
; mlink
= mlink
->next
) {
1143 if ('\0' != *mlink
->dsec
)
1144 putkey(mpage
, mlink
->dsec
, TYPE_sec
);
1145 if ('\0' != *mlink
->fsec
)
1146 putkey(mpage
, mlink
->fsec
, TYPE_sec
);
1147 putkey(mpage
, '\0' == *mlink
->arch
?
1148 any
: mlink
->arch
, TYPE_arch
);
1149 putkey(mpage
, mlink
->name
, TYPE_Nm
);
1153 if (NULL
!= (cp
= mdoc_meta(mdoc
)->name
))
1154 putkey(mpage
, cp
, TYPE_Nm
);
1155 assert(NULL
== mpage
->desc
);
1156 parse_mdoc(mpage
, mdoc_node(mdoc
));
1157 putkey(mpage
, NULL
!= mpage
->desc
?
1158 mpage
->desc
: mpage
->mlinks
->name
, TYPE_Nd
);
1159 } else if (NULL
!= man
)
1160 parse_man(mpage
, man_node(man
));
1162 parse_cat(mpage
, fd
[0]);
1164 if (warnings
&& !use_all
)
1165 for (mlink
= mpage
->mlinks
; mlink
;
1166 mlink
= mlink
->next
)
1167 mlink_check(mpage
, mlink
);
1173 if (-1 == waitpid(child_pid
, &status
, 0)) {
1174 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1175 say(mpage
->mlinks
->file
, "&wait gunzip");
1176 } else if (WIFSIGNALED(status
)) {
1177 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1178 say(mpage
->mlinks
->file
,
1179 "gunzip died from signal %d",
1181 } else if (WEXITSTATUS(status
)) {
1182 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1183 say(mpage
->mlinks
->file
,
1184 "gunzip failed with code %d",
1185 WEXITSTATUS(status
));
1188 ohash_delete(&strings
);
1189 mpage
= ohash_next(&mpages
, &pslot
);
1193 SQL_EXEC("END TRANSACTION");
1200 const char *name
, *sec
, *arch
, *key
;
1204 sqlite3_prepare_v2(db
,
1205 "SELECT name, sec, arch, key FROM ("
1206 "SELECT key, pageid FROM keys "
1207 "WHERE bits & ? AND NOT EXISTS ("
1208 "SELECT pageid FROM mlinks "
1209 "WHERE mlinks.pageid == keys.pageid "
1210 "AND mlinks.name == keys.key"
1213 "SELECT * FROM mlinks GROUP BY pageid"
1214 ") USING (pageid);",
1218 SQL_BIND_INT64(stmt
, i
, TYPE_NAME
);
1220 while (SQLITE_ROW
== (irc
= sqlite3_step(stmt
))) {
1221 name
= sqlite3_column_text(stmt
, 0);
1222 sec
= sqlite3_column_text(stmt
, 1);
1223 arch
= sqlite3_column_text(stmt
, 2);
1224 key
= sqlite3_column_text(stmt
, 3);
1225 say("", "%s(%s%s%s) lacks mlink \"%s\"", name
, sec
,
1226 '\0' == *arch
? "" : "/",
1227 '\0' == *arch
? "" : arch
, key
);
1229 sqlite3_finalize(stmt
);
1233 parse_cat(struct mpage
*mpage
, int fd
)
1236 char *line
, *p
, *title
;
1237 size_t len
, plen
, titlesz
;
1239 stream
= (-1 == fd
) ?
1240 fopen(mpage
->mlinks
->file
, "r") :
1242 if (NULL
== stream
) {
1244 say(mpage
->mlinks
->file
, "&fopen");
1248 /* Skip to first blank line. */
1250 while (NULL
!= (line
= fgetln(stream
, &len
)))
1255 * Assume the first line that is not indented
1256 * is the first section header. Skip to it.
1259 while (NULL
!= (line
= fgetln(stream
, &len
)))
1260 if ('\n' != *line
&& ' ' != *line
)
1264 * Read up until the next section into a buffer.
1265 * Strip the leading and trailing newline from each read line,
1266 * appending a trailing space.
1267 * Ignore empty (whitespace-only) lines.
1273 while (NULL
!= (line
= fgetln(stream
, &len
))) {
1274 if (' ' != *line
|| '\n' != line
[len
- 1])
1276 while (len
> 0 && isspace((unsigned char)*line
)) {
1282 title
= mandoc_realloc(title
, titlesz
+ len
);
1283 memcpy(title
+ titlesz
, line
, len
);
1285 title
[titlesz
- 1] = ' ';
1289 * If no page content can be found, or the input line
1290 * is already the next section header, or there is no
1291 * trailing newline, reuse the page title as the page
1295 if (NULL
== title
|| '\0' == *title
) {
1297 say(mpage
->mlinks
->file
,
1298 "Cannot find NAME section");
1299 assert(NULL
== mpage
->desc
);
1300 mpage
->desc
= mandoc_strdup(mpage
->mlinks
->name
);
1301 putkey(mpage
, mpage
->mlinks
->name
, TYPE_Nd
);
1307 title
= mandoc_realloc(title
, titlesz
+ 1);
1308 title
[titlesz
] = '\0';
1311 * Skip to the first dash.
1312 * Use the remaining line as the description (no more than 70
1316 if (NULL
!= (p
= strstr(title
, "- "))) {
1317 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1318 /* Skip to next word. */ ;
1321 say(mpage
->mlinks
->file
,
1322 "No dash in title line");
1328 /* Strip backspace-encoding from line. */
1330 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1333 memmove(line
, line
+ 1, plen
--);
1336 memmove(line
- 1, line
+ 1, plen
- len
);
1340 assert(NULL
== mpage
->desc
);
1341 mpage
->desc
= mandoc_strdup(p
);
1342 putkey(mpage
, mpage
->desc
, TYPE_Nd
);
1348 * Put a type/word pair into the word database for this particular file.
1351 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1355 assert(NULL
!= value
);
1356 if (TYPE_arch
== type
)
1357 for (cp
= value
; *cp
; cp
++)
1358 if (isupper((unsigned char)*cp
))
1359 *cp
= _tolower((unsigned char)*cp
);
1360 putkeys(mpage
, value
, strlen(value
), type
);
1364 * Grok all nodes at or below a certain mdoc node into putkey().
1367 putmdockey(const struct mpage
*mpage
,
1368 const struct mdoc_node
*n
, uint64_t m
)
1371 for ( ; NULL
!= n
; n
= n
->next
) {
1372 if (NULL
!= n
->child
)
1373 putmdockey(mpage
, n
->child
, m
);
1374 if (MDOC_TEXT
== n
->type
)
1375 putkey(mpage
, n
->string
, m
);
1380 parse_man(struct mpage
*mpage
, const struct man_node
*n
)
1382 const struct man_node
*head
, *body
;
1383 char *start
, *title
;
1391 * We're only searching for one thing: the first text child in
1392 * the BODY of a NAME section. Since we don't keep track of
1393 * sections in -man, run some hoops to find out whether we're in
1394 * the correct section or not.
1397 if (MAN_BODY
== n
->type
&& MAN_SH
== n
->tok
) {
1399 assert(body
->parent
);
1400 if (NULL
!= (head
= body
->parent
->head
) &&
1401 1 == head
->nchild
&&
1402 NULL
!= (head
= (head
->child
)) &&
1403 MAN_TEXT
== head
->type
&&
1404 0 == strcmp(head
->string
, "NAME") &&
1405 NULL
!= body
->child
) {
1408 * Suck the entire NAME section into memory.
1409 * Yes, we might run away.
1410 * But too many manuals have big, spread-out
1411 * NAME sections over many lines.
1415 man_deroff(&title
, body
);
1420 * Go through a special heuristic dance here.
1421 * Conventionally, one or more manual names are
1422 * comma-specified prior to a whitespace, then a
1423 * dash, then a description. Try to puzzle out
1424 * the name parts here.
1429 sz
= strcspn(start
, " ,");
1430 if ('\0' == start
[sz
])
1437 * Assume a stray trailing comma in the
1438 * name list if a name begins with a dash.
1441 if ('-' == start
[0] ||
1442 ('\\' == start
[0] && '-' == start
[1]))
1445 putkey(mpage
, start
, TYPE_NAME
| TYPE_Nm
);
1452 assert(',' == byte
);
1454 while (' ' == *start
)
1458 if (start
== title
) {
1459 putkey(mpage
, start
, TYPE_NAME
| TYPE_Nm
);
1464 while (isspace((unsigned char)*start
))
1467 if (0 == strncmp(start
, "-", 1))
1469 else if (0 == strncmp(start
, "\\-\\-", 4))
1471 else if (0 == strncmp(start
, "\\-", 2))
1473 else if (0 == strncmp(start
, "\\(en", 4))
1475 else if (0 == strncmp(start
, "\\(em", 4))
1478 while (' ' == *start
)
1481 assert(NULL
== mpage
->desc
);
1482 mpage
->desc
= mandoc_strdup(start
);
1483 putkey(mpage
, mpage
->desc
, TYPE_Nd
);
1489 for (n
= n
->child
; n
; n
= n
->next
) {
1490 if (NULL
!= mpage
->desc
)
1492 parse_man(mpage
, n
);
1497 parse_mdoc(struct mpage
*mpage
, const struct mdoc_node
*n
)
1501 for (n
= n
->child
; NULL
!= n
; n
= n
->next
) {
1512 if (NULL
!= mdocs
[n
->tok
].fp
)
1513 if (0 == (*mdocs
[n
->tok
].fp
)(mpage
, n
))
1515 if (mdocs
[n
->tok
].mask
)
1516 putmdockey(mpage
, n
->child
,
1517 mdocs
[n
->tok
].mask
);
1520 assert(MDOC_ROOT
!= n
->type
);
1523 if (NULL
!= n
->child
)
1524 parse_mdoc(mpage
, n
);
1529 parse_mdoc_Fd(struct mpage
*mpage
, const struct mdoc_node
*n
)
1531 const char *start
, *end
;
1534 if (SEC_SYNOPSIS
!= n
->sec
||
1535 NULL
== (n
= n
->child
) ||
1536 MDOC_TEXT
!= n
->type
)
1540 * Only consider those `Fd' macro fields that begin with an
1541 * "inclusion" token (versus, e.g., #define).
1544 if (strcmp("#include", n
->string
))
1547 if (NULL
== (n
= n
->next
) || MDOC_TEXT
!= n
->type
)
1551 * Strip away the enclosing angle brackets and make sure we're
1556 if ('<' == *start
|| '"' == *start
)
1559 if (0 == (sz
= strlen(start
)))
1562 end
= &start
[(int)sz
- 1];
1563 if ('>' == *end
|| '"' == *end
)
1567 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1572 parse_mdoc_Fn(struct mpage
*mpage
, const struct mdoc_node
*n
)
1576 if (NULL
== (n
= n
->child
) || MDOC_TEXT
!= n
->type
)
1580 * Parse: .Fn "struct type *name" "char *arg".
1581 * First strip away pointer symbol.
1582 * Then store the function name, then type.
1583 * Finally, store the arguments.
1586 if (NULL
== (cp
= strrchr(n
->string
, ' ')))
1592 putkey(mpage
, cp
, TYPE_Fn
);
1595 putkeys(mpage
, n
->string
, cp
- n
->string
, TYPE_Ft
);
1597 for (n
= n
->next
; NULL
!= n
; n
= n
->next
)
1598 if (MDOC_TEXT
== n
->type
)
1599 putkey(mpage
, n
->string
, TYPE_Fa
);
1605 parse_mdoc_Xr(struct mpage
*mpage
, const struct mdoc_node
*n
)
1609 if (NULL
== (n
= n
->child
))
1612 if (NULL
== n
->next
) {
1613 putkey(mpage
, n
->string
, TYPE_Xr
);
1617 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1618 putkey(mpage
, cp
, TYPE_Xr
);
1624 parse_mdoc_Nd(struct mpage
*mpage
, const struct mdoc_node
*n
)
1627 if (MDOC_BODY
== n
->type
)
1628 mdoc_deroff(&mpage
->desc
, n
);
1633 parse_mdoc_Nm(struct mpage
*mpage
, const struct mdoc_node
*n
)
1636 if (SEC_NAME
== n
->sec
)
1637 putmdockey(mpage
, n
->child
, TYPE_NAME
| TYPE_Nm
);
1638 else if (SEC_SYNOPSIS
== n
->sec
&& MDOC_HEAD
== n
->type
)
1639 putmdockey(mpage
, n
->child
, TYPE_Nm
);
1644 parse_mdoc_Sh(struct mpage
*mpage
, const struct mdoc_node
*n
)
1647 return(SEC_CUSTOM
== n
->sec
&& MDOC_HEAD
== n
->type
);
1651 parse_mdoc_head(struct mpage
*mpage
, const struct mdoc_node
*n
)
1654 return(MDOC_HEAD
== n
->type
);
1658 parse_mdoc_body(struct mpage
*mpage
, const struct mdoc_node
*n
)
1661 return(MDOC_BODY
== n
->type
);
1665 * Add a string to the hash table for the current manual.
1666 * Each string has a bitmask telling which macros it belongs to.
1667 * When we finish the manual, we'll dump the table.
1670 putkeys(const struct mpage
*mpage
,
1671 const char *cp
, size_t sz
, uint64_t v
)
1683 for (i
= 0, mask
= 1;
1684 i
< mansearch_keymax
;
1688 say(mpage
->mlinks
->file
, "Adding key %s=%*s",
1689 mansearch_keynames
[i
], sz
, cp
);
1693 slot
= ohash_qlookupi(&strings
, cp
, &end
);
1694 s
= ohash_find(&strings
, slot
);
1696 if (NULL
!= s
&& mpage
== s
->mpage
) {
1699 } else if (NULL
== s
) {
1700 s
= mandoc_calloc(sizeof(struct str
) + sz
+ 1, 1);
1701 memcpy(s
->key
, cp
, sz
);
1702 ohash_insert(&strings
, slot
, s
);
1709 * Take a Unicode codepoint and produce its UTF-8 encoding.
1710 * This isn't the best way to do this, but it works.
1711 * The magic numbers are from the UTF-8 packaging.
1712 * They're not as scary as they seem: read the UTF-8 spec for details.
1715 utf8(unsigned int cp
, char out
[7])
1720 if (cp
<= 0x0000007F) {
1723 } else if (cp
<= 0x000007FF) {
1725 out
[0] = (cp
>> 6 & 31) | 192;
1726 out
[1] = (cp
& 63) | 128;
1727 } else if (cp
<= 0x0000FFFF) {
1729 out
[0] = (cp
>> 12 & 15) | 224;
1730 out
[1] = (cp
>> 6 & 63) | 128;
1731 out
[2] = (cp
& 63) | 128;
1732 } else if (cp
<= 0x001FFFFF) {
1734 out
[0] = (cp
>> 18 & 7) | 240;
1735 out
[1] = (cp
>> 12 & 63) | 128;
1736 out
[2] = (cp
>> 6 & 63) | 128;
1737 out
[3] = (cp
& 63) | 128;
1738 } else if (cp
<= 0x03FFFFFF) {
1740 out
[0] = (cp
>> 24 & 3) | 248;
1741 out
[1] = (cp
>> 18 & 63) | 128;
1742 out
[2] = (cp
>> 12 & 63) | 128;
1743 out
[3] = (cp
>> 6 & 63) | 128;
1744 out
[4] = (cp
& 63) | 128;
1745 } else if (cp
<= 0x7FFFFFFF) {
1747 out
[0] = (cp
>> 30 & 1) | 252;
1748 out
[1] = (cp
>> 24 & 63) | 128;
1749 out
[2] = (cp
>> 18 & 63) | 128;
1750 out
[3] = (cp
>> 12 & 63) | 128;
1751 out
[4] = (cp
>> 6 & 63) | 128;
1752 out
[5] = (cp
& 63) | 128;
1761 * Store the rendered version of a key, or alias the pointer
1762 * if the key contains no escape sequences.
1765 render_key(struct mchars
*mc
, struct str
*key
)
1767 size_t sz
, bsz
, pos
;
1768 char utfbuf
[7], res
[6];
1770 const char *seq
, *cpp
, *val
;
1772 enum mandoc_esc esc
;
1774 assert(NULL
== key
->rendered
);
1778 res
[2] = ASCII_NBRSP
;
1779 res
[3] = ASCII_HYPH
;
1780 res
[4] = ASCII_BREAK
;
1787 * Pre-check: if we have no stop-characters, then set the
1788 * pointer as ourselvse and get out of here.
1790 if (strcspn(val
, res
) == bsz
) {
1791 key
->rendered
= key
->key
;
1795 /* Pre-allocate by the length of the input */
1797 buf
= mandoc_malloc(++bsz
);
1800 while ('\0' != *val
) {
1802 * Halt on the first escape sequence.
1803 * This also halts on the end of string, in which case
1804 * we just copy, fallthrough, and exit the loop.
1806 if ((sz
= strcspn(val
, res
)) > 0) {
1807 memcpy(&buf
[pos
], val
, sz
);
1831 /* Read past the slash. */
1836 * Parse the escape sequence and see if it's a
1837 * predefined character or special character.
1841 ((const char **)&val
, &seq
, &len
);
1842 if (ESCAPE_ERROR
== esc
)
1844 if (ESCAPE_SPECIAL
!= esc
)
1848 * Render the special character
1849 * as either UTF-8 or ASCII.
1853 if (0 == (u
= mchars_spec2cp(mc
, seq
, len
)))
1856 if (0 == (sz
= utf8(u
, utfbuf
)))
1860 cpp
= mchars_spec2str(mc
, seq
, len
, &sz
);
1863 if (ASCII_NBRSP
== *cpp
) {
1869 /* Copy the rendered glyph into the stream. */
1872 buf
= mandoc_realloc(buf
, bsz
);
1873 memcpy(&buf
[pos
], cpp
, sz
);
1878 key
->rendered
= buf
;
1882 dbadd_mlink(const struct mlink
*mlink
)
1887 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->dsec
);
1888 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->arch
);
1889 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->name
);
1890 SQL_BIND_INT64(stmts
[STMT_INSERT_LINK
], i
, mlink
->mpage
->recno
);
1891 SQL_STEP(stmts
[STMT_INSERT_LINK
]);
1892 sqlite3_reset(stmts
[STMT_INSERT_LINK
]);
1896 * Flush the current page's terms (and their bits) into the database.
1897 * Wrap the entire set of additions in a transaction to make sqlite be a
1899 * Also, handle escape sequences at the last possible moment.
1902 dbadd(struct mpage
*mpage
, struct mchars
*mc
)
1904 struct mlink
*mlink
;
1909 mlink
= mpage
->mlinks
;
1912 while (NULL
!= mlink
) {
1913 fputs(mlink
->name
, stdout
);
1914 if (NULL
== mlink
->next
||
1915 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
1916 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
1917 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
1919 if ('\0' == *mlink
->dsec
)
1920 fputs(mlink
->fsec
, stdout
);
1922 fputs(mlink
->dsec
, stdout
);
1923 if ('\0' != *mlink
->arch
)
1924 printf("/%s", mlink
->arch
);
1927 mlink
= mlink
->next
;
1929 fputs(", ", stdout
);
1931 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
1932 key
= ohash_next(&strings
, &slot
)) {
1933 if (TYPE_Nd
& key
->mask
) {
1934 if (NULL
== key
->rendered
)
1935 render_key(mc
, key
);
1936 printf(" - %s", key
->rendered
);
1945 say(mlink
->file
, "Adding to database");
1948 SQL_BIND_INT(stmts
[STMT_INSERT_PAGE
], i
, FORM_SRC
== mpage
->form
);
1949 SQL_STEP(stmts
[STMT_INSERT_PAGE
]);
1950 mpage
->recno
= sqlite3_last_insert_rowid(db
);
1951 sqlite3_reset(stmts
[STMT_INSERT_PAGE
]);
1953 while (NULL
!= mlink
) {
1955 mlink
= mlink
->next
;
1958 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
1959 key
= ohash_next(&strings
, &slot
)) {
1960 assert(key
->mpage
== mpage
);
1961 if (NULL
== key
->rendered
)
1962 render_key(mc
, key
);
1964 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, key
->mask
);
1965 SQL_BIND_TEXT(stmts
[STMT_INSERT_KEY
], i
, key
->rendered
);
1966 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, mpage
->recno
);
1967 SQL_STEP(stmts
[STMT_INSERT_KEY
]);
1968 sqlite3_reset(stmts
[STMT_INSERT_KEY
]);
1969 if (key
->rendered
!= key
->key
)
1970 free(key
->rendered
);
1978 struct mpage
*mpage
;
1979 struct mlink
*mlink
;
1984 SQL_EXEC("BEGIN TRANSACTION");
1986 for (mpage
= ohash_first(&mpages
, &slot
); NULL
!= mpage
;
1987 mpage
= ohash_next(&mpages
, &slot
)) {
1988 mlink
= mpage
->mlinks
;
1990 say(mlink
->file
, "Deleting from database");
1993 for ( ; NULL
!= mlink
; mlink
= mlink
->next
) {
1995 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
1997 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
1999 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
2001 SQL_STEP(stmts
[STMT_DELETE_PAGE
]);
2002 sqlite3_reset(stmts
[STMT_DELETE_PAGE
]);
2007 SQL_EXEC("END TRANSACTION");
2011 * Close an existing database and its prepared statements.
2012 * If "real" is not set, rename the temporary file into the real one.
2024 for (i
= 0; i
< STMT__MAX
; i
++) {
2025 sqlite3_finalize(stmts
[i
]);
2035 if ('\0' == *tempfilename
) {
2036 if (-1 == rename(MANDOC_DB
"~", MANDOC_DB
)) {
2037 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2038 say(MANDOC_DB
, "&rename");
2043 switch (child
= fork()) {
2045 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2046 say("", "&fork cmp");
2049 execlp("cmp", "cmp", "-s",
2050 tempfilename
, MANDOC_DB
, NULL
);
2051 say("", "&exec cmp");
2056 if (-1 == waitpid(child
, &status
, 0)) {
2057 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2058 say("", "&wait cmp");
2059 } else if (WIFSIGNALED(status
)) {
2060 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2061 say("", "cmp died from signal %d", WTERMSIG(status
));
2062 } else if (WEXITSTATUS(status
)) {
2063 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2065 "Data changed, but cannot replace database");
2068 *strrchr(tempfilename
, '/') = '\0';
2069 switch (child
= fork()) {
2071 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2072 say("", "&fork rm");
2075 execlp("rm", "rm", "-rf", tempfilename
, NULL
);
2076 say("", "&exec rm");
2077 exit((int)MANDOCLEVEL_SYSERR
);
2081 if (-1 == waitpid(child
, &status
, 0)) {
2082 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2083 say("", "&wait rm");
2084 } else if (WIFSIGNALED(status
) || WEXITSTATUS(status
)) {
2085 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2086 say("", "%s: Cannot remove temporary directory",
2092 * This is straightforward stuff.
2093 * Open a database connection to a "temporary" database, then open a set
2094 * of prepared statements we'll use over and over again.
2095 * If "real" is set, we use the existing database; if not, we truncate a
2097 * Must be matched by dbclose().
2108 *tempfilename
= '\0';
2109 ofl
= SQLITE_OPEN_READWRITE
;
2112 rc
= sqlite3_open_v2(MANDOC_DB
, &db
, ofl
, NULL
);
2113 if (SQLITE_OK
!= rc
) {
2114 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2115 say(MANDOC_DB
, "%s", sqlite3_errmsg(db
));
2118 goto prepare_statements
;
2121 ofl
|= SQLITE_OPEN_CREATE
| SQLITE_OPEN_EXCLUSIVE
;
2123 remove(MANDOC_DB
"~");
2124 rc
= sqlite3_open_v2(MANDOC_DB
"~", &db
, ofl
, NULL
);
2125 if (SQLITE_OK
== rc
)
2127 if (MPARSE_QUICK
& mparse_options
) {
2128 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2129 say(MANDOC_DB
"~", "%s", sqlite3_errmsg(db
));
2133 if (strlcpy(tempfilename
, "/tmp/mandocdb.XXXXXX",
2134 sizeof(tempfilename
)) >= sizeof(tempfilename
)) {
2135 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2136 say("", "/tmp/mandocdb.XXXXXX: Filename too long");
2139 if (NULL
== mkdtemp(tempfilename
)) {
2140 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2141 say("", "&%s", tempfilename
);
2144 if (strlcat(tempfilename
, "/" MANDOC_DB
,
2145 sizeof(tempfilename
)) >= sizeof(tempfilename
)) {
2146 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2147 say("", "%s/" MANDOC_DB
": Filename too long",
2151 rc
= sqlite3_open_v2(tempfilename
, &db
, ofl
, NULL
);
2152 if (SQLITE_OK
!= rc
) {
2153 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2154 say("", "%s: %s", tempfilename
, sqlite3_errmsg(db
));
2159 sql
= "CREATE TABLE \"mpages\" (\n"
2160 " \"form\" INTEGER NOT NULL,\n"
2161 " \"id\" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL\n"
2164 "CREATE TABLE \"mlinks\" (\n"
2165 " \"sec\" TEXT NOT NULL,\n"
2166 " \"arch\" TEXT NOT NULL,\n"
2167 " \"name\" TEXT NOT NULL,\n"
2168 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(id) "
2169 "ON DELETE CASCADE\n"
2172 "CREATE TABLE \"keys\" (\n"
2173 " \"bits\" INTEGER NOT NULL,\n"
2174 " \"key\" TEXT NOT NULL,\n"
2175 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(id) "
2176 "ON DELETE CASCADE\n"
2179 if (SQLITE_OK
!= sqlite3_exec(db
, sql
, NULL
, NULL
, NULL
)) {
2180 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2181 say(MANDOC_DB
, "%s", sqlite3_errmsg(db
));
2186 SQL_EXEC("PRAGMA foreign_keys = ON");
2187 sql
= "DELETE FROM mpages WHERE id IN "
2188 "(SELECT pageid FROM mlinks WHERE "
2189 "sec=? AND arch=? AND name=?)";
2190 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_DELETE_PAGE
], NULL
);
2191 sql
= "INSERT INTO mpages "
2192 "(form) VALUES (?)";
2193 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_PAGE
], NULL
);
2194 sql
= "INSERT INTO mlinks "
2195 "(sec,arch,name,pageid) VALUES (?,?,?,?)";
2196 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_LINK
], NULL
);
2197 sql
= "INSERT INTO keys "
2198 "(bits,key,pageid) VALUES (?,?,?)";
2199 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_KEY
], NULL
);
2203 * When opening a new database, we can turn off
2204 * synchronous mode for much better performance.
2208 SQL_EXEC("PRAGMA synchronous = OFF");
2215 hash_halloc(size_t sz
, void *arg
)
2218 return(mandoc_calloc(sz
, 1));
2222 hash_alloc(size_t sz
, void *arg
)
2225 return(mandoc_malloc(sz
));
2229 hash_free(void *p
, size_t sz
, void *arg
)
2236 set_basedir(const char *targetdir
)
2238 static char startdir
[PATH_MAX
];
2242 * Remember where we started by keeping a fd open to the origin
2243 * path component: throughout this utility, we chdir() a lot to
2244 * handle relative paths, and by doing this, we can return to
2245 * the starting point.
2247 if ('\0' == *startdir
) {
2248 if (NULL
== getcwd(startdir
, PATH_MAX
)) {
2249 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2250 if (NULL
!= targetdir
)
2254 if (-1 == (fd
= open(startdir
, O_RDONLY
, 0))) {
2255 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2256 say("", "&open %s", startdir
);
2259 if (NULL
== targetdir
)
2260 targetdir
= startdir
;
2264 if (-1 == fchdir(fd
)) {
2267 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2268 say("", "&chdir %s", startdir
);
2271 if (NULL
== targetdir
) {
2276 if (NULL
== realpath(targetdir
, basedir
)) {
2278 exitcode
= (int)MANDOCLEVEL_BADARG
;
2279 say("", "&%s: realpath", targetdir
);
2281 } else if (-1 == chdir(basedir
)) {
2282 exitcode
= (int)MANDOCLEVEL_BADARG
;
2290 say(const char *file
, const char *format
, ...)
2295 if ('\0' != *basedir
)
2296 fprintf(stderr
, "%s", basedir
);
2297 if ('\0' != *basedir
&& '\0' != *file
)
2298 fputs("//", stderr
);
2300 fprintf(stderr
, "%s", file
);
2303 if (NULL
!= format
) {
2316 if (NULL
!= format
) {
2317 if ('\0' != *basedir
|| '\0' != *file
)
2318 fputs(": ", stderr
);
2319 va_start(ap
, format
);
2320 vfprintf(stderr
, format
, ap
);
2324 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2325 fputs(": ", stderr
);
2328 fputc('\n', stderr
);