]>
git.cameronkatri.com Git - mandoc.git/blob - mandocdb.c
1 /* $Id: mandocdb.c,v 1.236 2017/01/10 23:36:34 schwarze Exp $ */
3 * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011-2017 Ingo Schwarze <schwarze@openbsd.org>
5 * Copyright (c) 2016 Ed Maste <emaste@freebsd.org>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #include <sys/types.h>
35 #include "compat_fts.h"
49 #include "mandoc_aux.h"
50 #include "mandoc_ohash.h"
56 #include "mansearch.h"
57 #include "dba_array.h"
60 extern const char *const mansearch_keynames
[];
63 OP_DEFAULT
= 0, /* new dbs from dir list or default config */
64 OP_CONFFILE
, /* new databases from custom config file */
65 OP_UPDATE
, /* delete/add entries in existing database */
66 OP_DELETE
, /* delete entries from existing database */
67 OP_TEST
/* change no databases, report potential problems */
71 const struct mpage
*mpage
; /* if set, the owning parse */
72 uint64_t mask
; /* bitmask in sequence */
73 char key
[]; /* rendered text */
82 struct inodev inodev
; /* used for hashing routine */
83 struct dba_array
*dba
;
84 char *sec
; /* section from file content */
85 char *arch
; /* architecture from file content */
86 char *title
; /* title from file content */
87 char *desc
; /* description from file content */
88 struct mpage
*next
; /* singly linked list */
89 struct mlink
*mlinks
; /* singly linked list */
91 enum form form
; /* format from file content */
95 char file
[PATH_MAX
]; /* filename rel. to manpath */
96 char *dsec
; /* section from directory */
97 char *arch
; /* architecture from directory */
98 char *name
; /* name from file name (not empty) */
99 char *fsec
; /* section from file name suffix */
100 struct mlink
*next
; /* singly linked list */
101 struct mpage
*mpage
; /* parent */
102 int gzip
; /* filename has a .gz suffix */
103 enum form dform
; /* format from directory */
104 enum form fform
; /* format from file name suffix */
107 typedef int (*mdoc_fp
)(struct mpage
*, const struct roff_meta
*,
108 const struct roff_node
*);
110 struct mdoc_handler
{
111 mdoc_fp fp
; /* optional handler */
112 uint64_t mask
; /* set unless handler returns 0 */
113 int taboo
; /* node flags that must not be set */
117 int mandocdb(int, char *[]);
119 static void dbadd(struct dba
*, struct mpage
*);
120 static void dbadd_mlink(const struct mlink
*mlink
);
121 static void dbprune(struct dba
*);
122 static void dbwrite(struct dba
*);
123 static void filescan(const char *);
124 #if HAVE_FTS_COMPARE_CONST
125 static int fts_compare(const FTSENT
*const *, const FTSENT
*const *);
127 static int fts_compare(const FTSENT
**, const FTSENT
**);
129 static void mlink_add(struct mlink
*, const struct stat
*);
130 static void mlink_check(struct mpage
*, struct mlink
*);
131 static void mlink_free(struct mlink
*);
132 static void mlinks_undupe(struct mpage
*);
133 static void mpages_free(void);
134 static void mpages_merge(struct dba
*, struct mparse
*);
135 static void parse_cat(struct mpage
*, int);
136 static void parse_man(struct mpage
*, const struct roff_meta
*,
137 const struct roff_node
*);
138 static void parse_mdoc(struct mpage
*, const struct roff_meta
*,
139 const struct roff_node
*);
140 static int parse_mdoc_head(struct mpage
*, const struct roff_meta
*,
141 const struct roff_node
*);
142 static int parse_mdoc_Fd(struct mpage
*, const struct roff_meta
*,
143 const struct roff_node
*);
144 static void parse_mdoc_fname(struct mpage
*, const struct roff_node
*);
145 static int parse_mdoc_Fn(struct mpage
*, const struct roff_meta
*,
146 const struct roff_node
*);
147 static int parse_mdoc_Fo(struct mpage
*, const struct roff_meta
*,
148 const struct roff_node
*);
149 static int parse_mdoc_Nd(struct mpage
*, const struct roff_meta
*,
150 const struct roff_node
*);
151 static int parse_mdoc_Nm(struct mpage
*, const struct roff_meta
*,
152 const struct roff_node
*);
153 static int parse_mdoc_Sh(struct mpage
*, const struct roff_meta
*,
154 const struct roff_node
*);
155 static int parse_mdoc_Va(struct mpage
*, const struct roff_meta
*,
156 const struct roff_node
*);
157 static int parse_mdoc_Xr(struct mpage
*, const struct roff_meta
*,
158 const struct roff_node
*);
159 static void putkey(const struct mpage
*, char *, uint64_t);
160 static void putkeys(const struct mpage
*, char *, size_t, uint64_t);
161 static void putmdockey(const struct mpage
*,
162 const struct roff_node
*, uint64_t, int);
163 static int render_string(char **, size_t *);
164 static void say(const char *, const char *, ...)
165 __attribute__((__format__ (printf
, 2, 3)));
166 static int set_basedir(const char *, int);
167 static int treescan(void);
168 static size_t utf8(unsigned int, char [7]);
170 static int nodb
; /* no database changes */
171 static int mparse_options
; /* abort the parse early */
172 static int use_all
; /* use all found files */
173 static int debug
; /* print what we're doing */
174 static int warnings
; /* warn about crap */
175 static int write_utf8
; /* write UTF-8 output; else ASCII */
176 static int exitcode
; /* to be returned by main */
177 static enum op op
; /* operational mode */
178 static char basedir
[PATH_MAX
]; /* current base directory */
179 static struct mpage
*mpage_head
; /* list of distinct manual pages */
180 static struct ohash mpages
; /* table of distinct manual pages */
181 static struct ohash mlinks
; /* table of directory entries */
182 static struct ohash names
; /* table of all names */
183 static struct ohash strings
; /* table of all strings */
184 static uint64_t name_mask
;
186 static const struct mdoc_handler mdocs
[MDOC_MAX
] = {
187 { NULL
, 0, 0 }, /* Ap */
188 { NULL
, 0, NODE_NOPRT
}, /* Dd */
189 { NULL
, 0, NODE_NOPRT
}, /* Dt */
190 { NULL
, 0, NODE_NOPRT
}, /* Os */
191 { parse_mdoc_Sh
, TYPE_Sh
, 0 }, /* Sh */
192 { parse_mdoc_head
, TYPE_Ss
, 0 }, /* Ss */
193 { NULL
, 0, 0 }, /* Pp */
194 { NULL
, 0, 0 }, /* D1 */
195 { NULL
, 0, 0 }, /* Dl */
196 { NULL
, 0, 0 }, /* Bd */
197 { NULL
, 0, 0 }, /* Ed */
198 { NULL
, 0, 0 }, /* Bl */
199 { NULL
, 0, 0 }, /* El */
200 { NULL
, 0, 0 }, /* It */
201 { NULL
, 0, 0 }, /* Ad */
202 { NULL
, TYPE_An
, 0 }, /* An */
203 { NULL
, TYPE_Ar
, 0 }, /* Ar */
204 { NULL
, TYPE_Cd
, 0 }, /* Cd */
205 { NULL
, TYPE_Cm
, 0 }, /* Cm */
206 { NULL
, TYPE_Dv
, 0 }, /* Dv */
207 { NULL
, TYPE_Er
, 0 }, /* Er */
208 { NULL
, TYPE_Ev
, 0 }, /* Ev */
209 { NULL
, 0, 0 }, /* Ex */
210 { NULL
, TYPE_Fa
, 0 }, /* Fa */
211 { parse_mdoc_Fd
, 0, 0 }, /* Fd */
212 { NULL
, TYPE_Fl
, 0 }, /* Fl */
213 { parse_mdoc_Fn
, 0, 0 }, /* Fn */
214 { NULL
, TYPE_Ft
, 0 }, /* Ft */
215 { NULL
, TYPE_Ic
, 0 }, /* Ic */
216 { NULL
, TYPE_In
, 0 }, /* In */
217 { NULL
, TYPE_Li
, 0 }, /* Li */
218 { parse_mdoc_Nd
, 0, 0 }, /* Nd */
219 { parse_mdoc_Nm
, 0, 0 }, /* Nm */
220 { NULL
, 0, 0 }, /* Op */
221 { NULL
, 0, 0 }, /* Ot */
222 { NULL
, TYPE_Pa
, NODE_NOSRC
}, /* Pa */
223 { NULL
, 0, 0 }, /* Rv */
224 { NULL
, TYPE_St
, 0 }, /* St */
225 { parse_mdoc_Va
, TYPE_Va
, 0 }, /* Va */
226 { parse_mdoc_Va
, TYPE_Vt
, 0 }, /* Vt */
227 { parse_mdoc_Xr
, 0, 0 }, /* Xr */
228 { NULL
, 0, 0 }, /* %A */
229 { NULL
, 0, 0 }, /* %B */
230 { NULL
, 0, 0 }, /* %D */
231 { NULL
, 0, 0 }, /* %I */
232 { NULL
, 0, 0 }, /* %J */
233 { NULL
, 0, 0 }, /* %N */
234 { NULL
, 0, 0 }, /* %O */
235 { NULL
, 0, 0 }, /* %P */
236 { NULL
, 0, 0 }, /* %R */
237 { NULL
, 0, 0 }, /* %T */
238 { NULL
, 0, 0 }, /* %V */
239 { NULL
, 0, 0 }, /* Ac */
240 { NULL
, 0, 0 }, /* Ao */
241 { NULL
, 0, 0 }, /* Aq */
242 { NULL
, TYPE_At
, NODE_NOSRC
}, /* At */
243 { NULL
, 0, 0 }, /* Bc */
244 { NULL
, 0, 0 }, /* Bf */
245 { NULL
, 0, 0 }, /* Bo */
246 { NULL
, 0, 0 }, /* Bq */
247 { NULL
, TYPE_Bsx
, NODE_NOSRC
}, /* Bsx */
248 { NULL
, TYPE_Bx
, NODE_NOSRC
}, /* Bx */
249 { NULL
, 0, 0 }, /* Db */
250 { NULL
, 0, 0 }, /* Dc */
251 { NULL
, 0, 0 }, /* Do */
252 { NULL
, 0, 0 }, /* Dq */
253 { NULL
, 0, 0 }, /* Ec */
254 { NULL
, 0, 0 }, /* Ef */
255 { NULL
, TYPE_Em
, 0 }, /* Em */
256 { NULL
, 0, 0 }, /* Eo */
257 { NULL
, TYPE_Fx
, NODE_NOSRC
}, /* Fx */
258 { NULL
, TYPE_Ms
, 0 }, /* Ms */
259 { NULL
, 0, 0 }, /* No */
260 { NULL
, 0, 0 }, /* Ns */
261 { NULL
, TYPE_Nx
, NODE_NOSRC
}, /* Nx */
262 { NULL
, TYPE_Ox
, NODE_NOSRC
}, /* Ox */
263 { NULL
, 0, 0 }, /* Pc */
264 { NULL
, 0, 0 }, /* Pf */
265 { NULL
, 0, 0 }, /* Po */
266 { NULL
, 0, 0 }, /* Pq */
267 { NULL
, 0, 0 }, /* Qc */
268 { NULL
, 0, 0 }, /* Ql */
269 { NULL
, 0, 0 }, /* Qo */
270 { NULL
, 0, 0 }, /* Qq */
271 { NULL
, 0, 0 }, /* Re */
272 { NULL
, 0, 0 }, /* Rs */
273 { NULL
, 0, 0 }, /* Sc */
274 { NULL
, 0, 0 }, /* So */
275 { NULL
, 0, 0 }, /* Sq */
276 { NULL
, 0, 0 }, /* Sm */
277 { NULL
, 0, 0 }, /* Sx */
278 { NULL
, TYPE_Sy
, 0 }, /* Sy */
279 { NULL
, TYPE_Tn
, 0 }, /* Tn */
280 { NULL
, 0, NODE_NOSRC
}, /* Ux */
281 { NULL
, 0, 0 }, /* Xc */
282 { NULL
, 0, 0 }, /* Xo */
283 { parse_mdoc_Fo
, 0, 0 }, /* Fo */
284 { NULL
, 0, 0 }, /* Fc */
285 { NULL
, 0, 0 }, /* Oo */
286 { NULL
, 0, 0 }, /* Oc */
287 { NULL
, 0, 0 }, /* Bk */
288 { NULL
, 0, 0 }, /* Ek */
289 { NULL
, 0, 0 }, /* Bt */
290 { NULL
, 0, 0 }, /* Hf */
291 { NULL
, 0, 0 }, /* Fr */
292 { NULL
, 0, 0 }, /* Ud */
293 { NULL
, TYPE_Lb
, 0 }, /* Lb */
294 { NULL
, 0, 0 }, /* Lp */
295 { NULL
, TYPE_Lk
, 0 }, /* Lk */
296 { NULL
, TYPE_Mt
, NODE_NOSRC
}, /* Mt */
297 { NULL
, 0, 0 }, /* Brq */
298 { NULL
, 0, 0 }, /* Bro */
299 { NULL
, 0, 0 }, /* Brc */
300 { NULL
, 0, 0 }, /* %C */
301 { NULL
, 0, 0 }, /* Es */
302 { NULL
, 0, 0 }, /* En */
303 { NULL
, TYPE_Dx
, NODE_NOSRC
}, /* Dx */
304 { NULL
, 0, 0 }, /* %Q */
305 { NULL
, 0, 0 }, /* br */
306 { NULL
, 0, 0 }, /* sp */
307 { NULL
, 0, 0 }, /* %U */
308 { NULL
, 0, 0 }, /* Ta */
309 { NULL
, 0, 0 }, /* ll */
314 mandocdb(int argc
, char *argv
[])
319 const char *path_arg
, *progname
;
324 if (pledge("stdio rpath wpath cpath fattr flock proc exec", NULL
) == -1) {
326 return (int)MANDOCLEVEL_SYSERR
;
330 #if HAVE_SANDBOX_INIT
331 if (sandbox_init(kSBXProfileNoInternet
, SANDBOX_NAMED
, NULL
) == -1) {
332 warnx("sandbox_init");
333 return (int)MANDOCLEVEL_SYSERR
;
337 memset(&conf
, 0, sizeof(conf
));
340 * We accept a few different invocations.
341 * The CHECKOP macro makes sure that invocation styles don't
342 * clobber each other.
344 #define CHECKOP(_op, _ch) do \
345 if (OP_DEFAULT != (_op)) { \
346 warnx("-%c: Conflicting option", (_ch)); \
348 } while (/*CONSTCOND*/0)
353 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
378 mparse_options
|= MPARSE_QUICK
;
381 if (strcmp(optarg
, "utf8")) {
382 warnx("-T%s: Unsupported output format",
390 dup2(STDOUT_FILENO
, STDERR_FILENO
);
400 /* Compatibility with espie@'s makewhatis. */
411 if (pledge("stdio rpath", NULL
) == -1) {
413 return (int)MANDOCLEVEL_SYSERR
;
418 if (OP_CONFFILE
== op
&& argc
> 0) {
419 warnx("-C: Too many arguments");
423 exitcode
= (int)MANDOCLEVEL_OK
;
425 mp
= mparse_alloc(mparse_options
, MANDOCLEVEL_BADARG
, NULL
, NULL
);
426 mandoc_ohash_init(&mpages
, 6, offsetof(struct mpage
, inodev
));
427 mandoc_ohash_init(&mlinks
, 6, offsetof(struct mlink
, file
));
429 if (OP_UPDATE
== op
|| OP_DELETE
== op
|| OP_TEST
== op
) {
432 * Most of these deal with a specific directory.
433 * Jump into that directory first.
435 if (OP_TEST
!= op
&& 0 == set_basedir(path_arg
, 1))
438 dba
= nodb
? dba_new(128) : dba_read(MANDOC_DB
);
441 * The existing database is usable. Process
442 * all files specified on the command-line.
446 if (pledge("stdio rpath wpath cpath fattr flock", NULL
) == -1) {
448 exitcode
= (int)MANDOCLEVEL_SYSERR
;
454 for (i
= 0; i
< argc
; i
++)
459 /* Database missing or corrupt. */
460 if (op
!= OP_UPDATE
|| errno
!= ENOENT
)
461 say(MANDOC_DB
, "%s: Automatically recreating"
462 " from scratch", strerror(errno
));
463 exitcode
= (int)MANDOCLEVEL_OK
;
470 mpages_merge(dba
, mp
);
476 * If we have arguments, use them as our manpaths.
477 * If we don't, use man.conf(5).
480 conf
.manpath
.paths
= mandoc_reallocarray(NULL
,
481 argc
, sizeof(char *));
482 conf
.manpath
.sz
= (size_t)argc
;
483 for (i
= 0; i
< argc
; i
++)
484 conf
.manpath
.paths
[i
] = mandoc_strdup(argv
[i
]);
486 manconf_parse(&conf
, path_arg
, NULL
, NULL
);
488 if (conf
.manpath
.sz
== 0) {
489 exitcode
= (int)MANDOCLEVEL_BADARG
;
490 say("", "Empty manpath");
494 * First scan the tree rooted at a base directory, then
495 * build a new database and finally move it into place.
496 * Ignore zero-length directories and strip trailing
499 for (j
= 0; j
< conf
.manpath
.sz
; j
++) {
500 sz
= strlen(conf
.manpath
.paths
[j
]);
501 if (sz
&& conf
.manpath
.paths
[j
][sz
- 1] == '/')
502 conf
.manpath
.paths
[j
][--sz
] = '\0';
507 mandoc_ohash_init(&mpages
, 6,
508 offsetof(struct mpage
, inodev
));
509 mandoc_ohash_init(&mlinks
, 6,
510 offsetof(struct mlink
, file
));
513 if ( ! set_basedir(conf
.manpath
.paths
[j
], argc
> 0))
518 mpages_merge(dba
, mp
);
523 if (j
+ 1 < conf
.manpath
.sz
) {
525 ohash_delete(&mpages
);
526 ohash_delete(&mlinks
);
535 ohash_delete(&mpages
);
536 ohash_delete(&mlinks
);
539 progname
= getprogname();
540 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
541 " %s [-aDnpQ] [-Tutf8] dir ...\n"
542 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
543 " %s [-Dnp] -u dir [file ...]\n"
544 " %s [-Q] -t file ...\n",
545 progname
, progname
, progname
, progname
, progname
);
547 return (int)MANDOCLEVEL_BADARG
;
551 * To get a singly linked list in alpha order while inserting entries
552 * at the beginning, process directory entries in reverse alpha order.
555 #if HAVE_FTS_COMPARE_CONST
556 fts_compare(const FTSENT
*const *a
, const FTSENT
*const *b
)
558 fts_compare(const FTSENT
**a
, const FTSENT
**b
)
561 return -strcmp((*a
)->fts_name
, (*b
)->fts_name
);
565 * Scan a directory tree rooted at "basedir" for manpages.
566 * We use fts(), scanning directory parts along the way for clues to our
567 * section and architecture.
569 * If use_all has been specified, grok all files.
570 * If not, sanitise paths to the following:
572 * [./]man*[/<arch>]/<name>.<section>
574 * [./]cat<section>[/<arch>]/<name>.0
576 * TODO: accommodate for multi-language directories.
587 char *dsec
, *arch
, *fsec
, *cp
;
592 argv
[1] = (char *)NULL
;
594 f
= fts_open((char * const *)argv
, FTS_PHYSICAL
| FTS_NOCHDIR
,
597 exitcode
= (int)MANDOCLEVEL_SYSERR
;
598 say("", "&fts_open");
605 while ((ff
= fts_read(f
)) != NULL
) {
606 path
= ff
->fts_path
+ 2;
607 switch (ff
->fts_info
) {
610 * Symbolic links require various sanity checks,
611 * then get handled just like regular files.
614 if (realpath(path
, buf
) == NULL
) {
616 say(path
, "&realpath");
619 if (strstr(buf
, basedir
) != buf
621 && strstr(buf
, HOMEBREWDIR
) != buf
624 if (warnings
) say("",
625 "%s: outside base directory", buf
);
628 /* Use logical inode to avoid mpages dupe. */
629 if (stat(path
, ff
->fts_statp
) == -1) {
637 * If we're a regular file, add an mlink by using the
638 * stored directory data and handling the filename.
641 if ( ! strcmp(path
, MANDOC_DB
))
643 if ( ! use_all
&& ff
->fts_level
< 2) {
645 say(path
, "Extraneous file");
650 while (fsec
== NULL
) {
651 fsec
= strrchr(ff
->fts_name
, '.');
652 if (fsec
== NULL
|| strcmp(fsec
+1, "gz"))
662 "No filename suffix");
665 } else if ( ! strcmp(++fsec
, "html")) {
667 say(path
, "Skip html");
669 } else if ( ! strcmp(fsec
, "ps")) {
671 say(path
, "Skip ps");
673 } else if ( ! strcmp(fsec
, "pdf")) {
675 say(path
, "Skip pdf");
677 } else if ( ! use_all
&&
678 ((dform
== FORM_SRC
&&
679 strncmp(fsec
, dsec
, strlen(dsec
))) ||
680 (dform
== FORM_CAT
&& strcmp(fsec
, "0")))) {
682 say(path
, "Wrong filename suffix");
687 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
688 if (strlcpy(mlink
->file
, path
,
689 sizeof(mlink
->file
)) >=
690 sizeof(mlink
->file
)) {
691 say(path
, "Filename too long");
695 mlink
->dform
= dform
;
698 mlink
->name
= ff
->fts_name
;
701 mlink_add(mlink
, ff
->fts_statp
);
710 say(path
, "Not a regular file");
714 switch (ff
->fts_level
) {
716 /* Ignore the root directory. */
720 * This might contain manX/ or catX/.
721 * Try to infer this from the name.
722 * If we're not in use_all, enforce it.
725 if (ff
->fts_info
== FTS_DP
) {
731 if ( ! strncmp(cp
, "man", 3)) {
734 } else if ( ! strncmp(cp
, "cat", 3)) {
742 if (dsec
!= NULL
|| use_all
)
746 say(path
, "Unknown directory part");
747 fts_set(f
, ff
, FTS_SKIP
);
751 * Possibly our architecture.
752 * If we're descending, keep tabs on it.
754 if (ff
->fts_info
!= FTS_DP
&& dsec
!= NULL
)
760 if (ff
->fts_info
== FTS_DP
|| use_all
)
763 say(path
, "Extraneous directory part");
764 fts_set(f
, ff
, FTS_SKIP
);
774 * Add a file to the mlinks table.
775 * Do not verify that it's a "valid" looking manpage (we'll do that
778 * Try to infer the manual section, architecture, and page name from the
779 * path, assuming it looks like
781 * [./]man*[/<arch>]/<name>.<section>
783 * [./]cat<section>[/<arch>]/<name>.0
785 * See treescan() for the fts(3) version of this.
788 filescan(const char *file
)
797 if (0 == strncmp(file
, "./", 2))
801 * We have to do lstat(2) before realpath(3) loses
802 * the information whether this is a symbolic link.
803 * We need to know that because for symbolic links,
804 * we want to use the orginal file name, while for
805 * regular files, we want to use the real path.
807 if (-1 == lstat(file
, &st
)) {
808 exitcode
= (int)MANDOCLEVEL_BADARG
;
811 } else if (0 == ((S_IFREG
| S_IFLNK
) & st
.st_mode
)) {
812 exitcode
= (int)MANDOCLEVEL_BADARG
;
813 say(file
, "Not a regular file");
818 * We have to resolve the file name to the real path
819 * in any case for the base directory check.
821 if (NULL
== realpath(file
, buf
)) {
822 exitcode
= (int)MANDOCLEVEL_BADARG
;
823 say(file
, "&realpath");
829 else if (strstr(buf
, basedir
) == buf
)
830 start
= buf
+ strlen(basedir
);
832 else if (strstr(buf
, HOMEBREWDIR
) == buf
)
836 exitcode
= (int)MANDOCLEVEL_BADARG
;
837 say("", "%s: outside base directory", buf
);
842 * Now we are sure the file is inside our tree.
843 * If it is a symbolic link, ignore the real path
844 * and use the original name.
845 * This implies passing stuff like "cat1/../man1/foo.1"
846 * on the command line won't work. So don't do that.
847 * Note the stat(2) can still fail if the link target
850 if (S_IFLNK
& st
.st_mode
) {
851 if (-1 == stat(buf
, &st
)) {
852 exitcode
= (int)MANDOCLEVEL_BADARG
;
856 if (strlcpy(buf
, file
, sizeof(buf
)) >= sizeof(buf
)) {
857 say(file
, "Filename too long");
861 if (OP_TEST
!= op
&& strstr(buf
, basedir
) == buf
)
862 start
+= strlen(basedir
);
865 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
866 mlink
->dform
= FORM_NONE
;
867 if (strlcpy(mlink
->file
, start
, sizeof(mlink
->file
)) >=
868 sizeof(mlink
->file
)) {
869 say(start
, "Filename too long");
875 * First try to guess our directory structure.
876 * If we find a separator, try to look for man* or cat*.
877 * If we find one of these and what's underneath is a directory,
878 * assume it's an architecture.
880 if (NULL
!= (p
= strchr(start
, '/'))) {
882 if (0 == strncmp(start
, "man", 3)) {
883 mlink
->dform
= FORM_SRC
;
884 mlink
->dsec
= start
+ 3;
885 } else if (0 == strncmp(start
, "cat", 3)) {
886 mlink
->dform
= FORM_CAT
;
887 mlink
->dsec
= start
+ 3;
891 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
899 * Now check the file suffix.
900 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
902 p
= strrchr(start
, '\0');
903 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
912 * Now try to parse the name.
913 * Use the filename portion of the path.
916 if (NULL
!= (p
= strrchr(start
, '/'))) {
920 mlink_add(mlink
, &st
);
924 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
926 struct inodev inodev
;
930 assert(NULL
!= mlink
->file
);
932 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
933 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
934 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
935 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
937 if ('0' == *mlink
->fsec
) {
939 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
940 mlink
->fform
= FORM_CAT
;
941 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
942 mlink
->fform
= FORM_SRC
;
944 mlink
->fform
= FORM_NONE
;
946 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
947 assert(NULL
== ohash_find(&mlinks
, slot
));
948 ohash_insert(&mlinks
, slot
, mlink
);
950 memset(&inodev
, 0, sizeof(inodev
)); /* Clear padding. */
951 inodev
.st_ino
= st
->st_ino
;
952 inodev
.st_dev
= st
->st_dev
;
953 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
954 sizeof(struct inodev
), inodev
.st_ino
);
955 mpage
= ohash_find(&mpages
, slot
);
957 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
958 mpage
->inodev
.st_ino
= inodev
.st_ino
;
959 mpage
->inodev
.st_dev
= inodev
.st_dev
;
960 mpage
->form
= FORM_NONE
;
961 mpage
->next
= mpage_head
;
963 ohash_insert(&mpages
, slot
, mpage
);
965 mlink
->next
= mpage
->mlinks
;
966 mpage
->mlinks
= mlink
;
967 mlink
->mpage
= mpage
;
971 mlink_free(struct mlink
*mlink
)
987 while ((mpage
= mpage_head
) != NULL
) {
988 while ((mlink
= mpage
->mlinks
) != NULL
) {
989 mpage
->mlinks
= mlink
->next
;
992 mpage_head
= mpage
->next
;
1002 * For each mlink to the mpage, check whether the path looks like
1003 * it is formatted, and if it does, check whether a source manual
1004 * exists by the same name, ignoring the suffix.
1005 * If both conditions hold, drop the mlink.
1008 mlinks_undupe(struct mpage
*mpage
)
1011 struct mlink
**prev
;
1012 struct mlink
*mlink
;
1015 mpage
->form
= FORM_CAT
;
1016 prev
= &mpage
->mlinks
;
1017 while (NULL
!= (mlink
= *prev
)) {
1018 if (FORM_CAT
!= mlink
->dform
) {
1019 mpage
->form
= FORM_NONE
;
1022 (void)strlcpy(buf
, mlink
->file
, sizeof(buf
));
1023 bufp
= strstr(buf
, "cat");
1024 assert(NULL
!= bufp
);
1025 memcpy(bufp
, "man", 3);
1026 if (NULL
!= (bufp
= strrchr(buf
, '.')))
1028 (void)strlcat(buf
, mlink
->dsec
, sizeof(buf
));
1029 if (NULL
== ohash_find(&mlinks
,
1030 ohash_qlookup(&mlinks
, buf
)))
1033 say(mlink
->file
, "Man source exists: %s", buf
);
1036 *prev
= mlink
->next
;
1040 prev
= &(*prev
)->next
;
1045 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
1051 * Check whether the manual section given in a file
1052 * agrees with the directory where the file is located.
1053 * Some manuals have suffixes like (3p) on their
1054 * section number either inside the file or in the
1055 * directory name, some are linked into more than one
1056 * section, like encrypt(1) = makekey(8).
1059 if (FORM_SRC
== mpage
->form
&&
1060 strcasecmp(mpage
->sec
, mlink
->dsec
))
1061 say(mlink
->file
, "Section \"%s\" manual in %s directory",
1062 mpage
->sec
, mlink
->dsec
);
1065 * Manual page directories exist for each kernel
1066 * architecture as returned by machine(1).
1067 * However, many manuals only depend on the
1068 * application architecture as returned by arch(1).
1069 * For example, some (2/ARM) manuals are shared
1070 * across the "armish" and "zaurus" kernel
1072 * A few manuals are even shared across completely
1073 * different architectures, for example fdformat(1)
1074 * on amd64, i386, and sparc64.
1077 if (strcasecmp(mpage
->arch
, mlink
->arch
))
1078 say(mlink
->file
, "Architecture \"%s\" manual in "
1079 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
1083 * parse_cat() doesn't set NAME_TITLE yet.
1086 if (FORM_CAT
== mpage
->form
)
1090 * Check whether this mlink
1091 * appears as a name in the NAME section.
1094 slot
= ohash_qlookup(&names
, mlink
->name
);
1095 str
= ohash_find(&names
, slot
);
1096 assert(NULL
!= str
);
1097 if ( ! (NAME_TITLE
& str
->mask
))
1098 say(mlink
->file
, "Name missing in NAME section");
1102 * Run through the files in the global vector "mpages"
1103 * and add them to the database specified in "basedir".
1105 * This handles the parsing scheme itself, using the cues of directory
1106 * and filename to determine whether the file is parsable or not.
1109 mpages_merge(struct dba
*dba
, struct mparse
*mp
)
1111 struct mpage
*mpage
, *mpage_dest
;
1112 struct mlink
*mlink
, *mlink_dest
;
1113 struct roff_man
*man
;
1118 for (mpage
= mpage_head
; mpage
!= NULL
; mpage
= mpage
->next
) {
1119 mlinks_undupe(mpage
);
1120 if ((mlink
= mpage
->mlinks
) == NULL
)
1123 name_mask
= NAME_MASK
;
1124 mandoc_ohash_init(&names
, 4, offsetof(struct str
, key
));
1125 mandoc_ohash_init(&strings
, 6, offsetof(struct str
, key
));
1130 if ((fd
= mparse_open(mp
, mlink
->file
)) == -1) {
1131 say(mlink
->file
, "&open");
1136 * Interpret the file as mdoc(7) or man(7) source
1137 * code, unless it is known to be formatted.
1139 if (mlink
->dform
!= FORM_CAT
|| mlink
->fform
!= FORM_CAT
) {
1140 mparse_readfd(mp
, fd
, mlink
->file
);
1142 mparse_result(mp
, &man
, &sodest
);
1145 if (sodest
!= NULL
) {
1146 mlink_dest
= ohash_find(&mlinks
,
1147 ohash_qlookup(&mlinks
, sodest
));
1148 if (mlink_dest
== NULL
) {
1149 mandoc_asprintf(&cp
, "%s.gz", sodest
);
1150 mlink_dest
= ohash_find(&mlinks
,
1151 ohash_qlookup(&mlinks
, cp
));
1154 if (mlink_dest
!= NULL
) {
1156 /* The .so target exists. */
1158 mpage_dest
= mlink_dest
->mpage
;
1160 mlink
->mpage
= mpage_dest
;
1163 * If the target was already
1164 * processed, add the links
1165 * to the database now.
1166 * Otherwise, this will
1167 * happen when we come
1171 if (mpage_dest
->dba
!= NULL
)
1174 if (mlink
->next
== NULL
)
1176 mlink
= mlink
->next
;
1179 /* Move all links to the target. */
1181 mlink
->next
= mlink_dest
->next
;
1182 mlink_dest
->next
= mpage
->mlinks
;
1183 mpage
->mlinks
= NULL
;
1186 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MDOC
) {
1188 mpage
->form
= FORM_SRC
;
1189 mpage
->sec
= man
->meta
.msec
;
1190 mpage
->sec
= mandoc_strdup(
1191 mpage
->sec
== NULL
? "" : mpage
->sec
);
1192 mpage
->arch
= man
->meta
.arch
;
1193 mpage
->arch
= mandoc_strdup(
1194 mpage
->arch
== NULL
? "" : mpage
->arch
);
1195 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1196 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MAN
) {
1198 mpage
->form
= FORM_SRC
;
1199 mpage
->sec
= mandoc_strdup(man
->meta
.msec
);
1200 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1201 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1203 mpage
->form
= FORM_CAT
;
1204 mpage
->sec
= mandoc_strdup(mlink
->dsec
);
1205 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1206 mpage
->title
= mandoc_strdup(mlink
->name
);
1209 assert(mpage
->desc
== NULL
);
1210 if (man
!= NULL
&& man
->macroset
== MACROSET_MDOC
)
1211 parse_mdoc(mpage
, &man
->meta
, man
->first
);
1212 else if (man
!= NULL
)
1213 parse_man(mpage
, &man
->meta
, man
->first
);
1215 parse_cat(mpage
, fd
);
1216 if (mpage
->desc
== NULL
)
1217 mpage
->desc
= mandoc_strdup(mpage
->mlinks
->name
);
1219 if (warnings
&& !use_all
)
1220 for (mlink
= mpage
->mlinks
; mlink
;
1221 mlink
= mlink
->next
)
1222 mlink_check(mpage
, mlink
);
1225 mlink
= mpage
->mlinks
;
1228 ohash_delete(&strings
);
1229 ohash_delete(&names
);
1234 parse_cat(struct mpage
*mpage
, int fd
)
1237 char *line
, *p
, *title
;
1238 size_t linesz
, plen
, titlesz
;
1242 stream
= (-1 == fd
) ?
1243 fopen(mpage
->mlinks
->file
, "r") :
1245 if (NULL
== stream
) {
1249 say(mpage
->mlinks
->file
, "&fopen");
1256 /* Skip to first blank line. */
1258 while (getline(&line
, &linesz
, stream
) != -1)
1263 * Assume the first line that is not indented
1264 * is the first section header. Skip to it.
1267 while (getline(&line
, &linesz
, stream
) != -1)
1268 if (*line
!= '\n' && *line
!= ' ')
1272 * Read up until the next section into a buffer.
1273 * Strip the leading and trailing newline from each read line,
1274 * appending a trailing space.
1275 * Ignore empty (whitespace-only) lines.
1281 while ((len
= getline(&line
, &linesz
, stream
)) != -1) {
1285 while (isspace((unsigned char)line
[offs
]))
1287 if (line
[offs
] == '\0')
1289 title
= mandoc_realloc(title
, titlesz
+ len
- offs
);
1290 memcpy(title
+ titlesz
, line
+ offs
, len
- offs
);
1291 titlesz
+= len
- offs
;
1292 title
[titlesz
- 1] = ' ';
1297 * If no page content can be found, or the input line
1298 * is already the next section header, or there is no
1299 * trailing newline, reuse the page title as the page
1303 if (NULL
== title
|| '\0' == *title
) {
1305 say(mpage
->mlinks
->file
,
1306 "Cannot find NAME section");
1312 title
[titlesz
- 1] = '\0';
1315 * Skip to the first dash.
1316 * Use the remaining line as the description (no more than 70
1320 if (NULL
!= (p
= strstr(title
, "- "))) {
1321 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1322 /* Skip to next word. */ ;
1325 say(mpage
->mlinks
->file
,
1326 "No dash in title line");
1332 /* Strip backspace-encoding from line. */
1334 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1337 memmove(line
, line
+ 1, plen
--);
1340 memmove(line
- 1, line
+ 1, plen
- len
);
1344 mpage
->desc
= mandoc_strdup(p
);
1350 * Put a type/word pair into the word database for this particular file.
1353 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1355 putkeys(mpage
, value
, strlen(value
), type
);
1359 * Grok all nodes at or below a certain mdoc node into putkey().
1362 putmdockey(const struct mpage
*mpage
,
1363 const struct roff_node
*n
, uint64_t m
, int taboo
)
1366 for ( ; NULL
!= n
; n
= n
->next
) {
1367 if (n
->flags
& taboo
)
1369 if (NULL
!= n
->child
)
1370 putmdockey(mpage
, n
->child
, m
, taboo
);
1371 if (n
->type
== ROFFT_TEXT
)
1372 putkey(mpage
, n
->string
, m
);
1377 parse_man(struct mpage
*mpage
, const struct roff_meta
*meta
,
1378 const struct roff_node
*n
)
1380 const struct roff_node
*head
, *body
;
1381 char *start
, *title
;
1389 * We're only searching for one thing: the first text child in
1390 * the BODY of a NAME section. Since we don't keep track of
1391 * sections in -man, run some hoops to find out whether we're in
1392 * the correct section or not.
1395 if (n
->type
== ROFFT_BODY
&& n
->tok
== MAN_SH
) {
1397 if ((head
= body
->parent
->head
) != NULL
&&
1398 (head
= head
->child
) != NULL
&&
1399 head
->next
== NULL
&&
1400 head
->type
== ROFFT_TEXT
&&
1401 strcmp(head
->string
, "NAME") == 0 &&
1402 body
->child
!= NULL
) {
1405 * Suck the entire NAME section into memory.
1406 * Yes, we might run away.
1407 * But too many manuals have big, spread-out
1408 * NAME sections over many lines.
1412 deroff(&title
, body
);
1417 * Go through a special heuristic dance here.
1418 * Conventionally, one or more manual names are
1419 * comma-specified prior to a whitespace, then a
1420 * dash, then a description. Try to puzzle out
1421 * the name parts here.
1426 sz
= strcspn(start
, " ,");
1427 if ('\0' == start
[sz
])
1434 * Assume a stray trailing comma in the
1435 * name list if a name begins with a dash.
1438 if ('-' == start
[0] ||
1439 ('\\' == start
[0] && '-' == start
[1]))
1442 putkey(mpage
, start
, NAME_TITLE
);
1443 if ( ! (mpage
->name_head_done
||
1444 strcasecmp(start
, meta
->title
))) {
1445 putkey(mpage
, start
, NAME_HEAD
);
1446 mpage
->name_head_done
= 1;
1454 assert(',' == byte
);
1456 while (' ' == *start
)
1460 if (start
== title
) {
1461 putkey(mpage
, start
, NAME_TITLE
);
1462 if ( ! (mpage
->name_head_done
||
1463 strcasecmp(start
, meta
->title
))) {
1464 putkey(mpage
, start
, NAME_HEAD
);
1465 mpage
->name_head_done
= 1;
1471 while (isspace((unsigned char)*start
))
1474 if (0 == strncmp(start
, "-", 1))
1476 else if (0 == strncmp(start
, "\\-\\-", 4))
1478 else if (0 == strncmp(start
, "\\-", 2))
1480 else if (0 == strncmp(start
, "\\(en", 4))
1482 else if (0 == strncmp(start
, "\\(em", 4))
1485 while (' ' == *start
)
1488 mpage
->desc
= mandoc_strdup(start
);
1494 for (n
= n
->child
; n
; n
= n
->next
) {
1495 if (NULL
!= mpage
->desc
)
1497 parse_man(mpage
, meta
, n
);
1502 parse_mdoc(struct mpage
*mpage
, const struct roff_meta
*meta
,
1503 const struct roff_node
*n
)
1507 for (n
= n
->child
; NULL
!= n
; n
= n
->next
) {
1508 if (n
->flags
& mdocs
[n
->tok
].taboo
)
1516 if (NULL
!= mdocs
[n
->tok
].fp
)
1517 if (0 == (*mdocs
[n
->tok
].fp
)(mpage
, meta
, n
))
1519 if (mdocs
[n
->tok
].mask
)
1520 putmdockey(mpage
, n
->child
,
1521 mdocs
[n
->tok
].mask
, mdocs
[n
->tok
].taboo
);
1524 assert(n
->type
!= ROFFT_ROOT
);
1527 if (NULL
!= n
->child
)
1528 parse_mdoc(mpage
, meta
, n
);
1533 parse_mdoc_Fd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1534 const struct roff_node
*n
)
1539 if (SEC_SYNOPSIS
!= n
->sec
||
1540 NULL
== (n
= n
->child
) ||
1541 n
->type
!= ROFFT_TEXT
)
1545 * Only consider those `Fd' macro fields that begin with an
1546 * "inclusion" token (versus, e.g., #define).
1549 if (strcmp("#include", n
->string
))
1552 if ((n
= n
->next
) == NULL
|| n
->type
!= ROFFT_TEXT
)
1556 * Strip away the enclosing angle brackets and make sure we're
1561 if ('<' == *start
|| '"' == *start
)
1564 if (0 == (sz
= strlen(start
)))
1567 end
= &start
[(int)sz
- 1];
1568 if ('>' == *end
|| '"' == *end
)
1572 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1577 parse_mdoc_fname(struct mpage
*mpage
, const struct roff_node
*n
)
1582 if (n
->type
!= ROFFT_TEXT
)
1585 /* Skip function pointer punctuation. */
1588 while (*cp
== '(' || *cp
== '*')
1590 sz
= strcspn(cp
, "()");
1592 putkeys(mpage
, cp
, sz
, TYPE_Fn
);
1593 if (n
->sec
== SEC_SYNOPSIS
)
1594 putkeys(mpage
, cp
, sz
, NAME_SYN
);
1598 parse_mdoc_Fn(struct mpage
*mpage
, const struct roff_meta
*meta
,
1599 const struct roff_node
*n
)
1602 if (n
->child
== NULL
)
1605 parse_mdoc_fname(mpage
, n
->child
);
1607 for (n
= n
->child
->next
; n
!= NULL
; n
= n
->next
)
1608 if (n
->type
== ROFFT_TEXT
)
1609 putkey(mpage
, n
->string
, TYPE_Fa
);
1615 parse_mdoc_Fo(struct mpage
*mpage
, const struct roff_meta
*meta
,
1616 const struct roff_node
*n
)
1619 if (n
->type
!= ROFFT_HEAD
)
1622 if (n
->child
!= NULL
)
1623 parse_mdoc_fname(mpage
, n
->child
);
1629 parse_mdoc_Va(struct mpage
*mpage
, const struct roff_meta
*meta
,
1630 const struct roff_node
*n
)
1634 if (n
->type
!= ROFFT_ELEM
&& n
->type
!= ROFFT_BODY
)
1637 if (n
->child
!= NULL
&&
1638 n
->child
->next
== NULL
&&
1639 n
->child
->type
== ROFFT_TEXT
)
1645 putkey(mpage
, cp
, TYPE_Vt
| (n
->tok
== MDOC_Va
||
1646 n
->type
== ROFFT_BODY
? TYPE_Va
: 0));
1654 parse_mdoc_Xr(struct mpage
*mpage
, const struct roff_meta
*meta
,
1655 const struct roff_node
*n
)
1659 if (NULL
== (n
= n
->child
))
1662 if (NULL
== n
->next
) {
1663 putkey(mpage
, n
->string
, TYPE_Xr
);
1667 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1668 putkey(mpage
, cp
, TYPE_Xr
);
1674 parse_mdoc_Nd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1675 const struct roff_node
*n
)
1678 if (n
->type
== ROFFT_BODY
)
1679 deroff(&mpage
->desc
, n
);
1684 parse_mdoc_Nm(struct mpage
*mpage
, const struct roff_meta
*meta
,
1685 const struct roff_node
*n
)
1688 if (SEC_NAME
== n
->sec
)
1689 putmdockey(mpage
, n
->child
, NAME_TITLE
, 0);
1690 else if (n
->sec
== SEC_SYNOPSIS
&& n
->type
== ROFFT_HEAD
) {
1691 if (n
->child
== NULL
)
1692 putkey(mpage
, meta
->name
, NAME_SYN
);
1694 putmdockey(mpage
, n
->child
, NAME_SYN
, 0);
1696 if ( ! (mpage
->name_head_done
||
1697 n
->child
== NULL
|| n
->child
->string
== NULL
||
1698 strcasecmp(n
->child
->string
, meta
->title
))) {
1699 putkey(mpage
, n
->child
->string
, NAME_HEAD
);
1700 mpage
->name_head_done
= 1;
1706 parse_mdoc_Sh(struct mpage
*mpage
, const struct roff_meta
*meta
,
1707 const struct roff_node
*n
)
1710 return n
->sec
== SEC_CUSTOM
&& n
->type
== ROFFT_HEAD
;
1714 parse_mdoc_head(struct mpage
*mpage
, const struct roff_meta
*meta
,
1715 const struct roff_node
*n
)
1718 return n
->type
== ROFFT_HEAD
;
1722 * Add a string to the hash table for the current manual.
1723 * Each string has a bitmask telling which macros it belongs to.
1724 * When we finish the manual, we'll dump the table.
1727 putkeys(const struct mpage
*mpage
, char *cp
, size_t sz
, uint64_t v
)
1738 mustfree
= render_string(&cp
, &sz
);
1744 name_mask
&= ~NAME_FIRST
;
1746 say(mpage
->mlinks
->file
,
1747 "Adding name %*s, bits=0x%llx", (int)sz
, cp
,
1748 (unsigned long long)v
);
1752 for (i
= 0; i
< KEY_MAX
; i
++)
1753 if ((uint64_t)1 << i
& v
)
1754 say(mpage
->mlinks
->file
,
1755 "Adding key %s=%*s",
1756 mansearch_keynames
[i
], (int)sz
, cp
);
1760 slot
= ohash_qlookupi(htab
, cp
, &end
);
1761 s
= ohash_find(htab
, slot
);
1763 if (NULL
!= s
&& mpage
== s
->mpage
) {
1766 } else if (NULL
== s
) {
1767 s
= mandoc_calloc(1, sizeof(struct str
) + sz
+ 1);
1768 memcpy(s
->key
, cp
, sz
);
1769 ohash_insert(htab
, slot
, s
);
1779 * Take a Unicode codepoint and produce its UTF-8 encoding.
1780 * This isn't the best way to do this, but it works.
1781 * The magic numbers are from the UTF-8 packaging.
1782 * They're not as scary as they seem: read the UTF-8 spec for details.
1785 utf8(unsigned int cp
, char out
[7])
1790 if (cp
<= 0x0000007F) {
1793 } else if (cp
<= 0x000007FF) {
1795 out
[0] = (cp
>> 6 & 31) | 192;
1796 out
[1] = (cp
& 63) | 128;
1797 } else if (cp
<= 0x0000FFFF) {
1799 out
[0] = (cp
>> 12 & 15) | 224;
1800 out
[1] = (cp
>> 6 & 63) | 128;
1801 out
[2] = (cp
& 63) | 128;
1802 } else if (cp
<= 0x001FFFFF) {
1804 out
[0] = (cp
>> 18 & 7) | 240;
1805 out
[1] = (cp
>> 12 & 63) | 128;
1806 out
[2] = (cp
>> 6 & 63) | 128;
1807 out
[3] = (cp
& 63) | 128;
1808 } else if (cp
<= 0x03FFFFFF) {
1810 out
[0] = (cp
>> 24 & 3) | 248;
1811 out
[1] = (cp
>> 18 & 63) | 128;
1812 out
[2] = (cp
>> 12 & 63) | 128;
1813 out
[3] = (cp
>> 6 & 63) | 128;
1814 out
[4] = (cp
& 63) | 128;
1815 } else if (cp
<= 0x7FFFFFFF) {
1817 out
[0] = (cp
>> 30 & 1) | 252;
1818 out
[1] = (cp
>> 24 & 63) | 128;
1819 out
[2] = (cp
>> 18 & 63) | 128;
1820 out
[3] = (cp
>> 12 & 63) | 128;
1821 out
[4] = (cp
>> 6 & 63) | 128;
1822 out
[5] = (cp
& 63) | 128;
1831 * If the string contains escape sequences,
1832 * replace it with an allocated rendering and return 1,
1833 * such that the caller can free it after use.
1834 * Otherwise, do nothing and return 0.
1837 render_string(char **public, size_t *psz
)
1839 const char *src
, *scp
, *addcp
, *seq
;
1841 size_t ssz
, dsz
, addsz
;
1842 char utfbuf
[7], res
[6];
1843 int seqlen
, unicode
;
1847 res
[2] = ASCII_NBRSP
;
1848 res
[3] = ASCII_HYPH
;
1849 res
[4] = ASCII_BREAK
;
1852 src
= scp
= *public;
1857 while (scp
< src
+ *psz
) {
1859 /* Leave normal characters unchanged. */
1861 if (strchr(res
, *scp
) == NULL
) {
1869 * Found something that requires replacing,
1870 * make sure we have a destination buffer.
1874 dst
= mandoc_malloc(ssz
+ 1);
1876 memcpy(dst
, src
, dsz
);
1879 /* Handle single-char special characters. */
1900 * Found an escape sequence.
1901 * Read past the slash, then parse it.
1902 * Ignore everything except characters.
1906 if (mandoc_escape(&scp
, &seq
, &seqlen
) != ESCAPE_SPECIAL
)
1910 * Render the special character
1911 * as either UTF-8 or ASCII.
1915 unicode
= mchars_spec2cp(seq
, seqlen
);
1918 addsz
= utf8(unicode
, utfbuf
);
1923 addcp
= mchars_spec2str(seq
, seqlen
, &addsz
);
1926 if (*addcp
== ASCII_NBRSP
) {
1932 /* Copy the rendered glyph into the stream. */
1935 dst
= mandoc_realloc(dst
, ssz
+ 1);
1936 memcpy(dst
+ dsz
, addcp
, addsz
);
1944 /* Trim trailing whitespace and NUL-terminate. */
1946 while (*psz
> 0 && (*public)[*psz
- 1] == ' ')
1949 (*public)[*psz
] = '\0';
1956 dbadd_mlink(const struct mlink
*mlink
)
1958 dba_page_alias(mlink
->mpage
->dba
, mlink
->name
, NAME_FILE
);
1959 dba_page_add(mlink
->mpage
->dba
, DBP_SECT
, mlink
->dsec
);
1960 dba_page_add(mlink
->mpage
->dba
, DBP_SECT
, mlink
->fsec
);
1961 dba_page_add(mlink
->mpage
->dba
, DBP_ARCH
, mlink
->arch
);
1962 dba_page_add(mlink
->mpage
->dba
, DBP_FILE
, mlink
->file
);
1966 * Flush the current page's terms (and their bits) into the database.
1967 * Also, handle escape sequences at the last possible moment.
1970 dbadd(struct dba
*dba
, struct mpage
*mpage
)
1972 struct mlink
*mlink
;
1980 mlink
= mpage
->mlinks
;
1983 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
1984 key
= ohash_next(&names
, &slot
))
1986 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
1987 key
= ohash_next(&strings
, &slot
))
1991 while (NULL
!= mlink
) {
1992 fputs(mlink
->name
, stdout
);
1993 if (NULL
== mlink
->next
||
1994 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
1995 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
1996 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
1998 if ('\0' == *mlink
->dsec
)
1999 fputs(mlink
->fsec
, stdout
);
2001 fputs(mlink
->dsec
, stdout
);
2002 if ('\0' != *mlink
->arch
)
2003 printf("/%s", mlink
->arch
);
2006 mlink
= mlink
->next
;
2008 fputs(", ", stdout
);
2010 printf(" - %s\n", mpage
->desc
);
2015 say(mlink
->file
, "Adding to database");
2019 mustfree
= render_string(&cp
, &i
);
2020 mpage
->dba
= dba_page_new(dba
->pages
,
2021 *mpage
->arch
== '\0' ? mlink
->arch
: mpage
->arch
,
2022 cp
, mlink
->file
, mpage
->form
);
2025 dba_page_add(mpage
->dba
, DBP_SECT
, mpage
->sec
);
2027 while (mlink
!= NULL
) {
2029 mlink
= mlink
->next
;
2032 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2033 key
= ohash_next(&names
, &slot
)) {
2034 assert(key
->mpage
== mpage
);
2035 dba_page_alias(mpage
->dba
, key
->key
, key
->mask
);
2038 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2039 key
= ohash_next(&strings
, &slot
)) {
2040 assert(key
->mpage
== mpage
);
2042 for (mask
= TYPE_Xr
; mask
<= TYPE_Lb
; mask
*= 2) {
2043 if (key
->mask
& mask
)
2044 dba_macro_add(dba
->macros
, i
,
2045 key
->key
, mpage
->dba
);
2053 dbprune(struct dba
*dba
)
2055 struct dba_array
*page
, *files
;
2058 dba_array_FOREACH(dba
->pages
, page
) {
2059 files
= dba_array_get(page
, DBP_FILE
);
2060 dba_array_FOREACH(files
, file
) {
2063 if (ohash_find(&mlinks
, ohash_qlookup(&mlinks
,
2066 say(file
, "Deleting from database");
2067 dba_array_del(dba
->pages
);
2075 * Write the database from memory to disk.
2078 dbwrite(struct dba
*dba
)
2084 if (dba_write(MANDOC_DB
"~", dba
) != -1) {
2085 if (rename(MANDOC_DB
"~", MANDOC_DB
) == -1) {
2086 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2087 say(MANDOC_DB
, "&rename");
2088 unlink(MANDOC_DB
"~");
2093 (void)strlcpy(tfn
, "/tmp/mandocdb.XXXXXXXX", sizeof(tfn
));
2094 if (mkdtemp(tfn
) == NULL
) {
2095 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2096 say("", "&%s", tfn
);
2100 (void)strlcat(tfn
, "/" MANDOC_DB
, sizeof(tfn
));
2101 if (dba_write(tfn
, dba
) == -1) {
2102 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2103 say(tfn
, "&dba_write");
2107 switch (child
= fork()) {
2109 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2110 say("", "&fork cmp");
2113 execlp("cmp", "cmp", "-s", tfn
, MANDOC_DB
, (char *)NULL
);
2114 say("", "&exec cmp");
2119 if (waitpid(child
, &status
, 0) == -1) {
2120 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2121 say("", "&wait cmp");
2122 } else if (WIFSIGNALED(status
)) {
2123 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2124 say("", "cmp died from signal %d", WTERMSIG(status
));
2125 } else if (WEXITSTATUS(status
)) {
2126 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2128 "Data changed, but cannot replace database");
2132 *strrchr(tfn
, '/') = '\0';
2133 switch (child
= fork()) {
2135 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2136 say("", "&fork rm");
2139 execlp("rm", "rm", "-rf", tfn
, (char *)NULL
);
2140 say("", "&exec rm");
2141 exit((int)MANDOCLEVEL_SYSERR
);
2145 if (waitpid(child
, &status
, 0) == -1) {
2146 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2147 say("", "&wait rm");
2148 } else if (WIFSIGNALED(status
) || WEXITSTATUS(status
)) {
2149 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2150 say("", "%s: Cannot remove temporary directory", tfn
);
2155 set_basedir(const char *targetdir
, int report_baddir
)
2157 static char startdir
[PATH_MAX
];
2158 static int getcwd_status
; /* 1 = ok, 2 = failure */
2159 static int chdir_status
; /* 1 = changed directory */
2163 * Remember the original working directory, if possible.
2164 * This will be needed if the second or a later directory
2165 * on the command line is given as a relative path.
2166 * Do not error out if the current directory is not
2167 * searchable: Maybe it won't be needed after all.
2169 if (0 == getcwd_status
) {
2170 if (NULL
== getcwd(startdir
, sizeof(startdir
))) {
2172 (void)strlcpy(startdir
, strerror(errno
),
2179 * We are leaving the old base directory.
2180 * Do not use it any longer, not even for messages.
2185 * If and only if the directory was changed earlier and
2186 * the next directory to process is given as a relative path,
2187 * first go back, or bail out if that is impossible.
2189 if (chdir_status
&& '/' != *targetdir
) {
2190 if (2 == getcwd_status
) {
2191 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2192 say("", "getcwd: %s", startdir
);
2195 if (-1 == chdir(startdir
)) {
2196 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2197 say("", "&chdir %s", startdir
);
2203 * Always resolve basedir to the canonicalized absolute
2204 * pathname and append a trailing slash, such that
2205 * we can reliably check whether files are inside.
2207 if (NULL
== realpath(targetdir
, basedir
)) {
2208 if (report_baddir
|| errno
!= ENOENT
) {
2209 exitcode
= (int)MANDOCLEVEL_BADARG
;
2210 say("", "&%s: realpath", targetdir
);
2213 } else if (-1 == chdir(basedir
)) {
2214 if (report_baddir
|| errno
!= ENOENT
) {
2215 exitcode
= (int)MANDOCLEVEL_BADARG
;
2221 cp
= strchr(basedir
, '\0');
2222 if ('/' != cp
[-1]) {
2223 if (cp
- basedir
>= PATH_MAX
- 1) {
2224 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2225 say("", "Filename too long");
2235 say(const char *file
, const char *format
, ...)
2240 if ('\0' != *basedir
)
2241 fprintf(stderr
, "%s", basedir
);
2242 if ('\0' != *basedir
&& '\0' != *file
)
2245 fprintf(stderr
, "%s", file
);
2248 if (NULL
!= format
) {
2261 if (NULL
!= format
) {
2262 if ('\0' != *basedir
|| '\0' != *file
)
2263 fputs(": ", stderr
);
2264 va_start(ap
, format
);
2265 vfprintf(stderr
, format
, ap
);
2269 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2270 fputs(": ", stderr
);
2273 fputc('\n', stderr
);