1 /* $Id: mandocdb.c,v 1.259 2018/08/17 20:33:37 schwarze Exp $ */
3 * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011-2018 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_Fa(struct mpage
*, const struct roff_meta
*,
143 const struct roff_node
*);
144 static int parse_mdoc_Fd(struct mpage
*, const struct roff_meta
*,
145 const struct roff_node
*);
146 static void parse_mdoc_fname(struct mpage
*, const struct roff_node
*);
147 static int parse_mdoc_Fn(struct mpage
*, const struct roff_meta
*,
148 const struct roff_node
*);
149 static int parse_mdoc_Fo(struct mpage
*, const struct roff_meta
*,
150 const struct roff_node
*);
151 static int parse_mdoc_Nd(struct mpage
*, const struct roff_meta
*,
152 const struct roff_node
*);
153 static int parse_mdoc_Nm(struct mpage
*, const struct roff_meta
*,
154 const struct roff_node
*);
155 static int parse_mdoc_Sh(struct mpage
*, const struct roff_meta
*,
156 const struct roff_node
*);
157 static int parse_mdoc_Va(struct mpage
*, const struct roff_meta
*,
158 const struct roff_node
*);
159 static int parse_mdoc_Xr(struct mpage
*, const struct roff_meta
*,
160 const struct roff_node
*);
161 static void putkey(const struct mpage
*, char *, uint64_t);
162 static void putkeys(const struct mpage
*, char *, size_t, uint64_t);
163 static void putmdockey(const struct mpage
*,
164 const struct roff_node
*, uint64_t, int);
165 static int render_string(char **, size_t *);
166 static void say(const char *, const char *, ...)
167 __attribute__((__format__ (__printf__
, 2, 3)));
168 static int set_basedir(const char *, int);
169 static int treescan(void);
170 static size_t utf8(unsigned int, char [7]);
172 static int nodb
; /* no database changes */
173 static int mparse_options
; /* abort the parse early */
174 static int use_all
; /* use all found files */
175 static int debug
; /* print what we're doing */
176 static int warnings
; /* warn about crap */
177 static int write_utf8
; /* write UTF-8 output; else ASCII */
178 static int exitcode
; /* to be returned by main */
179 static enum op op
; /* operational mode */
180 static char basedir
[PATH_MAX
]; /* current base directory */
181 static struct mpage
*mpage_head
; /* list of distinct manual pages */
182 static struct ohash mpages
; /* table of distinct manual pages */
183 static struct ohash mlinks
; /* table of directory entries */
184 static struct ohash names
; /* table of all names */
185 static struct ohash strings
; /* table of all strings */
186 static uint64_t name_mask
;
188 static const struct mdoc_handler mdoc_handlers
[MDOC_MAX
- MDOC_Dd
] = {
189 { NULL
, 0, NODE_NOPRT
}, /* Dd */
190 { NULL
, 0, NODE_NOPRT
}, /* Dt */
191 { NULL
, 0, NODE_NOPRT
}, /* Os */
192 { parse_mdoc_Sh
, TYPE_Sh
, 0 }, /* Sh */
193 { parse_mdoc_head
, TYPE_Ss
, 0 }, /* Ss */
194 { NULL
, 0, 0 }, /* Pp */
195 { NULL
, 0, 0 }, /* D1 */
196 { NULL
, 0, 0 }, /* Dl */
197 { NULL
, 0, 0 }, /* Bd */
198 { NULL
, 0, 0 }, /* Ed */
199 { NULL
, 0, 0 }, /* Bl */
200 { NULL
, 0, 0 }, /* El */
201 { NULL
, 0, 0 }, /* It */
202 { NULL
, 0, 0 }, /* Ad */
203 { NULL
, TYPE_An
, 0 }, /* An */
204 { NULL
, 0, 0 }, /* Ap */
205 { NULL
, TYPE_Ar
, 0 }, /* Ar */
206 { NULL
, TYPE_Cd
, 0 }, /* Cd */
207 { NULL
, TYPE_Cm
, 0 }, /* Cm */
208 { NULL
, TYPE_Dv
, 0 }, /* Dv */
209 { NULL
, TYPE_Er
, 0 }, /* Er */
210 { NULL
, TYPE_Ev
, 0 }, /* Ev */
211 { NULL
, 0, 0 }, /* Ex */
212 { parse_mdoc_Fa
, 0, 0 }, /* Fa */
213 { parse_mdoc_Fd
, 0, 0 }, /* Fd */
214 { NULL
, TYPE_Fl
, 0 }, /* Fl */
215 { parse_mdoc_Fn
, 0, 0 }, /* Fn */
216 { NULL
, TYPE_Ft
| TYPE_Vt
, 0 }, /* Ft */
217 { NULL
, TYPE_Ic
, 0 }, /* Ic */
218 { NULL
, TYPE_In
, 0 }, /* In */
219 { NULL
, TYPE_Li
, 0 }, /* Li */
220 { parse_mdoc_Nd
, 0, 0 }, /* Nd */
221 { parse_mdoc_Nm
, 0, 0 }, /* Nm */
222 { NULL
, 0, 0 }, /* Op */
223 { NULL
, 0, 0 }, /* Ot */
224 { NULL
, TYPE_Pa
, NODE_NOSRC
}, /* Pa */
225 { NULL
, 0, 0 }, /* Rv */
226 { NULL
, TYPE_St
, 0 }, /* St */
227 { parse_mdoc_Va
, TYPE_Va
, 0 }, /* Va */
228 { parse_mdoc_Va
, TYPE_Vt
, 0 }, /* Vt */
229 { parse_mdoc_Xr
, 0, 0 }, /* Xr */
230 { NULL
, 0, 0 }, /* %A */
231 { NULL
, 0, 0 }, /* %B */
232 { NULL
, 0, 0 }, /* %D */
233 { NULL
, 0, 0 }, /* %I */
234 { NULL
, 0, 0 }, /* %J */
235 { NULL
, 0, 0 }, /* %N */
236 { NULL
, 0, 0 }, /* %O */
237 { NULL
, 0, 0 }, /* %P */
238 { NULL
, 0, 0 }, /* %R */
239 { NULL
, 0, 0 }, /* %T */
240 { NULL
, 0, 0 }, /* %V */
241 { NULL
, 0, 0 }, /* Ac */
242 { NULL
, 0, 0 }, /* Ao */
243 { NULL
, 0, 0 }, /* Aq */
244 { NULL
, TYPE_At
, 0 }, /* At */
245 { NULL
, 0, 0 }, /* Bc */
246 { NULL
, 0, 0 }, /* Bf */
247 { NULL
, 0, 0 }, /* Bo */
248 { NULL
, 0, 0 }, /* Bq */
249 { NULL
, TYPE_Bsx
, NODE_NOSRC
}, /* Bsx */
250 { NULL
, TYPE_Bx
, NODE_NOSRC
}, /* Bx */
251 { NULL
, 0, 0 }, /* Db */
252 { NULL
, 0, 0 }, /* Dc */
253 { NULL
, 0, 0 }, /* Do */
254 { NULL
, 0, 0 }, /* Dq */
255 { NULL
, 0, 0 }, /* Ec */
256 { NULL
, 0, 0 }, /* Ef */
257 { NULL
, TYPE_Em
, 0 }, /* Em */
258 { NULL
, 0, 0 }, /* Eo */
259 { NULL
, TYPE_Fx
, NODE_NOSRC
}, /* Fx */
260 { NULL
, TYPE_Ms
, 0 }, /* Ms */
261 { NULL
, 0, 0 }, /* No */
262 { NULL
, 0, 0 }, /* Ns */
263 { NULL
, TYPE_Nx
, NODE_NOSRC
}, /* Nx */
264 { NULL
, TYPE_Ox
, NODE_NOSRC
}, /* Ox */
265 { NULL
, 0, 0 }, /* Pc */
266 { NULL
, 0, 0 }, /* Pf */
267 { NULL
, 0, 0 }, /* Po */
268 { NULL
, 0, 0 }, /* Pq */
269 { NULL
, 0, 0 }, /* Qc */
270 { NULL
, 0, 0 }, /* Ql */
271 { NULL
, 0, 0 }, /* Qo */
272 { NULL
, 0, 0 }, /* Qq */
273 { NULL
, 0, 0 }, /* Re */
274 { NULL
, 0, 0 }, /* Rs */
275 { NULL
, 0, 0 }, /* Sc */
276 { NULL
, 0, 0 }, /* So */
277 { NULL
, 0, 0 }, /* Sq */
278 { NULL
, 0, 0 }, /* Sm */
279 { NULL
, 0, 0 }, /* Sx */
280 { NULL
, TYPE_Sy
, 0 }, /* Sy */
281 { NULL
, TYPE_Tn
, 0 }, /* Tn */
282 { NULL
, 0, NODE_NOSRC
}, /* Ux */
283 { NULL
, 0, 0 }, /* Xc */
284 { NULL
, 0, 0 }, /* Xo */
285 { parse_mdoc_Fo
, 0, 0 }, /* Fo */
286 { NULL
, 0, 0 }, /* Fc */
287 { NULL
, 0, 0 }, /* Oo */
288 { NULL
, 0, 0 }, /* Oc */
289 { NULL
, 0, 0 }, /* Bk */
290 { NULL
, 0, 0 }, /* Ek */
291 { NULL
, 0, 0 }, /* Bt */
292 { NULL
, 0, 0 }, /* Hf */
293 { NULL
, 0, 0 }, /* Fr */
294 { NULL
, 0, 0 }, /* Ud */
295 { NULL
, TYPE_Lb
, NODE_NOSRC
}, /* Lb */
296 { NULL
, 0, 0 }, /* Lp */
297 { NULL
, TYPE_Lk
, 0 }, /* Lk */
298 { NULL
, TYPE_Mt
, NODE_NOSRC
}, /* Mt */
299 { NULL
, 0, 0 }, /* Brq */
300 { NULL
, 0, 0 }, /* Bro */
301 { NULL
, 0, 0 }, /* Brc */
302 { NULL
, 0, 0 }, /* %C */
303 { NULL
, 0, 0 }, /* Es */
304 { NULL
, 0, 0 }, /* En */
305 { NULL
, TYPE_Dx
, NODE_NOSRC
}, /* Dx */
306 { NULL
, 0, 0 }, /* %Q */
307 { NULL
, 0, 0 }, /* %U */
308 { NULL
, 0, 0 }, /* Ta */
313 mandocdb(int argc
, char *argv
[])
318 const char *path_arg
, *progname
;
323 if (pledge("stdio rpath wpath cpath", NULL
) == -1) {
325 return (int)MANDOCLEVEL_SYSERR
;
329 #if HAVE_SANDBOX_INIT
330 if (sandbox_init(kSBXProfileNoInternet
, SANDBOX_NAMED
, NULL
) == -1) {
331 warnx("sandbox_init");
332 return (int)MANDOCLEVEL_SYSERR
;
336 memset(&conf
, 0, sizeof(conf
));
339 * We accept a few different invocations.
340 * The CHECKOP macro makes sure that invocation styles don't
341 * clobber each other.
343 #define CHECKOP(_op, _ch) do \
344 if (OP_DEFAULT != (_op)) { \
345 warnx("-%c: Conflicting option", (_ch)); \
347 } while (/*CONSTCOND*/0)
352 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
377 mparse_options
|= MPARSE_QUICK
;
380 if (strcmp(optarg
, "utf8")) {
381 warnx("-T%s: Unsupported output format",
389 dup2(STDOUT_FILENO
, STDERR_FILENO
);
399 /* Compatibility with espie@'s makewhatis. */
410 if (pledge("stdio rpath", NULL
) == -1) {
412 return (int)MANDOCLEVEL_SYSERR
;
417 if (OP_CONFFILE
== op
&& argc
> 0) {
418 warnx("-C: Too many arguments");
422 exitcode
= (int)MANDOCLEVEL_OK
;
424 mp
= mparse_alloc(mparse_options
, MANDOCERR_MAX
, NULL
,
425 MANDOC_OS_OTHER
, 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.
445 for (i
= 0; i
< argc
; i
++)
450 /* Database missing or corrupt. */
451 if (op
!= OP_UPDATE
|| errno
!= ENOENT
)
452 say(MANDOC_DB
, "%s: Automatically recreating"
453 " from scratch", strerror(errno
));
454 exitcode
= (int)MANDOCLEVEL_OK
;
461 mpages_merge(dba
, mp
);
467 * If we have arguments, use them as our manpaths.
468 * If we don't, use man.conf(5).
471 conf
.manpath
.paths
= mandoc_reallocarray(NULL
,
472 argc
, sizeof(char *));
473 conf
.manpath
.sz
= (size_t)argc
;
474 for (i
= 0; i
< argc
; i
++)
475 conf
.manpath
.paths
[i
] = mandoc_strdup(argv
[i
]);
477 manconf_parse(&conf
, path_arg
, NULL
, NULL
);
479 if (conf
.manpath
.sz
== 0) {
480 exitcode
= (int)MANDOCLEVEL_BADARG
;
481 say("", "Empty manpath");
485 * First scan the tree rooted at a base directory, then
486 * build a new database and finally move it into place.
487 * Ignore zero-length directories and strip trailing
490 for (j
= 0; j
< conf
.manpath
.sz
; j
++) {
491 sz
= strlen(conf
.manpath
.paths
[j
]);
492 if (sz
&& conf
.manpath
.paths
[j
][sz
- 1] == '/')
493 conf
.manpath
.paths
[j
][--sz
] = '\0';
498 mandoc_ohash_init(&mpages
, 6,
499 offsetof(struct mpage
, inodev
));
500 mandoc_ohash_init(&mlinks
, 6,
501 offsetof(struct mlink
, file
));
504 if ( ! set_basedir(conf
.manpath
.paths
[j
], argc
> 0))
509 mpages_merge(dba
, mp
);
514 if (j
+ 1 < conf
.manpath
.sz
) {
516 ohash_delete(&mpages
);
517 ohash_delete(&mlinks
);
526 ohash_delete(&mpages
);
527 ohash_delete(&mlinks
);
530 progname
= getprogname();
531 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
532 " %s [-aDnpQ] [-Tutf8] dir ...\n"
533 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
534 " %s [-Dnp] -u dir [file ...]\n"
535 " %s [-Q] -t file ...\n",
536 progname
, progname
, progname
, progname
, progname
);
538 return (int)MANDOCLEVEL_BADARG
;
542 * To get a singly linked list in alpha order while inserting entries
543 * at the beginning, process directory entries in reverse alpha order.
546 #if HAVE_FTS_COMPARE_CONST
547 fts_compare(const FTSENT
*const *a
, const FTSENT
*const *b
)
549 fts_compare(const FTSENT
**a
, const FTSENT
**b
)
552 return -strcmp((*a
)->fts_name
, (*b
)->fts_name
);
556 * Scan a directory tree rooted at "basedir" for manpages.
557 * We use fts(), scanning directory parts along the way for clues to our
558 * section and architecture.
560 * If use_all has been specified, grok all files.
561 * If not, sanitise paths to the following:
563 * [./]man*[/<arch>]/<name>.<section>
565 * [./]cat<section>[/<arch>]/<name>.0
567 * TODO: accommodate for multi-language directories.
578 char *dsec
, *arch
, *fsec
, *cp
;
585 f
= fts_open((char * const *)argv
, FTS_PHYSICAL
| FTS_NOCHDIR
,
588 exitcode
= (int)MANDOCLEVEL_SYSERR
;
589 say("", "&fts_open");
596 while ((ff
= fts_read(f
)) != NULL
) {
597 path
= ff
->fts_path
+ 2;
598 switch (ff
->fts_info
) {
601 * Symbolic links require various sanity checks,
602 * then get handled just like regular files.
605 if (realpath(path
, buf
) == NULL
) {
607 say(path
, "&realpath");
610 if (strstr(buf
, basedir
) != buf
612 && strstr(buf
, HOMEBREWDIR
) != buf
615 if (warnings
) say("",
616 "%s: outside base directory", buf
);
619 /* Use logical inode to avoid mpages dupe. */
620 if (stat(path
, ff
->fts_statp
) == -1) {
628 * If we're a regular file, add an mlink by using the
629 * stored directory data and handling the filename.
632 if ( ! strcmp(path
, MANDOC_DB
))
634 if ( ! use_all
&& ff
->fts_level
< 2) {
636 say(path
, "Extraneous file");
641 while (fsec
== NULL
) {
642 fsec
= strrchr(ff
->fts_name
, '.');
643 if (fsec
== NULL
|| strcmp(fsec
+1, "gz"))
653 "No filename suffix");
656 } else if ( ! strcmp(++fsec
, "html")) {
658 say(path
, "Skip html");
660 } else if ( ! strcmp(fsec
, "ps")) {
662 say(path
, "Skip ps");
664 } else if ( ! strcmp(fsec
, "pdf")) {
666 say(path
, "Skip pdf");
668 } else if ( ! use_all
&&
669 ((dform
== FORM_SRC
&&
670 strncmp(fsec
, dsec
, strlen(dsec
))) ||
671 (dform
== FORM_CAT
&& strcmp(fsec
, "0")))) {
673 say(path
, "Wrong filename suffix");
678 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
679 if (strlcpy(mlink
->file
, path
,
680 sizeof(mlink
->file
)) >=
681 sizeof(mlink
->file
)) {
682 say(path
, "Filename too long");
686 mlink
->dform
= dform
;
689 mlink
->name
= ff
->fts_name
;
692 mlink_add(mlink
, ff
->fts_statp
);
701 say(path
, "Not a regular file");
705 switch (ff
->fts_level
) {
707 /* Ignore the root directory. */
711 * This might contain manX/ or catX/.
712 * Try to infer this from the name.
713 * If we're not in use_all, enforce it.
716 if (ff
->fts_info
== FTS_DP
) {
722 if ( ! strncmp(cp
, "man", 3)) {
725 } else if ( ! strncmp(cp
, "cat", 3)) {
733 if (dsec
!= NULL
|| use_all
)
737 say(path
, "Unknown directory part");
738 fts_set(f
, ff
, FTS_SKIP
);
742 * Possibly our architecture.
743 * If we're descending, keep tabs on it.
745 if (ff
->fts_info
!= FTS_DP
&& dsec
!= NULL
)
751 if (ff
->fts_info
== FTS_DP
|| use_all
)
754 say(path
, "Extraneous directory part");
755 fts_set(f
, ff
, FTS_SKIP
);
765 * Add a file to the mlinks table.
766 * Do not verify that it's a "valid" looking manpage (we'll do that
769 * Try to infer the manual section, architecture, and page name from the
770 * path, assuming it looks like
772 * [./]man*[/<arch>]/<name>.<section>
774 * [./]cat<section>[/<arch>]/<name>.0
776 * See treescan() for the fts(3) version of this.
779 filescan(const char *file
)
788 if (0 == strncmp(file
, "./", 2))
792 * We have to do lstat(2) before realpath(3) loses
793 * the information whether this is a symbolic link.
794 * We need to know that because for symbolic links,
795 * we want to use the orginal file name, while for
796 * regular files, we want to use the real path.
798 if (-1 == lstat(file
, &st
)) {
799 exitcode
= (int)MANDOCLEVEL_BADARG
;
802 } else if (0 == ((S_IFREG
| S_IFLNK
) & st
.st_mode
)) {
803 exitcode
= (int)MANDOCLEVEL_BADARG
;
804 say(file
, "Not a regular file");
809 * We have to resolve the file name to the real path
810 * in any case for the base directory check.
812 if (NULL
== realpath(file
, buf
)) {
813 exitcode
= (int)MANDOCLEVEL_BADARG
;
814 say(file
, "&realpath");
820 else if (strstr(buf
, basedir
) == buf
)
821 start
= buf
+ strlen(basedir
);
823 else if (strstr(buf
, HOMEBREWDIR
) == buf
)
827 exitcode
= (int)MANDOCLEVEL_BADARG
;
828 say("", "%s: outside base directory", buf
);
833 * Now we are sure the file is inside our tree.
834 * If it is a symbolic link, ignore the real path
835 * and use the original name.
836 * This implies passing stuff like "cat1/../man1/foo.1"
837 * on the command line won't work. So don't do that.
838 * Note the stat(2) can still fail if the link target
841 if (S_IFLNK
& st
.st_mode
) {
842 if (-1 == stat(buf
, &st
)) {
843 exitcode
= (int)MANDOCLEVEL_BADARG
;
847 if (strlcpy(buf
, file
, sizeof(buf
)) >= sizeof(buf
)) {
848 say(file
, "Filename too long");
852 if (OP_TEST
!= op
&& strstr(buf
, basedir
) == buf
)
853 start
+= strlen(basedir
);
856 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
857 mlink
->dform
= FORM_NONE
;
858 if (strlcpy(mlink
->file
, start
, sizeof(mlink
->file
)) >=
859 sizeof(mlink
->file
)) {
860 say(start
, "Filename too long");
866 * In test mode or when the original name is absolute
867 * but outside our tree, guess the base directory.
870 if (op
== OP_TEST
|| (start
== buf
&& *start
== '/')) {
871 if (strncmp(buf
, "man/", 4) == 0)
873 else if ((start
= strstr(buf
, "/man/")) != NULL
)
880 * First try to guess our directory structure.
881 * If we find a separator, try to look for man* or cat*.
882 * If we find one of these and what's underneath is a directory,
883 * assume it's an architecture.
885 if (NULL
!= (p
= strchr(start
, '/'))) {
887 if (0 == strncmp(start
, "man", 3)) {
888 mlink
->dform
= FORM_SRC
;
889 mlink
->dsec
= start
+ 3;
890 } else if (0 == strncmp(start
, "cat", 3)) {
891 mlink
->dform
= FORM_CAT
;
892 mlink
->dsec
= start
+ 3;
896 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
904 * Now check the file suffix.
905 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
907 p
= strrchr(start
, '\0');
908 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
917 * Now try to parse the name.
918 * Use the filename portion of the path.
921 if (NULL
!= (p
= strrchr(start
, '/'))) {
925 mlink_add(mlink
, &st
);
929 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
931 struct inodev inodev
;
935 assert(NULL
!= mlink
->file
);
937 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
938 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
939 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
940 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
942 if ('0' == *mlink
->fsec
) {
944 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
945 mlink
->fform
= FORM_CAT
;
946 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
947 mlink
->fform
= FORM_SRC
;
949 mlink
->fform
= FORM_NONE
;
951 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
952 assert(NULL
== ohash_find(&mlinks
, slot
));
953 ohash_insert(&mlinks
, slot
, mlink
);
955 memset(&inodev
, 0, sizeof(inodev
)); /* Clear padding. */
956 inodev
.st_ino
= st
->st_ino
;
957 inodev
.st_dev
= st
->st_dev
;
958 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
959 sizeof(struct inodev
), inodev
.st_ino
);
960 mpage
= ohash_find(&mpages
, slot
);
962 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
963 mpage
->inodev
.st_ino
= inodev
.st_ino
;
964 mpage
->inodev
.st_dev
= inodev
.st_dev
;
965 mpage
->form
= FORM_NONE
;
966 mpage
->next
= mpage_head
;
968 ohash_insert(&mpages
, slot
, mpage
);
970 mlink
->next
= mpage
->mlinks
;
971 mpage
->mlinks
= mlink
;
972 mlink
->mpage
= mpage
;
976 mlink_free(struct mlink
*mlink
)
992 while ((mpage
= mpage_head
) != NULL
) {
993 while ((mlink
= mpage
->mlinks
) != NULL
) {
994 mpage
->mlinks
= mlink
->next
;
997 mpage_head
= mpage
->next
;
1007 * For each mlink to the mpage, check whether the path looks like
1008 * it is formatted, and if it does, check whether a source manual
1009 * exists by the same name, ignoring the suffix.
1010 * If both conditions hold, drop the mlink.
1013 mlinks_undupe(struct mpage
*mpage
)
1016 struct mlink
**prev
;
1017 struct mlink
*mlink
;
1020 mpage
->form
= FORM_CAT
;
1021 prev
= &mpage
->mlinks
;
1022 while (NULL
!= (mlink
= *prev
)) {
1023 if (FORM_CAT
!= mlink
->dform
) {
1024 mpage
->form
= FORM_NONE
;
1027 (void)strlcpy(buf
, mlink
->file
, sizeof(buf
));
1028 bufp
= strstr(buf
, "cat");
1029 assert(NULL
!= bufp
);
1030 memcpy(bufp
, "man", 3);
1031 if (NULL
!= (bufp
= strrchr(buf
, '.')))
1033 (void)strlcat(buf
, mlink
->dsec
, sizeof(buf
));
1034 if (NULL
== ohash_find(&mlinks
,
1035 ohash_qlookup(&mlinks
, buf
)))
1038 say(mlink
->file
, "Man source exists: %s", buf
);
1041 *prev
= mlink
->next
;
1045 prev
= &(*prev
)->next
;
1050 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
1056 * Check whether the manual section given in a file
1057 * agrees with the directory where the file is located.
1058 * Some manuals have suffixes like (3p) on their
1059 * section number either inside the file or in the
1060 * directory name, some are linked into more than one
1061 * section, like encrypt(1) = makekey(8).
1064 if (FORM_SRC
== mpage
->form
&&
1065 strcasecmp(mpage
->sec
, mlink
->dsec
))
1066 say(mlink
->file
, "Section \"%s\" manual in %s directory",
1067 mpage
->sec
, mlink
->dsec
);
1070 * Manual page directories exist for each kernel
1071 * architecture as returned by machine(1).
1072 * However, many manuals only depend on the
1073 * application architecture as returned by arch(1).
1074 * For example, some (2/ARM) manuals are shared
1075 * across the "armish" and "zaurus" kernel
1077 * A few manuals are even shared across completely
1078 * different architectures, for example fdformat(1)
1079 * on amd64, i386, and sparc64.
1082 if (strcasecmp(mpage
->arch
, mlink
->arch
))
1083 say(mlink
->file
, "Architecture \"%s\" manual in "
1084 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
1088 * parse_cat() doesn't set NAME_TITLE yet.
1091 if (FORM_CAT
== mpage
->form
)
1095 * Check whether this mlink
1096 * appears as a name in the NAME section.
1099 slot
= ohash_qlookup(&names
, mlink
->name
);
1100 str
= ohash_find(&names
, slot
);
1101 assert(NULL
!= str
);
1102 if ( ! (NAME_TITLE
& str
->mask
))
1103 say(mlink
->file
, "Name missing in NAME section");
1107 * Run through the files in the global vector "mpages"
1108 * and add them to the database specified in "basedir".
1110 * This handles the parsing scheme itself, using the cues of directory
1111 * and filename to determine whether the file is parsable or not.
1114 mpages_merge(struct dba
*dba
, struct mparse
*mp
)
1116 struct mpage
*mpage
, *mpage_dest
;
1117 struct mlink
*mlink
, *mlink_dest
;
1118 struct roff_man
*man
;
1123 for (mpage
= mpage_head
; mpage
!= NULL
; mpage
= mpage
->next
) {
1124 mlinks_undupe(mpage
);
1125 if ((mlink
= mpage
->mlinks
) == NULL
)
1128 name_mask
= NAME_MASK
;
1129 mandoc_ohash_init(&names
, 4, offsetof(struct str
, key
));
1130 mandoc_ohash_init(&strings
, 6, offsetof(struct str
, key
));
1135 if ((fd
= mparse_open(mp
, mlink
->file
)) == -1) {
1136 say(mlink
->file
, "&open");
1141 * Interpret the file as mdoc(7) or man(7) source
1142 * code, unless it is known to be formatted.
1144 if (mlink
->dform
!= FORM_CAT
|| mlink
->fform
!= FORM_CAT
) {
1145 mparse_readfd(mp
, fd
, mlink
->file
);
1148 mparse_result(mp
, &man
, &sodest
);
1151 if (sodest
!= NULL
) {
1152 mlink_dest
= ohash_find(&mlinks
,
1153 ohash_qlookup(&mlinks
, sodest
));
1154 if (mlink_dest
== NULL
) {
1155 mandoc_asprintf(&cp
, "%s.gz", sodest
);
1156 mlink_dest
= ohash_find(&mlinks
,
1157 ohash_qlookup(&mlinks
, cp
));
1160 if (mlink_dest
!= NULL
) {
1162 /* The .so target exists. */
1164 mpage_dest
= mlink_dest
->mpage
;
1166 mlink
->mpage
= mpage_dest
;
1169 * If the target was already
1170 * processed, add the links
1171 * to the database now.
1172 * Otherwise, this will
1173 * happen when we come
1177 if (mpage_dest
->dba
!= NULL
)
1180 if (mlink
->next
== NULL
)
1182 mlink
= mlink
->next
;
1185 /* Move all links to the target. */
1187 mlink
->next
= mlink_dest
->next
;
1188 mlink_dest
->next
= mpage
->mlinks
;
1189 mpage
->mlinks
= NULL
;
1192 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MDOC
) {
1194 mpage
->form
= FORM_SRC
;
1195 mpage
->sec
= man
->meta
.msec
;
1196 mpage
->sec
= mandoc_strdup(
1197 mpage
->sec
== NULL
? "" : mpage
->sec
);
1198 mpage
->arch
= man
->meta
.arch
;
1199 mpage
->arch
= mandoc_strdup(
1200 mpage
->arch
== NULL
? "" : mpage
->arch
);
1201 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1202 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MAN
) {
1204 if (*man
->meta
.msec
!= '\0' ||
1205 *man
->meta
.title
!= '\0') {
1206 mpage
->form
= FORM_SRC
;
1207 mpage
->sec
= mandoc_strdup(man
->meta
.msec
);
1208 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1209 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1214 assert(mpage
->desc
== NULL
);
1216 mpage
->form
= FORM_CAT
;
1217 mpage
->sec
= mandoc_strdup(mlink
->dsec
);
1218 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1219 mpage
->title
= mandoc_strdup(mlink
->name
);
1220 parse_cat(mpage
, fd
);
1221 } else if (man
->macroset
== MACROSET_MDOC
)
1222 parse_mdoc(mpage
, &man
->meta
, man
->first
);
1224 parse_man(mpage
, &man
->meta
, man
->first
);
1225 if (mpage
->desc
== NULL
) {
1226 mpage
->desc
= mandoc_strdup(mlink
->name
);
1228 say(mlink
->file
, "No one-line description, "
1229 "using filename \"%s\"", mlink
->name
);
1232 for (mlink
= mpage
->mlinks
;
1234 mlink
= mlink
->next
) {
1235 putkey(mpage
, mlink
->name
, NAME_FILE
);
1236 if (warnings
&& !use_all
)
1237 mlink_check(mpage
, mlink
);
1243 ohash_delete(&strings
);
1244 ohash_delete(&names
);
1249 parse_cat(struct mpage
*mpage
, int fd
)
1252 struct mlink
*mlink
;
1253 char *line
, *p
, *title
, *sec
;
1254 size_t linesz
, plen
, titlesz
;
1258 mlink
= mpage
->mlinks
;
1259 stream
= fd
== -1 ? fopen(mlink
->file
, "r") : fdopen(fd
, "r");
1260 if (stream
== NULL
) {
1264 say(mlink
->file
, "&fopen");
1271 /* Parse the section number from the header line. */
1273 while (getline(&line
, &linesz
, stream
) != -1) {
1276 if ((sec
= strchr(line
, '(')) == NULL
)
1278 if ((p
= strchr(++sec
, ')')) == NULL
)
1281 mpage
->sec
= mandoc_strndup(sec
, p
- sec
);
1282 if (warnings
&& *mlink
->dsec
!= '\0' &&
1283 strcasecmp(mpage
->sec
, mlink
->dsec
))
1285 "Section \"%s\" manual in %s directory",
1286 mpage
->sec
, mlink
->dsec
);
1290 /* Skip to first blank line. */
1292 while (line
== NULL
|| *line
!= '\n')
1293 if (getline(&line
, &linesz
, stream
) == -1)
1297 * Assume the first line that is not indented
1298 * is the first section header. Skip to it.
1301 while (getline(&line
, &linesz
, stream
) != -1)
1302 if (*line
!= '\n' && *line
!= ' ')
1306 * Read up until the next section into a buffer.
1307 * Strip the leading and trailing newline from each read line,
1308 * appending a trailing space.
1309 * Ignore empty (whitespace-only) lines.
1315 while ((len
= getline(&line
, &linesz
, stream
)) != -1) {
1319 while (isspace((unsigned char)line
[offs
]))
1321 if (line
[offs
] == '\0')
1323 title
= mandoc_realloc(title
, titlesz
+ len
- offs
);
1324 memcpy(title
+ titlesz
, line
+ offs
, len
- offs
);
1325 titlesz
+= len
- offs
;
1326 title
[titlesz
- 1] = ' ';
1331 * If no page content can be found, or the input line
1332 * is already the next section header, or there is no
1333 * trailing newline, reuse the page title as the page
1337 if (NULL
== title
|| '\0' == *title
) {
1339 say(mlink
->file
, "Cannot find NAME section");
1345 title
[titlesz
- 1] = '\0';
1348 * Skip to the first dash.
1349 * Use the remaining line as the description (no more than 70
1353 if (NULL
!= (p
= strstr(title
, "- "))) {
1354 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1355 /* Skip to next word. */ ;
1358 say(mlink
->file
, "No dash in title line, "
1359 "reusing \"%s\" as one-line description", title
);
1365 /* Strip backspace-encoding from line. */
1367 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1370 memmove(line
, line
+ 1, plen
--);
1373 memmove(line
- 1, line
+ 1, plen
- len
);
1378 * Cut off excessive one-line descriptions.
1379 * Bad pages are not worth better heuristics.
1382 mpage
->desc
= mandoc_strndup(p
, 150);
1388 * Put a type/word pair into the word database for this particular file.
1391 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1393 putkeys(mpage
, value
, strlen(value
), type
);
1397 * Grok all nodes at or below a certain mdoc node into putkey().
1400 putmdockey(const struct mpage
*mpage
,
1401 const struct roff_node
*n
, uint64_t m
, int taboo
)
1404 for ( ; NULL
!= n
; n
= n
->next
) {
1405 if (n
->flags
& taboo
)
1407 if (NULL
!= n
->child
)
1408 putmdockey(mpage
, n
->child
, m
, taboo
);
1409 if (n
->type
== ROFFT_TEXT
)
1410 putkey(mpage
, n
->string
, m
);
1415 parse_man(struct mpage
*mpage
, const struct roff_meta
*meta
,
1416 const struct roff_node
*n
)
1418 const struct roff_node
*head
, *body
;
1419 char *start
, *title
;
1427 * We're only searching for one thing: the first text child in
1428 * the BODY of a NAME section. Since we don't keep track of
1429 * sections in -man, run some hoops to find out whether we're in
1430 * the correct section or not.
1433 if (n
->type
== ROFFT_BODY
&& n
->tok
== MAN_SH
) {
1435 if ((head
= body
->parent
->head
) != NULL
&&
1436 (head
= head
->child
) != NULL
&&
1437 head
->next
== NULL
&&
1438 head
->type
== ROFFT_TEXT
&&
1439 strcmp(head
->string
, "NAME") == 0 &&
1440 body
->child
!= NULL
) {
1443 * Suck the entire NAME section into memory.
1444 * Yes, we might run away.
1445 * But too many manuals have big, spread-out
1446 * NAME sections over many lines.
1450 deroff(&title
, body
);
1455 * Go through a special heuristic dance here.
1456 * Conventionally, one or more manual names are
1457 * comma-specified prior to a whitespace, then a
1458 * dash, then a description. Try to puzzle out
1459 * the name parts here.
1464 sz
= strcspn(start
, " ,");
1465 if ('\0' == start
[sz
])
1472 * Assume a stray trailing comma in the
1473 * name list if a name begins with a dash.
1476 if ('-' == start
[0] ||
1477 ('\\' == start
[0] && '-' == start
[1]))
1480 putkey(mpage
, start
, NAME_TITLE
);
1481 if ( ! (mpage
->name_head_done
||
1482 strcasecmp(start
, meta
->title
))) {
1483 putkey(mpage
, start
, NAME_HEAD
);
1484 mpage
->name_head_done
= 1;
1492 assert(',' == byte
);
1494 while (' ' == *start
)
1498 if (start
== title
) {
1499 putkey(mpage
, start
, NAME_TITLE
);
1500 if ( ! (mpage
->name_head_done
||
1501 strcasecmp(start
, meta
->title
))) {
1502 putkey(mpage
, start
, NAME_HEAD
);
1503 mpage
->name_head_done
= 1;
1509 while (isspace((unsigned char)*start
))
1512 if (0 == strncmp(start
, "-", 1))
1514 else if (0 == strncmp(start
, "\\-\\-", 4))
1516 else if (0 == strncmp(start
, "\\-", 2))
1518 else if (0 == strncmp(start
, "\\(en", 4))
1520 else if (0 == strncmp(start
, "\\(em", 4))
1523 while (' ' == *start
)
1527 * Cut off excessive one-line descriptions.
1528 * Bad pages are not worth better heuristics.
1531 mpage
->desc
= mandoc_strndup(start
, 150);
1537 for (n
= n
->child
; n
; n
= n
->next
) {
1538 if (NULL
!= mpage
->desc
)
1540 parse_man(mpage
, meta
, n
);
1545 parse_mdoc(struct mpage
*mpage
, const struct roff_meta
*meta
,
1546 const struct roff_node
*n
)
1548 const struct mdoc_handler
*handler
;
1550 for (n
= n
->child
; n
!= NULL
; n
= n
->next
) {
1551 if (n
->tok
== TOKEN_NONE
|| n
->tok
< ROFF_MAX
)
1553 assert(n
->tok
>= MDOC_Dd
&& n
->tok
< MDOC_MAX
);
1554 handler
= mdoc_handlers
+ (n
->tok
- MDOC_Dd
);
1555 if (n
->flags
& handler
->taboo
)
1564 if (handler
->fp
!= NULL
&&
1565 (*handler
->fp
)(mpage
, meta
, n
) == 0)
1568 putmdockey(mpage
, n
->child
,
1569 handler
->mask
, handler
->taboo
);
1574 if (NULL
!= n
->child
)
1575 parse_mdoc(mpage
, meta
, n
);
1580 parse_mdoc_Fa(struct mpage
*mpage
, const struct roff_meta
*meta
,
1581 const struct roff_node
*n
)
1586 if (n
->sec
== SEC_SYNOPSIS
)
1589 putmdockey(mpage
, n
->child
, mask
, 0);
1594 parse_mdoc_Fd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1595 const struct roff_node
*n
)
1600 if (SEC_SYNOPSIS
!= n
->sec
||
1601 NULL
== (n
= n
->child
) ||
1602 n
->type
!= ROFFT_TEXT
)
1606 * Only consider those `Fd' macro fields that begin with an
1607 * "inclusion" token (versus, e.g., #define).
1610 if (strcmp("#include", n
->string
))
1613 if ((n
= n
->next
) == NULL
|| n
->type
!= ROFFT_TEXT
)
1617 * Strip away the enclosing angle brackets and make sure we're
1622 if ('<' == *start
|| '"' == *start
)
1625 if (0 == (sz
= strlen(start
)))
1628 end
= &start
[(int)sz
- 1];
1629 if ('>' == *end
|| '"' == *end
)
1633 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1638 parse_mdoc_fname(struct mpage
*mpage
, const struct roff_node
*n
)
1643 if (n
->type
!= ROFFT_TEXT
)
1646 /* Skip function pointer punctuation. */
1649 while (*cp
== '(' || *cp
== '*')
1651 sz
= strcspn(cp
, "()");
1653 putkeys(mpage
, cp
, sz
, TYPE_Fn
);
1654 if (n
->sec
== SEC_SYNOPSIS
)
1655 putkeys(mpage
, cp
, sz
, NAME_SYN
);
1659 parse_mdoc_Fn(struct mpage
*mpage
, const struct roff_meta
*meta
,
1660 const struct roff_node
*n
)
1664 if (n
->child
== NULL
)
1667 parse_mdoc_fname(mpage
, n
->child
);
1670 if (n
!= NULL
&& n
->type
== ROFFT_TEXT
) {
1672 if (n
->sec
== SEC_SYNOPSIS
)
1674 putmdockey(mpage
, n
, mask
, 0);
1681 parse_mdoc_Fo(struct mpage
*mpage
, const struct roff_meta
*meta
,
1682 const struct roff_node
*n
)
1685 if (n
->type
!= ROFFT_HEAD
)
1688 if (n
->child
!= NULL
)
1689 parse_mdoc_fname(mpage
, n
->child
);
1695 parse_mdoc_Va(struct mpage
*mpage
, const struct roff_meta
*meta
,
1696 const struct roff_node
*n
)
1700 if (n
->type
!= ROFFT_ELEM
&& n
->type
!= ROFFT_BODY
)
1703 if (n
->child
!= NULL
&&
1704 n
->child
->next
== NULL
&&
1705 n
->child
->type
== ROFFT_TEXT
)
1711 putkey(mpage
, cp
, TYPE_Vt
| (n
->tok
== MDOC_Va
||
1712 n
->type
== ROFFT_BODY
? TYPE_Va
: 0));
1720 parse_mdoc_Xr(struct mpage
*mpage
, const struct roff_meta
*meta
,
1721 const struct roff_node
*n
)
1725 if (NULL
== (n
= n
->child
))
1728 if (NULL
== n
->next
) {
1729 putkey(mpage
, n
->string
, TYPE_Xr
);
1733 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1734 putkey(mpage
, cp
, TYPE_Xr
);
1740 parse_mdoc_Nd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1741 const struct roff_node
*n
)
1744 if (n
->type
== ROFFT_BODY
)
1745 deroff(&mpage
->desc
, n
);
1750 parse_mdoc_Nm(struct mpage
*mpage
, const struct roff_meta
*meta
,
1751 const struct roff_node
*n
)
1754 if (SEC_NAME
== n
->sec
)
1755 putmdockey(mpage
, n
->child
, NAME_TITLE
, 0);
1756 else if (n
->sec
== SEC_SYNOPSIS
&& n
->type
== ROFFT_HEAD
) {
1757 if (n
->child
== NULL
)
1758 putkey(mpage
, meta
->name
, NAME_SYN
);
1760 putmdockey(mpage
, n
->child
, NAME_SYN
, 0);
1762 if ( ! (mpage
->name_head_done
||
1763 n
->child
== NULL
|| n
->child
->string
== NULL
||
1764 strcasecmp(n
->child
->string
, meta
->title
))) {
1765 putkey(mpage
, n
->child
->string
, NAME_HEAD
);
1766 mpage
->name_head_done
= 1;
1772 parse_mdoc_Sh(struct mpage
*mpage
, const struct roff_meta
*meta
,
1773 const struct roff_node
*n
)
1776 return n
->sec
== SEC_CUSTOM
&& n
->type
== ROFFT_HEAD
;
1780 parse_mdoc_head(struct mpage
*mpage
, const struct roff_meta
*meta
,
1781 const struct roff_node
*n
)
1784 return n
->type
== ROFFT_HEAD
;
1788 * Add a string to the hash table for the current manual.
1789 * Each string has a bitmask telling which macros it belongs to.
1790 * When we finish the manual, we'll dump the table.
1793 putkeys(const struct mpage
*mpage
, char *cp
, size_t sz
, uint64_t v
)
1804 mustfree
= render_string(&cp
, &sz
);
1810 name_mask
&= ~NAME_FIRST
;
1812 say(mpage
->mlinks
->file
,
1813 "Adding name %*s, bits=0x%llx", (int)sz
, cp
,
1814 (unsigned long long)v
);
1818 for (i
= 0; i
< KEY_MAX
; i
++)
1819 if ((uint64_t)1 << i
& v
)
1820 say(mpage
->mlinks
->file
,
1821 "Adding key %s=%*s",
1822 mansearch_keynames
[i
], (int)sz
, cp
);
1826 slot
= ohash_qlookupi(htab
, cp
, &end
);
1827 s
= ohash_find(htab
, slot
);
1829 if (NULL
!= s
&& mpage
== s
->mpage
) {
1832 } else if (NULL
== s
) {
1833 s
= mandoc_calloc(1, sizeof(struct str
) + sz
+ 1);
1834 memcpy(s
->key
, cp
, sz
);
1835 ohash_insert(htab
, slot
, s
);
1845 * Take a Unicode codepoint and produce its UTF-8 encoding.
1846 * This isn't the best way to do this, but it works.
1847 * The magic numbers are from the UTF-8 packaging.
1848 * They're not as scary as they seem: read the UTF-8 spec for details.
1851 utf8(unsigned int cp
, char out
[7])
1856 if (cp
<= 0x0000007F) {
1859 } else if (cp
<= 0x000007FF) {
1861 out
[0] = (cp
>> 6 & 31) | 192;
1862 out
[1] = (cp
& 63) | 128;
1863 } else if (cp
<= 0x0000FFFF) {
1865 out
[0] = (cp
>> 12 & 15) | 224;
1866 out
[1] = (cp
>> 6 & 63) | 128;
1867 out
[2] = (cp
& 63) | 128;
1868 } else if (cp
<= 0x001FFFFF) {
1870 out
[0] = (cp
>> 18 & 7) | 240;
1871 out
[1] = (cp
>> 12 & 63) | 128;
1872 out
[2] = (cp
>> 6 & 63) | 128;
1873 out
[3] = (cp
& 63) | 128;
1874 } else if (cp
<= 0x03FFFFFF) {
1876 out
[0] = (cp
>> 24 & 3) | 248;
1877 out
[1] = (cp
>> 18 & 63) | 128;
1878 out
[2] = (cp
>> 12 & 63) | 128;
1879 out
[3] = (cp
>> 6 & 63) | 128;
1880 out
[4] = (cp
& 63) | 128;
1881 } else if (cp
<= 0x7FFFFFFF) {
1883 out
[0] = (cp
>> 30 & 1) | 252;
1884 out
[1] = (cp
>> 24 & 63) | 128;
1885 out
[2] = (cp
>> 18 & 63) | 128;
1886 out
[3] = (cp
>> 12 & 63) | 128;
1887 out
[4] = (cp
>> 6 & 63) | 128;
1888 out
[5] = (cp
& 63) | 128;
1897 * If the string contains escape sequences,
1898 * replace it with an allocated rendering and return 1,
1899 * such that the caller can free it after use.
1900 * Otherwise, do nothing and return 0.
1903 render_string(char **public, size_t *psz
)
1905 const char *src
, *scp
, *addcp
, *seq
;
1907 size_t ssz
, dsz
, addsz
;
1908 char utfbuf
[7], res
[6];
1909 int seqlen
, unicode
;
1913 res
[2] = ASCII_NBRSP
;
1914 res
[3] = ASCII_HYPH
;
1915 res
[4] = ASCII_BREAK
;
1918 src
= scp
= *public;
1923 while (scp
< src
+ *psz
) {
1925 /* Leave normal characters unchanged. */
1927 if (strchr(res
, *scp
) == NULL
) {
1935 * Found something that requires replacing,
1936 * make sure we have a destination buffer.
1940 dst
= mandoc_malloc(ssz
+ 1);
1942 memcpy(dst
, src
, dsz
);
1945 /* Handle single-char special characters. */
1966 * Found an escape sequence.
1967 * Read past the slash, then parse it.
1968 * Ignore everything except characters.
1972 if (mandoc_escape(&scp
, &seq
, &seqlen
) != ESCAPE_SPECIAL
)
1976 * Render the special character
1977 * as either UTF-8 or ASCII.
1981 unicode
= mchars_spec2cp(seq
, seqlen
);
1984 addsz
= utf8(unicode
, utfbuf
);
1989 addcp
= mchars_spec2str(seq
, seqlen
, &addsz
);
1992 if (*addcp
== ASCII_NBRSP
) {
1998 /* Copy the rendered glyph into the stream. */
2001 dst
= mandoc_realloc(dst
, ssz
+ 1);
2002 memcpy(dst
+ dsz
, addcp
, addsz
);
2010 /* Trim trailing whitespace and NUL-terminate. */
2012 while (*psz
> 0 && (*public)[*psz
- 1] == ' ')
2015 (*public)[*psz
] = '\0';
2022 dbadd_mlink(const struct mlink
*mlink
)
2024 dba_page_alias(mlink
->mpage
->dba
, mlink
->name
, NAME_FILE
);
2025 dba_page_add(mlink
->mpage
->dba
, DBP_SECT
, mlink
->dsec
);
2026 dba_page_add(mlink
->mpage
->dba
, DBP_SECT
, mlink
->fsec
);
2027 dba_page_add(mlink
->mpage
->dba
, DBP_ARCH
, mlink
->arch
);
2028 dba_page_add(mlink
->mpage
->dba
, DBP_FILE
, mlink
->file
);
2032 * Flush the current page's terms (and their bits) into the database.
2033 * Also, handle escape sequences at the last possible moment.
2036 dbadd(struct dba
*dba
, struct mpage
*mpage
)
2038 struct mlink
*mlink
;
2046 mlink
= mpage
->mlinks
;
2049 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2050 key
= ohash_next(&names
, &slot
))
2052 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2053 key
= ohash_next(&strings
, &slot
))
2057 while (NULL
!= mlink
) {
2058 fputs(mlink
->name
, stdout
);
2059 if (NULL
== mlink
->next
||
2060 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
2061 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
2062 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
2064 if ('\0' == *mlink
->dsec
)
2065 fputs(mlink
->fsec
, stdout
);
2067 fputs(mlink
->dsec
, stdout
);
2068 if ('\0' != *mlink
->arch
)
2069 printf("/%s", mlink
->arch
);
2072 mlink
= mlink
->next
;
2074 fputs(", ", stdout
);
2076 printf(" - %s\n", mpage
->desc
);
2081 say(mlink
->file
, "Adding to database");
2085 mustfree
= render_string(&cp
, &i
);
2086 mpage
->dba
= dba_page_new(dba
->pages
,
2087 *mpage
->arch
== '\0' ? mlink
->arch
: mpage
->arch
,
2088 cp
, mlink
->file
, mpage
->form
);
2091 dba_page_add(mpage
->dba
, DBP_SECT
, mpage
->sec
);
2093 while (mlink
!= NULL
) {
2095 mlink
= mlink
->next
;
2098 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2099 key
= ohash_next(&names
, &slot
)) {
2100 assert(key
->mpage
== mpage
);
2101 dba_page_alias(mpage
->dba
, key
->key
, key
->mask
);
2104 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2105 key
= ohash_next(&strings
, &slot
)) {
2106 assert(key
->mpage
== mpage
);
2108 for (mask
= TYPE_Xr
; mask
<= TYPE_Lb
; mask
*= 2) {
2109 if (key
->mask
& mask
)
2110 dba_macro_add(dba
->macros
, i
,
2111 key
->key
, mpage
->dba
);
2119 dbprune(struct dba
*dba
)
2121 struct dba_array
*page
, *files
;
2124 dba_array_FOREACH(dba
->pages
, page
) {
2125 files
= dba_array_get(page
, DBP_FILE
);
2126 dba_array_FOREACH(files
, file
) {
2129 if (ohash_find(&mlinks
, ohash_qlookup(&mlinks
,
2132 say(file
, "Deleting from database");
2133 dba_array_del(dba
->pages
);
2141 * Write the database from memory to disk.
2144 dbwrite(struct dba
*dba
)
2146 struct stat sb1
, sb2
;
2147 char tfn
[33], *cp1
, *cp2
;
2152 * Do not write empty databases, and delete existing ones
2153 * when makewhatis -u causes them to become empty.
2156 dba_array_start(dba
->pages
);
2157 if (dba_array_next(dba
->pages
) == NULL
) {
2158 if (unlink(MANDOC_DB
) == -1 && errno
!= ENOENT
)
2159 say(MANDOC_DB
, "&unlink");
2164 * Build the database in a temporary file,
2165 * then atomically move it into place.
2168 if (dba_write(MANDOC_DB
"~", dba
) != -1) {
2169 if (rename(MANDOC_DB
"~", MANDOC_DB
) == -1) {
2170 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2171 say(MANDOC_DB
, "&rename");
2172 unlink(MANDOC_DB
"~");
2178 * We lack write permission and cannot replace the database
2179 * file, but let's at least check whether the data changed.
2182 (void)strlcpy(tfn
, "/tmp/mandocdb.XXXXXXXX", sizeof(tfn
));
2183 if (mkdtemp(tfn
) == NULL
) {
2184 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2185 say("", "&%s", tfn
);
2188 cp1
= cp2
= MAP_FAILED
;
2190 (void)strlcat(tfn
, "/" MANDOC_DB
, sizeof(tfn
));
2191 if (dba_write(tfn
, dba
) == -1) {
2192 say(tfn
, "&dba_write");
2195 if ((fd1
= open(MANDOC_DB
, O_RDONLY
, 0)) == -1) {
2196 say(MANDOC_DB
, "&open");
2199 if ((fd2
= open(tfn
, O_RDONLY
, 0)) == -1) {
2203 if (fstat(fd1
, &sb1
) == -1) {
2204 say(MANDOC_DB
, "&fstat");
2207 if (fstat(fd2
, &sb2
) == -1) {
2211 if (sb1
.st_size
!= sb2
.st_size
)
2213 if ((cp1
= mmap(NULL
, sb1
.st_size
, PROT_READ
, MAP_PRIVATE
,
2214 fd1
, 0)) == MAP_FAILED
) {
2215 say(MANDOC_DB
, "&mmap");
2218 if ((cp2
= mmap(NULL
, sb2
.st_size
, PROT_READ
, MAP_PRIVATE
,
2219 fd2
, 0)) == MAP_FAILED
) {
2223 for (i
= 0; i
< sb1
.st_size
; i
++)
2224 if (cp1
[i
] != cp2
[i
])
2229 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2230 say(MANDOC_DB
, "Data changed, but cannot replace database");
2233 if (cp1
!= MAP_FAILED
)
2234 munmap(cp1
, sb1
.st_size
);
2235 if (cp2
!= MAP_FAILED
)
2236 munmap(cp2
, sb2
.st_size
);
2242 *strrchr(tfn
, '/') = '\0';
2247 set_basedir(const char *targetdir
, int report_baddir
)
2249 static char startdir
[PATH_MAX
];
2250 static int getcwd_status
; /* 1 = ok, 2 = failure */
2251 static int chdir_status
; /* 1 = changed directory */
2255 * Remember the original working directory, if possible.
2256 * This will be needed if the second or a later directory
2257 * on the command line is given as a relative path.
2258 * Do not error out if the current directory is not
2259 * searchable: Maybe it won't be needed after all.
2261 if (0 == getcwd_status
) {
2262 if (NULL
== getcwd(startdir
, sizeof(startdir
))) {
2264 (void)strlcpy(startdir
, strerror(errno
),
2271 * We are leaving the old base directory.
2272 * Do not use it any longer, not even for messages.
2277 * If and only if the directory was changed earlier and
2278 * the next directory to process is given as a relative path,
2279 * first go back, or bail out if that is impossible.
2281 if (chdir_status
&& '/' != *targetdir
) {
2282 if (2 == getcwd_status
) {
2283 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2284 say("", "getcwd: %s", startdir
);
2287 if (-1 == chdir(startdir
)) {
2288 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2289 say("", "&chdir %s", startdir
);
2295 * Always resolve basedir to the canonicalized absolute
2296 * pathname and append a trailing slash, such that
2297 * we can reliably check whether files are inside.
2299 if (NULL
== realpath(targetdir
, basedir
)) {
2300 if (report_baddir
|| errno
!= ENOENT
) {
2301 exitcode
= (int)MANDOCLEVEL_BADARG
;
2302 say("", "&%s: realpath", targetdir
);
2305 } else if (-1 == chdir(basedir
)) {
2306 if (report_baddir
|| errno
!= ENOENT
) {
2307 exitcode
= (int)MANDOCLEVEL_BADARG
;
2313 cp
= strchr(basedir
, '\0');
2314 if ('/' != cp
[-1]) {
2315 if (cp
- basedir
>= PATH_MAX
- 1) {
2316 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2317 say("", "Filename too long");
2327 say(const char *file
, const char *format
, ...)
2332 if ('\0' != *basedir
)
2333 fprintf(stderr
, "%s", basedir
);
2334 if ('\0' != *basedir
&& '\0' != *file
)
2337 fprintf(stderr
, "%s", file
);
2340 if (NULL
!= format
) {
2353 if (NULL
!= format
) {
2354 if ('\0' != *basedir
|| '\0' != *file
)
2355 fputs(": ", stderr
);
2356 va_start(ap
, format
);
2357 vfprintf(stderr
, format
, ap
);
2361 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2362 fputs(": ", stderr
);
2365 fputc('\n', stderr
);