]>
git.cameronkatri.com Git - mandoc.git/blob - read.c
1 /* $Id: read.c,v 1.92 2014/10/20 19:04:45 kristaps Exp $ */
3 * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>
5 * Copyright (c) 2010, 2012 Joerg Sonnenberger <joerg@netbsd.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 AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR 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>
40 #include "mandoc_aux.h"
41 #include "libmandoc.h"
46 #define REPARSE_LIMIT 1000
49 char *buf
; /* binary input buffer */
50 size_t sz
; /* size of binary buffer */
54 struct man
*pman
; /* persistent man parser */
55 struct mdoc
*pmdoc
; /* persistent mdoc parser */
56 struct man
*man
; /* man parser */
57 struct mdoc
*mdoc
; /* mdoc parser */
58 struct roff
*roff
; /* roff parser (!NULL) */
59 char *sodest
; /* filename pointed to by .so */
60 const char *file
; /* filename of current input file */
61 struct buf
*primary
; /* buffer currently being parsed */
62 struct buf
*secondary
; /* preprocessed copy of input */
63 const char *defos
; /* default operating system */
64 mandocmsg mmsg
; /* warning/error message handler */
65 enum mandoclevel file_status
; /* status of current parse */
66 enum mandoclevel wlevel
; /* ignore messages below this */
67 int options
; /* parser options */
68 int reparse_count
; /* finite interp. stack */
69 int line
; /* line number in the file */
72 static void choose_parser(struct mparse
*);
73 static void resize_buf(struct buf
*, size_t);
74 static void mparse_buf_r(struct mparse
*, struct buf
, int);
75 static int read_whole_file(struct mparse
*, const char *, int,
77 static void mparse_end(struct mparse
*);
78 static void mparse_parse_buffer(struct mparse
*, struct buf
,
81 static const enum mandocerr mandoclimits
[MANDOCLEVEL_MAX
] = {
91 static const char * const mandocerrs
[MANDOCERR_MAX
] = {
96 /* related to the prologue */
97 "missing manual title, using UNTITLED",
98 "missing manual title, using \"\"",
99 "lower case character in document title",
100 "missing manual section, using \"\"",
101 "unknown manual section",
102 "unknown manual volume or arch",
103 "missing date, using today's date",
104 "cannot parse date, using it verbatim",
105 "missing Os macro, using \"\"",
106 "duplicate prologue macro",
107 "late prologue macro",
108 "skipping late title macro",
109 "prologue macros out of order",
111 /* related to document structure */
112 ".so is fragile, better use ln(1)",
114 "content before first section header",
115 "first section is not \"NAME\"",
116 "bad NAME section contents",
117 "sections out of conventional order",
118 "duplicate section title",
119 "unexpected section",
121 "unusual Xr punctuation",
122 "AUTHORS section without An macro",
124 /* related to macros and nesting */
126 "skipping paragraph macro",
127 "moving paragraph macro out of list",
128 "skipping no-space macro",
129 "blocks badly nested",
130 "nested displays are not portable",
131 "moving content out of list",
132 ".Vt block has child macro",
133 "fill mode already enabled, skipping",
134 "fill mode already disabled, skipping",
137 /* related to missing macro arguments */
138 "skipping empty request",
139 "conditional request controls empty scope",
140 "skipping empty macro",
141 "empty argument, using 0n",
142 "argument count wrong",
143 "missing display type, using -ragged",
144 "list type is not the first argument",
145 "missing -width in -tag list, using 8n",
146 "missing utility name, using \"\"",
147 "empty head in list item",
149 "missing font type, using \\fR",
150 "unknown font type, using \\fR",
151 "missing -std argument, adding it",
152 "missing eqn box, using \"\"",
154 /* related to bad macro arguments */
155 "unterminated quoted argument",
156 "duplicate argument",
157 "skipping duplicate argument",
158 "skipping duplicate display type",
159 "skipping duplicate list type",
160 "skipping -width argument",
161 "unknown AT&T UNIX version",
162 "comma in function argument",
163 "parenthesis in function name",
164 "invalid content in Rs block",
165 "invalid Boolean argument",
166 "unknown font, skipping request",
168 /* related to plain text */
169 "blank line in fill mode, using .sp",
170 "tab in filled text",
171 "whitespace at end of input line",
173 "invalid escape sequence",
174 "undefined string, using \"\"",
178 /* related to equations */
179 "unexpected equation scope closure",
180 "equation scope open on exit",
181 "overlapping equation scopes",
182 "unexpected end of equation",
184 /* related to tables */
188 "no table layout cells specified",
189 "no table data cells specified",
190 "ignore data in cell",
191 "data block still open",
192 "ignoring extra data cells",
194 /* related to document structure and macros */
195 "input stack limit exceeded, infinite loop?",
196 "skipping bad character",
197 "skipping unknown macro",
198 "skipping item outside list",
199 "skipping column outside column list",
200 "skipping end of block that is not open",
201 "inserting missing end of block",
202 "appending missing end of block",
204 /* related to request and macro arguments */
205 "escaped character not allowed in a name",
206 "argument count wrong",
207 "missing list type, using -item",
208 "missing manual name, using \"\"",
209 "uname(3) system call failed, using UNKNOWN",
210 "unknown standard specifier",
211 "skipping request without numeric argument",
212 "skipping all arguments",
213 "skipping excess arguments",
216 "generic fatal error",
219 "NOT IMPLEMENTED: Bd -file",
220 "NOT IMPLEMENTED: .so with absolute path or \"..\"",
221 ".so request failed",
224 "cannot dup file descriptor",
226 "gunzip failed with code",
231 "gunzip died from signal",
236 static const char * const mandoclevels
[MANDOCLEVEL_MAX
] = {
248 resize_buf(struct buf
*buf
, size_t initial
)
251 buf
->sz
= buf
->sz
> initial
/2 ? 2 * buf
->sz
: initial
;
252 buf
->buf
= mandoc_realloc(buf
->buf
, buf
->sz
);
256 choose_parser(struct mparse
*curp
)
262 * If neither command line arguments -mdoc or -man select
263 * a parser nor the roff parser found a .Dd or .TH macro
264 * yet, look ahead in the main input buffer.
267 if ((format
= roff_getformat(curp
->roff
)) == 0) {
268 cp
= curp
->primary
->buf
;
269 ep
= cp
+ curp
->primary
->sz
;
271 if (*cp
== '.' || *cp
== '\'') {
273 if (cp
[0] == 'D' && cp
[1] == 'd') {
274 format
= MPARSE_MDOC
;
277 if (cp
[0] == 'T' && cp
[1] == 'H') {
282 cp
= memchr(cp
, '\n', ep
- cp
);
289 if (format
== MPARSE_MDOC
) {
290 if (NULL
== curp
->pmdoc
)
291 curp
->pmdoc
= mdoc_alloc(
292 curp
->roff
, curp
, curp
->defos
,
293 MPARSE_QUICK
& curp
->options
? 1 : 0);
295 curp
->mdoc
= curp
->pmdoc
;
299 /* Fall back to man(7) as a last resort. */
301 if (NULL
== curp
->pman
)
302 curp
->pman
= man_alloc(curp
->roff
, curp
,
303 MPARSE_QUICK
& curp
->options
? 1 : 0);
305 curp
->man
= curp
->pman
;
309 * Main parse routine for an opened file. This is called for each
310 * opened file and simply loops around the full input file, possibly
311 * nesting (i.e., with `so').
314 mparse_buf_r(struct mparse
*curp
, struct buf blk
, int start
)
316 const struct tbl_span
*span
;
320 int pos
; /* byte number in the ln buffer */
321 int lnn
; /* line number in the real file */
324 memset(&ln
, 0, sizeof(struct buf
));
329 for (i
= 0; i
< (int)blk
.sz
; ) {
330 if (0 == pos
&& '\0' == blk
.buf
[i
])
335 curp
->reparse_count
= 0;
338 while (i
< (int)blk
.sz
&& (start
|| '\0' != blk
.buf
[i
])) {
341 * When finding an unescaped newline character,
342 * leave the character loop to process the line.
343 * Skip a preceding carriage return, if any.
346 if ('\r' == blk
.buf
[i
] && i
+ 1 < (int)blk
.sz
&&
347 '\n' == blk
.buf
[i
+ 1])
349 if ('\n' == blk
.buf
[i
]) {
356 * Make sure we have space for at least
357 * one backslash and one other character
358 * and the trailing NUL byte.
361 if (pos
+ 2 >= (int)ln
.sz
)
362 resize_buf(&ln
, 256);
365 * Warn about bogus characters. If you're using
366 * non-ASCII encoding, you're screwing your
367 * readers. Since I'd rather this not happen,
368 * I'll be helpful and replace these characters
369 * with "?", so we don't display gibberish.
370 * Note to manual writers: use special characters.
373 c
= (unsigned char) blk
.buf
[i
];
375 if ( ! (isascii(c
) &&
376 (isgraph(c
) || isblank(c
)))) {
377 mandoc_vmsg(MANDOCERR_BADCHAR
, curp
,
378 curp
->line
, pos
, "0x%x", c
);
384 /* Trailing backslash = a plain char. */
386 if ('\\' != blk
.buf
[i
] || i
+ 1 == (int)blk
.sz
) {
387 ln
.buf
[pos
++] = blk
.buf
[i
++];
392 * Found escape and at least one other character.
393 * When it's a newline character, skip it.
394 * When there is a carriage return in between,
395 * skip that one as well.
398 if ('\r' == blk
.buf
[i
+ 1] && i
+ 2 < (int)blk
.sz
&&
399 '\n' == blk
.buf
[i
+ 2])
401 if ('\n' == blk
.buf
[i
+ 1]) {
407 if ('"' == blk
.buf
[i
+ 1] || '#' == blk
.buf
[i
+ 1]) {
409 /* Comment, skip to end of line */
410 for (; i
< (int)blk
.sz
; ++i
) {
411 if ('\n' == blk
.buf
[i
]) {
418 /* Backout trailing whitespaces */
419 for (; pos
> 0; --pos
) {
420 if (ln
.buf
[pos
- 1] != ' ')
422 if (pos
> 2 && ln
.buf
[pos
- 2] == '\\')
428 /* Catch escaped bogus characters. */
430 c
= (unsigned char) blk
.buf
[i
+1];
432 if ( ! (isascii(c
) &&
433 (isgraph(c
) || isblank(c
)))) {
434 mandoc_vmsg(MANDOCERR_BADCHAR
, curp
,
435 curp
->line
, pos
, "0x%x", c
);
441 /* Some other escape sequence, copy & cont. */
443 ln
.buf
[pos
++] = blk
.buf
[i
++];
444 ln
.buf
[pos
++] = blk
.buf
[i
++];
447 if (pos
>= (int)ln
.sz
)
448 resize_buf(&ln
, 256);
453 * A significant amount of complexity is contained by
454 * the roff preprocessor. It's line-oriented but can be
455 * expressed on one line, so we need at times to
456 * readjust our starting point and re-run it. The roff
457 * preprocessor can also readjust the buffers with new
458 * data, so we pass them in wholesale.
464 * Maintain a lookaside buffer of all parsed lines. We
465 * only do this if mparse_keep() has been invoked (the
466 * buffer may be accessed with mparse_getkeep()).
469 if (curp
->secondary
) {
470 curp
->secondary
->buf
= mandoc_realloc(
471 curp
->secondary
->buf
,
472 curp
->secondary
->sz
+ pos
+ 2);
473 memcpy(curp
->secondary
->buf
+
476 curp
->secondary
->sz
+= pos
;
478 [curp
->secondary
->sz
] = '\n';
479 curp
->secondary
->sz
++;
481 [curp
->secondary
->sz
] = '\0';
484 rr
= roff_parseln(curp
->roff
, curp
->line
,
485 &ln
.buf
, &ln
.sz
, of
, &of
);
489 if (REPARSE_LIMIT
>= ++curp
->reparse_count
)
490 mparse_buf_r(curp
, ln
, 0);
492 mandoc_msg(MANDOCERR_ROFFLOOP
, curp
,
493 curp
->line
, pos
, NULL
);
497 pos
= (int)strlen(ln
.buf
);
505 assert(MANDOCLEVEL_FATAL
<= curp
->file_status
);
508 if (0 == (MPARSE_SO
& curp
->options
) &&
509 (i
>= (int)blk
.sz
|| '\0' == blk
.buf
[i
])) {
510 curp
->sodest
= mandoc_strdup(ln
.buf
+ of
);
515 * We remove `so' clauses from our lookaside
516 * buffer because we're going to descend into
517 * the file recursively.
520 curp
->secondary
->sz
-= pos
+ 1;
521 mparse_readfd(curp
, -1, ln
.buf
+ of
);
522 if (MANDOCLEVEL_FATAL
<= curp
->file_status
) {
523 mandoc_vmsg(MANDOCERR_SO_FAIL
,
524 curp
, curp
->line
, pos
,
525 ".so %s", ln
.buf
+ of
);
535 * If we encounter errors in the recursive parse, make
536 * sure we don't continue parsing.
539 if (MANDOCLEVEL_FATAL
<= curp
->file_status
)
543 * If input parsers have not been allocated, do so now.
544 * We keep these instanced between parsers, but set them
545 * locally per parse routine since we can use different
546 * parsers with each one.
549 if ( ! (curp
->man
|| curp
->mdoc
))
553 * Lastly, push down into the parsers themselves.
554 * If libroff returns ROFF_TBL, then add it to the
555 * currently open parse. Since we only get here if
556 * there does exist data (see tbl_data.c), we're
557 * guaranteed that something's been allocated.
558 * Do the same for ROFF_EQN.
564 while (NULL
!= (span
= roff_span(curp
->roff
))) {
566 man_addspan(curp
->man
, span
) :
567 mdoc_addspan(curp
->mdoc
, span
);
571 else if (ROFF_EQN
== rr
)
573 mdoc_addeqn(curp
->mdoc
,
574 roff_eqn(curp
->roff
)) :
575 man_addeqn(curp
->man
,
576 roff_eqn(curp
->roff
));
577 else if (curp
->man
|| curp
->mdoc
)
579 man_parseln(curp
->man
,
580 curp
->line
, ln
.buf
, of
) :
581 mdoc_parseln(curp
->mdoc
,
582 curp
->line
, ln
.buf
, of
);
585 assert(MANDOCLEVEL_FATAL
<= curp
->file_status
);
590 /* Temporary buffers typically are not full. */
592 if (0 == start
&& '\0' == blk
.buf
[i
])
595 /* Start the next input line. */
604 read_whole_file(struct mparse
*curp
, const char *file
, int fd
,
605 struct buf
*fb
, int *with_mmap
)
612 if (-1 == fstat(fd
, &st
)) {
613 curp
->file_status
= MANDOCLEVEL_SYSERR
;
615 (*curp
->mmsg
)(MANDOCERR_SYSSTAT
, curp
->file_status
,
616 file
, 0, 0, strerror(errno
));
621 * If we're a regular file, try just reading in the whole entry
622 * via mmap(). This is faster than reading it into blocks, and
623 * since each file is only a few bytes to begin with, I'm not
624 * concerned that this is going to tank any machines.
627 if (S_ISREG(st
.st_mode
)) {
628 if (st
.st_size
>= (1U << 31)) {
629 curp
->file_status
= MANDOCLEVEL_FATAL
;
631 (*curp
->mmsg
)(MANDOCERR_TOOLARGE
,
632 curp
->file_status
, file
, 0, 0, NULL
);
636 fb
->sz
= (size_t)st
.st_size
;
637 fb
->buf
= mmap(NULL
, fb
->sz
, PROT_READ
, MAP_SHARED
, fd
, 0);
638 if (fb
->buf
!= MAP_FAILED
)
644 * If this isn't a regular file (like, say, stdin), then we must
645 * go the old way and just read things in bit by bit.
654 if (fb
->sz
== (1U << 31)) {
655 curp
->file_status
= MANDOCLEVEL_FATAL
;
657 (*curp
->mmsg
)(MANDOCERR_TOOLARGE
,
662 resize_buf(fb
, 65536);
664 ssz
= read(fd
, fb
->buf
+ (int)off
, fb
->sz
- off
);
670 curp
->file_status
= MANDOCLEVEL_SYSERR
;
672 (*curp
->mmsg
)(MANDOCERR_SYSREAD
,
673 curp
->file_status
, file
, 0, 0,
686 mparse_end(struct mparse
*curp
)
689 if (MANDOCLEVEL_FATAL
<= curp
->file_status
)
692 if (curp
->mdoc
== NULL
&&
694 curp
->sodest
== NULL
) {
695 if (curp
->options
& MPARSE_MDOC
)
696 curp
->mdoc
= curp
->pmdoc
;
698 if (curp
->pman
== NULL
)
699 curp
->pman
= man_alloc(curp
->roff
, curp
,
700 curp
->options
& MPARSE_QUICK
? 1 : 0);
701 curp
->man
= curp
->pman
;
705 if (curp
->mdoc
&& ! mdoc_endparse(curp
->mdoc
)) {
706 assert(MANDOCLEVEL_FATAL
<= curp
->file_status
);
710 if (curp
->man
&& ! man_endparse(curp
->man
)) {
711 assert(MANDOCLEVEL_FATAL
<= curp
->file_status
);
715 roff_endparse(curp
->roff
);
719 mparse_parse_buffer(struct mparse
*curp
, struct buf blk
, const char *file
)
721 struct buf
*svprimary
;
723 static int recursion_depth
;
725 if (64 < recursion_depth
) {
726 mandoc_msg(MANDOCERR_ROFFLOOP
, curp
, curp
->line
, 0, NULL
);
730 /* Line number is per-file. */
733 svprimary
= curp
->primary
;
734 curp
->primary
= &blk
;
738 mparse_buf_r(curp
, blk
, 1);
740 if (0 == --recursion_depth
&& MANDOCLEVEL_FATAL
> curp
->file_status
)
743 curp
->primary
= svprimary
;
748 mparse_readmem(struct mparse
*curp
, const void *buf
, size_t len
,
753 blk
.buf
= UNCONST(buf
);
756 mparse_parse_buffer(curp
, blk
, file
);
757 return(curp
->file_status
);
761 mparse_readfd(struct mparse
*curp
, int fd
, const char *file
)
766 if (-1 == fd
&& -1 == (fd
= open(file
, O_RDONLY
, 0))) {
767 curp
->file_status
= MANDOCLEVEL_SYSERR
;
769 (*curp
->mmsg
)(MANDOCERR_SYSOPEN
,
771 file
, 0, 0, strerror(errno
));
772 return(curp
->file_status
);
776 * Run for each opened file; may be called more than once for
777 * each full parse sequence if the opened file is nested (i.e.,
778 * from `so'). Simply sucks in the whole file and moves into
779 * the parse phase for the file.
782 if (read_whole_file(curp
, file
, fd
, &blk
, &with_mmap
)) {
783 mparse_parse_buffer(curp
, blk
, file
);
786 munmap(blk
.buf
, blk
.sz
);
792 if (STDIN_FILENO
!= fd
&& -1 == close(fd
))
795 return(curp
->file_status
);
799 mparse_open(struct mparse
*curp
, int *fd
, const char *file
,
808 if ((cp
= strrchr(file
, '.')) == NULL
||
809 strcmp(cp
+ 1, "gz")) {
811 if ((*fd
= open(file
, O_RDONLY
)) == -1) {
812 err
= MANDOCERR_SYSOPEN
;
815 return(MANDOCLEVEL_OK
);
818 if (pipe(pfd
) == -1) {
819 err
= MANDOCERR_SYSPIPE
;
823 switch (*child_pid
= fork()) {
825 err
= MANDOCERR_SYSFORK
;
832 if (dup2(pfd
[1], STDOUT_FILENO
) == -1) {
833 err
= MANDOCERR_SYSDUP
;
836 execlp("gunzip", "gunzip", "-c", file
, NULL
);
837 err
= MANDOCERR_SYSEXEC
;
842 return(MANDOCLEVEL_OK
);
848 curp
->file_status
= MANDOCLEVEL_SYSERR
;
850 (*curp
->mmsg
)(err
, curp
->file_status
, file
,
851 0, 0, strerror(errno
));
854 return(curp
->file_status
);
858 mparse_wait(struct mparse
*curp
, pid_t child_pid
)
862 if (waitpid(child_pid
, &status
, 0) == -1) {
863 mandoc_msg(MANDOCERR_SYSWAIT
, curp
, 0, 0,
865 curp
->file_status
= MANDOCLEVEL_SYSERR
;
866 return(curp
->file_status
);
868 if (WIFSIGNALED(status
)) {
869 mandoc_vmsg(MANDOCERR_SYSSIG
, curp
, 0, 0,
870 "%d", WTERMSIG(status
));
871 curp
->file_status
= MANDOCLEVEL_SYSERR
;
872 return(curp
->file_status
);
874 if (WEXITSTATUS(status
)) {
875 mandoc_vmsg(MANDOCERR_SYSEXIT
, curp
, 0, 0,
876 "%d", WEXITSTATUS(status
));
877 curp
->file_status
= MANDOCLEVEL_SYSERR
;
878 return(curp
->file_status
);
880 return(MANDOCLEVEL_OK
);
884 mparse_alloc(int options
, enum mandoclevel wlevel
,
885 mandocmsg mmsg
, const char *defos
)
889 assert(wlevel
<= MANDOCLEVEL_FATAL
);
891 curp
= mandoc_calloc(1, sizeof(struct mparse
));
893 curp
->options
= options
;
894 curp
->wlevel
= wlevel
;
898 curp
->roff
= roff_alloc(curp
, options
);
899 if (curp
->options
& MPARSE_MDOC
)
900 curp
->pmdoc
= mdoc_alloc(
901 curp
->roff
, curp
, curp
->defos
,
902 curp
->options
& MPARSE_QUICK
? 1 : 0);
903 if (curp
->options
& MPARSE_MAN
)
904 curp
->pman
= man_alloc(curp
->roff
, curp
,
905 curp
->options
& MPARSE_QUICK
? 1 : 0);
911 mparse_reset(struct mparse
*curp
)
914 roff_reset(curp
->roff
);
917 mdoc_reset(curp
->mdoc
);
919 man_reset(curp
->man
);
921 curp
->secondary
->sz
= 0;
923 curp
->file_status
= MANDOCLEVEL_OK
;
932 mparse_free(struct mparse
*curp
)
936 mdoc_free(curp
->pmdoc
);
938 man_free(curp
->pman
);
940 roff_free(curp
->roff
);
942 free(curp
->secondary
->buf
);
944 free(curp
->secondary
);
950 mparse_result(struct mparse
*curp
,
951 struct mdoc
**mdoc
, struct man
**man
, char **sodest
)
954 if (sodest
&& NULL
!= (*sodest
= curp
->sodest
)) {
966 mandoc_vmsg(enum mandocerr t
, struct mparse
*m
,
967 int ln
, int pos
, const char *fmt
, ...)
973 (void)vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
976 mandoc_msg(t
, m
, ln
, pos
, buf
);
980 mandoc_msg(enum mandocerr er
, struct mparse
*m
,
981 int ln
, int col
, const char *msg
)
983 enum mandoclevel level
;
985 level
= MANDOCLEVEL_FATAL
;
986 while (er
< mandoclimits
[level
])
989 if (level
< m
->wlevel
)
993 (*m
->mmsg
)(er
, level
, m
->file
, ln
, col
, msg
);
995 if (m
->file_status
< level
)
996 m
->file_status
= level
;
1000 mparse_strerror(enum mandocerr er
)
1003 return(mandocerrs
[er
]);
1007 mparse_strlevel(enum mandoclevel lvl
)
1009 return(mandoclevels
[lvl
]);
1013 mparse_keep(struct mparse
*p
)
1016 assert(NULL
== p
->secondary
);
1017 p
->secondary
= mandoc_calloc(1, sizeof(struct buf
));
1021 mparse_getkeep(const struct mparse
*p
)
1024 assert(p
->secondary
);
1025 return(p
->secondary
->sz
? p
->secondary
->buf
: NULL
);