]>
git.cameronkatri.com Git - mandoc.git/blob - mandocdb.c
1 /* $Id: mandocdb.c,v 1.128 2014/04/04 02:31:07 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 int 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 parse_cat(struct mpage
*, int);
156 static void parse_man(struct mpage
*, const struct man_node
*);
157 static void parse_mdoc(struct mpage
*, const struct mdoc_node
*);
158 static int parse_mdoc_body(struct mpage
*, const struct mdoc_node
*);
159 static int parse_mdoc_head(struct mpage
*, const struct mdoc_node
*);
160 static int parse_mdoc_Fd(struct mpage
*, const struct mdoc_node
*);
161 static int parse_mdoc_Fn(struct mpage
*, const struct mdoc_node
*);
162 static int parse_mdoc_Nd(struct mpage
*, const struct mdoc_node
*);
163 static int parse_mdoc_Nm(struct mpage
*, const struct mdoc_node
*);
164 static int parse_mdoc_Sh(struct mpage
*, const struct mdoc_node
*);
165 static int parse_mdoc_Xr(struct mpage
*, const struct mdoc_node
*);
166 static void putkey(const struct mpage
*, char *, uint64_t);
167 static void putkeys(const struct mpage
*,
168 const char *, size_t, uint64_t);
169 static void putmdockey(const struct mpage
*,
170 const struct mdoc_node
*, uint64_t);
171 static void render_key(struct mchars
*, struct str
*);
172 static void say(const char *, const char *, ...);
173 static int set_basedir(const char *);
174 static int treescan(void);
175 static size_t utf8(unsigned int, char [7]);
177 static char tempfilename
[32];
178 static char *progname
;
179 static int nodb
; /* no database changes */
180 static int mparse_options
; /* abort the parse early */
181 static int use_all
; /* use all found files */
182 static int debug
; /* print what we're doing */
183 static int warnings
; /* warn about crap */
184 static int write_utf8
; /* write UTF-8 output; else ASCII */
185 static int exitcode
; /* to be returned by main */
186 static enum op op
; /* operational mode */
187 static char basedir
[PATH_MAX
]; /* current base directory */
188 static struct ohash mpages
; /* table of distinct manual pages */
189 static struct ohash mlinks
; /* table of directory entries */
190 static struct ohash strings
; /* table of all strings */
191 static sqlite3
*db
= NULL
; /* current database */
192 static sqlite3_stmt
*stmts
[STMT__MAX
]; /* current statements */
194 static const struct mdoc_handler mdocs
[MDOC_MAX
] = {
195 { NULL
, 0 }, /* Ap */
196 { NULL
, 0 }, /* Dd */
197 { NULL
, 0 }, /* Dt */
198 { NULL
, 0 }, /* Os */
199 { parse_mdoc_Sh
, TYPE_Sh
}, /* Sh */
200 { parse_mdoc_head
, TYPE_Ss
}, /* Ss */
201 { NULL
, 0 }, /* Pp */
202 { NULL
, 0 }, /* D1 */
203 { NULL
, 0 }, /* Dl */
204 { NULL
, 0 }, /* Bd */
205 { NULL
, 0 }, /* Ed */
206 { NULL
, 0 }, /* Bl */
207 { NULL
, 0 }, /* El */
208 { NULL
, 0 }, /* It */
209 { NULL
, 0 }, /* Ad */
210 { NULL
, TYPE_An
}, /* An */
211 { NULL
, TYPE_Ar
}, /* Ar */
212 { NULL
, TYPE_Cd
}, /* Cd */
213 { NULL
, TYPE_Cm
}, /* Cm */
214 { NULL
, TYPE_Dv
}, /* Dv */
215 { NULL
, TYPE_Er
}, /* Er */
216 { NULL
, TYPE_Ev
}, /* Ev */
217 { NULL
, 0 }, /* Ex */
218 { NULL
, TYPE_Fa
}, /* Fa */
219 { parse_mdoc_Fd
, 0 }, /* Fd */
220 { NULL
, TYPE_Fl
}, /* Fl */
221 { parse_mdoc_Fn
, 0 }, /* Fn */
222 { NULL
, TYPE_Ft
}, /* Ft */
223 { NULL
, TYPE_Ic
}, /* Ic */
224 { NULL
, TYPE_In
}, /* In */
225 { NULL
, TYPE_Li
}, /* Li */
226 { parse_mdoc_Nd
, TYPE_Nd
}, /* Nd */
227 { parse_mdoc_Nm
, TYPE_Nm
}, /* Nm */
228 { NULL
, 0 }, /* Op */
229 { NULL
, 0 }, /* Ot */
230 { NULL
, TYPE_Pa
}, /* Pa */
231 { NULL
, 0 }, /* Rv */
232 { NULL
, TYPE_St
}, /* St */
233 { NULL
, TYPE_Va
}, /* Va */
234 { parse_mdoc_body
, TYPE_Va
}, /* Vt */
235 { parse_mdoc_Xr
, 0 }, /* Xr */
236 { NULL
, 0 }, /* %A */
237 { NULL
, 0 }, /* %B */
238 { NULL
, 0 }, /* %D */
239 { NULL
, 0 }, /* %I */
240 { NULL
, 0 }, /* %J */
241 { NULL
, 0 }, /* %N */
242 { NULL
, 0 }, /* %O */
243 { NULL
, 0 }, /* %P */
244 { NULL
, 0 }, /* %R */
245 { NULL
, 0 }, /* %T */
246 { NULL
, 0 }, /* %V */
247 { NULL
, 0 }, /* Ac */
248 { NULL
, 0 }, /* Ao */
249 { NULL
, 0 }, /* Aq */
250 { NULL
, TYPE_At
}, /* At */
251 { NULL
, 0 }, /* Bc */
252 { NULL
, 0 }, /* Bf */
253 { NULL
, 0 }, /* Bo */
254 { NULL
, 0 }, /* Bq */
255 { NULL
, TYPE_Bsx
}, /* Bsx */
256 { NULL
, TYPE_Bx
}, /* Bx */
257 { NULL
, 0 }, /* Db */
258 { NULL
, 0 }, /* Dc */
259 { NULL
, 0 }, /* Do */
260 { NULL
, 0 }, /* Dq */
261 { NULL
, 0 }, /* Ec */
262 { NULL
, 0 }, /* Ef */
263 { NULL
, TYPE_Em
}, /* Em */
264 { NULL
, 0 }, /* Eo */
265 { NULL
, TYPE_Fx
}, /* Fx */
266 { NULL
, TYPE_Ms
}, /* Ms */
267 { NULL
, 0 }, /* No */
268 { NULL
, 0 }, /* Ns */
269 { NULL
, TYPE_Nx
}, /* Nx */
270 { NULL
, TYPE_Ox
}, /* Ox */
271 { NULL
, 0 }, /* Pc */
272 { NULL
, 0 }, /* Pf */
273 { NULL
, 0 }, /* Po */
274 { NULL
, 0 }, /* Pq */
275 { NULL
, 0 }, /* Qc */
276 { NULL
, 0 }, /* Ql */
277 { NULL
, 0 }, /* Qo */
278 { NULL
, 0 }, /* Qq */
279 { NULL
, 0 }, /* Re */
280 { NULL
, 0 }, /* Rs */
281 { NULL
, 0 }, /* Sc */
282 { NULL
, 0 }, /* So */
283 { NULL
, 0 }, /* Sq */
284 { NULL
, 0 }, /* Sm */
285 { NULL
, 0 }, /* Sx */
286 { NULL
, TYPE_Sy
}, /* Sy */
287 { NULL
, TYPE_Tn
}, /* Tn */
288 { NULL
, 0 }, /* Ux */
289 { NULL
, 0 }, /* Xc */
290 { NULL
, 0 }, /* Xo */
291 { parse_mdoc_head
, 0 }, /* Fo */
292 { NULL
, 0 }, /* Fc */
293 { NULL
, 0 }, /* Oo */
294 { NULL
, 0 }, /* Oc */
295 { NULL
, 0 }, /* Bk */
296 { NULL
, 0 }, /* Ek */
297 { NULL
, 0 }, /* Bt */
298 { NULL
, 0 }, /* Hf */
299 { NULL
, 0 }, /* Fr */
300 { NULL
, 0 }, /* Ud */
301 { NULL
, TYPE_Lb
}, /* Lb */
302 { NULL
, 0 }, /* Lp */
303 { NULL
, TYPE_Lk
}, /* Lk */
304 { NULL
, TYPE_Mt
}, /* Mt */
305 { NULL
, 0 }, /* Brq */
306 { NULL
, 0 }, /* Bro */
307 { NULL
, 0 }, /* Brc */
308 { NULL
, 0 }, /* %C */
309 { NULL
, 0 }, /* Es */
310 { NULL
, 0 }, /* En */
311 { NULL
, TYPE_Dx
}, /* Dx */
312 { NULL
, 0 }, /* %Q */
313 { NULL
, 0 }, /* br */
314 { NULL
, 0 }, /* sp */
315 { NULL
, 0 }, /* %U */
316 { NULL
, 0 }, /* Ta */
320 main(int argc
, char *argv
[])
324 const char *path_arg
;
326 struct manpaths dirs
;
328 struct ohash_info mpages_info
, mlinks_info
;
330 memset(stmts
, 0, STMT__MAX
* sizeof(sqlite3_stmt
*));
331 memset(&dirs
, 0, sizeof(struct manpaths
));
333 mpages_info
.alloc
= mlinks_info
.alloc
= hash_alloc
;
334 mpages_info
.halloc
= mlinks_info
.halloc
= hash_halloc
;
335 mpages_info
.hfree
= mlinks_info
.hfree
= hash_free
;
337 mpages_info
.key_offset
= offsetof(struct mpage
, inodev
);
338 mlinks_info
.key_offset
= offsetof(struct mlink
, file
);
340 progname
= strrchr(argv
[0], '/');
341 if (progname
== NULL
)
347 * We accept a few different invocations.
348 * The CHECKOP macro makes sure that invocation styles don't
349 * clobber each other.
351 #define CHECKOP(_op, _ch) do \
352 if (OP_DEFAULT != (_op)) { \
353 fprintf(stderr, "-%c: Conflicting option\n", (_ch)); \
355 } while (/*CONSTCOND*/0)
360 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
385 mparse_options
|= MPARSE_QUICK
;
388 if (strcmp(optarg
, "utf8")) {
389 fprintf(stderr
, "-T%s: Unsupported "
390 "output format\n", optarg
);
397 dup2(STDOUT_FILENO
, STDERR_FILENO
);
407 /* Compatibility with espie@'s makewhatis. */
416 if (OP_CONFFILE
== op
&& argc
> 0) {
417 fprintf(stderr
, "-C: Too many arguments\n");
421 exitcode
= (int)MANDOCLEVEL_OK
;
422 mp
= mparse_alloc(mparse_options
, MANDOCLEVEL_FATAL
, NULL
, NULL
);
425 ohash_init(&mpages
, 6, &mpages_info
);
426 ohash_init(&mlinks
, 6, &mlinks_info
);
428 if (OP_UPDATE
== op
|| OP_DELETE
== op
|| OP_TEST
== op
) {
430 * Force processing all files.
435 * All of these deal with a specific directory.
436 * Jump into that directory then collect files specified
437 * on the command-line.
439 if (0 == set_basedir(path_arg
))
441 for (i
= 0; i
< argc
; i
++)
448 mpages_merge(mc
, mp
);
452 * If we have arguments, use them as our manpaths.
453 * If we don't, grok from manpath(1) or however else
454 * manpath_parse() wants to do it.
457 dirs
.paths
= mandoc_calloc
458 (argc
, sizeof(char *));
459 dirs
.sz
= (size_t)argc
;
460 for (i
= 0; i
< argc
; i
++)
461 dirs
.paths
[i
] = mandoc_strdup(argv
[i
]);
463 manpath_parse(&dirs
, path_arg
, NULL
, NULL
);
466 exitcode
= (int)MANDOCLEVEL_BADARG
;
467 say("", "Empty manpath");
471 * First scan the tree rooted at a base directory, then
472 * build a new database and finally move it into place.
473 * Ignore zero-length directories and strip trailing
476 for (j
= 0; j
< dirs
.sz
; j
++) {
477 sz
= strlen(dirs
.paths
[j
]);
478 if (sz
&& '/' == dirs
.paths
[j
][sz
- 1])
479 dirs
.paths
[j
][--sz
] = '\0';
484 ohash_init(&mpages
, 6, &mpages_info
);
485 ohash_init(&mlinks
, 6, &mlinks_info
);
488 if (0 == set_basedir(dirs
.paths
[j
]))
492 if (0 == set_basedir(dirs
.paths
[j
]))
497 mpages_merge(mc
, mp
);
500 if (j
+ 1 < dirs
.sz
) {
502 ohash_delete(&mpages
);
503 ohash_delete(&mlinks
);
513 ohash_delete(&mpages
);
514 ohash_delete(&mlinks
);
517 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
518 " %s [-aDnpQ] [-Tutf8] dir ...\n"
519 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
520 " %s [-Dnp] -u dir [file ...]\n"
521 " %s [-Q] -t file ...\n",
522 progname
, progname
, progname
,
525 return((int)MANDOCLEVEL_BADARG
);
529 * Scan a directory tree rooted at "basedir" for manpages.
530 * We use fts(), scanning directory parts along the way for clues to our
531 * section and architecture.
533 * If use_all has been specified, grok all files.
534 * If not, sanitise paths to the following:
536 * [./]man*[/<arch>]/<name>.<section>
538 * [./]cat<section>[/<arch>]/<name>.0
540 * TODO: accomodate for multi-language directories.
549 char *dsec
, *arch
, *fsec
, *cp
;
554 argv
[1] = (char *)NULL
;
557 * Walk through all components under the directory, using the
558 * logical descent of files.
560 f
= fts_open((char * const *)argv
, FTS_LOGICAL
, NULL
);
562 exitcode
= (int)MANDOCLEVEL_SYSERR
;
563 say("", "&fts_open");
570 while (NULL
!= (ff
= fts_read(f
))) {
571 path
= ff
->fts_path
+ 2;
573 * If we're a regular file, add an mlink by using the
574 * stored directory data and handling the filename.
576 if (FTS_F
== ff
->fts_info
) {
577 if (0 == strcmp(path
, MANDOC_DB
))
579 if ( ! use_all
&& ff
->fts_level
< 2) {
581 say(path
, "Extraneous file");
586 while (NULL
== fsec
) {
587 fsec
= strrchr(ff
->fts_name
, '.');
588 if (NULL
== fsec
|| strcmp(fsec
+1, "gz"))
598 "No filename suffix");
601 } else if (0 == strcmp(++fsec
, "html")) {
603 say(path
, "Skip html");
605 } else if (0 == strcmp(fsec
, "ps")) {
607 say(path
, "Skip ps");
609 } else if (0 == strcmp(fsec
, "pdf")) {
611 say(path
, "Skip pdf");
613 } else if ( ! use_all
&&
614 ((FORM_SRC
== dform
&& strcmp(fsec
, dsec
)) ||
615 (FORM_CAT
== dform
&& strcmp(fsec
, "0")))) {
617 say(path
, "Wrong filename suffix");
622 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
623 strlcpy(mlink
->file
, path
, sizeof(mlink
->file
));
624 mlink
->dform
= dform
;
627 mlink
->name
= ff
->fts_name
;
630 mlink_add(mlink
, ff
->fts_statp
);
632 } else if (FTS_D
!= ff
->fts_info
&&
633 FTS_DP
!= ff
->fts_info
) {
635 say(path
, "Not a regular file");
639 switch (ff
->fts_level
) {
641 /* Ignore the root directory. */
645 * This might contain manX/ or catX/.
646 * Try to infer this from the name.
647 * If we're not in use_all, enforce it.
650 if (FTS_DP
== ff
->fts_info
)
653 if (0 == strncmp(cp
, "man", 3)) {
656 } else if (0 == strncmp(cp
, "cat", 3)) {
664 if (NULL
!= dsec
|| use_all
)
668 say(path
, "Unknown directory part");
669 fts_set(f
, ff
, FTS_SKIP
);
673 * Possibly our architecture.
674 * If we're descending, keep tabs on it.
676 if (FTS_DP
!= ff
->fts_info
&& NULL
!= dsec
)
682 if (FTS_DP
== ff
->fts_info
|| use_all
)
685 say(path
, "Extraneous directory part");
686 fts_set(f
, ff
, FTS_SKIP
);
696 * Add a file to the mlinks table.
697 * Do not verify that it's a "valid" looking manpage (we'll do that
700 * Try to infer the manual section, architecture, and page name from the
701 * path, assuming it looks like
703 * [./]man*[/<arch>]/<name>.<section>
705 * [./]cat<section>[/<arch>]/<name>.0
707 * See treescan() for the fts(3) version of this.
710 filescan(const char *file
)
719 if (0 == strncmp(file
, "./", 2))
722 if (NULL
== realpath(file
, buf
)) {
723 exitcode
= (int)MANDOCLEVEL_BADARG
;
724 say(file
, "&realpath");
728 if (strstr(buf
, basedir
) == buf
)
729 start
= buf
+ strlen(basedir
) + 1;
730 else if (OP_TEST
== op
)
733 exitcode
= (int)MANDOCLEVEL_BADARG
;
734 say("", "%s: outside base directory", buf
);
738 if (-1 == stat(buf
, &st
)) {
739 exitcode
= (int)MANDOCLEVEL_BADARG
;
742 } else if ( ! (S_IFREG
& st
.st_mode
)) {
743 exitcode
= (int)MANDOCLEVEL_BADARG
;
744 say(file
, "Not a regular file");
748 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
749 strlcpy(mlink
->file
, start
, sizeof(mlink
->file
));
752 * First try to guess our directory structure.
753 * If we find a separator, try to look for man* or cat*.
754 * If we find one of these and what's underneath is a directory,
755 * assume it's an architecture.
757 if (NULL
!= (p
= strchr(start
, '/'))) {
759 if (0 == strncmp(start
, "man", 3)) {
760 mlink
->dform
= FORM_SRC
;
761 mlink
->dsec
= start
+ 3;
762 } else if (0 == strncmp(start
, "cat", 3)) {
763 mlink
->dform
= FORM_CAT
;
764 mlink
->dsec
= start
+ 3;
768 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
776 * Now check the file suffix.
777 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
779 p
= strrchr(start
, '\0');
780 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
789 * Now try to parse the name.
790 * Use the filename portion of the path.
793 if (NULL
!= (p
= strrchr(start
, '/'))) {
797 mlink_add(mlink
, &st
);
801 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
803 struct inodev inodev
;
807 assert(NULL
!= mlink
->file
);
809 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
810 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
811 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
812 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
814 if ('0' == *mlink
->fsec
) {
816 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
817 mlink
->fform
= FORM_CAT
;
818 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
819 mlink
->fform
= FORM_SRC
;
821 mlink
->fform
= FORM_NONE
;
823 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
824 assert(NULL
== ohash_find(&mlinks
, slot
));
825 ohash_insert(&mlinks
, slot
, mlink
);
827 inodev
.st_ino
= st
->st_ino
;
828 inodev
.st_dev
= st
->st_dev
;
829 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
830 sizeof(struct inodev
), inodev
.st_ino
);
831 mpage
= ohash_find(&mpages
, slot
);
833 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
834 mpage
->inodev
.st_ino
= inodev
.st_ino
;
835 mpage
->inodev
.st_dev
= inodev
.st_dev
;
836 ohash_insert(&mpages
, slot
, mpage
);
838 mlink
->next
= mpage
->mlinks
;
839 mpage
->mlinks
= mlink
;
840 mlink
->mpage
= mpage
;
844 mlink_free(struct mlink
*mlink
)
861 mpage
= ohash_first(&mpages
, &slot
);
862 while (NULL
!= mpage
) {
863 while (NULL
!= (mlink
= mpage
->mlinks
)) {
864 mpage
->mlinks
= mlink
->next
;
872 mpage
= ohash_next(&mpages
, &slot
);
877 * For each mlink to the mpage, check whether the path looks like
878 * it is formatted, and if it does, check whether a source manual
879 * exists by the same name, ignoring the suffix.
880 * If both conditions hold, drop the mlink.
883 mlinks_undupe(struct mpage
*mpage
)
890 mpage
->form
= FORM_CAT
;
891 prev
= &mpage
->mlinks
;
892 while (NULL
!= (mlink
= *prev
)) {
893 if (FORM_CAT
!= mlink
->dform
) {
894 mpage
->form
= FORM_NONE
;
897 if (strlcpy(buf
, mlink
->file
, PATH_MAX
) >= PATH_MAX
) {
899 say(mlink
->file
, "Filename too long");
902 bufp
= strstr(buf
, "cat");
903 assert(NULL
!= bufp
);
904 memcpy(bufp
, "man", 3);
905 if (NULL
!= (bufp
= strrchr(buf
, '.')))
907 strlcat(buf
, mlink
->dsec
, PATH_MAX
);
908 if (NULL
== ohash_find(&mlinks
,
909 ohash_qlookup(&mlinks
, buf
)))
912 say(mlink
->file
, "Man source exists: %s", buf
);
919 prev
= &(*prev
)->next
;
924 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
931 * Check whether the manual section given in a file
932 * agrees with the directory where the file is located.
933 * Some manuals have suffixes like (3p) on their
934 * section number either inside the file or in the
935 * directory name, some are linked into more than one
936 * section, like encrypt(1) = makekey(8).
939 if (FORM_SRC
== mpage
->form
&&
940 strcasecmp(mpage
->sec
, mlink
->dsec
)) {
942 say(mlink
->file
, "Section \"%s\" manual in %s directory",
943 mpage
->sec
, mlink
->dsec
);
947 * Manual page directories exist for each kernel
948 * architecture as returned by machine(1).
949 * However, many manuals only depend on the
950 * application architecture as returned by arch(1).
951 * For example, some (2/ARM) manuals are shared
952 * across the "armish" and "zaurus" kernel
954 * A few manuals are even shared across completely
955 * different architectures, for example fdformat(1)
956 * on amd64, i386, sparc, and sparc64.
959 if (strcasecmp(mpage
->arch
, mlink
->arch
)) {
961 say(mlink
->file
, "Architecture \"%s\" manual in "
962 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
965 if (strcasecmp(mpage
->title
, mlink
->name
))
972 * Run through the files in the global vector "mpages"
973 * and add them to the database specified in "basedir".
975 * This handles the parsing scheme itself, using the cues of directory
976 * and filename to determine whether the file is parsable or not.
979 mpages_merge(struct mchars
*mc
, struct mparse
*mp
)
982 struct ohash_info str_info
;
984 struct mpage
*mpage
, *mpage_dest
;
985 struct mlink
*mlink
, *mlink_dest
;
993 enum mandoclevel lvl
;
995 str_info
.alloc
= hash_alloc
;
996 str_info
.halloc
= hash_halloc
;
997 str_info
.hfree
= hash_free
;
998 str_info
.key_offset
= offsetof(struct str
, key
);
1001 SQL_EXEC("BEGIN TRANSACTION");
1003 mpage
= ohash_first(&mpages
, &pslot
);
1004 while (NULL
!= mpage
) {
1005 mlinks_undupe(mpage
);
1006 if (NULL
== mpage
->mlinks
) {
1007 mpage
= ohash_next(&mpages
, &pslot
);
1011 ohash_init(&strings
, 6, &str_info
);
1020 if (mpage
->mlinks
->gzip
) {
1021 if (-1 == pipe(fd
)) {
1022 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1023 say(mpage
->mlinks
->file
, "&pipe gunzip");
1026 switch (child_pid
= fork()) {
1028 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1029 say(mpage
->mlinks
->file
, "&fork gunzip");
1036 if (-1 == dup2(fd
[1], STDOUT_FILENO
)) {
1037 say(mpage
->mlinks
->file
,
1041 execlp("gunzip", "gunzip", "-c",
1042 mpage
->mlinks
->file
, NULL
);
1043 say(mpage
->mlinks
->file
, "&exec gunzip");
1052 * Try interpreting the file as mdoc(7) or man(7)
1053 * source code, unless it is already known to be
1054 * formatted. Fall back to formatted mode.
1056 if (FORM_CAT
!= mpage
->mlinks
->dform
||
1057 FORM_CAT
!= mpage
->mlinks
->fform
) {
1058 lvl
= mparse_readfd(mp
, fd
[0], mpage
->mlinks
->file
);
1059 if (lvl
< MANDOCLEVEL_FATAL
)
1060 mparse_result(mp
, &mdoc
, &man
, &sodest
);
1063 if (NULL
!= sodest
) {
1064 mlink_dest
= ohash_find(&mlinks
,
1065 ohash_qlookup(&mlinks
, sodest
));
1066 if (NULL
!= mlink_dest
) {
1068 /* The .so target exists. */
1070 mpage_dest
= mlink_dest
->mpage
;
1071 mlink
= mpage
->mlinks
;
1073 mlink
->mpage
= mpage_dest
;
1076 * If the target was already
1077 * processed, add the links
1078 * to the database now.
1079 * Otherwise, this will
1080 * happen when we come
1084 if (mpage_dest
->recno
)
1087 if (NULL
== mlink
->next
)
1089 mlink
= mlink
->next
;
1092 /* Move all links to the target. */
1094 mlink
->next
= mlink_dest
->next
;
1095 mlink_dest
->next
= mpage
->mlinks
;
1096 mpage
->mlinks
= NULL
;
1099 } else if (NULL
!= mdoc
) {
1100 mpage
->form
= FORM_SRC
;
1102 mandoc_strdup(mdoc_meta(mdoc
)->msec
);
1103 mpage
->arch
= mdoc_meta(mdoc
)->arch
;
1104 mpage
->arch
= mandoc_strdup(
1105 NULL
== mpage
->arch
? "" : mpage
->arch
);
1107 mandoc_strdup(mdoc_meta(mdoc
)->title
);
1108 } else if (NULL
!= man
) {
1109 mpage
->form
= FORM_SRC
;
1111 mandoc_strdup(man_meta(man
)->msec
);
1113 mandoc_strdup(mpage
->mlinks
->arch
);
1115 mandoc_strdup(man_meta(man
)->title
);
1117 mpage
->form
= FORM_CAT
;
1119 mandoc_strdup(mpage
->mlinks
->dsec
);
1121 mandoc_strdup(mpage
->mlinks
->arch
);
1123 mandoc_strdup(mpage
->mlinks
->name
);
1125 putkey(mpage
, mpage
->sec
, TYPE_sec
);
1126 putkey(mpage
, '\0' == *mpage
->arch
?
1127 any
: mpage
->arch
, TYPE_arch
);
1129 for (mlink
= mpage
->mlinks
; mlink
; mlink
= mlink
->next
) {
1130 if ('\0' != *mlink
->dsec
)
1131 putkey(mpage
, mlink
->dsec
, TYPE_sec
);
1132 if ('\0' != *mlink
->fsec
)
1133 putkey(mpage
, mlink
->fsec
, TYPE_sec
);
1134 putkey(mpage
, '\0' == *mlink
->arch
?
1135 any
: mlink
->arch
, TYPE_arch
);
1136 putkey(mpage
, mlink
->name
, TYPE_Nm
);
1139 if (warnings
&& !use_all
) {
1141 for (mlink
= mpage
->mlinks
; mlink
;
1142 mlink
= mlink
->next
)
1143 if (mlink_check(mpage
, mlink
))
1149 if (NULL
!= (cp
= mdoc_meta(mdoc
)->name
))
1150 putkey(mpage
, cp
, TYPE_Nm
);
1151 assert(NULL
== mpage
->desc
);
1152 parse_mdoc(mpage
, mdoc_node(mdoc
));
1153 putkey(mpage
, NULL
!= mpage
->desc
?
1154 mpage
->desc
: mpage
->mlinks
->name
, TYPE_Nd
);
1155 } else if (NULL
!= man
)
1156 parse_man(mpage
, man_node(man
));
1158 parse_cat(mpage
, fd
[0]);
1164 if (-1 == waitpid(child_pid
, &status
, 0)) {
1165 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1166 say(mpage
->mlinks
->file
, "&wait gunzip");
1167 } else if (WIFSIGNALED(status
)) {
1168 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1169 say(mpage
->mlinks
->file
,
1170 "gunzip died from signal %d",
1172 } else if (WEXITSTATUS(status
)) {
1173 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1174 say(mpage
->mlinks
->file
,
1175 "gunzip failed with code %d",
1176 WEXITSTATUS(status
));
1179 ohash_delete(&strings
);
1180 mpage
= ohash_next(&mpages
, &pslot
);
1184 SQL_EXEC("END TRANSACTION");
1188 parse_cat(struct mpage
*mpage
, int fd
)
1191 char *line
, *p
, *title
;
1192 size_t len
, plen
, titlesz
;
1194 stream
= (-1 == fd
) ?
1195 fopen(mpage
->mlinks
->file
, "r") :
1197 if (NULL
== stream
) {
1199 say(mpage
->mlinks
->file
, "&fopen");
1203 /* Skip to first blank line. */
1205 while (NULL
!= (line
= fgetln(stream
, &len
)))
1210 * Assume the first line that is not indented
1211 * is the first section header. Skip to it.
1214 while (NULL
!= (line
= fgetln(stream
, &len
)))
1215 if ('\n' != *line
&& ' ' != *line
)
1219 * Read up until the next section into a buffer.
1220 * Strip the leading and trailing newline from each read line,
1221 * appending a trailing space.
1222 * Ignore empty (whitespace-only) lines.
1228 while (NULL
!= (line
= fgetln(stream
, &len
))) {
1229 if (' ' != *line
|| '\n' != line
[len
- 1])
1231 while (len
> 0 && isspace((unsigned char)*line
)) {
1237 title
= mandoc_realloc(title
, titlesz
+ len
);
1238 memcpy(title
+ titlesz
, line
, len
);
1240 title
[titlesz
- 1] = ' ';
1244 * If no page content can be found, or the input line
1245 * is already the next section header, or there is no
1246 * trailing newline, reuse the page title as the page
1250 if (NULL
== title
|| '\0' == *title
) {
1252 say(mpage
->mlinks
->file
,
1253 "Cannot find NAME section");
1254 assert(NULL
== mpage
->desc
);
1255 mpage
->desc
= mandoc_strdup(mpage
->mlinks
->name
);
1256 putkey(mpage
, mpage
->mlinks
->name
, TYPE_Nd
);
1262 title
= mandoc_realloc(title
, titlesz
+ 1);
1263 title
[titlesz
] = '\0';
1266 * Skip to the first dash.
1267 * Use the remaining line as the description (no more than 70
1271 if (NULL
!= (p
= strstr(title
, "- "))) {
1272 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1273 /* Skip to next word. */ ;
1276 say(mpage
->mlinks
->file
,
1277 "No dash in title line");
1283 /* Strip backspace-encoding from line. */
1285 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1288 memmove(line
, line
+ 1, plen
--);
1291 memmove(line
- 1, line
+ 1, plen
- len
);
1295 assert(NULL
== mpage
->desc
);
1296 mpage
->desc
= mandoc_strdup(p
);
1297 putkey(mpage
, mpage
->desc
, TYPE_Nd
);
1303 * Put a type/word pair into the word database for this particular file.
1306 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1310 assert(NULL
!= value
);
1311 if (TYPE_arch
== type
)
1312 for (cp
= value
; *cp
; cp
++)
1313 if (isupper((unsigned char)*cp
))
1314 *cp
= _tolower((unsigned char)*cp
);
1315 putkeys(mpage
, value
, strlen(value
), type
);
1319 * Grok all nodes at or below a certain mdoc node into putkey().
1322 putmdockey(const struct mpage
*mpage
,
1323 const struct mdoc_node
*n
, uint64_t m
)
1326 for ( ; NULL
!= n
; n
= n
->next
) {
1327 if (NULL
!= n
->child
)
1328 putmdockey(mpage
, n
->child
, m
);
1329 if (MDOC_TEXT
== n
->type
)
1330 putkey(mpage
, n
->string
, m
);
1335 parse_man(struct mpage
*mpage
, const struct man_node
*n
)
1337 const struct man_node
*head
, *body
;
1338 char *start
, *title
;
1346 * We're only searching for one thing: the first text child in
1347 * the BODY of a NAME section. Since we don't keep track of
1348 * sections in -man, run some hoops to find out whether we're in
1349 * the correct section or not.
1352 if (MAN_BODY
== n
->type
&& MAN_SH
== n
->tok
) {
1354 assert(body
->parent
);
1355 if (NULL
!= (head
= body
->parent
->head
) &&
1356 1 == head
->nchild
&&
1357 NULL
!= (head
= (head
->child
)) &&
1358 MAN_TEXT
== head
->type
&&
1359 0 == strcmp(head
->string
, "NAME") &&
1360 NULL
!= body
->child
) {
1363 * Suck the entire NAME section into memory.
1364 * Yes, we might run away.
1365 * But too many manuals have big, spread-out
1366 * NAME sections over many lines.
1370 man_deroff(&title
, body
);
1375 * Go through a special heuristic dance here.
1376 * Conventionally, one or more manual names are
1377 * comma-specified prior to a whitespace, then a
1378 * dash, then a description. Try to puzzle out
1379 * the name parts here.
1384 sz
= strcspn(start
, " ,");
1385 if ('\0' == start
[sz
])
1392 * Assume a stray trailing comma in the
1393 * name list if a name begins with a dash.
1396 if ('-' == start
[0] ||
1397 ('\\' == start
[0] && '-' == start
[1]))
1400 putkey(mpage
, start
, TYPE_Nm
);
1407 assert(',' == byte
);
1409 while (' ' == *start
)
1413 if (start
== title
) {
1414 putkey(mpage
, start
, TYPE_Nm
);
1419 while (isspace((unsigned char)*start
))
1422 if (0 == strncmp(start
, "-", 1))
1424 else if (0 == strncmp(start
, "\\-\\-", 4))
1426 else if (0 == strncmp(start
, "\\-", 2))
1428 else if (0 == strncmp(start
, "\\(en", 4))
1430 else if (0 == strncmp(start
, "\\(em", 4))
1433 while (' ' == *start
)
1436 assert(NULL
== mpage
->desc
);
1437 mpage
->desc
= mandoc_strdup(start
);
1438 putkey(mpage
, mpage
->desc
, TYPE_Nd
);
1444 for (n
= n
->child
; n
; n
= n
->next
) {
1445 if (NULL
!= mpage
->desc
)
1447 parse_man(mpage
, n
);
1452 parse_mdoc(struct mpage
*mpage
, const struct mdoc_node
*n
)
1456 for (n
= n
->child
; NULL
!= n
; n
= n
->next
) {
1467 if (NULL
!= mdocs
[n
->tok
].fp
)
1468 if (0 == (*mdocs
[n
->tok
].fp
)(mpage
, n
))
1470 if (mdocs
[n
->tok
].mask
)
1471 putmdockey(mpage
, n
->child
,
1472 mdocs
[n
->tok
].mask
);
1475 assert(MDOC_ROOT
!= n
->type
);
1478 if (NULL
!= n
->child
)
1479 parse_mdoc(mpage
, n
);
1484 parse_mdoc_Fd(struct mpage
*mpage
, const struct mdoc_node
*n
)
1486 const char *start
, *end
;
1489 if (SEC_SYNOPSIS
!= n
->sec
||
1490 NULL
== (n
= n
->child
) ||
1491 MDOC_TEXT
!= n
->type
)
1495 * Only consider those `Fd' macro fields that begin with an
1496 * "inclusion" token (versus, e.g., #define).
1499 if (strcmp("#include", n
->string
))
1502 if (NULL
== (n
= n
->next
) || MDOC_TEXT
!= n
->type
)
1506 * Strip away the enclosing angle brackets and make sure we're
1511 if ('<' == *start
|| '"' == *start
)
1514 if (0 == (sz
= strlen(start
)))
1517 end
= &start
[(int)sz
- 1];
1518 if ('>' == *end
|| '"' == *end
)
1522 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1527 parse_mdoc_Fn(struct mpage
*mpage
, const struct mdoc_node
*n
)
1531 if (NULL
== (n
= n
->child
) || MDOC_TEXT
!= n
->type
)
1535 * Parse: .Fn "struct type *name" "char *arg".
1536 * First strip away pointer symbol.
1537 * Then store the function name, then type.
1538 * Finally, store the arguments.
1541 if (NULL
== (cp
= strrchr(n
->string
, ' ')))
1547 putkey(mpage
, cp
, TYPE_Fn
);
1550 putkeys(mpage
, n
->string
, cp
- n
->string
, TYPE_Ft
);
1552 for (n
= n
->next
; NULL
!= n
; n
= n
->next
)
1553 if (MDOC_TEXT
== n
->type
)
1554 putkey(mpage
, n
->string
, TYPE_Fa
);
1560 parse_mdoc_Xr(struct mpage
*mpage
, const struct mdoc_node
*n
)
1564 if (NULL
== (n
= n
->child
))
1567 if (NULL
== n
->next
) {
1568 putkey(mpage
, n
->string
, TYPE_Xr
);
1572 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1573 putkey(mpage
, cp
, TYPE_Xr
);
1579 parse_mdoc_Nd(struct mpage
*mpage
, const struct mdoc_node
*n
)
1582 if (MDOC_BODY
== n
->type
)
1583 mdoc_deroff(&mpage
->desc
, n
);
1588 parse_mdoc_Nm(struct mpage
*mpage
, const struct mdoc_node
*n
)
1591 return(SEC_NAME
== n
->sec
||
1592 (SEC_SYNOPSIS
== n
->sec
&& MDOC_HEAD
== n
->type
));
1596 parse_mdoc_Sh(struct mpage
*mpage
, const struct mdoc_node
*n
)
1599 return(SEC_CUSTOM
== n
->sec
&& MDOC_HEAD
== n
->type
);
1603 parse_mdoc_head(struct mpage
*mpage
, const struct mdoc_node
*n
)
1606 return(MDOC_HEAD
== n
->type
);
1610 parse_mdoc_body(struct mpage
*mpage
, const struct mdoc_node
*n
)
1613 return(MDOC_BODY
== n
->type
);
1617 * Add a string to the hash table for the current manual.
1618 * Each string has a bitmask telling which macros it belongs to.
1619 * When we finish the manual, we'll dump the table.
1622 putkeys(const struct mpage
*mpage
,
1623 const char *cp
, size_t sz
, uint64_t v
)
1635 for (i
= 0, mask
= 1;
1636 i
< mansearch_keymax
;
1640 say(mpage
->mlinks
->file
, "Adding key %s=%*s",
1641 mansearch_keynames
[i
], sz
, cp
);
1645 slot
= ohash_qlookupi(&strings
, cp
, &end
);
1646 s
= ohash_find(&strings
, slot
);
1648 if (NULL
!= s
&& mpage
== s
->mpage
) {
1651 } else if (NULL
== s
) {
1652 s
= mandoc_calloc(sizeof(struct str
) + sz
+ 1, 1);
1653 memcpy(s
->key
, cp
, sz
);
1654 ohash_insert(&strings
, slot
, s
);
1661 * Take a Unicode codepoint and produce its UTF-8 encoding.
1662 * This isn't the best way to do this, but it works.
1663 * The magic numbers are from the UTF-8 packaging.
1664 * They're not as scary as they seem: read the UTF-8 spec for details.
1667 utf8(unsigned int cp
, char out
[7])
1672 if (cp
<= 0x0000007F) {
1675 } else if (cp
<= 0x000007FF) {
1677 out
[0] = (cp
>> 6 & 31) | 192;
1678 out
[1] = (cp
& 63) | 128;
1679 } else if (cp
<= 0x0000FFFF) {
1681 out
[0] = (cp
>> 12 & 15) | 224;
1682 out
[1] = (cp
>> 6 & 63) | 128;
1683 out
[2] = (cp
& 63) | 128;
1684 } else if (cp
<= 0x001FFFFF) {
1686 out
[0] = (cp
>> 18 & 7) | 240;
1687 out
[1] = (cp
>> 12 & 63) | 128;
1688 out
[2] = (cp
>> 6 & 63) | 128;
1689 out
[3] = (cp
& 63) | 128;
1690 } else if (cp
<= 0x03FFFFFF) {
1692 out
[0] = (cp
>> 24 & 3) | 248;
1693 out
[1] = (cp
>> 18 & 63) | 128;
1694 out
[2] = (cp
>> 12 & 63) | 128;
1695 out
[3] = (cp
>> 6 & 63) | 128;
1696 out
[4] = (cp
& 63) | 128;
1697 } else if (cp
<= 0x7FFFFFFF) {
1699 out
[0] = (cp
>> 30 & 1) | 252;
1700 out
[1] = (cp
>> 24 & 63) | 128;
1701 out
[2] = (cp
>> 18 & 63) | 128;
1702 out
[3] = (cp
>> 12 & 63) | 128;
1703 out
[4] = (cp
>> 6 & 63) | 128;
1704 out
[5] = (cp
& 63) | 128;
1713 * Store the rendered version of a key, or alias the pointer
1714 * if the key contains no escape sequences.
1717 render_key(struct mchars
*mc
, struct str
*key
)
1719 size_t sz
, bsz
, pos
;
1720 char utfbuf
[7], res
[6];
1722 const char *seq
, *cpp
, *val
;
1724 enum mandoc_esc esc
;
1726 assert(NULL
== key
->rendered
);
1730 res
[2] = ASCII_NBRSP
;
1731 res
[3] = ASCII_HYPH
;
1732 res
[4] = ASCII_BREAK
;
1739 * Pre-check: if we have no stop-characters, then set the
1740 * pointer as ourselvse and get out of here.
1742 if (strcspn(val
, res
) == bsz
) {
1743 key
->rendered
= key
->key
;
1747 /* Pre-allocate by the length of the input */
1749 buf
= mandoc_malloc(++bsz
);
1752 while ('\0' != *val
) {
1754 * Halt on the first escape sequence.
1755 * This also halts on the end of string, in which case
1756 * we just copy, fallthrough, and exit the loop.
1758 if ((sz
= strcspn(val
, res
)) > 0) {
1759 memcpy(&buf
[pos
], val
, sz
);
1783 /* Read past the slash. */
1788 * Parse the escape sequence and see if it's a
1789 * predefined character or special character.
1793 ((const char **)&val
, &seq
, &len
);
1794 if (ESCAPE_ERROR
== esc
)
1796 if (ESCAPE_SPECIAL
!= esc
)
1800 * Render the special character
1801 * as either UTF-8 or ASCII.
1805 if (0 == (u
= mchars_spec2cp(mc
, seq
, len
)))
1808 if (0 == (sz
= utf8(u
, utfbuf
)))
1812 cpp
= mchars_spec2str(mc
, seq
, len
, &sz
);
1815 if (ASCII_NBRSP
== *cpp
) {
1821 /* Copy the rendered glyph into the stream. */
1824 buf
= mandoc_realloc(buf
, bsz
);
1825 memcpy(&buf
[pos
], cpp
, sz
);
1830 key
->rendered
= buf
;
1834 dbadd_mlink(const struct mlink
*mlink
)
1839 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->dsec
);
1840 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->arch
);
1841 SQL_BIND_TEXT(stmts
[STMT_INSERT_LINK
], i
, mlink
->name
);
1842 SQL_BIND_INT64(stmts
[STMT_INSERT_LINK
], i
, mlink
->mpage
->recno
);
1843 SQL_STEP(stmts
[STMT_INSERT_LINK
]);
1844 sqlite3_reset(stmts
[STMT_INSERT_LINK
]);
1848 * Flush the current page's terms (and their bits) into the database.
1849 * Wrap the entire set of additions in a transaction to make sqlite be a
1851 * Also, handle escape sequences at the last possible moment.
1854 dbadd(struct mpage
*mpage
, struct mchars
*mc
)
1856 struct mlink
*mlink
;
1861 mlink
= mpage
->mlinks
;
1864 while (NULL
!= mlink
) {
1865 fputs(mlink
->name
, stdout
);
1866 if (NULL
== mlink
->next
||
1867 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
1868 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
1869 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
1871 if ('\0' == *mlink
->dsec
)
1872 fputs(mlink
->fsec
, stdout
);
1874 fputs(mlink
->dsec
, stdout
);
1875 if ('\0' != *mlink
->arch
)
1876 printf("/%s", mlink
->arch
);
1879 mlink
= mlink
->next
;
1881 fputs(", ", stdout
);
1883 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
1884 key
= ohash_next(&strings
, &slot
)) {
1885 if (TYPE_Nd
& key
->mask
) {
1886 if (NULL
== key
->rendered
)
1887 render_key(mc
, key
);
1888 printf(" - %s", key
->rendered
);
1897 say(mlink
->file
, "Adding to database");
1900 SQL_BIND_INT(stmts
[STMT_INSERT_PAGE
], i
, FORM_SRC
== mpage
->form
);
1901 SQL_STEP(stmts
[STMT_INSERT_PAGE
]);
1902 mpage
->recno
= sqlite3_last_insert_rowid(db
);
1903 sqlite3_reset(stmts
[STMT_INSERT_PAGE
]);
1905 while (NULL
!= mlink
) {
1907 mlink
= mlink
->next
;
1910 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
1911 key
= ohash_next(&strings
, &slot
)) {
1912 assert(key
->mpage
== mpage
);
1913 if (NULL
== key
->rendered
)
1914 render_key(mc
, key
);
1916 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, key
->mask
);
1917 SQL_BIND_TEXT(stmts
[STMT_INSERT_KEY
], i
, key
->rendered
);
1918 SQL_BIND_INT64(stmts
[STMT_INSERT_KEY
], i
, mpage
->recno
);
1919 SQL_STEP(stmts
[STMT_INSERT_KEY
]);
1920 sqlite3_reset(stmts
[STMT_INSERT_KEY
]);
1921 if (key
->rendered
!= key
->key
)
1922 free(key
->rendered
);
1930 struct mpage
*mpage
;
1931 struct mlink
*mlink
;
1936 SQL_EXEC("BEGIN TRANSACTION");
1938 for (mpage
= ohash_first(&mpages
, &slot
); NULL
!= mpage
;
1939 mpage
= ohash_next(&mpages
, &slot
)) {
1940 mlink
= mpage
->mlinks
;
1942 say(mlink
->file
, "Deleting from database");
1945 for ( ; NULL
!= mlink
; mlink
= mlink
->next
) {
1947 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
1949 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
1951 SQL_BIND_TEXT(stmts
[STMT_DELETE_PAGE
],
1953 SQL_STEP(stmts
[STMT_DELETE_PAGE
]);
1954 sqlite3_reset(stmts
[STMT_DELETE_PAGE
]);
1959 SQL_EXEC("END TRANSACTION");
1963 * Close an existing database and its prepared statements.
1964 * If "real" is not set, rename the temporary file into the real one.
1976 for (i
= 0; i
< STMT__MAX
; i
++) {
1977 sqlite3_finalize(stmts
[i
]);
1987 if ('\0' == *tempfilename
) {
1988 if (-1 == rename(MANDOC_DB
"~", MANDOC_DB
)) {
1989 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1990 say(MANDOC_DB
, "&rename");
1995 switch (child
= fork()) {
1997 exitcode
= (int)MANDOCLEVEL_SYSERR
;
1998 say("", "&fork cmp");
2001 execlp("cmp", "cmp", "-s",
2002 tempfilename
, MANDOC_DB
, NULL
);
2003 say("", "&exec cmp");
2008 if (-1 == waitpid(child
, &status
, 0)) {
2009 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2010 say("", "&wait cmp");
2011 } else if (WIFSIGNALED(status
)) {
2012 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2013 say("", "cmp died from signal %d", WTERMSIG(status
));
2014 } else if (WEXITSTATUS(status
)) {
2015 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2017 "Data changed, but cannot replace database");
2020 *strrchr(tempfilename
, '/') = '\0';
2021 switch (child
= fork()) {
2023 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2024 say("", "&fork rm");
2027 execlp("rm", "rm", "-rf", tempfilename
, NULL
);
2028 say("", "&exec rm");
2029 exit((int)MANDOCLEVEL_SYSERR
);
2033 if (-1 == waitpid(child
, &status
, 0)) {
2034 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2035 say("", "&wait rm");
2036 } else if (WIFSIGNALED(status
) || WEXITSTATUS(status
)) {
2037 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2038 say("", "%s: Cannot remove temporary directory",
2044 * This is straightforward stuff.
2045 * Open a database connection to a "temporary" database, then open a set
2046 * of prepared statements we'll use over and over again.
2047 * If "real" is set, we use the existing database; if not, we truncate a
2049 * Must be matched by dbclose().
2060 *tempfilename
= '\0';
2061 ofl
= SQLITE_OPEN_READWRITE
;
2064 rc
= sqlite3_open_v2(MANDOC_DB
, &db
, ofl
, NULL
);
2065 if (SQLITE_OK
!= rc
) {
2066 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2067 say(MANDOC_DB
, "%s", sqlite3_errmsg(db
));
2070 goto prepare_statements
;
2073 ofl
|= SQLITE_OPEN_CREATE
| SQLITE_OPEN_EXCLUSIVE
;
2075 remove(MANDOC_DB
"~");
2076 rc
= sqlite3_open_v2(MANDOC_DB
"~", &db
, ofl
, NULL
);
2077 if (SQLITE_OK
== rc
)
2079 if (MPARSE_QUICK
& mparse_options
) {
2080 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2081 say(MANDOC_DB
"~", "%s", sqlite3_errmsg(db
));
2085 if (strlcpy(tempfilename
, "/tmp/mandocdb.XXXXXX",
2086 sizeof(tempfilename
)) >= sizeof(tempfilename
)) {
2087 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2088 say("", "/tmp/mandocdb.XXXXXX: Filename too long");
2091 if (NULL
== mkdtemp(tempfilename
)) {
2092 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2093 say("", "&%s", tempfilename
);
2096 if (strlcat(tempfilename
, "/" MANDOC_DB
,
2097 sizeof(tempfilename
)) >= sizeof(tempfilename
)) {
2098 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2099 say("", "%s/" MANDOC_DB
": Filename too long",
2103 rc
= sqlite3_open_v2(tempfilename
, &db
, ofl
, NULL
);
2104 if (SQLITE_OK
!= rc
) {
2105 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2106 say("", "%s: %s", tempfilename
, sqlite3_errmsg(db
));
2111 sql
= "CREATE TABLE \"mpages\" (\n"
2112 " \"form\" INTEGER NOT NULL,\n"
2113 " \"id\" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL\n"
2116 "CREATE TABLE \"mlinks\" (\n"
2117 " \"sec\" TEXT NOT NULL,\n"
2118 " \"arch\" TEXT NOT NULL,\n"
2119 " \"name\" TEXT NOT NULL,\n"
2120 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(id) "
2121 "ON DELETE CASCADE\n"
2124 "CREATE TABLE \"keys\" (\n"
2125 " \"bits\" INTEGER NOT NULL,\n"
2126 " \"key\" TEXT NOT NULL,\n"
2127 " \"pageid\" INTEGER NOT NULL REFERENCES mpages(id) "
2128 "ON DELETE CASCADE\n"
2131 if (SQLITE_OK
!= sqlite3_exec(db
, sql
, NULL
, NULL
, NULL
)) {
2132 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2133 say(MANDOC_DB
, "%s", sqlite3_errmsg(db
));
2138 SQL_EXEC("PRAGMA foreign_keys = ON");
2139 sql
= "DELETE FROM mpages WHERE id IN "
2140 "(SELECT pageid FROM mlinks WHERE "
2141 "sec=? AND arch=? AND name=?)";
2142 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_DELETE_PAGE
], NULL
);
2143 sql
= "INSERT INTO mpages "
2144 "(form) VALUES (?)";
2145 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_PAGE
], NULL
);
2146 sql
= "INSERT INTO mlinks "
2147 "(sec,arch,name,pageid) VALUES (?,?,?,?)";
2148 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_LINK
], NULL
);
2149 sql
= "INSERT INTO keys "
2150 "(bits,key,pageid) VALUES (?,?,?)";
2151 sqlite3_prepare_v2(db
, sql
, -1, &stmts
[STMT_INSERT_KEY
], NULL
);
2155 * When opening a new database, we can turn off
2156 * synchronous mode for much better performance.
2160 SQL_EXEC("PRAGMA synchronous = OFF");
2167 hash_halloc(size_t sz
, void *arg
)
2170 return(mandoc_calloc(sz
, 1));
2174 hash_alloc(size_t sz
, void *arg
)
2177 return(mandoc_malloc(sz
));
2181 hash_free(void *p
, size_t sz
, void *arg
)
2188 set_basedir(const char *targetdir
)
2190 static char startdir
[PATH_MAX
];
2194 * Remember where we started by keeping a fd open to the origin
2195 * path component: throughout this utility, we chdir() a lot to
2196 * handle relative paths, and by doing this, we can return to
2197 * the starting point.
2199 if ('\0' == *startdir
) {
2200 if (NULL
== getcwd(startdir
, PATH_MAX
)) {
2201 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2202 if (NULL
!= targetdir
)
2206 if (-1 == (fd
= open(startdir
, O_RDONLY
, 0))) {
2207 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2208 say("", "&open %s", startdir
);
2211 if (NULL
== targetdir
)
2212 targetdir
= startdir
;
2216 if (-1 == fchdir(fd
)) {
2219 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2220 say("", "&chdir %s", startdir
);
2223 if (NULL
== targetdir
) {
2228 if (NULL
== realpath(targetdir
, basedir
)) {
2230 exitcode
= (int)MANDOCLEVEL_BADARG
;
2231 say("", "&%s: realpath", targetdir
);
2233 } else if (-1 == chdir(basedir
)) {
2234 exitcode
= (int)MANDOCLEVEL_BADARG
;
2242 say(const char *file
, const char *format
, ...)
2247 if ('\0' != *basedir
)
2248 fprintf(stderr
, "%s", basedir
);
2249 if ('\0' != *basedir
&& '\0' != *file
)
2250 fputs("//", stderr
);
2252 fprintf(stderr
, "%s", file
);
2255 if (NULL
!= format
) {
2268 if (NULL
!= format
) {
2269 if ('\0' != *basedir
|| '\0' != *file
)
2270 fputs(": ", stderr
);
2271 va_start(ap
, format
);
2272 vfprintf(stderr
, format
, ap
);
2276 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2277 fputs(": ", stderr
);
2280 fputc('\n', stderr
);