]>
git.cameronkatri.com Git - mandoc.git/blob - mandocdb.c
1 /* $Id: mandocdb.c,v 1.253 2017/07/28 14:48:25 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
- MDOC_Dd
] = {
187 { NULL
, 0, NODE_NOPRT
}, /* Dd */
188 { NULL
, 0, NODE_NOPRT
}, /* Dt */
189 { NULL
, 0, NODE_NOPRT
}, /* Os */
190 { parse_mdoc_Sh
, TYPE_Sh
, 0 }, /* Sh */
191 { parse_mdoc_head
, TYPE_Ss
, 0 }, /* Ss */
192 { NULL
, 0, 0 }, /* Pp */
193 { NULL
, 0, 0 }, /* D1 */
194 { NULL
, 0, 0 }, /* Dl */
195 { NULL
, 0, 0 }, /* Bd */
196 { NULL
, 0, 0 }, /* Ed */
197 { NULL
, 0, 0 }, /* Bl */
198 { NULL
, 0, 0 }, /* El */
199 { NULL
, 0, 0 }, /* It */
200 { NULL
, 0, 0 }, /* Ad */
201 { NULL
, TYPE_An
, 0 }, /* An */
202 { NULL
, 0, 0 }, /* Ap */
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
, 0 }, /* 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
, NODE_NOSRC
}, /* 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 }, /* %U */
306 { NULL
, 0, 0 }, /* Ta */
308 static const struct mdoc_handler
*const mdocs
= __mdocs
- MDOC_Dd
;
312 mandocdb(int argc
, char *argv
[])
317 const char *path_arg
, *progname
;
322 if (pledge("stdio rpath wpath cpath fattr flock proc exec", NULL
) == -1) {
324 return (int)MANDOCLEVEL_SYSERR
;
328 #if HAVE_SANDBOX_INIT
329 if (sandbox_init(kSBXProfileNoInternet
, SANDBOX_NAMED
, NULL
) == -1) {
330 warnx("sandbox_init");
331 return (int)MANDOCLEVEL_SYSERR
;
335 memset(&conf
, 0, sizeof(conf
));
338 * We accept a few different invocations.
339 * The CHECKOP macro makes sure that invocation styles don't
340 * clobber each other.
342 #define CHECKOP(_op, _ch) do \
343 if (OP_DEFAULT != (_op)) { \
344 warnx("-%c: Conflicting option", (_ch)); \
346 } while (/*CONSTCOND*/0)
351 while (-1 != (ch
= getopt(argc
, argv
, "aC:Dd:npQT:tu:v")))
376 mparse_options
|= MPARSE_QUICK
;
379 if (strcmp(optarg
, "utf8")) {
380 warnx("-T%s: Unsupported output format",
388 dup2(STDOUT_FILENO
, STDERR_FILENO
);
398 /* Compatibility with espie@'s makewhatis. */
409 if (pledge("stdio rpath", NULL
) == -1) {
411 return (int)MANDOCLEVEL_SYSERR
;
416 if (OP_CONFFILE
== op
&& argc
> 0) {
417 warnx("-C: Too many arguments");
421 exitcode
= (int)MANDOCLEVEL_OK
;
423 mp
= mparse_alloc(mparse_options
, MANDOCERR_MAX
, NULL
,
424 MANDOC_OS_OTHER
, NULL
);
425 mandoc_ohash_init(&mpages
, 6, offsetof(struct mpage
, inodev
));
426 mandoc_ohash_init(&mlinks
, 6, offsetof(struct mlink
, file
));
428 if (OP_UPDATE
== op
|| OP_DELETE
== op
|| OP_TEST
== op
) {
431 * Most of these deal with a specific directory.
432 * Jump into that directory first.
434 if (OP_TEST
!= op
&& 0 == set_basedir(path_arg
, 1))
437 dba
= nodb
? dba_new(128) : dba_read(MANDOC_DB
);
440 * The existing database is usable. Process
441 * all files specified on the command-line.
445 if (pledge("stdio rpath wpath cpath fattr flock", NULL
) == -1) {
447 exitcode
= (int)MANDOCLEVEL_SYSERR
;
453 for (i
= 0; i
< argc
; i
++)
458 /* Database missing or corrupt. */
459 if (op
!= OP_UPDATE
|| errno
!= ENOENT
)
460 say(MANDOC_DB
, "%s: Automatically recreating"
461 " from scratch", strerror(errno
));
462 exitcode
= (int)MANDOCLEVEL_OK
;
469 mpages_merge(dba
, mp
);
475 * If we have arguments, use them as our manpaths.
476 * If we don't, use man.conf(5).
479 conf
.manpath
.paths
= mandoc_reallocarray(NULL
,
480 argc
, sizeof(char *));
481 conf
.manpath
.sz
= (size_t)argc
;
482 for (i
= 0; i
< argc
; i
++)
483 conf
.manpath
.paths
[i
] = mandoc_strdup(argv
[i
]);
485 manconf_parse(&conf
, path_arg
, NULL
, NULL
);
487 if (conf
.manpath
.sz
== 0) {
488 exitcode
= (int)MANDOCLEVEL_BADARG
;
489 say("", "Empty manpath");
493 * First scan the tree rooted at a base directory, then
494 * build a new database and finally move it into place.
495 * Ignore zero-length directories and strip trailing
498 for (j
= 0; j
< conf
.manpath
.sz
; j
++) {
499 sz
= strlen(conf
.manpath
.paths
[j
]);
500 if (sz
&& conf
.manpath
.paths
[j
][sz
- 1] == '/')
501 conf
.manpath
.paths
[j
][--sz
] = '\0';
506 mandoc_ohash_init(&mpages
, 6,
507 offsetof(struct mpage
, inodev
));
508 mandoc_ohash_init(&mlinks
, 6,
509 offsetof(struct mlink
, file
));
512 if ( ! set_basedir(conf
.manpath
.paths
[j
], argc
> 0))
517 mpages_merge(dba
, mp
);
522 if (j
+ 1 < conf
.manpath
.sz
) {
524 ohash_delete(&mpages
);
525 ohash_delete(&mlinks
);
534 ohash_delete(&mpages
);
535 ohash_delete(&mlinks
);
538 progname
= getprogname();
539 fprintf(stderr
, "usage: %s [-aDnpQ] [-C file] [-Tutf8]\n"
540 " %s [-aDnpQ] [-Tutf8] dir ...\n"
541 " %s [-DnpQ] [-Tutf8] -d dir [file ...]\n"
542 " %s [-Dnp] -u dir [file ...]\n"
543 " %s [-Q] -t file ...\n",
544 progname
, progname
, progname
, progname
, progname
);
546 return (int)MANDOCLEVEL_BADARG
;
550 * To get a singly linked list in alpha order while inserting entries
551 * at the beginning, process directory entries in reverse alpha order.
554 #if HAVE_FTS_COMPARE_CONST
555 fts_compare(const FTSENT
*const *a
, const FTSENT
*const *b
)
557 fts_compare(const FTSENT
**a
, const FTSENT
**b
)
560 return -strcmp((*a
)->fts_name
, (*b
)->fts_name
);
564 * Scan a directory tree rooted at "basedir" for manpages.
565 * We use fts(), scanning directory parts along the way for clues to our
566 * section and architecture.
568 * If use_all has been specified, grok all files.
569 * If not, sanitise paths to the following:
571 * [./]man*[/<arch>]/<name>.<section>
573 * [./]cat<section>[/<arch>]/<name>.0
575 * TODO: accommodate for multi-language directories.
586 char *dsec
, *arch
, *fsec
, *cp
;
593 f
= fts_open((char * const *)argv
, FTS_PHYSICAL
| FTS_NOCHDIR
,
596 exitcode
= (int)MANDOCLEVEL_SYSERR
;
597 say("", "&fts_open");
604 while ((ff
= fts_read(f
)) != NULL
) {
605 path
= ff
->fts_path
+ 2;
606 switch (ff
->fts_info
) {
609 * Symbolic links require various sanity checks,
610 * then get handled just like regular files.
613 if (realpath(path
, buf
) == NULL
) {
615 say(path
, "&realpath");
618 if (strstr(buf
, basedir
) != buf
620 && strstr(buf
, HOMEBREWDIR
) != buf
623 if (warnings
) say("",
624 "%s: outside base directory", buf
);
627 /* Use logical inode to avoid mpages dupe. */
628 if (stat(path
, ff
->fts_statp
) == -1) {
636 * If we're a regular file, add an mlink by using the
637 * stored directory data and handling the filename.
640 if ( ! strcmp(path
, MANDOC_DB
))
642 if ( ! use_all
&& ff
->fts_level
< 2) {
644 say(path
, "Extraneous file");
649 while (fsec
== NULL
) {
650 fsec
= strrchr(ff
->fts_name
, '.');
651 if (fsec
== NULL
|| strcmp(fsec
+1, "gz"))
661 "No filename suffix");
664 } else if ( ! strcmp(++fsec
, "html")) {
666 say(path
, "Skip html");
668 } else if ( ! strcmp(fsec
, "ps")) {
670 say(path
, "Skip ps");
672 } else if ( ! strcmp(fsec
, "pdf")) {
674 say(path
, "Skip pdf");
676 } else if ( ! use_all
&&
677 ((dform
== FORM_SRC
&&
678 strncmp(fsec
, dsec
, strlen(dsec
))) ||
679 (dform
== FORM_CAT
&& strcmp(fsec
, "0")))) {
681 say(path
, "Wrong filename suffix");
686 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
687 if (strlcpy(mlink
->file
, path
,
688 sizeof(mlink
->file
)) >=
689 sizeof(mlink
->file
)) {
690 say(path
, "Filename too long");
694 mlink
->dform
= dform
;
697 mlink
->name
= ff
->fts_name
;
700 mlink_add(mlink
, ff
->fts_statp
);
709 say(path
, "Not a regular file");
713 switch (ff
->fts_level
) {
715 /* Ignore the root directory. */
719 * This might contain manX/ or catX/.
720 * Try to infer this from the name.
721 * If we're not in use_all, enforce it.
724 if (ff
->fts_info
== FTS_DP
) {
730 if ( ! strncmp(cp
, "man", 3)) {
733 } else if ( ! strncmp(cp
, "cat", 3)) {
741 if (dsec
!= NULL
|| use_all
)
745 say(path
, "Unknown directory part");
746 fts_set(f
, ff
, FTS_SKIP
);
750 * Possibly our architecture.
751 * If we're descending, keep tabs on it.
753 if (ff
->fts_info
!= FTS_DP
&& dsec
!= NULL
)
759 if (ff
->fts_info
== FTS_DP
|| use_all
)
762 say(path
, "Extraneous directory part");
763 fts_set(f
, ff
, FTS_SKIP
);
773 * Add a file to the mlinks table.
774 * Do not verify that it's a "valid" looking manpage (we'll do that
777 * Try to infer the manual section, architecture, and page name from the
778 * path, assuming it looks like
780 * [./]man*[/<arch>]/<name>.<section>
782 * [./]cat<section>[/<arch>]/<name>.0
784 * See treescan() for the fts(3) version of this.
787 filescan(const char *file
)
796 if (0 == strncmp(file
, "./", 2))
800 * We have to do lstat(2) before realpath(3) loses
801 * the information whether this is a symbolic link.
802 * We need to know that because for symbolic links,
803 * we want to use the orginal file name, while for
804 * regular files, we want to use the real path.
806 if (-1 == lstat(file
, &st
)) {
807 exitcode
= (int)MANDOCLEVEL_BADARG
;
810 } else if (0 == ((S_IFREG
| S_IFLNK
) & st
.st_mode
)) {
811 exitcode
= (int)MANDOCLEVEL_BADARG
;
812 say(file
, "Not a regular file");
817 * We have to resolve the file name to the real path
818 * in any case for the base directory check.
820 if (NULL
== realpath(file
, buf
)) {
821 exitcode
= (int)MANDOCLEVEL_BADARG
;
822 say(file
, "&realpath");
828 else if (strstr(buf
, basedir
) == buf
)
829 start
= buf
+ strlen(basedir
);
831 else if (strstr(buf
, HOMEBREWDIR
) == buf
)
835 exitcode
= (int)MANDOCLEVEL_BADARG
;
836 say("", "%s: outside base directory", buf
);
841 * Now we are sure the file is inside our tree.
842 * If it is a symbolic link, ignore the real path
843 * and use the original name.
844 * This implies passing stuff like "cat1/../man1/foo.1"
845 * on the command line won't work. So don't do that.
846 * Note the stat(2) can still fail if the link target
849 if (S_IFLNK
& st
.st_mode
) {
850 if (-1 == stat(buf
, &st
)) {
851 exitcode
= (int)MANDOCLEVEL_BADARG
;
855 if (strlcpy(buf
, file
, sizeof(buf
)) >= sizeof(buf
)) {
856 say(file
, "Filename too long");
860 if (OP_TEST
!= op
&& strstr(buf
, basedir
) == buf
)
861 start
+= strlen(basedir
);
864 mlink
= mandoc_calloc(1, sizeof(struct mlink
));
865 mlink
->dform
= FORM_NONE
;
866 if (strlcpy(mlink
->file
, start
, sizeof(mlink
->file
)) >=
867 sizeof(mlink
->file
)) {
868 say(start
, "Filename too long");
874 * In test mode or when the original name is absolute
875 * but outside our tree, guess the base directory.
878 if (op
== OP_TEST
|| (start
== buf
&& *start
== '/')) {
879 if (strncmp(buf
, "man/", 4) == 0)
881 else if ((start
= strstr(buf
, "/man/")) != NULL
)
888 * First try to guess our directory structure.
889 * If we find a separator, try to look for man* or cat*.
890 * If we find one of these and what's underneath is a directory,
891 * assume it's an architecture.
893 if (NULL
!= (p
= strchr(start
, '/'))) {
895 if (0 == strncmp(start
, "man", 3)) {
896 mlink
->dform
= FORM_SRC
;
897 mlink
->dsec
= start
+ 3;
898 } else if (0 == strncmp(start
, "cat", 3)) {
899 mlink
->dform
= FORM_CAT
;
900 mlink
->dsec
= start
+ 3;
904 if (NULL
!= mlink
->dsec
&& NULL
!= (p
= strchr(start
, '/'))) {
912 * Now check the file suffix.
913 * Suffix of `.0' indicates a catpage, `.1-9' is a manpage.
915 p
= strrchr(start
, '\0');
916 while (p
-- > start
&& '/' != *p
&& '.' != *p
)
925 * Now try to parse the name.
926 * Use the filename portion of the path.
929 if (NULL
!= (p
= strrchr(start
, '/'))) {
933 mlink_add(mlink
, &st
);
937 mlink_add(struct mlink
*mlink
, const struct stat
*st
)
939 struct inodev inodev
;
943 assert(NULL
!= mlink
->file
);
945 mlink
->dsec
= mandoc_strdup(mlink
->dsec
? mlink
->dsec
: "");
946 mlink
->arch
= mandoc_strdup(mlink
->arch
? mlink
->arch
: "");
947 mlink
->name
= mandoc_strdup(mlink
->name
? mlink
->name
: "");
948 mlink
->fsec
= mandoc_strdup(mlink
->fsec
? mlink
->fsec
: "");
950 if ('0' == *mlink
->fsec
) {
952 mlink
->fsec
= mandoc_strdup(mlink
->dsec
);
953 mlink
->fform
= FORM_CAT
;
954 } else if ('1' <= *mlink
->fsec
&& '9' >= *mlink
->fsec
)
955 mlink
->fform
= FORM_SRC
;
957 mlink
->fform
= FORM_NONE
;
959 slot
= ohash_qlookup(&mlinks
, mlink
->file
);
960 assert(NULL
== ohash_find(&mlinks
, slot
));
961 ohash_insert(&mlinks
, slot
, mlink
);
963 memset(&inodev
, 0, sizeof(inodev
)); /* Clear padding. */
964 inodev
.st_ino
= st
->st_ino
;
965 inodev
.st_dev
= st
->st_dev
;
966 slot
= ohash_lookup_memory(&mpages
, (char *)&inodev
,
967 sizeof(struct inodev
), inodev
.st_ino
);
968 mpage
= ohash_find(&mpages
, slot
);
970 mpage
= mandoc_calloc(1, sizeof(struct mpage
));
971 mpage
->inodev
.st_ino
= inodev
.st_ino
;
972 mpage
->inodev
.st_dev
= inodev
.st_dev
;
973 mpage
->form
= FORM_NONE
;
974 mpage
->next
= mpage_head
;
976 ohash_insert(&mpages
, slot
, mpage
);
978 mlink
->next
= mpage
->mlinks
;
979 mpage
->mlinks
= mlink
;
980 mlink
->mpage
= mpage
;
984 mlink_free(struct mlink
*mlink
)
1000 while ((mpage
= mpage_head
) != NULL
) {
1001 while ((mlink
= mpage
->mlinks
) != NULL
) {
1002 mpage
->mlinks
= mlink
->next
;
1005 mpage_head
= mpage
->next
;
1015 * For each mlink to the mpage, check whether the path looks like
1016 * it is formatted, and if it does, check whether a source manual
1017 * exists by the same name, ignoring the suffix.
1018 * If both conditions hold, drop the mlink.
1021 mlinks_undupe(struct mpage
*mpage
)
1024 struct mlink
**prev
;
1025 struct mlink
*mlink
;
1028 mpage
->form
= FORM_CAT
;
1029 prev
= &mpage
->mlinks
;
1030 while (NULL
!= (mlink
= *prev
)) {
1031 if (FORM_CAT
!= mlink
->dform
) {
1032 mpage
->form
= FORM_NONE
;
1035 (void)strlcpy(buf
, mlink
->file
, sizeof(buf
));
1036 bufp
= strstr(buf
, "cat");
1037 assert(NULL
!= bufp
);
1038 memcpy(bufp
, "man", 3);
1039 if (NULL
!= (bufp
= strrchr(buf
, '.')))
1041 (void)strlcat(buf
, mlink
->dsec
, sizeof(buf
));
1042 if (NULL
== ohash_find(&mlinks
,
1043 ohash_qlookup(&mlinks
, buf
)))
1046 say(mlink
->file
, "Man source exists: %s", buf
);
1049 *prev
= mlink
->next
;
1053 prev
= &(*prev
)->next
;
1058 mlink_check(struct mpage
*mpage
, struct mlink
*mlink
)
1064 * Check whether the manual section given in a file
1065 * agrees with the directory where the file is located.
1066 * Some manuals have suffixes like (3p) on their
1067 * section number either inside the file or in the
1068 * directory name, some are linked into more than one
1069 * section, like encrypt(1) = makekey(8).
1072 if (FORM_SRC
== mpage
->form
&&
1073 strcasecmp(mpage
->sec
, mlink
->dsec
))
1074 say(mlink
->file
, "Section \"%s\" manual in %s directory",
1075 mpage
->sec
, mlink
->dsec
);
1078 * Manual page directories exist for each kernel
1079 * architecture as returned by machine(1).
1080 * However, many manuals only depend on the
1081 * application architecture as returned by arch(1).
1082 * For example, some (2/ARM) manuals are shared
1083 * across the "armish" and "zaurus" kernel
1085 * A few manuals are even shared across completely
1086 * different architectures, for example fdformat(1)
1087 * on amd64, i386, and sparc64.
1090 if (strcasecmp(mpage
->arch
, mlink
->arch
))
1091 say(mlink
->file
, "Architecture \"%s\" manual in "
1092 "\"%s\" directory", mpage
->arch
, mlink
->arch
);
1096 * parse_cat() doesn't set NAME_TITLE yet.
1099 if (FORM_CAT
== mpage
->form
)
1103 * Check whether this mlink
1104 * appears as a name in the NAME section.
1107 slot
= ohash_qlookup(&names
, mlink
->name
);
1108 str
= ohash_find(&names
, slot
);
1109 assert(NULL
!= str
);
1110 if ( ! (NAME_TITLE
& str
->mask
))
1111 say(mlink
->file
, "Name missing in NAME section");
1115 * Run through the files in the global vector "mpages"
1116 * and add them to the database specified in "basedir".
1118 * This handles the parsing scheme itself, using the cues of directory
1119 * and filename to determine whether the file is parsable or not.
1122 mpages_merge(struct dba
*dba
, struct mparse
*mp
)
1124 struct mpage
*mpage
, *mpage_dest
;
1125 struct mlink
*mlink
, *mlink_dest
;
1126 struct roff_man
*man
;
1131 for (mpage
= mpage_head
; mpage
!= NULL
; mpage
= mpage
->next
) {
1132 mlinks_undupe(mpage
);
1133 if ((mlink
= mpage
->mlinks
) == NULL
)
1136 name_mask
= NAME_MASK
;
1137 mandoc_ohash_init(&names
, 4, offsetof(struct str
, key
));
1138 mandoc_ohash_init(&strings
, 6, offsetof(struct str
, key
));
1143 if ((fd
= mparse_open(mp
, mlink
->file
)) == -1) {
1144 say(mlink
->file
, "&open");
1149 * Interpret the file as mdoc(7) or man(7) source
1150 * code, unless it is known to be formatted.
1152 if (mlink
->dform
!= FORM_CAT
|| mlink
->fform
!= FORM_CAT
) {
1153 mparse_readfd(mp
, fd
, mlink
->file
);
1156 mparse_result(mp
, &man
, &sodest
);
1159 if (sodest
!= NULL
) {
1160 mlink_dest
= ohash_find(&mlinks
,
1161 ohash_qlookup(&mlinks
, sodest
));
1162 if (mlink_dest
== NULL
) {
1163 mandoc_asprintf(&cp
, "%s.gz", sodest
);
1164 mlink_dest
= ohash_find(&mlinks
,
1165 ohash_qlookup(&mlinks
, cp
));
1168 if (mlink_dest
!= NULL
) {
1170 /* The .so target exists. */
1172 mpage_dest
= mlink_dest
->mpage
;
1174 mlink
->mpage
= mpage_dest
;
1177 * If the target was already
1178 * processed, add the links
1179 * to the database now.
1180 * Otherwise, this will
1181 * happen when we come
1185 if (mpage_dest
->dba
!= NULL
)
1188 if (mlink
->next
== NULL
)
1190 mlink
= mlink
->next
;
1193 /* Move all links to the target. */
1195 mlink
->next
= mlink_dest
->next
;
1196 mlink_dest
->next
= mpage
->mlinks
;
1197 mpage
->mlinks
= NULL
;
1200 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MDOC
) {
1202 mpage
->form
= FORM_SRC
;
1203 mpage
->sec
= man
->meta
.msec
;
1204 mpage
->sec
= mandoc_strdup(
1205 mpage
->sec
== NULL
? "" : mpage
->sec
);
1206 mpage
->arch
= man
->meta
.arch
;
1207 mpage
->arch
= mandoc_strdup(
1208 mpage
->arch
== NULL
? "" : mpage
->arch
);
1209 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1210 } else if (man
!= NULL
&& man
->macroset
== MACROSET_MAN
) {
1212 if (*man
->meta
.msec
!= '\0' ||
1213 *man
->meta
.title
!= '\0') {
1214 mpage
->form
= FORM_SRC
;
1215 mpage
->sec
= mandoc_strdup(man
->meta
.msec
);
1216 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1217 mpage
->title
= mandoc_strdup(man
->meta
.title
);
1222 assert(mpage
->desc
== NULL
);
1224 mpage
->form
= FORM_CAT
;
1225 mpage
->sec
= mandoc_strdup(mlink
->dsec
);
1226 mpage
->arch
= mandoc_strdup(mlink
->arch
);
1227 mpage
->title
= mandoc_strdup(mlink
->name
);
1228 parse_cat(mpage
, fd
);
1229 } else if (man
->macroset
== MACROSET_MDOC
)
1230 parse_mdoc(mpage
, &man
->meta
, man
->first
);
1232 parse_man(mpage
, &man
->meta
, man
->first
);
1233 if (mpage
->desc
== NULL
) {
1234 mpage
->desc
= mandoc_strdup(mlink
->name
);
1236 say(mlink
->file
, "No one-line description, "
1237 "using filename \"%s\"", mlink
->name
);
1240 for (mlink
= mpage
->mlinks
;
1242 mlink
= mlink
->next
) {
1243 putkey(mpage
, mlink
->name
, NAME_FILE
);
1244 if (warnings
&& !use_all
)
1245 mlink_check(mpage
, mlink
);
1251 ohash_delete(&strings
);
1252 ohash_delete(&names
);
1257 parse_cat(struct mpage
*mpage
, int fd
)
1260 struct mlink
*mlink
;
1261 char *line
, *p
, *title
, *sec
;
1262 size_t linesz
, plen
, titlesz
;
1266 mlink
= mpage
->mlinks
;
1267 stream
= fd
== -1 ? fopen(mlink
->file
, "r") : fdopen(fd
, "r");
1268 if (stream
== NULL
) {
1272 say(mlink
->file
, "&fopen");
1279 /* Parse the section number from the header line. */
1281 while (getline(&line
, &linesz
, stream
) != -1) {
1284 if ((sec
= strchr(line
, '(')) == NULL
)
1286 if ((p
= strchr(++sec
, ')')) == NULL
)
1289 mpage
->sec
= mandoc_strndup(sec
, p
- sec
);
1290 if (warnings
&& *mlink
->dsec
!= '\0' &&
1291 strcasecmp(mpage
->sec
, mlink
->dsec
))
1293 "Section \"%s\" manual in %s directory",
1294 mpage
->sec
, mlink
->dsec
);
1298 /* Skip to first blank line. */
1300 while (line
== NULL
|| *line
!= '\n')
1301 if (getline(&line
, &linesz
, stream
) == -1)
1305 * Assume the first line that is not indented
1306 * is the first section header. Skip to it.
1309 while (getline(&line
, &linesz
, stream
) != -1)
1310 if (*line
!= '\n' && *line
!= ' ')
1314 * Read up until the next section into a buffer.
1315 * Strip the leading and trailing newline from each read line,
1316 * appending a trailing space.
1317 * Ignore empty (whitespace-only) lines.
1323 while ((len
= getline(&line
, &linesz
, stream
)) != -1) {
1327 while (isspace((unsigned char)line
[offs
]))
1329 if (line
[offs
] == '\0')
1331 title
= mandoc_realloc(title
, titlesz
+ len
- offs
);
1332 memcpy(title
+ titlesz
, line
+ offs
, len
- offs
);
1333 titlesz
+= len
- offs
;
1334 title
[titlesz
- 1] = ' ';
1339 * If no page content can be found, or the input line
1340 * is already the next section header, or there is no
1341 * trailing newline, reuse the page title as the page
1345 if (NULL
== title
|| '\0' == *title
) {
1347 say(mlink
->file
, "Cannot find NAME section");
1353 title
[titlesz
- 1] = '\0';
1356 * Skip to the first dash.
1357 * Use the remaining line as the description (no more than 70
1361 if (NULL
!= (p
= strstr(title
, "- "))) {
1362 for (p
+= 2; ' ' == *p
|| '\b' == *p
; p
++)
1363 /* Skip to next word. */ ;
1366 say(mlink
->file
, "No dash in title line, "
1367 "reusing \"%s\" as one-line description", title
);
1373 /* Strip backspace-encoding from line. */
1375 while (NULL
!= (line
= memchr(p
, '\b', plen
))) {
1378 memmove(line
, line
+ 1, plen
--);
1381 memmove(line
- 1, line
+ 1, plen
- len
);
1385 mpage
->desc
= mandoc_strdup(p
);
1391 * Put a type/word pair into the word database for this particular file.
1394 putkey(const struct mpage
*mpage
, char *value
, uint64_t type
)
1396 putkeys(mpage
, value
, strlen(value
), type
);
1400 * Grok all nodes at or below a certain mdoc node into putkey().
1403 putmdockey(const struct mpage
*mpage
,
1404 const struct roff_node
*n
, uint64_t m
, int taboo
)
1407 for ( ; NULL
!= n
; n
= n
->next
) {
1408 if (n
->flags
& taboo
)
1410 if (NULL
!= n
->child
)
1411 putmdockey(mpage
, n
->child
, m
, taboo
);
1412 if (n
->type
== ROFFT_TEXT
)
1413 putkey(mpage
, n
->string
, m
);
1418 parse_man(struct mpage
*mpage
, const struct roff_meta
*meta
,
1419 const struct roff_node
*n
)
1421 const struct roff_node
*head
, *body
;
1422 char *start
, *title
;
1430 * We're only searching for one thing: the first text child in
1431 * the BODY of a NAME section. Since we don't keep track of
1432 * sections in -man, run some hoops to find out whether we're in
1433 * the correct section or not.
1436 if (n
->type
== ROFFT_BODY
&& n
->tok
== MAN_SH
) {
1438 if ((head
= body
->parent
->head
) != NULL
&&
1439 (head
= head
->child
) != NULL
&&
1440 head
->next
== NULL
&&
1441 head
->type
== ROFFT_TEXT
&&
1442 strcmp(head
->string
, "NAME") == 0 &&
1443 body
->child
!= NULL
) {
1446 * Suck the entire NAME section into memory.
1447 * Yes, we might run away.
1448 * But too many manuals have big, spread-out
1449 * NAME sections over many lines.
1453 deroff(&title
, body
);
1458 * Go through a special heuristic dance here.
1459 * Conventionally, one or more manual names are
1460 * comma-specified prior to a whitespace, then a
1461 * dash, then a description. Try to puzzle out
1462 * the name parts here.
1467 sz
= strcspn(start
, " ,");
1468 if ('\0' == start
[sz
])
1475 * Assume a stray trailing comma in the
1476 * name list if a name begins with a dash.
1479 if ('-' == start
[0] ||
1480 ('\\' == start
[0] && '-' == start
[1]))
1483 putkey(mpage
, start
, NAME_TITLE
);
1484 if ( ! (mpage
->name_head_done
||
1485 strcasecmp(start
, meta
->title
))) {
1486 putkey(mpage
, start
, NAME_HEAD
);
1487 mpage
->name_head_done
= 1;
1495 assert(',' == byte
);
1497 while (' ' == *start
)
1501 if (start
== title
) {
1502 putkey(mpage
, start
, NAME_TITLE
);
1503 if ( ! (mpage
->name_head_done
||
1504 strcasecmp(start
, meta
->title
))) {
1505 putkey(mpage
, start
, NAME_HEAD
);
1506 mpage
->name_head_done
= 1;
1512 while (isspace((unsigned char)*start
))
1515 if (0 == strncmp(start
, "-", 1))
1517 else if (0 == strncmp(start
, "\\-\\-", 4))
1519 else if (0 == strncmp(start
, "\\-", 2))
1521 else if (0 == strncmp(start
, "\\(en", 4))
1523 else if (0 == strncmp(start
, "\\(em", 4))
1526 while (' ' == *start
)
1529 mpage
->desc
= mandoc_strdup(start
);
1535 for (n
= n
->child
; n
; n
= n
->next
) {
1536 if (NULL
!= mpage
->desc
)
1538 parse_man(mpage
, meta
, n
);
1543 parse_mdoc(struct mpage
*mpage
, const struct roff_meta
*meta
,
1544 const struct roff_node
*n
)
1547 for (n
= n
->child
; n
!= NULL
; n
= n
->next
) {
1548 if (n
->tok
== TOKEN_NONE
||
1549 n
->tok
< ROFF_MAX
||
1550 n
->flags
& mdocs
[n
->tok
].taboo
)
1552 assert(n
->tok
>= MDOC_Dd
&& n
->tok
< MDOC_MAX
);
1559 if (mdocs
[n
->tok
].fp
!= NULL
&&
1560 (*mdocs
[n
->tok
].fp
)(mpage
, meta
, n
) == 0)
1562 if (mdocs
[n
->tok
].mask
)
1563 putmdockey(mpage
, n
->child
,
1564 mdocs
[n
->tok
].mask
, mdocs
[n
->tok
].taboo
);
1569 if (NULL
!= n
->child
)
1570 parse_mdoc(mpage
, meta
, n
);
1575 parse_mdoc_Fd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1576 const struct roff_node
*n
)
1581 if (SEC_SYNOPSIS
!= n
->sec
||
1582 NULL
== (n
= n
->child
) ||
1583 n
->type
!= ROFFT_TEXT
)
1587 * Only consider those `Fd' macro fields that begin with an
1588 * "inclusion" token (versus, e.g., #define).
1591 if (strcmp("#include", n
->string
))
1594 if ((n
= n
->next
) == NULL
|| n
->type
!= ROFFT_TEXT
)
1598 * Strip away the enclosing angle brackets and make sure we're
1603 if ('<' == *start
|| '"' == *start
)
1606 if (0 == (sz
= strlen(start
)))
1609 end
= &start
[(int)sz
- 1];
1610 if ('>' == *end
|| '"' == *end
)
1614 putkeys(mpage
, start
, end
- start
+ 1, TYPE_In
);
1619 parse_mdoc_fname(struct mpage
*mpage
, const struct roff_node
*n
)
1624 if (n
->type
!= ROFFT_TEXT
)
1627 /* Skip function pointer punctuation. */
1630 while (*cp
== '(' || *cp
== '*')
1632 sz
= strcspn(cp
, "()");
1634 putkeys(mpage
, cp
, sz
, TYPE_Fn
);
1635 if (n
->sec
== SEC_SYNOPSIS
)
1636 putkeys(mpage
, cp
, sz
, NAME_SYN
);
1640 parse_mdoc_Fn(struct mpage
*mpage
, const struct roff_meta
*meta
,
1641 const struct roff_node
*n
)
1644 if (n
->child
== NULL
)
1647 parse_mdoc_fname(mpage
, n
->child
);
1649 for (n
= n
->child
->next
; n
!= NULL
; n
= n
->next
)
1650 if (n
->type
== ROFFT_TEXT
)
1651 putkey(mpage
, n
->string
, TYPE_Fa
);
1657 parse_mdoc_Fo(struct mpage
*mpage
, const struct roff_meta
*meta
,
1658 const struct roff_node
*n
)
1661 if (n
->type
!= ROFFT_HEAD
)
1664 if (n
->child
!= NULL
)
1665 parse_mdoc_fname(mpage
, n
->child
);
1671 parse_mdoc_Va(struct mpage
*mpage
, const struct roff_meta
*meta
,
1672 const struct roff_node
*n
)
1676 if (n
->type
!= ROFFT_ELEM
&& n
->type
!= ROFFT_BODY
)
1679 if (n
->child
!= NULL
&&
1680 n
->child
->next
== NULL
&&
1681 n
->child
->type
== ROFFT_TEXT
)
1687 putkey(mpage
, cp
, TYPE_Vt
| (n
->tok
== MDOC_Va
||
1688 n
->type
== ROFFT_BODY
? TYPE_Va
: 0));
1696 parse_mdoc_Xr(struct mpage
*mpage
, const struct roff_meta
*meta
,
1697 const struct roff_node
*n
)
1701 if (NULL
== (n
= n
->child
))
1704 if (NULL
== n
->next
) {
1705 putkey(mpage
, n
->string
, TYPE_Xr
);
1709 mandoc_asprintf(&cp
, "%s(%s)", n
->string
, n
->next
->string
);
1710 putkey(mpage
, cp
, TYPE_Xr
);
1716 parse_mdoc_Nd(struct mpage
*mpage
, const struct roff_meta
*meta
,
1717 const struct roff_node
*n
)
1720 if (n
->type
== ROFFT_BODY
)
1721 deroff(&mpage
->desc
, n
);
1726 parse_mdoc_Nm(struct mpage
*mpage
, const struct roff_meta
*meta
,
1727 const struct roff_node
*n
)
1730 if (SEC_NAME
== n
->sec
)
1731 putmdockey(mpage
, n
->child
, NAME_TITLE
, 0);
1732 else if (n
->sec
== SEC_SYNOPSIS
&& n
->type
== ROFFT_HEAD
) {
1733 if (n
->child
== NULL
)
1734 putkey(mpage
, meta
->name
, NAME_SYN
);
1736 putmdockey(mpage
, n
->child
, NAME_SYN
, 0);
1738 if ( ! (mpage
->name_head_done
||
1739 n
->child
== NULL
|| n
->child
->string
== NULL
||
1740 strcasecmp(n
->child
->string
, meta
->title
))) {
1741 putkey(mpage
, n
->child
->string
, NAME_HEAD
);
1742 mpage
->name_head_done
= 1;
1748 parse_mdoc_Sh(struct mpage
*mpage
, const struct roff_meta
*meta
,
1749 const struct roff_node
*n
)
1752 return n
->sec
== SEC_CUSTOM
&& n
->type
== ROFFT_HEAD
;
1756 parse_mdoc_head(struct mpage
*mpage
, const struct roff_meta
*meta
,
1757 const struct roff_node
*n
)
1760 return n
->type
== ROFFT_HEAD
;
1764 * Add a string to the hash table for the current manual.
1765 * Each string has a bitmask telling which macros it belongs to.
1766 * When we finish the manual, we'll dump the table.
1769 putkeys(const struct mpage
*mpage
, char *cp
, size_t sz
, uint64_t v
)
1780 mustfree
= render_string(&cp
, &sz
);
1786 name_mask
&= ~NAME_FIRST
;
1788 say(mpage
->mlinks
->file
,
1789 "Adding name %*s, bits=0x%llx", (int)sz
, cp
,
1790 (unsigned long long)v
);
1794 for (i
= 0; i
< KEY_MAX
; i
++)
1795 if ((uint64_t)1 << i
& v
)
1796 say(mpage
->mlinks
->file
,
1797 "Adding key %s=%*s",
1798 mansearch_keynames
[i
], (int)sz
, cp
);
1802 slot
= ohash_qlookupi(htab
, cp
, &end
);
1803 s
= ohash_find(htab
, slot
);
1805 if (NULL
!= s
&& mpage
== s
->mpage
) {
1808 } else if (NULL
== s
) {
1809 s
= mandoc_calloc(1, sizeof(struct str
) + sz
+ 1);
1810 memcpy(s
->key
, cp
, sz
);
1811 ohash_insert(htab
, slot
, s
);
1821 * Take a Unicode codepoint and produce its UTF-8 encoding.
1822 * This isn't the best way to do this, but it works.
1823 * The magic numbers are from the UTF-8 packaging.
1824 * They're not as scary as they seem: read the UTF-8 spec for details.
1827 utf8(unsigned int cp
, char out
[7])
1832 if (cp
<= 0x0000007F) {
1835 } else if (cp
<= 0x000007FF) {
1837 out
[0] = (cp
>> 6 & 31) | 192;
1838 out
[1] = (cp
& 63) | 128;
1839 } else if (cp
<= 0x0000FFFF) {
1841 out
[0] = (cp
>> 12 & 15) | 224;
1842 out
[1] = (cp
>> 6 & 63) | 128;
1843 out
[2] = (cp
& 63) | 128;
1844 } else if (cp
<= 0x001FFFFF) {
1846 out
[0] = (cp
>> 18 & 7) | 240;
1847 out
[1] = (cp
>> 12 & 63) | 128;
1848 out
[2] = (cp
>> 6 & 63) | 128;
1849 out
[3] = (cp
& 63) | 128;
1850 } else if (cp
<= 0x03FFFFFF) {
1852 out
[0] = (cp
>> 24 & 3) | 248;
1853 out
[1] = (cp
>> 18 & 63) | 128;
1854 out
[2] = (cp
>> 12 & 63) | 128;
1855 out
[3] = (cp
>> 6 & 63) | 128;
1856 out
[4] = (cp
& 63) | 128;
1857 } else if (cp
<= 0x7FFFFFFF) {
1859 out
[0] = (cp
>> 30 & 1) | 252;
1860 out
[1] = (cp
>> 24 & 63) | 128;
1861 out
[2] = (cp
>> 18 & 63) | 128;
1862 out
[3] = (cp
>> 12 & 63) | 128;
1863 out
[4] = (cp
>> 6 & 63) | 128;
1864 out
[5] = (cp
& 63) | 128;
1873 * If the string contains escape sequences,
1874 * replace it with an allocated rendering and return 1,
1875 * such that the caller can free it after use.
1876 * Otherwise, do nothing and return 0.
1879 render_string(char **public, size_t *psz
)
1881 const char *src
, *scp
, *addcp
, *seq
;
1883 size_t ssz
, dsz
, addsz
;
1884 char utfbuf
[7], res
[6];
1885 int seqlen
, unicode
;
1889 res
[2] = ASCII_NBRSP
;
1890 res
[3] = ASCII_HYPH
;
1891 res
[4] = ASCII_BREAK
;
1894 src
= scp
= *public;
1899 while (scp
< src
+ *psz
) {
1901 /* Leave normal characters unchanged. */
1903 if (strchr(res
, *scp
) == NULL
) {
1911 * Found something that requires replacing,
1912 * make sure we have a destination buffer.
1916 dst
= mandoc_malloc(ssz
+ 1);
1918 memcpy(dst
, src
, dsz
);
1921 /* Handle single-char special characters. */
1942 * Found an escape sequence.
1943 * Read past the slash, then parse it.
1944 * Ignore everything except characters.
1948 if (mandoc_escape(&scp
, &seq
, &seqlen
) != ESCAPE_SPECIAL
)
1952 * Render the special character
1953 * as either UTF-8 or ASCII.
1957 unicode
= mchars_spec2cp(seq
, seqlen
);
1960 addsz
= utf8(unicode
, utfbuf
);
1965 addcp
= mchars_spec2str(seq
, seqlen
, &addsz
);
1968 if (*addcp
== ASCII_NBRSP
) {
1974 /* Copy the rendered glyph into the stream. */
1977 dst
= mandoc_realloc(dst
, ssz
+ 1);
1978 memcpy(dst
+ dsz
, addcp
, addsz
);
1986 /* Trim trailing whitespace and NUL-terminate. */
1988 while (*psz
> 0 && (*public)[*psz
- 1] == ' ')
1991 (*public)[*psz
] = '\0';
1998 dbadd_mlink(const struct mlink
*mlink
)
2000 dba_page_alias(mlink
->mpage
->dba
, mlink
->name
, NAME_FILE
);
2001 dba_page_add(mlink
->mpage
->dba
, DBP_SECT
, mlink
->dsec
);
2002 dba_page_add(mlink
->mpage
->dba
, DBP_SECT
, mlink
->fsec
);
2003 dba_page_add(mlink
->mpage
->dba
, DBP_ARCH
, mlink
->arch
);
2004 dba_page_add(mlink
->mpage
->dba
, DBP_FILE
, mlink
->file
);
2008 * Flush the current page's terms (and their bits) into the database.
2009 * Also, handle escape sequences at the last possible moment.
2012 dbadd(struct dba
*dba
, struct mpage
*mpage
)
2014 struct mlink
*mlink
;
2022 mlink
= mpage
->mlinks
;
2025 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2026 key
= ohash_next(&names
, &slot
))
2028 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2029 key
= ohash_next(&strings
, &slot
))
2033 while (NULL
!= mlink
) {
2034 fputs(mlink
->name
, stdout
);
2035 if (NULL
== mlink
->next
||
2036 strcmp(mlink
->dsec
, mlink
->next
->dsec
) ||
2037 strcmp(mlink
->fsec
, mlink
->next
->fsec
) ||
2038 strcmp(mlink
->arch
, mlink
->next
->arch
)) {
2040 if ('\0' == *mlink
->dsec
)
2041 fputs(mlink
->fsec
, stdout
);
2043 fputs(mlink
->dsec
, stdout
);
2044 if ('\0' != *mlink
->arch
)
2045 printf("/%s", mlink
->arch
);
2048 mlink
= mlink
->next
;
2050 fputs(", ", stdout
);
2052 printf(" - %s\n", mpage
->desc
);
2057 say(mlink
->file
, "Adding to database");
2061 mustfree
= render_string(&cp
, &i
);
2062 mpage
->dba
= dba_page_new(dba
->pages
,
2063 *mpage
->arch
== '\0' ? mlink
->arch
: mpage
->arch
,
2064 cp
, mlink
->file
, mpage
->form
);
2067 dba_page_add(mpage
->dba
, DBP_SECT
, mpage
->sec
);
2069 while (mlink
!= NULL
) {
2071 mlink
= mlink
->next
;
2074 for (key
= ohash_first(&names
, &slot
); NULL
!= key
;
2075 key
= ohash_next(&names
, &slot
)) {
2076 assert(key
->mpage
== mpage
);
2077 dba_page_alias(mpage
->dba
, key
->key
, key
->mask
);
2080 for (key
= ohash_first(&strings
, &slot
); NULL
!= key
;
2081 key
= ohash_next(&strings
, &slot
)) {
2082 assert(key
->mpage
== mpage
);
2084 for (mask
= TYPE_Xr
; mask
<= TYPE_Lb
; mask
*= 2) {
2085 if (key
->mask
& mask
)
2086 dba_macro_add(dba
->macros
, i
,
2087 key
->key
, mpage
->dba
);
2095 dbprune(struct dba
*dba
)
2097 struct dba_array
*page
, *files
;
2100 dba_array_FOREACH(dba
->pages
, page
) {
2101 files
= dba_array_get(page
, DBP_FILE
);
2102 dba_array_FOREACH(files
, file
) {
2105 if (ohash_find(&mlinks
, ohash_qlookup(&mlinks
,
2108 say(file
, "Deleting from database");
2109 dba_array_del(dba
->pages
);
2117 * Write the database from memory to disk.
2120 dbwrite(struct dba
*dba
)
2127 * Do not write empty databases, and delete existing ones
2128 * when makewhatis -u causes them to become empty.
2131 dba_array_start(dba
->pages
);
2132 if (dba_array_next(dba
->pages
) == NULL
) {
2133 if (unlink(MANDOC_DB
) == -1 && errno
!= ENOENT
)
2134 say(MANDOC_DB
, "&unlink");
2139 * Build the database in a temporary file,
2140 * then atomically move it into place.
2143 if (dba_write(MANDOC_DB
"~", dba
) != -1) {
2144 if (rename(MANDOC_DB
"~", MANDOC_DB
) == -1) {
2145 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2146 say(MANDOC_DB
, "&rename");
2147 unlink(MANDOC_DB
"~");
2153 * We lack write permission and cannot replace the database
2154 * file, but let's at least check whether the data changed.
2157 (void)strlcpy(tfn
, "/tmp/mandocdb.XXXXXXXX", sizeof(tfn
));
2158 if (mkdtemp(tfn
) == NULL
) {
2159 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2160 say("", "&%s", tfn
);
2164 (void)strlcat(tfn
, "/" MANDOC_DB
, sizeof(tfn
));
2165 if (dba_write(tfn
, dba
) == -1) {
2166 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2167 say(tfn
, "&dba_write");
2171 switch (child
= fork()) {
2173 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2174 say("", "&fork cmp");
2177 execlp("cmp", "cmp", "-s", tfn
, MANDOC_DB
, (char *)NULL
);
2178 say("", "&exec cmp");
2183 if (waitpid(child
, &status
, 0) == -1) {
2184 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2185 say("", "&wait cmp");
2186 } else if (WIFSIGNALED(status
)) {
2187 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2188 say("", "cmp died from signal %d", WTERMSIG(status
));
2189 } else if (WEXITSTATUS(status
)) {
2190 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2192 "Data changed, but cannot replace database");
2196 *strrchr(tfn
, '/') = '\0';
2197 switch (child
= fork()) {
2199 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2200 say("", "&fork rm");
2203 execlp("rm", "rm", "-rf", tfn
, (char *)NULL
);
2204 say("", "&exec rm");
2205 exit((int)MANDOCLEVEL_SYSERR
);
2209 if (waitpid(child
, &status
, 0) == -1) {
2210 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2211 say("", "&wait rm");
2212 } else if (WIFSIGNALED(status
) || WEXITSTATUS(status
)) {
2213 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2214 say("", "%s: Cannot remove temporary directory", tfn
);
2219 set_basedir(const char *targetdir
, int report_baddir
)
2221 static char startdir
[PATH_MAX
];
2222 static int getcwd_status
; /* 1 = ok, 2 = failure */
2223 static int chdir_status
; /* 1 = changed directory */
2227 * Remember the original working directory, if possible.
2228 * This will be needed if the second or a later directory
2229 * on the command line is given as a relative path.
2230 * Do not error out if the current directory is not
2231 * searchable: Maybe it won't be needed after all.
2233 if (0 == getcwd_status
) {
2234 if (NULL
== getcwd(startdir
, sizeof(startdir
))) {
2236 (void)strlcpy(startdir
, strerror(errno
),
2243 * We are leaving the old base directory.
2244 * Do not use it any longer, not even for messages.
2249 * If and only if the directory was changed earlier and
2250 * the next directory to process is given as a relative path,
2251 * first go back, or bail out if that is impossible.
2253 if (chdir_status
&& '/' != *targetdir
) {
2254 if (2 == getcwd_status
) {
2255 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2256 say("", "getcwd: %s", startdir
);
2259 if (-1 == chdir(startdir
)) {
2260 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2261 say("", "&chdir %s", startdir
);
2267 * Always resolve basedir to the canonicalized absolute
2268 * pathname and append a trailing slash, such that
2269 * we can reliably check whether files are inside.
2271 if (NULL
== realpath(targetdir
, basedir
)) {
2272 if (report_baddir
|| errno
!= ENOENT
) {
2273 exitcode
= (int)MANDOCLEVEL_BADARG
;
2274 say("", "&%s: realpath", targetdir
);
2277 } else if (-1 == chdir(basedir
)) {
2278 if (report_baddir
|| errno
!= ENOENT
) {
2279 exitcode
= (int)MANDOCLEVEL_BADARG
;
2285 cp
= strchr(basedir
, '\0');
2286 if ('/' != cp
[-1]) {
2287 if (cp
- basedir
>= PATH_MAX
- 1) {
2288 exitcode
= (int)MANDOCLEVEL_SYSERR
;
2289 say("", "Filename too long");
2299 say(const char *file
, const char *format
, ...)
2304 if ('\0' != *basedir
)
2305 fprintf(stderr
, "%s", basedir
);
2306 if ('\0' != *basedir
&& '\0' != *file
)
2309 fprintf(stderr
, "%s", file
);
2312 if (NULL
!= format
) {
2325 if (NULL
!= format
) {
2326 if ('\0' != *basedir
|| '\0' != *file
)
2327 fputs(": ", stderr
);
2328 va_start(ap
, format
);
2329 vfprintf(stderr
, format
, ap
);
2333 if ('\0' != *basedir
|| '\0' != *file
|| NULL
!= format
)
2334 fputs(": ", stderr
);
2337 fputc('\n', stderr
);